diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/app/ihr.c wfdb-10.3.12/app/ihr.c --- wfdb-10.3.11/app/ihr.c 2002-11-17 15:17:14.000000000 -0500 +++ wfdb-10.3.12/app/ihr.c 2004-03-05 09:46:36.000000000 -0500 @@ -1,9 +1,9 @@ /* file ihr.c G. Moody 12 November 1992 - Last revised: 17 November 2002 + Last revised: 5 March 2004 ------------------------------------------------------------------------------- ihr: Generate instantaneous heart rate data from annotation file -Copyright (C) 2002 George B. Moody +Copyright (C) 1992-2004 George B. Moody 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 @@ -44,7 +44,8 @@ char *argv[]; { char *record = NULL, *prog_name(); - double ihr, ihrlast, mhr = 70.0, sph, spm, sps, tol = 10.0, atof(), fabs(); + double dmhr, ihr, ihrlast, mhr = 70.0, sph, spm, sps, tol = 10.0, + atof(), fabs(); int i, j, lastann = NOTQRS, last2ann = NOTQRS, tformat = 1, vflag = 1, xflag = 0, lastint = 1, thisint = 0; long from = 0L, to = 0L, lasttime = -9999L; @@ -179,7 +180,17 @@ while (getann(0, &annot) == 0 && (to == 0L || annot.time <= to)) { if (flag[annot.anntyp]) { ihr = sps*60./(annot.time - lasttime); - mhr += (ihr - mhr)/10.; + dmhr = (ihr - mhr)/10.; + /* The next two lines of code were added in March 2004. They limit + the magnitude of dmhr (the increment to be applied to the + predictor mhr) in order to limit the influence on mhr of any + single observation. This helps to keep mhr reasonably close to + the recent mean heart rate even when the input contains gross + QRS detection errors. Given error-free input and a reasonable + value for tol, these lines have no significant effect. */ + if (dmhr > tol) dmhr = tol; + else if (dmhr < -tol) dmhr = -tol; + mhr += dmhr; if (flag[lastann] && fabs(ihr-ihrlast) 0) ? lasttime : annot.time; diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/app/rdsamp.c wfdb-10.3.12/app/rdsamp.c --- wfdb-10.3.11/app/rdsamp.c 2002-11-14 19:23:14.000000000 -0500 +++ wfdb-10.3.12/app/rdsamp.c 2004-03-08 10:10:57.000000000 -0500 @@ -1,9 +1,9 @@ /* file: rdsamp.c G. Moody 23 June 1983 - Last revised: 14 November 2002 + Last revised: 8 March 2004 ------------------------------------------------------------------------------- rdsamp: Print an arbitrary number of samples from each signal -Copyright (C) 2002 George B. Moody +Copyright (C) 1983-2004 George B. Moody 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 @@ -216,8 +216,8 @@ /* Print column headers if '-v' option selected. */ if (vflag) { - char *p, *t; - int l; + char *p, *r, *t; + int j, l; if (pflag == 0) (void)printf("samp #"); else (void)printf("time"); @@ -225,10 +225,21 @@ fprintf(stderr, "%s: insufficient memory\n", pname); exit(2); } + for (r = record+strlen(record); r > record; r--) + if (*r == '/') { + r++; + break; + } for (i = 0; i < nsig; i++) { - (void)sprintf(t, "record %s, signal %d", record, sig[i]); + /* Check if a default signal description was provided. Note that + if the description comes from the header file, the record name + may include path information that might not match that in + 'record' (if any); so we compare only the final part of the + description (p+j below) against the expected description (t). */ + (void)sprintf(t, "%s, signal %d", r, sig[i]); p = si[sig[i]].desc; - if (strcmp(p, t) == 0) { + j = strlen(p) - strlen(t); + if (j > 0 && strcmp(p+j, t) == 0) { (void)sprintf(t, "sig %d", sig[i]); p = t; } diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/app/wrsamp.c wfdb-10.3.12/app/wrsamp.c --- wfdb-10.3.11/app/wrsamp.c 2002-11-22 12:14:55.000000000 -0500 +++ wfdb-10.3.12/app/wrsamp.c 2004-01-26 15:07:16.000000000 -0500 @@ -39,7 +39,8 @@ { char **ap, *cp, **desc, **fp = NULL, fsep = '\0', *ifname = "(stdin)", *l = NULL, ofname[40], *p, *record = NULL, rsep = '\n', *prog_name(); - double freq = WFDB_DEFFREQ, gain = WFDB_DEFGAIN, scale = 1.0, v; + char *gain = "", *scale = ""; + double freq = WFDB_DEFFREQ, *scalef, v; #ifndef atof double atof(); #endif @@ -76,10 +77,11 @@ } break; case 'G': - if (++i >= argc || (gain = atof(argv[i])) <= 0.) { - (void)fprintf(stderr, "%s: gain must follow -G\n", pname); + if (++i >= argc) { + (void)fprintf(stderr, "%s: gain(s) must follow -G\n", pname); exit(1); } + gain = argv[i]; break; case 'h': help(); @@ -140,11 +142,12 @@ } break; case 'x': - if (++i >= argc || (scale = atof(argv[i])) <= 0.) { - (void)fprintf(stderr, "%s: scaling factor must follow -x\n", + if (++i >= argc) { + (void)fprintf(stderr, "%s: scaling factor(s) must follow -x\n", pname); exit(1); } + scale = argv[i]; break; default: (void)fprintf(stderr, "%s: unrecognized option %s\n", pname, @@ -182,7 +185,8 @@ if ((vout = malloc(nf * sizeof(WFDB_Sample))) == NULL || (si = malloc(nf * sizeof(WFDB_Siginfo))) == NULL || - (desc = malloc(nf * sizeof(char *))) == NULL) { + (desc = malloc(nf * sizeof(char *))) == NULL || + (scalef = malloc(nf * sizeof(double))) == NULL) { (void)fprintf(stderr, "%s: insufficient memory\n", pname); exit(2); } @@ -204,14 +208,28 @@ (void)sprintf(desc[i], "%s, column %d", ifname, fv[i]); si[i].desc = desc[i]; si[i].units = ""; - si[i].gain = gain; si[i].group = 0; si[i].fmt = 16; si[i].bsize = 0; si[i].adcres = WFDB_DEFRES; si[i].adczero = 0; si[i].baseline = 0; + while (*gain == ' ') + gain++; + if (sscanf(gain, "%lf", &(si[i].gain)) < 1) + si[i].gain = (i == 0) ? WFDB_DEFGAIN : si[i-1].gain; + else + while (*gain != '\0' && *gain != ' ') + gain++; + while (*scale == ' ') + scale++; + if (sscanf(scale, "%lf", &(scalef[i])) < 1) + scalef[i] = (i == 0) ? 1.0 : scalef[i-1]; + else + while (*scale != '\0' && *scale != ' ') + scale++; } + if (osigfopen(si, nf) < nf || setsampfreq(freq) < 0) exit(2); @@ -255,7 +273,7 @@ vout[i] = 0; } else { - v *= scale; + v *= scalef[i]; if (v >= 0) vout[i] = (int)(v + 0.5); else vout[i] = (int)(v - 0.5); } @@ -315,7 +333,7 @@ " -c check that each input line contains the same number of fields", " -f N start copying with line N (default: 0)", " -F FREQ specify frequency to be written to header file (default: 250)", - " -G GAIN specify gain to be written to header file (default: 200)", + " -G GAIN specify gain(s) to be written to header file (default: 200)", " -h print this usage summary", " -i FILE read input from FILE (default: standard input)", " -l LEN read up to LEN characters in each line (default: 1024)", @@ -326,7 +344,10 @@ " -s FSEP interpret FSEP as the input field separator (default: space", " or tab)", " -t N stop copying at line N (default: end of input file)", - " -x SCALE multiply all inputs by SCALE (default: 1)", + " -x SCALE multiply inputs by SCALE factor(s) (default: 1)", + "To specify different GAIN or SCALE values for each output signal, provide", + "a quoted list of values, e.g., -G \"100 50\" defines the gain for signal 0", + "as 100, and the gain for signal 1 (and any additional signals) as 50.", NULL }; diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/checkpkg/expected/lcheck_cal wfdb-10.3.12/checkpkg/expected/lcheck_cal --- wfdb-10.3.11/checkpkg/expected/lcheck_cal 2003-10-17 11:52:27.000000000 -0400 +++ wfdb-10.3.12/checkpkg/expected/lcheck_cal 2004-03-05 12:10:07.000000000 -0500 @@ -44,4 +44,6 @@ record - - undefined 100 mmHg record 0 - undefined 100 bpm record 0 - undefined 100 BPM +edr - - undefined 200 units +ann - - undefined 100 units foobar 0 100 square 100 mmHg diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/conf/version.def wfdb-10.3.12/conf/version.def --- wfdb-10.3.11/conf/version.def 2003-09-15 09:49:40.000000000 -0400 +++ wfdb-10.3.12/conf/version.def 2003-12-31 09:11:10.000000000 -0500 @@ -1,10 +1,10 @@ # file: version.def G. Moody 24 May 2000 -# Last revised: 15 September 2003 +# Last revised: 31 December 2003 # Each release of the WFDB Software Package is identified by a three-part # version number, defined here: MAJOR = 10 MINOR = 3 -RELEASE = 11 +RELEASE = 12 VERSION = $(MAJOR).$(MINOR).$(RELEASE) # RPMRELEASE can be incremented if changes are made between official diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/data/wfdbcal wfdb-10.3.12/data/wfdbcal --- wfdb-10.3.11/data/wfdbcal 2003-10-17 10:48:59.000000000 -0400 +++ wfdb-10.3.12/data/wfdbcal 2004-03-05 11:31:02.000000000 -0500 @@ -1,5 +1,5 @@ -# file: wfdbcal G. Moody June 1991 -# Last revised: 17 October 2003 +# file: wfdbcal G. Moody June 1991 +# Last revised: 5 March 2004 # Default calibration database for WFDB library # # Format: @@ -73,3 +73,10 @@ record - - undefined 100 mmHg record 0 - undefined 100 bpm record 0 - undefined 100 BPM + +# Definitions for time series encoded in annotation 'num' fields. Use +# the annotator name as the signal type, and 'units' as the unit type. +edr - - undefined 200 units + +# Any annotator not matching one of those above. +ann - - undefined 100 units diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/ann2rr.1 wfdb-10.3.12/doc/wag-src/ann2rr.1 --- wfdb-10.3.11/doc/wag-src/ann2rr.1 2003-02-08 16:52:40.000000000 -0500 +++ wfdb-10.3.12/doc/wag-src/ann2rr.1 2003-12-31 09:09:35.000000000 -0500 @@ -1,4 +1,4 @@ -.TH ANN2RR 1 "8 February 2003" "WFDB 10.3.2" "WFDB Applications Guide" +.TH ANN2RR 1 "31 December 2003" "WFDB 10.3.12" "WFDB Applications Guide" .SH NAME ann2rr, rr2ann \- convert annotation files to interval lists and vice versa .SH SYNOPSIS @@ -52,7 +52,7 @@ mnemonics do not begin with ``-'', but modification labels in an annotation file may define such mnemonics). .TP -\fB-p\fR \fItype\fR [ \fItype\fR ... ] +\fB-P\fR \fItype\fR [ \fItype\fR ... ] Print intervals begun by annotations of the specified \fItypes\fR only. .TP \fB-t\fR \fItime\fR @@ -77,7 +77,7 @@ intervals in each line of output. .TP \fB-W\fR -Print initial annotations (the types of the annotations that end each +Print initial annotations (the types of the annotations that begin each interval), immediately before the interval in each line of output. .PP The \fB-c\fR option, used without the \fB-p\fR option, causes \fBann2rr\fR to diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/getpagenos.c wfdb-10.3.12/doc/wag-src/getpagenos.c --- wfdb-10.3.11/doc/wag-src/getpagenos.c 2002-10-29 11:38:44.000000000 -0500 +++ wfdb-10.3.12/doc/wag-src/getpagenos.c 2004-03-09 11:47:35.000000000 -0500 @@ -39,19 +39,34 @@ continue; } fgets(buf, sizeof(buf), stdin); lineno++; - for (p = buf; p-buf Harvard-MIT Division of Health Sciences and Technology

-Copyright ©1980-2003 George B. Moody +Copyright ©1980-2004 George B. Moody

The most recent versions of the programs described in this guide may be freely downloaded from PhysioNet. For diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/wag.tex wfdb-10.3.12/doc/wag-src/wag.tex --- wfdb-10.3.11/doc/wag-src/wag.tex 2003-08-03 20:18:21.000000000 -0400 +++ wfdb-10.3.12/doc/wag-src/wag.tex 2004-03-05 13:14:47.000000000 -0500 @@ -36,7 +36,7 @@ \pagestyle{empty} \vspace*{\fill} \noindent -Copyright \copyright 1992 -- 2003 George B. Moody +Copyright \copyright 1992 -- 2004 George B. Moody \vspace{1 in} \noindent diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/wfdbcal.5 wfdb-10.3.12/doc/wag-src/wfdbcal.5 --- wfdb-10.3.11/doc/wag-src/wfdbcal.5 2002-10-28 17:37:09.000000000 -0500 +++ wfdb-10.3.12/doc/wag-src/wfdbcal.5 2004-03-05 11:52:00.000000000 -0500 @@ -1,4 +1,4 @@ -.TH WFDBCAL 5 "1 August 2002" "WFDB software 10.2.7" "WFDB Applications Guide" +.TH WFDBCAL 5 "5 March 2004" "WFDB software 10.3.12" "WFDB Applications Guide" .SH NAME wfdbcal \- WFDB calibration file format .SH DESCRIPTION @@ -102,6 +102,24 @@ ECG lead II - 2 sine 1 mV .br should be inserted \fIbefore\fR the entry for `ECG lead I'. +.PP +Programs that display time series extracted from annotation files (e.g., +\fBwave\fR(1), which can display the sequence of `num' fields in an annotation +file as a signal) can use calibration records to choose an ordinate scale. +These records can be included in the calibration file, with annotator names +used in place of the signal type, and `units' as the units type. An entry +with signal type "ann" can be used as a default for calibrating data from +files whose annotator names do not have entries. For example, +the default calibration file contains these entries: +.br + edr - - undefined 200 units +.br + ann - - undefined 100 units +The first specifies that data from 'edr' annotation files are to be +displayed at a nominal 200 units per centimeter. The second specifies that +files from other types of annotation files are to be displayed at 100 units +per centimeter. + .SH ENVIRONMENT Programs compiled with the WFDB library use the environment variable \fBWFDBCAL\fR to determine the name of the calibration file. Calibration files diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/wrsamp.1 wfdb-10.3.12/doc/wag-src/wrsamp.1 --- wfdb-10.3.11/doc/wag-src/wrsamp.1 2002-08-01 01:19:21.000000000 -0400 +++ wfdb-10.3.12/doc/wag-src/wrsamp.1 2004-01-26 15:36:26.000000000 -0500 @@ -1,4 +1,4 @@ -.TH WRSAMP 1 "1 August 2002" "WFDB 10.2.7" "WFDB Applications Guide" +.TH WRSAMP 1 "26 January 2004" "WFDB 10.3.12" "WFDB Applications Guide" .SH NAME wrsamp \- write WFDB signal files .SH SYNOPSIS @@ -46,9 +46,11 @@ .TP \fB-G\fR \fIn\fR Specify the gain (in A/D units per millivolt) for the output signals (default: -200). This option is useful only in conjunction with \fB-o\fR, since it -affects the output header file only. This option has no effect on the output -signal file. If you wish to rescale samples in the signal file, use \fB-x\fR. +200). To specify different gains for each output signal, provide a quoted +list of values in place of \fIn\fR (see the examples below). This option is +useful only in conjunction with \fB-o\fR, since it affects the output header +file only. This option has no effect on the output signal file. If you wish +to rescale samples in the signal file, use \fB-x\fR. .TP \fB-h\fR Print a usage summary. @@ -84,12 +86,13 @@ .TP \fB-x\fR \fIn\fR Multiply all input samples by \fIn\fR (default: 1) before writing them to the -output signal file. +output signal file. To specify different scaling factors for each signal, +provide a quoted list of values in place of \fIn\fR (see the examples below). .SH ENVIRONMENT .PP It may be necessary to set and export the shell variable \fBWFDB\fR (see \fBsetwfdb\fR(1)). -.SS Example +.SS Examples .br \fBrdsamp -r 100s | wrsamp -o 100w -F 360 1 2\fR .br @@ -102,6 +105,23 @@ input. Note that columns 1 and 2 of \fIwrsamp\fR's input correspond to signals 0 and 1 respectively; column 0 is the sample number, not useful to \fBwrsamp\fR. + +.br + \fBwrsamp -i in.txt -o out -G "100 100 50" -x "1 .5 -10 2" 4 1 0 3\fR +.br +This command creates a record named `out' that contains signals derived from +four columns of its input (`in.txt'). Notice that the argument of the -G +(gain) option is the quoted string "100 100 50"; the effect is that the +gains of the first two output signals are set to 100, and that of the third +is 50. Since no explicit gain is specified for the fourth signal, it is +assigned the same gain as the previous (third) signal (i.e., 50). Similarly, +the quoted argument of the -x option specifies scaling factors applied to the +samples before they are written to the output signal file: output signal 0 +will be unscaled (scale factor 1), signal 1 will be halved (.5), signal 2 +will be scaled by 10 and inverted (-10), and signal 3 will be doubled (2). +Finally, note that the four columns selected from the input file have been +rearranged, so that the leftmost column (0) will become output signal 2, etc. + .SH SEE ALSO \fBrdsamp\fR(1), \fBsetwfdb\fR(1), \fBxform\fR(1), \fBsignal\fR(5) .SH AUTHOR diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wag-src/xform.1 wfdb-10.3.12/doc/wag-src/xform.1 --- wfdb-10.3.11/doc/wag-src/xform.1 2003-03-30 14:25:00.000000000 -0500 +++ wfdb-10.3.12/doc/wag-src/xform.1 2004-01-26 16:00:24.000000000 -0500 @@ -1,4 +1,4 @@ -.TH XFORM 1 "30 March 2003" "WFDB 10.3.4" "WFDB Applications Guide" +.TH XFORM 1 "26 January 2004" "WFDB 10.3.12" "WFDB Applications Guide" .SH NAME xform \- sampling frequency, amplitude, and format conversion for WFDB records .SH SYNOPSIS @@ -68,6 +68,9 @@ numbers, separated by spaces; default: write all signals). This option may be used to re-order or duplicate signals. .TP +\fB-S\fR \fIscript\fR +Take answers to prompts from the specified \fIscript\fR (a text file). +.TP \fB-t\fR \fItime\fR Process until the specified \fItime\fR in the input record (default: continue to the end of the record). diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wpg-src/wpg0.tex wfdb-10.3.12/doc/wpg-src/wpg0.tex --- wfdb-10.3.11/doc/wpg-src/wpg0.tex 2003-10-17 11:08:05.000000000 -0400 +++ wfdb-10.3.12/doc/wpg-src/wpg0.tex 2004-03-08 16:15:27.000000000 -0500 @@ -21,7 +21,7 @@ @center Harvard-MIT Division of Health Sciences and Technology @page @vskip 0pt plus 1filll -Copyright @copyright{} 1989 -- 2003 George B. Moody +Copyright @copyright{} 1989 -- 2004 George B. Moody @sp 2 The most recent versions of the software described in this guide may be downloaded from @uref{http://www.physionet.org/}. For further @@ -408,8 +408,8 @@ The WFDB library has been written with portability in mind. It runs on a wide variety of machines and operating systems, including Unix (BSD 4.x, System V, SunOS, Solaris, HP-UX, OSF/1, Version 7, XENIX, VENIX, -ULTRIX, GNU/Linux, OpenBSD, IRIX, AIX, AUX, Darwin, MacOS/X, SCO, -Coherent, and more), MS-DOS, MS-Windows, VMS, and classic MacOS. +ULTRIX, GNU/Linux, FreeBSD, OpenBSD, IRIX, AIX, AUX, Darwin, Mac OS X, SCO, +Coherent, and more), MS-DOS, MS-Windows, VMS, and classic Mac OS. This guide was written for Unix users (with notes for MS-Windows and MS-DOS users where differences exist), but others should find only minor differences. @@ -418,16 +418,17 @@ materials that may be useful to readers (@pxref{Sources}). Many friends have contributed to the development of the WFDB library. Thanks -to Paul Albrecht, Ted Baker, Phil Devlin, Scott Greenwald, David Israel, Roger -Mark, Joe Mietus, Warren Muldrow, and especially to Paul Schluter, whose -elegant 8080 assembly language functions inspired these (long live -@code{getann}!). Pat Hamilton and Bob Farrell contributed ports, to classic -MacOS and the MS 32-bit Windows environments, respectively. Jose Garcia -Moros and Salvador Olmos contributed Matlab/Octave reimplementations of a -useful subset of the WFDB library. Thanks also to the many readers of earlier -versions of this guide; if this edition answers your questions, it is because -someone else has already asked them, and hounded the author until he produced -comprehensible answers. +to Paul Albrecht, Ted Baker, Phil Devlin, Scott Greenwald, Isaac Henry, David +Israel, Roger Mark, Joe Mietus, Warren Muldrow, and especially to Paul +Schluter, whose elegant 8080 assembly language functions inspired these (long +live @code{getann}!). Pat Hamilton and Bob Farrell contributed ports, to +classic Mac OS and the MS 32-bit Windows environments, respectively. Jose +Garcia Moros and Salvador Olmos contributed Matlab/Octave reimplementations of +a useful subset of the WFDB library. Jonas Carlson wrote, documented, and +contributed a set of Matlab wrappers for the WFDB library. Thanks also to the +many readers of earlier versions of this guide; if this edition answers your +questions, it is because someone else has already asked them, and hounded the +author until he produced comprehensible answers. Before May, 1999, and the release of version 10.0.0 of the library, the WFDB library was known as the DB library, and this guide was the @cite{ECG @@ -488,6 +489,26 @@ WFDB Software Package distribution, for information on any more recent changes that may not be described here. +@unnumberedsubsec Changes in version 10.3.12 + +Okko Willeboordse pointed out an incompatibility between the native +MS-Windows API and the ANSI/ISO C library function @code{mkdir}, which is +used by the WFDB library. This does not present a problem when +compiling the WFDB library using the supported Cygwin/gcc compiler +under MS-Windows, nor does any related problem occur on any other +platform. It should now be a little easier to compile the WFDB library +using unsupported compilers, thanks to a new @code{MKDIR} macro that hides +the incompatibility (see @file{lib/wfdblib.h0}). + +Piotr Wlodarek initiated a discussion about memory leaks in the WFDB +library, citing as an example the 'trivial example program in C' from +this Guide, which does not free memory it allocates in @code{isigopen()} +when reading the signal specifications. This problem can be avoided by +invoking @code{wfdbquit()} in the example program, just before exiting. +Further discussion of this point has been added to this Guide following +the presentation of the 'trivial example', and in the description of +@code{wfdbquit}. + @unnumberedsubsec Changes in version 10.3.11 In @file{signal.c}, several bugs have been identified and fixed. Thanks @@ -573,7 +594,7 @@ @file{nst}), a bug that caused a segfault in @file{nst}, and a bug that referenced uninitialized memory in @code{newheader} if @code{nsig} = 0. -The WFDB Software Package has been ported to MacOS/X (Darwin), +The WFDB Software Package has been ported to Mac OS X (Darwin), version 10.2 (the port should also work under 10.1 but this has not been tested and will not be supported). @@ -909,7 +930,24 @@ chapter, and the data types are described in the following chapter (@pxref{Data Types}). For now, note that @code{isigopen} prepares a record to be read by @code{getvec}, which reads a sample from each of -the two signals each time it is called. +the two signals each time it is called. + +Note that in some cases it may be important to insure that all memory +allocated by the WFDB library is freed before the program exits; in +the example program, this can be done by adding the line + +@example +wfdbquit(); +@end example + +@noindent +just above @code{exit(0);} +@iftex +(@pxref{wfdbquit, , @code{wfdbquit}}). +@end iftex +@ifinfo +(@pxref{wfdbquit}). +@end ifinfo @node compiling, other languages, print samples, Usage @comment node-name, next, previous, up @@ -1086,20 +1124,30 @@ @cindex Octave bindings @cindex Scilab bindings @cindex wrappers for Matlab, Octave, or Scilab -It should be possible to write a similar set of wrapper functions for use with -Matlab, Octave (a freely available open-source language that is compatible with -Matlab, available from @uref{http://www.che.wisc.edu/octave/}), or Scilab (an -open-source scientific software package for numerical computations, with a -language similar to that of Matlab, available from -@uref{http://www-rocq.@-inria.@-fr/@-scilab/}). At this time, such wrappers -are not available, but a reimplementation of a useful subset of the WFDB -library in native m-code (contributed by Jose Garcia Moros and Salvador Olmos) -is available from -@uref{http://www.@-physio@-net.@-org/@-physio@-tools/@-matlab/}. Jesus Olivan -Palacios has written a tutorial (available at + +A set of wrappers for Matlab has been written and contributed by Jonas Carlson. +These wrappers (@code{wfdb_tools}) provide access to almost all of the +functionality of the WFDB library, including HTTP access to remote data files, +to users of Matlab R13 (but not earlier versions) under GNU/Linux or +MS-Windows; other platforms remain to be tested. The wrappers, together with +examples and a tutorial/reference guide, are available from +@uref{http://www.@-physio@-net.@-org/@-physio@-tools/@-matlab/@-wfdb_tools/}. + +It should be possible to write a set of wrapper functions similar to +@code{wfdb_tools} for use with Octave (a freely available open-source +language that is compatible with Matlab, available from +@uref{http://www.che.wisc.edu/octave/}) or Scilab (an open-source +scientific software package for numerical computations, with a language +similar to that of Matlab, available from +@uref{http://www-rocq.@-inria.@-fr/@-scilab/}). +Jesus Olivan Palacios has written a tutorial (available at @uref{http://www.@-neurotraces.@-com/@-scilab/@-sciteam/}) on using the WFDB Software Package with Scilab. +Also available is a reimplementation of a useful subset of the WFDB +library in native m-code (contributed by Jose Garcia Moros and Salvador Olmos) +at @uref{http://www.@-physio@-net.@-org/@-physio@-tools/@-matlab/}. + @node WFDB path, running example, other languages, Usage @comment node-name, next, previous, up @section The Database Path and Other Environment Variables @@ -1138,7 +1186,7 @@ software package includes easily customizable shell scripts (batch files) that illustrate how to do this for popular shells and command interpreters; see @emph{setwfdb}(1), in the @cite{WFDB Applications -Guide}. (Under classic MacOS, for which the concept of environment +Guide}. (Under classic Mac OS, for which the concept of environment variables is foreign, the WFDB path may be set only by using @code{DEFWFDB}.) For further information, @pxref{WFDB path syntax}. @@ -1248,7 +1296,7 @@ Under Unix and VMS, the WFDB path can be given as a colon-separated list of prefixes, in the format used for the Bourne shell's @code{PATH} -variable. Under MS-Windows, MS-DOS, and MacOS, the WFDB path can be +variable. Under MS-Windows, MS-DOS, and classic Mac OS, the WFDB path can be given in the format used for the MS-DOS @code{PATH} variable, with semicolons used to separate prefixes (colons retain their customary meanings, as drive letter suffixes under MS-DOS, or as directory @@ -1302,7 +1350,7 @@ library version 8.0.) Indirect WFDB path files may be nested up to ten levels (this arbitrary limit is imposed to avoid infinite recursion if the contents of the indirect file are incorrect). This method of -indirect assignment is useful under classic MacOS, where recompilation of +indirect assignment is useful under classic Mac OS, where recompilation of the WFDB library would otherwise be necessary in order to change the WFDB path. It may also be useful under MS-DOS to reduce the need for environment space, or if the length of the command needed to set the @@ -3544,7 +3592,8 @@ @c @end group @noindent -This function closes all open database files. It also resets the following: +This function closes all open WFDB files and frees any memory allocated by +other WFDB library functions. It also resets the following: @itemize @bullet @item @@ -3584,7 +3633,26 @@ order. Programs that do not write annotations or signals need not use -@code{wfdbquit}. +@code{wfdbquit}. Note, however, that several WFDB library functions allocate +memory that is maintained for later use by the library. This is not generally +a problem, since these functions also free such memory if it is no longer +needed on a subsequent call; thus these `memory leaks' do not grow over time. +Virtually all operating systems reclaim memory allocated by user-level +applications on exit, so that a small and self-limiting leak is not +a problem. Nevertheless, there are embedded systems and other +environments in which memory is not reclaimed when a user application +exits, and in these cases it is best to invoke @code{wfdbquit()} on exit from +any WFDB application, even those that do not write output using the +library. In an ANSI/ISO C environment, this can be ensured by +including the line + +@example + atexit(wfdbquit); +@end example + +@noindent +early in the code, before the first exit. + @c @group @node iannclose and oannclose, wfdbquiet and wfdbverbose, wfdbquit, miscellaneous functions @@ -7558,8 +7626,8 @@ Software Package. * Unix installation:: Installing the WFDB Software Package on Unix, GNU/Linux, and similar systems. -* MacOS/X installation:: Installing the WFDB Software Package under - MacOS/X (Darwin). +* Mac OS X installation:: Installing the WFDB Software Package under + Mac OS X (Darwin). * MS-Windows installation:: Installing the WFDB Software Package on MS-Windows PCs. * Other installation:: Installing the WFDB Software Package on other systems. @@ -7575,7 +7643,7 @@ quick-start guides including installation notes for popular operating systems, are also usually available there. -@node Unix installation, MacOS/X installation, Distribution, Installation +@node Unix installation, Mac OS X installation, Distribution, Installation @unnumberedsec Unix, GNU/Linux, and similar operating systems @cindex libwww @@ -7634,39 +7702,45 @@ Depending on the speed of your system and of your C compiler, @samp{make} will generally require between 1 and 10 minutes. -@node MacOS/X installation, MS-Windows installation, Unix installation, Installation -@unnumberedsec Mac OS/X (Darwin) +@node Mac OS X installation, MS-Windows installation, Unix installation, Installation +@unnumberedsec Mac OS X (Darwin) -The WFDB Software Package has been successfully compiled under Mac OS/X -10.2 (Darwin 6.0.1). It should also work under 10.1, but this has not -been tested. +The WFDB Software Package, including WAVE, has been successfully compiled under +Mac OS X 10.2 (Darwin 6.0.1) and 10.3. It should also work under 10.1, but +this has not been tested. Before compiling the WFDB Software Package, download and install: @itemize @bullet @item -Mac OS/X Developer Tools (from @uref{http://developer.apple.com/macosx/}) +Mac OS X Developer Tools (from @uref{http://developer.apple.com/tools/xcode/}) +@item +libwww (from Fink, @uref{http://fink.sourceforge.net/}) @item -XDarwin (from Fink, @uref{http://fink.sourceforge.net/}; sources from -@uref{http://www.xdarwin.org/}) +an X11 package (from Fink, @uref{http://fink.sourceforge.net/}; XDarwin, +@uref{http://www.xdarwin.org/}; or Apple, +@uref{http://www.apple.com/macosx/features/x11/download/}) +@item +XView (from PhysioNet, @uref{http://www.physionet.org/physiotools/xview/}) @end itemize -Now follow the instructions in the previous section for Unix or GNU/Linux. - -At this time, an incomplete port of XView to Darwin is available from -the GNU-Darwin project (@uref{http://gnu-darwin.sourceforge.net/}). You -may wish to see if a complete XView port is available; if so, it should -be possible to compile WAVE under Mac OS/X as part of the installation -of the WFDB Software Package. +Now follow the instructions in the previous section for installing from sources +under Unix or GNU/Linux. -@node MS-Windows installation, Other installation, MacOS/X installation, Installation +@node MS-Windows installation, Other installation, Mac OS X installation, Installation @unnumberedsec MS-Windows +The WFDB Software Package, except for WAVE, has been successfully compiled +under all modern versions of MS-Windows (including MS-Windows 95, 98, ME, NT, +2000, and XP) using the Cygwin development environment. + If you have not already done so, install the Cygwin development environment (freely available from @uref{http://www.cygwin.com}). This includes @code{gcc} (the GNU C/C++ compiler) as well as a comprehensive assortment of other Unix utilities ported to MS-Windows. Accept the defaults -suggested by the installer. +suggested by the installer, but be sure to select and install the @code{gcc}, +@code{binutils}, and @code{make} packages from the @code{Devel} category +(these are not installed by default in a minimal Cygwin installation). @emph{Important:} Although you may be able to compile the WFDB software package using a proprietary compiler, this is @emph{not supported}. The @@ -7729,18 +7803,17 @@ @end example If you have Microsoft or Turbo C or C++, and a Microstar Laboratories DAP 1200- -or 2400-series analog interface board, you can instruct the @file{install} -procedure to compile @file{sample} (a program for creating database records -from analog signals, and for replaying them in analog form). To do so -successfully, you must first have installed the Microstar @file{#include} files -and DAP interface library on your system. Specifically, files @file{c_lib.c}, -@file{clock.h}, and @file{ioutil.h} must be installed in your @file{include} -directory, and the version of the file @file{cdapl.lib} that is compatible with -your compiler must be installed in a directory in which libraries are found by -your linker. Read and customize @code{lib/Makefile.dos} and -@code{app/Makefile.dos} as appropriate for your compiler, and use your -compiler's @code{make} utility to generate @code{wfdb.lib} and then -@code{sample.exe}. +or 2400-series analog interface board, you can compile @file{sample} (a program +for creating database records from analog signals, and for replaying them in +analog form). To do so successfully, you must first have installed the +Microstar @file{#include} files and DAP interface library on your system. +Specifically, files @file{c_lib.c}, @file{clock.h}, and @file{ioutil.h} must be +installed in your @file{include} directory, and the version of the file +@file{cdapl.lib} that is compatible with your compiler must be installed in a +directory in which libraries are found by your linker. Read and customize +@code{lib/Makefile.dos} and @code{app/Makefile.dos} as appropriate for your +compiler, and use your compiler's @code{make} utility to generate +@code{wfdb.lib} and then @code{sample.exe}. @node Other installation, , MS-Windows installation, Installation @@ -8323,11 +8396,32 @@ via Trieste, 41 56126 PISA, Italy -email: @email{taddei@@ifc.pi.cnr.it} +email: @email{taddei@@ifc.pi.cnr.it} telephone: +39 050 501145 telefax: +39 050 503596 @end display +Over half of this database has been contributed to PhysioNet (see above), from +which it may be downloaded freely. + +@cindex CD-ROM +@cindex LTST DB +@item Long-Term ST Database +@sp 1 +@display +Franc Jager +Laboratory of Biomedical Computer Systems and Imaging +University of Ljubljana +Faculty of Computer and Information Science +Trzaska 25 +1000 Ljubljana, Slovenia + +email: @email{lbcsi@@fri.uni-lj.si} +@end display + +Over half of this database has been contributed to PhysioNet (see above), from +which it may be downloaded freely. + @cindex AHA DB @item AHA Database for Evaluation of Ventricular Arrhythmia Detectors @sp 1 @@ -8357,7 +8451,8 @@ This is a large database of multi-channel recordings (3 ECG leads, radial arterial, pulmonary arterial, and central venous pressure, respiration, -and CO2), which has been issued on 10 CD-ROMs. +and CO2), which has been issued on 10 CD-ROMs. In 2003, this database was +contributed to PhysioNet (see above), from which it can be downloaded freely. @item American National Standard ANSI/AAMI EC38:1998, Ambulatory Electrocardiographs @itemx American National Standard ANSI/AAMI EC57:1998 Testing and Reporting Performance @@ -8387,7 +8482,7 @@ odd-numbered years. The deadline for submission of abstracts is 1 May each year. Proceedings of the conferences are published by the IEEE, and usually appear about 3 months after the date of the conference. CinC -will be in Thessaloniki in 2003 and in Chicago in 2004. +will be in Chicago in 2004 and in Lyon in 2005. @item Proceedings of Computers in Cardiology (ISSN 0276-6574) @sp 1 @@ -8446,7 +8541,7 @@ formats by the Free Software Foundation (address above) and others. It is also included with most GNU/Linux distributions (see below). -Several commercial implementations of @TeX{} for MS-DOS, MS-Windows, and MacOS +Several commercial implementations of @TeX{} for MS-DOS, MS-Windows, and Mac OS are widely available; visit the web site of the @TeX{} Users Group (below) for pointers. diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wpg-src/wpg.ht0 wfdb-10.3.12/doc/wpg-src/wpg.ht0 --- wfdb-10.3.11/doc/wpg-src/wpg.ht0 2003-08-03 20:17:16.000000000 -0400 +++ wfdb-10.3.12/doc/wpg-src/wpg.ht0 2004-03-05 13:15:45.000000000 -0500 @@ -19,7 +19,7 @@ George B. Moody
Harvard-MIT Division of Health Sciences and Technology

-Copyright ©1980-2003 George B. Moody. +Copyright ©1980-2004 George B. Moody.

The most recent versions of the software described in this guide are freely downloadable from PhysioNet. For @@ -84,4 +84,4 @@

George B. Moody (george@mit.edu)

-LONGDATE \ No newline at end of file +LONGDATE diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wug-src/wave/ps/chart1.ps wfdb-10.3.12/doc/wug-src/wave/ps/chart1.ps --- wfdb-10.3.11/doc/wug-src/wave/ps/chart1.ps 2000-01-14 14:04:44.000000000 -0500 +++ wfdb-10.3.12/doc/wug-src/wave/ps/chart1.ps 2004-03-08 22:26:33.000000000 -0500 @@ -1,330 +1,1564 @@ -%!PS-Adobe-1.0 -%%Creator: pschart -%%Title: Chart Recording -%%Pages: (atend) -%%DocumentFonts: Times-Roman Times-Italic Symbol -%%BoundingBox: 27 40 257 722 +%!PS-Adobe-3.0 EPSF-3.0 +%%HiResBoundingBox: 27.000000 40.000000 249.300000 714.100000 +%%BoundingBox: 0 0 599 199 %%EndComments +%%BeginProcSet: epsffit 1 0 +gsave +600.000 0.334 translate +90 rotate +1.002 1.002 scale +%%EndProcSet + +%%BeginProcSet: epsffit 1 0 +gsave +199.666 0.000 translate +90 rotate +1.002 1.002 scale +%%EndProcSet + +%%BeginProcSet: epsffit 1 0 +gsave +635.556 -23.111 translate +90 rotate +0.889 0.889 scale +%%EndProcSet +%......................................... +%%Creator: GNU Ghostscript 707 (epswrite) +%%CreationDate: 2004/03/08 21:47:56 +%%DocumentData: Clean7Bit +%%LanguageLevel: 2 +%%EndComments +%%BeginProlog +% This copyright applies to everything between here and the %%EndProlog: +% Copyright (C) 2003 artofcode LLC, Benicia, CA. All rights reserved. +%%BeginResource: procset GS_epswrite_2_0_1001 +/GS_epswrite_2_0_1001 80 dict dup begin +/PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch +4 index eq and{ pop pop pop}{ PageSize dup 1 +5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} +{ pop/setpagedevice where +{ pop 1 dict dup /PageSize PageSize put setpagedevice} +{ /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat +setpage}if}ifelse}ifelse}ifelse} bind def +/!{bind def}bind def/#{load def}!/N/counttomark # +/rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! +/r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! +/w/setlinewidth #/J/setlinecap # +/j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # +/m/moveto #/l/lineto #/c/rcurveto # +/p{N 2 idiv{N -2 roll rlineto}repeat}! +/P{N 0 gt{N -2 roll moveto p}if}! +/h{p closepath}!/H{P closepath}! +/lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! +/re{4 -2 roll m exch dup lx exch ly neg lx h}! +/^{3 index neg 3 index neg}! +/f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! +/q/gsave #/Q/grestore #/rf{re fill}! +/Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! +/|={pop exch 4 1 roll 1 array astore cvx 3 array astore cvx exch 1 index def exec}! +/|{exch string readstring |=}! +/+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! +/@/currentfile #/${+ @ |}! +/B{{2 copy string{readstring pop}aload pop 4 array astore cvx +3 1 roll}repeat pop pop true}! +/Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! +/,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! +/Ic{exch Ix false 3 colorimage}! +/F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> +/CCITTFaxDecode filter}!/FX{<) z -1 -56 N -1 -78 N -2 -70 N -(}+}K}W|\\}R}O|M}N}P|R}N}N|N}N}P|O}Q}N}M|N}P}Q|N}N}P|O}N}R|P}N}N|N}O}O}P|O}N}O|O}P}Q|Q}M}M|P}P}Q|M}M}O}Q|Q}O}M|M}P}O|T}M}M|M}R}N|Q}N}M}Q|P}O}O|O}N}M|O}T}N|N}M}N|O}R}Q}K|P}M}R|O}Q}N|L}M}Q|O}R}P|N}N}T}R|R}P}N|N}Q}R|Q}L}P|Q}O}P|Q}M}M}N|O}P}Q|M}N}L|R}Q}P|P) z -(}K}M|P}P}O}Q|L}N}P|P}N}N|N}O}O|R}N}M|L}M}Q}Q|O}P}M|M}P}R|N}O}M|L}P}P|P}N}M}N|P}P}P|O}P}N|N}P}R|K}O}M|L}P}R}O|N}O}O|Q}O}N|O}H}S|O}R}O|N}N}Q}R|O}N}O|N}Q}Q|T}O}M|N}S}P}P|N}P}P|P}R}S|L}P}L|O}Q}Q|K}M}P}P|L}P}L|T}P}P|K}L}K|M}M}M|M}R}N}M|L}Q}Q|P}M}L|N}M}P|P) z -(}O}L|P}O}Q}N|Q}M}M|R}P}Q|N}L}L|M}I}L|G}J}E}Q|^}f}h|o}|) z -1 55 N -(|z}e}G|!) z -1 -74 N -1 -65 N -(|&}@}R}U|W}P}Q|O}M}O|K}O}S|P}N}O|M}Q}R}N|N}O}O|O}Q}N|O}M}K|R}P}P|N}O}K}Q|Q}O}O|N}N}Q|L}R}N|O}M}P|Q}P}O}O|N}P}O|N}O}L|L}S}Q|P}P}K|Q}O}O}P|O}N}L|P}Q}P|N}O}K|O}O}P|N}J}P}N|R}M}J|R}N}S|P}Q}N|L}N}P|R}Q}Q}L|P}R}S|Q}P}O|O}S}R|R}P}O|M}P}O}P|N}O}N|P}P}O|Q}L}N) z -(|P}O}R|N}N}P}R|P}M}N|M}L}R|P}O}M|M}M}Q|Q}N}L}P|M}R}O|P}P}K|O}M}Q|Q}N}R|K}P}O}O|O}N}N|Q}Q}P|M}M}K|Q}P}P|R}N}J}S|R}O}L|O}N}O|P}O}O|M}O}O|R}O}O}K|N}Q}Q|Q}P}P|O}U}P|R}N}N|P}Q}R}O|Q}M}O|Q}N}P|M}M}M|R}Q}O|K}N}P}S|S}Q}L|L}G}O|L}O}J|L}M}O|N}N}O}Q|L}Q}P|O}N}M) z -(|L}R}L|T}P}K|K}S}R}N|O}N}J|M}N}J|I}K}I|H}P}X|`}c}i}u) z -2 52 N -1 52 N -(}v|_}>) z -1 -52 N -2 -73 N -1 -66 N -(}\(|A}P}W|X}Q}N}O|N}Q}Q|N}O}L|N}O}R|O}M}O}M|P}Q}O|N}M}O|O}Q}Q|O}L}N|Q}P}O}O|N}N}O|P}Q}N|M}L}Q|Q}N}P|M}M}O}R|Q}P}M|N}O}P|Q}L}M|O}P}O|Q}L}P}M|R}P}O|O}O}N|P}P}O|N}N}L|O}R}O}M|M}L}P|P}P}O|K}P}O|Q}O}M|P}M}S}O|R}Q}O|R}S}U|P}P}N|O}R}R|Q}N}O}K|R}Q}P|K}Q}N|P}Q) z -(}P|O}L}O|P}R}O}O|N}L}P|Q}O}L|N}M}Q|O}Q}N|M}N}N}R|N}N}N|M}O}Q|O}O}O|M}P}P|N}P}L}O|Q}P}O|O}L}N|P}Q}N|O}N}N|P}P}O}P|N}N}P|Q}P}L|Q}K}P|R}N}M|O}N}P}O|Q}O}M|O}P}Q|O}O}L|O}Q}P|P}O}Q}L|Q}T}S|O}N}N|Q}S}P|P}O}O|P}R}N}O|L}M}N|Q}Q}K|O}M}R|S}Q}K|I}K}M}L|N}M}M|P}P) z -(}M|O}N}N|N}P}P|R}N}M}M|O}O}Q|N}N}M|R}O}O|O}N}M|M}N}I}G|H}M}J|L}U}`|h}k}t||) z -1 53 N -(}z|i}J}4) z -1 -63 N -2 -80 N -1 -60 N -(}3|J}X}W|S}O}M|M}O}P|P}P}N}L|O}Q}P|O}L}M|Q}O}N|P}M}M|P}P}R}L|O}N}O|P}P}O|N}N}Q|P}Q}O|N}M}P}R|O}O}N|M}R}K|R}P}M|M}O}P|Q}O}M}M|P}P}Q|N}N}N|Q}O}Q|O}P}J|T}O}P}L|N}K}Q|R}O}P|L}N}O|O}O}R|M}M}R}Q|N}O}L|M}T}P|Q}L}M|P}Q}Q}R|O}R}O|R}O}R|Q}O}M|R}Q}M|O}O}M}O|Q}P) z -(}N|N}N}O|Q}O}N|N}M}P|Q}P}N}O|M}Q}P|P}N}M|K}P}S|R}O}N|M}O}R}P|O}O}L|R}S}Q|O}L}O|P}T}N|K}M}T}S|N}M}N|M}O}N|N}K}L|J}N}O|P}L}M}N|L}N}P|Q}N}K|M}Q}P|P}O}N|M}S}Q}N|O}P}L|R}O}Q|L}P}J|Q}M}J|J}F}G}O|I}K}U|a}i}o|n}{}~|z}d}T|5) z -1 -63 N -1 -81 N -1 -58 N -(|3}Q}Z|V}Q}K|L}S}M|R}M}M|N}Q}Q}N|O}M}N|O}O}Q|O}N}N|Q}P}N|P}K}M}R|N}R}O|O}M}O|Q}R}N|L}N}Q|M}Q}N}M|N}Q}R|O}P}K|O}P}P|Q}P}K|O}Q}P}P|M}N}M|O}R}P|L}P}M|P}Q}P|N}M}N}O|Q}Q}O|N}L}P|N}Q}M|O}K}P|R}O}O}O|M}Q}Q|Q}N}M|N}Q}S|O}O}L|R}R}Q}P|P}N}L|S}Q}Q|P}O}M|P}O}P|O) z -(}K}P}K|S}Q}O|P}N}O|Q}N}O|N}N}N|Q}P}N}M|O}N}R|O}O}L|M}P}P|L}M}M|N}T}P}O|N}L}N|P}O}R|M}M}R|M}Q}Q|N}M}L}S|O}O}P|N}N}N|R}M}P|M}M}R|O}P}N}N|I}P}T|O}M}O|K}R}P|S}Q}N|L}O}Q}O|R}J}N|O}P}O|N}M}M|O}S}N|N}P}N}Q|Q}O}N|N}N}Q|Q}Q}N|P}M}P|N}M}Q}M|M}Q}O|P}N}L|O}P}S|N) z -(}N}N}M|P}P}P|P}N}O|Q}Q}N|O}M}N|O}N}S}M|P}M}P|N}R}Q|P}O}R|P}P}N|Q}M}S}Q|Q}Q}O|N}N}Q|O}N}K|M}Q}Q|R}K}L}J|R}P}T|P}N}L|L}M}O|N}I}K|P}O}O}N|O}O}M|S}L}O|J}L}R|O}R}P|K}M}Q}P|O}O}M|K}M}L|H}P}I|E}N}Y|c}d}e}o|}) z -1 50 N -(}z|h}V}=|$) z -1 -63 N -1 -56 N -(|&}5}A|E}R}V}U|R}O}R|R}Q}O|N}N}N|P}M}O|M}M}O}S|O}O}L|O}P}R|N}O}P|K}O}R|N}O}M}O|Q}P}P|N}O}M|S}M}P|N}M}O|Q}O}R}M|N}J}Q|O}R}O|M}O}P|P}R}O|M}O}P}R|O}M}O|M}N}T|O}O}O|J}R}P|N}L}L}K|P}Q}N|N}N}K|N}R}L|N}P}K|R}Q}N}P|M}O}P|Q}S}O|M}P}T|Q}P}R|O}P}Q}Q|T}P}N|P}Q}Q) z -(|P}R}M|P}P}P|N}O}N}L|R}O}O|N}N}O|O}Q}O|O}M}N|P}O}Q}N|M}N}P|R}N}O|L}O}Q|O}P}O|N}J}P}O|Q}M}M|O}O}Q|Q}O}M|M}R}P|P}N}M}N|O}Q}P|P}I}P|Q}Q}M|N}M}K|Q}T}O}N|N}M}P|R}O}N|M}O}Q|N}R}N|M}O}O}R|O}N}K|N}S}S|Q}P}R|M}Q}N|R}Q}R}L|Q}P}Q|P}M}M|P}O}Q|M}K}O|P}M}P}T|Q}O}L) z -(|J}N}M|L}L}K|P}N}O|K}M}P}S|Q}M}N|N}O}P|P}N}N|L}O}S}P|K}N}M|O}Q}P|L}J}G|I}L}L|I}K}Y}f|l}k}w|~}}}w|^}D} ) z -2 -75 N -1 -74 N -(}!|A}U}T}U|S}O}O|Q}P}N|K}M}S|O}O}O|L}Q}Q}P|L}Q}M|R}P}Q|L}O}O|O}P}N|O}O}N}Q|M}P}P|N}N}N|Q}O}P|N}M}Q|M}P}P}O|N}P}O|P}N}O|O}P}P|N}P}N|K}P}Q}O|O}M}N|Q}Q}N|O}M}K|S}O}Q|O}L}M}P|R}O}P|M}M}O|P}Q}O|M}M}P|P}R}M}P|O}S}R|Q}Q}O|O}R}R|Q}N}O|N}Q}O}Q|P}N}O|Q}O}R|M}O) z -(}L|R}N}Q|M}M}M}Q|Q}O}N|M}M}R|N}Q}P|K}N}Q|P}M}P}N|M}O}P|Q}M}N|K}Q}R|O}M}O|K}R}Q}O|L}O}K|R}S}P|L}M}O|M}S}O|M}M}N}Q|Q}O}N|O}N}Q|O}Q}O|M}N}O|S}P}N}L|O}R}N|Q}N}O|J}Q}R|P}N}O|K}Q}Q}P|O}O}R|R}T}P|O}N}N|S}R}N|O}Q}N}O|N}O}N|M}M}R|P}M}Q|P}P}T|J}K}L}M|K}M}N|O}M) z -(}M|K}O}R|O}O}N|M}O}P}Q|M}M}L|S}P}Q|O}O}K|O}Q}M|G}E}I}K|K}K}X|b}j}r|w) z -1 53 N -1 50 N -(|r}Y}6) z -2 -61 N -1 -85 N -1 -65 N -(}3|L}^}W|Q}M}L|N}P}Q|O}N}M|M}Q}P}N|Q}L}M|O}Q}P|O}N}L|P}Q}P|O}M}P}N|R}P}N|N}L}R|P}P}N|L}O}Q|Q}P}P}K|M}Q}O|R}N}P|N}O}P|R}M}L}P|P}M}R|N}N}L|Q}P}N|Q}N}N|N}O}R}N|O}N}O|O}O}P|L}N}Q|O}Q}O|M}O}N}S|P}O}M|M}V}P|S}O}N|P}O}Q|O}O}Q}O|R}R}P|P}L}M|S}Q}P|K}M}N|O}P}Q) z -(}O|O}L}P|P}P}P|M}L}P|O}Q}P|M}L}R}Q|O}N}M|L}P}P|N}N}Q|L}Q}P|N}P}K}N|P}O}Q|N}N}L|Q}Q}N|P}N}M|Q}R}N}N|N}M}Q|O}P}O|L}P}O|P}P}M|O}O}P}P|R}P}N|L}N}Q|O}M}O|O}O}R|N}P}L}O|S}T}T|L}R}M|T}O}P|P}Q}P|O}R}P}N|J}M}P|O}O}O|N}N}Q|U}Q}L|E}L}O}L|N}M}L|O}M}P|P}P}N|M}O}O) z -(|Q}O}N}N|M}P}O|O}N}L|P}Q}Q|N}J}J|J}J}K}K|G}K}W|e}i}j|t) z -1 51 N -1 53 N -(|n}X}6) z -2 -54 N -1 -74 N -1 -62 N -(}1|I}X}T|S}Q}O|Q}N}O|M}R}P|O}P}O}K|Q}P}P|N}M}L|P}N}R|P}K}P|Q}N}P}N|P}M}T|O}P}M|M}O}P|Q}M}M|O}L}R}P|P}K}O|N}P}Q|Q}O}O|P}P}Q|M}M}N}O|N}O}N|Q}M}N|S}O}R|K}P}M|P}Q}P}L|L}L}N|U}N}P|L}L}R|O}S}P|K}O}P}R|R}O}O|N}S}O|T}N}O|M}S}P|R}O}M}P|Q}P}P|O}M}M|P}P}R|M}N}K) z -(|O}Q}N}N|N}M}Q|P}P}O|M}M}Q|N}Q}L|Q}M}Q}N|Q}N}L|M}P}O|N}N}N|P}O}Q}M|O}N}N|Q}N}P|O}O}M|Q}P}N|O}N}N}O|P}Q}O|P}M}Q|M}O}P|N}N}P|Q}P}N}M|M}O}R|N}S}K|M}P}T|Q}S}O|N}P}Q}S|P}O}M|Q}R}O|N}O}L|M}Q}P|M}L}L}P|R}T}O|J}H}P|O}K}L|M}L}O|R}Q}O}O|L}O}P|O}M}M|N}O}O|P}N}L) z -(|P}Q}N}Q|O}N}L|L}K}K|L}I}F|K}X}b|h}j}u) z -1 52 N -2 48 N -(}n}Z|9) z -1 -58 N -1 -72 N -2 -54 N -(}1}D|P}U}V|S}P}N}O|L}M}S|N}O}O|O}R}O|Q}K}O|N}R}O}P|M}M}N|O}P}O|M}P}M|O) z -909 860 m -(V5)b -5681 860 m -(V5)t -933 912 m -(}O}O}O|O}O}O|O}L}O|N}O}Q|P}O}P}Q|P}O}P|O}M}K|N}N}R|M}O}M|N}P}N}L|M}K}Q|T}Q}M|L}M}P|O}Q}O|M}M}O}P|P}M}N|N}O}R|R}M}N|J}H}N|N}L}I}F|Q}Z}b|a}`}\\|^}d}f|b}X};) z -2 -50 N -1 -56 N -(}4}K|U}V}N|T}Q}O|I}O}S|N}N}P|K}O}O}R|Q}P}K|K}Q}O|Q}O}K|P}Q}R|N}O}O}K|P}P}Q|N}L}M|P}Q}R|O}L}M|S}J}R}P|N}K}R|Q}N}L|L}Q}N|Q}R}K|P}M}P}S|O}L}L|N}O}S|O}L}N|M}M}P|O}O}N}L|O}N}O|L}N}M|O}N}Q|M}M}O|O}O}O}O|M}N}P|Q}P}O|R}O}R|P}T}P|M}O}R}Q|T}P}O|O}Q}S|R}N}M|O}P) z -(}Q|P}K}Q}J|P}Q}O|Q}N}N|M}R}O|P}L}M|Q}O}P}O|K}P}M|S}R}O|K}L}M|P}O}P|N}K}R}P|Q}J}M|N}Q}P|Q}N}P|L}N}Q|S}M}O}J|O}Q}N|N}O}O|Q}Q}M|M}N}P|O}N}R}N|O}M}Q|N}R}O|N}N}N|P}O}O|N}O}O}R|Q}L}O|N}L}P|P}O}N|P}N}Q|S}O}P}M|P}R}Q|M}P}K|O}T}N|O}N}N|O}Q}O}O|L}L}P|N}O}M|O}N) z -(}P|P}Q}L|N}K}O}N|T}N}N|N}P}O|Q}N}M|O}N}S|O}M}L}K|M}M}M|J}I}P|X}b}g|a}X}Y|]}d}d}_|M}7) z -1 -48 N -2 -51 N -(},}<|K}S}Y|Y}U}R|Q}M}O}R|N}O}O|N}R}O|O}P}L|M}P}R}Q|O}M}K|P}P}R|P}M}N|O}Q}P|N}O}M}Q|P}O}O|N}L}O|S}O}Q|K}O}N|Q}P}M}M|P}O}P|O}O}M|M}O}S|O}M}N|K}O}P}R|K}N}O|L}P}P|K}N}L|N}R}N|M}K}N}N|Q}P}N|M}N}M|R}N}O|P}O}Q|P}S}Q}Q|M}T}U|S}P}Q|N}O}S|S}Q}N|O}Q}Q}Q|O}M}O|O) z -(}Q}R|L}M}O|O}Q}Q|O}M}M}O|O}R}N|N}N}O|P}P}O|N}M}L|S}Q}O}O|L}N}R|O}M}O|P}J}R|R}M}K|N}R}P}P|P}J}O|O}P}Q|O}M}N|O}O}T|K}N}P}N|P}P}O|M}N}P|Q}P}P|N}L}N|Q}Q}P}J|P}P}Q|P}N}L|O}O}R|P}O}M|L}Q}R}O|N}N}N|N}R}P|P}M}O|O}T}Q|K}O}M}R|S}S}O|J}N}P|P}R}M|L}L}O|P}O}Q}K|K) z -(}Q}P|P}M}N|M}P}P|P}P}M|M}O}O}S|N}M}N|O}P}Q|L}O}L|K}K}K|G}I}U}_|h}l}e|e}e}g|h}\\}=) z -2 -54 N -1 -69 N -(}\(|K}U}O}M|N}Q}O|O}M}N|O}M}T|O}N}L|N}O}P}P|O}M}M|O}Q}R|M}L}M|R}Q}Q|N}O}K}O|R}P}P|N}L}P|N}Q}O|N}M}N|P}T}L}M|M}O}S|O}L}L|O}O}P|S}K}N|M}O}O}O|O}K}M|M}P}P|L}M}N|M}R}O|L}L}M}Q|N}R}M|N}L}P|Q}P}O|O}O}R|S}S}Q}Q|Q}R}S|S}P}Q|N}R}S|P}O}N}N|M}T}P|M}O}M|Q}Q}R|J}N) z -(}N|Q}O}S}M|O}L}O|Q}Q}N|O}K}O|P}O}P|L}N}Q}O|O}N}N|O}N}R|O}L}K|O}P}R|Q}M}M}N|O}P}S|N}L}O|N}P}Q|N}N}Q|K}T}P}M|M}M}L|V}P}M|Q}M}O|Q}O}P|N}M}P}P|O}O}O|N}O}Q|P}M}L|P}N}R|P}N}O}N|O}S}P|N}Q}L|P}R}P|L}P}N|Q}S}U}J|O}K}P|Q}S}L|L}K}M|O}T}N|M}L}N}Q|R}M}L|O}N}P|Q}O) z -(}L|N}P}P|P}N}O}N|M}R}O|M}L}I|J}L}K|I}H}M|V}`}e}e|b}a}c|h}g}d|X}:) z -1 -59 N -2 -64 N -(}.}N|U}O}N}U|P}K}M|N}Q}R|M}O}L|N}O}P|S}N}L}M|O}R}O|P}L}N|O}P}R|P}K}N|Q}P}Q}N|M}M}Q|P}P}N|O}K}P|P}P}O|L}P}Q}R|M}M}O|N}P}P|M}P}N|M}N}P|N}N}K}P|P}O}M|M}L}O|R}P}H|N}K}N|Q}Q}M}M|N}N}Q|Q}O}O|N}R}S|Q}S}O|P}R}S}R|P}P}Q|O}Q}O|T}K}M|Q}Q}Q|N}P}O}M|Q}R}M|L}N}P|T) z -(}N}N|L}M}O|O}T}K}Q|L}N}O|P}O}M|P}O}Q|O}N}M|N}P}P}P|M}N}L|P}P}R|N}O}N|N}P}Q|N}M}L}Q|Q}Q}N|M}M}N|R}R}N|N}N}N|Q}P}N}N|N}Q}O|P}M}P|M}N}S|R}L}N|M}N}P}R|O}N}L|O}Q}R|N}N}N|N}P}R}O|N}O}P|R}N}M|R}L}O|Q}S}Q|O}N}N}O|P}K}P|K}O}O|Q}M}O|L}N}Q|P}L}O}N|N}T}P|N}L}M|M) z -(}Q}Q|L}Q}M|M}U}N}N|O}O}L|Q}Q}M|M}L}J|M}I}I|M}X}c}g|`}[}\\|d}g}`|G}!) z -1 -61 N -(|'}J}Y|V}Q}P}P|O}Q}L|M}P}O|Q}T}O|L}K}N|Q}Q}R}M|O}K}R|O}P}O|N}M}P|Q}Q}L|N}S}M}O|T}M}P|K}N}N|R}M}N|N}M}P|Q}N}S}M|L}R}P|K}N}O|P}Q}P|N}N}N|L}Q}Q}M|K}N}M|N}R}M|L}L}K|R}P}M|M}O}O}O|M}O}N|P}M}R|Q}Q}L|P}O}S|P}N}O}P|Q}R}T|Q}O}P|R}Q}R|R}O}N|N}Q}R}N|M}M}O|U}N}N) z -(|N}M}P|S}P}N|L}M}N}Q|P}P}M|M}P}R|P}K}M|L}N}P|R}M}R}M|Q}M}P|N}O}M|P}P}Q|O}M}M|L}R}R}M|P}N}P|O}R}L|O}N}O|P}Q}N|P}L}O}L|S}P}N|N}P}P|Q}L}O|N}P}Q|Q}M}K}O|O}S}O|N}N}K|P}R}P|P}P}N|P}Q}Q}N|Q}M}N|R}P}L|P}P}P|Q}P}M|M}N}P}P|P}K}N|L}Q}Q|P}N}M|J}Q}Q|Q}O}L}N|N}Q}Q) z -(|O}L}P|N}P}R|O}K}O|Q}Q}P}N|L}L}L|N}K}L|H}N}S|`}g}d|Z}Z}`}h|h}[}C) z -2 -52 N -1 -67 N -(}\(|M}Y}U|S}R}Q|U}L}L}Q|Q}P}O|M}M}N|M}S}R|N}L}O}N|R}O}P|N}L}Q|P}P}O|M}N}Q|Q}S}M}K|O}N}R|R}M}O|N}L}Q|S}N}N|N}O}O}Q|L}M}P|O}R}N|P}K}O|O}P}R|J}P}L}L|O}P}N|O}K}Q|Q}N}L|M}L}N|T}O}L}L|N}N}M|Q}M}N|N}O}P|R}N}S|O}Q}R}S|R}Q}P|R}S}R|P}Q}M|R}Q}R|P}M}P}M|S}P}N|P}O) z -(}M|P}R}M|O}N}P|P}P}O}N|N}K}Q|Q}N}M|O}O}R|P}M}L|N}P}O}R|O}L}N|M}R}Q|N}N}M|N}R}R|K}O}L}Q|O}R}N|N}M}P|P}Q}O|M}K}T|P}P}N}P|M}K}Q|T}N}M|N}O}P|R}M}M|N}N}T}P|P}L}N|P}O}R|N}O}M|O}Q}O|O}N}N}O|Q}R}L|N}N}Q|S}P}P|M}N}N|P}T}O}P|N}R}Q|P}L}O|M}O}P|P}K}L|N}Q}O}Q|O}M) z -(}M|N}N}R|N}L}P|P}O}R|M}M}L}Q|R}P}N|M}N}M|R}Q}O|P}I}L|K}L}L}G|K}Q}_|k}h}d|d}d}k|i}a}N|\)) z -1 -68 N -1 -58 N -(}9|P}U}L|P}Q}Q|M}H}M|P}S}O|N}N}L}P|N}P}P|N}N}O|Q}Q}N|M}L}O|V}L}P}O|M}N}P|R}M}N|P}N}S|O}M}N|N}P}P}R|O}K}M|O}S}P|K}S}L|O}O}Q|M}K}P}P|M}R}M|M}M}Q|N}R}M|L}M}O|P}N}Q}J|N}N}P|O}N}L|L}P}O|O}M}N|N}N}P}P|N}O}N|Q}U}O|O}R}O|R}T}S}P|P}Q}Q|S}R}R|M}N}Q|R}P}O|O}L}N) z -(}R|P}N}M|N}Q}P|Q}N}M|M}O}P|Q}O}Q}M|L}P}Q|N}L}Q|L}R}S|N}M}N|O}Q}P}M|Q}O}N|Q}O}O|L}N}P|P}O}M|O}L}P}N|P}N}L|N}M}O|N}N}P|N}P}P|P}O}M}M|Q}R}O|N}O}L|P}R}P|M}P}M|P}Q}O}P|M}M}Q|S}O}M|M}N}O|L}L}G|L}F}L}R|c}c}j|e}`}e|c}c}]|O}0) z -1 -56 N -2 -53 N -(}4}Q}T|P}Q}S|O}L}N|N}R}O|O}L}N|P}R}O}N|N}L}P|P}Q}O|M}M}O|Q}P}O|M}N}N}R|Q}N}M|O}O}N|Q}Q}M|M}N}R|Q}K}O}N|O}S}Q|L}N}K|O}P}R|O}L}O|O}P}N}J|N}P}N|P}R}J|P}K}P|N}S}K|L}K}O}N|R}L}M|M}O}N|P}N}L|P}N}R|O}O}O}N|Q}R}R|P}P}O|Q}Q}S|P}O}O|P}P}S}P|M}O}S|R}R}N|K}P}O|Q) z -(}P}P|M}O}K}R|Q}Q}N|M}P}N|R}N}L|P}L}S|O}M}N}O|L}S}O|P}M}N|O}M}Q|O}O}N|P}P}O}N|N}J}Q|P}Q}P|K}P}N|R}N}O|O}N}P}S|N}M}M|K}P}U|P}O}N|K}N}Q|Q}O}O}M|O}Q}M|O}K}P|O}W}Q|K}L}N|P}Q}Q}O|M}M}M|Q}R}N|L}M}Q|O}O}O|N}Q}M}O|Q}M}O|N}O}Q|Q}K}R|O}N}N|R}L}O}K|P}S}P|O}M}J|N) z -(}R}Q|P}N}K}L|S}Q}M|P}M}O|Q}P}Q|I}O}O|R}P}N}O|N}O}R|O}O}N|K}O}R|R}N}P|M}R}P}R|N}M}P|P}P}R|N}M}N|P}O}Q|L}M}Q}P|P}O}K|M}L}R|O}S}L|N}N}J|P}R}N}O|O}L}Q|O}O}N|N}M}P|S}M}N|O}O}O}P|N}O}I|K}L}O|K}L}S|[}g}`|Z}X}]}d|f}e}W|=}#) z -1 -58 N -(|#}B}P|S}U}V|Q}R}P}N|N}M}S|R}M}O|N}N}P|S}L}P|J}S}Q}O|N}O}N|O}P}U|L}N}K|M}T}P|R}M}L}P|O}P}Q|N}M}O|P}S}K|O}P}L|Q}S}L}M|M}N}Q|R}M}O|L}P}O|N}M}P|O}O}O}T|K}O}N|L}T}R|M}M}K|M}N}P|Q}I}N}M|O}P}K|P}K}L|P}O}M|O}L}O|P}P}O}M|O}N}T|T}P}Q|N}Q}S|T}P}Q|R}Q}Q}S|N}N}O) z -(|P}T}Q|O}N}M|O}P}S|O}L}O}O|P}Q}K|Q}L}P|S}O}N|L}N}P|P}O}P}N|N}L}Q|Q}O}O|K}O}T|L}O}M|N}M}Q}Q|O}N}N|M}Q}Q|O}N}N|Q}P}Q|K}N}M}P|Q}P}L|P}M}O|P}R}M|P}M}O|O}R}O}M|M}Q}R|N}Q}K|M}P}R|R}M}N|O}N}Q}Q|N}N}N|O}O}Q|M}Q}M|P}R}S|K}O}N}P|S}R}M|L}O}R|Q}Q}O|N}P}N|O}Q}N}L) z -(|L}O}O|Q}P}L|L}L}S|P}N}M|M}P}R}M|N}L}M|O}S}R|M}M}O|L}R}S}L|N}N}N|Q}N}J|J}J}L|K}P}T|b}i}c}a|a}b}b|_}[}A|!) z -1 -68 N -(}&|I}X}V|P}Q}R}M|O}M}P|O}M}M|P}Q}R|N}K}Q|L}T}P}O|O}N}M|R}P}O|N}M}N|R}R}N|M}N}N}Q|P}N}N|N}P}Q|O}O}N|M}O}P|Q}N}O}M|M}P}R|Q}L}O|L}S}O|M}M}N|O}Q}O}N|N}K}O|P}P}K|L}O}L|O}P}N|M}N}K}Q|P}L}O|K}P}Q|S}K}M|N}Q}T|S}O}P}S|O}R}U|Q}P}O|S}S}P|N}N}N|P}P}P}P|P}M}P|P}Q) z -(}N|O}N}O|P}R}N|M}N}M}T|Q}L}N|L}O}P|Q}P}M|M}N}Q|P}N}L}O|P}P}P|M}N}L|P}Q}Q|N}N}K|N}S}P}N|M}N}M|R}S}N|L}N}P|N}R}O|Q}J}P}P|R}N}O|L}O}S|O}N}O|L}P}S|O}M}N}N|M}S}T|M}K}O|O}Q}Q|Q}M}L|M}R}P}P|O}J}N|S}Q}N|N}O}Q|R}S}M|L}O}O}S|R}O}M|O}P}O|Q}P}K|M}M}R|O}N}N}M|N}P) z -(}Q|L}K}P|N}R}R|K}L}N|O}R}P}N|O}M}S|M}P}N|N}L}P|N}K}I|G}I}M}U|d}h}h|d}c}g|j}e}T|4) z -1 -65 N -1 -64 N -(|5}T}S}O|M}P}Q|K}O}O|P}P}Q|N}N}L|M}S}O}P|N}M}P|P}P}N|L}Q}O|Q}O}O|N}L}S}O|Q}O}M|L}P}Q|Q}Q}K|O}O}O|P}O}L}N|O}P}Q|O}M}M|O}R}P|O}K}N}N|O}R}M|M}L}M|Q}N}M|M}N}N|O}O}M}M|L}P}P|P}L}M|M}P}P|R}P}M|N}Q}S}R|P}R}O|P}R}V|N}N}N|S}P}S|R}O}M}Q|R}T}L|M}P}P|Q}Q}L|L}N}S) z -(|P}O}O}L|M}O}R|S}M}M|M}L}R|R}M}Q|K}N}Q}Q|M}M}N|P}Q}P|N}K}M|Q}O}R|N}P}L}P|N}P}P|M}N}P|R}Q}J|O}N}M|P}U}M}N|M}N}P|U}L}Q|K}P}O|T}L}M|O}N}S}R|M}N}L|O}R}R|N}O}L|N}Q}Q|P}N}M}O|P}O}N|N}N}R|T}N}N|P}N}Q|P}Q}O}M|N}T}Q|O}O}O|O}K}N|O}M}O|P}M}P}Q|J}O}N|N}R}P|N}O}L) z -(|N}Q}Q|M}O}L}P|P}P}N|M}O}P|O}S}J|K}I}J|K}M}J}R|`}g}e|a}^}c|d}c}W|9) z -1 -61 N -1 -56 N -(|6}V}X}S|M}O}P|M}Q}Q|L}N}M|O}S}S|K}N}K}O|Q}Q}P|M}L}O|S}Q}M|N}K}O|S}Q}P}N|L}N}R|Q}N}M|O}O}P|P}M}O|M}P}Q}P|M}L}N|O}Q}R|O}L}L|P}Q}N|M}N}M}L|R}R}N|K}O}M|O}P}N|J}M}N|R}P}M}L|N}N}P|P}N}N|N}M}R|R}O}O|R}P}S}S|P}Q}N|P}U}Q|N}P}L|R}Q}Q|M}O}M}O|Q}R}O|N}K}P|Q}P}M) z -(|N}L}O|R}Q}M}N|N}O}O|S}K}O|K}N}R|T}M}N|N}M}O}P|N}N}N|N}Q}O|L}P}N|P}P}S}L|M}N}O|Q}Q}N|M}N}O|P}Q}Q|K}M}N}Q|R}L}N|M}P}R|P}P}O|N}N}N|R}L}N}P|O}T}O|J}N}K|Q}R}Q|O}L}N|N}T}R}O|P}M}P|R}O}M|O}Q}N|S}O}M|M}L}P}Q|P}L}O|K}R}M|R}J}M|M}O}S|N}P}O}L|R}Q}M|N}O}M|N}O}P) z -(|P}N}L|O}P}S}M|M}L}J|K}P}J|K}S}[|d}d}Z|Y}]}b}e|W}4) z -1 -51 N -2 -53 N -(};}Q|Y}U}N|R}O}R|Q}P}K}N|O}O}P|N}O}P|O}O}S|O}M}M|P}Q}O}N|P}L}L|S}P}M|O}M}P|P) z -8 R -1148 Ay -1771 1266 1078 590 sb -956 1073 m -(\(N)t -1771 1266 1078 590 sb -1034 A -1771 1266 1078 590 sb -1418 A -1771 1266 1078 590 sb -1801 A -1771 1266 1078 590 sb -2174 A -1771 1266 1078 590 sb -2548 A -1771 1266 1078 590 sb -2921 A -1771 1266 1078 590 sb -3307 A -1771 1266 1078 590 sb -(A) 3615 a -1771 1266 1078 590 sb -4085 A -1771 1266 1078 590 sb -4484 A -1771 1266 1078 590 sb -4867 A -1771 1266 1078 590 sb -5240 A -1771 1266 1078 590 sb -5604 A -10 R -5952 2078 m -(0)b -(0)b -(1)b -( )b -8 R -(D)b -(R)b -(O)b -(C)b -(E)b -10 R -(R)b -637 2078 m -(P)t -8 R -(R)t -(I)t -(N)t -(T)t -(E)t -(D)t -10 R -( )t -(1)t -(8)t -( )t -(A)t -8 R -(U)t -(G)t -(U)t -(S)t -(T)t -10 R -( )t -(1)t -(9)t -(9)t -(6)t -6 R -5952 295 m -(20 mm/sec, 8 mm/mV)b -endpschart +%%Page: 1 1 +%%BeginPageSetup +GS_epswrite_2_0_1001 begin +/pagesave save store 197 dict begin +0.1 0.1 scale +%%EndPageSetup +gsave mark +K +0 0 0 0 rf +Q q +0 0 250000 0 0 250000 ^ Y +2432 767 49 36 /1O +$C ++Tfa#+qQeSK;Vlr89c=4=p,n1GY^oE5CGH'HiO-CFk;'?V8$_]E70CK/_"M~> +, +K +2448 807 33 26 /4P +$C +3XGp/+Qtk.8t6GO8/p%.\paVXqb#bRYejKrQ&;ta(f4V5~> +, +2448 835 45 28 /1T +$C +;sX<\j'P_Ef*+b%-M3f-?2sW4[MHbR"pnDu.o=*8"T~> +, +2448 866 45 27 /4T +$C +34T^2SfP`-n8Ahm=]QGG0[ems#t-Ja$5f^LTnQmIJO'H!Jd&so_#hOj((1LH~> +, +2448 895 32 20 /1X +$C +1J4#1VoPs;QrL;RV>>*0[/~> +, +2432 916 48 14 /4X +$C +.MATWVJS1c4asW`M%nj_~> +, +2448 934 45 26 /2B +$C +,0l^OMD1PC_KQ +, +2432 963 48 28 /5B +$C +1tVD[I7h-e-V;b:eU%2f[]Fhc3 +, +2440 993 41 15 /2F +$C +3\&^:AQfQWVPH>@4nn:@.&?~> +, +2435 1027 46 41 /5J +$C ++p=#'o)QenO9%m=oYejEX8f06S`$d=4_*@~> +, +2440 1087 40 51 /2N +$C +-E2K!ln!W1R)9FFK5e`G%h(?5E+-Wh$oh\5%Lb=*_[JC2-p^0,&1Bh1"UHMB5m7N,KGFhE+I""U +'$($r-`>kf~> +, +2448 1141 33 25 /5N +$C +.Lm#27[tg59e!D>+S2A(PP&428UYcIDb@rS*OcMDRpM@.~> +, +2448 1169 33 18 /2R +$C +1a=^u0\%lL_reD`-N-%"n,:#pg[2AMg +, +2448 1192 2R , +2448 1215 5N , +2448 1240 33 24 /5R +$C +3f=7`+Q5A'8oFhAdX"]dea),ll[=CY%^)-jksI`?)Lq~> +, +2432 1267 5B , +2448 1297 33 28 /2V +$C +354qj1*62O+U?o)c78(#[[&1N[IrV"C\R~> +, +2448 1329 2R , +2448 1351 33 23 /5V +$C ++bt^\';n:0q9W5^$P-OSh08VnqtoZrr+gVi=%_^EV%A6/~> +, +2440 1377 2F , +2440 1394 2F , +2448 1412 2R , +2440 1449 40 18 /2Z +$C +-E2Lf^=GOJ@6HgSomd~> +, +2448 1469 32 28 /5Z +$C +5*sm/NI=MTWB+3d:Tn!i@s;nQ&)R~> +, +2448 1501 2R , +2440 1522 2F , +2432 1539 4X , +2440 1555 2F , +2448 1572 2V , +2440 1602 2F , +2448 1620 5V , +2448 1661 4P , +2432 1690 48 22 /3D +$C +-2%;i;c#=QKiLT&_;T:Ds8VT_I`DB:~> +, +2440 1725 40 35 /6D +$C +-D +, +2448 1763 5V , +2448 1789 5R , +2432 1815 5B , +2448 1845 5Z , +2448 1876 4P , +2432 1905 48 14 /3H +$C +-VD/>k^L&GhnT~> +, +2448 1923 4P , +2448 1953 2B , +2448 1982 4T , +2432 2033 48 17 /6H +$C +,UN-L +, +2432 2058 49 26 /3L +$C +22MGSKH?_bM,EbnoFkqQqG+`Ps7F%;de"=/V7Ht8C(eUC5a@/+$Igc'Ka'jL~> +, +2432 2088 3L , +2432 2118 49 26 /6L +$C +,f2hY@Xs*(iAr*GF:^B!7mZ>O[m0#_P-f3q&a-i~> +, +2472 2150 9 7 /3P +$X +%KJ]n5CbtK5Cbru%KH~> +, +2432 2177 48 41 /6P +$C +>uW4KTg9:O+Iiuo-%lPbYX#]aE'Up!E.MsoE1]Gi*t04q*t05"4q)0CG[]OHW+-;I*&oosme?~> +, +2432 2220 3H , +2432 2237 3H , +2448 2268 1X , +2432 2289 4X , +2448 2306 2B , +2432 2335 5B , +2440 2365 2F , +2448 2384 2R , +2448 2419 1X , +2448 2441 5V , +2448 2469 2R , +2448 2491 5V , +2448 2516 1X , +2448 2537 33 28 /3T +$C +355-BK>YUCkA^&%*t1,]%N%/`(fV1l:dIi!5e'*r&1g/a@: +, +2448 2568 5V , +2432 2595 49 27 /6T +$C +,=4ZuKH3$IM!4=noFQF/Y?q7il`.C[DsT00`(:lDr@'>3Y5~> +, +2472 2627 3P , +7.2 w +709.446 1119.6 1417.2 5668.8 re +S +[ 1.2 21.4772 ] 0 d +1.2 w +2013.26 1119.6 0 5668.8 S +1899.87 1119.6 0 5668.8 S +1786.49 1119.6 0 5668.8 S +1673.1 1119.6 0 5668.8 S +1559.72 1119.6 0 5668.8 S +1446.33 1119.6 0 5668.8 S +1332.95 1119.6 0 5668.8 S +1219.56 1119.6 0 5668.8 S +1106.17 1119.6 0 5668.8 S +992.79 1119.6 0 5668.8 S +879.4 1119.6 0 5668.8 S +766.02 1119.6 0 5668.8 S +2126.65 1232.99 -1417.2 0 S +2126.65 1346.37 -1417.2 0 S +2126.65 1459.76 -1417.2 0 S +2126.65 1573.14 -1417.2 0 S +2126.65 1686.53 -1417.2 0 S +2126.65 1799.91 -1417.2 0 S +2126.65 1913.3 -1417.2 0 S +2126.65 2026.69 -1417.2 0 S +2126.65 2140.07 -1417.2 0 S +2126.65 2253.46 -1417.2 0 S +2126.65 2366.84 -1417.2 0 S +2126.65 2480.23 -1417.2 0 S +2126.65 2593.62 -1417.2 0 S +2126.65 2707 -1417.2 0 S +2126.65 2820.39 -1417.2 0 S +2126.65 2933.77 -1417.2 0 S +2126.65 3047.16 -1417.2 0 S +2126.65 3160.54 -1417.2 0 S +2126.65 3273.93 -1417.2 0 S +2126.65 3387.32 -1417.2 0 S +2126.65 3500.7 -1417.2 0 S +2126.65 3614.09 -1417.2 0 S +2126.65 3727.47 -1417.2 0 S +2126.65 3840.86 -1417.2 0 S +2126.65 3954.25 -1417.2 0 S +2126.65 4067.63 -1417.2 0 S +2126.65 4181.02 -1417.2 0 S +2126.65 4294.4 -1417.2 0 S +2126.65 4407.79 -1417.2 0 S +2126.65 4521.18 -1417.2 0 S +2126.65 4634.56 -1417.2 0 S +2126.65 4747.95 -1417.2 0 S +2126.65 4861.33 -1417.2 0 S +2126.65 4974.72 -1417.2 0 S +2126.65 5088.11 -1417.2 0 S +2126.65 5201.49 -1417.2 0 S +2126.65 5314.88 -1417.2 0 S +2126.65 5428.26 -1417.2 0 S +2126.65 5541.65 -1417.2 0 S +2126.65 5655.04 -1417.2 0 S +2126.65 5768.42 -1417.2 0 S +2126.65 5881.81 -1417.2 0 S +2126.65 5995.19 -1417.2 0 S +2126.65 6108.58 -1417.2 0 S +2126.65 6221.96 -1417.2 0 S +2126.65 6335.35 -1417.2 0 S +2126.65 6448.74 -1417.2 0 S +2126.65 6562.12 -1417.2 0 S +2126.65 6675.51 -1417.2 0 S +1399 951 59 36 /3X +$C +.KSTq."V[,%M3_%-VfJ*6camtJHO7AhOdS8\psb[[;@Luf#%es&8RBCKjq/O$Igc'Kd$OcW!@h~> +, +1415 995 43 9 /6X +$C +1do36$m=i+2#mNOXYg~> +, +1399 1013 3X , +1399 1053 3X , +1399 6819 3X , +1415 6863 6X , +1399 6888 58 23 /4B +$C +-q_0glFs7!CTb3MT7?>~> +, +1399 6921 3X , +1035 925 58 71 /7F +$C +/u&6`1%.S:7<;?]>uJ:SqA0S0H7&cfKK'I79"-mQR*&d1QWF:iK:_@d&1 +U(&>$:EWpi$-4eL+GCA0+BV`Q?bc~> +, +1035 992 58 45 /4J +$C +?$/u>/0HAk"p%LDO:1+lAmi0J2!be_cK8Q&nAsP8`.h0;L0-PS+eT2Ha<7WR.D]u7lh^WYp!m&? +KF/8?/H>~> +, +1035 1037 58 32 /7J +$C +?$/u>/0HAk"p%8^(HdL=be\?sAs[ZHL1L+IAoPiLdDUc9N.tMp'9LR""cu'-&@)ZO$g[Q~> +, +1035 1063 7J , +1035 6816 7F , +1035 6883 4J , +1035 6927 7J , +1035 6954 7J , +[ ] 0 d +1023.85 1119.6 0 1.2 0 1.2 0 1.2 0 2.4 0 1.2 0 1.2 0 2.4 +-4.8 1.2 2.4 1.2 2.4 2.4 1.2 1.2 2.4 1.2 -1.2 2.4 1.2 1.2 3.6 1.2 +1.2 1.2 1.2 2.4 -3.6 1.2 -3.6 1.2 4.8 2.4 1.2 1.2 2.4 1.2 -2.4 2.4 +-6 1.2 -4.8 1.2 4.8 2.4 8.4 1.2 3.6 1.2 6 2.4 -2.4 1.2 4.8 1.2 +1.2 1.2 2.4 2.4 3.6 1.2 0 1.2 0 2.4 -2.4 1.2 -2.4 1.2 2.4 2.4 +2.4 1.2 3.6 1.2 0 2.4 0 1.2 0 1.2 -1.2 2.4 2.4 1.2 2.4 1.2 +-4.8 1.2 -2.4 2.4 0 1.2 1.2 1.2 1.2 2.4 4.8 1.2 -3.6 1.2 2.4 2.4 +-4.8 1.2 2.4 1.2 2.4 2.4 2.4 1.2 1.2 1.2 3.6 2.4 6 1.2 6 1.2 +0 1.2 3.6 2.4 12 1.2 7.2 1.2 0 2.4 -14.4 1.2 -21.6 1.2 -24 2.4 +-34.8 1.2 -43.2 1.2 S +963.84 1233.6 -57.6 2.4 S +906.24 1235.99 -55.2 1.2 -36 1.2 -14.4 2.4 16.8 1.2 56.4 1.2 S +873.84 1243.19 79.2 1.2 S +953.04 1244.39 75.6 2.4 S +1028.64 1246.79 45.6 1.2 15.6 1.2 -2.4 2.4 -12 1.2 -9.6 1.2 -1.2 2.4 2.4 1.2 +2.4 1.2 -3.6 2.4 -1.2 1.2 -2.4 1.2 0 2.4 1.2 1.2 3.6 1.2 1.2 1.2 +-3.6 2.4 4.8 1.2 -2.4 1.2 -1.2 2.4 1.2 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 +0 1.2 3.6 2.4 2.4 1.2 -4.8 1.2 -2.4 2.4 -3.6 1.2 2.4 1.2 0 1.2 +2.4 2.4 2.4 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 2.4 1.2 0 2.4 -3.6 1.2 +-2.4 1.2 0 2.4 0 1.2 2.4 1.2 2.4 2.4 -6 1.2 0 1.2 1.2 1.2 +0 2.4 1.2 1.2 0 1.2 1.2 2.4 -2.4 1.2 2.4 1.2 2.4 2.4 1.2 1.2 +-1.2 1.2 -1.2 2.4 -3.6 1.2 -2.4 1.2 3.6 2.4 -1.2 1.2 3.6 1.2 -3.6 1.2 +1.2 2.4 0 1.2 2.4 1.2 0 2.4 2.4 1.2 -3.6 1.2 0 2.4 -1.2 1.2 +-1.2 1.2 4.8 2.4 0 1.2 -1.2 1.2 -2.4 2.4 0 1.2 0 1.2 3.6 1.2 +1.2 2.4 0 1.2 -2.4 1.2 0 2.4 -2.4 1.2 3.6 1.2 2.4 2.4 0 1.2 +0 1.2 1.2 2.4 -1.2 1.2 2.4 1.2 3.6 2.4 -3.6 1.2 -2.4 1.2 -1.2 1.2 +1.2 2.4 3.6 1.2 0 1.2 -2.4 2.4 0 1.2 -1.2 1.2 0 2.4 1.2 1.2 +1.2 1.2 -3.6 2.4 -6 1.2 -1.2 1.2 0 2.4 2.4 1.2 1.2 1.2 -6 1.2 +-2.4 2.4 0 1.2 -2.4 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 -2.4 2.4 -4.8 1.2 +-1.2 1.2 0 2.4 3.6 1.2 -2.4 1.2 -2.4 2.4 -3.6 1.2 S +1043.05 1443.59 3.6 1.2 0 1.2 2.4 2.4 0 1.2 -3.6 1.2 2.4 2.4 1.2 1.2 +-2.4 1.2 2.4 2.4 -1.2 1.2 0 1.2 3.6 2.4 -1.2 1.2 0 1.2 1.2 2.4 +1.2 1.2 -1.2 1.2 -1.2 1.2 3.6 2.4 1.2 1.2 2.4 1.2 -3.6 2.4 -1.2 1.2 +-2.4 1.2 4.8 2.4 0 1.2 1.2 1.2 -2.4 2.4 0 1.2 -2.4 1.2 1.2 2.4 +3.6 1.2 1.2 1.2 -2.4 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 4.8 2.4 0 1.2 +1.2 1.2 -2.4 2.4 1.2 1.2 2.4 1.2 0 2.4 -1.2 1.2 -2.4 1.2 -2.4 2.4 +0 1.2 1.2 1.2 1.2 1.2 3.6 2.4 -4.8 1.2 1.2 1.2 1.2 2.4 1.2 1.2 +1.2 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 4.8 1.2 2.4 1.2 1.2 2.4 +-3.6 1.2 -2.4 1.2 1.2 1.2 1.2 2.4 1.2 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 +0 1.2 -1.2 2.4 0 1.2 1.2 1.2 -2.4 2.4 1.2 1.2 -3.6 1.2 2.4 2.4 +0 1.2 1.2 1.2 0 1.2 -3.6 2.4 -2.4 1.2 3.6 1.2 2.4 2.4 1.2 1.2 +-1.2 1.2 -2.4 2.4 -1.2 1.2 -2.4 1.2 -2.4 2.4 1.2 1.2 0 1.2 -1.2 2.4 +-4.8 1.2 0 1.2 1.2 1.2 -7.2 2.4 0 1.2 -3.6 1.2 -1.2 2.4 1.2 1.2 +2.4 1.2 2.4 2.4 -1.2 1.2 0 1.2 0 2.4 0 1.2 1.2 1.2 1.2 2.4 +1.2 1.2 -1.2 1.2 -2.4 1.2 -2.4 2.4 -1.2 1.2 8.4 1.2 9.6 2.4 0 1.2 +3.6 1.2 2.4 2.4 3.6 1.2 0 1.2 -1.2 2.4 -2.4 1.2 S +1062.25 1640.38 1.2 1.2 -1.2 2.4 2.4 1.2 3.6 1.2 1.2 1.2 -1.2 2.4 0 1.2 +2.4 1.2 -1.2 2.4 2.4 1.2 -6 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 6 2.4 +2.4 1.2 -3.6 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 4.8 1.2 3.6 2.4 -1.2 1.2 +4.8 1.2 9.6 2.4 4.8 1.2 7.2 1.2 7.2 2.4 6 1.2 -7.2 1.2 -20.4 2.4 +-25.2 1.2 -32.4 1.2 -32.4 2.4 -56.4 1.2 S +938.65 1695.58 -58.8 1.2 S +879.85 1696.77 -51.6 1.2 -34.8 2.4 -15.6 1.2 8.4 1.2 33.6 2.4 S +819.85 1705.17 60 1.2 S +879.85 1706.37 74.4 1.2 S +954.25 1707.57 62.4 2.4 S +1016.65 1709.97 36 1.2 27.6 1.2 13.2 2.4 6 1.2 -4.8 1.2 -7.2 2.4 -7.2 1.2 +0 1.2 -1.2 1.2 1.2 2.4 -2.4 1.2 0 1.2 0 2.4 3.6 1.2 -2.4 1.2 +0 2.4 0 1.2 -2.4 1.2 4.8 2.4 2.4 1.2 0 1.2 -1.2 1.2 -1.2 2.4 +-1.2 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 3.6 2.4 0 1.2 2.4 1.2 +1.2 2.4 0 1.2 -3.6 1.2 0 2.4 1.2 1.2 1.2 1.2 2.4 1.2 -2.4 2.4 +1.2 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 -1.2 2.4 0 1.2 -1.2 1.2 +-1.2 2.4 2.4 1.2 1.2 1.2 -3.6 2.4 0 1.2 -1.2 1.2 0 1.2 4.8 2.4 +-1.2 1.2 -1.2 1.2 -1.2 2.4 -3.6 1.2 3.6 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 +-2.4 2.4 0 1.2 -1.2 1.2 3.6 2.4 2.4 1.2 0 1.2 -2.4 1.2 -1.2 2.4 +1.2 1.2 2.4 1.2 1.2 2.4 0 1.2 -2.4 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 +3.6 2.4 -1.2 1.2 0 1.2 -2.4 2.4 2.4 1.2 4.8 1.2 1.2 1.2 -1.2 2.4 +-3.6 1.2 2.4 1.2 1.2 2.4 1.2 1.2 3.6 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 +1.2 2.4 3.6 1.2 1.2 1.2 -3.6 2.4 -2.4 1.2 -1.2 1.2 -1.2 1.2 -1.2 2.4 +1.2 1.2 -7.2 1.2 -2.4 2.4 -6 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 -6 1.2 +-3.6 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 0 1.2 -2.4 1.2 -1.2 1.2 -2.4 2.4 +0 1.2 3.6 1.2 0 2.4 -1.2 1.2 -1.2 1.2 0 2.4 S +1061.05 1906.77 -2.4 1.2 4.8 1.2 2.4 2.4 -4.8 1.2 1.2 1.2 -2.4 2.4 0 1.2 +3.6 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 0 1.2 +0 2.4 -3.6 1.2 -1.2 1.2 3.6 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 +2.4 1.2 0 1.2 0 2.4 3.6 1.2 -3.6 1.2 1.2 2.4 -1.2 1.2 2.4 1.2 +2.4 2.4 1.2 1.2 -1.2 1.2 0 2.4 -1.2 1.2 -1.2 1.2 4.8 2.4 1.2 1.2 +-1.2 1.2 -2.4 1.2 -1.2 2.4 0 1.2 3.6 1.2 0 2.4 0 1.2 -6 1.2 +2.4 2.4 1.2 1.2 1.2 1.2 3.6 2.4 -4.8 1.2 -1.2 1.2 0 2.4 1.2 1.2 +4.8 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 0 1.2 0 1.2 +0 2.4 -3.6 1.2 0 1.2 1.2 2.4 2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 +-2.4 1.2 3.6 1.2 0 2.4 2.4 1.2 -1.2 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 +0 2.4 0 1.2 -2.4 1.2 1.2 2.4 -1.2 1.2 1.2 1.2 2.4 2.4 0 1.2 +-1.2 1.2 -2.4 1.2 -3.6 2.4 -3.6 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 +-2.4 2.4 0 1.2 0 1.2 -2.4 2.4 -1.2 1.2 -2.4 1.2 -3.6 2.4 -1.2 1.2 +4.8 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 -2.4 1.2 2.4 2.4 1.2 1.2 6 1.2 +0 2.4 -2.4 1.2 -3.6 1.2 -6 2.4 0 1.2 1.2 1.2 8.4 2.4 1.2 1.2 +2.4 1.2 1.2 1.2 4.8 2.4 2.4 1.2 4.8 1.2 -2.4 2.4 S +1065.85 2103.56 1.2 1.2 0 1.2 4.8 2.4 3.6 1.2 -2.4 1.2 -3.6 2.4 1.2 1.2 +1.2 1.2 2.4 2.4 2.4 1.2 1.2 1.2 -2.4 1.2 -1.2 2.4 0 1.2 3.6 1.2 +1.2 2.4 -1.2 1.2 -1.2 1.2 -4.8 2.4 3.6 1.2 4.8 1.2 2.4 2.4 1.2 1.2 +6 1.2 7.2 2.4 6 1.2 6 1.2 8.4 1.2 3.6 2.4 -10.8 1.2 -27.6 1.2 +-34.8 2.4 -36 1.2 -48 1.2 S +963.85 2156.35 -66 2.4 S +897.85 2158.75 -62.4 1.2 S +835.45 2159.95 -44.4 1.2 -16.8 2.4 24 1.2 S +798.25 2164.75 75.6 1.2 S +873.85 2165.95 105.6 2.4 S +979.45 2168.35 84 1.2 S +1063.45 2169.55 40.8 1.2 1.2 1.2 -13.2 2.4 -7.2 1.2 -3.6 1.2 -1.2 2.4 1.2 1.2 +-1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 1.2 2.4 -2.4 1.2 1.2 1.2 0 2.4 +2.4 1.2 -1.2 1.2 0 1.2 0 2.4 2.4 1.2 -2.4 1.2 3.6 2.4 -1.2 1.2 +-2.4 1.2 0 2.4 3.6 1.2 0 1.2 3.6 2.4 -3.6 1.2 -2.4 1.2 0 2.4 +-1.2 1.2 4.8 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 0 2.4 3.6 1.2 +-1.2 1.2 -3.6 2.4 -1.2 1.2 1.2 1.2 0 2.4 -1.2 1.2 3.6 1.2 -2.4 2.4 +-2.4 1.2 2.4 1.2 0 1.2 2.4 2.4 2.4 1.2 0 1.2 -2.4 2.4 0 1.2 +-1.2 1.2 3.6 2.4 0 1.2 -1.2 1.2 -1.2 2.4 -2.4 1.2 0 1.2 1.2 2.4 +3.6 1.2 -3.6 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 0 1.2 0 2.4 -3.6 1.2 +3.6 1.2 -2.4 2.4 0 1.2 2.4 1.2 2.4 2.4 -2.4 1.2 0 1.2 1.2 2.4 +1.2 1.2 1.2 1.2 0 1.2 1.2 2.4 -2.4 1.2 0 1.2 -1.2 2.4 6 1.2 +-1.2 1.2 1.2 2.4 -3.6 1.2 0 1.2 0 2.4 0 1.2 1.2 1.2 0 2.4 +-2.4 1.2 -3.6 1.2 0 1.2 -1.2 2.4 -3.6 1.2 -3.6 1.2 -4.8 2.4 -1.2 1.2 +-1.2 1.2 1.2 2.4 0 1.2 -2.4 1.2 -1.2 2.4 -2.4 1.2 0 1.2 1.2 1.2 +0 2.4 -1.2 1.2 -1.2 1.2 0 2.4 0 1.2 2.4 1.2 0 2.4 0 1.2 +0 1.2 -2.4 2.4 1.2 1.2 1.2 1.2 1.2 2.4 1.2 1.2 S +1064.65 2366.35 -2.4 1.2 -1.2 1.2 0 2.4 2.4 1.2 1.2 1.2 -3.6 2.4 1.2 1.2 +-3.6 1.2 3.6 2.4 2.4 1.2 1.2 1.2 -2.4 2.4 0 1.2 0 1.2 1.2 2.4 +6 1.2 0 1.2 -2.4 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 4.8 1.2 +-2.4 1.2 0 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 2.4 1.2 -2.4 1.2 -1.2 2.4 +-2.4 1.2 3.6 1.2 -1.2 1.2 3.6 2.4 0 1.2 -3.6 1.2 1.2 2.4 -1.2 1.2 +4.8 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 1.2 2.4 -1.2 1.2 1.2 1.2 3.6 2.4 +-2.4 1.2 -1.2 1.2 -3.6 1.2 0 2.4 0 1.2 4.8 1.2 -1.2 2.4 -4.8 1.2 +0 1.2 -1.2 2.4 3.6 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 0 1.2 0 2.4 +4.8 1.2 2.4 1.2 -7.2 1.2 1.2 2.4 -1.2 1.2 1.2 1.2 0 2.4 2.4 1.2 +-2.4 1.2 -3.6 2.4 2.4 1.2 -2.4 1.2 0 2.4 0 1.2 -1.2 1.2 -6 2.4 +-1.2 1.2 0 1.2 1.2 1.2 -1.2 2.4 -3.6 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 +0 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 3.6 1.2 1.2 1.2 2.4 2.4 +1.2 1.2 -3.6 1.2 1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 +-2.4 1.2 -2.4 2.4 -3.6 1.2 4.8 1.2 4.8 2.4 7.2 1.2 0 1.2 7.2 2.4 +3.6 1.2 4.8 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 1.2 1.2 +1.2 1.2 -2.4 2.4 0 1.2 0 1.2 2.4 2.4 1.2 1.2 S +1082.65 2563.14 0 1.2 -6 2.4 0 1.2 3.6 1.2 1.2 1.2 3.6 2.4 -2.4 1.2 +0 1.2 -2.4 2.4 2.4 1.2 4.8 1.2 8.4 2.4 3.6 1.2 6 1.2 1.2 2.4 +3.6 1.2 3.6 1.2 13.2 2.4 10.8 1.2 -3.6 1.2 -12 1.2 -19.2 2.4 -24 1.2 +-26.4 1.2 -34.8 2.4 -46.8 1.2 S +971.05 2603.94 -63.6 1.2 S +907.45 2605.14 -60 2.4 S +847.45 2607.54 -39.6 1.2 -12 1.2 20.4 2.4 S +816.25 2612.34 67.2 1.2 S +883.45 2613.53 93.6 1.2 S +977.05 2614.73 84 2.4 S +1061.05 2617.13 43.2 1.2 4.8 1.2 -9.6 1.2 -15.6 2.4 -3.6 1.2 0 1.2 2.4 2.4 +1.2 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 +0 2.4 -2.4 1.2 1.2 1.2 2.4 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 +1.2 1.2 -1.2 1.2 0 2.4 1.2 1.2 -3.6 1.2 -1.2 2.4 1.2 1.2 1.2 1.2 +1.2 2.4 0 1.2 0 1.2 -1.2 1.2 0 2.4 1.2 1.2 0 1.2 0 2.4 +-1.2 1.2 -2.4 1.2 -2.4 2.4 2.4 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 +2.4 2.4 2.4 1.2 0 1.2 -2.4 1.2 -2.4 2.4 0 1.2 2.4 1.2 2.4 2.4 +-1.2 1.2 0 1.2 -6 2.4 2.4 1.2 2.4 1.2 2.4 2.4 -3.6 1.2 1.2 1.2 +-2.4 2.4 1.2 1.2 2.4 1.2 -2.4 1.2 -1.2 2.4 0 1.2 0 1.2 0 2.4 +1.2 1.2 2.4 1.2 0 2.4 -6 1.2 1.2 1.2 1.2 2.4 2.4 1.2 1.2 1.2 +0 2.4 -3.6 1.2 -2.4 1.2 4.8 1.2 -1.2 2.4 2.4 1.2 -3.6 1.2 0 2.4 +-2.4 1.2 1.2 1.2 3.6 2.4 2.4 1.2 -2.4 1.2 0 2.4 -3.6 1.2 -1.2 1.2 +1.2 2.4 1.2 1.2 -6 1.2 -3.6 1.2 -3.6 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 +-2.4 1.2 -3.6 1.2 -2.4 2.4 3.6 1.2 -1.2 1.2 -2.4 2.4 0 1.2 -1.2 1.2 +-2.4 2.4 2.4 1.2 2.4 1.2 1.2 1.2 0 2.4 -1.2 1.2 -2.4 1.2 2.4 2.4 +1.2 1.2 3.6 1.2 -3.6 2.4 -2.4 1.2 -1.2 1.2 -1.2 2.4 S +1053.85 2813.93 4.8 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 0 1.2 -2.4 1.2 3.6 2.4 +1.2 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 1.2 1.2 1.2 2.4 0 1.2 0 1.2 +-3.6 2.4 1.2 1.2 2.4 1.2 3.6 2.4 2.4 1.2 -2.4 1.2 -2.4 1.2 0 2.4 +-1.2 1.2 2.4 1.2 2.4 2.4 -1.2 1.2 -3.6 1.2 1.2 2.4 0 1.2 2.4 1.2 +3.6 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 1.2 1.2 -1.2 2.4 +-1.2 1.2 -1.2 1.2 0 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 -3.6 1.2 +4.8 2.4 0 1.2 2.4 1.2 3.6 2.4 -1.2 1.2 -3.6 1.2 0 1.2 1.2 2.4 +0 1.2 0 1.2 -2.4 2.4 0 1.2 1.2 1.2 0 2.4 8.4 1.2 -4.8 1.2 +0 2.4 -3.6 1.2 0 1.2 1.2 2.4 1.2 1.2 -2.4 1.2 -3.6 1.2 0 2.4 +1.2 1.2 0 1.2 1.2 2.4 -2.4 1.2 -2.4 1.2 -6 2.4 0 1.2 2.4 1.2 +1.2 2.4 -4.8 1.2 -1.2 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 +-3.6 1.2 -4.8 1.2 3.6 2.4 -1.2 1.2 3.6 1.2 0 2.4 -2.4 1.2 -2.4 1.2 +4.8 2.4 2.4 1.2 -1.2 1.2 -1.2 1.2 3.6 2.4 -1.2 1.2 3.6 1.2 -6 2.4 +-1.2 1.2 -1.2 1.2 4.8 2.4 3.6 1.2 4.8 1.2 2.4 2.4 2.4 1.2 2.4 1.2 +2.4 2.4 -3.6 1.2 1.2 1.2 2.4 1.2 3.6 2.4 -2.4 1.2 -2.4 1.2 -1.2 2.4 +2.4 1.2 3.6 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 -1.2 2.4 S +1074.25 3010.72 0 1.2 3.6 1.2 -1.2 2.4 0 1.2 -2.4 1.2 1.2 1.2 -2.4 2.4 +2.4 1.2 2.4 1.2 -3.6 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 3.6 1.2 3.6 1.2 +2.4 2.4 7.2 1.2 3.6 1.2 9.6 2.4 6 1.2 12 1.2 -2.4 1.2 -18 2.4 +-27.6 1.2 -30 1.2 -38.4 2.4 -54 1.2 S +949.45 3052.72 -66 1.2 S +883.45 3053.92 -51.6 2.4 -26.4 1.2 9.6 1.2 55.2 2.4 S +870.25 3061.12 88.8 1.2 S +959.05 3062.32 78 1.2 S +1037.05 3063.52 49.2 2.4 18 1.2 -3.6 1.2 -7.2 1.2 -9.6 2.4 -1.2 1.2 -2.4 1.2 +0 2.4 2.4 1.2 0 1.2 4.8 2.4 0 1.2 -4.8 1.2 -1.2 2.4 1.2 1.2 +0 1.2 2.4 2.4 -2.4 1.2 -3.6 1.2 1.2 1.2 1.2 2.4 0 1.2 0 1.2 +0 2.4 -2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 4.8 1.2 -3.6 2.4 -1.2 1.2 +-1.2 1.2 1.2 2.4 0 1.2 4.8 1.2 -2.4 1.2 -2.4 2.4 0 1.2 0 1.2 +1.2 2.4 1.2 1.2 -2.4 1.2 3.6 2.4 -3.6 1.2 1.2 1.2 0 2.4 2.4 1.2 +-1.2 1.2 -2.4 2.4 -1.2 1.2 0 1.2 0 1.2 1.2 2.4 -1.2 1.2 0 1.2 +1.2 2.4 0 1.2 3.6 1.2 3.6 2.4 -4.8 1.2 -2.4 1.2 -1.2 2.4 -1.2 1.2 +4.8 1.2 -2.4 2.4 0 1.2 0 1.2 -1.2 1.2 0 2.4 1.2 1.2 3.6 1.2 +-1.2 2.4 -2.4 1.2 -1.2 1.2 1.2 2.4 0 1.2 4.8 1.2 0 2.4 0 1.2 +-1.2 1.2 1.2 2.4 6 1.2 -1.2 1.2 1.2 1.2 -3.6 2.4 2.4 1.2 6 1.2 +-3.6 2.4 1.2 1.2 -4.8 1.2 -1.2 2.4 -2.4 1.2 1.2 1.2 3.6 2.4 1.2 1.2 +-1.2 1.2 -3.6 2.4 -2.4 1.2 -2.4 1.2 3.6 1.2 -1.2 2.4 -3.6 1.2 -4.8 1.2 +-2.4 2.4 -1.2 1.2 0 1.2 0 2.4 -4.8 1.2 -3.6 1.2 -3.6 2.4 -1.2 1.2 +0 1.2 2.4 2.4 -1.2 1.2 0 1.2 -1.2 1.2 1.2 2.4 0 1.2 1.2 1.2 +-1.2 2.4 -1.2 1.2 0 1.2 -2.4 2.4 3.6 1.2 1.2 1.2 S +1063.45 3260.31 -1.2 2.4 0 1.2 -3.6 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 -3.6 1.2 +-1.2 2.4 2.4 1.2 1.2 1.2 2.4 2.4 3.6 1.2 -3.6 1.2 -1.2 2.4 0 1.2 +2.4 1.2 2.4 2.4 2.4 1.2 -2.4 1.2 -2.4 2.4 1.2 1.2 3.6 1.2 -1.2 1.2 +2.4 2.4 -3.6 1.2 0 1.2 -1.2 2.4 -1.2 1.2 4.8 1.2 0 2.4 2.4 1.2 +-2.4 1.2 -2.4 2.4 1.2 1.2 -3.6 1.2 4.8 2.4 -1.2 1.2 0 1.2 0 1.2 +0 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 -2.4 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 +4.8 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 6 1.2 -4.8 1.2 +-3.6 2.4 0 1.2 3.6 1.2 0 2.4 1.2 1.2 0 1.2 -1.2 2.4 0 1.2 +0 1.2 2.4 2.4 0 1.2 0 1.2 -3.6 2.4 0 1.2 0 1.2 4.8 1.2 +1.2 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 0 2.4 -7.2 1.2 +-1.2 1.2 -3.6 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 -3.6 1.2 0 1.2 +-2.4 2.4 2.4 1.2 0 1.2 -2.4 2.4 1.2 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 +2.4 1.2 -3.6 2.4 -2.4 1.2 0 1.2 4.8 2.4 1.2 1.2 -1.2 1.2 -4.8 1.2 +-4.8 2.4 -2.4 1.2 3.6 1.2 3.6 2.4 9.6 1.2 0 1.2 3.6 2.4 0 1.2 +6 1.2 3.6 2.4 2.4 1.2 0 1.2 1.2 2.4 1.2 1.2 0 1.2 -2.4 1.2 +3.6 2.4 -2.4 1.2 -1.2 1.2 0 2.4 1.2 1.2 2.4 1.2 S +1071.85 3457.1 3.6 2.4 -3.6 1.2 3.6 1.2 -6 2.4 -1.2 1.2 4.8 1.2 4.8 2.4 +-4.8 1.2 -3.6 1.2 1.2 1.2 0 2.4 1.2 1.2 6 1.2 2.4 2.4 1.2 1.2 +6 1.2 7.2 2.4 4.8 1.2 7.2 1.2 8.4 2.4 -1.2 1.2 -10.8 1.2 -20.4 2.4 +-24 1.2 -31.2 1.2 -45.6 1.2 S +981.85 3497.9 -62.4 2.4 S +919.45 3500.3 -62.4 1.2 S +857.05 3501.5 -46.8 1.2 -19.2 2.4 20.4 1.2 S +811.45 3506.3 62.4 1.2 S +873.85 3507.5 87.6 2.4 S +961.45 3509.9 79.2 1.2 S +1040.65 3511.1 46.8 1.2 16.8 2.4 -1.2 1.2 -9.6 1.2 -10.8 2.4 -2.4 1.2 1.2 1.2 +0 1.2 1.2 2.4 -2.4 1.2 -2.4 1.2 1.2 2.4 0 1.2 3.6 1.2 1.2 2.4 +0 1.2 -3.6 1.2 0 2.4 2.4 1.2 0 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 +0 1.2 1.2 2.4 2.4 1.2 0 1.2 0 2.4 -2.4 1.2 -2.4 1.2 0 2.4 +3.6 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 0 1.2 0 1.2 1.2 2.4 1.2 1.2 +0 1.2 -1.2 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 3.6 1.2 -2.4 1.2 -2.4 2.4 +1.2 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 0 1.2 -3.6 1.2 -2.4 2.4 -1.2 1.2 +2.4 1.2 1.2 2.4 0 1.2 -1.2 1.2 -2.4 2.4 3.6 1.2 2.4 1.2 0 2.4 +-1.2 1.2 0 1.2 -2.4 2.4 3.6 1.2 -1.2 1.2 2.4 1.2 -3.6 2.4 -1.2 1.2 +0 1.2 0 2.4 0 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 0 1.2 1.2 2.4 +1.2 1.2 3.6 1.2 0 2.4 -3.6 1.2 0 1.2 2.4 1.2 2.4 2.4 3.6 1.2 +-1.2 1.2 -1.2 2.4 -1.2 1.2 0 1.2 4.8 2.4 -1.2 1.2 0 1.2 -2.4 2.4 +0 1.2 2.4 1.2 -1.2 2.4 2.4 1.2 -4.8 1.2 0 1.2 -3.6 2.4 -2.4 1.2 +0 1.2 -3.6 2.4 -4.8 1.2 -7.2 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 0 2.4 +-3.6 1.2 -3.6 1.2 -2.4 2.4 1.2 1.2 0 1.2 4.8 1.2 -3.6 2.4 -2.4 1.2 +-1.2 1.2 4.8 2.4 -2.4 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 S +1055.05 3707.89 -1.2 1.2 0 2.4 3.6 1.2 0 1.2 -1.2 2.4 -3.6 1.2 0 1.2 +0 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 -2.4 2.4 0 1.2 3.6 1.2 1.2 2.4 +2.4 1.2 -2.4 1.2 0 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 1.2 1.2 1.2 1.2 +-3.6 1.2 1.2 2.4 1.2 1.2 1.2 1.2 2.4 2.4 0 1.2 -2.4 1.2 0 2.4 +0 1.2 0 1.2 2.4 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 3.6 1.2 +0 1.2 -2.4 2.4 -1.2 1.2 0 1.2 0 2.4 3.6 1.2 1.2 1.2 -1.2 2.4 +-2.4 1.2 1.2 1.2 0 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 0 1.2 +-1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 3.6 1.2 -2.4 2.4 +4.8 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 2.4 1.2 0 2.4 1.2 1.2 -1.2 1.2 +0 1.2 -2.4 2.4 0 1.2 2.4 1.2 0 2.4 -1.2 1.2 -2.4 1.2 0 2.4 +0 1.2 3.6 1.2 0 2.4 -2.4 1.2 -1.2 1.2 -1.2 2.4 0 1.2 -2.4 1.2 +3.6 1.2 -2.4 2.4 -6 1.2 -4.8 1.2 0 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 +-4.8 1.2 -1.2 1.2 -1.2 2.4 0 1.2 0 1.2 -1.2 2.4 -3.6 1.2 1.2 1.2 +0 1.2 3.6 2.4 2.4 1.2 1.2 1.2 -2.4 2.4 -2.4 1.2 4.8 1.2 0 2.4 +2.4 1.2 -3.6 1.2 -4.8 2.4 -2.4 1.2 4.8 1.2 7.2 2.4 4.8 1.2 2.4 1.2 +3.6 1.2 1.2 2.4 2.4 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 S +1063.45 3904.68 2.4 1.2 0 2.4 1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 +-3.6 2.4 1.2 1.2 2.4 1.2 2.4 1.2 0 2.4 0 1.2 -2.4 1.2 1.2 2.4 +1.2 1.2 2.4 1.2 -3.6 2.4 0 1.2 0 1.2 0 2.4 1.2 1.2 2.4 1.2 +2.4 2.4 1.2 1.2 7.2 1.2 9.6 1.2 8.4 2.4 2.4 1.2 6 1.2 3.6 2.4 +-7.2 1.2 -20.4 1.2 -30 2.4 -33.6 1.2 -44.4 1.2 -54 2.4 S +923.05 3963.48 -63.6 1.2 S +859.45 3964.68 -51.6 1.2 -31.2 2.4 6 1.2 32.4 1.2 S +815.05 3970.68 75.6 1.2 S +890.65 3971.88 96 2.4 S +986.65 3974.28 72 1.2 S +1058.65 3975.48 33.6 1.2 6 2.4 -10.8 1.2 -9.6 1.2 -4.8 2.4 0 1.2 2.4 1.2 +2.4 2.4 0 1.2 -1.2 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 3.6 1.2 0 2.4 +-2.4 1.2 -1.2 1.2 0 2.4 3.6 1.2 2.4 1.2 -2.4 2.4 0 1.2 1.2 1.2 +-1.2 2.4 2.4 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 -3.6 1.2 3.6 1.2 0 2.4 +1.2 1.2 0 1.2 -1.2 2.4 -1.2 1.2 0 1.2 1.2 2.4 1.2 1.2 -2.4 1.2 +-1.2 2.4 -2.4 1.2 0 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 -3.6 1.2 0 2.4 +0 1.2 1.2 1.2 2.4 2.4 -3.6 1.2 4.8 1.2 -3.6 2.4 -1.2 1.2 2.4 1.2 +2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 0 1.2 2.4 1.2 2.4 1.2 -1.2 2.4 +-1.2 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 0 1.2 -2.4 1.2 +0 2.4 -1.2 1.2 6 1.2 -6 2.4 0 1.2 -1.2 1.2 3.6 1.2 1.2 2.4 +4.8 1.2 -2.4 1.2 -3.6 2.4 0 1.2 -1.2 1.2 3.6 2.4 1.2 1.2 0 1.2 +0 2.4 0 1.2 -3.6 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 -2.4 1.2 1.2 2.4 +0 1.2 3.6 1.2 2.4 2.4 -6 1.2 -1.2 1.2 -2.4 2.4 3.6 1.2 2.4 1.2 +-1.2 2.4 -2.4 1.2 -2.4 1.2 -3.6 1.2 0 2.4 -3.6 1.2 0 1.2 -3.6 2.4 +0 1.2 -3.6 1.2 -2.4 2.4 0 1.2 2.4 1.2 -3.6 2.4 -2.4 1.2 2.4 1.2 +0 2.4 0 1.2 2.4 1.2 0 1.2 -2.4 2.4 -1.2 1.2 S +1053.85 4172.27 1.2 1.2 1.2 2.4 1.2 1.2 0 1.2 -2.4 2.4 0 1.2 1.2 1.2 +1.2 2.4 2.4 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 0 1.2 2.4 2.4 +-2.4 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 4.8 2.4 -1.2 1.2 -4.8 1.2 +-3.6 2.4 0 1.2 1.2 1.2 2.4 2.4 0 1.2 -3.6 1.2 -1.2 1.2 0 2.4 +0 1.2 3.6 1.2 -3.6 2.4 -4.8 1.2 -2.4 1.2 0 2.4 3.6 1.2 0 1.2 +-1.2 2.4 -6 1.2 1.2 1.2 4.8 2.4 2.4 1.2 -6 1.2 -4.8 1.2 1.2 2.4 +2.4 1.2 1.2 1.2 2.4 2.4 0 1.2 1.2 1.2 1.2 2.4 4.8 1.2 3.6 1.2 +6 2.4 1.2 1.2 0 1.2 -1.2 2.4 3.6 1.2 2.4 1.2 1.2 1.2 3.6 2.4 +1.2 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 4.8 1.2 2.4 2.4 -2.4 1.2 -1.2 1.2 +-1.2 2.4 0 1.2 1.2 1.2 2.4 2.4 -4.8 1.2 -2.4 1.2 1.2 1.2 0 2.4 +-1.2 1.2 3.6 1.2 -3.6 2.4 0 1.2 -2.4 1.2 3.6 2.4 -1.2 1.2 6 1.2 +-2.4 2.4 2.4 1.2 6 1.2 6 2.4 10.8 1.2 9.6 1.2 0 1.2 7.2 2.4 +4.8 1.2 -7.2 1.2 -21.6 2.4 -31.2 1.2 -38.4 1.2 -37.2 2.4 -52.8 1.2 -56.4 1.2 +-51.6 2.4 -25.2 1.2 -6 1.2 31.2 2.4 S +824.65 4341.46 75.6 1.2 S +900.25 4342.66 97.2 1.2 S +997.45 4343.86 69.6 1.2 S +1067.05 4345.06 33.6 2.4 -2.4 1.2 -13.2 1.2 -8.4 2.4 -2.4 1.2 4.8 1.2 3.6 2.4 +-4.8 1.2 2.4 1.2 -3.6 2.4 2.4 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 -2.4 1.2 +1.2 1.2 0 2.4 2.4 1.2 1.2 1.2 0 2.4 0 1.2 -2.4 1.2 0 2.4 +1.2 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 4.8 1.2 2.4 1.2 +-3.6 1.2 1.2 2.4 -3.6 1.2 0 1.2 0 2.4 2.4 1.2 0 1.2 -2.4 2.4 +-3.6 1.2 1.2 1.2 3.6 2.4 1.2 1.2 -2.4 1.2 2.4 2.4 -2.4 1.2 1.2 1.2 +2.4 1.2 1.2 2.4 -2.4 1.2 -3.6 1.2 0 2.4 -1.2 1.2 4.8 1.2 0 2.4 +-1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 4.8 1.2 0 2.4 -2.4 1.2 -1.2 1.2 +-1.2 1.2 2.4 2.4 1.2 1.2 2.4 1.2 0 2.4 -3.6 1.2 -1.2 1.2 3.6 2.4 +-1.2 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 -1.2 1.2 1.2 2.4 2.4 1.2 1.2 1.2 +0 1.2 -2.4 2.4 -2.4 1.2 0 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 1.2 2.4 +-2.4 1.2 2.4 1.2 0 2.4 4.8 1.2 -1.2 1.2 -3.6 2.4 0 1.2 0 1.2 +0 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 1.2 1.2 2.4 1.2 1.2 2.4 +-2.4 1.2 -4.8 1.2 0 2.4 0 1.2 3.6 1.2 -3.6 2.4 -3.6 1.2 -2.4 1.2 +-1.2 1.2 -1.2 2.4 1.2 1.2 3.6 1.2 -4.8 2.4 -2.4 1.2 -2.4 1.2 -1.2 2.4 +0 1.2 2.4 1.2 -1.2 2.4 0 1.2 -1.2 1.2 0 2.4 S +1061.06 4543.05 4.8 1.2 -1.2 1.2 4.8 1.2 -4.8 2.4 -2.4 1.2 0 1.2 -1.2 2.4 +1.2 1.2 0 1.2 -2.4 2.4 1.2 1.2 0 1.2 1.2 2.4 1.2 1.2 1.2 1.2 +-2.4 2.4 -1.2 1.2 1.2 1.2 2.4 1.2 0 2.4 1.2 1.2 -3.6 1.2 0 2.4 +0 1.2 3.6 1.2 2.4 2.4 -1.2 1.2 -1.2 1.2 3.6 2.4 2.4 1.2 2.4 1.2 +1.2 2.4 -6 1.2 -1.2 1.2 0 1.2 1.2 2.4 3.6 1.2 1.2 1.2 -1.2 2.4 +0 1.2 -3.6 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 +1.2 2.4 2.4 1.2 3.6 1.2 -4.8 1.2 0 2.4 0 1.2 -1.2 1.2 1.2 2.4 +1.2 1.2 1.2 1.2 -3.6 2.4 2.4 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 +0 2.4 -1.2 1.2 1.2 1.2 1.2 1.2 7.2 2.4 -1.2 1.2 -6 1.2 0 2.4 +2.4 1.2 0 1.2 4.8 2.4 -3.6 1.2 -1.2 1.2 -4.8 2.4 -2.4 1.2 1.2 1.2 +3.6 2.4 0 1.2 -2.4 1.2 0 1.2 -3.6 2.4 6 1.2 1.2 1.2 0 2.4 +-1.2 1.2 0 1.2 1.2 2.4 2.4 1.2 2.4 1.2 0 2.4 -4.8 1.2 1.2 1.2 +1.2 2.4 -1.2 1.2 1.2 1.2 -2.4 1.2 -2.4 2.4 0 1.2 1.2 1.2 1.2 2.4 +1.2 1.2 -2.4 1.2 -2.4 2.4 -2.4 1.2 1.2 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 +1.2 2.4 2.4 1.2 -2.4 1.2 2.4 1.2 2.4 2.4 -2.4 1.2 0 1.2 -1.2 2.4 +1.2 1.2 3.6 1.2 0 2.4 -1.2 1.2 -4.8 1.2 1.2 2.4 S +1071.86 4739.84 1.2 1.2 1.2 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 +1.2 1.2 0 1.2 -2.4 2.4 -2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 1.2 1.2 +0 2.4 1.2 1.2 -4.8 1.2 2.4 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 1.2 2.4 +-3.6 1.2 -2.4 1.2 -1.2 2.4 0 1.2 -3.6 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 +-2.4 2.4 2.4 1.2 -4.8 1.2 -2.4 1.2 -2.4 2.4 -2.4 1.2 0 1.2 1.2 2.4 +1.2 1.2 -2.4 1.2 0 2.4 1.2 1.2 4.8 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 +-3.6 2.4 4.8 1.2 3.6 1.2 6 1.2 -3.6 2.4 -1.2 1.2 -6 1.2 -1.2 2.4 +1.2 1.2 3.6 1.2 3.6 2.4 2.4 1.2 0 1.2 1.2 2.4 7.2 1.2 4.8 1.2 +-1.2 2.4 0 1.2 0 1.2 1.2 1.2 0 2.4 0 1.2 2.4 1.2 -4.8 2.4 +3.6 1.2 0 1.2 6 2.4 3.6 1.2 -3.6 1.2 0 2.4 -3.6 1.2 -1.2 1.2 +4.8 2.4 2.4 1.2 -2.4 1.2 -1.2 1.2 0 2.4 0 1.2 2.4 1.2 4.8 2.4 +2.4 1.2 3.6 1.2 8.4 2.4 -1.2 1.2 7.2 1.2 12 2.4 1.2 1.2 -12 1.2 +-24 2.4 -25.2 1.2 -26.4 1.2 -38.4 1.2 -55.2 2.4 S +941.06 4897.04 -60 1.2 S +881.06 4898.24 -51.6 1.2 -30 2.4 -8.4 1.2 21.6 1.2 51.6 2.4 S +864.26 4906.64 75.6 1.2 S +939.86 4907.84 67.2 1.2 S +1007.06 4909.04 49.2 2.4 31.2 1.2 16.8 1.2 12 2.4 -3.6 1.2 -8.4 1.2 -7.2 1.2 +-3.6 2.4 0 1.2 -3.6 1.2 -3.6 2.4 -2.4 1.2 0 1.2 1.2 2.4 1.2 1.2 +1.2 1.2 -1.2 2.4 2.4 1.2 0 1.2 2.4 2.4 2.4 1.2 0 1.2 -4.8 1.2 +0 2.4 0 1.2 3.6 1.2 0 2.4 -1.2 1.2 -3.6 1.2 1.2 2.4 0 1.2 +-1.2 1.2 4.8 2.4 0 1.2 -3.6 1.2 1.2 2.4 0 1.2 2.4 1.2 0 1.2 +-2.4 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 0 1.2 2.4 1.2 -4.8 2.4 2.4 1.2 +-1.2 1.2 1.2 2.4 2.4 1.2 0 1.2 -2.4 2.4 0 1.2 -3.6 1.2 2.4 1.2 +1.2 2.4 6 1.2 -2.4 1.2 0 2.4 -3.6 1.2 0 1.2 2.4 2.4 0 1.2 +-1.2 1.2 -1.2 2.4 -3.6 1.2 0 1.2 2.4 2.4 0 1.2 -1.2 1.2 -3.6 1.2 +0 2.4 2.4 1.2 0 1.2 2.4 2.4 1.2 1.2 -6 1.2 0 2.4 0 1.2 +0 1.2 6 2.4 -3.6 1.2 -1.2 1.2 1.2 2.4 3.6 1.2 3.6 1.2 4.8 1.2 +-1.2 2.4 -2.4 1.2 1.2 1.2 1.2 2.4 1.2 1.2 4.8 1.2 1.2 2.4 -3.6 1.2 +3.6 1.2 1.2 2.4 -1.2 1.2 4.8 1.2 -3.6 2.4 -2.4 1.2 1.2 1.2 -1.2 1.2 +2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 -4.8 1.2 0 1.2 2.4 2.4 -1.2 1.2 +-6 1.2 -2.4 2.4 -1.2 1.2 -3.6 1.2 0 2.4 -1.2 1.2 -2.4 1.2 -2.4 1.2 +-6 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 S +1065.86 5105.83 -1.2 2.4 -3.6 1.2 2.4 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 +0 1.2 1.2 1.2 3.6 1.2 -3.6 2.4 0 1.2 0 1.2 1.2 2.4 1.2 1.2 +0 1.2 0 2.4 -2.4 1.2 0 1.2 0 2.4 2.4 1.2 1.2 1.2 -1.2 2.4 +0 1.2 -2.4 1.2 1.2 1.2 2.4 2.4 1.2 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 +0 1.2 3.6 2.4 0 1.2 -2.4 1.2 0 2.4 -1.2 1.2 0 1.2 1.2 2.4 +6 1.2 -1.2 1.2 0 1.2 -2.4 2.4 2.4 1.2 2.4 1.2 0 2.4 0 1.2 +-2.4 1.2 -2.4 2.4 0 1.2 2.4 1.2 2.4 2.4 -3.6 1.2 -1.2 1.2 -1.2 2.4 +1.2 1.2 2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 -1.2 1.2 -1.2 2.4 7.2 1.2 +-1.2 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 1.2 2.4 2.4 1.2 4.8 1.2 -2.4 2.4 +-6 1.2 0 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 -3.6 2.4 0 1.2 +1.2 1.2 2.4 2.4 0 1.2 -2.4 1.2 1.2 2.4 -3.6 1.2 1.2 1.2 2.4 2.4 +0 1.2 0 1.2 -3.6 1.2 0 2.4 1.2 1.2 4.8 1.2 1.2 2.4 -4.8 1.2 +-4.8 1.2 -2.4 2.4 -1.2 1.2 -3.6 1.2 2.4 2.4 -2.4 1.2 1.2 1.2 -3.6 2.4 +-2.4 1.2 -3.6 1.2 3.6 1.2 -2.4 2.4 -1.2 1.2 -2.4 1.2 -1.2 2.4 2.4 1.2 +2.4 1.2 -1.2 2.4 0 1.2 -2.4 1.2 2.4 2.4 4.8 1.2 0 1.2 -1.2 2.4 +2.4 1.2 -1.2 1.2 -6 1.2 -2.4 2.4 0 1.2 3.6 1.2 S +1050.26 5302.62 6 2.4 1.2 1.2 2.4 1.2 3.6 2.4 3.6 1.2 4.8 1.2 -1.2 2.4 +1.2 1.2 0 1.2 4.8 2.4 2.4 1.2 -1.2 1.2 -4.8 1.2 -2.4 2.4 2.4 1.2 +1.2 1.2 1.2 2.4 0 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 1.2 1.2 3.6 2.4 +0 1.2 -4.8 1.2 -1.2 1.2 4.8 2.4 1.2 1.2 2.4 1.2 0 2.4 -2.4 1.2 +-1.2 1.2 3.6 2.4 6 1.2 9.6 1.2 7.2 2.4 3.6 1.2 3.6 1.2 7.2 2.4 +4.8 1.2 -12 1.2 -27.6 1.2 -34.8 2.4 -33.6 1.2 -48 1.2 -56.4 2.4 -55.2 1.2 +-48 1.2 -18 2.4 13.2 1.2 56.4 1.2 S +859.46 5383.02 90 2.4 S +949.46 5385.42 88.8 1.2 S +1038.26 5386.62 55.2 1.2 16.8 2.4 -7.2 1.2 -6 1.2 -7.2 1.2 -4.8 2.4 0 1.2 +0 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 4.8 2.4 2.4 1.2 -4.8 1.2 0 2.4 +0 1.2 0 1.2 3.6 2.4 -2.4 1.2 -2.4 1.2 -1.2 1.2 3.6 2.4 -2.4 1.2 +2.4 1.2 -3.6 2.4 -1.2 1.2 -2.4 1.2 3.6 2.4 0 1.2 0 1.2 0 2.4 +-1.2 1.2 1.2 1.2 0 2.4 0 1.2 1.2 1.2 -2.4 1.2 2.4 2.4 -1.2 1.2 +-1.2 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 0 1.2 -1.2 1.2 1.2 2.4 +2.4 1.2 -2.4 1.2 2.4 2.4 -1.2 1.2 -1.2 1.2 0 1.2 1.2 2.4 -1.2 1.2 +0 1.2 -1.2 2.4 1.2 1.2 0 1.2 0 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 +-1.2 1.2 1.2 1.2 4.8 2.4 -1.2 1.2 -2.4 1.2 0 1.2 0 2.4 2.4 1.2 +1.2 1.2 -2.4 2.4 -2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 4.8 1.2 -4.8 2.4 +0 1.2 -2.4 1.2 0 2.4 3.6 1.2 2.4 1.2 -1.2 1.2 -3.6 2.4 0 1.2 +-1.2 1.2 2.4 2.4 2.4 1.2 0 1.2 -1.2 2.4 -2.4 1.2 0 1.2 2.4 2.4 +2.4 1.2 -1.2 1.2 -1.2 2.4 -3.6 1.2 2.4 1.2 -1.2 1.2 0 2.4 -4.8 1.2 +-3.6 1.2 -2.4 2.4 -2.4 1.2 0 1.2 0 2.4 -3.6 1.2 -3.6 1.2 -2.4 2.4 +1.2 1.2 0 1.2 1.2 2.4 -2.4 1.2 0 1.2 -2.4 1.2 -1.2 2.4 1.2 1.2 +0 1.2 -2.4 2.4 0 1.2 -3.6 1.2 2.4 2.4 0 1.2 S +1055.06 5583.41 3.6 1.2 -3.6 2.4 1.2 1.2 -2.4 1.2 2.4 2.4 2.4 1.2 2.4 1.2 +-2.4 1.2 -2.4 2.4 0 1.2 1.2 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 1.2 2.4 +-2.4 1.2 -1.2 1.2 4.8 2.4 1.2 1.2 -2.4 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 +1.2 1.2 2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 2.4 1.2 1.2 1.2 4.8 2.4 +-2.4 1.2 -3.6 1.2 0 2.4 2.4 1.2 0 1.2 4.8 2.4 -3.6 1.2 -2.4 1.2 +0 1.2 3.6 2.4 0 1.2 4.8 1.2 -3.6 2.4 -4.8 1.2 -1.2 1.2 3.6 2.4 +2.4 1.2 0 1.2 2.4 2.4 -4.8 1.2 0 1.2 2.4 2.4 2.4 1.2 1.2 1.2 +-2.4 1.2 -2.4 2.4 0 1.2 1.2 1.2 0 2.4 1.2 1.2 -2.4 1.2 0 2.4 +-2.4 1.2 0 1.2 2.4 2.4 1.2 1.2 0 1.2 -4.8 2.4 -1.2 1.2 1.2 1.2 +3.6 1.2 0 2.4 -3.6 1.2 1.2 1.2 -2.4 2.4 1.2 1.2 0 1.2 6 2.4 +-2.4 1.2 -3.6 1.2 -1.2 2.4 1.2 1.2 0 1.2 4.8 2.4 -2.4 1.2 -2.4 1.2 +-1.2 1.2 0 2.4 0 1.2 -3.6 1.2 -3.6 2.4 -6 1.2 -1.2 1.2 0 2.4 +1.2 1.2 1.2 1.2 -4.8 2.4 -3.6 1.2 1.2 1.2 0 2.4 -2.4 1.2 1.2 1.2 +0 1.2 1.2 2.4 0 1.2 1.2 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 -1.2 2.4 +2.4 1.2 -2.4 1.2 -1.2 2.4 -1.2 1.2 -6 1.2 6 2.4 4.8 1.2 3.6 1.2 +2.4 1.2 4.8 2.4 2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 S +1063.46 5780.2 2.4 1.2 4.8 2.4 0 1.2 -3.6 1.2 0 2.4 0 1.2 1.2 1.2 +2.4 2.4 0 1.2 -1.2 1.2 -2.4 1.2 2.4 2.4 2.4 1.2 3.6 1.2 -4.8 2.4 +-1.2 1.2 -2.4 1.2 0 2.4 0 1.2 4.8 1.2 0 2.4 -2.4 1.2 2.4 1.2 +9.6 2.4 12 1.2 7.2 1.2 4.8 1.2 4.8 2.4 4.8 1.2 -10.8 1.2 -22.8 2.4 +-32.4 1.2 -42 1.2 -48 2.4 S +959.06 5834.2 -63.6 1.2 S +895.46 5835.4 -60 1.2 S +835.46 5836.6 -42 2.4 -12 1.2 30 1.2 S +811.46 5841.4 73.2 2.4 S +884.66 5843.8 102 1.2 S +986.66 5845 78 1.2 S +1064.66 5846.2 33.6 1.2 3.6 2.4 -18 1.2 -9.6 1.2 -2.4 2.4 2.4 1.2 3.6 1.2 +1.2 2.4 -1.2 1.2 -2.4 1.2 0 2.4 1.2 1.2 2.4 1.2 2.4 2.4 -2.4 1.2 +-1.2 1.2 1.2 1.2 -2.4 2.4 3.6 1.2 2.4 1.2 0 2.4 -2.4 1.2 -1.2 1.2 +0 2.4 1.2 1.2 3.6 1.2 -1.2 2.4 -2.4 1.2 -1.2 1.2 0 2.4 2.4 1.2 +-1.2 1.2 1.2 1.2 -3.6 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 3.6 1.2 -3.6 1.2 +-1.2 2.4 -1.2 1.2 1.2 1.2 3.6 2.4 0 1.2 -2.4 1.2 -2.4 2.4 -1.2 1.2 +-1.2 1.2 4.8 1.2 2.4 2.4 -2.4 1.2 0 1.2 -3.6 2.4 1.2 1.2 -1.2 1.2 +1.2 2.4 0 1.2 -1.2 1.2 -3.6 2.4 2.4 1.2 3.6 1.2 -1.2 1.2 -1.2 2.4 +2.4 1.2 -3.6 1.2 1.2 2.4 1.2 1.2 3.6 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 +-2.4 2.4 1.2 1.2 1.2 1.2 1.2 2.4 0 1.2 -3.6 1.2 1.2 1.2 0 2.4 +1.2 1.2 0 1.2 0 2.4 0 1.2 -1.2 1.2 3.6 2.4 1.2 1.2 -2.4 1.2 +0 2.4 -2.4 1.2 0 1.2 2.4 2.4 0 1.2 1.2 1.2 -4.8 1.2 -1.2 2.4 +0 1.2 2.4 1.2 2.4 2.4 -8.4 1.2 -1.2 1.2 -4.8 2.4 0 1.2 1.2 1.2 +-1.2 2.4 0 1.2 -2.4 1.2 0 2.4 0 1.2 -2.4 1.2 0 1.2 -3.6 2.4 +-3.6 1.2 -1.2 1.2 -1.2 2.4 3.6 1.2 2.4 1.2 -4.8 2.4 -2.4 1.2 -1.2 1.2 +4.8 2.4 2.4 1.2 1.2 1.2 0 2.4 -1.2 1.2 -2.4 1.2 S +1052.66 6042.99 0 1.2 0 2.4 3.6 1.2 -1.2 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 +2.4 2.4 3.6 1.2 -1.2 1.2 0 2.4 -2.4 1.2 -1.2 1.2 2.4 2.4 3.6 1.2 +-3.6 1.2 -2.4 1.2 0 2.4 1.2 1.2 2.4 1.2 3.6 2.4 -1.2 1.2 -1.2 1.2 +1.2 2.4 1.2 1.2 -2.4 1.2 3.6 2.4 -2.4 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 +4.8 1.2 1.2 1.2 -1.2 2.4 0 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 3.6 1.2 +-2.4 2.4 -2.4 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 -2.4 2.4 -3.6 1.2 +1.2 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -2.4 1.2 0 2.4 -1.2 1.2 0 1.2 +3.6 2.4 -1.2 1.2 0 1.2 -1.2 2.4 -1.2 1.2 2.4 1.2 0 2.4 0 1.2 +-1.2 1.2 -1.2 1.2 -3.6 2.4 -1.2 1.2 1.2 1.2 3.6 2.4 1.2 1.2 -2.4 1.2 +0 2.4 2.4 1.2 0 1.2 0 2.4 0 1.2 -3.6 1.2 1.2 2.4 -1.2 1.2 +3.6 1.2 0 1.2 -4.8 2.4 -6 1.2 -6 1.2 3.6 2.4 -3.6 1.2 2.4 1.2 +-6 2.4 0 1.2 -1.2 1.2 -1.2 2.4 -2.4 1.2 -1.2 1.2 0 2.4 -3.6 1.2 +-1.2 1.2 1.2 1.2 6 2.4 2.4 1.2 -1.2 1.2 0 2.4 0 1.2 0 1.2 +1.2 2.4 1.2 1.2 -2.4 1.2 -7.2 2.4 -2.4 1.2 3.6 1.2 12 2.4 3.6 1.2 +0 1.2 3.6 1.2 1.2 2.4 2.4 1.2 3.6 1.2 0 2.4 2.4 1.2 -1.2 1.2 +-1.2 2.4 -1.2 1.2 1.2 1.2 2.4 2.4 0 1.2 0 1.2 S +1062.26 6239.78 -2.4 2.4 0 1.2 1.2 1.2 1.2 1.2 2.4 2.4 -1.2 1.2 0 1.2 +0 2.4 1.2 1.2 3.6 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 1.2 2.4 6 1.2 +6 1.2 6 2.4 6 1.2 4.8 1.2 4.8 1.2 9.6 2.4 4.8 1.2 -9.6 1.2 +-26.4 2.4 -31.2 1.2 -32.4 1.2 -44.4 2.4 S +967.46 6282.98 -61.2 1.2 S +906.26 6284.18 -63.6 1.2 S +842.66 6285.38 -37.2 2.4 -10.8 1.2 30 1.2 S +824.66 6290.18 64.8 2.4 S +889.46 6292.58 88.8 1.2 S +978.26 6293.78 74.4 1.2 S +1052.66 6294.98 36 1.2 7.2 2.4 -10.8 1.2 -6 1.2 -4.8 2.4 -2.4 1.2 0 1.2 +-2.4 2.4 1.2 1.2 0 1.2 2.4 2.4 -3.6 1.2 -1.2 1.2 0 2.4 -1.2 1.2 +0 1.2 4.8 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 2.4 1.2 3.6 1.2 +-1.2 2.4 1.2 1.2 -3.6 1.2 -1.2 2.4 4.8 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 +-1.2 1.2 1.2 1.2 -1.2 2.4 2.4 1.2 -6 1.2 0 2.4 -1.2 1.2 2.4 1.2 +2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 2.4 1.2 2.4 1.2 0 2.4 3.6 1.2 +-3.6 1.2 -1.2 1.2 -1.2 2.4 4.8 1.2 0 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 +-2.4 2.4 0 1.2 0 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 2.4 2.4 2.4 1.2 +1.2 1.2 0 1.2 1.2 2.4 0 1.2 1.2 1.2 -2.4 2.4 2.4 1.2 1.2 1.2 +-4.8 2.4 0 1.2 -3.6 1.2 4.8 2.4 -1.2 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 +-1.2 1.2 3.6 1.2 3.6 2.4 3.6 1.2 1.2 1.2 -7.2 2.4 1.2 1.2 -1.2 1.2 +3.6 2.4 3.6 1.2 -3.6 1.2 0 2.4 -4.8 1.2 -1.2 1.2 4.8 2.4 0 1.2 +-1.2 1.2 -3.6 1.2 -3.6 2.4 0 1.2 0 1.2 1.2 2.4 -4.8 1.2 0 1.2 +-6 2.4 1.2 1.2 0 1.2 2.4 2.4 -4.8 1.2 -1.2 1.2 -3.6 2.4 0 1.2 +2.4 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 0 2.4 2.4 1.2 2.4 1.2 +-1.2 2.4 -1.2 1.2 -3.6 1.2 2.4 2.4 1.2 1.2 4.8 1.2 S +1053.86 6491.77 0 2.4 -2.4 1.2 1.2 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -2.4 1.2 +-1.2 2.4 -1.2 1.2 0 1.2 2.4 2.4 2.4 1.2 -2.4 1.2 1.2 2.4 -2.4 1.2 +3.6 1.2 -2.4 2.4 2.4 1.2 -2.4 1.2 1.2 1.2 -2.4 2.4 1.2 1.2 3.6 1.2 +2.4 2.4 -1.2 1.2 0 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 0 1.2 +-2.4 1.2 2.4 1.2 0 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 1.2 1.2 -1.2 1.2 +0 2.4 0 1.2 2.4 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 0 2.4 1.2 1.2 +1.2 1.2 0 1.2 -1.2 2.4 -2.4 1.2 0 1.2 -1.2 2.4 2.4 1.2 -2.4 1.2 +2.4 2.4 0 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 +1.2 1.2 2.4 1.2 2.4 2.4 0 1.2 -3.6 1.2 1.2 2.4 -4.8 1.2 4.8 1.2 +2.4 2.4 -1.2 1.2 -6 1.2 -2.4 2.4 -4.8 1.2 0 1.2 1.2 2.4 -1.2 1.2 +-2.4 1.2 -4.8 1.2 -1.2 2.4 0 1.2 2.4 1.2 -2.4 2.4 -3.6 1.2 0 1.2 +1.2 2.4 0 1.2 3.6 1.2 2.4 2.4 -2.4 1.2 -1.2 1.2 2.4 2.4 3.6 1.2 +3.6 1.2 -1.2 1.2 -3.6 2.4 -6 1.2 0 1.2 6 2.4 8.4 1.2 -1.2 1.2 +0 2.4 4.8 1.2 3.6 1.2 2.4 2.4 3.6 1.2 0 1.2 -3.6 2.4 -2.4 1.2 +0 1.2 0 1.2 3.6 2.4 0 1.2 -1.2 1.2 0 2.4 2.4 1.2 2.4 1.2 +1.2 2.4 0 1.2 0 1.2 -1.2 2.4 1.2 1.2 3.6 1.2 S +1074.26 6688.56 -1.2 2.4 -2.4 1.2 1.2 1.2 -2.4 1.2 0 2.4 1.2 1.2 3.6 1.2 +3.6 2.4 4.8 1.2 4.8 1.2 3.6 2.4 7.2 1.2 10.8 1.2 4.8 2.4 -10.8 1.2 +-22.8 1.2 -30 2.4 -32.4 1.2 -45.6 1.2 S +972.26 6718.56 -62.4 1.2 S +909.86 6719.76 -57.6 2.4 S +852.26 6722.16 -37.2 1.2 -13.2 1.2 26.4 2.4 S +828.26 6726.96 69.6 1.2 S +897.86 6728.16 86.4 1.2 S +984.26 6729.36 64.8 2.4 S +1049.06 6731.76 36 1.2 13.2 1.2 -1.2 2.4 -7.2 1.2 -8.4 1.2 -4.8 2.4 -1.2 1.2 +1.2 1.2 0 1.2 3.6 2.4 2.4 1.2 -4.8 1.2 1.2 2.4 0 1.2 0 1.2 +0 2.4 -3.6 1.2 0 1.2 -2.4 2.4 4.8 1.2 0 1.2 1.2 2.4 -3.6 1.2 +0 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 1.2 1.2 0 2.4 -1.2 1.2 0 1.2 +2.4 2.4 -1.2 1.2 2.4 1.2 0 2.4 S +1745 1008 59 49 /4N +$C +4MTbD0Nelc+e2:m_2/AXEZ2>VD4X%Zk/%J&ZpP:=N!>geJ>85\IS*3]64/ +, +1745 1052 59 38 /7N +$C +,b-"Vs1Q't:(q@YL#I8PKLu(a\qCj+YO7all#tMK(UfZ=KY/-JfWNh7E7YLN)%^CEr"K~> +, +1745 6823 4N , +1745 6867 7N , +1740.25 1119.6 0 1.2 0 1.2 0 1.2 0 2.4 0 1.2 0 1.2 0 2.4 +3.6 1.2 0 1.2 1.2 2.4 0 1.2 -2.4 1.2 -1.2 2.4 0 1.2 -1.2 1.2 +-2.4 1.2 -1.2 2.4 0 1.2 -1.2 1.2 0 2.4 2.4 1.2 4.8 1.2 1.2 2.4 +1.2 1.2 -3.6 1.2 2.4 2.4 0 1.2 2.4 1.2 1.2 2.4 -1.2 1.2 1.2 1.2 +3.6 1.2 2.4 2.4 4.8 1.2 -2.4 1.2 -6 2.4 -2.4 1.2 2.4 1.2 3.6 2.4 +2.4 1.2 -1.2 1.2 0 2.4 -2.4 1.2 0 1.2 2.4 2.4 2.4 1.2 0 1.2 +-1.2 1.2 -1.2 2.4 2.4 1.2 1.2 1.2 1.2 2.4 0 1.2 -3.6 1.2 -3.6 2.4 +2.4 1.2 1.2 1.2 6 2.4 8.4 1.2 1.2 1.2 1.2 2.4 3.6 1.2 7.2 1.2 +10.8 1.2 -2.4 2.4 -13.2 1.2 -22.8 1.2 -21.6 2.4 -20.4 1.2 -15.6 1.2 -18 2.4 +-25.2 1.2 -27.6 1.2 -22.8 2.4 -10.8 1.2 24 1.2 S +1617.85 1238.4 60 2.4 S +1677.85 1240.79 67.2 1.2 S +1745.05 1241.99 32.4 1.2 4.8 1.2 -7.2 2.4 -8.4 1.2 1.2 1.2 -6 2.4 -2.4 1.2 +0 1.2 7.2 2.4 0 1.2 -4.8 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 4.8 2.4 +0 1.2 0 1.2 -3.6 1.2 -2.4 2.4 -1.2 1.2 4.8 1.2 4.8 2.4 -2.4 1.2 +0 1.2 -2.4 2.4 0 1.2 4.8 1.2 -1.2 2.4 -2.4 1.2 -3.6 1.2 1.2 2.4 +0 1.2 0 1.2 4.8 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 3.6 1.2 +2.4 1.2 -1.2 2.4 -2.4 1.2 -3.6 1.2 0 2.4 3.6 1.2 2.4 1.2 -4.8 2.4 +6 1.2 -3.6 1.2 -1.2 1.2 1.2 2.4 4.8 1.2 -3.6 1.2 -2.4 2.4 1.2 1.2 +3.6 1.2 3.6 2.4 -2.4 1.2 1.2 1.2 -2.4 2.4 -3.6 1.2 4.8 1.2 -1.2 2.4 +2.4 1.2 -1.2 1.2 -4.8 1.2 0 2.4 3.6 1.2 3.6 1.2 1.2 2.4 0 1.2 +-4.8 1.2 0 2.4 3.6 1.2 1.2 1.2 2.4 2.4 2.4 1.2 -1.2 1.2 0 2.4 +0 1.2 1.2 1.2 3.6 1.2 0 2.4 1.2 1.2 0 1.2 3.6 2.4 1.2 1.2 +2.4 1.2 0 2.4 1.2 1.2 -2.4 1.2 2.4 2.4 2.4 1.2 0 1.2 0 2.4 +0 1.2 0 1.2 0 1.2 2.4 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 +0 1.2 -3.6 2.4 0 1.2 -3.6 1.2 -1.2 2.4 -6 1.2 -1.2 1.2 2.4 2.4 +0 1.2 -3.6 1.2 -2.4 1.2 -6 2.4 -1.2 1.2 0 1.2 0 2.4 -2.4 1.2 +-4.8 1.2 -3.6 2.4 1.2 1.2 2.4 1.2 0 2.4 -1.2 1.2 S +1760.65 1438.79 -2.4 1.2 -1.2 2.4 4.8 1.2 -2.4 1.2 6 1.2 -1.2 2.4 -2.4 1.2 +0 1.2 -2.4 2.4 1.2 1.2 1.2 1.2 2.4 2.4 -3.6 1.2 0 1.2 -1.2 2.4 +3.6 1.2 2.4 1.2 -2.4 2.4 0 1.2 -1.2 1.2 0 1.2 4.8 2.4 -1.2 1.2 +2.4 1.2 -4.8 2.4 -3.6 1.2 0 1.2 4.8 2.4 3.6 1.2 2.4 1.2 -1.2 2.4 +0 1.2 -1.2 1.2 1.2 2.4 4.8 1.2 -3.6 1.2 -1.2 1.2 -2.4 2.4 6 1.2 +2.4 1.2 1.2 2.4 -2.4 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 -1.2 1.2 3.6 2.4 +1.2 1.2 -2.4 1.2 -4.8 2.4 2.4 1.2 0 1.2 6 1.2 0 2.4 -2.4 1.2 +1.2 1.2 1.2 2.4 0 1.2 0 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 2.4 2.4 +1.2 1.2 -1.2 1.2 0 2.4 1.2 1.2 -3.6 1.2 1.2 1.2 0 2.4 2.4 1.2 +-2.4 1.2 1.2 2.4 -3.6 1.2 0 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 +0 1.2 0 1.2 1.2 2.4 0 1.2 0 1.2 -3.6 1.2 -2.4 2.4 3.6 1.2 +0 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 -1.2 2.4 0 1.2 1.2 1.2 -1.2 2.4 +1.2 1.2 -2.4 1.2 -4.8 2.4 0 1.2 -1.2 1.2 2.4 1.2 -1.2 2.4 -3.6 1.2 +-2.4 1.2 2.4 2.4 -1.2 1.2 4.8 1.2 0 2.4 -6 1.2 1.2 1.2 0 2.4 +1.2 1.2 1.2 1.2 0 2.4 -2.4 1.2 0 1.2 0 1.2 3.6 2.4 3.6 1.2 +-1.2 1.2 1.2 2.4 0 1.2 2.4 1.2 0 2.4 1.2 1.2 S +1776.24 1635.58 -1.2 1.2 -1.2 2.4 -2.4 1.2 3.6 1.2 1.2 2.4 4.8 1.2 0 1.2 +1.2 1.2 -6 2.4 1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 0 1.2 -2.4 2.4 +1.2 1.2 2.4 1.2 0 2.4 1.2 1.2 -4.8 1.2 0 2.4 2.4 1.2 3.6 1.2 +4.8 1.2 2.4 2.4 2.4 1.2 2.4 1.2 6 2.4 7.2 1.2 -1.2 1.2 -10.8 2.4 +-22.8 1.2 -28.8 1.2 -21.6 2.4 -10.8 1.2 -12 1.2 -16.8 2.4 -25.2 1.2 -25.2 1.2 +-19.2 1.2 2.4 2.4 28.8 1.2 S +1644.25 1701.58 57.6 1.2 S +1701.85 1702.78 61.2 2.4 S +1763.05 1705.18 42 1.2 22.8 1.2 4.8 2.4 -4.8 1.2 -12 1.2 -12 2.4 -7.2 1.2 +-3.6 1.2 -2.4 2.4 2.4 1.2 0 1.2 -3.6 1.2 1.2 2.4 0 1.2 0 1.2 +1.2 2.4 -3.6 1.2 0 1.2 0 2.4 -1.2 1.2 3.6 1.2 2.4 2.4 -1.2 1.2 +-3.6 1.2 -2.4 1.2 0 2.4 2.4 1.2 4.8 1.2 -1.2 2.4 -1.2 1.2 -3.6 1.2 +-1.2 2.4 2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 -1.2 1.2 1.2 2.4 0 1.2 +2.4 1.2 -2.4 1.2 -1.2 2.4 0 1.2 0 1.2 1.2 2.4 3.6 1.2 0 1.2 +-4.8 2.4 0 1.2 -2.4 1.2 4.8 2.4 0 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 +2.4 1.2 2.4 1.2 -1.2 2.4 0 1.2 -1.2 1.2 0 2.4 0 1.2 2.4 1.2 +2.4 2.4 0 1.2 -4.8 1.2 0 2.4 2.4 1.2 1.2 1.2 4.8 2.4 0 1.2 +-1.2 1.2 -3.6 1.2 4.8 2.4 1.2 1.2 0 1.2 3.6 2.4 -1.2 1.2 -1.2 1.2 +4.8 2.4 1.2 1.2 3.6 1.2 1.2 2.4 -3.6 1.2 1.2 1.2 2.4 2.4 4.8 1.2 +1.2 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 1.2 1.2 2.4 2.4 1.2 1.2 2.4 1.2 +-3.6 2.4 1.2 1.2 0 1.2 -1.2 2.4 0 1.2 -2.4 1.2 -1.2 2.4 -4.8 1.2 +-2.4 1.2 -2.4 1.2 2.4 2.4 -6 1.2 -7.2 1.2 -4.8 2.4 -1.2 1.2 -2.4 1.2 +1.2 2.4 0 1.2 -4.8 1.2 -4.8 2.4 -2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 +-2.4 1.2 -2.4 1.2 0 2.4 2.4 1.2 0 1.2 0 2.4 S +1770.25 1901.97 -2.4 1.2 -3.6 1.2 3.6 2.4 2.4 1.2 0 1.2 0 2.4 -2.4 1.2 +-2.4 1.2 0 2.4 2.4 1.2 2.4 1.2 0 1.2 0 2.4 -3.6 1.2 1.2 1.2 +1.2 2.4 1.2 1.2 0 1.2 -1.2 2.4 -1.2 1.2 0 1.2 1.2 2.4 2.4 1.2 +3.6 1.2 -4.8 2.4 -2.4 1.2 0 1.2 0 1.2 3.6 2.4 1.2 1.2 -3.6 1.2 +0 2.4 2.4 1.2 0 1.2 -1.2 2.4 6 1.2 -3.6 1.2 -3.6 2.4 2.4 1.2 +4.8 1.2 1.2 2.4 -3.6 1.2 -1.2 1.2 -1.2 1.2 -1.2 2.4 6 1.2 0 1.2 +0 2.4 -1.2 1.2 -2.4 1.2 0 2.4 2.4 1.2 1.2 1.2 0 2.4 0 1.2 +-6 1.2 4.8 2.4 1.2 1.2 -1.2 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 0 1.2 +2.4 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 3.6 1.2 +1.2 1.2 -2.4 2.4 -2.4 1.2 -1.2 1.2 6 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 +-1.2 2.4 1.2 1.2 3.6 1.2 0 2.4 0 1.2 -3.6 1.2 -1.2 2.4 0 1.2 +2.4 1.2 3.6 2.4 -2.4 1.2 -3.6 1.2 0 1.2 1.2 2.4 1.2 1.2 1.2 1.2 +1.2 2.4 -3.6 1.2 -1.2 1.2 -1.2 2.4 2.4 1.2 0 1.2 0 2.4 -6 1.2 +-2.4 1.2 4.8 2.4 0 1.2 2.4 1.2 -3.6 1.2 -4.8 2.4 -4.8 1.2 0 1.2 +6 2.4 1.2 1.2 -1.2 1.2 -1.2 2.4 -3.6 1.2 2.4 1.2 3.6 2.4 3.6 1.2 +0 1.2 -1.2 2.4 0 1.2 -2.4 1.2 4.8 1.2 4.8 2.4 S +1775.05 2098.76 -2.4 1.2 -1.2 1.2 -1.2 2.4 2.4 1.2 1.2 1.2 2.4 2.4 -1.2 1.2 +-1.2 1.2 -1.2 2.4 -1.2 1.2 2.4 1.2 2.4 2.4 0 1.2 0 1.2 -4.8 1.2 +1.2 2.4 2.4 1.2 1.2 1.2 0 2.4 -1.2 1.2 -2.4 1.2 3.6 2.4 0 1.2 +3.6 1.2 4.8 2.4 4.8 1.2 4.8 1.2 9.6 2.4 7.2 1.2 -7.2 1.2 -19.2 1.2 +-30 2.4 -34.8 1.2 -26.4 1.2 -26.4 2.4 -26.4 1.2 -28.8 1.2 -30 2.4 -15.6 1.2 +21.6 1.2 S +1587.85 2161.16 64.8 2.4 S +1652.65 2163.56 82.8 1.2 S +1735.45 2164.76 46.8 1.2 4.8 2.4 -7.2 1.2 0 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 +0 1.2 0 2.4 2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 -6 1.2 0 2.4 +1.2 1.2 3.6 1.2 1.2 2.4 0 1.2 -1.2 1.2 -1.2 1.2 0 2.4 2.4 1.2 +2.4 1.2 0 2.4 -2.4 1.2 -3.6 1.2 2.4 2.4 3.6 1.2 2.4 1.2 -3.6 2.4 +-2.4 1.2 -2.4 1.2 1.2 2.4 0 1.2 4.8 1.2 0 1.2 -3.6 2.4 -1.2 1.2 +-1.2 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 1.2 2.4 -2.4 1.2 0 1.2 1.2 2.4 +2.4 1.2 1.2 1.2 -1.2 2.4 -6 1.2 3.6 1.2 2.4 1.2 2.4 2.4 0 1.2 +-4.8 1.2 0 2.4 3.6 1.2 3.6 1.2 0 2.4 0 1.2 -1.2 1.2 -4.8 2.4 +4.8 1.2 1.2 1.2 2.4 2.4 0 1.2 0 1.2 0 1.2 0 2.4 4.8 1.2 +2.4 1.2 2.4 2.4 -1.2 1.2 -1.2 1.2 3.6 2.4 2.4 1.2 1.2 1.2 2.4 2.4 +-3.6 1.2 0 1.2 3.6 2.4 3.6 1.2 2.4 1.2 -2.4 1.2 1.2 2.4 -3.6 1.2 +2.4 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 0 1.2 0 2.4 +0 1.2 -3.6 1.2 -4.8 2.4 -4.8 1.2 -2.4 1.2 -2.4 1.2 -2.4 2.4 -3.6 1.2 +-4.8 1.2 -4.8 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 -3.6 1.2 -4.8 1.2 -1.2 2.4 +0 1.2 1.2 1.2 1.2 1.2 2.4 2.4 -6 1.2 -1.2 1.2 2.4 2.4 0 1.2 +2.4 1.2 -2.4 2.4 -2.4 1.2 -3.6 1.2 6 2.4 1.2 1.2 S +1772.65 2361.55 1.2 1.2 -2.4 2.4 0 1.2 -4.8 1.2 2.4 1.2 0 2.4 3.6 1.2 +0 1.2 -2.4 2.4 -2.4 1.2 1.2 1.2 0 2.4 4.8 1.2 0 1.2 -1.2 2.4 +0 1.2 -1.2 1.2 3.6 2.4 1.2 1.2 -2.4 1.2 0 1.2 0 2.4 1.2 1.2 +1.2 1.2 0 2.4 1.2 1.2 -3.6 1.2 0 2.4 3.6 1.2 4.8 1.2 0 2.4 +-1.2 1.2 -3.6 1.2 -2.4 2.4 2.4 1.2 2.4 1.2 1.2 1.2 0 2.4 -1.2 1.2 +-4.8 1.2 1.2 2.4 3.6 1.2 0 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 +1.2 1.2 -2.4 1.2 4.8 2.4 -6 1.2 -1.2 1.2 2.4 1.2 2.4 2.4 2.4 1.2 +3.6 1.2 -8.4 2.4 -1.2 1.2 2.4 1.2 -2.4 2.4 2.4 1.2 0 1.2 -2.4 2.4 +0 1.2 -1.2 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 -1.2 1.2 0 2.4 0 1.2 +0 1.2 1.2 2.4 0 1.2 -2.4 1.2 -1.2 2.4 2.4 1.2 3.6 1.2 -1.2 2.4 +1.2 1.2 -3.6 1.2 -1.2 2.4 1.2 1.2 0 1.2 1.2 1.2 0 2.4 -4.8 1.2 +-1.2 1.2 1.2 2.4 -2.4 1.2 3.6 1.2 -1.2 2.4 -3.6 1.2 -1.2 1.2 3.6 2.4 +-1.2 1.2 1.2 1.2 -2.4 2.4 -4.8 1.2 -7.2 1.2 6 1.2 0 2.4 4.8 1.2 +-1.2 1.2 -2.4 2.4 -4.8 1.2 3.6 1.2 3.6 2.4 4.8 1.2 2.4 1.2 0 2.4 +-6 1.2 1.2 1.2 2.4 2.4 3.6 1.2 1.2 1.2 -2.4 1.2 -3.6 2.4 2.4 1.2 +3.6 1.2 0 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 0 1.2 S +1773.85 2558.34 3.6 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 1.2 1.2 0 1.2 +1.2 1.2 2.4 2.4 -3.6 1.2 0 1.2 2.4 2.4 3.6 1.2 7.2 1.2 6 2.4 +3.6 1.2 4.8 1.2 7.2 2.4 8.4 1.2 2.4 1.2 -8.4 2.4 -20.4 1.2 -26.4 1.2 +-26.4 1.2 -22.8 2.4 -21.6 1.2 -24 1.2 -30 2.4 -28.8 1.2 -25.2 1.2 -10.8 2.4 +25.2 1.2 S +1602.25 2608.74 70.8 1.2 S +1673.05 2609.94 76.8 2.4 S +1749.85 2612.34 39.6 1.2 1.2 1.2 -7.2 2.4 0 1.2 1.2 1.2 -7.2 1.2 -1.2 2.4 +4.8 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 -3.6 1.2 2.4 2.4 0 1.2 3.6 1.2 +1.2 2.4 0 1.2 -1.2 1.2 -4.8 2.4 1.2 1.2 3.6 1.2 2.4 1.2 0 2.4 +-3.6 1.2 0 1.2 -1.2 2.4 3.6 1.2 1.2 1.2 0 2.4 -1.2 1.2 -3.6 1.2 +-1.2 2.4 4.8 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 -2.4 1.2 1.2 1.2 2.4 2.4 +2.4 1.2 -2.4 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 0 2.4 4.8 1.2 -1.2 1.2 +-1.2 2.4 -1.2 1.2 0 1.2 3.6 2.4 -1.2 1.2 -2.4 1.2 -3.6 1.2 2.4 2.4 +2.4 1.2 0 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 2.4 2.4 -1.2 1.2 1.2 1.2 +2.4 2.4 1.2 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 4.8 1.2 -1.2 1.2 -1.2 2.4 +0 1.2 2.4 1.2 2.4 2.4 3.6 1.2 0 1.2 -3.6 2.4 -1.2 1.2 8.4 1.2 +1.2 2.4 4.8 1.2 1.2 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 2.4 1.2 1.2 2.4 +1.2 1.2 -2.4 1.2 -2.4 2.4 0 1.2 0 1.2 1.2 2.4 -3.6 1.2 -4.8 1.2 +-2.4 2.4 -4.8 1.2 0 1.2 -1.2 2.4 -3.6 1.2 -4.8 1.2 -3.6 1.2 -1.2 2.4 +-1.2 1.2 -2.4 1.2 0 2.4 -2.4 1.2 0 1.2 -6 2.4 4.8 1.2 2.4 1.2 +-2.4 2.4 -2.4 1.2 -2.4 1.2 1.2 2.4 -1.2 1.2 0 1.2 2.4 1.2 -2.4 2.4 +-3.6 1.2 2.4 1.2 3.6 2.4 1.2 1.2 -1.2 1.2 -6 2.4 S +1766.65 2809.13 1.2 1.2 1.2 1.2 3.6 2.4 2.4 1.2 0 1.2 0 2.4 -6 1.2 +4.8 1.2 -2.4 1.2 3.6 2.4 1.2 1.2 0 1.2 -1.2 2.4 0 1.2 2.4 1.2 +-1.2 2.4 0 1.2 -2.4 1.2 0 2.4 1.2 1.2 2.4 1.2 1.2 2.4 -1.2 1.2 +-1.2 1.2 -1.2 1.2 2.4 2.4 1.2 1.2 3.6 1.2 -1.2 2.4 -1.2 1.2 -3.6 1.2 +1.2 2.4 0 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 2.4 1.2 +3.6 1.2 -2.4 1.2 -2.4 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 2.4 1.2 1.2 1.2 +-3.6 2.4 -3.6 1.2 1.2 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 -1.2 1.2 +1.2 1.2 1.2 1.2 1.2 2.4 -2.4 1.2 0 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 +2.4 2.4 1.2 1.2 -4.8 1.2 -3.6 2.4 3.6 1.2 1.2 1.2 2.4 2.4 1.2 1.2 +-1.2 1.2 -3.6 1.2 0 2.4 1.2 1.2 3.6 1.2 0 2.4 -2.4 1.2 -3.6 1.2 +1.2 2.4 1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 -3.6 1.2 0 1.2 1.2 2.4 +0 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 2.4 1.2 -3.6 2.4 3.6 1.2 0 1.2 +-2.4 2.4 -4.8 1.2 -2.4 1.2 0 2.4 1.2 1.2 1.2 1.2 0 1.2 -1.2 2.4 +4.8 1.2 -1.2 1.2 4.8 2.4 0 1.2 0 1.2 -2.4 2.4 2.4 1.2 0 1.2 +3.6 2.4 1.2 1.2 -2.4 1.2 -1.2 2.4 3.6 1.2 0 1.2 1.2 1.2 1.2 2.4 +-6 1.2 -1.2 1.2 1.2 2.4 3.6 1.2 2.4 1.2 2.4 2.4 S +1785.85 3005.92 -2.4 1.2 -2.4 1.2 3.6 2.4 -2.4 1.2 2.4 1.2 2.4 2.4 -7.2 1.2 +1.2 1.2 1.2 1.2 0 2.4 0 1.2 3.6 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 +2.4 2.4 3.6 1.2 6 1.2 2.4 2.4 7.2 1.2 7.2 1.2 2.4 2.4 -10.8 1.2 +-24 1.2 -28.8 1.2 -20.4 2.4 -14.4 1.2 -15.6 1.2 -25.2 2.4 -28.8 1.2 -20.4 1.2 +9.6 2.4 55.2 1.2 S +1691.05 3057.52 73.2 1.2 S +1764.25 3058.72 48 2.4 6 1.2 -12 1.2 -8.4 2.4 -2.4 1.2 -1.2 1.2 -1.2 1.2 +0 2.4 -2.4 1.2 3.6 1.2 2.4 2.4 -1.2 1.2 0 1.2 -2.4 2.4 -6 1.2 +0 1.2 3.6 2.4 4.8 1.2 1.2 1.2 -2.4 2.4 -2.4 1.2 -3.6 1.2 2.4 1.2 +0 2.4 4.8 1.2 -3.6 1.2 0 2.4 -1.2 1.2 0 1.2 1.2 2.4 2.4 1.2 +-1.2 1.2 -2.4 2.4 -2.4 1.2 3.6 1.2 1.2 2.4 -4.8 1.2 2.4 1.2 0 1.2 +-6 2.4 2.4 1.2 -1.2 1.2 4.8 2.4 1.2 1.2 1.2 1.2 -3.6 2.4 2.4 1.2 +1.2 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 -4.8 1.2 2.4 1.2 +3.6 2.4 -3.6 1.2 -1.2 1.2 4.8 2.4 1.2 1.2 0 1.2 -1.2 2.4 -2.4 1.2 +-1.2 1.2 1.2 2.4 1.2 1.2 1.2 1.2 3.6 2.4 -2.4 1.2 -2.4 1.2 2.4 1.2 +4.8 2.4 1.2 1.2 2.4 1.2 1.2 2.4 -3.6 1.2 2.4 1.2 3.6 2.4 3.6 1.2 +4.8 1.2 -3.6 2.4 -1.2 1.2 2.4 1.2 2.4 2.4 0 1.2 0 1.2 0 1.2 +2.4 2.4 0 1.2 1.2 1.2 -1.2 2.4 2.4 1.2 -3.6 1.2 -2.4 2.4 -2.4 1.2 +3.6 1.2 -1.2 2.4 0 1.2 -4.8 1.2 -1.2 2.4 1.2 1.2 0 1.2 -1.2 1.2 +-2.4 2.4 -3.6 1.2 -6 1.2 -2.4 2.4 0 1.2 -1.2 1.2 -3.6 2.4 -2.4 1.2 +-3.6 1.2 -3.6 2.4 0 1.2 1.2 1.2 1.2 2.4 -2.4 1.2 -3.6 1.2 1.2 1.2 +2.4 2.4 2.4 1.2 0 1.2 -7.2 2.4 1.2 1.2 1.2 1.2 S +1778.65 3255.51 1.2 2.4 2.4 1.2 -1.2 1.2 -4.8 2.4 -1.2 1.2 1.2 1.2 3.6 2.4 +2.4 1.2 1.2 1.2 -2.4 1.2 -1.2 2.4 -1.2 1.2 2.4 1.2 2.4 2.4 -1.2 1.2 +-3.6 1.2 -1.2 2.4 4.8 1.2 2.4 1.2 3.6 2.4 1.2 1.2 -1.2 1.2 -3.6 2.4 +2.4 1.2 -3.6 1.2 2.4 1.2 -2.4 2.4 2.4 1.2 -1.2 1.2 1.2 2.4 0 1.2 +2.4 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 0 2.4 2.4 1.2 2.4 1.2 3.6 2.4 +-3.6 1.2 -3.6 1.2 2.4 1.2 -1.2 2.4 1.2 1.2 -1.2 1.2 0 2.4 -3.6 1.2 +3.6 1.2 0 2.4 1.2 1.2 0 1.2 -1.2 2.4 -2.4 1.2 1.2 1.2 -1.2 2.4 +3.6 1.2 0 1.2 3.6 1.2 -4.8 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 +-1.2 1.2 -2.4 2.4 3.6 1.2 0 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 -2.4 2.4 +2.4 1.2 4.8 1.2 0 1.2 0 2.4 -4.8 1.2 0 1.2 1.2 2.4 1.2 1.2 +4.8 1.2 -1.2 2.4 -3.6 1.2 -1.2 1.2 -1.2 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 +-2.4 1.2 -2.4 1.2 1.2 1.2 -2.4 2.4 2.4 1.2 1.2 1.2 -3.6 2.4 -1.2 1.2 +3.6 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 2.4 1.2 2.4 2.4 +1.2 1.2 -1.2 1.2 -1.2 1.2 -1.2 2.4 4.8 1.2 1.2 1.2 3.6 2.4 -2.4 1.2 +-2.4 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 6 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 +0 1.2 3.6 1.2 1.2 1.2 1.2 2.4 -2.4 1.2 -2.4 1.2 S +1781.05 3452.3 0 2.4 3.6 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 -3.6 1.2 0 2.4 +4.8 1.2 0 1.2 -2.4 2.4 -2.4 1.2 -1.2 1.2 1.2 1.2 3.6 2.4 3.6 1.2 +3.6 1.2 1.2 2.4 4.8 1.2 3.6 1.2 8.4 2.4 1.2 1.2 -4.8 1.2 -20.4 2.4 +-28.8 1.2 -25.2 1.2 -13.2 2.4 -13.2 1.2 -20.4 1.2 -30 1.2 -30 2.4 -14.4 1.2 +14.4 1.2 S +1623.85 3502.7 62.4 2.4 S +1686.25 3505.1 80.4 1.2 S +1766.65 3506.3 46.8 1.2 2.4 2.4 -12 1.2 -7.2 1.2 -4.8 2.4 -3.6 1.2 -2.4 1.2 +-7.2 2.4 3.6 1.2 3.6 1.2 -2.4 1.2 -2.4 2.4 -1.2 1.2 0 1.2 2.4 2.4 +2.4 1.2 1.2 1.2 2.4 2.4 -4.8 1.2 -3.6 1.2 1.2 2.4 3.6 1.2 0 1.2 +1.2 1.2 -3.6 2.4 0 1.2 -1.2 1.2 1.2 2.4 3.6 1.2 -2.4 1.2 -1.2 2.4 +-1.2 1.2 0 1.2 2.4 2.4 1.2 1.2 -2.4 1.2 -2.4 2.4 -4.8 1.2 2.4 1.2 +4.8 1.2 0 2.4 1.2 1.2 -3.6 1.2 -3.6 2.4 2.4 1.2 0 1.2 1.2 2.4 +3.6 1.2 -2.4 1.2 -4.8 2.4 1.2 1.2 1.2 1.2 1.2 2.4 0 1.2 0 1.2 +-2.4 1.2 3.6 2.4 2.4 1.2 -1.2 1.2 0 2.4 -3.6 1.2 1.2 1.2 -1.2 2.4 +4.8 1.2 0 1.2 0 2.4 -1.2 1.2 -3.6 1.2 6 2.4 -1.2 1.2 3.6 1.2 +3.6 1.2 0 2.4 -1.2 1.2 1.2 1.2 0 2.4 4.8 1.2 -2.4 1.2 -2.4 2.4 +1.2 1.2 3.6 1.2 2.4 2.4 3.6 1.2 1.2 1.2 -6 2.4 0 1.2 3.6 1.2 +3.6 1.2 1.2 2.4 1.2 1.2 2.4 1.2 -2.4 2.4 2.4 1.2 1.2 1.2 1.2 2.4 +0 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 -4.8 1.2 0 2.4 -2.4 1.2 -3.6 1.2 +-4.8 1.2 -3.6 2.4 -2.4 1.2 -1.2 1.2 -3.6 2.4 -4.8 1.2 -3.6 1.2 -1.2 2.4 +-2.4 1.2 2.4 1.2 -3.6 2.4 -2.4 1.2 -3.6 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 +2.4 1.2 -4.8 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 0 1.2 S +1758.25 3703.09 2.4 1.2 -1.2 2.4 -3.6 1.2 2.4 1.2 0 2.4 1.2 1.2 -1.2 1.2 +-1.2 2.4 -1.2 1.2 0 1.2 1.2 1.2 1.2 2.4 4.8 1.2 -2.4 1.2 -2.4 2.4 +1.2 1.2 2.4 1.2 0 2.4 0 1.2 -3.6 1.2 -1.2 2.4 2.4 1.2 3.6 1.2 +1.2 2.4 -1.2 1.2 0 1.2 -3.6 1.2 0 2.4 3.6 1.2 1.2 1.2 2.4 2.4 +-3.6 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 2.4 1.2 1.2 2.4 -3.6 1.2 -3.6 1.2 +4.8 2.4 0 1.2 3.6 1.2 -2.4 1.2 0 2.4 -3.6 1.2 1.2 1.2 1.2 2.4 +2.4 1.2 -1.2 1.2 -1.2 2.4 -2.4 1.2 0 1.2 2.4 2.4 4.8 1.2 -6 1.2 +-1.2 2.4 -1.2 1.2 1.2 1.2 -1.2 1.2 2.4 2.4 4.8 1.2 -2.4 1.2 -6 2.4 +1.2 1.2 2.4 1.2 1.2 2.4 0 1.2 -1.2 1.2 -3.6 2.4 2.4 1.2 2.4 1.2 +1.2 2.4 1.2 1.2 -6 1.2 -1.2 1.2 -1.2 2.4 3.6 1.2 1.2 1.2 -1.2 2.4 +0 1.2 -3.6 1.2 1.2 2.4 0 1.2 2.4 1.2 0 2.4 -2.4 1.2 0 1.2 +0 2.4 1.2 1.2 1.2 1.2 0 1.2 -2.4 2.4 -3.6 1.2 3.6 1.2 1.2 2.4 +1.2 1.2 -2.4 1.2 -4.8 2.4 -1.2 1.2 -1.2 1.2 2.4 2.4 1.2 1.2 1.2 1.2 +-1.2 2.4 -6 1.2 0 1.2 -1.2 1.2 1.2 2.4 -3.6 1.2 -2.4 1.2 -1.2 2.4 +3.6 1.2 0 1.2 2.4 2.4 0 1.2 -1.2 1.2 -1.2 2.4 4.8 1.2 3.6 1.2 +1.2 2.4 -2.4 1.2 0 1.2 -2.4 1.2 0 2.4 2.4 1.2 S +1753.45 3899.88 2.4 1.2 1.2 2.4 1.2 1.2 -3.6 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 +-1.2 2.4 0 1.2 -3.6 1.2 2.4 2.4 2.4 1.2 3.6 1.2 -2.4 1.2 -3.6 2.4 +-1.2 1.2 1.2 1.2 2.4 2.4 1.2 1.2 2.4 1.2 -3.6 2.4 -2.4 1.2 0 1.2 +-1.2 2.4 7.2 1.2 3.6 1.2 4.8 2.4 3.6 1.2 3.6 1.2 9.6 1.2 4.8 2.4 +-2.4 1.2 -19.2 1.2 -33.6 2.4 -30 1.2 -25.2 1.2 -25.2 2.4 -25.2 1.2 -33.6 1.2 +-31.2 2.4 -21.6 1.2 1.2 1.2 45.6 2.4 S +1591.45 3968.28 81.6 1.2 S +1673.05 3969.48 69.6 1.2 S +1742.65 3970.68 26.4 1.2 -1.2 2.4 -7.2 1.2 3.6 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 +2.4 2.4 8.4 1.2 2.4 1.2 -1.2 2.4 -4.8 1.2 0 1.2 1.2 2.4 1.2 1.2 +3.6 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 0 1.2 +-2.4 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 3.6 1.2 0 1.2 -8.4 2.4 3.6 1.2 +-1.2 1.2 0 1.2 2.4 2.4 1.2 1.2 -1.2 1.2 -3.6 2.4 2.4 1.2 1.2 1.2 +-1.2 2.4 1.2 1.2 -4.8 1.2 0 2.4 2.4 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 +-1.2 1.2 -3.6 1.2 0 2.4 4.8 1.2 2.4 1.2 0 2.4 -4.8 1.2 -1.2 1.2 +4.8 2.4 -4.8 1.2 3.6 1.2 0 2.4 0 1.2 -2.4 1.2 2.4 2.4 4.8 1.2 +-1.2 1.2 -1.2 1.2 2.4 2.4 -3.6 1.2 2.4 1.2 2.4 2.4 2.4 1.2 -2.4 1.2 +1.2 2.4 -3.6 1.2 2.4 1.2 3.6 2.4 2.4 1.2 0 1.2 -1.2 2.4 1.2 1.2 +-2.4 1.2 6 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 0 2.4 1.2 1.2 3.6 1.2 +3.6 2.4 -1.2 1.2 0 1.2 0 2.4 2.4 1.2 1.2 1.2 1.2 2.4 1.2 1.2 +-1.2 1.2 -1.2 1.2 1.2 2.4 0 1.2 1.2 1.2 -2.4 2.4 -7.2 1.2 0 1.2 +0 2.4 -3.6 1.2 0 1.2 -3.6 2.4 -6 1.2 -4.8 1.2 -1.2 1.2 -1.2 2.4 +-2.4 1.2 -2.4 1.2 -4.8 2.4 -3.6 1.2 -3.6 1.2 2.4 2.4 1.2 1.2 -2.4 1.2 +-3.6 2.4 -1.2 1.2 0 1.2 0 2.4 3.6 1.2 1.2 1.2 S +1753.45 4167.47 -3.6 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 -1.2 1.2 +-2.4 2.4 1.2 1.2 2.4 1.2 2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 0 1.2 +-2.4 1.2 2.4 1.2 3.6 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 3.6 1.2 -2.4 1.2 +3.6 2.4 -3.6 1.2 -4.8 1.2 1.2 2.4 2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 +-1.2 1.2 2.4 1.2 -2.4 2.4 0 1.2 1.2 1.2 -2.4 2.4 0 1.2 0 1.2 +3.6 2.4 1.2 1.2 -1.2 1.2 -1.2 2.4 0 1.2 2.4 1.2 0 2.4 3.6 1.2 +-1.2 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 3.6 1.2 1.2 2.4 2.4 1.2 0 1.2 +1.2 2.4 1.2 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 0 1.2 +2.4 1.2 2.4 1.2 -2.4 2.4 -3.6 1.2 0 1.2 1.2 2.4 0 1.2 3.6 1.2 +-1.2 2.4 -3.6 1.2 -1.2 1.2 2.4 2.4 -1.2 1.2 2.4 1.2 -1.2 2.4 -2.4 1.2 +0 1.2 -1.2 1.2 2.4 2.4 2.4 1.2 -2.4 1.2 -4.8 2.4 0 1.2 2.4 1.2 +2.4 2.4 1.2 1.2 0 1.2 3.6 2.4 3.6 1.2 9.6 1.2 3.6 2.4 10.8 1.2 +3.6 1.2 -3.6 1.2 -24 2.4 -24 1.2 -32.4 1.2 -26.4 2.4 -20.4 1.2 -26.4 1.2 +-24 2.4 -24 1.2 -16.8 1.2 0 2.4 37.2 1.2 S +1611.85 4337.86 67.2 1.2 S +1679.05 4339.06 63.6 2.4 S +1742.65 4341.46 32.4 1.2 -2.4 1.2 -6 1.2 -1.2 2.4 -2.4 1.2 -4.8 1.2 0 2.4 +3.6 1.2 1.2 1.2 1.2 2.4 -3.6 1.2 0 1.2 0 2.4 3.6 1.2 1.2 1.2 +-1.2 2.4 -3.6 1.2 0 1.2 1.2 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 -1.2 2.4 +-2.4 1.2 0 1.2 2.4 2.4 2.4 1.2 0 1.2 -2.4 2.4 -1.2 1.2 0 1.2 +2.4 2.4 1.2 1.2 1.2 1.2 -3.6 1.2 -2.4 2.4 1.2 1.2 2.4 1.2 0 2.4 +0 1.2 1.2 1.2 -2.4 2.4 -2.4 1.2 2.4 1.2 2.4 2.4 1.2 1.2 -3.6 1.2 +-2.4 2.4 4.8 1.2 0 1.2 1.2 1.2 0 2.4 -4.8 1.2 -2.4 1.2 3.6 2.4 +1.2 1.2 4.8 1.2 0 2.4 -1.2 1.2 -3.6 1.2 0 2.4 3.6 1.2 0 1.2 +0 2.4 -1.2 1.2 1.2 1.2 6 1.2 1.2 2.4 -1.2 1.2 1.2 1.2 -1.2 2.4 +-3.6 1.2 6 1.2 -1.2 2.4 4.8 1.2 -1.2 1.2 1.2 2.4 -4.8 1.2 4.8 1.2 +3.6 2.4 4.8 1.2 0 1.2 1.2 1.2 -3.6 2.4 3.6 1.2 2.4 1.2 2.4 2.4 +0 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 3.6 1.2 -1.2 2.4 1.2 1.2 -3.6 1.2 +0 2.4 0 1.2 0 1.2 1.2 1.2 -2.4 2.4 -3.6 1.2 -3.6 1.2 -1.2 2.4 +-1.2 1.2 0 1.2 -2.4 2.4 -2.4 1.2 -4.8 1.2 -1.2 2.4 0 1.2 0 1.2 +-1.2 2.4 -1.2 1.2 -4.8 1.2 -1.2 1.2 2.4 2.4 0 1.2 -4.8 1.2 -3.6 2.4 +-3.6 1.2 1.2 1.2 4.8 2.4 -1.2 1.2 0 1.2 -2.4 2.4 S +1759.45 4538.26 -1.2 1.2 -1.2 1.2 2.4 2.4 0 1.2 4.8 1.2 -3.6 1.2 -2.4 2.4 +-2.4 1.2 1.2 1.2 2.4 2.4 -1.2 1.2 1.2 1.2 -3.6 2.4 1.2 1.2 3.6 1.2 +-1.2 2.4 3.6 1.2 -4.8 1.2 0 2.4 2.4 1.2 1.2 1.2 0 1.2 3.6 2.4 +-4.8 1.2 0 1.2 -1.2 2.4 2.4 1.2 1.2 1.2 0 2.4 2.4 1.2 -2.4 1.2 +0 2.4 0 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 0 1.2 1.2 1.2 1.2 2.4 +6 1.2 -2.4 1.2 -1.2 2.4 -2.4 1.2 -1.2 1.2 4.8 2.4 -1.2 1.2 1.2 1.2 +-3.6 2.4 1.2 1.2 0 1.2 0 2.4 1.2 1.2 -1.2 1.2 -4.8 1.2 1.2 2.4 +2.4 1.2 2.4 1.2 4.8 2.4 -1.2 1.2 -7.2 1.2 -1.2 2.4 0 1.2 1.2 1.2 +4.8 2.4 1.2 1.2 -2.4 1.2 -2.4 2.4 0 1.2 0 1.2 2.4 1.2 0 2.4 +-2.4 1.2 2.4 1.2 0 2.4 4.8 1.2 -1.2 1.2 0 2.4 -9.6 1.2 -2.4 1.2 +4.8 2.4 3.6 1.2 1.2 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 0 1.2 2.4 2.4 +2.4 1.2 2.4 1.2 -2.4 2.4 -3.6 1.2 1.2 1.2 3.6 2.4 2.4 1.2 -2.4 1.2 +0 2.4 0 1.2 0 1.2 1.2 2.4 -2.4 1.2 2.4 1.2 0 1.2 -2.4 2.4 +2.4 1.2 0 1.2 1.2 2.4 0 1.2 -2.4 1.2 -2.4 2.4 4.8 1.2 -3.6 1.2 +0 2.4 1.2 1.2 1.2 1.2 -3.6 2.4 3.6 1.2 0 1.2 4.8 1.2 -1.2 2.4 +-4.8 1.2 -1.2 1.2 0 2.4 2.4 1.2 6 1.2 1.2 2.4 S +1776.25 4735.05 -3.6 1.2 -2.4 1.2 -1.2 2.4 1.2 1.2 4.8 1.2 3.6 1.2 -4.8 2.4 +-2.4 1.2 2.4 1.2 -1.2 2.4 2.4 1.2 0 1.2 -2.4 2.4 -1.2 1.2 -2.4 1.2 +7.2 2.4 0 1.2 0 1.2 -3.6 2.4 -1.2 1.2 1.2 1.2 0 1.2 1.2 2.4 +0 1.2 -3.6 1.2 0 2.4 0 1.2 1.2 1.2 4.8 2.4 0 1.2 -3.6 1.2 +-3.6 2.4 1.2 1.2 -1.2 1.2 2.4 2.4 -3.6 1.2 -1.2 1.2 -3.6 1.2 1.2 2.4 +2.4 1.2 -1.2 1.2 -1.2 2.4 -1.2 1.2 -3.6 1.2 1.2 2.4 2.4 1.2 1.2 1.2 +-1.2 2.4 0 1.2 -2.4 1.2 3.6 2.4 2.4 1.2 -2.4 1.2 -1.2 1.2 -1.2 2.4 +0 1.2 4.8 1.2 2.4 2.4 3.6 1.2 -3.6 1.2 0 2.4 -4.8 1.2 3.6 1.2 +1.2 2.4 1.2 1.2 6 1.2 -1.2 2.4 -3.6 1.2 1.2 1.2 0 1.2 0 2.4 +3.6 1.2 -2.4 1.2 0 2.4 0 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 +-4.8 2.4 2.4 1.2 1.2 1.2 0 2.4 0 1.2 0 1.2 -1.2 1.2 1.2 2.4 +0 1.2 7.2 1.2 4.8 2.4 3.6 1.2 0 1.2 4.8 2.4 3.6 1.2 -4.8 1.2 +-14.4 2.4 -28.8 1.2 -20.4 1.2 -13.2 2.4 -10.8 1.2 -16.8 1.2 -25.2 1.2 -27.6 2.4 +-26.4 1.2 -9.6 1.2 21.6 2.4 52.8 1.2 S +1676.65 4903.04 69.6 1.2 S +1746.25 4904.24 52.8 2.4 15.6 1.2 -1.2 1.2 -4.8 2.4 -7.2 1.2 -8.4 1.2 -2.4 2.4 +-3.6 1.2 -1.2 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -4.8 1.2 -3.6 2.4 2.4 1.2 +0 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 -4.8 2.4 3.6 1.2 -1.2 1.2 6 2.4 +-4.8 1.2 -2.4 1.2 0 1.2 1.2 2.4 0 1.2 1.2 1.2 0 2.4 -1.2 1.2 +-7.2 1.2 3.6 2.4 1.2 1.2 4.8 1.2 2.4 2.4 -6 1.2 -1.2 1.2 -3.6 2.4 +2.4 1.2 3.6 1.2 -1.2 1.2 0 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 2.4 1.2 +0 1.2 -1.2 2.4 -4.8 1.2 4.8 1.2 0 2.4 -1.2 1.2 3.6 1.2 -2.4 2.4 +-4.8 1.2 3.6 1.2 2.4 1.2 2.4 2.4 1.2 1.2 -2.4 1.2 -3.6 2.4 2.4 1.2 +0 1.2 3.6 2.4 -1.2 1.2 0 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 0 2.4 +0 1.2 0 1.2 -6 1.2 4.8 2.4 0 1.2 1.2 1.2 3.6 2.4 -6 1.2 +-3.6 1.2 2.4 2.4 2.4 1.2 4.8 1.2 2.4 2.4 1.2 1.2 -1.2 1.2 -2.4 2.4 +7.2 1.2 1.2 1.2 2.4 1.2 0 2.4 -1.2 1.2 4.8 1.2 -1.2 2.4 4.8 1.2 +3.6 1.2 -1.2 2.4 0 1.2 2.4 1.2 0 2.4 3.6 1.2 0 1.2 -1.2 2.4 +-1.2 1.2 0 1.2 2.4 1.2 0 2.4 1.2 1.2 -6 1.2 -6 2.4 -1.2 1.2 +-2.4 1.2 1.2 2.4 -2.4 1.2 -4.8 1.2 -6 2.4 -1.2 1.2 -2.4 1.2 -3.6 2.4 +-2.4 1.2 -2.4 1.2 -4.8 1.2 1.2 2.4 1.2 1.2 0 1.2 S +1776.25 5101.03 -1.2 2.4 -6 1.2 -2.4 1.2 0 2.4 1.2 1.2 2.4 1.2 0 2.4 +-1.2 1.2 -4.8 1.2 0 2.4 3.6 1.2 0 1.2 0 1.2 -1.2 2.4 -2.4 1.2 +4.8 1.2 -2.4 2.4 3.6 1.2 -1.2 1.2 -4.8 2.4 0 1.2 1.2 1.2 3.6 2.4 +1.2 1.2 -1.2 1.2 -1.2 2.4 0 1.2 -1.2 1.2 1.2 1.2 1.2 2.4 3.6 1.2 +-2.4 1.2 -2.4 2.4 0 1.2 0 1.2 4.8 2.4 0 1.2 -6 1.2 3.6 2.4 +0 1.2 2.4 1.2 1.2 2.4 2.4 1.2 -2.4 1.2 -2.4 1.2 0 2.4 1.2 1.2 +1.2 1.2 2.4 2.4 -2.4 1.2 -2.4 1.2 0 2.4 1.2 1.2 1.2 1.2 -2.4 2.4 +-1.2 1.2 -2.4 1.2 4.8 2.4 1.2 1.2 2.4 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 +3.6 1.2 -1.2 2.4 2.4 1.2 0 1.2 -1.2 2.4 -3.6 1.2 2.4 1.2 -1.2 2.4 +2.4 1.2 0 1.2 0 2.4 -3.6 1.2 0 1.2 2.4 1.2 2.4 2.4 -2.4 1.2 +-3.6 1.2 1.2 2.4 -2.4 1.2 4.8 1.2 2.4 2.4 -1.2 1.2 -3.6 1.2 -3.6 2.4 +2.4 1.2 1.2 1.2 0 2.4 1.2 1.2 -2.4 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 +1.2 1.2 0 2.4 0 1.2 -2.4 1.2 2.4 2.4 -2.4 1.2 2.4 1.2 -1.2 2.4 +-3.6 1.2 -4.8 1.2 4.8 2.4 0 1.2 1.2 1.2 -1.2 1.2 -4.8 2.4 -3.6 1.2 +2.4 1.2 3.6 2.4 0 1.2 -3.6 1.2 -2.4 2.4 -2.4 1.2 0 1.2 1.2 2.4 +-1.2 1.2 1.2 1.2 0 2.4 -2.4 1.2 1.2 1.2 3.6 1.2 S +1759.45 5297.82 3.6 2.4 0 1.2 0 1.2 -2.4 2.4 -1.2 1.2 3.6 1.2 3.6 2.4 +3.6 1.2 -4.8 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 2.4 2.4 -1.2 1.2 -3.6 1.2 +2.4 1.2 1.2 2.4 3.6 1.2 2.4 1.2 0 2.4 -4.8 1.2 -3.6 1.2 2.4 2.4 +2.4 1.2 0 1.2 3.6 2.4 -3.6 1.2 -4.8 1.2 3.6 1.2 1.2 2.4 1.2 1.2 +1.2 1.2 -2.4 2.4 1.2 1.2 6 1.2 6 2.4 6 1.2 3.6 1.2 4.8 2.4 +-1.2 1.2 -6 1.2 -22.8 2.4 -31.2 1.2 -24 1.2 -21.6 1.2 -21.6 2.4 -22.8 1.2 +-22.8 1.2 -19.2 2.4 -14.4 1.2 16.8 1.2 55.2 2.4 S +1663.45 5380.62 81.6 1.2 S +1745.05 5381.82 49.2 1.2 7.2 2.4 -10.8 1.2 -8.4 1.2 -1.2 2.4 -2.4 1.2 -3.6 1.2 +2.4 1.2 0 2.4 2.4 1.2 -1.2 1.2 0 2.4 2.4 1.2 2.4 1.2 -1.2 2.4 +-2.4 1.2 -3.6 1.2 1.2 2.4 4.8 1.2 -2.4 1.2 3.6 2.4 -6 1.2 -1.2 1.2 +0 1.2 0 2.4 1.2 1.2 2.4 1.2 -3.6 2.4 -1.2 1.2 0 1.2 1.2 2.4 +2.4 1.2 1.2 1.2 -3.6 2.4 -3.6 1.2 1.2 1.2 2.4 2.4 1.2 1.2 1.2 1.2 +-2.4 1.2 -1.2 2.4 1.2 1.2 1.2 1.2 1.2 2.4 -1.2 1.2 -2.4 1.2 0 2.4 +0 1.2 1.2 1.2 2.4 2.4 0 1.2 -1.2 1.2 -2.4 2.4 1.2 1.2 0 1.2 +2.4 1.2 2.4 2.4 -1.2 1.2 -3.6 1.2 -2.4 2.4 3.6 1.2 0 1.2 3.6 2.4 +-4.8 1.2 0 1.2 2.4 2.4 2.4 1.2 1.2 1.2 0 2.4 -2.4 1.2 0 1.2 +1.2 1.2 1.2 2.4 4.8 1.2 0 1.2 -1.2 2.4 -1.2 1.2 4.8 1.2 3.6 2.4 +0 1.2 3.6 1.2 0 2.4 -1.2 1.2 1.2 1.2 2.4 2.4 1.2 1.2 4.8 1.2 +-2.4 1.2 -1.2 2.4 3.6 1.2 0 1.2 4.8 2.4 -1.2 1.2 -2.4 1.2 -4.8 2.4 +4.8 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 -6 1.2 -4.8 2.4 0 1.2 -1.2 1.2 +-4.8 1.2 0 2.4 -3.6 1.2 -7.2 1.2 -2.4 2.4 -1.2 1.2 0 1.2 -4.8 2.4 +-4.8 1.2 -1.2 1.2 1.2 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 +-1.2 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 -1.2 2.4 -2.4 1.2 S +1760.65 5578.61 1.2 1.2 0 2.4 1.2 1.2 0 1.2 -1.2 2.4 -3.6 1.2 1.2 1.2 +2.4 2.4 1.2 1.2 2.4 1.2 -6 1.2 -2.4 2.4 3.6 1.2 1.2 1.2 3.6 2.4 +0 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 2.4 1.2 2.4 2.4 1.2 1.2 -2.4 1.2 +-1.2 2.4 1.2 1.2 3.6 1.2 0 1.2 -1.2 2.4 -1.2 1.2 -1.2 1.2 2.4 2.4 +1.2 1.2 3.6 1.2 -1.2 2.4 -2.4 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 4.8 1.2 +1.2 2.4 -4.8 1.2 -1.2 1.2 1.2 1.2 2.4 2.4 1.2 1.2 2.4 1.2 -3.6 2.4 +-4.8 1.2 1.2 1.2 3.6 2.4 1.2 1.2 -1.2 1.2 1.2 2.4 -3.6 1.2 0 1.2 +-2.4 2.4 6 1.2 -1.2 1.2 -1.2 1.2 -3.6 2.4 1.2 1.2 0 1.2 3.6 2.4 +0 1.2 -4.8 1.2 0 2.4 1.2 1.2 0 1.2 3.6 2.4 -1.2 1.2 -4.8 1.2 +0 2.4 2.4 1.2 1.2 1.2 1.2 1.2 2.4 2.4 -4.8 1.2 -6 1.2 2.4 2.4 +4.8 1.2 0 1.2 0 2.4 -2.4 1.2 -2.4 1.2 -2.4 2.4 2.4 1.2 3.6 1.2 +2.4 2.4 -3.6 1.2 -1.2 1.2 -1.2 1.2 0 2.4 6 1.2 1.2 1.2 -4.8 2.4 +-2.4 1.2 1.2 1.2 1.2 2.4 0 1.2 -2.4 1.2 -3.6 2.4 -4.8 1.2 2.4 1.2 +3.6 2.4 0 1.2 0 1.2 -4.8 1.2 -3.6 2.4 0 1.2 2.4 1.2 0 2.4 +-1.2 1.2 0 1.2 -2.4 2.4 -1.2 1.2 4.8 1.2 2.4 2.4 2.4 1.2 -3.6 1.2 +0 2.4 1.2 1.2 1.2 1.2 2.4 1.2 1.2 2.4 -1.2 1.2 S +1761.85 5775.4 -2.4 1.2 3.6 2.4 4.8 1.2 -1.2 1.2 1.2 2.4 -3.6 1.2 -3.6 1.2 +4.8 2.4 3.6 1.2 1.2 1.2 0 2.4 -3.6 1.2 -1.2 1.2 1.2 1.2 0 2.4 +2.4 1.2 -4.8 1.2 2.4 2.4 -1.2 1.2 1.2 1.2 1.2 2.4 3.6 1.2 -1.2 1.2 +1.2 2.4 4.8 1.2 7.2 1.2 9.6 2.4 7.2 1.2 2.4 1.2 -7.2 1.2 -25.2 2.4 +-30 1.2 -30 1.2 -25.2 2.4 -24 1.2 -28.8 1.2 -32.4 2.4 -26.4 1.2 -6 1.2 +32.4 2.4 S +1599.85 5839 78 1.2 S +1677.85 5840.2 76.8 1.2 S +1754.65 5841.4 31.2 2.4 -6 1.2 -4.8 1.2 0 1.2 2.4 2.4 -1.2 1.2 -2.4 1.2 +4.8 2.4 0 1.2 0 1.2 -1.2 2.4 -1.2 1.2 -2.4 1.2 1.2 2.4 1.2 1.2 +3.6 1.2 2.4 2.4 -4.8 1.2 0 1.2 -1.2 1.2 1.2 2.4 2.4 1.2 -1.2 1.2 +-1.2 2.4 -1.2 1.2 1.2 1.2 3.6 2.4 -2.4 1.2 0 1.2 -2.4 2.4 0 1.2 +0 1.2 1.2 2.4 3.6 1.2 -4.8 1.2 0 1.2 -2.4 2.4 0 1.2 2.4 1.2 +3.6 2.4 -1.2 1.2 -2.4 1.2 -2.4 2.4 -2.4 1.2 4.8 1.2 0 2.4 0 1.2 +0 1.2 -1.2 2.4 0 1.2 3.6 1.2 1.2 1.2 0 2.4 -1.2 1.2 -2.4 1.2 +0 2.4 2.4 1.2 2.4 1.2 0 2.4 -3.6 1.2 -1.2 1.2 0 2.4 4.8 1.2 +1.2 1.2 1.2 1.2 0 2.4 -3.6 1.2 2.4 1.2 2.4 2.4 3.6 1.2 2.4 1.2 +-2.4 2.4 1.2 1.2 2.4 1.2 2.4 2.4 1.2 1.2 1.2 1.2 0 2.4 0 1.2 +2.4 1.2 2.4 1.2 3.6 2.4 -1.2 1.2 -1.2 1.2 -1.2 2.4 3.6 1.2 2.4 1.2 +2.4 2.4 -1.2 1.2 -1.2 1.2 -3.6 2.4 -1.2 1.2 2.4 1.2 1.2 2.4 -2.4 1.2 +-4.8 1.2 -3.6 1.2 -1.2 2.4 -3.6 1.2 0 1.2 -1.2 2.4 -3.6 1.2 -8.4 1.2 +1.2 2.4 1.2 1.2 1.2 1.2 -4.8 2.4 -1.2 1.2 -4.8 1.2 -3.6 2.4 0 1.2 +2.4 1.2 -2.4 1.2 -3.6 2.4 -6 1.2 3.6 1.2 2.4 2.4 -1.2 1.2 -1.2 1.2 +-2.4 2.4 -2.4 1.2 3.6 1.2 3.6 2.4 1.2 1.2 -4.8 1.2 S +1759.45 6038.19 -1.2 2.4 0 1.2 0 1.2 3.6 1.2 2.4 2.4 0 1.2 -3.6 1.2 +-4.8 2.4 2.4 1.2 2.4 1.2 2.4 2.4 3.6 1.2 -3.6 1.2 -3.6 2.4 2.4 1.2 +-2.4 1.2 4.8 2.4 1.2 1.2 -2.4 1.2 -2.4 1.2 2.4 2.4 2.4 1.2 1.2 1.2 +-1.2 2.4 -2.4 1.2 -1.2 1.2 1.2 2.4 4.8 1.2 2.4 1.2 -2.4 2.4 0 1.2 +-3.6 1.2 1.2 2.4 -1.2 1.2 3.6 1.2 -1.2 1.2 1.2 2.4 -1.2 1.2 -1.2 1.2 +2.4 2.4 1.2 1.2 -1.2 1.2 -3.6 2.4 -2.4 1.2 6 1.2 0 2.4 1.2 1.2 +2.4 1.2 -1.2 2.4 -7.2 1.2 2.4 1.2 1.2 1.2 2.4 2.4 1.2 1.2 -1.2 1.2 +-7.2 2.4 3.6 1.2 -2.4 1.2 4.8 2.4 -1.2 1.2 0 1.2 -6 2.4 3.6 1.2 +2.4 1.2 0 2.4 1.2 1.2 -4.8 1.2 -3.6 1.2 2.4 2.4 1.2 1.2 3.6 1.2 +0 2.4 -3.6 1.2 -3.6 1.2 1.2 2.4 0 1.2 3.6 1.2 1.2 2.4 -2.4 1.2 +-2.4 1.2 -1.2 2.4 1.2 1.2 2.4 1.2 0 1.2 -1.2 2.4 0 1.2 1.2 1.2 +1.2 2.4 1.2 1.2 -3.6 1.2 -6 2.4 1.2 1.2 1.2 1.2 -1.2 2.4 1.2 1.2 +-2.4 1.2 -1.2 2.4 -2.4 1.2 0 1.2 2.4 1.2 1.2 2.4 -6 1.2 -2.4 1.2 +0 2.4 0 1.2 0 1.2 0 2.4 4.8 1.2 1.2 1.2 0 2.4 2.4 1.2 +0 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 -2.4 1.2 6 2.4 0 1.2 1.2 1.2 +1.2 2.4 -3.6 1.2 -1.2 1.2 1.2 2.4 0 1.2 3.6 1.2 S +1761.85 6234.98 1.2 2.4 -2.4 1.2 -2.4 1.2 2.4 2.4 0 1.2 3.6 1.2 -1.2 1.2 +-1.2 2.4 -1.2 1.2 1.2 1.2 2.4 2.4 0 1.2 -1.2 1.2 0 2.4 -4.8 1.2 +6 1.2 4.8 2.4 7.2 1.2 6 1.2 4.8 2.4 2.4 1.2 6 1.2 -3.6 1.2 +-20.4 2.4 -28.8 1.2 -26.4 1.2 -21.6 2.4 -18 1.2 -24 1.2 -25.2 2.4 -24 1.2 +-9.6 1.2 26.4 2.4 S +1620.25 6287.78 73.2 1.2 S +1693.45 6288.98 67.2 1.2 S +1760.65 6290.18 30 2.4 -8.4 1.2 -10.8 1.2 -4.8 1.2 2.4 2.4 0 1.2 -1.2 1.2 +2.4 2.4 -2.4 1.2 -2.4 1.2 3.6 2.4 1.2 1.2 2.4 1.2 0 2.4 -4.8 1.2 +-4.8 1.2 4.8 2.4 1.2 1.2 4.8 1.2 0 1.2 -2.4 2.4 -2.4 1.2 -1.2 1.2 +2.4 2.4 3.6 1.2 0 1.2 -4.8 2.4 -2.4 1.2 2.4 1.2 1.2 2.4 4.8 1.2 +0 1.2 -4.8 2.4 -2.4 1.2 -1.2 1.2 1.2 1.2 3.6 2.4 1.2 1.2 -3.6 1.2 +-2.4 2.4 1.2 1.2 2.4 1.2 0 2.4 0 1.2 -1.2 1.2 -1.2 2.4 2.4 1.2 +0 1.2 2.4 2.4 -1.2 1.2 -2.4 1.2 -1.2 1.2 2.4 2.4 3.6 1.2 1.2 1.2 +0 2.4 -2.4 1.2 -3.6 1.2 0 2.4 3.6 1.2 3.6 1.2 -1.2 2.4 -2.4 1.2 +1.2 1.2 2.4 2.4 1.2 1.2 2.4 1.2 3.6 1.2 -3.6 2.4 -3.6 1.2 1.2 1.2 +4.8 2.4 0 1.2 2.4 1.2 0 2.4 -1.2 1.2 1.2 1.2 6 2.4 2.4 1.2 +1.2 1.2 -3.6 2.4 -1.2 1.2 2.4 1.2 3.6 1.2 1.2 2.4 1.2 1.2 -1.2 1.2 +-1.2 2.4 1.2 1.2 1.2 1.2 1.2 2.4 2.4 1.2 -3.6 1.2 -3.6 2.4 0 1.2 +0 1.2 -3.6 2.4 -1.2 1.2 -4.8 1.2 -4.8 1.2 -1.2 2.4 -2.4 1.2 1.2 1.2 +-1.2 2.4 -7.2 1.2 -2.4 1.2 1.2 2.4 -1.2 1.2 3.6 1.2 -3.6 2.4 -2.4 1.2 +-2.4 1.2 2.4 2.4 0 1.2 2.4 1.2 0 1.2 -2.4 2.4 -3.6 1.2 0 1.2 +1.2 2.4 4.8 1.2 -1.2 1.2 -2.4 2.4 -1.2 1.2 2.4 1.2 S +1764.25 6486.97 1.2 2.4 3.6 1.2 0 1.2 -3.6 2.4 -2.4 1.2 2.4 1.2 1.2 1.2 +1.2 2.4 0 1.2 0 1.2 -4.8 2.4 4.8 1.2 0 1.2 4.8 2.4 1.2 1.2 +-3.6 1.2 -6 2.4 2.4 1.2 1.2 1.2 1.2 2.4 2.4 1.2 0 1.2 -1.2 1.2 +1.2 2.4 1.2 1.2 1.2 1.2 1.2 2.4 -2.4 1.2 0 1.2 3.6 2.4 -1.2 1.2 +1.2 1.2 -1.2 2.4 -1.2 1.2 -4.8 1.2 3.6 1.2 2.4 2.4 1.2 1.2 0 1.2 +-2.4 2.4 -2.4 1.2 1.2 1.2 2.4 2.4 1.2 1.2 0 1.2 -1.2 2.4 -2.4 1.2 +-2.4 1.2 4.8 2.4 2.4 1.2 1.2 1.2 -2.4 1.2 -3.6 2.4 3.6 1.2 1.2 1.2 +2.4 2.4 -1.2 1.2 -3.6 1.2 -1.2 2.4 -1.2 1.2 0 1.2 1.2 2.4 1.2 1.2 +1.2 1.2 -3.6 2.4 3.6 1.2 1.2 1.2 -1.2 1.2 0 2.4 -6 1.2 0 1.2 +6 2.4 1.2 1.2 4.8 1.2 -2.4 2.4 -3.6 1.2 -2.4 1.2 0 2.4 3.6 1.2 +1.2 1.2 1.2 2.4 -6 1.2 -3.6 1.2 0 1.2 -1.2 2.4 2.4 1.2 -1.2 1.2 +-3.6 2.4 0 1.2 2.4 1.2 0 2.4 -2.4 1.2 1.2 1.2 -4.8 2.4 0 1.2 +2.4 1.2 2.4 2.4 3.6 1.2 -1.2 1.2 -2.4 1.2 -1.2 2.4 3.6 1.2 0 1.2 +4.8 2.4 -3.6 1.2 2.4 1.2 -3.6 2.4 6 1.2 2.4 1.2 2.4 2.4 0 1.2 +-4.8 1.2 1.2 2.4 -1.2 1.2 0 1.2 3.6 1.2 -3.6 2.4 -2.4 1.2 2.4 1.2 +1.2 2.4 0 1.2 2.4 1.2 1.2 2.4 0 1.2 -1.2 1.2 S +1779.85 6683.77 -1.2 2.4 1.2 1.2 3.6 1.2 0 2.4 -1.2 1.2 -4.8 1.2 2.4 1.2 +2.4 2.4 3.6 1.2 6 1.2 4.8 2.4 -1.2 1.2 6 1.2 4.8 2.4 -4.8 1.2 +-14.4 1.2 -25.2 2.4 -25.2 1.2 -13.2 1.2 -12 2.4 -16.8 1.2 -22.8 1.2 -26.4 1.2 +-9.6 2.4 32.4 1.2 S +1668.25 6723.36 61.2 1.2 S +1729.45 6724.56 63.6 2.4 S +1793.05 6726.96 24 1.2 -2.4 1.2 -12 2.4 -7.2 1.2 1.2 1.2 -3.6 2.4 0 1.2 +-3.6 1.2 -2.4 2.4 -1.2 1.2 4.8 1.2 1.2 1.2 0 2.4 0 1.2 -1.2 1.2 +1.2 2.4 0 1.2 -1.2 1.2 0 2.4 0 1.2 -4.8 1.2 0 2.4 2.4 1.2 +2.4 1.2 -1.2 2.4 -2.4 1.2 0 1.2 1.2 1.2 -1.2 2.4 3.6 1.2 3.6 1.2 +-4.8 2.4 -1.2 1.2 2.4 1.2 0 2.4 2.4 1.2 -1.2 1.2 -1.2 2.4 S +1489 1151 72 20 /4R +$C +,=(fn'L;hS*$F2F6.#fHi=Q:M!X9YH#3c?U-Kta!2h^!7X*V.C~> +, +1489 1175 59 56 /0C +$C +3J(W;rk%k3O8k;ngbAVPICFqQDn"I<@GA7#fQQZ"Fre)1h1oke[r-7qnDA/nYf#ke[u8/],Sphl +s7c~> +, +[ 1.2 12.9732 ] 0 d +709.45 1240.8 606 0 P +1541.05 1240.8 585.6 0 S +1415 1244 26 22 /4V +$C +,RtB-iB>Z^s8Qlg[;+2.:]~> +, +709.45 1701.6 606 0 P +1541.05 1701.6 585.6 0 S +1415 1705 4V , +709.45 2161.2 606 0 P +1541.05 2161.2 585.6 0 S +1415 2164 4V , +709.45 2608.8 606 0 P +1541.05 2608.8 585.6 0 S +1415 2612 4V , +709.45 3057.6 606 0 P +1541.05 3057.6 585.6 0 S +1415 3061 4V , +709.45 3505.2 606 0 P +1541.05 3505.2 585.6 0 S +1415 3508 4V , +709.45 3968.4 606 0 P +1541.05 3968.4 585.6 0 S +1415 3971 4V , +709.45 4338 606 0 P +1541.05 4338 585.6 0 S +1399 4339 58 55 /0G +$C +$gO`+-r?S1&NUIu#V7*#9*@X((dW+mi.5j!i.5j!i<%qhi<%s?kW] +, +709.45 4902 606 0 P +1541.05 4902 585.6 0 S +1415 4905 4V , +709.45 5380.8 606 0 P +1541.05 5380.8 585.6 0 S +1415 5384 4V , +709.45 5840.4 606 0 P +1541.05 5840.4 585.6 0 S +1415 5843 4V , +709.45 6288 606 0 P +1541.05 6288 585.6 0 S +1415 6291 4V , +709.45 6724.8 606 0 P +1541.05 6724.8 585.6 0 S +1415 6728 4V , +272 7094 70 46 /4Z +$C +-3Fkl$pbG>:'_g^i\kR][=#LIAqlJ6R^s8W+7H_lJ*_H:5_(eZ"2Rj":? +Yu[qSC;P]>0VH6Q5g#8kL]~> +, +272 7044 4Z , +272 7003 69 28 /0K +$C +-hJ.'9D.sa_P-:u\t+l=J,B~> +, +283 6911 58 53 /5F +$C +3JIM5[C)(qq-]Y@s8W-!^L)JmYP6js>?bmk_cphlCbV-/(EnAFMR@3K0VO1/.97J~> +, +283 6857 58 52 /0Q +$C +3JIM5[C)(qq-_E&<$,3Arr+"sfR<00:YsK/LOHk:HWD39%G5)n`ndL6%GG_o2fQWQ@0[Tm%f?5~> +, +283 6802 59 52 /5J +$C +,f7VVd0(F3i +, +283 6747 59 48 /0U +$C +,f@\Wd0M]t_@@6Pl-l@D,=FMHJd1E]oRhBa8\Is8VfYYP7E7qb)@EWVC1(Bi$Xp +P`2U~> +, +283 6697 58 47 /5N +$C +3JIM5[>#G]s5f%j4b(6Hs8W-!s8W-!qYg8nT4%u_LhG1_j25",.F]=cV$N!8SL"I~> +, +272 6632 69 64 /0Y +$C +0noZ)?a[,Cs8VY(%'Nc_J,f8lqtp.sp[<(tIf8X=Gqn1+^5udlDV/"ZeVAkc#4-4#oY\&l_g5au +m5Sc@$,M45E:32/rV~> +, +272 766 69 52 /5R +$C +0noZ)?a[,Cs8VY%$ONn!^]432s8Uptp&=ilXfhZ3(e\Xs"gMCc[;/g:Ka]@`:]~> +, +283 821 0Q , +283 874 58 24 /1C +$C +3JIM5^K>7ns70`g:J^lfp]~> +, +283 901 0C , +283 959 58 46 /5V +$C +3k<%SA4"pPf"SoXJ,f2m5QBjKn%\>kpj_2Y_o'PU7f~> +, +283 1008 5N , +283 1057 5F , +272 1149 0K , +272 1193 70 40 /1G +$C +.UpJ.!XAufi +, +272 1264 69 70 /5Z +$C +$i6lW$5=mbTV2qs#Sm[ZKGG+M'#KA/KmY#Q5e%rH5e'+!6#_BoK&D7>!o\AHr'(G(%u)/7*t1=A +4r?I#Hl1hZL@E*sK>S3.)MT:A@Dd_Q%NHHJE8e^H^Yf~> +, +283 1336 59 55 /1K +$C +3WK*QODN>U#J<4ujbg_RkVpERn*b8Rs8Pafbq?`Am4F!q_(8V&((2B($X3SG~> +, +283 1396 59 54 /6D +$C +,f@\Wd0'pjFQ!I"SN7n()Bm;8":a;pTUX;S:$LnLI6ZsTs%i[ps8L[U^TXg>h66e2>E7T,f(ooM +FnjNk\6iUY~> +, +283 1452 1K , +283 1512 59 36 /1O +$C +-#4^POEVk((h!Ug+P9Z2<8O*kH6_b72fs[jVu(>_mJDD1If&#>YC3j][[4DV@;IhORp4hRCBi:] ++DNGU0Mh~> +, +283 1554 5V , +272 1638 0K , +272 1680 71 43 /6H +$C ++p(J(6kFGW:nF8IVl*K\O]irbILps[%_?PblUh*?I=&0`lh%p*P2;O*h#skED'5+V/e&qgK2>2` +^8M[L&?T-?X[ +, +272 1730 6H , +272 1781 70 43 /1S +$C +,%0sE"lOsK#7*:a&9R0a#3"MB-,\+7*H=-MU=4aSIX^+r7eZX]? +dgRg=(CbO<9n0CWCJAcbLg[$[/-~> +, +2433 6608 48 26 /6L +$C +29H4/5q##K#uY%KH:`EdV +, +2433 6637 49 28 /1W +$C ++Tb3McNG41kVu=n8t?SAn:PfoI6DJ?s6X.$\7'1j9#sViMR +, +2449 6682 32 46 /6P +$C +5*u4K4a\-%C!tH.-e3\GL9,WDFE&"c/UD4/rUA?uG6]7;p]~> +, +2449 6728 6P , +2433 6774 49 17 /2A +$C +"U,&5":>DKU]c8Q":>DK&1AYt6ofdK@'E`]~> +, +2449 6794 2R , +2449 6816 33 23 /2X +$C ++bt^\';n:0q9W5^$P-OSh08VnqtoZrr+gVi=%_^EV%A6/~> +, +2449 6842 33 24 /5R +$C +3f=7`+Q5A'8oFhAdX"]dea),ll[=CY%^)-jksI`?)Lq~> +, +2473 6870 16 9 /6T +$X +%KIRO56F+P56a=l+8?rI#Cl~> +, +2433 6900 49 24 /2E +$C +,,I=36,F'j9f`_G]P*qK$+(7l#DDbZS#Z2>Dr9%24jfh&Xk"=\[BWCZ[[=*i6OB^!$n)~> +, +2449 6943 6P , +2449 6990 6P , +2433 7036 2A , +2449 7053 6P , +2441 7100 41 41 /6X +$C +-EHT^_o'C.iSio=4Tbr,%u)-VLCh;>%N'.n_ZpX*YY[VP"U#/D:dCi,";_1K@0OIK`%2Z>$X3CW~> +, +cleartomark end end pagesave restore showpage +%%PageTrailer %%Trailer %%Pages: 1 +grestore +grestore +grestore diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/doc/wug-src/wug0.tex wfdb-10.3.12/doc/wug-src/wug0.tex --- wfdb-10.3.11/doc/wug-src/wug0.tex 2003-08-03 20:17:06.000000000 -0400 +++ wfdb-10.3.12/doc/wug-src/wug0.tex 2004-03-08 17:59:07.000000000 -0500 @@ -57,7 +57,7 @@ \pagestyle{empty} \vspace*{\fill} \noindent -Copyright \copyright 1992 -- 2003 George B. Moody +Copyright \copyright 1992 -- 2004 George B. Moody \vspace{1 in} \noindent @@ -1012,7 +1012,8 @@ appear before continuing. The output will appear as in figure~\ref{fig:chart1}. \begin{figure} -\fbox{\centerline{\epsfig{file=chart1,angle=-90,width=.9\linewidth}}} +\fbox{\centerline{\epsfig{file=chart1,width=.9\linewidth}}} +%\fbox{\centerline{\epsfig{file=chart1,angle=-90,width=.9\linewidth}}} % This figure was produced in ``landscape'' mode. To print it % properly in portrait mode, it must be rotated by -90 degrees % *before* scaling it. @@ -3647,8 +3648,8 @@ \item[{\tt Wave.View.{\it showoption}}] These resources specify which of the {\sf Show:} options at the top of the {\sf View} window are enabled by default. {\it showoption} is one of {\tt -Subtype}, {\tt Chan}, {\tt Num}, {\tt Aux}, {\tt Markers}, {\tt Signal -Names}, {\tt Baselines}, or {\tt Level}. The values of these +Subtype}, {\tt Chan}, {\tt Num}, {\tt Aux}, {\tt Markers}, {\tt SignalNames}, +{\tt Baselines}, or {\tt Level}. The values of these resources are `{\tt True}' or `{\tt False}'. \index{amplitude scale} @@ -3658,9 +3659,9 @@ corresponding {\sf View} menus, where the top item on each menu is in position 0, the one below it is in position 1, etc. {\it menuname} is one of {\tt TimeScale}, {\tt AmplitudeScale}, {\tt SignalMode}, {\tt -AnnotationMode}, {\tt TimeMode}, or {\tt GridMode}. For example, to set the -initial time scale to 50 mm/sec (the item at position 6 in the -\amenubutton{Time Scale:} menu), set {\tt Wave.View.TimeScale} to 6. +AnnotationMode}, {\tt AnnotationOverlap}, {\tt TimeMode}, or {\tt GridMode}. +For example, to set the initial time scale to 50 mm/sec (the item at position +13 in the \amenubutton{Time Scale:} menu), set {\tt Wave.View.TimeScale} to 13. \item[{\tt Wave.View.CoarseGridMode}] This resource specifies the initial grid display mode to be used at highly @@ -3671,7 +3672,7 @@ \item[{\tt Wave.View.CoarseTimeScale}] This resource specifies the initial time scale to be used for low-rate records (those sampled at 10 Hz per signal or less). The possible values are -the same as those for {\tt Wave.View.TimeScale}. The default is 2 +the same as those for {\tt Wave.View.TimeScale}. The default is 5 (corresponding to 5 mm per minute). \end{description} diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/lib/wfdb.h0 wfdb-10.3.12/lib/wfdb.h0 --- wfdb-10.3.11/lib/wfdb.h0 2003-09-15 09:50:58.000000000 -0400 +++ wfdb-10.3.12/lib/wfdb.h0 2004-03-05 10:31:50.000000000 -0500 @@ -1,10 +1,10 @@ /* file: wfdb.h G. Moody 13 June 1983 - Last revised: 15 September 2003 wfdblib 10.3.11 + Last revised: 5 March 2004 wfdblib 10.3.12 WFDB library type, constant, structure, and function interface definitions _______________________________________________________________________________ wfdb: a library for reading and writing annotated waveforms (time series data) -Copyright (C) 2003 George B. Moody +Copyright (C) 1983-2004 George B. Moody This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free @@ -33,7 +33,7 @@ /* WFDB library version. */ #define WFDB_MAJOR 10 #define WFDB_MINOR 3 -#define WFDB_RELEASE 11 +#define WFDB_RELEASE 12 #define WFDB_NETFILES 1 /* if 1, library includes code for HTTP, FTP clients */ /* Determine what type of compiler is being used. */ @@ -345,7 +345,6 @@ The ANSI/ISO C standard requires conforming compilers to predefine __STDC__. Non-conforming compilers for MS-Windows may or may not predefine _WINDOWS; if you use such a compiler, you may need to define _WINDOWS manually. */ - #if defined(__STDC__) || defined(_WINDOWS) # include #else diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/lib/wfdbio.c wfdb-10.3.12/lib/wfdbio.c --- wfdb-10.3.11/lib/wfdbio.c 2003-08-03 21:11:17.000000000 -0400 +++ wfdb-10.3.12/lib/wfdbio.c 2004-03-05 13:17:44.000000000 -0500 @@ -1,10 +1,10 @@ /* file: wfdbio.c G. Moody 18 November 1988 - Last revised: 16 July 2003 wfdblib 10.3.9 + Last revised: 5 March 2004 wfdblib 10.3.12 Low-level I/O functions for the WFDB library _______________________________________________________________________________ wfdb: a library for reading and writing annotated waveforms (time series data) -Copyright (C) 2003 George B. Moody +Copyright (C) 1988-2004 George B. Moody This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free @@ -373,6 +373,7 @@ char *q; int current_type, found_end; struct wfdb_path_component *c0 = NULL, *c1 = wfdb_path_list; + static first_call = 1; /* First, free the existing wfdb_path_list, if any. */ wfdb_free_path_list(); @@ -381,7 +382,10 @@ if (p == NULL) return (0); /* Register the cleanup function so that it is invoked on exit. */ - atexit(wfdb_free_path_list); + if (first_call) { + atexit(wfdb_free_path_list); + first_call = 0; + } q = p; /* Now construct the wfdb_path_list from the contents of p. */ @@ -1612,9 +1616,12 @@ for (p = fname; *p; p++) if (*p == '/') { /* only Unix-style directory separators */ *p = '\0'; - stat = mkdir(fname, 0755); - /* The '0755' means that (under Unix), the directory will - be world-readable, but writeable only by the owner. */ + stat = MKDIR(fname, 0755); + /* MKDIR is defined as mkdir in wfdblib.h; depending on + the platform, mkdir may take two arguments (POSIX), or + only the first argument (MS-Windows without Cygwin). + The '0755' means that (under Unix), the directory will + be world-readable, but writable only by the owner. */ *p = '/'; } /* At this point, we may have created one or more directories. diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/lib/wfdblib.h0 wfdb-10.3.12/lib/wfdblib.h0 --- wfdb-10.3.11/lib/wfdblib.h0 2003-04-07 10:31:46.000000000 -0400 +++ wfdb-10.3.12/lib/wfdblib.h0 2004-03-05 12:08:34.000000000 -0500 @@ -1,10 +1,10 @@ /* file: wfdblib.h G. Moody 13 April 1989 - Last revised: 7 April 2003 wfdblib 10.3.6 + Last revised: 5 March 2004 wfdblib 10.3.12 External definitions for WFDB library private functions _______________________________________________________________________________ wfdb: a library for reading and writing annotated waveforms (time series data) -Copyright (C) 2002 George B. Moody +Copyright (C) 1989-2004 George B. Moody This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free @@ -33,7 +33,24 @@ #include "wfdb.h" -/* Define the symbol _WINDLL if this library is to be compiled as a Microsoft +/* MS-Windows users are strongly advised to compile the WFDB library using the + free Cygwin tools (www.cygwin.com). Use of other compilers may be possible + but is not supported. + + Cygwin users: Note that the symbols _WINDOWS, _WINDLL, WIN32, etc. are + not defined and should not be defined when compiling the WFDB software + package using gcc. Cygwin's POSIX emulation layer avoids the need for + the various workarounds required when using other compilers under + MS-Windows. + + If you are using another MS-Windows compiler, you will need these + workarounds, and you should be careful to define _WINDOWS, _WINDLL, and + _WIN32 as appropriate. Older versions of the WFDB library were successfully + compiled under MS-DOS and under 16-bit versions of MS-Windows, but the + conditionally compiled code written to support these platforms has not been + tested recently. + + Define the symbol _WINDLL if this library is to be compiled as a Microsoft Windows DLL. Note that a DLL's private functions (such as those listed below) *cannot* be called by Windows user programs, which can call only DLL functions that use the Pascal calling interface (see wfdb.h). To compile @@ -57,10 +74,6 @@ #define _WIN16 #endif -#if defined(_WINDLL) -#define WFDBANNSORT 0 -#endif - /* Define the symbol MSDOS if this library is to be used under MS-DOS or MS Windows. Note: MSDOS is predefined by some MS-DOS and MS Windows compilers. */ @@ -125,8 +138,14 @@ environment variable WFDBANNSORT specifies if wfdbquit() should attempt to sort annotations in any output annotation files before closing them (it does this if WFDBANNSORT is non-zero, or if WFDBANNSORT is not set, and - DEFWFDBANNSORT is non-zero). */ + DEFWFDBANNSORT is non-zero). Sorting is done by invoking 'sortann' (see + ../app/sortann.c) as a separate process; since this cannot be done from + an MS-Windows DLL, sorting is disabled by default in this case. */ +#if defined(_WINDLL) +#define DEFWFDBANNSORT 0 +#else #define DEFWFDBANNSORT 1 +#endif /* When reading multifrequency records, getvec() can operate in two modes: WFDB_LOWRES (returning one sample per signal per frame), or WFDB_HIGHRES @@ -249,7 +268,6 @@ #endif #ifdef _WINDOWS -#include /* needed for mkdir() declaration */ #ifndef _WIN32 /* these definitions are needed for 16-bit MS Windows only */ #define strcat _fstrcat #define strchr _fstrchr @@ -261,6 +279,17 @@ #endif #endif +/* Define MKDIR as either the one-argument mkdir() (for the native MSDOS and + MS-Windows API) or the standard two-argument mkdir() (everywhere else). */ +#ifndef MKDIR +#ifdef MSDOS +#include +#define MKDIR(D,P) mkdir((D)) +#else +#define MKDIR(D,P) mkdir((D),(P)) +#endif +#endif + /* Define function prototypes for ANSI C, MS Windows C, and C++ compilers */ #if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus) || defined(_WINDOWS) #if defined(__cplusplus) || defined(c_plusplus) diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/NEWS wfdb-10.3.12/NEWS --- wfdb-10.3.11/NEWS 2003-10-17 11:02:55.000000000 -0400 +++ wfdb-10.3.12/NEWS 2004-03-08 14:39:05.000000000 -0500 @@ -1,3 +1,73 @@ +10.3.12: + A beta release of the WFDB_tools package is now available for testing. + This package allows Matlab R13 users to use the WFDB library to read + and write digitized signals and annotations such as those available + from PhysioBank. The WFDB_tools functions are wrappers for the WFDB + library, so that Matlab users can access the full range of capabilities + offered by current and future versions of the WFDB library, including + transparent access to data in a large and growing number of formats, + whether stored locally or on remote web servers. The package was + written and contributed by Jonas Carlson. It has been tested + successfully under GNU/Linux and MS-Windows, and it should be portable + to MacOS X and other platforms supported by Matlab R13. Look for the + WFDB_tools package on PhysioNet. + + Thanks to instructions provided by David Linker, and a port of the + XView library by Logan Donaldson, WAVE can now be used under Mac OS X. + No code changes were necessary; it just works! + + It has long been possible to use WAVE to view sequence of the 'num' + fields in an annotation file as a signal. This is useful, for example, + for visualizing a series of measurements applied to each beat in an + ECG. WAVE now supports changing the scale of the displayed signal, + using the same controls as for ordinary signals. Also, it is possible + to define default scales for different types of measurements in the + WFDB calibration database (data/wfdbcal), using the annotator name as + the signal type. + + Some recent GNU/Linux distributions use a default color for window + backgrounds that makes WAVE's grid invisible. WAVE's resource + (preference) file (wave/Wave.res) has been updated to work around this + problem; it also includes documentation of all other WAVE-specific + settings that can be controlled via this file. Portions of the WAVE + User's Guide related to this subject have also been updated. + + Okko Willeboordse pointed out an incompatibility between the native + MS-Windows API and the ANSI/ISO C library function 'mkdir', which is + used by the WFDB library. This does not present a problem when + compiling the WFDB library using the supported Cygwin/gcc compiler + under MS-Windows, nor does any related problem occur on any other + platform. It should now be a little easier to compile the WFDB library + using unsupported compilers, thanks to a new MKDIR macro that hides + the incompatibility (see lib/wfdblib.h0). + + Piotr Wlodarek initiated a discussion about memory leaks in the WFDB + library, citing as an example the 'trivial example program in C' from + the WFDB Programmer's Guide, which does not free memory it allocates + in isigopen() when reading the signal specifications. This problem + can be avoided by invoking wfdbquit() in the example program, just + before exiting. Further discussion of this point has been added to + the WFDB Programmer's Guide following the presentation of the 'trivial + example', and in the description of wfdbquit(). + + Thomas Heldt provided a sample input for `ihr', in which a misplaced + annotation evoked a lengthy interval during which valid inputs were + rejected. This example stimulated a modification to the predictor + used by ihr for outlier detection, in order to avoid such behavior; + see comments in app/ihr.c for details. + + Using rdsamp's -v option causes it to print column headings based on + the descriptions of the signals in the input record. The default + signal description as supplied by the WFDB library ('record XXX, + signal N') is abbreviated to 'sig N', but previous versions did not + do this consistently. + + Gains and scale factors can now be chosen independently for each + signal when using wrsamp. + + The man page for xform (doc/wag-src/xform.1) now documents the -S + option (thanks to Lucy Gibson for pointing out the omission). + 10.3.11: Isaac Henry provided a fix for 'configure' to avoid a problem that may occur in a non-standard Cygwin installation. diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/wave/annot.c wfdb-10.3.12/wave/annot.c --- wfdb-10.3.11/wave/annot.c 2001-10-12 13:36:44.000000000 -0400 +++ wfdb-10.3.12/wave/annot.c 2004-03-05 10:57:31.000000000 -0500 @@ -1,10 +1,10 @@ /* file: annot.c G. Moody 1 May 1990 - Last revised: 12 October 2001 + Last revised: 5 March 2004 Annotation list handling and display functions for WAVE ------------------------------------------------------------------------------- WAVE: Waveform analyzer, viewer, and editor -Copyright (C) 2001 George B. Moody +Copyright (C) 1990-2004 George B. Moody 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 @@ -385,7 +385,7 @@ y = ytop = abase; p = annstr(annp->this.anntyp); break; } if (ann_mode == 2 && y == abase) { - int yy = y + annp->this.num*vscale[0]; + int yy = y + annp->this.num*vscalea; if (xs >= 0) XDrawLine(display, xid, draw_ann, xs, ys, x, yy); diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/wave/init.c wfdb-10.3.12/wave/init.c --- wfdb-10.3.11/wave/init.c 2002-12-04 13:56:02.000000000 -0500 +++ wfdb-10.3.12/wave/init.c 2004-03-05 11:33:27.000000000 -0500 @@ -1,10 +1,10 @@ /* file: init.c G. Moody 1 May 1990 - Last revised: 4 December 2002 + Last revised: 5 March 2004 Initialization functions for WAVE ------------------------------------------------------------------------------- WAVE: Waveform analyzer, viewer, and editor -Copyright (C) 2002 George B. Moody +Copyright (C) 1990-2004 George B. Moody 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 @@ -267,7 +267,7 @@ extern char *getenv(); struct WFDB_calinfo ci; - /* Vscale is a multiplicative scale factor that converts sample values to + /* vscale is a multiplicative scale factor that converts sample values to window ordinates. Since window ordinates are inverted, vscale includes a factor of -1. */ if (vscale[0] == 0.0) { @@ -292,7 +292,17 @@ } } } - /* Tscale is a multiplicative scale factor that converts sample intervals + /* vscalea is used in the same way as vscale, but only when displaying + the annotation 'num' fields as a signal. */ + vscalea = - millivolts(1); + if (af.name && getcal(af.name, "units", &ci) == 0 && ci.scale != 0) + vscalea /= ci.scale; + else if (getcal("ann", "units", &ci) == 0 && ci.scale != 0) + vscalea /= ci.scale; + else + vscalea /= WFDB_DEFGAIN; + + /* tscale is a multiplicative scale factor that converts sample intervals to window abscissas. */ if (freq == 0.0) freq = WFDB_DEFFREQ; nsamp = canvas_width_sec * freq; diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/wave/wave.h wfdb-10.3.12/wave/wave.h --- wfdb-10.3.11/wave/wave.h 2003-07-12 02:05:24.000000000 -0400 +++ wfdb-10.3.12/wave/wave.h 2004-03-05 10:57:13.000000000 -0500 @@ -1,10 +1,10 @@ /* file: wave.h G. Moody 26 April 1990 - Last revised: 14 October 2001 + Last revised: 5 March 2004 Constants, macros, global variables, and function prototypes for WAVE ------------------------------------------------------------------------------- WAVE: Waveform analyzer, viewer, and editor -Copyright (C) 2001 George B. Moody +Copyright (C) 1990-2004 George B. Moody 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 @@ -140,6 +140,8 @@ COMMON double *vscale; /* amplitude scales for each signal (pixels/adu) */ +COMMON double vscalea; /* amplitude scale for annotation num + fields shown as a signal */ COMMON int *base; /* baseline ordinate for each signal */ COMMON int *dc_coupled; /* if non-zero, signal is DC coupled (i.e., has a defined baseline) */ diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/wave/Wave.res wfdb-10.3.12/wave/Wave.res --- wfdb-10.3.11/wave/Wave.res 1999-06-24 11:38:28.000000000 -0400 +++ wfdb-10.3.12/wave/Wave.res 2004-03-08 14:06:11.000000000 -0500 @@ -1,2 +1,92 @@ -*ECGWindow.font: lucidasans-14 -*dpi: 100x100 +! file: Wave.res G. Moody April 1990 +! Last revised: 8 March 2004 +! X11 resources for WAVE +! +! You can control many aspects of WAVE's appearance and behavior by setting +! its X11 resources. This file illustrates how each of the WAVE-specific +! resources can be set. To make these settings effective, the contents of +! this file should be included in a file named .Xdefaults in your home +! directory. If you use other X11 applications, this file may exist already, +! and it may contain resources to be shared by some or all X11 applications. +! For this reason, you should be careful not to replace .Xdefaults when you +! add material from this file to it. +! +! This file can also be installed as /usr/lib/X11/app-defaults/Wave (and in +! this location, its contents can be shared by all users). + +! If you make changes in .Xdefaults or /usr/lib/X11/app-defaults/Wave while +! WAVE is running, you will need to restart WAVE in order to see the effects +! of your changes. It may also be necessary to force the resource database +! to be reread, either by logging out and in again, or using a command such as: +! xrdb -merge ~/.Xdefaults + +! ----------------------------------------------------------------------------- + +! Here are two WAVE resources that most users will want to set (although you +! may prefer a different setting than those shown here). + +Wave.SignalWindow.font: lucidasans-bold-14 +Wave*background: white + +! ----------------------------------------------------------------------------- + +! The remainder of this file contains a listing of all WAVE-specific X11 +! resources, illustrating their default settings. For further information, +! see 'X11 resources for WAVE' in the WAVE User's Guide. If you wish to change +! any of the defaults, remove the 'comment.' at the beginning of the +! appropriate line, and change the setting as desired. WAVE should be tolerant +! of most incorrect settings, but it is possible that changing something below +! may make WAVE temporarily unusable. If this happens, simply undo the last +! change(s) you made and run WAVE again. +! +! Since WAVE is built using the XView toolkit, its appearance and behavior can +! also be modified using many of the generic XView X11 resources; for details, +! see http://www.physionet.org/physiotools/wag/xview-7.htm . +! +! Note that many X11 applications rewrite .Xdefaults if the user changes +! preferences within the application, and that any lines beginning with '!' +! will be removed when this happens. WAVE itself does this when you use +! the 'Save as new defaults' button in the 'View' panel. A simple way to +! comment out settings in .Xdefaults without risking their removal is to +! prefix the resource name with 'comment.', as below. + +comment.Wave.AllowDottedLines: true +comment.Wave.Anntab: /path/to/anntab +comment.Wave.Dpi: 100x100 +comment.Wave.GraphicsMode: 8 +comment.Wave.Scope.Color.Background: white +comment.Wave.Scope.Color.Foreground: blue +comment.Wave.Scope.Grey.Background: white +comment.Wave.Scope.Grey.Foreground: black +comment.Wave.Scope.Mono.Background: white +comment.Wave.SignalWindow.Color.Annotation: yellow green +comment.Wave.SignalWindow.Color.Background: white +comment.Wave.SignalWindow.Color.Cursor: orange red +comment.Wave.SignalWindow.Color.Grid: grey90 +comment.Wave.SignalWindow.Color.Signal: blue +comment.Wave.SignalWindow.Font: fixed +comment.Wave.SignalWindow.Grey.Annotation: grey25 +comment.Wave.SignalWindow.Grey.Background: white +comment.Wave.SignalWindow.Grey.Cursor: grey50 +comment.Wave.SignalWindow.Grey.Grid: grey75 +comment.Wave.SignalWindow.Grey.Signal: black +comment.Wave.SignalWindow.Height_mm: 120 +comment.Wave.SignalWindow.Mono.Background: white +comment.Wave.SignalWindow.Width_mm: 250 +comment.Wave.TextEditor: textedit +comment.Wave.View.AmplitudeScale: 3 +comment.Wave.View.AnnotationMode: 0 +comment.Wave.View.AnnotationOverlap: 0 +comment.Wave.View.Aux: false +comment.Wave.View.Baselines: false +comment.Wave.View.Chan: false +comment.Wave.View.CoarseGridMode: 5 +comment.Wave.View.CoarseTimeScale: 5 +comment.Wave.View.GridMode: 3 +comment.Wave.View.Level: false +comment.Wave.View.Markers: false +comment.Wave.View.Num: false +comment.Wave.View.SignalNames: false +comment.Wave.View.Subtype: false +comment.Wave.View.TimeMode: 0 +comment.Wave.View.TimeScale: 12 diff -Naur --exclude Makefile --exclude info wfdb-10.3.11/wfdb.spec wfdb-10.3.12/wfdb.spec --- wfdb-10.3.11/wfdb.spec 2003-03-19 16:17:06.000000000 -0500 +++ wfdb-10.3.12/wfdb.spec 2004-03-08 15:01:17.000000000 -0500 @@ -16,6 +16,9 @@ BuildRoot: /var/tmp/%{name}-root %changelog +* Mon Mar 8 2004 George B Moody +- added time2sec + * Wed Mar 19 2003 George B Moody - added --mandir to build, fixed linking in post @@ -64,7 +67,7 @@ %post /sbin/ldconfig -test -e /usr/lib/libwfdb.so.10 -a ! -e /usr/lib/libwfdb.so && ln -s /usr/lib/libwfdb.so.10 /usr/lib/libwfdb.so +test -e /usr/lib/libwfdb.so.10 -a ! -e /usr/lib/libwfdb.so && ln -sf /usr/lib/libwfdb.so.10 /usr/lib/libwfdb.so %postun -p /sbin/ldconfig @@ -175,6 +178,7 @@ %{_bindir}/sumann %{_bindir}/sumstats %{_bindir}/tach +%{_bindir}/time2sec %{_bindir}/url_view %{_bindir}/wabp %{_bindir}/wav2mit @@ -238,6 +242,3 @@ %doc doc/wag doc/wpg doc/wug - - -