From 24c8bcfe7f76b20124e2862ea050f815c0f768e7 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Tue, 14 Aug 2018 10:08:27 -0500 Subject: move everything to src directory --- Makefile | 30 - Record_Info.h | 1041 ---- calculate_limits.c | 318 -- db.c | 256 - db.h | 40 - dict.c | 1219 ----- dict.h | 190 - dqxx.c | 67 - dqxx.h | 68 - event.h | 23 - fit.c | 205 - fmacros.h | 61 - likelihood.c | 274 - likelihood.h | 16 - misc.c | 42 - misc.h | 10 - mt19937ar.c | 170 - mt19937ar.h | 30 - muE_water_liquid.txt | 157 - muon.c | 260 - muon.h | 11 - optics.c | 33 - optics.h | 6 - pack2b.c | 319 -- pack2b.h | 27 - pdg.c | 23 - pdg.h | 12 - pmt.c | 82 - pmt.h | 32 - pmt.txt | 9729 ------------------------------------ pmt_pcath_response.dat | 127 - quantum_efficiency.c | 125 - quantum_efficiency.h | 6 - random.c | 14 - random.h | 8 - scattering.c | 121 - scattering.h | 8 - siphash.c | 360 -- sno.h | 19 - sno_charge.c | 246 - sno_charge.h | 9 - solid_angle.c | 115 - solid_angle.h | 9 - src/DQXX_0000010000.dat | 11614 +++++++++++++++++++++++++++++++++++++++++++ src/Makefile | 30 + src/Record_Info.h | 1041 ++++ src/calculate_limits.c | 318 ++ src/db.c | 256 + src/db.h | 40 + src/dict.c | 1219 +++++ src/dict.h | 190 + src/dqxx.c | 67 + src/dqxx.h | 68 + src/event.h | 23 + src/fit.c | 205 + src/fmacros.h | 61 + src/likelihood.c | 274 + src/likelihood.h | 16 + src/misc.c | 42 + src/misc.h | 10 + src/mt19937ar.c | 170 + src/mt19937ar.h | 30 + src/muE_water_liquid.txt | 157 + src/muon.c | 260 + src/muon.h | 11 + src/optics.c | 33 + src/optics.h | 6 + src/pack2b.c | 319 ++ src/pack2b.h | 27 + src/pdg.c | 23 + src/pdg.h | 12 + src/pmt.c | 82 + src/pmt.h | 32 + src/pmt.txt | 9729 ++++++++++++++++++++++++++++++++++++ src/pmt_pcath_response.dat | 127 + src/quantum_efficiency.c | 125 + src/quantum_efficiency.h | 6 + src/random.c | 14 + src/random.h | 8 + src/scattering.c | 121 + src/scattering.h | 8 + src/siphash.c | 360 ++ src/sno.h | 19 + src/sno_charge.c | 246 + src/sno_charge.h | 9 + src/solid_angle.c | 115 + src/solid_angle.h | 9 + src/test-charge.c | 86 + src/test-likelihood.c | 193 + src/test-vector.c | 319 ++ src/test-zebra.c | 69 + src/test.c | 360 ++ src/vector.c | 26 + src/vector.h | 55 + src/zdab_utils.c | 199 + src/zdab_utils.h | 202 + src/zebra.c | 219 + src/zebra.h | 48 + test-charge.c | 86 - test-likelihood.c | 193 - test-vector.c | 319 -- test-zebra.c | 69 - test.c | 360 -- vector.c | 26 - vector.h | 55 - zdab_utils.c | 199 - zdab_utils.h | 202 - zebra.c | 219 - zebra.h | 48 - 109 files changed, 29308 insertions(+), 17694 deletions(-) delete mode 100644 Makefile delete mode 100644 Record_Info.h delete mode 100644 calculate_limits.c delete mode 100644 db.c delete mode 100644 db.h delete mode 100644 dict.c delete mode 100644 dict.h delete mode 100644 dqxx.c delete mode 100644 dqxx.h delete mode 100644 event.h delete mode 100644 fit.c delete mode 100644 fmacros.h delete mode 100644 likelihood.c delete mode 100644 likelihood.h delete mode 100644 misc.c delete mode 100644 misc.h delete mode 100755 mt19937ar.c delete mode 100644 mt19937ar.h delete mode 100644 muE_water_liquid.txt delete mode 100644 muon.c delete mode 100644 muon.h delete mode 100644 optics.c delete mode 100644 optics.h delete mode 100644 pack2b.c delete mode 100644 pack2b.h delete mode 100644 pdg.c delete mode 100644 pdg.h delete mode 100644 pmt.c delete mode 100644 pmt.h delete mode 100644 pmt.txt delete mode 100644 pmt_pcath_response.dat delete mode 100644 quantum_efficiency.c delete mode 100644 quantum_efficiency.h delete mode 100644 random.c delete mode 100644 random.h delete mode 100644 scattering.c delete mode 100644 scattering.h delete mode 100644 siphash.c delete mode 100644 sno.h delete mode 100644 sno_charge.c delete mode 100644 sno_charge.h delete mode 100644 solid_angle.c delete mode 100644 solid_angle.h create mode 100644 src/DQXX_0000010000.dat create mode 100644 src/Makefile create mode 100644 src/Record_Info.h create mode 100644 src/calculate_limits.c create mode 100644 src/db.c create mode 100644 src/db.h create mode 100644 src/dict.c create mode 100644 src/dict.h create mode 100644 src/dqxx.c create mode 100644 src/dqxx.h create mode 100644 src/event.h create mode 100644 src/fit.c create mode 100644 src/fmacros.h create mode 100644 src/likelihood.c create mode 100644 src/likelihood.h create mode 100644 src/misc.c create mode 100644 src/misc.h create mode 100755 src/mt19937ar.c create mode 100644 src/mt19937ar.h create mode 100644 src/muE_water_liquid.txt create mode 100644 src/muon.c create mode 100644 src/muon.h create mode 100644 src/optics.c create mode 100644 src/optics.h create mode 100644 src/pack2b.c create mode 100644 src/pack2b.h create mode 100644 src/pdg.c create mode 100644 src/pdg.h create mode 100644 src/pmt.c create mode 100644 src/pmt.h create mode 100644 src/pmt.txt create mode 100644 src/pmt_pcath_response.dat create mode 100644 src/quantum_efficiency.c create mode 100644 src/quantum_efficiency.h create mode 100644 src/random.c create mode 100644 src/random.h create mode 100644 src/scattering.c create mode 100644 src/scattering.h create mode 100644 src/siphash.c create mode 100644 src/sno.h create mode 100644 src/sno_charge.c create mode 100644 src/sno_charge.h create mode 100644 src/solid_angle.c create mode 100644 src/solid_angle.h create mode 100644 src/test-charge.c create mode 100644 src/test-likelihood.c create mode 100644 src/test-vector.c create mode 100644 src/test-zebra.c create mode 100644 src/test.c create mode 100644 src/vector.c create mode 100644 src/vector.h create mode 100644 src/zdab_utils.c create mode 100644 src/zdab_utils.h create mode 100644 src/zebra.c create mode 100644 src/zebra.h delete mode 100644 test-charge.c delete mode 100644 test-likelihood.c delete mode 100644 test-vector.c delete mode 100644 test-zebra.c delete mode 100644 test.c delete mode 100644 vector.c delete mode 100644 vector.h delete mode 100644 zdab_utils.c delete mode 100644 zdab_utils.h delete mode 100644 zebra.c delete mode 100644 zebra.h diff --git a/Makefile b/Makefile deleted file mode 100644 index 2359e66..0000000 --- a/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -CFLAGS=-O0 -Wall -g -DSWAP_BYTES -LDLIBS=-lm -lgsl -lgslcblas - -all: test test-vector test-likelihood fit test-charge - -Makefile.dep: - -$(CC) -MM *.c > Makefile.dep - --include Makefile.dep - -calculate_limits: calculate_limits.c - -solid_angle.o: solid_angle.c - -test: test.o solid_angle.o optics.o muon.o vector.o quantum_efficiency.o pdg.o scattering.o misc.o mt19937ar.o sno_charge.o - -test-vector: test-vector.o vector.o mt19937ar.o - -test-likelihood: test-likelihood.o muon.o random.o optics.o quantum_efficiency.o mt19937ar.o pdg.o vector.o solid_angle.o scattering.o - -test-charge: test-charge.o sno_charge.o misc.o - -test-zebra: test-zebra.o zebra.o pack2b.o - -fit: fit.o zebra.o likelihood.o pmt.o vector.o misc.o muon.o optics.o quantum_efficiency.o solid_angle.o pdg.o scattering.o zdab_utils.o pack2b.o sno_charge.o db.o dqxx.o dict.o siphash.o - -clean: - rm -f *.o calculate_limits test Makefile.dep - -.PHONY: all clean diff --git a/Record_Info.h b/Record_Info.h deleted file mode 100644 index 91e060f..0000000 --- a/Record_Info.h +++ /dev/null @@ -1,1041 +0,0 @@ -// -// File: Record_Info.h -// -// Description: SNO datastream record definitions -// -// Revisions: 02/21/03 - PH Combined varioius versions of this file so now the exact -// same file is used by the builder, SHaRC, xsnoed and QSNO. -// 03/03/03 - PH Changed PmtEventRecord definition so it is now -// swapped like a set of 32-bit integers. -// 07/13/04 - PH Added new NCD run mask bits -// -// Notes: For historical reasons, the structures used by SHaRC can be different -// from the ones written to the data stream, so be careful which one you -// are using! -// -#ifndef __RECORD_INFO_H__ -#define __RECORD_INFO_H__ - -#include - -/* version numbers... - * as of Feb 1997 (from UW) - */ -#define DAQ_CODE_VERSION 0 -#define RUN_RECORD_VERSION 0 -#define PMT_RECORD_VERSION 0 -#define TRIG_RECORD_VERSION 0 -#define PTK_RECORD_VERSIONS 0x50544B30 // 'PTK0' -#define DAQ_RECORD_VERSIONS 0x44415130 // 'DAQ0' - -#define WORD_SIZE(x) (sizeof(x)/sizeof(uint32_t)) - -// ------------------------------------------------------------------------------------- -// generic information for every header -// - preceeds ALL dispatcher records, and all records sent by SHaRC -// - not written to ZDAB files -// -typedef struct GenericRecordHeader { - uint32_t RecordID; - uint32_t RecordLength; // length of record to follow, - // NOT INCLUDING generic record header! - uint32_t RecordVersion; -} aGenericRecordHeader; - -#define HEADERSIZE sizeof( aGenericRecordHeader ) // 12 uint8_ts generic header. - -// ------------------------------------------------------------------------------------- -// SHaRC header for all manipulator records -// - -// local time structure -typedef struct { - uint8_t year; // last 2 digits of year - uint8_t month; // month of year (1->12) - uint8_t day; // day of month (1->31) - uint8_t daylightSavings; // 0 = standard time, 1 = daylight savings time - char timeZone; // hours from GMT (-11->11) (signed uint8_t!) - uint8_t hour; // hour of day (0->23) - uint8_t minute; // minute of hour (0->59) - uint8_t second; // second of minute (0->59) - uint32_t microsecond; // millionths of a second (0->999999) -} SDateTime; - -// header for all manipulator banks -typedef struct { - uint32_t instanceNumber; - uint32_t gtid_ref; // reference GTID for this event - SDateTime time; -} SManipHeader; - -// ------------------------------------------------------------------------------------- -// MAST record -// -#define MAST_RECORD 0x4d415354 // 'MAST' - -// MAST bank structure -typedef struct MastRecord { - float currentVersion; // current SNOMAN version - float originalVersion; // original SNOMAN version -} SBankMAST; - -// ------------------------------------------------------------------------------------- -// RHDR record -// -#define RHDR_RECORD 0x52484452 // 'RHDR' (as written to ZDAB file) -#define RUN_RECORD 0x52554E20 // 'RUN ' (as dispatched and sent by SHaRC) - -// RHDR bank structure -typedef struct RunRecord { - uint32_t Date; - uint32_t Time; - uint32_t DAQCodeVersion; - uint32_t RunNumber; - uint32_t CalibrationTrialNumber; - uint32_t SourceMask; // which sources in? - uint32_t RunMask; // run conditions -#ifdef __MWERKS__ - uint32_t GTCrateMask; // this run's GT crate mask -#else - uint32_t GTCrateMsk; // accomodate misspelling of this for backward compatibility -#endif - uint32_t FirstGTID; // first GTID of this run - uint32_t ValidGTID; // first valid GTID (after hardware changes have been made) - uint32_t Spares[8]; // spares as per nick's suggestion (Thanks Nick!) -} SBankRHDR, aRunRecord; - -// SourceMask... -#define NO_SRC 0x00000UL -#define ROTATING_SRC 0x00001UL -#define LASER_SRC 0x00002UL -#define SONO_SRC 0x00004UL -#define N16_SRC 0x00008UL -#define N17_SRC 0x00010UL -#define NAI_SRC 0x00020UL -#define LI8_SRC 0x00040UL -#define PT_SRC 0x00080UL -#define CF_HI_SRC 0x00100UL -#define CF_LO_SRC 0x00200UL -#define U_SRC 0x00400UL -#define TH_SRC 0x00800UL -#define P_LI7_SRC 0x01000UL -#define WATER_SAMPLER 0x02000UL -#define PROP_COUNTER_SRC 0x04000UL -#define SINGLE_NCD_SRC 0x08000UL -#define SELF_CALIB_SRC 0x10000UL -#define Y88_SRC 0x20000UL - -// RunMask... -#define NEUTRINO_RUN 0x0001UL -#define SOURCE_RUN 0x0002UL -#define CALIB_RUN 0x0004UL -#define NCD_RUN 0x0008UL -#define SALT_RUN 0x0010UL -#define POISON_RUN 0x0020UL -#define PARTIAL_FILL_RUN 0x0040UL -#define AIR_FILL_RUN 0x0080UL -#define D2O_RUN 0x0100UL -#define H2O_RUN 0x0200UL -#define DCR_ACTIVITY_RUN 0x0400UL -#define TRANSITION_RUN 0x0800UL -#define SOURCE_MOVING_RUN 0x1000UL -#define COMP_COILS_RUN 0x2000UL -#define ECA_RUN 0x4000UL -#define DIAGNOSTIC_RUN 0x8000UL -#define SUPERNOVA_RUN 0x10000UL -#define MAINTENANCE_RUN 0x20000UL -#define PCA_RUN 0x40000UL -#define EXPERIMENTAL_RUN 0x80000UL -#define D2O_CIRC_RUN 0x100000UL -#define BUBBLERS_RUN 0x200000UL -#define PMT_OFF_RUN 0x01000000UL -#define NCD_OFF_RUN 0x02000000UL -#define NCD_ECA_RUN 0x04000000UL - -// ------------------------------------------------------------------------------------- -// TRIG record -// -#define TRIG_RECORD 0x54524947 // 'TRIG' - -// TRIG bank structure -typedef struct TriggerInfo { - uint32_t TriggerMask; // which triggers were set? - uint32_t n100lo; // trigger Threshold settings - uint32_t n100med; // these are longs cuz Josh is a weenie. - uint32_t n100hi; - uint32_t n20; - uint32_t n20lb; - uint32_t esumlo; - uint32_t esumhi; - uint32_t owln; - uint32_t owlelo; - uint32_t owlehi; - uint32_t n100lo_zero; // trigger Threshold zeroes - uint32_t n100med_zero; - uint32_t n100hi_zero; - uint32_t n20_zero; - uint32_t n20lb_zero; - uint32_t esumlo_zero; - uint32_t esumhi_zero; - uint32_t owln_zero; - uint32_t owlelo_zero; - uint32_t owlehi_zero; - uint32_t PulserRate; // MTC local pulser - uint32_t ControlRegister; // MTC control register status - uint32_t reg_LockoutWidth; // min. time btwn global triggers - uint32_t reg_Prescale; // how many nhit_100_lo triggers to take - uint32_t GTID; // to keep track of where I am in the world -} SBankTRIG, aTriggerInfo, *aTriggerInfoPtr; - -// TriggerMask... -#define TRIG_NHIT_100_LO 0x00000001 -#define TRIG_NHIT_100_MED 0x00000002 -#define TRIG_NHIT_100_HI 0x00000004 -#define TRIG_NHIT_20 0x00000008 -#define TRIG_NHIT_20_LB 0x00000010 -#define TRIG_ESUM_LO 0x00000020 -#define TRIG_ESUM_HI 0x00000040 -#define TRIG_OWLN 0x00000080 -#define TRIG_OWLE_LO 0x00000100 -#define TRIG_OWLE_HI 0x00000200 -#define TRIG_PULSE_GT 0x00000400 -#define TRIG_PRESCALE 0x00000800 -#define TRIG_PEDESTAL 0x00001000 -#define TRIG_PONG 0x00002000 -#define TRIG_SYNC 0x00004000 -#define TRIG_EXT_ASYNC 0x00008000 -#define TRIG_HYDROPHONE 0x00010000 -#define TRIG_EXT3 0x00020000 -#define TRIG_EXT4 0x00040000 -#define TRIG_EXT5 0x00080000 -#define TRIG_EXT6 0x00100000 -#define TRIG_NCD_SHAPER 0x00200000 -#define TRIG_EXT8 0x00400000 -#define TRIG_SPECIAL_RAW 0x00800000 -#define TRIG_NCD_MUX 0x01000000 -#define TRIG_SOFT_GT 0x02000000 - -// ------------------------------------------------------------------------------------- -// EPED record -// -#define EPED_RECORD 0x45504544 // 'EPED' - -// EPED bank structure (as seen by SNOMAN) -typedef struct EpedRecord { - uint32_t ped_width; - uint32_t ped_delay_coarse; - uint32_t ped_delay_fine; - uint32_t qinj_dacsetting; - uint32_t halfCrateID; - uint32_t CalibrationType; - uint32_t GTID; - uint32_t Flag; -} SBankEPED; - -// EPED record as sent by SHaRC -// (be very careful here! for backward compatibility this is also -// defined as EPEDRecord as used by SHaRC. Not to be confused with EpedRecord.) -typedef struct EPEDRecord { - uint32_t Time; // ptk used instead of aDate_Time - uint16_t CalibrationType; - uint8_t halfCrateID; // which 1/2 crate is enabled for pedestals - uint8_t reg_PedestalWidth; // width of pedestal pulse for Qinj - uint8_t reg_Ped_GTDel_Coarse; - uint8_t reg_Ped_GTDel_Fine; // pedestal delay for T slopes - int16_t Qinj_dacsetting; // DAC setting for Qinj - uint32_t MTCD_csr; - uint32_t GTID; // GT Id validity range - uint32_t Flag; // start/stop flag - uint32_t RunNumber; // current run number - uint32_t Spares[5]; -} SHaRC_BankEPED; - -// CalibrationType... -#define EPED_Q_SLOPE_RUN 1 -#define EPED_T_SLOPE_RUN 2 -#define EPED_PED_RUN 3 -#define EPED_SLOWPED_RUN 4 - -// Bit mask in halfCrateID... -#define EPED_FIRST_HALF (uint8_t) 0 -#define EPED_SECOND_HALF (uint8_t) 0x80U - -// Flag... -#define EPED_START_CAL 1ul // start of cali run -#define EPED_CHANGE_CAL 2ul // change of same -#define EPED_STOP_CAL 3ul // stop of same, crate -#define EPED_END_CAL 4ul // end of run, all crates - -// ------------------------------------------------------------------------------------- -// VTHR record -// -#define VTHR_RECORD 0x56544852 // 'VTHR' - -// VTHR bank structure -typedef struct VThresholdRecord { - uint32_t GTID; // GTID - uint32_t ncrates; // number of crates = 19 for SNODAQ - uint32_t null2; // these are longs cuz Josh is a weenie. - uint32_t null3; - uint32_t null4; - uint32_t null5; - uint32_t null6; - uint32_t null7; - uint32_t null8; - uint32_t null9; - unsigned char theData[19*16*32]; -} SBankVTHR; - -// ------------------------------------------------------------------------------------- -// CAST record -// -#define CAST_RECORD 0x43415354 // 'CAST' -#define CLST_RECORD 0x434C5354 // 'CLST' - obsolete - -#define kMaxManipulatorRopes 6 - -// manipulator rope structure -typedef struct ManipRopeStatus { - uint32_t ropeID; // EManipulatorRopeID - float length; - float targetLength; - float velocity; - float tension; - float encoderError; - float spares[2]; -} aManipRopeStatus; - -// CAST bank structure -typedef struct ManipStatus { - uint32_t sourceID; - uint32_t status; - uint32_t numRopes; - float position[3]; // x, y, z position - float destination[3]; - float positionError; - float sourceOffset[3];// PH 2018-06-20 (was obsoletePosErr) - float orientation; // source orientation (0=unknown, 1=north...) - float spare; - uint32_t tail; - aManipRopeStatus ropeStatus[kMaxManipulatorRopes]; - float spare2[23]; -} SBankCAST; - -// SHaRC CAST bank structure -typedef struct { - uint32_t sourceID; - uint32_t status; - uint32_t numRopes; - float position[3]; // x, y, z position - float destination[3]; - float positionError; - float obsoletePosErr[3]; - float orientation; // source orientation (0=unknown, 1=north...) - float spare; - uint32_t tail; - aManipRopeStatus ropeStatus[4]; -} SHaRC_BankCAST; - -// status... -enum EManipulatorStatus { - kStoppedNone = 1, - kStoppedLowTension, - kStoppedHighTension, - kStoppedEndpoint, - kStoppedStuck, - kStoppedNetForce, - kStoppedAxisError, - kMovingDirect, - kMovingIdle, - kMovingAbort -}; - -// ropeID... -enum EManipulatorRopeID { - NorthRope = 1, - SouthRope, - EastRope, - WestRope, - CentralRope1, - CentralRope2, - CentralRope3, - GuideTubeRope1, - GuideTubeRope2, - GuideTubeRope3, - GuideTubeRope4, - GuideTubeRope5, - GuideTubeRope6, - GasUmbilical, - LaserUmbilical, - RotatingUmbilical -}; - -// ------------------------------------------------------------------------------------- -// CAAC record -// -#define CAAC_RECORD 0x43414143 // 'CAAC' -#define CLAC_RECORD 0x434C4143 // 'CLAC' - obsolete - -// CAAC bank structure -typedef struct AVStatus { - float position[3]; // x, y, z - float rotation[3]; // roll, pitch, yaw - float ropeLength[7]; // seven sense rope lengths - float spare[3]; -} SBankCAAC; - -// ------------------------------------------------------------------------------------- -// SOSA record -// -#define SOSA_RECORD 0x534F5341 // 'SOSA' - -// SOSA bank structure -typedef struct AcceleratorStatus { - uint32_t sourceID; - uint32_t acceleratorOn; - float targetVoltage; - float targetCurrent; - float anodeVoltage; - float anodeCurrent; - float getterVoltage; - float getterCurrent; - float direction[3]; - float spare; -} SBankSOSA; - -// ------------------------------------------------------------------------------------- -// SOSG record -// -#define SOSG_RECORD 0x534F5347 // 'SOSG' - -// SOSG bank structure -typedef struct GasStatus { - uint32_t sourceID; - uint32_t dtGeneratorOn; - float targetVerticalPosition; - float pressure1; - float pressure2; - float pressure3; - float pressure4; - float pressure5; - float pressure6; - float vacuum1; - float vacuum2; - float carbonDioxideFlowRate; - float heliumFlowRate; - float oxygenFlowRate; - float fastNeutronFlux; - float neutronRadiationMonitor; - float pmtVoltage; - float wireVoltage; - float direction[3]; - float spare[2]; -} SBankSOSG; - -// ------------------------------------------------------------------------------------- -// SOSL record -// -#define SOSL_RECORD 0x534F534C // 'SOSL' - -// SOSL bank structure -typedef struct LaserStatus { - uint32_t sourceID; - uint32_t status; - uint32_t dyeCellNumber; - uint32_t filterWheel1Position; - uint32_t filterWheel2Position; - uint32_t pmtVoltage; - float pressure1; - float pressure2; - float nitrogenFlowRate; - float direction[3]; - float spare; -} SBankSOSL; - -// ------------------------------------------------------------------------------------- -// SOSR record -// -#define SOSR_RECORD 0x534F5352 // 'SOSR' - -// SOSR bank structure -typedef struct RotatingStatus { - uint32_t sourceID; - float direction[3]; -} SBankSOSR; - - -// ------------------------------------------------------------------------------------- -// TASK record -// -#define TASK_RECORD 0x5441534B // 'TASK' - -// task record -- Task running record -typedef struct TASKRecord { - uint32_t Time; // ptk used instead of aDate_Time - uint32_t TasksRunning; //true if any task is running, false if none running. - uint32_t GTID; - uint32_t RunNumber; - uint32_t Spares[5]; -} SBankTASK; - -// ------------------------------------------------------------------------------------- -// ZDAB record (event record) -// -#define ZDAB_RECORD 0x5a444142 // 'ZDAB' (as written to ZDAB file) -#define PMT_RECORD 0x504d5420 // 'PMT ' (as dispatched and sent by SHaRC) - -/* - * pmt record -- variable-length record containing npmt*3 LW of FEC data. - * note: Generic Header length indicates only length of the pmt header, and - * DOES NOT include the hits! - * - * Also includes the following info, from ref_packer_zdab_pmt.f - * - * -> BEWARE: HERE, MSB is 32 ! ! ! ! <- - * Also, word number below is SNOMAN WORD NUMBER ONLY! - * - * o Event Header Record (one per event trigger): - * Number - * Name WORD LSB Pos. of Bits Description - * RECORD_TYPE 1 26 7 Record type (e.g. PMT, NCD, etc). - * MC_FLAG 1 25 1 0=Real event, 1= MC event. - * VER_NUM 1 17 8 ZDAB_PMT format number number. - * DATA_TYPE 1 1 16 Run Type (see id_run_types.doc). - * RUN_NUMBER 2 1 32 Run number. - * EV_NUMBER 3 1 32 Event number in this Run. - * DAQ_STATUS 4 17 16 DAQ status flags. - * NHITS 4 1 16 Number of fired PMT's. - * PCK_TYPE 5 29 4 MC packing type: - * 0= PMT info only - * 1= 0 plus source bank info - * 2= 1 plus jitter/cerenkov history - * CAL_TYPE 5 25 4 MC Calibration type: - * 0= simple calibration constants - * 1= full calibration constants - * - * ---- extended PmtEventRecord format (PH 02/25/99) ---- - * - * SUB_FIELD 5 24 1 0= No sub fields - * 1= Sub field to follow - * FIELD_LEN 5 1 23 Offset in 4-uint8_t words to first sub field - * (May be zero if no sub fields) - * - */ - -// put flags here, shifted to correct position. See above. -#define PMT_EVR_RECTYPE ( 0xA << 9 ) // see SNOMAN Docs for these -#define PMT_EVR_NOT_MC ( 0x0UL << 8 ) -#define PMT_EVR_ZDAB_VER ( 23UL << 0 ) -#define PMT_EVR_DATA_TYPE 0xB -#define PMT_EVR_DAQ_STAT 0xA -#define PMT_EVR_PCK_TYPE ( 0x00UL << 28 ) -#define PMT_MC_PCK_TYPE ( 0x01UL << 28 ) -#define PMT_JITTER_PCK_TYPE ( 0x02UL << 28 ) -#define PMT_EVR_CAL_TYPE ( 0x01UL << 24 ) - -#define PCK_TYPE_MASK ( 0x0fUL << 28 ) -#define CAL_TYPE_MASK ( 0x0fUL << 24 ) - -#ifdef SWAP_BYTES - -// FEC data as read out in 96-bit structure -typedef struct FECReadoutData { - // word 1 (starts from LSB): - unsigned GTID1 :16; // lower 16 bits - unsigned ChannelID :5; - unsigned CrateID :5; - unsigned BoardID :4; - unsigned CGT_ES16 :1; - unsigned CGT_ES24 :1; - - // word 2: - unsigned Qlx :11; - unsigned SignQlx :1; - unsigned CellID :4; - unsigned Qhs :11; - unsigned SignQhs :1; - unsigned MissedCount :1; - unsigned NC_CC :1; - unsigned LGI_Select :1; - unsigned Cmos_ES16 :1; - - // word 3 : - unsigned Qhl :11; - unsigned SignQhl :1; - unsigned GTID2 :4; // bits 17-20 - unsigned TAC :11; - unsigned SignTAC :1; - unsigned GTID3 :4; // bits 21-24 - -} aFECReadoutData, *aFECReadoutDataPtr; - -// Master Trigger Card data -typedef struct MTCReadoutData { - // word 0 - uint32_t Bc10_1 :32; - // word 1 - uint32_t Bc10_2 :21; - uint32_t Bc50_1 :11; - // word 2 - uint32_t Bc50_2 :32; - // word 3 - uint32_t BcGT :24; // LSB - unsigned Nhit_100_Lo :1; - unsigned Nhit_100_Med :1; - unsigned Nhit_100_Hi :1; - unsigned Nhit_20 :1; - unsigned Nhit_20_LB :1; - unsigned ESum_Lo :1; - unsigned ESum_Hi :1; - unsigned Owln :1; // MSB - - // word 4 - unsigned Owle_Lo :1; - unsigned Owle_Hi :1; - unsigned Pulse_GT :1; - unsigned Prescale :1; - unsigned Pedestal :1; - unsigned Pong :1; - unsigned Sync :1; - unsigned Ext_Async :1; - unsigned Hydrophone :1; - unsigned Ext_3 :1; - unsigned Ext_4 :1; - unsigned Ext_5 :1; - unsigned Ext_6 :1; - unsigned NCD_Shaper :1; - unsigned Ext_8 :1; - unsigned Special_Raw :1; - unsigned NCD_Mux :1; - unsigned Soft_GT :1; - unsigned Miss_Trig :1; - unsigned Peak :10; - unsigned Diff_1 :3; - - // word 5 - unsigned Diff_2 :7; - unsigned Int :10; - unsigned TestGT :1; - unsigned Test50 :1; - unsigned Test10 :1; - unsigned TestMem1 :1; - unsigned TestMem2 :1; - unsigned SynClr16 :1; - unsigned SynClr16_wo_TC16 :1; - unsigned SynClr24 :1; - unsigned SynClr24_wo_TC24 :1; - unsigned FIFOsNotAllEmpty :1; - unsigned FIFOsNotAllFull :1; - unsigned FIFOsAllFull :1; - unsigned Unused1 :1; - unsigned Unused2 :1; - unsigned Unused3 :1; - -} aMTCReadoutData, *aMTCReadoutDataPtr; - -#else // SWAP_BYTES - -// FEC data as read out in 96-bit structure -typedef struct FECReadoutData { - // word 1 (starts from MSB): - unsigned CGT_ES24 :1; - unsigned CGT_ES16 :1; - unsigned BoardID :4; - unsigned CrateID :5; - unsigned ChannelID :5; - unsigned GTID1 :16; // lower 16 bits - // word 2: - unsigned Cmos_ES16 :1; - unsigned LGI_Select :1; - unsigned NC_CC :1; - unsigned MissedCount :1; - unsigned SignQhs :1; - unsigned Qhs :11; - unsigned CellID :4; - unsigned SignQlx :1; - unsigned Qlx :11; - // word 3 : - unsigned GTID3 :4; // bits 21-24 - unsigned SignTAC :1; - unsigned TAC :11; - unsigned GTID2 :4; // bits 17-20 - unsigned SignQhl :1; - unsigned Qhl :11; -} aFECReadoutData, *aFECReadoutDataPtr; - -// Master Trigger Card data -typedef struct MTCReadoutData { - // word 0 - uint32_t Bc10_1 :32; - // word 1 - uint32_t Bc50_1 :11; - uint32_t Bc10_2 :21; - // word 2 - uint32_t Bc50_2 :32; - // word 3 - unsigned Owln :1; // MSB - unsigned ESum_Hi :1; - unsigned ESum_Lo :1; - unsigned Nhit_20_LB :1; - unsigned Nhit_20 :1; - unsigned Nhit_100_Hi :1; - unsigned Nhit_100_Med :1; - unsigned Nhit_100_Lo :1; - uint32_t BcGT :24; // LSB - // word 4 - unsigned Diff_1 :3; - unsigned Peak :10; - unsigned Miss_Trig :1; - unsigned Soft_GT :1; - unsigned NCD_Mux :1; - unsigned Special_Raw :1; - unsigned Ext_8 :1; - unsigned NCD_Shaper :1; - unsigned Ext_6 :1; - unsigned Ext_5 :1; - unsigned Ext_4 :1; - unsigned Ext_3 :1; - unsigned Hydrophone :1; - unsigned Ext_Async :1; - unsigned Sync :1; - unsigned Pong :1; - unsigned Pedestal :1; - unsigned Prescale :1; - unsigned Pulse_GT :1; - unsigned Owle_Hi :1; - unsigned Owle_Lo :1; - // word 5 - unsigned Unused3 :1; - unsigned Unused2 :1; - unsigned Unused1 :1; - unsigned FIFOsAllFull :1; - unsigned FIFOsNotAllFull :1; - unsigned FIFOsNotAllEmpty :1; - unsigned SynClr24_wo_TC24 :1; - unsigned SynClr24 :1; - unsigned SynClr16_wo_TC16 :1; - unsigned SynClr16 :1; - unsigned TestMem2 :1; - unsigned TestMem1 :1; - unsigned Test10 :1; - unsigned Test50 :1; - unsigned TestGT :1; - unsigned Int :10; - unsigned Diff_2 :7; -} aMTCReadoutData, *aMTCReadoutDataPtr; - -#endif // SWAP_BYTES - -// ZDAB bank structure -typedef struct PmtEventRecord { -#ifdef SWAP_BYTES - uint16_t DataType; - uint16_t PmtEventRecordInfo; -#else - uint16_t PmtEventRecordInfo; - uint16_t DataType; -#endif - uint32_t RunNumber; - uint32_t EvNumber; -#ifdef SWAP_BYTES - uint16_t NPmtHit; - uint16_t DaqStatus; // Now used to store sub-run number - PH -#else - uint16_t DaqStatus; // Now used to store sub-run number - PH - uint16_t NPmtHit; -#endif - uint32_t CalPckType; // lower 24 bits are now used for extended PmtEventRecord flags - aMTCReadoutData TriggerCardData; // 6 LW of MTC data - // FECReadoutData follows directly. -} SBankZDAB, aPmtEventRecord; - -// MCHeader - monte carlo event data if CAL_TYPE = 1 or 2 (one per event) -typedef struct MCHeader { - uint16_t mcVersion; // SNOMAN MC version number - uint16_t nVertices; // number of source vertices - uint32_t mcEvNumber; // MC event number - uint32_t julianDate; // Julian Date (01/01/75 = 1) - uint32_t sec; // universal time seconds - uint32_t nsec; // universal time nanoseconds - uint16_t Seed1; // first random number seed - uint16_t Seed2; // second random number seed - uint32_t randNum; // random number used -} aMCHeader; - -// MCData - monte carlo data (one per source vertex + hanging tracks) -typedef struct MCData { - uint32_t intType; // interaction type - uint16_t xPos; // vertex X position (32768 = 1000.0 cm) - uint16_t yPos; // vertex Y position - uint16_t zPos; // vertex X position - uint8_t nTracks; // number of tracks for this vertex - uint8_t vClass; // vertex class, (Pre)Source=(1)0 - uint32_t time0; // first word of double prec time - uint32_t time1; // second word of double prec time - uint16_t pType; // particle type - uint16_t pEnergy0; // first word of 32-bit energy (note: NOT on 32-bit boundary!) - uint16_t pEnergy1; // second word of 32-bit energy - uint16_t xDir; // track direction x-cosine (32768 = 1.0) - uint16_t yDir; // track direction x-cosine - uint16_t zDir; // track direction x-cosine -} aMCData; - -// MCJitter - jitter/cherenkov history if CAL_TYPE = 2 (one per PMT) -typedef struct MCJitter { - uint32_t jitterData; -} aMCJitter; - -/* ................... extended PmtEventRecord format (PH 02/25/99) ................... */ - -#define SUB_NOT_LAST ( 0x00800000UL ) // bit set indicates another sub-field follows -#define SUB_LENGTH_MASK ( 0x007fffffUL ) // mask for offset to next sub-field -#define SUB_TYPE_BITNUM 24 // bit position of sub-field type - -/* sub-field ID numbers */ -#define SUB_TYPE_CALIBRATED 8UL // calibrated sub-field type -#define SUB_TYPE_MONTE_CARLO 9UL // monte carlo sub-field -#define SUB_TYPE_FIT 10UL // fitted event sub-field -#define SUB_TYPE_HIT_DATA 11UL // extra floating-point hit data -#define SUB_TYPE_EVENT_DATA 12UL // extra floating-point event data -#define SUB_TYPE_PACKED_TSLH 13UL // packed time since last hit -#define SUB_TYPE_CAL_FLAGS 14UL // calibrated data flags (one 32 bit word) -#define SUB_TYPE_HCA_QUEENS 15UL // Queen's HCA calibration -#define SUB_TYPE_NCD 16UL // NCD data record -#define SUB_TYPE_CAEN 32UL // SNO+ CAEN data -#define SUB_TYPE_TUBII 33UL // SNO+ TUBII trigger word - -/* sub-field header */ -typedef struct SubFieldHeader { - uint32_t flags; // bits 0-22 = size of this sub-field in 4-uint8_t words (including header) - // bit 23 = 0-no more sub-fields, 1=another sub-field follows - // bits 24-31 = ID number for this sub-field -} aSubFieldHeader; - -/* sub-field ID number 8 - calibrated PMT data */ -/* -9999 in any of these fields means that no calibration was available. */ -/* Order and number of these correspond exactly to hits in original PmtEventRecord. */ -typedef struct CalibratedPMT { - float tac; - float qhs; - float qhl; - float qlx; -} aCalibratedPMT; - -/* sub-field ID number 9 - monte carlo header */ -typedef struct MCHeader MonteCarloHeader; - -/* vertex structure for monte-carlo data */ -typedef struct MonteCarloVertex { - float x,y,z; // vertex location in cm - float u,v,w; // track direction cosines - double time; // event time - float energy; // energy of particle for outgoing track - uint32_t int_code; // vertex interaction code - uint16_t flags; // special vertex flags (upper 8 bits reserved for display) - uint16_t particle; // outgoing track particle ID - int32_t parent; // index of parent vertex in list (-ve if no parent) -} aMonteCarloVertex; - -/* sub-field ID number 10 - fitted event data */ -typedef struct FittedEvent { - float x,y,z; // fitted event position in cm - float u,v,w; // fitted event direction cosines - float time; // fitted event time - float quality; // quality of fit - uint16_t npmts; // number of PMT's fit - uint16_t spare; // extra fit-dependent data - char name[32]; // fitter identification string (NULL terminated) -} aFittedEvent; - -/* sub-field ID number 11 - extra floating point hit data */ -#define DATA_NAME_LEN 24 - -typedef struct ExtraHitData { - char name[DATA_NAME_LEN]; // null-terminated data name (see Note 1) - // -- followed by NPmtHit float values in the same order as PMT hits -} aExtraHitData; - -// Note 1) The extra hit/event data name may have an optional format specifier. -// The format specifier is standard C printf style for a floating point number -// (ie. "%.2f"), and must immediately follow the null terminator of the name. - -/* sub-field ID number 12 - extra floating point event data */ -typedef struct ExtraEventData { - char name[DATA_NAME_LEN]; // null-terminated data name (see Note 1) - float value; // data value -} aExtraEventData; - -/* sub-field ID number 13 - packed TSLH */ - -/* sub-field ID number 14 - calibration flags (one 32-bit word) */ -#define CAL_FLAG_QSLOPE 0x0001 // flag for charge slopes applied - -/* sub-field ID number 15 - Queen's HCA calibration */ - -/* sub-field ID number 16 - NCD data record (see NcdDataTypes.h) */ - -/* sub-field ID nubmer 32 - CAEN trigger sum data */ -#define UNPK_CAEN_MAGIC(a) ( (*(a) >> 28) & 0x0000000f ) -#define UNPK_CAEN_WORD_COUNT(a) ( *(a) & 0x0fffffff ) -#define UNPK_CAEN_CHANNEL_MASK(a) ( *((a)+1) & 0x000000ff ) -#define UNPK_CAEN_PATTERN(a) ( (*((a)+1) >> 8) & 0x0000ffff ) -#define UNPK_CAEN_PACK_FLAG(a) ( (*((a)+1) >> 24) & 0x00000001 ) -#define UNPK_CAEN_BOARD_ID(a) ( *((a)+1) >> 25 ) -#define UNPK_CAEN_SYNC16(a) ( (*((a)+1) >> 15) & 0x00000001 ) -#define UNPK_CAEN_SYNC24(a) ( (*((a)+1) >> 16) & 0x00000001 ) -#define UNPK_CAEN_EVENT_COUNT(a) ( *((a)+2) & 0x00ffffff ) -#define UNPK_CAEN_TRIGGER_TIME(a) ( *((a)+3) ) - -/* sub-field ID number 33 - TUBii record */ -typedef struct TubiiRecord { - uint32_t TrigWord; - uint32_t GTID; -} aTubiiRecord; - -/* .............................. End extended format .............................. */ - -/* - * unpacking "routines" by definition! Looks awful, but is fast... - * "a" in the following is a pointer to 3 longwords as read out from - * the FEC32. from SNODAQ distribution - */ -#define UNPK_MISSED_COUNT(a) ( (*((a)+1) >> 28) & 0x1 ) -#define UNPK_NC_CC(a) ( (*((a)+1) >> 29) & 0x1 ) -#define UNPK_LGI_SELECT(a) ( (*((a)+1) >> 30) & 0x1 ) -#define UNPK_CMOS_ES_16(a) ( (*((a)+1) >> 31) & 0x1 ) -#define UNPK_CGT_ES_16(a) ( (*(a) >> 30) & 0x1 ) -#define UNPK_CGT_ES_24(a) ( (*(a) >> 31) & 0x1 ) -#define UNPK_QLX(a) ( ( *((a)+1) & 0x00000fff) ^ 0x00000800 ) -#define UNPK_QHS(a) ( ( (*((a)+1) >> 16) & 0x00000fff) ^ 0x00000800 ) -#define UNPK_QHL(a) ( ( *((a)+2) & 0x00000fff) ^ 0x00000800 ) -#define UNPK_TAC(a) ( ( (*((a)+2) >> 16) & 0x00000fff) ^ 0x00000800 ) - -#define UNPK_CELL_ID(a) ( (*((a)+1) >> 12) & 0x0000000F ) -#define UNPK_CHANNEL_ID(a) ( (*(a) >> 16) & 0x0000001F ) -#define UNPK_BOARD_ID(a) ( (*(a) >> 26) & 0x0000000F ) -#define UNPK_CRATE_ID(a) ( (*(a) >> 21) & 0x0000001F ) -#define UNPK_FEC_GT24_ID(a) ( ( * (a) & 0x0000FFFF ) | \ - ( (*((a)+2) << 4) & 0x000F0000 ) | \ - ( (*((a)+2) >> 8) & 0x00F00000 ) ) -#define UNPK_FEC_GT16_ID(a) ( *(a) & 0x0000FFFF ) -#define UNPK_FEC_GT8_ID(a) ( ( (*((a)+2) >> 24) & 0x000000F0 ) | \ - ( (*((a)+2) >> 12) & 0x0000000F ) - -#define UNPK_FEC_GT_ID(a) ( ( * (a) & 0x0000FFFF ) | \ - ( (*((a)+2) << 4) & 0x000F0000 ) | \ - ( (*((a)+2) >> 8) & 0x00F00000 ) ) - -// unpacking trigger words by definitions... -// unpacking "routines" by definition! Looks awful, but is fast... -// "a" in the following is a pointer to 6 longwords as read out from the MTC. -#define UNPK_MTC_BC50_1(a) ( (*((a)+1) >> 21) & 0x7FF ) -#define UNPK_MTC_BC50_2(a) ( *((a)+2) ) -#define UNPK_MTC_BC10_1(a) ( *( a ) ) -#define UNPK_MTC_BC10_2(a) ( *((a)+1) & 0x1FFFFF ) -#define UNPK_MTC_GT_ID(a) ( *((a)+3) & 0x00FFFFFF ) -#define UNPK_MTC_DIFF(a) (((*((a)+4) >> 29) & 0x007) | ((*((a)+5) << 3) & 0x3F8)) -#define UNPK_MTC_INT(a) ( (*((a)+5) >> 7) & 0x3FF ) -#define UNPK_MTC_PEAK(a) ( (*((a)+4) >> 19) & 0x3FF ) -#define UNPK_NHIT_100_LO(a) ( *((a)+3) & 0x01000000 ) -#define UNPK_NHIT_100_MED(a) ( *((a)+3) & 0x02000000 ) -#define UNPK_NHIT_100_HI(a) ( *((a)+3) & 0x04000000 ) -#define UNPK_NHIT_20(a) ( *((a)+3) & 0x08000000 ) -#define UNPK_NHIT_20_LB(a) ( *((a)+3) & 0x10000000 ) -#define UNPK_ESUM_LO(a) ( *((a)+3) & 0x20000000 ) -#define UNPK_ESUM_HI(a) ( *((a)+3) & 0x40000000 ) -#define UNPK_OWLN(a) ( *((a)+3) & 0x80000000 ) -#define UNPK_OWLE_LO(a) ( *((a)+4) & 0x00000001 ) -#define UNPK_OWLE_HI(a) ( *((a)+4) & 0x00000002 ) -#define UNPK_PULSE_GT(a) ( *((a)+4) & 0x00000004 ) -#define UNPK_PRESCALE(a) ( *((a)+4) & 0x00000008 ) -#define UNPK_PONG(a) ( *((a)+4) & 0x00000010 ) -#define UNPK_SYNC(a) ( *((a)+4) & 0x00000020 ) -#define UNPK_EXT_ASYNC(a) ( *((a)+4) & 0x00000040 ) -#define UNPK_EXT_2(a) ( *((a)+4) & 0x00000080 ) -#define UNPK_EXT_3(a) ( *((a)+4) & 0x00000100 ) -#define UNPK_EXT_4(a) ( *((a)+4) & 0x00000200 ) -#define UNPK_EXT_5(a) ( *((a)+4) & 0x00000400 ) -#define UNPK_EXT_6(a) ( *((a)+4) & 0x00000800 ) -#define UNPK_EXT_7(a) ( *((a)+4) & 0x00001000 ) -#define UNPK_EXT_8(a) ( *((a)+4) & 0x00002000 ) -#define UNPK_SPECIAL_RAW(a) ( *((a)+4) & 0x00004000 ) -#define UNPK_NCD(a) ( *((a)+4) & 0x00008000 ) -#define UNPK_SOFT_GT(a) ( *((a)+4) & 0x00010000 ) -#define UNPK_MISS_TRIG(a) ( *((a)+4) & 0x00020000 ) - -// unpack Trigger Error Mask... -#define UNPK_TESTGT(a) ( *((a)+5) & 0x00020000 ) -#define UNPK_TEST50(a) ( *((a)+5) & 0x00040000 ) -#define UNPK_TEST10(a) ( *((a)+5) & 0x00080000 ) -#define UNPK_TESTMEM1(a) ( *((a)+5) & 0x00100000 ) -#define UNPK_TESTMEM2(a) ( *((a)+5) & 0x00200000 ) -#define UNPK_SYNCLR16(a) ( *((a)+5) & 0x00400000 ) -#define UNPK_SYNCLR16_WO_TC16(a) ( *((a)+5) & 0x00800000 ) -#define UNPK_SYNCLR24(a) ( *((a)+5) & 0x01000000 ) -#define UNPK_SYNCLR24_WO_TC24(a) ( *((a)+5) & 0x02000000 ) -#define UNPK_SOME_FIFOS_EMPTY(a) ( *((a)+5) & 0x04000000 ) -#define UNPK_SOME_FIFOS_FULL(a) ( *((a)+5) & 0x08000000 ) -#define UNPK_ALL_FIFOS_FULL(a) ( *((a)+5) & 0x10000000 ) - -// unpack the Trigger Word (lowest 27 bits are significant) -#define UNPK_MTC_TRIGGER(a) ( ( ( *((a)+3) >> 5 ) & 0x7F80000 ) | ( *((a)+4) & 0x7FFFF ) ) -// unpack the Trigger Error bits (lowest 14 bits signficant) -#define UNPK_MTC_ERROR(a) ( ( *((a)+5) >> 17 ) & 0x3FFF ) - - -// ------------------------------------------------------------------------------------- - -// other records, not defined in this file -#define CRON_RECORD 0x43524F4E // 'CRON' -#define VRLY_RECORD 0x56524C59 // 'VRLY' -#define MSEI_RECORD 0x4D534549 // 'MSEI' - -#ifdef __MWERKS__ -// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv -// extra code for SHaRC version only - -typedef struct MTCReadoutWords { - uint32_t Word[6]; -} aMTCReadoutWords, *aMTCReadoutWordsPtr; - -typedef struct FECReadoutWords { - uint32_t Word[3]; -} aFECReadoutWords, *aFECReadoutWordsPtr; - -// (be very careful here! for backward compatibility this is also -// defined as EpedRecord as used by everyone else. Not to be confused with EPEDRecord.) -typedef struct EPEDRecord SHaRC_BankEPED; - -// SHaRC uses short forms of trigger bit definitions -#define NHIT_100_LO TRIG_NHIT_100_LO -#define NHIT_100_MED TRIG_NHIT_100_MED -#define NHIT_100_HI TRIG_NHIT_100_HI -#define NHIT_20 TRIG_NHIT_20 -#define NHIT_20_LB TRIG_NHIT_20_LB -#define ESUM_LO TRIG_ESUM_LO -#define ESUM_HI TRIG_ESUM_HI -#define OWLN TRIG_OWLN -#define OWLE_LO TRIG_OWLE_LO -#define OWLE_HI TRIG_OWLE_HI -#define PULSE_GT TRIG_PULSE_GT -#define PRESCALE TRIG_PRESCALE -#define PEDESTAL TRIG_PEDESTAL -#define PONG TRIG_PONG -#define SYNC TRIG_SYNC -#define EXT_ASYNC TRIG_EXT_ASYNC -#define HYDROPHONE TRIG_HYDROPHONE -#define EXT3 TRIG_EXT3 -#define EXT4 TRIG_EXT4 -#define EXT5 TRIG_EXT5 -#define EXT6 TRIG_EXT6 -#define EXT7 TRIG_EXT7 -#define EXT8 TRIG_EXT8 -#define SPECIAL_RAW TRIG_SPECIAL_RAW -#define NCD TRIG_NCD_MUX -#define SOFT_GT TRIG_SOFT_GT - -// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -#endif // __MWERKS__ - - -#endif // __RECORD_INFO_H__ diff --git a/calculate_limits.c b/calculate_limits.c deleted file mode 100644 index 6dd37f0..0000000 --- a/calculate_limits.c +++ /dev/null @@ -1,318 +0,0 @@ -#include -#include -#include /* For M_PI */ - -/* Mass of dark matter particle (MeV). */ -double mass = 1000.0; - -/* Decay length of mediator V (in mm). */ -double decay_length = 1000e9; - -/* Cross section for dark matter interaction (in mm^2). */ -double dm_cross_section = 1e-30; - -/* Approximate dark matter density in MeV/mm^3. From Tom Caldwell's thesis. */ -double dm_density = 400e3; - -/* Approximate dark matter velocity in mm/s. The true distribution is expected - * to be a Maxwell Boltzmann distribution which is modulated annually by the - * earth's rotation around the sun, but we just assume a single constant - * velocity here. From Tom Caldwell's thesis page 26. */ -double dm_velocity = 244e6; - -/* Number density of scatterers in the Earth. - * - * FIXME: Currently just set to the number density of atoms in water. Need to - * update this for rock, and in fact this will change near the detector since - * there is water outside the AV. */ -double number_density = 30e18; /* In 1/mm^3 */ - -/* From Google maps. Probably not very accurate, but should be good enough for - * this calculation. */ -double latitude = 46.471857; -double longitude = -81.186755; - -/* Radius of the earth in mm. */ -double radius_earth = 6.371e9; - -/* Depth of the SNO detector in mm. Don't be fooled by all the digits. I just - * converted 6800 feet -> mm. */ -double sno_depth = 2072640; - -/* Fiducial volume in mm. */ -double radius_fiducial = 5000; - -/* Cartesian coordinates of SNO in earth frame. They need to be global since - * they are used in some functions. */ -double x_sno[3]; - -double epsabs = 1e-1; -double epsrel = 1e-1; - -double deg2rad(double deg) -{ - return deg*M_PI/180.0; -} - -double rad2deg(double rad) -{ - return rad*180.0/M_PI; -} - -/* Convert spherical coordinates to cartesian coordinates. - * - * See https://en.wikipedia.org/wiki/Spherical_coordinate_system. */ -void sphere2cartesian(double r, double theta, double phi, double *x, double *y, double *z) -{ - *x = r*sin(theta)*cos(phi); - *y = r*sin(theta)*sin(phi); - *z = r*cos(theta); -} - -/* Convert cartesian coordinates to spherical coordinates. - * - * See https://en.wikipedia.org/wiki/Spherical_coordinate_system. */ -void cartesian2sphere(double x, double y, double z, double *r, double *theta, double *phi) -{ - *r = sqrt(x*x + y*y + z*z); - *theta = acos(z/(*r)); - *phi = atan2(y,x); -} - -void cross(double *a, double *b, double *c) -{ - c[0] = a[1]*b[2] - a[2]*b[1]; - c[1] = a[2]*b[0] - a[0]*b[2]; - c[2] = a[0]*b[1] - a[1]*b[0]; -} - -double dot(double *a, double *b) -{ - return a[0]*b[0] + a[1]*b[1] + a[2]*b[2]; -} - -double norm(double *a) -{ - return sqrt(dot(a,a)); -} - -void normalize(double *a) -{ - double n = norm(a); - a[0] /= n; - a[1] /= n; - a[2] /= n; -} - -/* Rotate a vector x around the vector dir by an angle theta. */ -void rotate(double *result, double *x, double *dir, double theta) -{ - double a = dot(dir,x); - double b[3]; - - double sin_theta = sin(theta); - double cos_theta = cos(theta); - - /* Make sure the direction vector is normalized. */ - normalize(dir); - - cross(x,dir,b); - - result[0] = x[0]*cos_theta + dir[0]*a*(1-cos_theta) + b[0]*sin_theta; - result[1] = x[1]*cos_theta + dir[1]*a*(1-cos_theta) + b[1]*sin_theta; - result[2] = x[2]*cos_theta + dir[2]*a*(1-cos_theta) + b[2]*sin_theta; -} - -/* Rotate a vector in earth centered coordinates to SNO coordinates (doesn't do - * the translation). */ -void rotate_earth_to_sno(double *x_earth, double *x_sno) -{ - double dir[3]; - double z[3] = {0,0,1}; - - cross(x_sno, z, dir); - - /* Normalize. */ - normalize(dir); - - double theta = acos(dot(x_sno,z)/norm(x_sno)); - - rotate(x_sno, x_earth, dir, theta); -} - -/* Integral over phi. */ -double f3(double phi, void *params) -{ - double result, error; - gsl_function F; - double *data = (double *) params; - data[5] = phi; - double x[3]; - double r[3]; - double distance; - - /* Compute cartesian position in local SNO coordinates. */ - sphere2cartesian(data[3], data[4], data[5], &x[0], &x[1], &x[2]); - - /* Cartesian coordinates of gamma production offset in earth centered - * coordinates .*/ - double *gamma_offset = data+6; - - /* Vector distance between integration in local coordinates and gamma - * production point .*/ - r[0] = x_sno[0] + x[0] - gamma_offset[0]; - r[1] = x_sno[1] + x[1] - gamma_offset[1]; - r[2] = x_sno[2] + x[2] - gamma_offset[2]; - - distance = norm(r); - - return exp(-distance/decay_length)/(4*M_PI*distance*distance*decay_length)*data[3]*data[3]*sin(data[4]); -} - -/* Integral over theta. */ -double f2(double theta, void *params) -{ - double result, error; - gsl_function F; - double *data = (double *) params; - data[4] = theta; - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f3; - F.params = params; - - gsl_integration_qags(&F, 0, 2*M_PI, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - return result; -} - -/* Integral over r. */ -double f1(double r, void *params) -{ - double result, error; - gsl_function F; - double *data = (double *) params; - data[3] = r; - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f2; - F.params = params; - - gsl_integration_qags(&F, 0, M_PI, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - return result; -} - -double f4_earth(double phi_earth, void *params) -{ - double result, error; - gsl_function F; - double *data = (double *) params; - data[2] = phi_earth; - double gamma_offset[3]; - - /* Compute the cartesian coordinates of the gamma production point in the - * earth centered coordinates. */ - sphere2cartesian(data[0], data[1], data[2], &data[6], &data[7], &data[8]); - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f1; - F.params = params; - - gsl_integration_qags(&F, 0, radius_fiducial, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - /* For now we assume the event rate is constant throughout the earth, so we - * are implicitly assuming that the cross section is pretty small. */ - double flux = dm_velocity*dm_density/mass; - - return dm_cross_section*number_density*flux*result*data[0]*data[0]*sin(data[1]); -} - -double f3_earth(double theta_earth, void *params) -{ - double result, error; - gsl_function F; - double *data = (double *) params; - data[1] = theta_earth; - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f4_earth; - F.params = params; - - gsl_integration_qags(&F, 0, 2*M_PI, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - return result; -} - -double f2_earth(double r_earth, void *params) -{ - double result, error; - double data[9]; - gsl_function F; - data[0] = r_earth; - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f3_earth; - F.params = (void *) data; - - gsl_integration_qags(&F, 0, M_PI, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - return result; -} - -/* Returns the event rate in SNO for a self-destructing dark matter particle - * with a mass of dm_mass, a dark photon decay length of gamma_length, and a - * cross section of cs (in mm^2). */ -double get_event_rate(double dm_mass, double gamma_length, double cs) -{ - double result, error; - gsl_function F; - - gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); - - F.function = &f2_earth; - F.params = NULL; - - /* For now we just use global variables. */ - mass = dm_mass; - decay_length = gamma_length; - dm_cross_section = cs; - - gsl_integration_qags(&F, 0, radius_earth, epsabs, epsrel, 1000, w, &result, &error); - - gsl_integration_workspace_free(w); - - return result; -} - -int main(int argc, char **argv) -{ - /* Spherical angles for the SNO detector in the earth frame which has z - * along the north and south poles and the x axis passing through Greenwich. - * Should double check this. */ - double sno_theta = deg2rad(latitude + 90.0); - double sno_phi = deg2rad(longitude); - - sphere2cartesian(radius_earth - sno_depth, sno_theta, sno_phi, x_sno, x_sno+1, x_sno+2); - - /* Calculate the event rate for a standard DM candidate with a mass of 1 - * GeV, and a mediator decay length of 1 m. */ - printf("event rate = %.18e Hz\n", get_event_rate(1000, 1000e9, 1e-30)); - - return 0; -} diff --git a/db.c b/db.c deleted file mode 100644 index 9160cbf..0000000 --- a/db.c +++ /dev/null @@ -1,256 +0,0 @@ -#include "db.h" -#include /* for fopen(), etc. */ -#include /* for strerror(), etc. */ -#include /* for strncmp(), etc. */ -#include /* for uint32_t */ -#include /* for atoi() */ -#include "dict.h" - -char db_err[256]; - -static uint64_t dbHash(const void *key) -{ - return dictGenHashFunction(key,8); -} - -static int dbKeyCompare(void *privdata, const void *key1, const void *key2) -{ - return memcmp(key1,key2,8) == 0; -} - -static void dbFree(void *privdata, void *val) -{ - free(val); -} - -static dictType titleDB = { - dbHash, - NULL, - NULL, - dbKeyCompare, - dbFree, - dbFree -}; - -/* Add a bank to the database. - * - * Returns 0 on success, -1 on error. */ -int add_bank(dict *db, const char name[4], uint32_t id, dbval *data) -{ - uint32_t *buf = malloc(sizeof(uint32_t)*2); - - memcpy(buf,name,4); - buf[1] = id; - - if (dictAdd(db, buf, data) != DICT_OK) { - sprintf(db_err, "failed to add bank to database!\n"); - goto err; - } - - return 0; - -err: - free(buf); - return -1; -} - -/* Get a bank from the database. - * - * Returns a pointer to the first value in the bank, or NULL if the bank - * doesn't exist. */ -dbval *get_bank(dict *db, const char name[4], uint32_t id) -{ - uint32_t buf[2]; - - memcpy(buf,name,4); - buf[1] = id; - - return dictFetchValue(db, buf); -} - -/* Function to iterate over the fields in a title bank text file. Works sort of - * like strtok(). Example: - * - * char *item = iter_field(line); - * while (item) { - * // do something with item - * item = iter_field(NULL); - * } - */ -static char *iter_field(char *str) -{ - static char *ptr; - static char buf[81]; - - if (!str) str = ptr; - - ptr = buf; - - while (*str != '\x0' && ptr < (buf + 81)) { - if (ptr == (buf + 2) && buf[0] == '#' && buf[1] == '.') { - ptr = buf; - while (*str != '\x0' && *str++ != '#'); - continue; - } - - if (*str == ' ' || *str == '\n') { - str++; - if (ptr == buf) continue; - break; - } - - *ptr++ = *str++; - } - - if (ptr == buf) return NULL; - - *ptr = '\x0'; - ptr = str; - return buf; -} - -/* Create a new database. */ -dict *db_init(void) -{ - dict *db = dictCreate(&titleDB, NULL); - return db; -} - -/* Free a database. */ -void db_free(dict *db) -{ - dictRelease(db); -} - -/* Load a title bank file into the database `db`. - * - * Returns 0 on success, -1 on error. */ -int load_file(dict *db, const char *filename) -{ - int i, index; - char *item, *s; - char line[256]; - char idh[4]; - uint32_t idn; - int mul; - int64_t value; - double float_value; - dbval *buf; - int buf_size; - - buf_size = 10; - - buf = malloc(buf_size*sizeof(dbval)); - - if (!buf) { - strcpy(db_err,strerror(errno)); - return -1; - } - - FILE *f = fopen(filename, "r"); - - if (!f) { - sprintf(db_err, "unable to open file '%s': %s", filename, strerror(errno)); - return -1; - } - - index = 0; - while (fgets(line, sizeof(line), f)) { - if (!strncmp(line,"*---",4)) { - /* Comment. */ - continue; - } else if (!strncmp(line,"*.--",4)) { - /* Comment. */ - continue; - } else if (!strncmp(line, "*LOG",4)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*PRI",4)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*US",3)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*KI",3)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*ANYWAY",7)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*FIN",4)) { - /* Control line which we don't care about. */ - continue; - } else if (!strncmp(line, "*DO",3)) { - if (index > 0) { - /* Save previous bank. */ - buf = realloc(buf,sizeof(dbval)*index); - - if (add_bank(db, idh, idn, buf) == DICT_ERR) { - sprintf(db_err, "bank '%.4s' already exists in the database", idh); - goto err; - } - - buf_size = 10; - - buf = malloc(buf_size*sizeof(dbval)); - - index = 0; - } - - item = iter_field(line); - item = iter_field(NULL); - strncpy(idh,item,4); - item = iter_field(NULL); - idn = atoi(item); - - continue; - } - - item = iter_field(line); - mul = 1; - while (item) { - if ((s = strchr(item,'*'))) { - *s = '\0'; - mul = atoi(item); - item = s+1; - } - - if (buf_size < (index+1)*sizeof(dbval)) { - buf_size *= 2; - buf = realloc(buf, buf_size*sizeof(dbval)); - } - - if (!strncmp(item,"#x",2)) { - /* Hexadecimal input. */ - value = strtol(item+2,NULL,16); - for (i = 0; i < mul; i++) buf[index++].u32 = value; - } else if (strchr(item,'E') || strchr(item,'.')) { - /* Floating point input. */ - float_value = strtod(item,NULL); - for (i = 0; i < mul; i++) buf[index++].f = float_value; - } else { - /* Assume it's an integer. */ - value = strtol(item,NULL,10); - for (i = 0; i < mul; i++) buf[index++].u32 = value; - } - item = iter_field(NULL); - } - } - - buf = realloc(buf,sizeof(dbval)*index); - - if (add_bank(db, idh, idn, buf) == DICT_ERR) { - sprintf(db_err, "bank '%.4s' already exists in the database", idh); - goto err; - } - - fclose(f); - - return 0; - -err: - - if (buf) free(buf); - fclose(f); - return -1; -} diff --git a/db.h b/db.h deleted file mode 100644 index fcc76fa..0000000 --- a/db.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef DB_H -#define DB_H - -/* This is a library for importing title banks from SNOMAN files. Each bank is - * stored in a dictionary with the bank name and id as the key. For example, to - * load the DQXX files: - * - * dbval *dbval; - * - * db_init(); - * load_file("DQXX_0000010000.dat"); - * dbval = get_bank("DQCH",1); - * db_free(); - * - * The return value of get_bank() is a pointer to the bank values. It's up to - * the caller to know the exact offsets for each value in the bank. Typically, - * SNO database title banks have a database header of 20 words and 10 unused - * words at the beginning of the bank. - * - * Note: Currently only 32 bit unsigned integers and 32 bit floating point - * numbers are supported. I don't think that any of the SNOMAN files have - * doubles. */ - -#include /* for uint32_t */ -#include "dict.h" - -typedef union dbval { - uint32_t u32; - float f; -} dbval; - -extern char db_err[256]; - -dict *db_init(void); -void db_free(dict *db); -int add_bank(dict *db, const char name[4], uint32_t id, dbval *data); -dbval *get_bank(dict *db, const char name[4], uint32_t id); -int load_file(dict *db, const char *filename); - -#endif diff --git a/dict.c b/dict.c deleted file mode 100644 index 42d9459..0000000 --- a/dict.c +++ /dev/null @@ -1,1219 +0,0 @@ -/* Hash Tables Implementation. - * - * This file implements in memory hash tables with insert/del/replace/find/ - * get-random-element operations. Hash tables will auto resize if needed - * tables of power of two in size are used, collisions are handled by - * chaining. See the source code for more information... :) - * - * Copyright (c) 2006-2012, Salvatore Sanfilippo - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of Redis nor the names of its contributors may be used - * to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#include "fmacros.h" - -#include -#include -#include -#include -#include -#include -#include - -#include "dict.h" -#include - -/* Using dictEnableResize() / dictDisableResize() we make possible to - * enable/disable resizing of the hash table as needed. This is very important - * for Redis, as we use copy-on-write and don't want to move too much memory - * around when there is a child performing saving operations. - * - * Note that even when dict_can_resize is set to 0, not all resizes are - * prevented: a hash table is still allowed to grow if the ratio between - * the number of elements and the buckets > dict_force_resize_ratio. */ -static int dict_can_resize = 1; -static unsigned int dict_force_resize_ratio = 5; - -/* -------------------------- private prototypes ---------------------------- */ - -static int _dictExpandIfNeeded(dict *ht); -static unsigned long _dictNextPower(unsigned long size); -static long _dictKeyIndex(dict *ht, const void *key, uint64_t hash, dictEntry **existing); -static int _dictInit(dict *ht, dictType *type, void *privDataPtr); - -/* -------------------------- hash functions -------------------------------- */ - -static uint8_t dict_hash_function_seed[16]; - -void dictSetHashFunctionSeed(uint8_t *seed) { - memcpy(dict_hash_function_seed,seed,sizeof(dict_hash_function_seed)); -} - -uint8_t *dictGetHashFunctionSeed(void) { - return dict_hash_function_seed; -} - -/* The default hashing function uses SipHash implementation - * in siphash.c. */ - -uint64_t siphash(const uint8_t *in, const size_t inlen, const uint8_t *k); -uint64_t siphash_nocase(const uint8_t *in, const size_t inlen, const uint8_t *k); - -uint64_t dictGenHashFunction(const void *key, int len) { - return siphash(key,len,dict_hash_function_seed); -} - -uint64_t dictGenCaseHashFunction(const unsigned char *buf, int len) { - return siphash_nocase(buf,len,dict_hash_function_seed); -} - -/* ----------------------------- API implementation ------------------------- */ - -/* Reset a hash table already initialized with ht_init(). - * NOTE: This function should only be called by ht_destroy(). */ -static void _dictReset(dictht *ht) -{ - ht->table = NULL; - ht->size = 0; - ht->sizemask = 0; - ht->used = 0; -} - -/* Create a new hash table */ -dict *dictCreate(dictType *type, - void *privDataPtr) -{ - dict *d = malloc(sizeof(*d)); - - _dictInit(d,type,privDataPtr); - return d; -} - -/* Initialize the hash table */ -int _dictInit(dict *d, dictType *type, - void *privDataPtr) -{ - _dictReset(&d->ht[0]); - _dictReset(&d->ht[1]); - d->type = type; - d->privdata = privDataPtr; - d->rehashidx = -1; - d->iterators = 0; - return DICT_OK; -} - -/* Resize the table to the minimal size that contains all the elements, - * but with the invariant of a USED/BUCKETS ratio near to <= 1 */ -int dictResize(dict *d) -{ - int minimal; - - if (!dict_can_resize || dictIsRehashing(d)) return DICT_ERR; - minimal = d->ht[0].used; - if (minimal < DICT_HT_INITIAL_SIZE) - minimal = DICT_HT_INITIAL_SIZE; - return dictExpand(d, minimal); -} - -/* Expand or create the hash table */ -int dictExpand(dict *d, unsigned long size) -{ - /* the size is invalid if it is smaller than the number of - * elements already inside the hash table */ - if (dictIsRehashing(d) || d->ht[0].used > size) - return DICT_ERR; - - dictht n; /* the new hash table */ - unsigned long realsize = _dictNextPower(size); - - /* Rehashing to the same table size is not useful. */ - if (realsize == d->ht[0].size) return DICT_ERR; - - /* Allocate the new hash table and initialize all pointers to NULL */ - n.size = realsize; - n.sizemask = realsize-1; - n.table = calloc(realsize*sizeof(dictEntry*),1); - n.used = 0; - - /* Is this the first initialization? If so it's not really a rehashing - * we just set the first hash table so that it can accept keys. */ - if (d->ht[0].table == NULL) { - d->ht[0] = n; - return DICT_OK; - } - - /* Prepare a second hash table for incremental rehashing */ - d->ht[1] = n; - d->rehashidx = 0; - return DICT_OK; -} - -/* Performs N steps of incremental rehashing. Returns 1 if there are still - * keys to move from the old to the new hash table, otherwise 0 is returned. - * - * Note that a rehashing step consists in moving a bucket (that may have more - * than one key as we use chaining) from the old to the new hash table, however - * since part of the hash table may be composed of empty spaces, it is not - * guaranteed that this function will rehash even a single bucket, since it - * will visit at max N*10 empty buckets in total, otherwise the amount of - * work it does would be unbound and the function may block for a long time. */ -int dictRehash(dict *d, int n) { - int empty_visits = n*10; /* Max number of empty buckets to visit. */ - if (!dictIsRehashing(d)) return 0; - - while(n-- && d->ht[0].used != 0) { - dictEntry *de, *nextde; - - /* Note that rehashidx can't overflow as we are sure there are more - * elements because ht[0].used != 0 */ - assert(d->ht[0].size > (unsigned long)d->rehashidx); - while(d->ht[0].table[d->rehashidx] == NULL) { - d->rehashidx++; - if (--empty_visits == 0) return 1; - } - de = d->ht[0].table[d->rehashidx]; - /* Move all the keys in this bucket from the old to the new hash HT */ - while(de) { - uint64_t h; - - nextde = de->next; - /* Get the index in the new hash table */ - h = dictHashKey(d, de->key) & d->ht[1].sizemask; - de->next = d->ht[1].table[h]; - d->ht[1].table[h] = de; - d->ht[0].used--; - d->ht[1].used++; - de = nextde; - } - d->ht[0].table[d->rehashidx] = NULL; - d->rehashidx++; - } - - /* Check if we already rehashed the whole table... */ - if (d->ht[0].used == 0) { - free(d->ht[0].table); - d->ht[0] = d->ht[1]; - _dictReset(&d->ht[1]); - d->rehashidx = -1; - return 0; - } - - /* More to rehash... */ - return 1; -} - -long long timeInMilliseconds(void) { - struct timeval tv; - - gettimeofday(&tv,NULL); - return (((long long)tv.tv_sec)*1000)+(tv.tv_usec/1000); -} - -/* Rehash for an amount of time between ms milliseconds and ms+1 milliseconds */ -int dictRehashMilliseconds(dict *d, int ms) { - long long start = timeInMilliseconds(); - int rehashes = 0; - - while(dictRehash(d,100)) { - rehashes += 100; - if (timeInMilliseconds()-start > ms) break; - } - return rehashes; -} - -/* This function performs just a step of rehashing, and only if there are - * no safe iterators bound to our hash table. When we have iterators in the - * middle of a rehashing we can't mess with the two hash tables otherwise - * some element can be missed or duplicated. - * - * This function is called by common lookup or update operations in the - * dictionary so that the hash table automatically migrates from H1 to H2 - * while it is actively used. */ -static void _dictRehashStep(dict *d) { - if (d->iterators == 0) dictRehash(d,1); -} - -/* Add an element to the target hash table */ -int dictAdd(dict *d, void *key, void *val) -{ - dictEntry *entry = dictAddRaw(d,key,NULL); - - if (!entry) return DICT_ERR; - dictSetVal(d, entry, val); - return DICT_OK; -} - -/* Low level add or find: - * This function adds the entry but instead of setting a value returns the - * dictEntry structure to the user, that will make sure to fill the value - * field as he wishes. - * - * This function is also directly exposed to the user API to be called - * mainly in order to store non-pointers inside the hash value, example: - * - * entry = dictAddRaw(dict,mykey,NULL); - * if (entry != NULL) dictSetSignedIntegerVal(entry,1000); - * - * Return values: - * - * If key already exists NULL is returned, and "*existing" is populated - * with the existing entry if existing is not NULL. - * - * If key was added, the hash entry is returned to be manipulated by the caller. - */ -dictEntry *dictAddRaw(dict *d, void *key, dictEntry **existing) -{ - long index; - dictEntry *entry; - dictht *ht; - - if (dictIsRehashing(d)) _dictRehashStep(d); - - /* Get the index of the new element, or -1 if - * the element already exists. */ - if ((index = _dictKeyIndex(d, key, dictHashKey(d,key), existing)) == -1) - return NULL; - - /* Allocate the memory and store the new entry. - * Insert the element in top, with the assumption that in a database - * system it is more likely that recently added entries are accessed - * more frequently. */ - ht = dictIsRehashing(d) ? &d->ht[1] : &d->ht[0]; - entry = malloc(sizeof(*entry)); - entry->next = ht->table[index]; - ht->table[index] = entry; - ht->used++; - - /* Set the hash entry fields. */ - dictSetKey(d, entry, key); - return entry; -} - -/* Add or Overwrite: - * Add an element, discarding the old value if the key already exists. - * Return 1 if the key was added from scratch, 0 if there was already an - * element with such key and dictReplace() just performed a value update - * operation. */ -int dictReplace(dict *d, void *key, void *val) -{ - dictEntry *entry, *existing, auxentry; - - /* Try to add the element. If the key - * does not exists dictAdd will succeed. */ - entry = dictAddRaw(d,key,&existing); - if (entry) { - dictSetVal(d, entry, val); - return 1; - } - - /* Set the new value and free the old one. Note that it is important - * to do that in this order, as the value may just be exactly the same - * as the previous one. In this context, think to reference counting, - * you want to increment (set), and then decrement (free), and not the - * reverse. */ - auxentry = *existing; - dictSetVal(d, existing, val); - dictFreeVal(d, &auxentry); - return 0; -} - -/* Add or Find: - * dictAddOrFind() is simply a version of dictAddRaw() that always - * returns the hash entry of the specified key, even if the key already - * exists and can't be added (in that case the entry of the already - * existing key is returned.) - * - * See dictAddRaw() for more information. */ -dictEntry *dictAddOrFind(dict *d, void *key) { - dictEntry *entry, *existing; - entry = dictAddRaw(d,key,&existing); - return entry ? entry : existing; -} - -/* Search and remove an element. This is an helper function for - * dictDelete() and dictUnlink(), please check the top comment - * of those functions. */ -static dictEntry *dictGenericDelete(dict *d, const void *key, int nofree) { - uint64_t h, idx; - dictEntry *he, *prevHe; - int table; - - if (d->ht[0].used == 0 && d->ht[1].used == 0) return NULL; - - if (dictIsRehashing(d)) _dictRehashStep(d); - h = dictHashKey(d, key); - - for (table = 0; table <= 1; table++) { - idx = h & d->ht[table].sizemask; - he = d->ht[table].table[idx]; - prevHe = NULL; - while(he) { - if (key==he->key || dictCompareKeys(d, key, he->key)) { - /* Unlink the element from the list */ - if (prevHe) - prevHe->next = he->next; - else - d->ht[table].table[idx] = he->next; - if (!nofree) { - dictFreeKey(d, he); - dictFreeVal(d, he); - free(he); - } - d->ht[table].used--; - return he; - } - prevHe = he; - he = he->next; - } - if (!dictIsRehashing(d)) break; - } - return NULL; /* not found */ -} - -/* Remove an element, returning DICT_OK on success or DICT_ERR if the - * element was not found. */ -int dictDelete(dict *ht, const void *key) { - return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; -} - -/* Remove an element from the table, but without actually releasing - * the key, value and dictionary entry. The dictionary entry is returned - * if the element was found (and unlinked from the table), and the user - * should later call `dictFreeUnlinkedEntry()` with it in order to release it. - * Otherwise if the key is not found, NULL is returned. - * - * This function is useful when we want to remove something from the hash - * table but want to use its value before actually deleting the entry. - * Without this function the pattern would require two lookups: - * - * entry = dictFind(...); - * // Do something with entry - * dictDelete(dictionary,entry); - * - * Thanks to this function it is possible to avoid this, and use - * instead: - * - * entry = dictUnlink(dictionary,entry); - * // Do something with entry - * dictFreeUnlinkedEntry(entry); // <- This does not need to lookup again. - */ -dictEntry *dictUnlink(dict *ht, const void *key) { - return dictGenericDelete(ht,key,1); -} - -/* You need to call this function to really free the entry after a call - * to dictUnlink(). It's safe to call this function with 'he' = NULL. */ -void dictFreeUnlinkedEntry(dict *d, dictEntry *he) { - if (he == NULL) return; - dictFreeKey(d, he); - dictFreeVal(d, he); - free(he); -} - -/* Destroy an entire dictionary */ -int _dictClear(dict *d, dictht *ht, void(callback)(void *)) { - unsigned long i; - - /* Free all the elements */ - for (i = 0; i < ht->size && ht->used > 0; i++) { - dictEntry *he, *nextHe; - - if (callback && (i & 65535) == 0) callback(d->privdata); - - if ((he = ht->table[i]) == NULL) continue; - while(he) { - nextHe = he->next; - dictFreeKey(d, he); - dictFreeVal(d, he); - free(he); - ht->used--; - he = nextHe; - } - } - /* Free the table and the allocated cache structure */ - free(ht->table); - /* Re-initialize the table */ - _dictReset(ht); - return DICT_OK; /* never fails */ -} - -/* Clear & Release the hash table */ -void dictRelease(dict *d) -{ - _dictClear(d,&d->ht[0],NULL); - _dictClear(d,&d->ht[1],NULL); - free(d); -} - -dictEntry *dictFind(dict *d, const void *key) -{ - dictEntry *he; - uint64_t h, idx, table; - - if (d->ht[0].used + d->ht[1].used == 0) return NULL; /* dict is empty */ - if (dictIsRehashing(d)) _dictRehashStep(d); - h = dictHashKey(d, key); - for (table = 0; table <= 1; table++) { - idx = h & d->ht[table].sizemask; - he = d->ht[table].table[idx]; - while(he) { - if (key==he->key || dictCompareKeys(d, key, he->key)) - return he; - he = he->next; - } - if (!dictIsRehashing(d)) return NULL; - } - return NULL; -} - -void *dictFetchValue(dict *d, const void *key) { - dictEntry *he; - - he = dictFind(d,key); - return he ? dictGetVal(he) : NULL; -} - -/* A fingerprint is a 64 bit number that represents the state of the dictionary - * at a given time, it's just a few dict properties xored together. - * When an unsafe iterator is initialized, we get the dict fingerprint, and check - * the fingerprint again when the iterator is released. - * If the two fingerprints are different it means that the user of the iterator - * performed forbidden operations against the dictionary while iterating. */ -long long dictFingerprint(dict *d) { - long long integers[6], hash = 0; - int j; - - integers[0] = (long) d->ht[0].table; - integers[1] = d->ht[0].size; - integers[2] = d->ht[0].used; - integers[3] = (long) d->ht[1].table; - integers[4] = d->ht[1].size; - integers[5] = d->ht[1].used; - - /* We hash N integers by summing every successive integer with the integer - * hashing of the previous sum. Basically: - * - * Result = hash(hash(hash(int1)+int2)+int3) ... - * - * This way the same set of integers in a different order will (likely) hash - * to a different number. */ - for (j = 0; j < 6; j++) { - hash += integers[j]; - /* For the hashing step we use Tomas Wang's 64 bit integer hash. */ - hash = (~hash) + (hash << 21); // hash = (hash << 21) - hash - 1; - hash = hash ^ (hash >> 24); - hash = (hash + (hash << 3)) + (hash << 8); // hash * 265 - hash = hash ^ (hash >> 14); - hash = (hash + (hash << 2)) + (hash << 4); // hash * 21 - hash = hash ^ (hash >> 28); - hash = hash + (hash << 31); - } - return hash; -} - -dictIterator *dictGetIterator(dict *d) -{ - dictIterator *iter = malloc(sizeof(*iter)); - - iter->d = d; - iter->table = 0; - iter->index = -1; - iter->safe = 0; - iter->entry = NULL; - iter->nextEntry = NULL; - return iter; -} - -dictIterator *dictGetSafeIterator(dict *d) { - dictIterator *i = dictGetIterator(d); - - i->safe = 1; - return i; -} - -dictEntry *dictNext(dictIterator *iter) -{ - while (1) { - if (iter->entry == NULL) { - dictht *ht = &iter->d->ht[iter->table]; - if (iter->index == -1 && iter->table == 0) { - if (iter->safe) - iter->d->iterators++; - else - iter->fingerprint = dictFingerprint(iter->d); - } - iter->index++; - if (iter->index >= (long) ht->size) { - if (dictIsRehashing(iter->d) && iter->table == 0) { - iter->table++; - iter->index = 0; - ht = &iter->d->ht[1]; - } else { - break; - } - } - iter->entry = ht->table[iter->index]; - } else { - iter->entry = iter->nextEntry; - } - if (iter->entry) { - /* We need to save the 'next' here, the iterator user - * may delete the entry we are returning. */ - iter->nextEntry = iter->entry->next; - return iter->entry; - } - } - return NULL; -} - -void dictReleaseIterator(dictIterator *iter) -{ - if (!(iter->index == -1 && iter->table == 0)) { - if (iter->safe) - iter->d->iterators--; - else - assert(iter->fingerprint == dictFingerprint(iter->d)); - } - free(iter); -} - -/* Return a random entry from the hash table. Useful to - * implement randomized algorithms */ -dictEntry *dictGetRandomKey(dict *d) -{ - dictEntry *he, *orighe; - unsigned long h; - int listlen, listele; - - if (dictSize(d) == 0) return NULL; - if (dictIsRehashing(d)) _dictRehashStep(d); - if (dictIsRehashing(d)) { - do { - /* We are sure there are no elements in indexes from 0 - * to rehashidx-1 */ - h = d->rehashidx + (random() % (d->ht[0].size + - d->ht[1].size - - d->rehashidx)); - he = (h >= d->ht[0].size) ? d->ht[1].table[h - d->ht[0].size] : - d->ht[0].table[h]; - } while(he == NULL); - } else { - do { - h = random() & d->ht[0].sizemask; - he = d->ht[0].table[h]; - } while(he == NULL); - } - - /* Now we found a non empty bucket, but it is a linked - * list and we need to get a random element from the list. - * The only sane way to do so is counting the elements and - * select a random index. */ - listlen = 0; - orighe = he; - while(he) { - he = he->next; - listlen++; - } - listele = random() % listlen; - he = orighe; - while(listele--) he = he->next; - return he; -} - -/* This function samples the dictionary to return a few keys from random - * locations. - * - * It does not guarantee to return all the keys specified in 'count', nor - * it does guarantee to return non-duplicated elements, however it will make - * some effort to do both things. - * - * Returned pointers to hash table entries are stored into 'des' that - * points to an array of dictEntry pointers. The array must have room for - * at least 'count' elements, that is the argument we pass to the function - * to tell how many random elements we need. - * - * The function returns the number of items stored into 'des', that may - * be less than 'count' if the hash table has less than 'count' elements - * inside, or if not enough elements were found in a reasonable amount of - * steps. - * - * Note that this function is not suitable when you need a good distribution - * of the returned items, but only when you need to "sample" a given number - * of continuous elements to run some kind of algorithm or to produce - * statistics. However the function is much faster than dictGetRandomKey() - * at producing N elements. */ -unsigned int dictGetSomeKeys(dict *d, dictEntry **des, unsigned int count) { - unsigned long j; /* internal hash table id, 0 or 1. */ - unsigned long tables; /* 1 or 2 tables? */ - unsigned long stored = 0, maxsizemask; - unsigned long maxsteps; - - if (dictSize(d) < count) count = dictSize(d); - maxsteps = count*10; - - /* Try to do a rehashing work proportional to 'count'. */ - for (j = 0; j < count; j++) { - if (dictIsRehashing(d)) - _dictRehashStep(d); - else - break; - } - - tables = dictIsRehashing(d) ? 2 : 1; - maxsizemask = d->ht[0].sizemask; - if (tables > 1 && maxsizemask < d->ht[1].sizemask) - maxsizemask = d->ht[1].sizemask; - - /* Pick a random point inside the larger table. */ - unsigned long i = random() & maxsizemask; - unsigned long emptylen = 0; /* Continuous empty entries so far. */ - while(stored < count && maxsteps--) { - for (j = 0; j < tables; j++) { - /* Invariant of the dict.c rehashing: up to the indexes already - * visited in ht[0] during the rehashing, there are no populated - * buckets, so we can skip ht[0] for indexes between 0 and idx-1. */ - if (tables == 2 && j == 0 && i < (unsigned long) d->rehashidx) { - /* Moreover, if we are currently out of range in the second - * table, there will be no elements in both tables up to - * the current rehashing index, so we jump if possible. - * (this happens when going from big to small table). */ - if (i >= d->ht[1].size) i = d->rehashidx; - continue; - } - if (i >= d->ht[j].size) continue; /* Out of range for this table. */ - dictEntry *he = d->ht[j].table[i]; - - /* Count contiguous empty buckets, and jump to other - * locations if they reach 'count' (with a minimum of 5). */ - if (he == NULL) { - emptylen++; - if (emptylen >= 5 && emptylen > count) { - i = random() & maxsizemask; - emptylen = 0; - } - } else { - emptylen = 0; - while (he) { - /* Collect all the elements of the buckets found non - * empty while iterating. */ - *des = he; - des++; - he = he->next; - stored++; - if (stored == count) return stored; - } - } - } - i = (i+1) & maxsizemask; - } - return stored; -} - -/* Function to reverse bits. Algorithm from: - * http://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel */ -static unsigned long rev(unsigned long v) { - unsigned long s = 8 * sizeof(v); // bit size; must be power of 2 - unsigned long mask = ~0; - while ((s >>= 1) > 0) { - mask ^= (mask << s); - v = ((v >> s) & mask) | ((v << s) & ~mask); - } - return v; -} - -/* dictScan() is used to iterate over the elements of a dictionary. - * - * Iterating works the following way: - * - * 1) Initially you call the function using a cursor (v) value of 0. - * 2) The function performs one step of the iteration, and returns the - * new cursor value you must use in the next call. - * 3) When the returned cursor is 0, the iteration is complete. - * - * The function guarantees all elements present in the - * dictionary get returned between the start and end of the iteration. - * However it is possible some elements get returned multiple times. - * - * For every element returned, the callback argument 'fn' is - * called with 'privdata' as first argument and the dictionary entry - * 'de' as second argument. - * - * HOW IT WORKS. - * - * The iteration algorithm was designed by Pieter Noordhuis. - * The main idea is to increment a cursor starting from the higher order - * bits. That is, instead of incrementing the cursor normally, the bits - * of the cursor are reversed, then the cursor is incremented, and finally - * the bits are reversed again. - * - * This strategy is needed because the hash table may be resized between - * iteration calls. - * - * dict.c hash tables are always power of two in size, and they - * use chaining, so the position of an element in a given table is given - * by computing the bitwise AND between Hash(key) and SIZE-1 - * (where SIZE-1 is always the mask that is equivalent to taking the rest - * of the division between the Hash of the key and SIZE). - * - * For example if the current hash table size is 16, the mask is - * (in binary) 1111. The position of a key in the hash table will always be - * the last four bits of the hash output, and so forth. - * - * WHAT HAPPENS IF THE TABLE CHANGES IN SIZE? - * - * If the hash table grows, elements can go anywhere in one multiple of - * the old bucket: for example let's say we already iterated with - * a 4 bit cursor 1100 (the mask is 1111 because hash table size = 16). - * - * If the hash table will be resized to 64 elements, then the new mask will - * be 111111. The new buckets you obtain by substituting in ??1100 - * with either 0 or 1 can be targeted only by keys we already visited - * when scanning the bucket 1100 in the smaller hash table. - * - * By iterating the higher bits first, because of the inverted counter, the - * cursor does not need to restart if the table size gets bigger. It will - * continue iterating using cursors without '1100' at the end, and also - * without any other combination of the final 4 bits already explored. - * - * Similarly when the table size shrinks over time, for example going from - * 16 to 8, if a combination of the lower three bits (the mask for size 8 - * is 111) were already completely explored, it would not be visited again - * because we are sure we tried, for example, both 0111 and 1111 (all the - * variations of the higher bit) so we don't need to test it again. - * - * WAIT... YOU HAVE *TWO* TABLES DURING REHASHING! - * - * Yes, this is true, but we always iterate the smaller table first, then - * we test all the expansions of the current cursor into the larger - * table. For example if the current cursor is 101 and we also have a - * larger table of size 16, we also test (0)101 and (1)101 inside the larger - * table. This reduces the problem back to having only one table, where - * the larger one, if it exists, is just an expansion of the smaller one. - * - * LIMITATIONS - * - * This iterator is completely stateless, and this is a huge advantage, - * including no additional memory used. - * - * The disadvantages resulting from this design are: - * - * 1) It is possible we return elements more than once. However this is usually - * easy to deal with in the application level. - * 2) The iterator must return multiple elements per call, as it needs to always - * return all the keys chained in a given bucket, and all the expansions, so - * we are sure we don't miss keys moving during rehashing. - * 3) The reverse cursor is somewhat hard to understand at first, but this - * comment is supposed to help. - */ -unsigned long dictScan(dict *d, - unsigned long v, - dictScanFunction *fn, - dictScanBucketFunction* bucketfn, - void *privdata) -{ - dictht *t0, *t1; - const dictEntry *de, *next; - unsigned long m0, m1; - - if (dictSize(d) == 0) return 0; - - if (!dictIsRehashing(d)) { - t0 = &(d->ht[0]); - m0 = t0->sizemask; - - /* Emit entries at cursor */ - if (bucketfn) bucketfn(privdata, &t0->table[v & m0]); - de = t0->table[v & m0]; - while (de) { - next = de->next; - fn(privdata, de); - de = next; - } - - /* Set unmasked bits so incrementing the reversed cursor - * operates on the masked bits */ - v |= ~m0; - - /* Increment the reverse cursor */ - v = rev(v); - v++; - v = rev(v); - - } else { - t0 = &d->ht[0]; - t1 = &d->ht[1]; - - /* Make sure t0 is the smaller and t1 is the bigger table */ - if (t0->size > t1->size) { - t0 = &d->ht[1]; - t1 = &d->ht[0]; - } - - m0 = t0->sizemask; - m1 = t1->sizemask; - - /* Emit entries at cursor */ - if (bucketfn) bucketfn(privdata, &t0->table[v & m0]); - de = t0->table[v & m0]; - while (de) { - next = de->next; - fn(privdata, de); - de = next; - } - - /* Iterate over indices in larger table that are the expansion - * of the index pointed to by the cursor in the smaller table */ - do { - /* Emit entries at cursor */ - if (bucketfn) bucketfn(privdata, &t1->table[v & m1]); - de = t1->table[v & m1]; - while (de) { - next = de->next; - fn(privdata, de); - de = next; - } - - /* Increment the reverse cursor not covered by the smaller mask.*/ - v |= ~m1; - v = rev(v); - v++; - v = rev(v); - - /* Continue while bits covered by mask difference is non-zero */ - } while (v & (m0 ^ m1)); - } - - return v; -} - -/* ------------------------- private functions ------------------------------ */ - -/* Expand the hash table if needed */ -static int _dictExpandIfNeeded(dict *d) -{ - /* Incremental rehashing already in progress. Return. */ - if (dictIsRehashing(d)) return DICT_OK; - - /* If the hash table is empty expand it to the initial size. */ - if (d->ht[0].size == 0) return dictExpand(d, DICT_HT_INITIAL_SIZE); - - /* If we reached the 1:1 ratio, and we are allowed to resize the hash - * table (global setting) or we should avoid it but the ratio between - * elements/buckets is over the "safe" threshold, we resize doubling - * the number of buckets. */ - if (d->ht[0].used >= d->ht[0].size && - (dict_can_resize || - d->ht[0].used/d->ht[0].size > dict_force_resize_ratio)) - { - return dictExpand(d, d->ht[0].used*2); - } - return DICT_OK; -} - -/* Our hash table capability is a power of two */ -static unsigned long _dictNextPower(unsigned long size) -{ - unsigned long i = DICT_HT_INITIAL_SIZE; - - if (size >= LONG_MAX) return LONG_MAX + 1LU; - while(1) { - if (i >= size) - return i; - i *= 2; - } -} - -/* Returns the index of a free slot that can be populated with - * a hash entry for the given 'key'. - * If the key already exists, -1 is returned - * and the optional output parameter may be filled. - * - * Note that if we are in the process of rehashing the hash table, the - * index is always returned in the context of the second (new) hash table. */ -static long _dictKeyIndex(dict *d, const void *key, uint64_t hash, dictEntry **existing) -{ - unsigned long idx, table; - dictEntry *he; - if (existing) *existing = NULL; - - /* Expand the hash table if needed */ - if (_dictExpandIfNeeded(d) == DICT_ERR) - return -1; - for (table = 0; table <= 1; table++) { - idx = hash & d->ht[table].sizemask; - /* Search if this slot does not already contain the given key */ - he = d->ht[table].table[idx]; - while(he) { - if (key==he->key || dictCompareKeys(d, key, he->key)) { - if (existing) *existing = he; - return -1; - } - he = he->next; - } - if (!dictIsRehashing(d)) break; - } - return idx; -} - -void dictEmpty(dict *d, void(callback)(void*)) { - _dictClear(d,&d->ht[0],callback); - _dictClear(d,&d->ht[1],callback); - d->rehashidx = -1; - d->iterators = 0; -} - -void dictEnableResize(void) { - dict_can_resize = 1; -} - -void dictDisableResize(void) { - dict_can_resize = 0; -} - -uint64_t dictGetHash(dict *d, const void *key) { - return dictHashKey(d, key); -} - -/* Finds the dictEntry reference by using pointer and pre-calculated hash. - * oldkey is a dead pointer and should not be accessed. - * the hash value should be provided using dictGetHash. - * no string / key comparison is performed. - * return value is the reference to the dictEntry if found, or NULL if not found. */ -dictEntry **dictFindEntryRefByPtrAndHash(dict *d, const void *oldptr, uint64_t hash) { - dictEntry *he, **heref; - unsigned long idx, table; - - if (d->ht[0].used + d->ht[1].used == 0) return NULL; /* dict is empty */ - for (table = 0; table <= 1; table++) { - idx = hash & d->ht[table].sizemask; - heref = &d->ht[table].table[idx]; - he = *heref; - while(he) { - if (oldptr==he->key) - return heref; - heref = &he->next; - he = *heref; - } - if (!dictIsRehashing(d)) return NULL; - } - return NULL; -} - -/* ------------------------------- Debugging ---------------------------------*/ - -#define DICT_STATS_VECTLEN 50 -size_t _dictGetStatsHt(char *buf, size_t bufsize, dictht *ht, int tableid) { - unsigned long i, slots = 0, chainlen, maxchainlen = 0; - unsigned long totchainlen = 0; - unsigned long clvector[DICT_STATS_VECTLEN]; - size_t l = 0; - - if (ht->used == 0) { - return snprintf(buf,bufsize, - "No stats available for empty dictionaries\n"); - } - - /* Compute stats. */ - for (i = 0; i < DICT_STATS_VECTLEN; i++) clvector[i] = 0; - for (i = 0; i < ht->size; i++) { - dictEntry *he; - - if (ht->table[i] == NULL) { - clvector[0]++; - continue; - } - slots++; - /* For each hash entry on this slot... */ - chainlen = 0; - he = ht->table[i]; - while(he) { - chainlen++; - he = he->next; - } - clvector[(chainlen < DICT_STATS_VECTLEN) ? chainlen : (DICT_STATS_VECTLEN-1)]++; - if (chainlen > maxchainlen) maxchainlen = chainlen; - totchainlen += chainlen; - } - - /* Generate human readable stats. */ - l += snprintf(buf+l,bufsize-l, - "Hash table %d stats (%s):\n" - " table size: %ld\n" - " number of elements: %ld\n" - " different slots: %ld\n" - " max chain length: %ld\n" - " avg chain length (counted): %.02f\n" - " avg chain length (computed): %.02f\n" - " Chain length distribution:\n", - tableid, (tableid == 0) ? "main hash table" : "rehashing target", - ht->size, ht->used, slots, maxchainlen, - (float)totchainlen/slots, (float)ht->used/slots); - - for (i = 0; i < DICT_STATS_VECTLEN-1; i++) { - if (clvector[i] == 0) continue; - if (l >= bufsize) break; - l += snprintf(buf+l,bufsize-l, - " %s%ld: %ld (%.02f%%)\n", - (i == DICT_STATS_VECTLEN-1)?">= ":"", - i, clvector[i], ((float)clvector[i]/ht->size)*100); - } - - /* Unlike snprintf(), teturn the number of characters actually written. */ - if (bufsize) buf[bufsize-1] = '\0'; - return strlen(buf); -} - -void dictGetStats(char *buf, size_t bufsize, dict *d) { - size_t l; - char *orig_buf = buf; - size_t orig_bufsize = bufsize; - - l = _dictGetStatsHt(buf,bufsize,&d->ht[0],0); - buf += l; - bufsize -= l; - if (dictIsRehashing(d) && bufsize > 0) { - _dictGetStatsHt(buf,bufsize,&d->ht[1],1); - } - /* Make sure there is a NULL term at the end. */ - if (orig_bufsize) orig_buf[orig_bufsize-1] = '\0'; -} - -/* ------------------------------- Benchmark ---------------------------------*/ - -#ifdef DICT_BENCHMARK_MAIN - -#include "sds.h" - -uint64_t hashCallback(const void *key) { - return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); -} - -int compareCallback(void *privdata, const void *key1, const void *key2) { - int l1,l2; - DICT_NOTUSED(privdata); - - l1 = sdslen((sds)key1); - l2 = sdslen((sds)key2); - if (l1 != l2) return 0; - return memcmp(key1, key2, l1) == 0; -} - -void freeCallback(void *privdata, void *val) { - DICT_NOTUSED(privdata); - - sdsfree(val); -} - -dictType BenchmarkDictType = { - hashCallback, - NULL, - NULL, - compareCallback, - freeCallback, - NULL -}; - -#define start_benchmark() start = timeInMilliseconds() -#define end_benchmark(msg) do { \ - elapsed = timeInMilliseconds()-start; \ - printf(msg ": %ld items in %lld ms\n", count, elapsed); \ -} while(0); - -/* dict-benchmark [count] */ -int main(int argc, char **argv) { - long j; - long long start, elapsed; - dict *dict = dictCreate(&BenchmarkDictType,NULL); - long count = 0; - - if (argc == 2) { - count = strtol(argv[1],NULL,10); - } else { - count = 5000000; - } - - start_benchmark(); - for (j = 0; j < count; j++) { - int retval = dictAdd(dict,sdsfromlonglong(j),(void*)j); - assert(retval == DICT_OK); - } - end_benchmark("Inserting"); - assert((long)dictSize(dict) == count); - - /* Wait for rehashing. */ - while (dictIsRehashing(dict)) { - dictRehashMilliseconds(dict,100); - } - - start_benchmark(); - for (j = 0; j < count; j++) { - sds key = sdsfromlonglong(j); - dictEntry *de = dictFind(dict,key); - assert(de != NULL); - sdsfree(key); - } - end_benchmark("Linear access of existing elements"); - - start_benchmark(); - for (j = 0; j < count; j++) { - sds key = sdsfromlonglong(j); - dictEntry *de = dictFind(dict,key); - assert(de != NULL); - sdsfree(key); - } - end_benchmark("Linear access of existing elements (2nd round)"); - - start_benchmark(); - for (j = 0; j < count; j++) { - sds key = sdsfromlonglong(rand() % count); - dictEntry *de = dictFind(dict,key); - assert(de != NULL); - sdsfree(key); - } - end_benchmark("Random access of existing elements"); - - start_benchmark(); - for (j = 0; j < count; j++) { - sds key = sdsfromlonglong(rand() % count); - key[0] = 'X'; - dictEntry *de = dictFind(dict,key); - assert(de == NULL); - sdsfree(key); - } - end_benchmark("Accessing missing"); - - start_benchmark(); - for (j = 0; j < count; j++) { - sds key = sdsfromlonglong(j); - int retval = dictDelete(dict,key); - assert(retval == DICT_OK); - key[0] += 17; /* Change first number to letter. */ - retval = dictAdd(dict,key,(void*)j); - assert(retval == DICT_OK); - } - end_benchmark("Removing and adding"); -} -#endif diff --git a/dict.h b/dict.h deleted file mode 100644 index 826df20..0000000 --- a/dict.h +++ /dev/null @@ -1,190 +0,0 @@ -/* Hash Tables Implementation. - * - * This file implements in-memory hash tables with insert/del/replace/find/ - * get-random-element operations. Hash tables will auto-resize if needed - * tables of power of two in size are used, collisions are handled by - * chaining. See the source code for more information... :) - * - * Copyright (c) 2006-2012, Salvatore Sanfilippo - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of Redis nor the names of its contributors may be used - * to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include - -#ifndef __DICT_H -#define __DICT_H - -#define DICT_OK 0 -#define DICT_ERR 1 - -/* Unused arguments generate annoying warnings... */ -#define DICT_NOTUSED(V) ((void) V) - -typedef struct dictEntry { - void *key; - union { - void *val; - uint64_t u64; - int64_t s64; - double d; - } v; - struct dictEntry *next; -} dictEntry; - -typedef struct dictType { - uint64_t (*hashFunction)(const void *key); - void *(*keyDup)(void *privdata, const void *key); - void *(*valDup)(void *privdata, const void *obj); - int (*keyCompare)(void *privdata, const void *key1, const void *key2); - void (*keyDestructor)(void *privdata, void *key); - void (*valDestructor)(void *privdata, void *obj); -} dictType; - -/* This is our hash table structure. Every dictionary has two of this as we - * implement incremental rehashing, for the old to the new table. */ -typedef struct dictht { - dictEntry **table; - unsigned long size; - unsigned long sizemask; - unsigned long used; -} dictht; - -typedef struct dict { - dictType *type; - void *privdata; - dictht ht[2]; - long rehashidx; /* rehashing not in progress if rehashidx == -1 */ - unsigned long iterators; /* number of iterators currently running */ -} dict; - -/* If safe is set to 1 this is a safe iterator, that means, you can call - * dictAdd, dictFind, and other functions against the dictionary even while - * iterating. Otherwise it is a non safe iterator, and only dictNext() - * should be called while iterating. */ -typedef struct dictIterator { - dict *d; - long index; - int table, safe; - dictEntry *entry, *nextEntry; - /* unsafe iterator fingerprint for misuse detection. */ - long long fingerprint; -} dictIterator; - -typedef void (dictScanFunction)(void *privdata, const dictEntry *de); -typedef void (dictScanBucketFunction)(void *privdata, dictEntry **bucketref); - -/* This is the initial size of every hash table */ -#define DICT_HT_INITIAL_SIZE 4 - -/* ------------------------------- Macros ------------------------------------*/ -#define dictFreeVal(d, entry) \ - if ((d)->type->valDestructor) \ - (d)->type->valDestructor((d)->privdata, (entry)->v.val) - -#define dictSetVal(d, entry, _val_) do { \ - if ((d)->type->valDup) \ - (entry)->v.val = (d)->type->valDup((d)->privdata, _val_); \ - else \ - (entry)->v.val = (_val_); \ -} while(0) - -#define dictSetSignedIntegerVal(entry, _val_) \ - do { (entry)->v.s64 = _val_; } while(0) - -#define dictSetUnsignedIntegerVal(entry, _val_) \ - do { (entry)->v.u64 = _val_; } while(0) - -#define dictSetDoubleVal(entry, _val_) \ - do { (entry)->v.d = _val_; } while(0) - -#define dictFreeKey(d, entry) \ - if ((d)->type->keyDestructor) \ - (d)->type->keyDestructor((d)->privdata, (entry)->key) - -#define dictSetKey(d, entry, _key_) do { \ - if ((d)->type->keyDup) \ - (entry)->key = (d)->type->keyDup((d)->privdata, _key_); \ - else \ - (entry)->key = (_key_); \ -} while(0) - -#define dictCompareKeys(d, key1, key2) \ - (((d)->type->keyCompare) ? \ - (d)->type->keyCompare((d)->privdata, key1, key2) : \ - (key1) == (key2)) - -#define dictHashKey(d, key) (d)->type->hashFunction(key) -#define dictGetKey(he) ((he)->key) -#define dictGetVal(he) ((he)->v.val) -#define dictGetSignedIntegerVal(he) ((he)->v.s64) -#define dictGetUnsignedIntegerVal(he) ((he)->v.u64) -#define dictGetDoubleVal(he) ((he)->v.d) -#define dictSlots(d) ((d)->ht[0].size+(d)->ht[1].size) -#define dictSize(d) ((d)->ht[0].used+(d)->ht[1].used) -#define dictIsRehashing(d) ((d)->rehashidx != -1) - -/* API */ -dict *dictCreate(dictType *type, void *privDataPtr); -int dictExpand(dict *d, unsigned long size); -int dictAdd(dict *d, void *key, void *val); -dictEntry *dictAddRaw(dict *d, void *key, dictEntry **existing); -dictEntry *dictAddOrFind(dict *d, void *key); -int dictReplace(dict *d, void *key, void *val); -int dictDelete(dict *d, const void *key); -dictEntry *dictUnlink(dict *ht, const void *key); -void dictFreeUnlinkedEntry(dict *d, dictEntry *he); -void dictRelease(dict *d); -dictEntry * dictFind(dict *d, const void *key); -void *dictFetchValue(dict *d, const void *key); -int dictResize(dict *d); -dictIterator *dictGetIterator(dict *d); -dictIterator *dictGetSafeIterator(dict *d); -dictEntry *dictNext(dictIterator *iter); -void dictReleaseIterator(dictIterator *iter); -dictEntry *dictGetRandomKey(dict *d); -unsigned int dictGetSomeKeys(dict *d, dictEntry **des, unsigned int count); -void dictGetStats(char *buf, size_t bufsize, dict *d); -uint64_t dictGenHashFunction(const void *key, int len); -uint64_t dictGenCaseHashFunction(const unsigned char *buf, int len); -void dictEmpty(dict *d, void(callback)(void*)); -void dictEnableResize(void); -void dictDisableResize(void); -int dictRehash(dict *d, int n); -int dictRehashMilliseconds(dict *d, int ms); -void dictSetHashFunctionSeed(uint8_t *seed); -uint8_t *dictGetHashFunctionSeed(void); -unsigned long dictScan(dict *d, unsigned long v, dictScanFunction *fn, dictScanBucketFunction *bucketfn, void *privdata); -uint64_t dictGetHash(dict *d, const void *key); -dictEntry **dictFindEntryRefByPtrAndHash(dict *d, const void *oldptr, uint64_t hash); - -/* Hash table types */ -extern dictType dictTypeHeapStringCopyKey; -extern dictType dictTypeHeapStrings; -extern dictType dictTypeHeapStringCopyKeyValue; - -#endif /* __DICT_H */ diff --git a/dqxx.c b/dqxx.c deleted file mode 100644 index 07b6037..0000000 --- a/dqxx.c +++ /dev/null @@ -1,67 +0,0 @@ -#include "dqxx.h" -#include "db.h" -#include /* for uint32_t */ -#include "event.h" -#include /* for sprintf() */ - -char dqxx_err[256]; - -/* Flag PMTs which are not operational based on the DQCH and DQCR banks. - * - * Returns 0 on success or -1 on error. */ -int dqxx_init(dict *db, event *ev) -{ - int i, j, k, id; - uint32_t *dqch, *dqcr, dqch_word, dqcr_word; - - for (i = 0; i < 19; i++) { - dqch = (uint32_t *) get_bank(db, "DQCH", i); - dqcr = (uint32_t *) get_bank(db, "DQCR", i); - - if (!dqch) { - sprintf(dqxx_err, "failed to load DQCH for crate %i\n", i); - return -1; - } - - if (!dqcr) { - sprintf(dqxx_err, "failed to load DQCR for crate %i\n", i); - return -1; - } - - for (j = 0; j < 16; j++) { - dqcr_word = dqcr[30+KDQCR_TABLE+j]; - - for (k = 0; k < 32; k++) { - id = i*512 + j*32 + k; - dqch_word = dqch[30+KDQCH_TABLE+32*j+k]; - - - if (dqch_word & KDQCH_B_PMT_CABLE) - ev->pmt_hits[id].flags |= 0x2; - else if (dqch_word & KDQCH_B_PMTIC_RESISTOR) - ev->pmt_hits[id].flags |= 0x2; - else if (dqch_word & KDQCH_B_SEQUENCER) - ev->pmt_hits[id].flags |= 0x2; - else if (dqch_word & KDQCH_B_750OHM) - ev->pmt_hits[id].flags |= 0x2; - else if (dqch_word & KDQCH_B_NOT_OP) - ev->pmt_hits[id].flags |= 0x2; - - if (dqcr_word & KDQCR_B_CRATE) - ev->pmt_hits[id].flags |= 0x2; - else if (dqcr_word & KDQCR_B_MB) - ev->pmt_hits[id].flags |= 0x2; - else if (dqcr_word & KDQCR_B_PMTIC) - ev->pmt_hits[id].flags |= 0x2; - else if (dqcr_word & KDQCR_B_DAQ) - ev->pmt_hits[id].flags |= 0x2; - else if (dqcr_word & KDQCR_B_GT) - ev->pmt_hits[id].flags |= 0x2; - else if (dqcr_word & (1 << (12 + k/8))) - ev->pmt_hits[id].flags |= 0x2; - } - } - } - - return 0; -} diff --git a/dqxx.h b/dqxx.h deleted file mode 100644 index f5ebe1b..0000000 --- a/dqxx.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifndef DQXX_H -#define DQXX_H - -#include "event.h" -#include "dict.h" - -extern char dqxx_err[256]; - -/* bits used in the DQCH title bank. */ - -#define KDQCH_TABLE 10 - -/* PMT cable in (0), out or unknown tube type (1) */ -#define KDQCH_B_PMT_CABLE 0x1 -/* PMTIC channel resistor present (0), not present (1) */ -#define KDQCH_B_PMTIC_RESISTOR 0x2 -/* Channel sequencer enabled (0), disabled (1) */ -#define KDQCH_B_SEQUENCER 0x4 -/* 100ns trigger enabled (0), disabled (1) */ -#define KDQCH_B_100NS 0x8 -/* 20ns trigger enabled (0), disabled (1) */ -#define KDQCH_B_20NS 0x10 -/* 750 Ohm terminator OK (0), blown (1) */ -#define KDQCH_B_750OHM 0x20 -/* Qinj OK (0), malfunctioning i.e. Large/Small/Bad (1) */ -#define KDQCH_B_QINJ 0x40 -/* 100 ns trigger OK (0), dead (1) */ -#define KDQCH_B_N100 0x80 -/* 20 ns trigger OK (0), dead (1) */ -#define KDQCH_B_N20 0x100 -/* operational (0), not operational (1) */ -#define KDQCH_B_NOT_OP 0x200 -/* logical OR of bits 0-9 */ -#define KDQCH_B_BAD 0x400 -/* Bits 16-24 represent the voltage threshold, and bits 24-32 represent the - * voltage threshold zero. */ - -/* bits used in the DQCR title bank. */ - -#define KDQCR_TABLE 10 - -/* Crate present (0), not present (1) */ -#define KDQCR_B_CRATE 0x1 -/* MB present (0), not present (1) */ -#define KDQCR_B_MB 0x2 -/* PMTIC present (0), not present (1) */ -#define KDQCR_B_PMTIC 0x4 -/* DAQ readout (eCPU) online (0), offline (1) */ -#define KDQCR_B_DAQ 0x8 -/* Daughter cards all present (0), 4 bit mask of present DC. - * Channel i associated with DC at bit DC + i/8. */ -#define KDQCR_B_DC 0x10 -/* OR of bits 0-7, 2-15. - * This is deemed to mean 'slot operation', as it is an OR of crate, slot, db, - * etc. operational. */ -#define KDQCR_B_SLOT_OP 0x100 -/* GT mask for crate, i.e. is this crate receiving global triggers. */ -#define KDQCR_B_GT 0x200 -/* Crate on-line (i.e. is being read out by ECPU). */ -#define KDQCR_B_CR_ONLINE 0x400 -/* or of bit 0 (SNO crate present) and bits 16-31 (HV bits). */ -#define KDQCR_B_CR_HV 0x800 -/* HV relays all on (0), 4 bit mask of relays on. */ -#define KDQCR_B_RELAY 0x1000 - -int dqxx_init(dict *db, event *ev); - -#endif diff --git a/event.h b/event.h deleted file mode 100644 index ecb498d..0000000 --- a/event.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef EVENT_H -#define EVENT_H - -#include - -/* Struct to hold all data from a single event used for fitting. */ - -typedef struct pmt_hit { - int hit; - float t; - float qhl; - float qhs; - float qlx; - int flags; -} pmt_hit; - -typedef struct event { - int run; - uint32_t gtid; - pmt_hit pmt_hits[10000]; -} event; - -#endif diff --git a/fit.c b/fit.c deleted file mode 100644 index b6e441a..0000000 --- a/fit.c +++ /dev/null @@ -1,205 +0,0 @@ -#include "likelihood.h" -#include -#include "zebra.h" -#include "Record_Info.h" -#include "event.h" -#include "zdab_utils.h" -#include -#include -#include "scattering.h" -#include "pmt.h" -#include "sno_charge.h" -#include "db.h" -#include "dqxx.h" - -#define EV_RECORD 0x45562020 // 'EV ' (as written to ZDAB file) - -double nll(const gsl_vector *v, void *params) -{ - double T, theta, phi, t0; - double pos[3], dir[3]; - - T = gsl_vector_get(v,0); - - /* FIXME: should use a minimization algorithm with bounds. */ - if (T < 0) return 1e9; - - pos[0] = gsl_vector_get(v,1); - pos[1] = gsl_vector_get(v,2); - pos[2] = gsl_vector_get(v,3); - - theta = gsl_vector_get(v,4); - phi = gsl_vector_get(v,5); - dir[0] = sin(theta)*cos(phi); - dir[1] = sin(theta)*sin(phi); - dir[2] = cos(theta); - - t0 = gsl_vector_get(v,6); - - return nll_muon((event *) params, T, pos, dir, t0); -} - -int main(int argc, char **argv) -{ - int i; - zebraFile *f; - bank b; - int rv; - PMTBank bpmt; - EVBank bev; - event ev = {0}; - int crate, card, channel; - int id; - - if (argc < 2) { - fprintf(stderr, "usage: fit [filename]\n"); - return 1; - } - - f = zebra_open(argv[1]); - - if (!f) { - fprintf(stderr, "%s\n", zebra_err); - return 1; - } - - load_pmt_info(); - - for (i = 0; i < 10000; i++) { - ev.pmt_hits[i].hit = 0; - ev.pmt_hits[i].flags = 0; - } - - ev.run = -1; - - const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex2; - gsl_multimin_fminimizer *s = NULL; - gsl_vector *ss, *x; - gsl_multimin_function minex_func; - - size_t iter = 0; - int status; - double size; - - /* Starting point */ - x = gsl_vector_alloc(7); - - ss = gsl_vector_alloc(7); - - minex_func.n = 7; - minex_func.f = nll; - minex_func.params = &ev; - - init_interpolation(); - init_charge(); - dict *db = db_init(); - - if (load_file(db, "DQXX_0000010000.dat")) { - fprintf(stderr, "failed to load DQXX_0000010000.dat: %s\n", db_err); - exit(1); - } - - if (dqxx_init(db, &ev)) { - fprintf(stderr, "failed to initialize DQXX bank: %s\n", dqxx_err); - exit(1); - } - - while (1) { - rv = next_bank(f, &b); - - if (rv == -1) { - fprintf(stderr, "error getting bank: %s\n", zebra_err); - goto err; - } else if (rv == 1) { - /* EOF */ - break; - } - - if (b.name == PMT_RECORD) { - unpack_pmt(b.data, &bpmt); - card = bpmt.pin/1024; - crate = (bpmt.pin % 1024)/32; - channel = bpmt.pin % 32; - id = crate*512 + card*32 + channel; - ev.pmt_hits[id].hit = 1; - ev.pmt_hits[id].t = bpmt.pt; - ev.pmt_hits[id].qhl = bpmt.phl; - ev.pmt_hits[id].qhs = bpmt.phs; - ev.pmt_hits[id].qlx = bpmt.plx; - //ev.pmt_hits[id].flags |= bpmt.pn & KPF_DIS; - } else if (b.name == EV_RECORD) { - unpack_ev(b.data, &bev); - if (ev.run != -1) { - if (ev.run != bev.run || ev.gtid != bev.gtr_id) { - /* New event, so we need to fit the old event. */ - iter = 0; - - gsl_vector_set(x,0,1000.0); - gsl_vector_set(x,1,100.0); - gsl_vector_set(x,2,100.0); - gsl_vector_set(x,3,100.0); - gsl_vector_set(x,4,1.57); - gsl_vector_set(x,5,0.0); - gsl_vector_set(x,6,120.0); - - gsl_vector_set(ss,0,10.0); - gsl_vector_set(ss,1,10.0); - gsl_vector_set(ss,2,10.0); - gsl_vector_set(ss,3,10.0); - gsl_vector_set(ss,4,0.1); - gsl_vector_set(ss,5,0.1); - gsl_vector_set(ss,6,1.0); - - s = gsl_multimin_fminimizer_alloc(T, 7); - gsl_multimin_fminimizer_set(s, &minex_func, x, ss); - - do { - iter++; - status = gsl_multimin_fminimizer_iterate(s); - - if (status) break; - - size = gsl_multimin_fminimizer_size(s); - status = gsl_multimin_test_size(size,1e-2); - - if (status == GSL_SUCCESS) { - printf("converged to minimum at\n"); - } - - printf("%5zu %.2g %.2g %.2g %.2g %.2g %.2g %.2g f() = %7.3e size = %.3f\n", - iter, - gsl_vector_get(s->x,0), - gsl_vector_get(s->x,1), - gsl_vector_get(s->x,2), - gsl_vector_get(s->x,3), - gsl_vector_get(s->x,4), - gsl_vector_get(s->x,5), - gsl_vector_get(s->x,6), - s->fval, - size); - } while (status == GSL_CONTINUE && iter < 1000); - - gsl_multimin_fminimizer_free(s); - } - } - ev.run = bev.run; - ev.gtid = bev.gtr_id; - } - } - - free_interpolation(); - - db_free(db); - - gsl_vector_free(x); - gsl_vector_free(ss); - - zebra_close(f); - - return 0; - -err: - - zebra_close(f); - return 1; -} diff --git a/fmacros.h b/fmacros.h deleted file mode 100644 index 6e56c75..0000000 --- a/fmacros.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 2009-2012, Salvatore Sanfilippo - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of Redis nor the names of its contributors may be used - * to endorse or promote products derived from this software without - * specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef _REDIS_FMACRO_H -#define _REDIS_FMACRO_H - -#define _BSD_SOURCE - -#if defined(__linux__) -#define _GNU_SOURCE -#define _DEFAULT_SOURCE -#endif - -#if defined(_AIX) -#define _ALL_SOURCE -#endif - -#if defined(__linux__) || defined(__OpenBSD__) -#define _XOPEN_SOURCE 700 -/* - * On NetBSD, _XOPEN_SOURCE undefines _NETBSD_SOURCE and - * thus hides inet_aton etc. - */ -#elif !defined(__NetBSD__) -#define _XOPEN_SOURCE -#endif - -#if defined(__sun) -#define _POSIX_C_SOURCE 199506L -#endif - -#define _LARGEFILE_SOURCE -#define _FILE_OFFSET_BITS 64 - -#endif diff --git a/likelihood.c b/likelihood.c deleted file mode 100644 index 98a4ad7..0000000 --- a/likelihood.c +++ /dev/null @@ -1,274 +0,0 @@ -#include "likelihood.h" -#include /* for size_t */ -#include "pmt.h" -#include -#include "muon.h" -#include "misc.h" -#include -#include "sno.h" -#include "vector.h" -#include "event.h" -#include "optics.h" -#include "sno_charge.h" -#include "pdg.h" - -double F(double t, double mu_noise, double mu_indirect, double *mu_direct, size_t n, double *ts, double tmean, double sigma) -{ - /* Returns the CDF for the time distribution of photons at time `t`. */ - size_t i; - double p, mu_total; - - p = mu_noise*t/GTVALID + mu_indirect*(pow(sigma,2)*norm(tmean,t,sigma) + (t-tmean)*norm_cdf(t,tmean,sigma))/(GTVALID-tmean); - - mu_total = mu_noise + mu_indirect; - for (i = 0; i < n; i++) { - p += mu_direct[i]*norm_cdf(t,ts[i],sigma); - mu_total += mu_direct[i]; - } - - return p/mu_total; -} - -double f(double t, double mu_noise, double mu_indirect, double *mu_direct, size_t n, double *ts, double tmean, double sigma) -{ - /* Returns the probability that a photon is detected at time `t`. - * - * The probability distribution is the sum of three different components: - * dark noise, indirect light, and direct light. The dark noise is assumed - * to be constant in time. The direct light is assumed to be a delta - * function around the times `ts`, where each element of `ts` comes from a - * different particle. This assumption is probably valid for particles - * like muons which don't scatter much, and the hope is that it is *good - * enough* for electrons too. The probability distribution for indirect - * light is assumed to be a step function past some time `tmean`. - * - * The probability returned is calculated by taking the sum of these three - * components and convolving it with a gaussian with standard deviation - * `sigma` which should typically be the PMT transit time spread. */ - size_t i; - double p, mu_total; - - p = mu_noise/GTVALID + mu_indirect*norm_cdf(t,tmean,sigma)/(GTVALID-tmean); - - mu_total = mu_noise + mu_indirect; - for (i = 0; i < n; i++) { - p += mu_direct[i]*norm(t,ts[i],sigma); - mu_total += mu_direct[i]; - } - - return p/mu_total; -} - -double log_pt(double t, size_t n, double mu_noise, double mu_indirect, double *mu_direct, size_t n2, double *ts, double tmean, double sigma) -{ - /* Returns the first order statistic for observing a PMT hit at time `t` - * given `n` hits. - * - * The first order statistic is computed from the probability distribution - * above. It's not obvious whether one should take the first order - * statistic before or after convolving with the PMT transit time spread. - * Since at least some of the transit time spread in SNO comes from the - * different transit times across the face of the PMT, it seems better to - * convolve first which is what we do here. In addition, the problem is not - * analytically tractable if you do things the other way around. */ - return log(n) + (n-1)*log1p(-F(t,mu_noise,mu_indirect,mu_direct,n2,ts,tmean,sigma)) + log(f(t,mu_noise,mu_indirect,mu_direct,n2,ts,tmean,sigma)); -} - -static double gsl_muon_time(double x, void *params) -{ - double *params2 = (double *) params; - double T0 = params2[0]; - double pos0[3], dir[3], pos[3], pmt_dir[3]; - int i; - double t; - i = (int) params2[1]; - pos0[0] = params2[2]; - pos0[1] = params2[3]; - pos0[2] = params2[4]; - dir[0] = params2[5]; - dir[1] = params2[6]; - dir[2] = params2[7]; - - pos[0] = pos0[0] + dir[0]*x; - pos[1] = pos0[1] + dir[1]*x; - pos[2] = pos0[2] + dir[2]*x; - - SUB(pmt_dir,pmts[i].pos,pos); - - double distance = NORM(pmt_dir); - - /* FIXME: I just calculate delta assuming 400 nm light. */ - double wavelength0 = 400.0; - double n = get_index(HEAVY_WATER_DENSITY, wavelength0, 10.0); - - t = x/SPEED_OF_LIGHT + distance*n/SPEED_OF_LIGHT; - - return t*get_expected_charge(x, get_T(T0, x, HEAVY_WATER_DENSITY), pos, dir, pmts[i].pos, pmts[i].normal, PMT_RADIUS); -} - -static double gsl_muon_charge(double x, void *params) -{ - double *params2 = (double *) params; - double T0 = params2[0]; - double pos0[3], dir[3], pos[3]; - int i; - i = (int) params2[1]; - pos0[0] = params2[2]; - pos0[1] = params2[3]; - pos0[2] = params2[4]; - dir[0] = params2[5]; - dir[1] = params2[6]; - dir[2] = params2[7]; - - pos[0] = pos0[0] + dir[0]*x; - pos[1] = pos0[1] + dir[1]*x; - pos[2] = pos0[2] + dir[2]*x; - - return get_expected_charge(x, get_T(T0, x, HEAVY_WATER_DENSITY), pos, dir, pmts[i].pos, pmts[i].normal, PMT_RADIUS); -} - -double nll_muon(event *ev, double T, double *pos, double *dir, double t0) -{ - size_t i, j; - double params[8]; - double total_charge; - double logp[MAX_PE], nll, range, pmt_dir[3], R, x, cos_theta, theta, theta_cerenkov; - double tmean = 0.0; - int npmt = 0; - - double mu_direct[MAX_PMTS]; - double ts[MAX_PMTS]; - double mu[MAX_PMTS]; - double mu_noise, mu_indirect; - - gsl_integration_cquad_workspace *w = gsl_integration_cquad_workspace_alloc(100); - double result, error; - - size_t nevals; - - gsl_function F; - F.params = ¶ms; - - range = get_range(T, HEAVY_WATER_DENSITY); - - total_charge = 0.0; - npmt = 0; - for (i = 0; i < MAX_PMTS; i++) { - if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; - - params[0] = T; - params[1] = i; - params[2] = pos[0]; - params[3] = pos[1]; - params[4] = pos[2]; - params[5] = dir[0]; - params[6] = dir[1]; - params[7] = dir[2]; - - /* First, we try to compute the distance along the track where the - * PMT is at the Cerenkov angle. The reason for this is because for - * heavy particles like muons which don't scatter much, the probability - * distribution for getting a photon hit along the track looks kind of - * like a delta function, i.e. the PMT is only hit over a very narrow - * window when the angle between the track direction and the PMT is - * *very* close to the Cerenkov angle (it's not a perfect delta - * function since there is some width due to dispersion). In this case, - * it's possible that the numerical integration completely skips over - * the delta function and so predicts an expected charge of 0. To fix - * this, we compute the integral in two steps, one up to the point - * along the track where the PMT is at the Cerenkov angle and another - * from that point to the end of the track. Since the integration - * routine always samples points near the beginning and end of the - * integral, this allows the routine to correctly compute that the - * integral is non zero. */ - - SUB(pmt_dir,pmts[i].pos,pos); - /* Compute the distance to the PMT. */ - R = NORM(pmt_dir); - normalize(pmt_dir); - - /* Calculate the cosine of the angle between the track direction and the - * vector to the PMT. */ - cos_theta = DOT(dir,pmt_dir); - /* Compute the angle between the track direction and the PMT. */ - theta = acos(cos_theta); - /* Compute the Cerenkov angle. Note that this isn't entirely correct - * since we aren't including the factor of beta, but since the point is - * just to split up the integral, we only need to find a point along - * the track close enough such that the integral isn't completely zero. - */ - theta_cerenkov = acos(1/get_index(WATER_DENSITY,400.0,10.0)); - - /* Now, we compute the distance along the track where the PMT is at the - * Cerenkov angle. */ - x = R*sin(theta_cerenkov-theta)/sin(theta_cerenkov); - - if (x > 0 && x < range) { - /* Split up the integral at the point where the PMT is at the - * Cerenkov angle. */ - F.function = &gsl_muon_charge; - gsl_integration_cquad(&F, 0, x, 0, 1e-2, w, &result, &error, &nevals); - mu_direct[i] = result; - gsl_integration_cquad(&F, x, range, 0, 1e-2, w, &result, &error, &nevals); - mu_direct[i] += result; - - F.function = &gsl_muon_time; - gsl_integration_cquad(&F, 0, x, 0, 1e-2, w, &result, &error, &nevals); - ts[i] = result; - gsl_integration_cquad(&F, x, range, 0, 1e-2, w, &result, &error, &nevals); - ts[i] += result; - } else { - F.function = &gsl_muon_charge; - gsl_integration_cquad(&F, 0, range, 0, 1e-2, w, &result, &error, &nevals); - mu_direct[i] = result; - - F.function = &gsl_muon_time; - gsl_integration_cquad(&F, 0, range, 0, 1e-2, w, &result, &error, &nevals); - ts[i] = result; - } - - total_charge += mu_direct[i]; - - if (mu_direct[i] > 0.001) { - ts[i] /= mu_direct[i]; - ts[i] += t0; - tmean += ts[i]; - npmt += 1; - } else { - ts[i] = 0.0; - } - } - - tmean /= npmt; - - gsl_integration_cquad_workspace_free(w); - - mu_noise = DARK_RATE*GTVALID*1e-9; - mu_indirect = total_charge/CHARGE_FRACTION; - - for (i = 0; i < MAX_PMTS; i++) { - if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; - mu[i] = mu_direct[i] + mu_indirect + mu_noise; - } - - nll = 0; - for (i = 0; i < MAX_PMTS; i++) { - if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; - - if (ev->pmt_hits[i].hit) { - logp[0] = -INFINITY; - for (j = 1; j < MAX_PE; j++) { - logp[j] = log(pq(ev->pmt_hits[i].qhs,j)) - mu[i] + j*log(mu[i]) - gsl_sf_lnfact(j) + log_pt(ev->pmt_hits[i].t, j, mu_noise, mu_indirect, &mu_direct[i], 1, &ts[i], tmean, 1.5); - } - nll -= logsumexp(logp, sizeof(logp)/sizeof(double)); - } else { - logp[0] = -mu[i]; - for (j = 1; j < MAX_PE; j++) { - logp[j] = log(get_pmiss(j)) - mu[i] + j*log(mu[i]) - gsl_sf_lnfact(j); - } - nll -= logsumexp(logp, sizeof(logp)/sizeof(double)); - } - } - - return nll; -} diff --git a/likelihood.h b/likelihood.h deleted file mode 100644 index ebfeb97..0000000 --- a/likelihood.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef LIKELIHOOD_H -#define LIKELIHOOD_H - -#include "event.h" - -#define MAX_PE 100 -#define CHARGE_FRACTION 150000.0 -#define DARK_RATE 500.0 -/* Single PE transit time spread (ns). */ -#define PMT_TTS 1.5 -/* Event window (ns) */ -#define GTVALID 400.0 - -double nll_muon(event *ev, double T, double *pos, double *dir, double t0); - -#endif diff --git a/misc.c b/misc.c deleted file mode 100644 index 74c729e..0000000 --- a/misc.c +++ /dev/null @@ -1,42 +0,0 @@ -#include "misc.h" -#include -#include /* for size_t */ - -double logsumexp(double *a, size_t n) -{ - /* Returns the log of the sum of the exponentials of the array `a`. - * - * This function is designed to reduce underflow when the exponentials of - * `a` are very small, for example when computing probabilities. */ - size_t i; - double amax, sum; - - amax = a[0]; - for (i = 0; i < n; i++) { - if (a[i] > amax) amax = a[i]; - } - - sum = 0.0; - - for (i = 0; i < n; i++) { - sum += exp(a[i]-amax); - } - - sum = log(sum); - - return amax + sum; -} - -double norm(double x, double mu, double sigma) -{ - /* Returns the PDF for a gaussian random variable with mean `mu` and - * standard deviation `sigma`. */ - return exp(-pow(x-mu,2)/(2*pow(sigma,2)))/(sqrt(2*M_PI)*sigma); -} - -double norm_cdf(double x, double mu, double sigma) -{ - /* Returns the CDF for a gaussian random variable with mean `mu` and - * standard deviation `sigma`. */ - return erfc(-(x-mu)/(sqrt(2)*sigma))/2.0; -} diff --git a/misc.h b/misc.h deleted file mode 100644 index bd114aa..0000000 --- a/misc.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef MISC_H -#define MISC_H - -#include /* for size_t */ - -double logsumexp(double *a, size_t n); -double norm(double x, double mu, double sigma); -double norm_cdf(double x, double mu, double sigma); - -#endif diff --git a/mt19937ar.c b/mt19937ar.c deleted file mode 100755 index 0dda925..0000000 --- a/mt19937ar.c +++ /dev/null @@ -1,170 +0,0 @@ -/* - A C-program for MT19937, with initialization improved 2002/1/26. - Coded by Takuji Nishimura and Makoto Matsumoto. - - Before using, initialize the state by using init_genrand(seed) - or init_by_array(init_key, key_length). - - Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. The names of its contributors may not be used to endorse or promote - products derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - Any feedback is very welcome. - http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html - email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) -*/ - -/* Period parameters */ -#define N 624 -#define M 397 -#define MATRIX_A 0x9908b0dfUL /* constant vector a */ -#define UPPER_MASK 0x80000000UL /* most significant w-r bits */ -#define LOWER_MASK 0x7fffffffUL /* least significant r bits */ - -static unsigned long mt[N]; /* the array for the state vector */ -static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */ - -/* initializes mt[N] with a seed */ -void init_genrand(unsigned long s) -{ - mt[0]= s & 0xffffffffUL; - for (mti=1; mti> 30)) + mti); - /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */ - /* In the previous versions, MSBs of the seed affect */ - /* only MSBs of the array mt[]. */ - /* 2002/01/09 modified by Makoto Matsumoto */ - mt[mti] &= 0xffffffffUL; - /* for >32 bit machines */ - } -} - -/* initialize by an array with array-length */ -/* init_key is the array for initializing keys */ -/* key_length is its length */ -/* slight change for C++, 2004/2/26 */ -void init_by_array(unsigned long init_key[], int key_length) -{ - int i, j, k; - init_genrand(19650218UL); - i=1; j=0; - k = (N>key_length ? N : key_length); - for (; k; k--) { - mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL)) - + init_key[j] + j; /* non linear */ - mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ - i++; j++; - if (i>=N) { mt[0] = mt[N-1]; i=1; } - if (j>=key_length) j=0; - } - for (k=N-1; k; k--) { - mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL)) - - i; /* non linear */ - mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ - i++; - if (i>=N) { mt[0] = mt[N-1]; i=1; } - } - - mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ -} - -/* generates a random number on [0,0xffffffff]-interval */ -unsigned long genrand_int32(void) -{ - unsigned long y; - static unsigned long mag01[2]={0x0UL, MATRIX_A}; - /* mag01[x] = x * MATRIX_A for x=0,1 */ - - if (mti >= N) { /* generate N words at one time */ - int kk; - - if (mti == N+1) /* if init_genrand() has not been called, */ - init_genrand(5489UL); /* a default initial seed is used */ - - for (kk=0;kk> 1) ^ mag01[y & 0x1UL]; - } - for (;kk> 1) ^ mag01[y & 0x1UL]; - } - y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); - mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL]; - - mti = 0; - } - - y = mt[mti++]; - - /* Tempering */ - y ^= (y >> 11); - y ^= (y << 7) & 0x9d2c5680UL; - y ^= (y << 15) & 0xefc60000UL; - y ^= (y >> 18); - - return y; -} - -/* generates a random number on [0,0x7fffffff]-interval */ -long genrand_int31(void) -{ - return (long)(genrand_int32()>>1); -} - -/* generates a random number on [0,1]-real-interval */ -double genrand_real1(void) -{ - return genrand_int32()*(1.0/4294967295.0); - /* divided by 2^32-1 */ -} - -/* generates a random number on [0,1)-real-interval */ -double genrand_real2(void) -{ - return genrand_int32()*(1.0/4294967296.0); - /* divided by 2^32 */ -} - -/* generates a random number on (0,1)-real-interval */ -double genrand_real3(void) -{ - return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0); - /* divided by 2^32 */ -} - -/* generates a random number on [0,1) with 53-bit resolution*/ -double genrand_res53(void) -{ - unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; - return(a*67108864.0+b)*(1.0/9007199254740992.0); -} -/* These real versions are due to Isaku Wada, 2002/01/09 added */ diff --git a/mt19937ar.h b/mt19937ar.h deleted file mode 100644 index d544847..0000000 --- a/mt19937ar.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef MT19937AR_H -#define MT19937AR_H - -void init_genrand(unsigned long s); - -/* initialize by an array with array-length */ -/* init_key is the array for initializing keys */ -/* key_length is its length */ -/* slight change for C++, 2004/2/26 */ -void init_by_array(unsigned long init_key[], int key_length); - -/* generates a random number on [0,0xffffffff]-interval */ -unsigned long genrand_int32(void); - -/* generates a random number on [0,0x7fffffff]-interval */ -long genrand_int31(void); - -/* generates a random number on [0,1]-real-interval */ -double genrand_real1(void); - -/* generates a random number on [0,1)-real-interval */ -double genrand_real2(void); - -/* generates a random number on (0,1)-real-interval */ -double genrand_real3(void); - -/* generates a random number on [0,1) with 53-bit resolution*/ -double genrand_res53(void) ; - -#endif diff --git a/muE_water_liquid.txt b/muE_water_liquid.txt deleted file mode 100644 index 9cc2a0d..0000000 --- a/muE_water_liquid.txt +++ /dev/null @@ -1,157 +0,0 @@ - Incident particle is a Muon with M = 105.65839 MeV - Index = 276: water (liquid) (H\sub{2}O) - Absorber with = 0.55509, density = 1.000 - Sternheimer coef: a k=m_s x_0 x_1 I[eV] Cbar delta0 - 0.0912 3.4773 0.2400 2.8004 79.7 3.5017 0.00 - (Restricted energy loss for Tcut = 0.05 MeV - Table written with (1X, 1P9E10.3,0PF8.4,f8.5,1pE10.3) post-Born included in pair prod - *** Results below 10 MeV are not dependable *** - T p Ionization brems pair photonuc Radloss dE/dx CSDA Range delta beta dE/dx_R - [MeV] [MeV/c] -----------------------[MeV cm^2/g]------------------------ [g/cm^2] [MeV cm^2/g] - 1.000E+00 1.457E+01 3.048E+00 0.000E+00 0.000E+00 5.009E-05 5.009E-05 6.097E+00 1.863E-03 0.0000 0.13661 4.999E+01 - 1.200E+00 1.597E+01 4.314E+01 0.000E+00 0.000E+00 5.018E-05 5.018E-05 4.314E+01 6.183E-03 0.0000 0.14944 4.314E+01 - 1.400E+00 1.726E+01 3.808E+01 0.000E+00 0.000E+00 5.028E-05 5.028E-05 3.808E+01 1.113E-02 0.0000 0.16119 3.808E+01 - 1.700E+00 1.903E+01 3.252E+01 0.000E+00 0.000E+00 5.042E-05 5.042E-05 3.252E+01 1.968E-02 0.0000 0.17725 3.252E+01 - 2.000E+00 2.066E+01 2.849E+01 0.000E+00 0.000E+00 5.056E-05 5.056E-05 2.849E+01 2.956E-02 0.0000 0.19186 2.849E+01 - 2.500E+00 2.312E+01 2.376E+01 0.000E+00 0.000E+00 5.080E-05 5.080E-05 2.376E+01 4.887E-02 0.0000 0.21376 2.376E+01 - 3.000E+00 2.536E+01 2.049E+01 0.000E+00 0.000E+00 5.103E-05 5.103E-05 2.049E+01 7.161E-02 0.0000 0.23336 2.026E+01 - 3.500E+00 2.742E+01 1.808E+01 0.000E+00 0.000E+00 5.126E-05 5.126E-05 1.808E+01 9.765E-02 0.0000 0.25120 1.768E+01 - 4.000E+00 2.935E+01 1.623E+01 0.000E+00 0.000E+00 5.150E-05 5.150E-05 1.623E+01 1.269E-01 0.0000 0.26763 1.573E+01 - 4.500E+00 3.116E+01 1.476E+01 0.000E+00 0.000E+00 5.173E-05 5.173E-05 1.476E+01 1.592E-01 0.0000 0.28290 1.420E+01 - 5.000E+00 3.289E+01 1.357E+01 0.000E+00 0.000E+00 5.197E-05 5.197E-05 1.357E+01 1.946E-01 0.0000 0.29720 1.296E+01 - 5.500E+00 3.453E+01 1.258E+01 0.000E+00 0.000E+00 5.220E-05 5.220E-05 1.258E+01 2.329E-01 0.0000 0.31066 1.194E+01 - 6.000E+00 3.611E+01 1.174E+01 0.000E+00 0.000E+00 5.244E-05 5.244E-05 1.174E+01 2.741E-01 0.0000 0.32339 1.109E+01 - 7.000E+00 3.909E+01 1.040E+01 0.000E+00 0.000E+00 5.291E-05 5.291E-05 1.040E+01 3.648E-01 0.0000 0.34700 9.731E+00 - 8.000E+00 4.189E+01 9.372E+00 0.000E+00 0.000E+00 5.338E-05 5.338E-05 9.372E+00 4.663E-01 0.0000 0.36854 8.704E+00 - 9.000E+00 4.453E+01 8.561E+00 0.000E+00 0.000E+00 5.385E-05 5.385E-05 8.561E+00 5.781E-01 0.0000 0.38836 7.899E+00 - 1.000E+01 4.704E+01 7.902E+00 0.000E+00 0.000E+00 5.432E-05 5.432E-05 7.902E+00 6.998E-01 0.0000 0.40675 7.251E+00 - 1.200E+01 5.177E+01 6.897E+00 0.000E+00 0.000E+00 5.526E-05 5.526E-05 6.897E+00 9.715E-01 0.0000 0.43998 6.270E+00 - 1.400E+01 5.616E+01 6.166E+00 0.000E+00 0.000E+00 5.620E-05 5.620E-05 6.166E+00 1.279E+00 0.0000 0.46937 5.562E+00 - 1.700E+01 6.230E+01 5.378E+00 0.000E+00 0.000E+00 5.760E-05 5.760E-05 5.378E+00 1.802E+00 0.0000 0.50792 4.806E+00 - 2.000E+01 6.802E+01 4.817E+00 0.000E+00 0.000E+00 5.901E-05 5.901E-05 4.817E+00 2.392E+00 0.0000 0.54129 4.274E+00 - 2.500E+01 7.686E+01 4.172E+00 0.000E+00 0.000E+00 6.136E-05 6.136E-05 4.172E+00 3.513E+00 0.0000 0.58827 3.666E+00 - 3.000E+01 8.509E+01 3.738E+00 0.000E+00 0.000E+00 6.371E-05 6.371E-05 3.738E+00 4.782E+00 0.0000 0.62720 3.259E+00 - 3.500E+01 9.285E+01 3.426E+00 0.000E+00 0.000E+00 6.606E-05 6.606E-05 3.426E+00 6.182E+00 0.0000 0.66011 2.969E+00 - 4.000E+01 1.003E+02 3.192E+00 0.000E+00 0.000E+00 6.841E-05 6.841E-05 3.192E+00 7.696E+00 0.0000 0.68834 2.751E+00 - 4.500E+01 1.074E+02 3.011E+00 0.000E+00 0.000E+00 7.075E-05 7.075E-05 3.011E+00 9.310E+00 0.0000 0.71286 2.583E+00 - 5.000E+01 1.143E+02 2.867E+00 2.619E-07 0.000E+00 7.310E-05 7.336E-05 2.867E+00 1.101E+01 0.0000 0.73434 2.449E+00 - 5.500E+01 1.210E+02 2.750E+00 8.442E-07 0.000E+00 7.545E-05 7.630E-05 2.750E+00 1.279E+01 0.0000 0.75332 2.340E+00 - 6.000E+01 1.276E+02 2.654E+00 1.444E-06 0.000E+00 7.780E-05 7.924E-05 2.654E+00 1.465E+01 0.0000 0.77019 2.251E+00 - 7.000E+01 1.403E+02 2.506E+00 2.695E-06 0.000E+00 8.250E-05 8.519E-05 2.506E+00 1.853E+01 0.0000 0.79887 2.112E+00 - 8.000E+01 1.527E+02 2.398E+00 4.010E-06 0.000E+00 8.719E-05 9.120E-05 2.398E+00 2.261E+01 0.0000 0.82227 2.010E+00 - 9.000E+01 1.647E+02 2.317E+00 5.386E-06 0.000E+00 9.189E-05 9.727E-05 2.317E+00 2.686E+01 0.0000 0.84166 1.933E+00 - 1.000E+02 1.764E+02 2.256E+00 6.819E-06 0.000E+00 9.658E-05 1.034E-04 2.256E+00 3.124E+01 0.0000 0.85794 1.873E+00 - 1.200E+02 1.994E+02 2.165E+00 9.849E-06 0.000E+00 1.060E-04 1.158E-04 2.165E+00 4.030E+01 0.0506 0.88361 1.782E+00 - 1.400E+02 2.218E+02 2.103E+00 1.308E-05 0.000E+00 1.154E-04 1.284E-04 2.104E+00 4.968E+01 0.1214 0.90278 1.719E+00 - 1.700E+02 2.546E+02 2.047E+00 1.826E-05 0.000E+00 1.295E-04 1.477E-04 2.047E+00 6.415E+01 0.2228 0.92363 1.656E+00 - 2.000E+02 2.868E+02 2.015E+00 2.382E-05 0.000E+00 1.435E-04 1.674E-04 2.015E+00 7.894E+01 0.3187 0.93835 1.616E+00 - 2.500E+02 3.396E+02 1.989E+00 3.381E-05 0.000E+00 1.670E-04 2.008E-04 1.989E+00 1.039E+02 0.4674 0.95485 1.575E+00 - 3.000E+02 3.917E+02 1.981E+00 4.459E-05 0.000E+00 1.905E-04 2.351E-04 1.981E+00 1.291E+02 0.6043 0.96548 1.553E+00 - 3.173E+02 4.096E+02 1.981E+00 5.607E-05 0.000E+00 2.140E-04 2.701E-04 1.982E+00 Minimum ionization - 3.500E+02 4.432E+02 1.982E+00 5.607E-05 0.000E+00 2.140E-04 2.701E-04 1.982E+00 1.544E+02 0.7310 0.97274 1.539E+00 - 4.000E+02 4.945E+02 1.987E+00 6.817E-05 0.000E+00 2.375E-04 3.056E-04 1.988E+00 1.796E+02 0.8490 0.97793 1.531E+00 - 4.500E+02 5.455E+02 1.995E+00 8.083E-05 0.000E+00 2.610E-04 3.418E-04 1.996E+00 2.047E+02 0.9596 0.98176 1.526E+00 - 5.000E+02 5.964E+02 2.005E+00 9.400E-05 0.000E+00 2.844E-04 3.784E-04 2.005E+00 2.297E+02 1.0636 0.98467 1.523E+00 - 5.500E+02 6.471E+02 2.015E+00 1.076E-04 0.000E+00 3.079E-04 4.156E-04 2.015E+00 2.545E+02 1.1618 0.98693 1.521E+00 - 6.000E+02 6.977E+02 2.025E+00 1.217E-04 0.000E+00 3.314E-04 4.531E-04 2.025E+00 2.793E+02 1.2549 0.98873 1.521E+00 - 7.000E+02 7.987E+02 2.045E+00 1.510E-04 0.000E+00 3.784E-04 5.294E-04 2.045E+00 3.284E+02 1.4278 0.99136 1.521E+00 - 8.000E+02 8.995E+02 2.064E+00 1.817E-04 0.000E+00 4.253E-04 6.071E-04 2.064E+00 3.771E+02 1.5856 0.99317 1.522E+00 - 9.000E+02 1.000E+03 2.081E+00 2.137E-04 0.000E+00 4.723E-04 6.860E-04 2.082E+00 4.253E+02 1.7309 0.99447 1.523E+00 - 1.000E+03 1.101E+03 2.098E+00 2.468E-04 7.059E-06 5.193E-04 7.731E-04 2.099E+00 4.732E+02 1.8656 0.99542 1.525E+00 - 1.200E+03 1.301E+03 2.128E+00 3.160E-04 5.280E-05 6.132E-04 9.820E-04 2.129E+00 5.678E+02 2.1090 0.99672 1.529E+00 - 1.400E+03 1.502E+03 2.154E+00 3.886E-04 1.049E-04 7.071E-04 1.201E-03 2.156E+00 6.611E+02 2.3244 0.99753 1.532E+00 - 1.700E+03 1.803E+03 2.188E+00 5.031E-04 1.929E-04 8.480E-04 1.544E-03 2.189E+00 7.992E+02 2.6078 0.99829 1.537E+00 - 2.000E+03 2.103E+03 2.216E+00 6.233E-04 2.913E-04 9.922E-04 1.907E-03 2.218E+00 9.353E+02 2.8548 0.99874 1.541E+00 - 2.500E+03 2.604E+03 2.255E+00 8.340E-04 4.742E-04 1.245E-03 2.553E-03 2.258E+00 1.159E+03 3.2073 0.99918 1.545E+00 - 3.000E+03 3.104E+03 2.287E+00 1.056E-03 6.769E-04 1.500E-03 3.232E-03 2.290E+00 1.378E+03 3.5060 0.99942 1.549E+00 - 3.500E+03 3.604E+03 2.313E+00 1.286E-03 8.961E-04 1.757E-03 3.940E-03 2.317E+00 1.595E+03 3.7654 0.99957 1.552E+00 - 4.000E+03 4.104E+03 2.336E+00 1.525E-03 1.130E-03 2.017E-03 4.672E-03 2.341E+00 1.810E+03 3.9949 0.99967 1.554E+00 - 4.500E+03 4.604E+03 2.356E+00 1.771E-03 1.376E-03 2.279E-03 5.425E-03 2.361E+00 2.023E+03 4.2007 0.99974 1.556E+00 - 5.000E+03 5.105E+03 2.373E+00 2.023E-03 1.636E-03 2.537E-03 6.196E-03 2.379E+00 2.234E+03 4.3873 0.99979 1.558E+00 - 5.500E+03 5.605E+03 2.389E+00 2.286E-03 1.917E-03 2.774E-03 6.977E-03 2.396E+00 2.443E+03 4.5581 0.99982 1.559E+00 - 6.000E+03 6.105E+03 2.403E+00 2.555E-03 2.209E-03 3.010E-03 7.774E-03 2.410E+00 2.651E+03 4.7155 0.99985 1.560E+00 - 7.000E+03 7.105E+03 2.427E+00 3.106E-03 2.821E-03 3.480E-03 9.407E-03 2.437E+00 3.064E+03 4.9978 0.99989 1.562E+00 - 8.000E+03 8.105E+03 2.448E+00 3.675E-03 3.466E-03 3.947E-03 1.109E-02 2.459E+00 3.472E+03 5.2454 0.99992 1.563E+00 - 9.000E+03 9.105E+03 2.466E+00 4.259E-03 4.139E-03 4.411E-03 1.281E-02 2.479E+00 3.877E+03 5.4661 0.99993 1.564E+00 - 1.000E+04 1.011E+04 2.482E+00 4.857E-03 4.840E-03 4.871E-03 1.457E-02 2.497E+00 4.279E+03 5.6651 0.99995 1.565E+00 - 1.200E+04 1.211E+04 2.509E+00 6.103E-03 6.349E-03 5.765E-03 1.822E-02 2.527E+00 5.075E+03 6.0129 0.99996 1.566E+00 - 1.400E+04 1.411E+04 2.531E+00 7.392E-03 7.942E-03 6.649E-03 2.198E-02 2.553E+00 5.862E+03 6.3097 0.99997 1.566E+00 - 1.700E+04 1.711E+04 2.559E+00 9.393E-03 1.046E-02 7.957E-03 2.781E-02 2.587E+00 7.030E+03 6.6868 0.99998 1.567E+00 - 2.000E+04 2.011E+04 2.581E+00 1.146E-02 1.312E-02 9.249E-03 3.383E-02 2.615E+00 8.183E+03 7.0048 0.99999 1.568E+00 - 2.500E+04 2.511E+04 2.611E+00 1.506E-02 1.788E-02 1.140E-02 4.434E-02 2.656E+00 1.008E+04 7.4442 0.99999 1.568E+00 - 3.000E+04 3.011E+04 2.635E+00 1.879E-02 2.291E-02 1.352E-02 5.523E-02 2.690E+00 1.195E+04 7.8051 0.99999 1.568E+00 - 3.500E+04 3.511E+04 2.655E+00 2.263E-02 2.816E-02 1.563E-02 6.642E-02 2.721E+00 1.380E+04 8.1112 1.00000 1.568E+00 - 4.000E+04 4.011E+04 2.671E+00 2.657E-02 3.361E-02 1.771E-02 7.789E-02 2.749E+00 1.563E+04 8.3769 1.00000 1.568E+00 - 4.500E+04 4.511E+04 2.686E+00 3.059E-02 3.922E-02 1.978E-02 8.959E-02 2.776E+00 1.744E+04 8.6116 1.00000 1.568E+00 - 5.000E+04 5.011E+04 2.699E+00 3.469E-02 4.498E-02 2.183E-02 1.015E-01 2.801E+00 1.923E+04 8.8217 1.00000 1.568E+00 - 5.500E+04 5.511E+04 2.711E+00 3.884E-02 5.079E-02 2.392E-02 1.135E-01 2.824E+00 2.101E+04 9.0119 1.00000 1.568E+00 - 6.000E+04 6.011E+04 2.721E+00 4.305E-02 5.671E-02 2.600E-02 1.258E-01 2.847E+00 2.277E+04 9.1856 1.00000 1.568E+00 - 7.000E+04 7.011E+04 2.739E+00 5.162E-02 6.885E-02 3.014E-02 1.506E-01 2.890E+00 2.626E+04 9.4934 1.00000 1.568E+00 - 8.000E+04 8.011E+04 2.755E+00 6.039E-02 8.135E-02 3.426E-02 1.760E-01 2.931E+00 2.969E+04 9.7601 1.00000 1.568E+00 - 9.000E+04 9.011E+04 2.769E+00 6.932E-02 9.416E-02 3.835E-02 2.018E-01 2.971E+00 3.308E+04 9.9954 1.00000 1.568E+00 - 1.000E+05 1.001E+05 2.781E+00 7.839E-02 1.073E-01 4.243E-02 2.281E-01 3.009E+00 3.642E+04 10.2058 1.00000 1.568E+00 - 1.200E+05 1.201E+05 2.802E+00 9.681E-02 1.337E-01 5.071E-02 2.813E-01 3.084E+00 4.299E+04 10.5701 1.00000 1.568E+00 - 1.400E+05 1.401E+05 2.820E+00 1.156E-01 1.610E-01 5.897E-02 3.356E-01 3.156E+00 4.940E+04 10.8782 1.00000 1.568E+00 - 1.700E+05 1.701E+05 2.842E+00 1.446E-01 2.031E-01 7.130E-02 4.189E-01 3.261E+00 5.875E+04 11.2662 1.00000 1.568E+00 - 2.000E+05 2.001E+05 2.861E+00 1.741E-01 2.464E-01 8.359E-02 5.041E-01 3.365E+00 6.780E+04 11.5911 1.00000 1.568E+00 - 2.500E+05 2.501E+05 2.886E+00 2.239E-01 3.179E-01 1.044E-01 6.462E-01 3.533E+00 8.230E+04 12.0372 1.00000 1.568E+00 - 3.000E+05 3.001E+05 2.907E+00 2.748E-01 3.913E-01 1.252E-01 7.913E-01 3.698E+00 9.614E+04 12.4017 1.00000 1.568E+00 - 3.500E+05 3.501E+05 2.925E+00 3.266E-01 4.661E-01 1.461E-01 9.388E-01 3.863E+00 1.094E+05 12.7099 1.00000 1.568E+00 - 4.000E+05 4.001E+05 2.940E+00 3.792E-01 5.423E-01 1.669E-01 1.088E+00 4.028E+00 1.220E+05 12.9768 1.00000 1.568E+00 - 4.500E+05 4.501E+05 2.953E+00 4.325E-01 6.195E-01 1.877E-01 1.240E+00 4.193E+00 1.342E+05 13.2124 1.00000 1.568E+00 - 5.000E+05 5.001E+05 2.965E+00 4.865E-01 6.978E-01 2.085E-01 1.393E+00 4.358E+00 1.459E+05 13.4230 1.00000 1.568E+00 - 5.500E+05 5.501E+05 2.976E+00 5.401E-01 7.751E-01 2.298E-01 1.545E+00 4.521E+00 1.572E+05 13.6136 1.00000 1.568E+00 - 6.000E+05 6.001E+05 2.986E+00 5.941E-01 8.531E-01 2.512E-01 1.698E+00 4.684E+00 1.680E+05 13.7876 1.00000 1.568E+00 - 7.000E+05 7.001E+05 3.004E+00 7.033E-01 1.011E+00 2.941E-01 2.008E+00 5.012E+00 1.887E+05 14.0959 1.00000 1.568E+00 - 8.000E+05 8.001E+05 3.019E+00 8.139E-01 1.171E+00 3.371E-01 2.322E+00 5.341E+00 2.080E+05 14.3629 1.00000 1.568E+00 - 9.000E+05 9.001E+05 3.033E+00 9.257E-01 1.332E+00 3.803E-01 2.638E+00 5.671E+00 2.262E+05 14.5984 1.00000 1.568E+00 - 1.000E+06 1.000E+06 3.045E+00 1.039E+00 1.496E+00 4.235E-01 2.958E+00 6.003E+00 2.433E+05 14.8091 1.00000 1.568E+00 - 1.029E+06 1.029E+06 3.048E+00 1.071E+00 1.542E+00 4.362E-01 3.049E+00 6.097E+00 Muon critical energy - 1.200E+06 1.200E+06 3.066E+00 1.263E+00 1.817E+00 5.118E-01 3.592E+00 6.659E+00 2.749E+05 15.1737 1.00000 1.568E+00 - 1.400E+06 1.400E+06 3.084E+00 1.491E+00 2.142E+00 6.006E-01 4.233E+00 7.318E+00 3.036E+05 15.4820 1.00000 1.568E+00 - 1.700E+06 1.700E+06 3.107E+00 1.836E+00 2.634E+00 7.346E-01 5.206E+00 8.313E+00 3.420E+05 15.8703 1.00000 1.568E+00 - 2.000E+06 2.000E+06 3.127E+00 2.186E+00 3.132E+00 8.696E-01 6.188E+00 9.315E+00 3.761E+05 16.1953 1.00000 1.568E+00 - 2.500E+06 2.500E+06 3.153E+00 2.766E+00 3.953E+00 1.100E+00 7.819E+00 1.097E+01 4.255E+05 16.6416 1.00000 1.568E+00 - 3.000E+06 3.000E+06 3.175E+00 3.352E+00 4.781E+00 1.332E+00 9.465E+00 1.264E+01 4.679E+05 17.0062 1.00000 1.568E+00 - 3.500E+06 3.500E+06 3.194E+00 3.942E+00 5.614E+00 1.567E+00 1.112E+01 1.432E+01 5.051E+05 17.3145 1.00000 1.568E+00 - 4.000E+06 4.000E+06 3.210E+00 4.537E+00 6.452E+00 1.803E+00 1.279E+01 1.600E+01 5.381E+05 17.5815 1.00000 1.568E+00 - 4.500E+06 4.500E+06 3.225E+00 5.136E+00 7.295E+00 2.041E+00 1.447E+01 1.770E+01 5.678E+05 17.8171 1.00000 1.568E+00 - 5.000E+06 5.000E+06 3.238E+00 5.738E+00 8.141E+00 2.280E+00 1.616E+01 1.940E+01 5.947E+05 18.0278 1.00000 1.568E+00 - 5.500E+06 5.500E+06 3.249E+00 6.334E+00 8.977E+00 2.524E+00 1.783E+01 2.108E+01 6.195E+05 18.2184 1.00000 1.568E+00 - 6.000E+06 6.000E+06 3.260E+00 6.932E+00 9.816E+00 2.769E+00 1.952E+01 2.278E+01 6.423E+05 18.3925 1.00000 1.568E+00 - 7.000E+06 7.000E+06 3.280E+00 8.132E+00 1.150E+01 3.264E+00 2.289E+01 2.617E+01 6.832E+05 18.7008 1.00000 1.568E+00 - 8.000E+06 8.000E+06 3.296E+00 9.338E+00 1.318E+01 3.764E+00 2.629E+01 2.958E+01 7.191E+05 18.9678 1.00000 1.568E+00 - 9.000E+06 9.000E+06 3.311E+00 1.055E+01 1.488E+01 4.267E+00 2.969E+01 3.301E+01 7.511E+05 19.2034 1.00000 1.568E+00 - 1.000E+07 1.000E+07 3.325E+00 1.177E+01 1.658E+01 4.773E+00 3.312E+01 3.644E+01 7.799E+05 19.4141 1.00000 1.568E+00 - 1.200E+07 1.200E+07 3.348E+00 1.418E+01 1.995E+01 5.808E+00 3.994E+01 4.329E+01 8.302E+05 19.7787 1.00000 1.568E+00 - 1.400E+07 1.400E+07 3.368E+00 1.661E+01 2.333E+01 6.854E+00 4.680E+01 5.017E+01 8.731E+05 20.0870 1.00000 1.568E+00 - 1.700E+07 1.700E+07 3.393E+00 2.027E+01 2.842E+01 8.443E+00 5.713E+01 6.053E+01 9.275E+05 20.4753 1.00000 1.568E+00 - 2.000E+07 2.000E+07 3.414E+00 2.394E+01 3.352E+01 1.005E+01 6.752E+01 7.093E+01 9.732E+05 20.8004 1.00000 1.568E+00 - 2.500E+07 2.500E+07 3.444E+00 3.004E+01 4.199E+01 1.280E+01 8.483E+01 8.828E+01 1.036E+06 21.2467 1.00000 1.568E+00 - 3.000E+07 3.000E+07 3.468E+00 3.615E+01 5.048E+01 1.560E+01 1.022E+02 1.057E+02 1.088E+06 21.6113 1.00000 1.568E+00 - 3.500E+07 3.500E+07 3.489E+00 4.228E+01 5.897E+01 1.843E+01 1.197E+02 1.232E+02 1.132E+06 21.9196 1.00000 1.568E+00 - 4.000E+07 4.000E+07 3.507E+00 4.842E+01 6.748E+01 2.130E+01 1.372E+02 1.407E+02 1.170E+06 22.1867 1.00000 1.568E+00 - 4.500E+07 4.500E+07 3.523E+00 5.458E+01 7.600E+01 2.419E+01 1.548E+02 1.583E+02 1.203E+06 22.4222 1.00000 1.568E+00 - 5.000E+07 5.000E+07 3.537E+00 6.075E+01 8.453E+01 2.710E+01 1.724E+02 1.759E+02 1.233E+06 22.6329 1.00000 1.568E+00 - 5.500E+07 5.500E+07 3.551E+00 6.689E+01 9.303E+01 3.007E+01 1.900E+02 1.935E+02 1.260E+06 22.8236 1.00000 1.568E+00 - 6.000E+07 6.000E+07 3.563E+00 7.303E+01 1.015E+02 3.306E+01 2.076E+02 2.112E+02 1.285E+06 22.9976 1.00000 1.568E+00 - 7.000E+07 7.000E+07 3.584E+00 8.534E+01 1.185E+02 3.909E+01 2.430E+02 2.466E+02 1.329E+06 23.3059 1.00000 1.568E+00 - 8.000E+07 8.000E+07 3.603E+00 9.766E+01 1.356E+02 4.520E+01 2.784E+02 2.820E+02 1.367E+06 23.5730 1.00000 1.568E+00 - 9.000E+07 9.000E+07 3.619E+00 1.100E+02 1.526E+02 5.137E+01 3.140E+02 3.176E+02 1.400E+06 23.8085 1.00000 1.568E+00 - 1.000E+08 1.000E+08 3.634E+00 1.223E+02 1.697E+02 5.759E+01 3.496E+02 3.532E+02 1.430E+06 24.0192 1.00000 1.568E+00 - 1.200E+08 1.200E+08 3.660E+00 1.468E+02 2.036E+02 6.911E+01 4.195E+02 4.232E+02 1.482E+06 24.3839 1.00000 1.568E+00 - 1.400E+08 1.400E+08 3.682E+00 1.713E+02 2.375E+02 8.063E+01 4.894E+02 4.931E+02 1.525E+06 24.6922 1.00000 1.568E+00 - 1.700E+08 1.700E+08 3.710E+00 2.080E+02 2.884E+02 9.790E+01 5.943E+02 5.980E+02 1.580E+06 25.0805 1.00000 1.568E+00 - 2.000E+08 2.000E+08 3.734E+00 2.447E+02 3.393E+02 1.152E+02 6.992E+02 7.029E+02 1.627E+06 25.4055 1.00000 1.568E+00 - 2.500E+08 2.500E+08 3.767E+00 3.059E+02 4.242E+02 1.440E+02 8.740E+02 8.778E+02 1.690E+06 25.8518 1.00000 1.568E+00 - 3.000E+08 3.000E+08 3.794E+00 3.670E+02 5.090E+02 1.728E+02 1.049E+03 1.053E+03 1.742E+06 26.2165 1.00000 1.568E+00 - 3.500E+08 3.500E+08 3.817E+00 4.282E+02 5.938E+02 2.016E+02 1.224E+03 1.227E+03 1.786E+06 26.5248 1.00000 1.568E+00 - 4.000E+08 4.000E+08 3.838E+00 4.894E+02 6.786E+02 2.304E+02 1.398E+03 1.402E+03 1.824E+06 26.7918 1.00000 1.568E+00 - 4.500E+08 4.500E+08 3.855E+00 5.506E+02 7.635E+02 2.592E+02 1.573E+03 1.577E+03 1.858E+06 27.0274 1.00000 1.568E+00 - 5.000E+08 5.000E+08 3.872E+00 6.117E+02 8.483E+02 2.880E+02 1.748E+03 1.752E+03 1.888E+06 27.2381 1.00000 1.568E+00 - 5.500E+08 5.500E+08 3.886E+00 6.729E+02 9.331E+02 3.167E+02 1.923E+03 1.927E+03 1.915E+06 27.4287 1.00000 1.568E+00 - 6.000E+08 6.000E+08 3.900E+00 7.341E+02 1.018E+03 3.455E+02 2.098E+03 2.101E+03 1.940E+06 27.6028 1.00000 1.568E+00 - 7.000E+08 7.000E+08 3.924E+00 8.564E+02 1.188E+03 4.031E+02 2.447E+03 2.451E+03 1.984E+06 27.9111 1.00000 1.568E+00 - 8.000E+08 8.000E+08 3.944E+00 9.788E+02 1.357E+03 4.607E+02 2.797E+03 2.801E+03 2.022E+06 28.1781 1.00000 1.568E+00 - 9.000E+08 9.000E+08 3.963E+00 1.101E+03 1.527E+03 5.183E+02 3.146E+03 3.150E+03 2.056E+06 28.4137 1.00000 1.568E+00 - 1.000E+09 1.000E+09 3.980E+00 1.223E+03 1.697E+03 5.759E+02 3.496E+03 3.500E+03 2.086E+06 28.6244 1.00000 1.568E+00 diff --git a/muon.c b/muon.c deleted file mode 100644 index 4b46769..0000000 --- a/muon.c +++ /dev/null @@ -1,260 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include -#include "optics.h" -#include "quantum_efficiency.h" -#include "solid_angle.h" -#include "pdg.h" -#include "vector.h" -#include "muon.h" -#include "sno.h" -#include "scattering.h" - -static int initialized = 0; - -static double *x, *dEdx, *csda_range; -static size_t size; - -static gsl_interp_accel *acc_dEdx; -static gsl_spline *spline_dEdx; - -static gsl_interp_accel *acc_range; -static gsl_spline *spline_range; - -static const double MUON_CRITICAL_ENERGY = 1.029e6; - -static int init() -{ - int i, j; - char line[256]; - char *str; - double value; - int n; - - FILE *f = fopen("muE_water_liquid.txt", "r"); - - if (!f) { - fprintf(stderr, "failed to open muE_water_liquid.txt: %s", strerror(errno)); - return -1; - } - - i = 0; - n = 0; - /* For the first pass, we just count how many values there are. */ - while (fgets(line, sizeof(line), f)) { - size_t len = strlen(line); - if (len && (line[len-1] != '\n')) { - fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); - goto err; - } - - i += 1; - - /* Skip the first 10 lines since it's just a header. */ - if (i <= 10) continue; - - if (!len) continue; - else if (line[0] == '#') continue; - else if (strstr(line, "Minimum ionization")) continue; - else if (strstr(line, "Muon critical energy")) continue; - - str = strtok(line," \n"); - - while (str) { - value = strtod(str, NULL); - str = strtok(NULL," \n"); - } - - n += 1; - } - - x = malloc(sizeof(double)*n); - dEdx = malloc(sizeof(double)*n); - csda_range = malloc(sizeof(double)*n); - size = n; - - i = 0; - n = 0; - /* Now, we actually store the values. */ - rewind(f); - while (fgets(line, sizeof(line), f)) { - size_t len = strlen(line); - if (len && (line[len-1] != '\n')) { - fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); - goto err; - } - - i += 1; - - /* Skip the first 10 lines since it's just a header. */ - if (i <= 10) continue; - - if (!len) continue; - else if (line[0] == '#') continue; - else if (strstr(line, "Minimum ionization")) continue; - else if (strstr(line, "Muon critical energy")) continue; - - str = strtok(line," \n"); - - j = 0; - while (str) { - value = strtod(str, NULL); - switch (j) { - case 0: - x[n] = value; - break; - case 7: - dEdx[n] = value; - break; - case 8: - csda_range[n] = value; - break; - } - j += 1; - str = strtok(NULL," \n"); - } - - n += 1; - } - - fclose(f); - - acc_dEdx = gsl_interp_accel_alloc(); - spline_dEdx = gsl_spline_alloc(gsl_interp_linear, size); - gsl_spline_init(spline_dEdx, x, dEdx, size); - - acc_range = gsl_interp_accel_alloc(); - spline_range = gsl_spline_alloc(gsl_interp_linear, size); - gsl_spline_init(spline_range, x, csda_range, size); - - initialized = 1; - - return 0; - -err: - fclose(f); - - return -1; -} - -double get_range(double T, double rho) -{ - /* Returns the approximate range a muon with kinetic energy `T` will travel - * in water before losing all of its energy. This range is interpolated - * based on data from the PDG which uses the continuous slowing down - * approximation. - * - * `T` should be in MeV, and `rho` should be in g/cm^3. - * - * Return value is in cm. - * - * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ - if (!initialized) { - if (init()) { - exit(1); - } - } - - return gsl_spline_eval(spline_range, T, acc_range)/rho; -} - -double get_T(double T0, double x, double rho) -{ - /* Returns the approximate kinetic energy of a muon in water after - * travelling `x` cm with an initial kinetic energy `T`. - * - * `T` should be in MeV, `x` in cm, and `rho` in g/cm^3. - * - * Return value is in MeV. - * - * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ - double a, b, range, T; - - if (!initialized) { - if (init()) { - exit(1); - } - } - - range = get_range(T0, rho); - - /* This comes from Equation 33.42 in the PDG Passage of Particles Through - * Matter article. */ - b = log(1 + T0/MUON_CRITICAL_ENERGY)/range; - /* Now we compute the ionization energy loss from the known range and b. */ - a = b*T0/(exp(b*range)-1.0); - - /* Compute the kinetic energy after travelling a distance `x` in the - * continuous slowing down approximation. */ - T = -a/b + (T0+a/b)*exp(-b*x); - - if (T < 0) return 0; - - return T; -} - -double get_dEdx(double T, double rho) -{ - /* Returns the approximate dE/dx for a muon in water with kinetic energy - * `T`. - * - * `T` should be in MeV and `rho` in g/cm^3. - * - * Return value is in MeV/cm. - * - * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ - if (!initialized) { - if (init()) { - exit(1); - } - } - - return gsl_spline_eval(spline_dEdx, T, acc_dEdx)/rho; -} - -double get_expected_charge(double x, double T, double *pos, double *dir, double *pmt_pos, double *pmt_normal, double r) -{ - double pmt_dir[3], cos_theta, n, wavelength0, omega, theta0, E, p, beta, z, rho, R; - - z = 1.0; - - SUB(pmt_dir,pmt_pos,pos); - normalize(pmt_dir); - - if (DOT(pmt_dir,pmt_normal) > 0) return 0; - - /* Calculate the cosine of the angle between the track direction and the - * vector to the PMT. */ - cos_theta = DOT(dir,pmt_dir); - - /* Calculate total energy */ - E = T + MUON_MASS; - p = sqrt(E*E - MUON_MASS*MUON_MASS); - beta = p/E; - - omega = get_solid_angle_approx(pos,pmt_pos,pmt_normal,r); - - R = NORM(pos); - - if (R <= AV_RADIUS) { - rho = HEAVY_WATER_DENSITY; - } else { - rho = WATER_DENSITY; - } - - /* FIXME: I just calculate delta assuming 400 nm light. */ - wavelength0 = 400.0; - n = get_index(rho, wavelength0, 10.0); - - if (beta < 1/n) return 0; - - /* FIXME: is this formula valid for muons? */ - theta0 = get_scattering_rms(x,p,beta,z,rho); - - /* FIXME: add angular response and scattering/absorption. */ - return 2*omega*2*M_PI*FINE_STRUCTURE_CONSTANT*z*z*(1-(1/(beta*beta*n*n)))*get_probability(beta, cos_theta, theta0)/(sqrt(2*M_PI)*theta0); -} diff --git a/muon.h b/muon.h deleted file mode 100644 index a592591..0000000 --- a/muon.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef MUON_H -#define MUON_H - -#define EULER_CONSTANT 0.57721 - -double get_range(double T, double rho); -double get_T(double T0, double x, double rho); -double get_dEdx(double T, double rho); -double get_expected_charge(double x, double T, double *pos, double *dir, double *pmt_pos, double *pmt_normal, double r); - -#endif diff --git a/optics.c b/optics.c deleted file mode 100644 index 23e043d..0000000 --- a/optics.c +++ /dev/null @@ -1,33 +0,0 @@ -#include -#include "optics.h" - -/* From Table 4 in the paper. */ -static double A0 = 0.243905091; -static double A1 = 9.53518094e-3; -static double A2 = -3.64358110e-3; -static double A3 = 2.65666426e-4; -static double A4 = 1.59189325e-3; -static double A5 = 2.45733798e-3; -static double A6 = 0.897478251; -static double A7 = -1.63066183e-2; -static double UV = 0.2292020; -static double IR = 5.432937; - -double get_index(double p, double wavelength, double T) -{ - /* Returns the index of refraction of pure water for a given density, - * wavelength, and temperature. The density should be in units of g/cm^3, - * the wavelength in nm, and the temperature in Celsius. - * - * See "Refractive Index of Water and Steam as a function of Wavelength, - * Temperature, and Density" by Schiebener et al. 1990. */ - /* normalize the temperature and pressure */ - wavelength = wavelength/589.0; - T = (T+273.15)/273.15; - - /* first we compute the right hand side of Equation 7 */ - double c = A0 + A1*p + A2*T + A3*pow(wavelength,2)*T + A4/pow(wavelength,2) + A5/(pow(wavelength,2)-pow(UV,2)) + A6/(pow(wavelength,2)-pow(IR,2)) + A7*pow(p,2); - c *= p; - - return sqrt((2*c+1)/(1-c)); -} diff --git a/optics.h b/optics.h deleted file mode 100644 index 5e39ea1..0000000 --- a/optics.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef OPTICS_H -#define OPTICS_H - -double get_index(double p, double wavelength, double T); - -#endif diff --git a/pack2b.c b/pack2b.c deleted file mode 100644 index 25e154d..0000000 --- a/pack2b.c +++ /dev/null @@ -1,319 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include "pack2b.h" - -/* -** pack754() -- pack a floating point number into IEEE-754 format -*/ -uint64_t pack754(long double f, unsigned bits, unsigned expbits) -{ - long double fnorm; - int shift; - long long sign, exp, significand; - unsigned significandbits = bits - expbits - 1; // -1 for sign bit - - if (f == 0.0) return 0; // get this special case out of the way - - // check sign and begin normalization - if (f < 0) { sign = 1; fnorm = -f; } - else { sign = 0; fnorm = f; } - - // get the normalized form of f and track the exponent - shift = 0; - while(fnorm >= 2.0) { fnorm /= 2.0; shift++; } - while(fnorm < 1.0) { fnorm *= 2.0; shift--; } - fnorm = fnorm - 1.0; - - // calculate the binary form (non-float) of the significand data - significand = fnorm * ((1LL<>significandbits)&((1LL< 0) { result *= 2.0; shift--; } - while(shift < 0) { result /= 2.0; shift++; } - - // sign it - result *= (i>>(bits-1))&1? -1.0: 1.0; - - return result; -} - -/* -** packi16() -- store a 16-bit int into a char buffer (like htons()) -*/ -void packi16(uint8_t *buf, int16_t i) -{ - uint16_t i2 = i; - - *buf++ = i2>>8; *buf++ = i2; -} - -/* -** packi32() -- store a 32-bit int into a char buffer (like htonl()) -*/ -void packi32(uint8_t *buf, int32_t i) -{ - uint32_t i2 = i; - - *buf++ = i2>>24; *buf++ = i2>>16; - *buf++ = i2>>8; *buf++ = i2; -} - -/* -** packi64() -- store a 64-bit int into a char buffer (like htonl()) -*/ -void packi64(uint8_t *buf, int64_t i) -{ - uint64_t i2 = i; - - *buf++ = i2>>56; *buf++ = i2>>48; - *buf++ = i2>>40; *buf++ = i2>>32; - *buf++ = i2>>24; *buf++ = i2>>16; - *buf++ = i2>>8; *buf++ = i2; -} - -/* -** unpacki16() -- unpack a 16-bit int from a char buffer (like ntohs()) -*/ -int16_t unpacki16(uint8_t *buf) -{ - uint16_t i2 = ((uint16_t)buf[0]<<8) | buf[1]; - int16_t i; - - // change unsigned numbers to signed - if (i2 <= 0x7fffu) { i = i2; } - //else { i = -(int16_t)((uint16_t)0xffff - i2 + (uint16_t)1u); } - else { i = -1 - (uint16_t)(0xffffu - i2); } - - return i; -} - -/* -** unpacki32() -- unpack a 32-bit int from a char buffer (like ntohl()) -*/ -int32_t unpacki32(uint8_t *buf) -{ - uint32_t i2 = ((uint32_t)buf[0]<<24) | ((uint32_t)buf[1]<<16) | - ((uint32_t)buf[2]<<8) | buf[3]; - int32_t i; - - // change unsigned numbers to signed - if (i2 <= 0x7fffffffu) { i = i2; } - else { i = -1 - (int32_t)(0xffffffffu - i2); } - - return i; -} - -/* -** unpacki64() -- unpack a 64-bit int from a char buffer (like ntohl()) -*/ -int64_t unpacki64(uint8_t *buf) -{ - uint64_t i2 = ((uint64_t)buf[0]<<56) | ((uint64_t)buf[1]<<48) | - ((uint64_t)buf[2]<<40) | ((uint64_t)buf[3]<<32) | - ((uint64_t)buf[4]<<24) | ((uint64_t)buf[5]<<16) | - ((uint64_t)buf[6]<<8) | buf[7]; - int64_t i; - - // change unsigned numbers to signed - if (i2 <= 0x7fffffffffffffffu) { i = i2; } - else { i = -1 -(int64_t)(0xffffffffffffffffu - i2); } - - return i; -} - -/* -** pack() -- store data dictated by the format string in the buffer -** -** c - 8-bit signed int h - 16-bit signed int -** l - 32-bit signed int f - 32-bit float -** L - 64-bit signed int F - 64-bit float -** s - string (16-bit length is automatically prepended) -*/ -int32_t pack(uint8_t *buf, char *format, ...) -{ - va_list ap; - int16_t h; - int32_t l; - int64_t L; - int8_t c; - float32_t f; - float64_t F; - char *s; - int32_t size = 0, len; - - va_start(ap, format); - - for(; *format != '\0'; format++) { - switch(*format) { - case 'h': // 16-bit - size += 2; - h = (int16_t)va_arg(ap, int); // promoted - packi16(buf, h); - buf += 2; - break; - - case 'l': // 32-bit - size += 4; - l = va_arg(ap, int32_t); - packi32(buf, l); - buf += 4; - break; - - case 'L': // 64-bit - size += 8; - L = va_arg(ap, int64_t); - packi64(buf, L); - buf += 8; - break; - - case 'c': // 8-bit - size += 1; - c = (int8_t)va_arg(ap, int); // promoted - *buf++ = (c>>0)&0xff; - break; - - case 'f': // float - size += 4; - f = (float32_t)va_arg(ap, double); // promoted - l = pack754_32(f); // convert to IEEE 754 - packi32(buf, l); - buf += 4; - break; - - case 'F': // float-64 - size += 8; - F = (float64_t)va_arg(ap, float64_t); - L = pack754_64(F); // convert to IEEE 754 - packi64(buf, L); - buf += 8; - break; - - case 's': // string - s = va_arg(ap, char*); - len = strlen(s); - size += len + 2; - packi16(buf, len); - buf += 2; - memcpy(buf, s, len); - buf += len; - break; - } - } - - va_end(ap); - - return size; -} - -/* -** unpack() -- unpack data dictated by the format string into the buffer -*/ -void unpack(uint8_t *buf, char *format, ...) -{ - va_list ap; - int16_t *h; - int32_t *l; - int64_t *L; - int32_t pf; - int64_t pF; - int8_t *c; - float32_t *f; - float64_t *F; - char *s; - int32_t len, count, maxstrlen=0; - - va_start(ap, format); - - for(; *format != '\0'; format++) { - switch(*format) { - case 'h': // 16-bit - h = va_arg(ap, int16_t*); - *h = unpacki16(buf); - buf += 2; - break; - - case 'l': // 32-bit - l = va_arg(ap, int32_t*); - *l = unpacki32(buf); - buf += 4; - break; - - case 'L': // 64-bit - L = va_arg(ap, int64_t*); - *L = unpacki64(buf); - buf += 8; - break; - - case 'c': // 8-bit - c = va_arg(ap, int8_t*); - if (*buf <= 0x7f) { *c = *buf;} - else { *c = -1 - (uint8_t)(0xffu - *buf); } - buf++; - break; - - case 'f': // float - f = va_arg(ap, float32_t*); - pf = unpacki32(buf); - buf += 4; - *f = unpack754_32(pf); - break; - - case 'F': // float-64 - F = va_arg(ap, float64_t*); - pF = unpacki64(buf); - buf += 8; - *F = unpack754_64(pF); - break; - - case 's': // string - s = va_arg(ap, char*); - len = unpacki16(buf); - buf += 2; - if (maxstrlen > 0 && len > maxstrlen) count = maxstrlen - 1; - else count = len; - memcpy(s, buf, count); - s[count] = '\0'; - buf += len; - break; - - default: - if (isdigit(*format)) { // track max str len - maxstrlen = maxstrlen * 10 + (*format-'0'); - } - } - - if (!isdigit(*format)) maxstrlen = 0; - } - - va_end(ap); -} diff --git a/pack2b.h b/pack2b.h deleted file mode 100644 index b63807a..0000000 --- a/pack2b.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef PACK2B_H -#define PACK2B_H - -#include - -// various bits for floating point types--varies for different architectures -typedef float float32_t; -typedef double float64_t; - -// macros for packing floats and doubles: -#define pack754_32(f) (pack754((f), 32, 8)) -#define pack754_64(f) (pack754((f), 64, 11)) -#define unpack754_32(i) (unpack754((i), 32, 8)) -#define unpack754_64(i) (unpack754((i), 64, 11)) - -uint64_t pack754(long double f, unsigned bits, unsigned expbits); -long double unpack754(uint64_t i, unsigned bits, unsigned expbits); -void packi16(uint8_t *buf, int16_t i); -void packi32(uint8_t *buf, int32_t i); -void packi64(uint8_t *buf, int64_t i); -int16_t unpacki16(uint8_t *buf); -int32_t unpacki32(uint8_t *buf); -int64_t unpacki64(uint8_t *buf); -int32_t pack(uint8_t *buf, char *format, ...); -void unpack(uint8_t *buf, char *format, ...); - -#endif diff --git a/pdg.c b/pdg.c deleted file mode 100644 index d6a2161..0000000 --- a/pdg.c +++ /dev/null @@ -1,23 +0,0 @@ -#include "pdg.h" -#include "math.h" - -double get_scattering_rms(double x, double p, double beta, double z, double rho) -{ - /* Returns the RMS width of the scattering angle for a particle deflected - * by many small-angle scatters after a distance `x`. `p` is the momentum - * of the particle in MeV, `beta` is the speed of the particle in units of - * the speed of light, `z` is the charge of the particle in units of the - * electron charge, and `rho` is the density of the water in units of - * g/cm^3. - * - * `x` should be in cm. - * - * Note: I'm not sure if this will work for particles other than electrons - * since the radiation length is only discussed in terms of an - * electromagnetic shower induced by electrons (see Section 33.4.2). - * - * See Equation 33.15 in - * http://pdg.lbl.gov/2018/reviews/rpp2018-rev-passage-particles-matter.pdf. */ - if (x == 0.0) return 0.0; - return (13.6/(beta*p))*z*sqrt(x*rho/RADIATION_LENGTH)*(1+0.038*log((x*z*z)/(RADIATION_LENGTH*beta*beta/rho))); -} diff --git a/pdg.h b/pdg.h deleted file mode 100644 index ff62f7a..0000000 --- a/pdg.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef PDG_H -#define PDG_H - -#define SPEED_OF_LIGHT 29.9792458 /* cm/ns */ -/* From http://pdg.lbl.gov/2017/AtomicNuclearProperties/HTML/water_liquid.html */ -#define RADIATION_LENGTH 36.08 /* g/cm^2 */ -#define MUON_MASS 105.6583745 /* MeV */ -#define FINE_STRUCTURE_CONSTANT 7.297352566417e-3 - -double get_scattering_rms(double x, double p, double beta, double z, double rho); - -#endif diff --git a/pmt.c b/pmt.c deleted file mode 100644 index d36e302..0000000 --- a/pmt.c +++ /dev/null @@ -1,82 +0,0 @@ -#include "pmt.h" -#include -#include -#include -#include -#include "vector.h" - -static int initialized = 0; - -pmt pmts[MAX_PMTS]; - -int load_pmt_info() -{ - int i, j; - char line[256]; - char *str; - double value; - int n; - - FILE *f = fopen("pmt.txt", "r"); - - if (!f) { - fprintf(stderr, "failed to open pmt.txt: %s", strerror(errno)); - return -1; - } - - i = 0; - n = 0; - /* For the first pass, we just count how many values there are. */ - while (fgets(line, sizeof(line), f)) { - size_t len = strlen(line); - if (len && (line[len-1] != '\n')) { - fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); - goto err; - } - - i += 1; - - if (!len) continue; - else if (line[0] == '#') continue; - - str = strtok(line," \n"); - - j = 0; - while (str) { - value = strtod(str, NULL); - switch (j) { - case 0: - case 1: - case 2: - pmts[n].pos[j] = value/10.0; - break; - case 3: - case 4: - case 5: - pmts[n].normal[j-3] = value; - break; - case 6: - pmts[n].pmt_type = value; - break; - } - j += 1; - str = strtok(NULL," \n"); - } - - normalize(pmts[n].normal); - - n += 1; - } - - fclose(f); - - initialized = 1; - - return 0; - -err: - fclose(f); - - return -1; -} - diff --git a/pmt.h b/pmt.h deleted file mode 100644 index fb29f4c..0000000 --- a/pmt.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef PMT_H -#define PMT_H - -#define MAX_PMTS 10000 -/* PMT radius (cm). */ -/* FIXME: should be radius of concentrator. */ -#define PMT_RADIUS 10.16 - -/* PMT types from snoman.ratdb. */ -#define PMT_NORMAL 1 -#define PMT_OWL 2 -#define PMT_LG 3 -#define PMT_BUTT 4 -#define PMT_NECK 5 -#define PMT_CALIBRATION 5 -#define PMT_SPARE 10 -#define PMT_INVALID 11 - -typedef struct pmt { - /* PMT position (cm). */ - double pos[3]; - /* PMT normal vector (points from the center of the PMT towards the - * photocathode). */ - double normal[3]; - int pmt_type; -} pmt; - -extern pmt pmts[MAX_PMTS]; - -int load_pmt_info(); - -#endif diff --git a/pmt.txt b/pmt.txt deleted file mode 100644 index d3b2d7d..0000000 --- a/pmt.txt +++ /dev/null @@ -1,9729 +0,0 @@ -# Format: x, y, z, u, v, w, pmt_type - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 5467.54 63.44 -6406.27 -0.68 -0.07 0.73 1 - 5615.16 266.80 -6251.09 -0.68 -0.07 0.73 1 - 5762.73 469.91 -6095.92 -0.68 -0.07 0.73 1 - 5910.50 673.23 -5940.54 -0.68 -0.07 0.73 1 - 6058.07 876.34 -5785.37 -0.68 -0.07 0.73 1 - 5402.51 349.82 -6438.44 -0.68 -0.07 0.73 1 - 5550.13 553.18 -6283.26 -0.68 -0.07 0.73 1 - 5697.85 756.25 -6127.89 -0.68 -0.07 0.73 1 - 5845.48 959.61 -5972.71 -0.68 -0.07 0.73 1 - 5337.49 636.20 -6470.62 -0.68 -0.07 0.73 1 - 5485.21 839.27 -6315.25 -0.68 -0.07 0.73 1 - 5632.83 1042.63 -6160.06 -0.68 -0.07 0.73 1 - 5272.76 922.26 -6502.76 -0.68 -0.07 0.73 1 - 5420.38 1125.62 -6347.57 -0.68 -0.07 0.73 1 - 6773.45 1974.38 -4600.32 -0.79 -0.17 0.59 1 - 6668.18 1782.97 -4799.28 -0.79 -0.17 0.59 1 - 6563.03 1591.96 -4998.31 -0.79 -0.17 0.59 1 - 6457.81 1400.72 -5197.09 -0.79 -0.17 0.59 1 - 6352.75 1209.37 -5396.18 -0.79 -0.17 0.59 1 - 6847.82 1688.88 -4584.72 -0.79 -0.17 0.59 1 - 6742.59 1497.64 -4783.50 -0.79 -0.17 0.59 1 - 6637.45 1306.63 -4982.53 -0.79 -0.17 0.59 1 - 6532.44 1115.46 -5181.44 -0.79 -0.17 0.59 1 - 6922.23 1403.55 -4568.94 -0.79 -0.17 0.59 1 - 6817.22 1212.37 -4767.84 -0.79 -0.17 0.59 1 - 6712.07 1021.37 -4966.88 -0.79 -0.17 0.59 1 - 6996.86 1118.29 -4553.29 -0.79 -0.17 0.59 1 - 6891.71 927.28 -4752.32 -0.79 -0.17 0.59 1 - 6115.15 1365.98 -5628.27 -0.69 -0.23 0.68 1 - 6023.81 1646.85 -5628.40 -0.69 -0.23 0.68 1 - 5932.61 1927.55 -5628.40 -0.69 -0.23 0.68 1 - 5841.32 2208.59 -5628.35 -0.69 -0.23 0.68 1 - 5750.12 2489.29 -5628.35 -0.69 -0.23 0.68 1 - 5902.83 1452.25 -5814.70 -0.69 -0.23 0.68 1 - 5811.49 1733.12 -5814.83 -0.69 -0.23 0.68 1 - 5720.34 2013.99 -5814.65 -0.69 -0.23 0.68 1 - 5629.00 2294.86 -5814.78 -0.69 -0.23 0.68 1 - 5690.51 1538.52 -6001.12 -0.69 -0.23 0.68 1 - 5599.35 1819.39 -6000.94 -0.69 -0.23 0.68 1 - 5508.02 2100.26 -6001.07 -0.69 -0.23 0.68 1 - 5478.58 1624.86 -6187.36 -0.69 -0.23 0.68 1 - 5387.24 1905.73 -6187.49 -0.69 -0.23 0.68 1 - 6253.24 1566.14 -5409.95 -0.75 -0.24 0.62 1 - 6175.90 2317.15 -5209.20 -0.75 -0.24 0.62 1 - 6267.10 2036.45 -5209.20 -0.75 -0.24 0.62 1 - 6358.44 1755.58 -5209.07 -0.75 -0.24 0.62 1 - 6372.46 2225.80 -5008.63 -0.75 -0.24 0.62 1 - 6463.79 1944.92 -5008.50 -0.75 -0.24 0.62 1 - 6568.80 2134.37 -4807.94 -0.75 -0.24 0.62 1 - 5850.34 2755.55 -5396.23 -0.74 -0.32 0.59 1 - 6047.76 2662.56 -5197.20 -0.74 -0.32 0.59 1 - 6245.25 2569.82 -4998.42 -0.74 -0.32 0.59 1 - 6442.71 2477.01 -4799.21 -0.74 -0.32 0.59 1 - 6640.34 2384.10 -4600.30 -0.74 -0.32 0.59 1 - 5940.44 2937.14 -5181.60 -0.74 -0.32 0.59 1 - 6137.77 2844.50 -4982.52 -0.74 -0.32 0.59 1 - 6335.40 2751.59 -4783.61 -0.74 -0.32 0.59 1 - 6532.68 2658.78 -4584.71 -0.74 -0.32 0.59 1 - 6030.46 3119.08 -4966.93 -0.74 -0.32 0.59 1 - 6227.87 3026.10 -4767.90 -0.74 -0.32 0.59 1 - 6425.16 2933.29 -4569.00 -0.74 -0.32 0.59 1 - 6120.43 3300.85 -4752.44 -0.74 -0.32 0.59 1 - 6317.84 3207.87 -4553.41 -0.74 -0.32 0.59 1 - 7849.25 103.68 -3052.74 -0.92 -0.08 0.39 1 - 7816.30 396.81 -3069.96 -0.92 -0.08 0.39 1 - 7783.67 689.72 -3087.01 -0.92 -0.08 0.39 1 - 7750.72 982.60 -3104.18 -0.92 -0.08 0.39 1 - 7717.99 1275.71 -3121.51 -0.92 -0.08 0.39 1 - 7735.95 225.74 -3296.76 -0.92 -0.08 0.39 1 - 7703.00 518.62 -3313.94 -0.92 -0.08 0.39 1 - 7670.37 811.53 -3330.98 -0.92 -0.08 0.39 1 - 7637.65 1104.39 -3348.26 -0.92 -0.08 0.39 1 - 7622.65 347.55 -3540.74 -0.92 -0.08 0.39 1 - 7589.93 640.41 -3558.01 -0.92 -0.08 0.39 1 - 7557.31 933.32 -3575.05 -0.92 -0.08 0.39 1 - 7509.59 469.34 -3784.81 -0.92 -0.08 0.39 1 - 7476.96 762.25 -3801.85 -0.92 -0.08 0.39 1 - 7852.14 1121.07 -2812.54 -0.95 -0.08 0.30 1 - 8065.33 576.59 -2294.47 -0.95 -0.08 0.30 1 - 7974.13 702.12 -2545.53 -0.95 -0.08 0.30 1 - 7882.83 827.61 -2796.82 -0.95 -0.08 0.30 1 - 8005.05 408.90 -2529.96 -0.95 -0.08 0.30 1 - 7913.75 534.39 -2781.25 -0.95 -0.08 0.30 1 - 7944.53 241.22 -2765.36 -0.95 -0.08 0.30 1 - 7807.98 1444.85 -2808.23 -0.95 -0.16 0.27 1 - 7899.28 1319.36 -2556.93 -0.95 -0.16 0.27 1 - 7990.48 1193.83 -2305.87 -0.95 -0.16 0.27 1 - 8081.78 1068.09 -2054.53 -0.95 -0.16 0.27 1 - 8172.99 942.56 -1803.47 -0.95 -0.16 0.27 1 - 7847.57 1609.96 -2566.46 -0.95 -0.16 0.27 1 - 7938.86 1484.47 -2315.17 -0.95 -0.16 0.27 1 - 8030.07 1358.69 -2064.06 -0.95 -0.16 0.27 1 - 8121.37 1233.21 -1812.77 -0.95 -0.16 0.27 1 - 7887.15 1775.07 -2324.70 -0.95 -0.16 0.27 1 - 7978.36 1649.29 -2073.59 -0.95 -0.16 0.27 1 - 8069.66 1523.81 -1822.30 -0.95 -0.16 0.27 1 - 7926.88 1939.88 -2083.21 -0.95 -0.16 0.27 1 - 8018.18 1814.39 -1831.92 -0.95 -0.16 0.27 1 - 7570.16 1605.03 -3324.93 -0.87 -0.20 0.46 1 - 7422.32 1714.12 -3556.17 -0.87 -0.20 0.46 1 - 7274.81 1823.10 -3787.44 -0.87 -0.20 0.46 1 - 7126.90 1932.01 -4018.85 -0.87 -0.20 0.46 1 - 6979.25 2041.16 -4250.23 -0.87 -0.20 0.46 1 - 7492.68 1427.54 -3547.75 -0.87 -0.20 0.46 1 - 7344.91 1536.28 -3779.04 -0.87 -0.20 0.46 1 - 7197.26 1645.43 -4010.43 -0.87 -0.20 0.46 1 - 7049.55 1754.35 -4241.54 -0.87 -0.20 0.46 1 - 7415.27 1249.69 -3770.62 -0.87 -0.20 0.46 1 - 7267.42 1358.78 -4001.86 -0.87 -0.20 0.46 1 - 7119.71 1467.70 -4232.98 -0.87 -0.20 0.46 1 - 7337.92 1072.03 -3993.31 -0.87 -0.20 0.46 1 - 7190.07 1181.11 -4224.56 -0.87 -0.20 0.46 1 - 7200.45 2805.23 -3332.78 -0.86 -0.28 0.42 1 - 7325.21 2069.62 -3564.34 -0.86 -0.28 0.42 1 - 7234.01 2350.32 -3564.34 -0.86 -0.28 0.42 1 - 7142.66 2631.18 -3564.46 -0.86 -0.28 0.42 1 - 7176.48 2176.52 -3795.99 -0.86 -0.28 0.42 1 - 7085.14 2457.38 -3796.11 -0.86 -0.28 0.42 1 - 7027.56 2283.35 -4027.50 -0.86 -0.28 0.42 1 - 7258.37 2979.33 -3062.35 -0.89 -0.29 0.35 1 - 7349.71 2698.47 -3062.23 -0.89 -0.29 0.35 1 - 7440.92 2417.77 -3062.23 -0.89 -0.29 0.35 1 - 7532.20 2136.72 -3062.28 -0.89 -0.29 0.35 1 - 7623.40 1856.03 -3062.28 -0.89 -0.29 0.35 1 - 7388.03 2866.21 -2822.21 -0.89 -0.29 0.35 1 - 7479.38 2585.34 -2822.09 -0.89 -0.29 0.35 1 - 7570.52 2304.46 -2822.26 -0.89 -0.29 0.35 1 - 7661.86 2023.60 -2822.14 -0.89 -0.29 0.35 1 - 7517.70 2753.08 -2582.07 -0.89 -0.29 0.35 1 - 7608.83 2472.20 -2582.24 -0.89 -0.29 0.35 1 - 7700.18 2191.33 -2582.12 -0.89 -0.29 0.35 1 - 7647.35 2640.01 -2342.37 -0.89 -0.29 0.35 1 - 7738.70 2359.14 -2342.25 -0.89 -0.29 0.35 1 - 6846.14 2450.88 -4250.21 -0.82 -0.35 0.46 1 - 6901.44 2626.06 -4018.78 -0.82 -0.35 0.46 1 - 6957.02 2800.96 -3787.53 -0.82 -0.35 0.46 1 - 7012.25 2975.96 -3556.27 -0.82 -0.35 0.46 1 - 7067.75 3151.21 -3324.98 -0.82 -0.35 0.46 1 - 6734.42 2724.25 -4241.54 -0.82 -0.35 0.46 1 - 6789.65 2899.25 -4010.27 -0.82 -0.35 0.46 1 - 6845.23 3074.15 -3779.03 -0.82 -0.35 0.46 1 - 6900.67 3249.21 -3547.91 -0.82 -0.35 0.46 1 - 6622.63 2997.44 -4233.03 -0.82 -0.35 0.46 1 - 6678.07 3172.50 -4001.91 -0.82 -0.35 0.46 1 - 6733.65 3347.40 -3770.67 -0.82 -0.35 0.46 1 - 6511.05 3270.69 -4224.67 -0.82 -0.35 0.46 1 - 6566.63 3445.59 -3993.42 -0.82 -0.35 0.46 1 - 7166.05 4041.46 -1803.52 -0.86 -0.43 0.27 1 - 7166.15 3886.09 -2054.70 -0.86 -0.43 0.27 1 - 7166.15 3730.93 -2305.76 -0.86 -0.43 0.27 1 - 7166.11 3575.61 -2557.15 -0.86 -0.43 0.27 1 - 7166.11 3420.45 -2808.21 -0.86 -0.43 0.27 1 - 7295.12 3775.89 -1812.97 -0.86 -0.43 0.27 1 - 7295.23 3620.52 -2064.15 -0.86 -0.43 0.27 1 - 7295.08 3465.41 -2315.42 -0.86 -0.43 0.27 1 - 7295.19 3310.04 -2566.60 -0.86 -0.43 0.27 1 - 7424.20 3510.32 -1822.42 -0.86 -0.43 0.27 1 - 7424.06 3355.20 -2073.69 -0.86 -0.43 0.27 1 - 7424.16 3199.84 -2324.87 -0.86 -0.43 0.27 1 - 7553.21 3245.14 -1832.05 -0.86 -0.43 0.27 1 - 7553.31 3089.78 -2083.23 -0.86 -0.43 0.27 1 - 6993.87 3504.46 -3121.41 -0.79 -0.48 0.39 1 - 6848.10 3760.75 -3104.13 -0.79 -0.48 0.39 1 - 6702.62 4016.99 -3087.07 -0.79 -0.48 0.39 1 - 6556.70 4273.32 -3070.00 -0.79 -0.48 0.39 1 - 6411.11 4529.76 -3052.82 -0.79 -0.48 0.39 1 - 6828.27 3595.75 -3348.13 -0.79 -0.48 0.39 1 - 6682.46 3851.88 -3331.17 -0.79 -0.48 0.39 1 - 6536.87 4108.32 -3313.99 -0.79 -0.48 0.39 1 - 6391.20 4364.41 -3296.83 -0.79 -0.48 0.39 1 - 6662.63 3686.88 -3575.17 -0.79 -0.48 0.39 1 - 6516.86 3943.17 -3557.89 -0.79 -0.48 0.39 1 - 6371.19 4199.26 -3540.73 -0.79 -0.48 0.39 1 - 6497.13 3777.97 -3802.00 -0.79 -0.48 0.39 1 - 6351.36 4034.26 -3784.72 -0.79 -0.48 0.39 1 - 7011.46 4174.06 -2059.09 -0.82 -0.49 0.30 1 - 6863.91 3963.72 -2796.85 -0.82 -0.49 0.30 1 - 6863.91 4118.88 -2545.78 -0.82 -0.49 0.30 1 - 6863.80 4274.25 -2294.60 -0.82 -0.49 0.30 1 - 6716.57 4219.17 -2781.18 -0.82 -0.49 0.30 1 - 6716.47 4374.54 -2530.00 -0.82 -0.49 0.30 1 - 6569.05 4474.47 -2765.43 -0.82 -0.49 0.30 1 - 5941.06 3821.79 -4522.73 -0.73 -0.45 0.51 1 - 6078.67 3562.40 -4553.93 -0.73 -0.45 0.51 1 - 6000.23 3992.84 -4289.40 -0.73 -0.45 0.51 1 - 6137.89 3733.65 -4320.90 -0.73 -0.45 0.51 1 - 6275.51 3474.26 -4352.10 -0.73 -0.45 0.51 1 - 6196.82 3904.94 -4087.66 -0.73 -0.45 0.51 1 - 6334.44 3645.55 -4118.86 -0.73 -0.45 0.51 1 - 6411.13 4756.23 -2686.35 -0.79 -0.56 0.25 1 - 6556.76 4656.92 -2449.21 -0.79 -0.56 0.25 1 - 6702.53 4557.62 -2212.48 -0.79 -0.56 0.25 1 - 6848.02 4458.36 -1975.54 -0.79 -0.56 0.25 1 - 6993.83 4359.20 -1738.49 -0.79 -0.56 0.25 1 - 6391.21 4900.55 -2429.33 -0.79 -0.56 0.25 1 - 6536.70 4801.29 -2192.39 -0.79 -0.56 0.25 1 - 6682.47 4701.98 -1955.66 -0.79 -0.56 0.25 1 - 6828.14 4602.87 -1718.82 -0.79 -0.56 0.25 1 - 6371.14 5044.92 -2172.51 -0.79 -0.56 0.25 1 - 6516.81 4945.81 -1935.66 -0.79 -0.56 0.25 1 - 6662.59 4846.50 -1698.94 -0.79 -0.56 0.25 1 - 6351.26 5189.44 -1915.79 -0.79 -0.56 0.25 1 - 6497.03 5090.13 -1679.06 -0.79 -0.56 0.25 1 - 5585.96 4916.74 -3929.72 -0.71 -0.55 0.44 1 - 6135.03 4539.32 -3521.60 -0.71 -0.55 0.44 1 - 5945.90 4608.20 -3737.65 -0.71 -0.55 0.44 1 - 5756.78 4677.08 -3953.71 -0.71 -0.55 0.44 1 - 6116.59 4368.59 -3761.85 -0.71 -0.55 0.44 1 - 5927.46 4437.47 -3977.91 -0.71 -0.55 0.44 1 - 6098.11 4197.66 -4001.81 -0.71 -0.55 0.44 1 - 6153.50 5041.70 -2745.32 -0.71 -0.64 0.29 1 - 5756.66 5628.08 -2415.20 -0.71 -0.64 0.29 1 - 5945.78 5404.04 -2450.21 -0.71 -0.64 0.29 1 - 6134.90 5179.99 -2485.21 -0.71 -0.64 0.29 1 - 5927.50 5542.43 -2189.99 -0.71 -0.64 0.29 1 - 6116.62 5318.38 -2224.99 -0.71 -0.64 0.29 1 - 6098.01 5456.67 -1964.88 -0.71 -0.64 0.29 1 - 5337.02 6056.30 -2378.51 -0.64 -0.73 0.22 1 - 5325.71 6293.78 -1634.22 -0.64 -0.73 0.22 1 - 5403.75 6150.12 -1880.12 -0.64 -0.73 0.22 1 - 5481.78 6006.46 -2126.01 -0.64 -0.73 0.22 1 - 5548.60 6100.16 -1627.82 -0.64 -0.73 0.22 1 - 5626.64 5956.50 -1873.72 -0.64 -0.73 0.22 1 - 5771.25 5906.46 -1621.16 -0.64 -0.73 0.22 1 - 6722.66 840.77 5012.27 -0.81 -0.17 -0.55 1 - 6575.03 1044.13 5167.46 -0.81 -0.17 -0.55 1 - 6871.60 919.77 4769.69 -0.81 -0.17 -0.55 1 - 6723.88 1122.84 4925.06 -0.81 -0.17 -0.55 1 - 6576.25 1326.20 5080.24 -0.81 -0.17 -0.55 1 - 7020.44 998.49 4527.28 -0.81 -0.17 -0.55 1 - 6872.82 1201.85 4682.47 -0.81 -0.17 -0.55 1 - 8314.83 805.75 -1018.60 -0.99 -0.10 0.06 1 - 8344.14 977.66 -257.10 -0.99 -0.10 0.06 1 - 8344.14 822.50 -508.16 -0.99 -0.10 0.06 1 - 8344.13 667.10 -759.32 -0.99 -0.10 0.06 1 - 8373.70 683.94 -249.11 -0.99 -0.10 0.06 1 - 8373.69 528.54 -500.27 -0.99 -0.10 0.06 1 - 8403.01 390.23 -241.13 -0.99 -0.10 0.06 1 - 8294.32 1462.97 51.38 -0.99 -0.10 -0.03 1 - 8324.96 1169.27 57.22 -0.99 -0.10 -0.03 1 - 8355.85 875.79 63.17 -0.99 -0.10 -0.03 1 - 8386.47 582.00 69.24 -0.99 -0.10 -0.03 1 - 8417.36 288.28 75.09 -0.99 -0.10 -0.03 1 - 8302.12 1320.41 309.78 -0.99 -0.10 -0.03 1 - 8332.75 1026.84 315.96 -0.99 -0.10 -0.03 1 - 8363.64 733.13 321.81 -0.99 -0.10 -0.03 1 - 8394.28 439.67 327.74 -0.99 -0.10 -0.03 1 - 8309.91 1177.98 568.52 -0.99 -0.10 -0.03 1 - 8340.54 884.28 574.36 -0.99 -0.10 -0.03 1 - 8371.18 590.81 580.30 -0.99 -0.10 -0.03 1 - 8317.71 1035.65 827.02 -0.99 -0.10 -0.03 1 - 8348.35 741.95 832.86 -0.99 -0.10 -0.03 1 - 8265.28 972.48 -1295.27 -0.98 -0.17 0.10 1 - 8265.29 1127.88 -1044.10 -0.98 -0.17 0.10 1 - 8265.29 1283.04 -793.04 -0.98 -0.17 0.10 1 - 8265.28 1438.35 -541.64 -0.98 -0.17 0.10 1 - 8265.28 1593.51 -290.58 -0.98 -0.17 0.10 1 - 8214.19 1263.40 -1301.47 -0.98 -0.17 0.10 1 - 8214.20 1418.79 -1050.31 -0.98 -0.17 0.10 1 - 8214.19 1573.86 -799.01 -0.98 -0.17 0.10 1 - 8214.20 1729.26 -547.85 -0.98 -0.17 0.10 1 - 8163.11 1554.31 -1307.68 -0.98 -0.17 0.10 1 - 8163.10 1709.38 -1056.38 -0.98 -0.17 0.10 1 - 8163.11 1864.78 -805.22 -0.98 -0.17 0.10 1 - 8112.26 1844.88 -1313.74 -0.98 -0.17 0.10 1 - 8112.27 2000.28 -1062.58 -0.98 -0.17 0.10 1 - 7982.35 2367.17 1272.50 -0.97 -0.23 -0.10 1 - 8041.80 2229.28 1018.02 -0.97 -0.23 -0.10 1 - 8101.36 2091.79 763.65 -0.97 -0.23 -0.10 1 - 8160.72 1954.03 509.38 -0.97 -0.23 -0.10 1 - 8220.40 1816.21 254.96 -0.97 -0.23 -0.10 1 - 8051.07 2079.83 1272.46 -0.97 -0.23 -0.10 1 - 8110.42 1942.06 1018.18 -0.97 -0.23 -0.10 1 - 8169.99 1804.58 763.81 -0.97 -0.23 -0.10 1 - 8229.58 1666.89 509.59 -0.97 -0.23 -0.10 1 - 8119.69 1792.62 1272.62 -0.97 -0.23 -0.10 1 - 8179.28 1654.93 1018.40 -0.97 -0.23 -0.10 1 - 8238.85 1517.45 764.03 -0.97 -0.23 -0.10 1 - 8188.55 1505.48 1272.83 -0.97 -0.23 -0.10 1 - 8248.11 1368.00 1018.47 -0.97 -0.23 -0.10 1 - 7684.52 2652.26 -1812.71 -0.93 -0.30 0.19 1 - 7684.50 2496.81 -2063.94 -0.93 -0.30 0.19 1 - 7775.77 2837.19 -1059.21 -0.93 -0.30 0.19 1 - 7775.76 2681.73 -1310.43 -0.93 -0.30 0.19 1 - 7775.86 2526.69 -1561.54 -0.93 -0.30 0.19 1 - 7775.75 2371.36 -1812.57 -0.93 -0.30 0.19 1 - 7775.71 2216.11 -2063.94 -0.93 -0.30 0.19 1 - 7867.00 2556.29 -1059.06 -0.93 -0.30 0.19 1 - 7866.96 2401.04 -1310.43 -0.93 -0.30 0.19 1 - 7867.09 2245.79 -1561.40 -0.93 -0.30 0.19 1 - 7867.05 2090.54 -1812.77 -0.93 -0.30 0.19 1 - 7958.30 2275.46 -1059.26 -0.93 -0.30 0.19 1 - 7958.19 2120.13 -1310.29 -0.93 -0.30 0.19 1 - 7958.39 1964.96 -1561.60 -0.93 -0.30 0.19 1 - 8172.96 2034.61 -36.42 -0.95 -0.31 0.02 1 - 8081.73 2315.51 -36.57 -0.95 -0.31 0.02 1 - 7990.52 2596.21 -36.56 -0.95 -0.31 0.02 1 - 7899.20 2877.24 -36.51 -0.95 -0.31 0.02 1 - 7807.99 3157.93 -36.51 -0.95 -0.31 0.02 1 - 8121.29 2173.08 -292.22 -0.95 -0.31 0.02 1 - 8030.05 2453.98 -292.37 -0.95 -0.31 0.02 1 - 7938.76 2734.81 -292.17 -0.95 -0.31 0.02 1 - 7847.52 3015.71 -292.31 -0.95 -0.31 0.02 1 - 8069.61 2311.55 -548.02 -0.95 -0.31 0.02 1 - 7978.32 2592.37 -547.82 -0.95 -0.31 0.02 1 - 7887.08 2873.28 -547.97 -0.95 -0.31 0.02 1 - 8018.12 2450.02 -803.42 -0.95 -0.31 0.02 1 - 7926.88 2730.92 -803.57 -0.95 -0.31 0.02 1 - 8125.84 2174.58 255.10 -0.95 -0.31 -0.06 1 - 7882.83 2871.77 510.40 -0.95 -0.31 -0.06 1 - 7974.04 2591.07 510.40 -0.95 -0.31 -0.06 1 - 8065.27 2310.17 510.55 -0.95 -0.31 -0.06 1 - 7913.79 2726.60 765.71 -0.95 -0.31 -0.06 1 - 8005.02 2445.70 765.85 -0.95 -0.31 -0.06 1 - 7944.51 2581.36 1020.95 -0.95 -0.31 -0.06 1 - 7718.03 3362.40 254.90 -0.92 -0.38 -0.10 1 - 7750.74 3215.90 509.26 -0.92 -0.38 -0.10 1 - 7783.66 3069.68 763.54 -0.92 -0.38 -0.10 1 - 7816.28 2923.31 1018.10 -0.92 -0.38 -0.10 1 - 7849.22 2776.88 1272.52 -0.92 -0.38 -0.10 1 - 7637.71 3488.62 509.41 -0.92 -0.38 -0.10 1 - 7670.30 3342.45 763.83 -0.92 -0.38 -0.10 1 - 7703.25 3196.03 1018.25 -0.92 -0.38 -0.10 1 - 7735.93 3049.73 1272.46 -0.92 -0.38 -0.10 1 - 7557.27 3615.17 763.97 -0.92 -0.38 -0.10 1 - 7589.98 3468.67 1018.34 -0.92 -0.38 -0.10 1 - 7622.66 3322.37 1272.55 -0.92 -0.38 -0.10 1 - 7476.92 3741.59 1018.34 -0.92 -0.38 -0.10 1 - 7509.63 3595.09 1272.70 -0.92 -0.38 -0.10 1 - 7623.35 3569.09 -290.55 -0.89 -0.44 0.10 1 - 7532.16 3694.62 -541.87 -0.89 -0.44 0.10 1 - 7440.96 3820.15 -792.93 -0.89 -0.44 0.10 1 - 7349.61 3945.87 -1044.27 -0.89 -0.44 0.10 1 - 7258.41 4071.40 -1295.33 -0.89 -0.44 0.10 1 - 7661.75 3429.32 -547.97 -0.89 -0.44 0.10 1 - 7570.57 3554.85 -799.29 -0.89 -0.44 0.10 1 - 7479.20 3680.58 -1050.37 -0.89 -0.44 0.10 1 - 7388.02 3806.10 -1301.69 -0.89 -0.44 0.10 1 - 7700.16 3289.55 -805.40 -0.89 -0.44 0.10 1 - 7608.80 3415.28 -1056.48 -0.89 -0.44 0.10 1 - 7517.61 3540.81 -1307.80 -0.89 -0.44 0.10 1 - 7738.59 3150.15 -1062.58 -0.89 -0.44 0.10 1 - 7647.40 3275.67 -1313.90 -0.89 -0.44 0.10 1 - 7474.16 3858.74 -265.15 -0.86 -0.50 0.06 1 - 7142.71 4364.79 -759.48 -0.86 -0.50 0.06 1 - 7233.92 4239.26 -508.41 -0.86 -0.50 0.06 1 - 7325.11 4113.74 -257.10 -0.86 -0.50 0.06 1 - 7085.22 4494.22 -500.34 -0.86 -0.50 0.06 1 - 7176.41 4368.69 -249.02 -0.86 -0.50 0.06 1 - 7027.53 4623.48 -241.20 -0.86 -0.50 0.06 1 - 6979.24 4714.38 75.01 -0.87 -0.50 -0.03 1 - 7126.94 4458.53 69.20 -0.87 -0.50 -0.03 1 - 7274.71 4203.03 63.12 -0.87 -0.50 -0.03 1 - 7422.26 3947.39 57.29 -0.87 -0.50 -0.03 1 - 7570.16 3691.70 51.48 -0.87 -0.50 -0.03 1 - 7049.53 4578.34 327.67 -0.87 -0.50 -0.03 1 - 7197.08 4322.70 321.84 -0.87 -0.50 -0.03 1 - 7344.85 4067.20 315.76 -0.87 -0.50 -0.03 1 - 7492.59 3811.71 309.94 -0.87 -0.50 -0.03 1 - 7119.67 4442.51 580.32 -0.87 -0.50 -0.03 1 - 7267.42 4187.02 574.50 -0.87 -0.50 -0.03 1 - 7415.19 3931.52 568.42 -0.87 -0.50 -0.03 1 - 7190.01 4306.83 832.97 -0.87 -0.50 -0.03 1 - 7337.78 4051.33 826.90 -0.87 -0.50 -0.03 1 - 7067.81 4383.14 -1331.50 -0.82 -0.57 0.11 1 - 7012.32 4511.64 -1071.42 -0.82 -0.57 0.11 1 - 6957.04 4640.28 -811.59 -0.82 -0.57 0.11 1 - 6901.39 4768.97 -551.53 -0.82 -0.57 0.11 1 - 6846.10 4897.62 -291.44 -0.82 -0.57 0.11 1 - 6900.79 4626.29 -1319.55 -0.82 -0.57 0.11 1 - 6845.16 4754.97 -1059.74 -0.82 -0.57 0.11 1 - 6789.86 4883.62 -799.66 -0.82 -0.57 0.11 1 - 6734.39 5012.10 -539.83 -0.82 -0.57 0.11 1 - 6733.63 4869.62 -1307.88 -0.82 -0.57 0.11 1 - 6678.14 4998.11 -1047.80 -0.82 -0.57 0.11 1 - 6622.66 5126.60 -787.97 -0.82 -0.57 0.11 1 - 6566.63 5112.75 -1296.18 -0.82 -0.57 0.11 1 - 6511.14 5241.25 -1036.10 -0.82 -0.57 0.11 1 - 6352.70 5367.41 1331.50 -0.79 -0.60 -0.11 1 - 6457.76 5274.93 1071.42 -0.79 -0.60 -0.11 1 - 6563.02 5182.60 811.59 -0.79 -0.60 -0.11 1 - 6668.22 5089.91 551.53 -0.79 -0.60 -0.11 1 - 6773.49 4997.56 291.44 -0.79 -0.60 -0.11 1 - 6532.33 5133.43 1319.55 -0.79 -0.60 -0.11 1 - 6637.52 5040.75 1059.74 -0.79 -0.60 -0.11 1 - 6742.79 4948.41 799.66 -0.79 -0.60 -0.11 1 - 6847.84 4855.94 539.83 -0.79 -0.60 -0.11 1 - 6712.10 4899.25 1307.88 -0.79 -0.60 -0.11 1 - 6817.15 4806.77 1047.80 -0.79 -0.60 -0.11 1 - 6922.21 4714.30 787.97 -0.79 -0.60 -0.11 1 - 6891.72 4665.29 1296.18 -0.79 -0.60 -0.11 1 - 6996.78 4572.81 1036.10 -0.79 -0.60 -0.11 1 - 7877.55 1339.11 2640.25 -0.95 -0.10 -0.29 1 - 8007.98 584.51 2485.19 -0.95 -0.10 -0.29 1 - 7986.67 876.93 2450.18 -0.95 -0.10 -0.29 1 - 7965.37 1169.36 2415.16 -0.95 -0.10 -0.29 1 - 8074.49 707.43 2225.04 -0.95 -0.10 -0.29 1 - 8053.19 999.85 2190.02 -0.95 -0.10 -0.29 1 - 8140.77 830.08 1964.84 -0.95 -0.10 -0.29 1 - 8188.77 1163.34 1395.69 -0.98 -0.11 -0.17 1 - 8248.33 1011.18 1149.73 -0.98 -0.11 -0.17 1 - 8158.94 1021.60 1653.03 -0.98 -0.11 -0.17 1 - 8218.73 869.71 1407.12 -0.98 -0.11 -0.17 1 - 8278.29 717.55 1161.16 -0.98 -0.11 -0.17 1 - 8188.81 728.27 1664.63 -0.98 -0.11 -0.17 1 - 8248.37 576.11 1418.68 -0.98 -0.11 -0.17 1 - 7852.84 628.75 2993.56 -0.91 -0.14 -0.40 1 - 7761.54 503.27 3244.86 -0.91 -0.14 -0.40 1 - 7825.03 920.42 2955.75 -0.91 -0.14 -0.40 1 - 7733.83 794.64 3206.86 -0.91 -0.14 -0.40 1 - 7642.53 669.15 3458.15 -0.91 -0.14 -0.40 1 - 7797.32 1211.79 2917.75 -0.91 -0.14 -0.40 1 - 7706.02 1086.30 3169.04 -0.91 -0.14 -0.40 1 - 7614.81 960.52 3420.15 -0.91 -0.14 -0.40 1 - 7523.51 835.04 3671.44 -0.91 -0.14 -0.40 1 - 7769.51 1503.45 2879.93 -0.91 -0.14 -0.40 1 - 7678.30 1377.67 3131.04 -0.91 -0.14 -0.40 1 - 7587.00 1252.19 3382.33 -0.91 -0.14 -0.40 1 - 7495.80 1126.66 3633.39 -0.91 -0.14 -0.40 1 - 7404.50 1000.92 3884.74 -0.91 -0.14 -0.40 1 - 7650.49 1669.34 3093.22 -0.91 -0.14 -0.40 1 - 7559.29 1543.56 3344.33 -0.91 -0.14 -0.40 1 - 7467.99 1418.07 3595.63 -0.91 -0.14 -0.40 1 - 7376.78 1292.54 3846.69 -0.91 -0.14 -0.40 1 - 7531.48 1835.23 3306.52 -0.91 -0.14 -0.40 1 - 7440.27 1709.45 3557.63 -0.91 -0.14 -0.40 1 - 7348.97 1583.96 3808.92 -0.91 -0.14 -0.40 1 - 7941.73 2248.91 1640.88 -0.95 -0.21 -0.22 1 - 7965.34 1637.17 2126.19 -0.95 -0.21 -0.22 1 - 7986.65 1799.25 1880.30 -0.95 -0.21 -0.22 1 - 8007.96 1961.34 1634.40 -0.95 -0.21 -0.22 1 - 8053.20 1511.63 1873.67 -0.95 -0.21 -0.22 1 - 8074.51 1673.71 1627.78 -0.95 -0.21 -0.22 1 - 8140.74 1386.14 1621.30 -0.95 -0.21 -0.22 1 - 7761.61 2677.09 1901.15 -0.91 -0.29 -0.30 1 - 7852.85 2396.19 1901.29 -0.91 -0.29 -0.30 1 - 7642.56 2793.64 2145.11 -0.91 -0.29 -0.30 1 - 7733.85 2512.82 2144.91 -0.91 -0.29 -0.30 1 - 7825.09 2231.91 2145.05 -0.91 -0.29 -0.30 1 - 7523.57 2910.27 2388.73 -0.91 -0.29 -0.30 1 - 7614.81 2629.36 2388.87 -0.91 -0.29 -0.30 1 - 7706.10 2348.54 2388.67 -0.91 -0.29 -0.30 1 - 7797.34 2067.63 2388.81 -0.91 -0.29 -0.30 1 - 7404.52 3026.81 2632.69 -0.91 -0.29 -0.30 1 - 7495.81 2745.99 2632.49 -0.91 -0.29 -0.30 1 - 7587.05 2465.09 2632.63 -0.91 -0.29 -0.30 1 - 7678.25 2184.39 2632.63 -0.91 -0.29 -0.30 1 - 7769.58 1903.36 2632.57 -0.91 -0.29 -0.30 1 - 7376.77 2862.54 2876.45 -0.91 -0.29 -0.30 1 - 7468.06 2581.71 2876.25 -0.91 -0.29 -0.30 1 - 7559.30 2300.81 2876.39 -0.91 -0.29 -0.30 1 - 7650.50 2020.11 2876.39 -0.91 -0.29 -0.30 1 - 7349.01 2698.26 3120.21 -0.91 -0.29 -0.30 1 - 7440.30 2417.43 3120.01 -0.91 -0.29 -0.30 1 - 7531.54 2136.53 3120.15 -0.91 -0.29 -0.30 1 - 7409.12 3204.29 2378.51 -0.90 -0.39 -0.22 1 - 7631.48 3120.14 1634.22 -0.90 -0.39 -0.22 1 - 7518.97 3238.75 1880.12 -0.90 -0.39 -0.22 1 - 7406.46 3357.37 2126.01 -0.90 -0.39 -0.22 1 - 7516.21 3391.96 1627.82 -0.90 -0.39 -0.22 1 - 7403.70 3510.57 1873.72 -0.90 -0.39 -0.22 1 - 7400.79 3663.57 1621.16 -0.90 -0.39 -0.22 1 - 6575.04 4155.06 3244.69 -0.81 -0.42 -0.40 1 - 6722.77 4106.95 2993.51 -0.81 -0.42 -0.40 1 - 6576.35 3950.72 3458.04 -0.81 -0.42 -0.40 1 - 6723.93 3902.92 3206.77 -0.81 -0.42 -0.40 1 - 6871.65 3854.81 2955.59 -0.81 -0.42 -0.40 1 - 6577.51 3746.69 3671.30 -0.81 -0.42 -0.40 1 - 6725.23 3698.58 3420.12 -0.81 -0.42 -0.40 1 - 6872.81 3650.78 3168.85 -0.81 -0.42 -0.40 1 - 7020.53 3602.67 2917.67 -0.81 -0.42 -0.40 1 - 6578.82 3542.35 3884.65 -0.81 -0.42 -0.40 1 - 6726.39 3494.55 3633.38 -0.81 -0.42 -0.40 1 - 6874.12 3446.44 3382.20 -0.81 -0.42 -0.40 1 - 7021.69 3398.49 3131.14 -0.81 -0.42 -0.40 1 - 7169.42 3350.53 2879.75 -0.81 -0.42 -0.40 1 - 6727.70 3290.21 3846.73 -0.81 -0.42 -0.40 1 - 6875.27 3242.41 3595.46 -0.81 -0.42 -0.40 1 - 7023.00 3194.30 3344.28 -0.81 -0.42 -0.40 1 - 7170.57 3146.35 3093.22 -0.81 -0.42 -0.40 1 - 6876.58 3038.07 3808.81 -0.81 -0.42 -0.40 1 - 7024.15 2990.27 3557.54 -0.81 -0.42 -0.40 1 - 7171.88 2942.16 3306.36 -0.81 -0.42 -0.40 1 - 6696.49 4294.35 2745.32 -0.83 -0.47 -0.29 1 - 7131.54 3735.72 2415.20 -0.83 -0.47 -0.29 1 - 6976.90 3984.82 2450.21 -0.83 -0.47 -0.29 1 - 6822.26 4233.92 2485.21 -0.83 -0.47 -0.29 1 - 7102.87 3924.66 2189.99 -0.83 -0.47 -0.29 1 - 6948.23 4173.76 2224.99 -0.83 -0.47 -0.29 1 - 7074.00 4113.33 1964.88 -0.83 -0.47 -0.29 1 - 7052.81 4224.21 1664.71 -0.85 -0.49 -0.17 1 - 7011.68 4382.14 1418.62 -0.85 -0.49 -0.17 1 - 7201.22 3969.18 1653.03 -0.85 -0.49 -0.17 1 - 7160.24 4127.31 1407.19 -0.85 -0.49 -0.17 1 - 7119.11 4285.25 1161.10 -0.85 -0.49 -0.17 1 - 7308.60 3872.21 1395.85 -0.85 -0.49 -0.17 1 - 7267.47 4030.14 1149.76 -0.85 -0.49 -0.17 1 - 6504.60 4627.58 2686.35 -0.77 -0.58 -0.25 1 - 6455.15 4796.77 2449.21 -0.77 -0.58 -0.25 1 - 6405.75 4966.10 2212.48 -0.77 -0.58 -0.25 1 - 6356.31 5135.14 1975.54 -0.77 -0.58 -0.25 1 - 6307.07 5304.46 1738.49 -0.77 -0.58 -0.25 1 - 6635.70 4564.04 2429.33 -0.77 -0.58 -0.25 1 - 6586.25 4733.08 2192.39 -0.77 -0.58 -0.25 1 - 6536.85 4902.40 1955.66 -0.77 -0.58 -0.25 1 - 6487.61 5071.57 1718.82 -0.77 -0.58 -0.25 1 - 6766.80 4500.34 2172.51 -0.77 -0.58 -0.25 1 - 6717.56 4669.51 1935.66 -0.77 -0.58 -0.25 1 - 6668.16 4838.83 1698.94 -0.77 -0.58 -0.25 1 - 6898.10 4436.77 1915.79 -0.77 -0.58 -0.25 1 - 6848.70 4606.10 1679.06 -0.77 -0.58 -0.25 1 - 2264.14 6702.32 4557.89 9999.00 9999.00 9999.00 3 - 4176.42 73.25 7305.86 9999.00 9999.00 9999.00 3 - 4120.94 246.84 -7341.35 -0.55 -0.03 0.83 1 - 4359.93 169.35 -7186.08 -0.55 -0.03 0.83 1 - 4598.71 91.76 -7030.91 -0.55 -0.03 0.83 1 - 4837.75 14.03 -6875.55 -0.55 -0.03 0.83 1 - 5076.52 -63.55 -6720.39 -0.55 -0.03 0.83 1 - 4292.34 454.78 -7220.26 -0.55 -0.03 0.83 1 - 4531.33 377.29 -7064.99 -0.55 -0.03 0.83 1 - 4770.16 299.47 -6909.74 -0.55 -0.03 0.83 1 - 5009.15 221.98 -6754.47 -0.55 -0.03 0.83 1 - 4463.74 662.73 -7099.17 -0.55 -0.03 0.83 1 - 4702.56 584.91 -6943.92 -0.55 -0.03 0.83 1 - 4941.55 507.41 -6788.65 -0.55 -0.03 0.83 1 - 4635.09 870.30 -6978.32 -0.55 -0.03 0.83 1 - 4874.08 792.80 -6823.05 -0.55 -0.03 0.83 1 - 3421.95 1732.80 -7498.41 -0.45 -0.14 0.88 1 - 3513.36 1451.95 -7498.37 -0.45 -0.14 0.88 1 - 3604.56 1171.25 -7498.37 -0.45 -0.14 0.88 1 - 3695.82 890.20 -7498.39 -0.45 -0.14 0.88 1 - 3787.02 609.50 -7498.39 -0.45 -0.14 0.88 1 - 3682.48 1662.19 -7378.32 -0.45 -0.14 0.88 1 - 3773.88 1381.34 -7378.29 -0.45 -0.14 0.88 1 - 3864.94 1100.44 -7378.34 -0.45 -0.14 0.88 1 - 3956.34 819.59 -7378.30 -0.45 -0.14 0.88 1 - 3943.00 1591.58 -7258.24 -0.45 -0.14 0.88 1 - 4034.06 1310.67 -7258.29 -0.45 -0.14 0.88 1 - 4125.47 1029.83 -7258.25 -0.45 -0.14 0.88 1 - 4203.24 1520.93 -7138.49 -0.45 -0.14 0.88 1 - 4294.64 1240.08 -7138.45 -0.45 -0.14 0.88 1 - 4623.21 2123.35 -6614.58 -0.58 -0.19 0.79 1 - 4475.55 1919.92 -6769.79 -0.58 -0.19 0.79 1 - 4327.81 1716.83 -6924.96 -0.58 -0.19 0.79 1 - 4861.95 2045.67 -6459.28 -0.58 -0.19 0.79 1 - 4714.50 1842.31 -6614.63 -0.58 -0.19 0.79 1 - 4566.75 1639.22 -6769.80 -0.58 -0.19 0.79 1 - 4419.09 1435.79 -6925.01 -0.58 -0.19 0.79 1 - 5100.90 1968.06 -6304.12 -0.58 -0.19 0.79 1 - 4953.24 1764.63 -6459.34 -0.58 -0.19 0.79 1 - 4805.70 1561.61 -6614.63 -0.58 -0.19 0.79 1 - 4658.09 1358.35 -6769.67 -0.58 -0.19 0.79 1 - 4510.30 1155.09 -6925.02 -0.58 -0.19 0.79 1 - 5192.23 1687.19 -6303.99 -0.58 -0.19 0.79 1 - 5044.44 1483.93 -6459.34 -0.58 -0.19 0.79 1 - 4897.04 1280.74 -6614.50 -0.58 -0.19 0.79 1 - 4749.24 1077.48 -6769.85 -0.58 -0.19 0.79 1 - 5283.39 1406.32 -6304.17 -0.58 -0.19 0.79 1 - 5135.77 1203.06 -6459.21 -0.58 -0.19 0.79 1 - 4988.19 999.87 -6614.68 -0.58 -0.19 0.79 1 - 5979.55 2408.58 -5409.89 -0.75 -0.24 0.62 1 - 6070.75 2127.88 -5409.89 -0.75 -0.24 0.62 1 - 6162.09 1847.01 -5409.76 -0.75 -0.24 0.62 1 - 5416.16 2851.93 -5785.33 -0.59 -0.34 0.73 1 - 5177.24 2929.45 -5940.69 -0.59 -0.34 0.73 1 - 4938.46 3007.04 -6095.86 -0.59 -0.34 0.73 1 - 4699.39 3084.76 -6251.17 -0.59 -0.34 0.73 1 - 4460.62 3162.35 -6406.34 -0.59 -0.34 0.73 1 - 5292.97 2659.65 -5972.76 -0.59 -0.34 0.73 1 - 5054.04 2737.17 -6128.12 -0.59 -0.34 0.73 1 - 4815.12 2814.96 -6283.24 -0.59 -0.34 0.73 1 - 4576.20 2892.48 -6438.60 -0.59 -0.34 0.73 1 - 5169.77 2467.37 -6160.19 -0.59 -0.34 0.73 1 - 4930.85 2545.16 -6315.31 -0.59 -0.34 0.73 1 - 4691.93 2622.68 -6470.67 -0.59 -0.34 0.73 1 - 5046.72 2275.50 -6347.53 -0.59 -0.34 0.73 1 - 4807.80 2353.02 -6502.89 -0.59 -0.34 0.73 1 - 4069.56 3035.35 -6720.39 -0.46 -0.30 0.83 1 - 3922.01 2832.00 -6875.67 -0.46 -0.30 0.83 1 - 3774.44 2628.89 -7030.84 -0.46 -0.30 0.83 1 - 3626.64 2425.56 -7186.19 -0.46 -0.30 0.83 1 - 3479.07 2222.45 -7341.36 -0.46 -0.30 0.83 1 - 4182.79 2764.62 -6754.57 -0.46 -0.30 0.83 1 - 4035.24 2561.28 -6909.85 -0.46 -0.30 0.83 1 - 3887.42 2358.18 -7065.09 -0.46 -0.30 0.83 1 - 3739.87 2154.84 -7220.37 -0.46 -0.30 0.83 1 - 4296.02 2493.90 -6788.74 -0.46 -0.30 0.83 1 - 4148.20 2290.80 -6943.98 -0.46 -0.30 0.83 1 - 4000.65 2087.46 -7099.26 -0.46 -0.30 0.83 1 - 4409.05 2223.53 -6823.09 -0.46 -0.30 0.83 1 - 4261.50 2020.19 -6978.37 -0.46 -0.30 0.83 1 - 5066.47 4092.89 -5340.40 -0.65 -0.43 0.63 1 - 5195.62 3831.02 -5385.68 -0.65 -0.43 0.63 1 - 5324.61 3569.42 -5431.26 -0.65 -0.43 0.63 1 - 5453.61 3307.74 -5476.50 -0.65 -0.43 0.63 1 - 5582.91 3046.01 -5521.93 -0.65 -0.43 0.63 1 - 5290.95 4006.96 -5168.62 -0.65 -0.43 0.63 1 - 5419.95 3745.28 -5213.86 -0.65 -0.43 0.63 1 - 5548.95 3483.68 -5259.44 -0.65 -0.43 0.63 1 - 5678.10 3222.15 -5304.83 -0.65 -0.43 0.63 1 - 5515.29 3921.22 -4996.80 -0.65 -0.43 0.63 1 - 5644.44 3659.69 -5042.19 -0.65 -0.43 0.63 1 - 5773.44 3398.09 -5087.77 -0.65 -0.43 0.63 1 - 5739.77 3835.63 -4825.13 -0.65 -0.43 0.63 1 - 5868.77 3574.03 -4870.72 -0.65 -0.43 0.63 1 - 5295.76 3150.94 -5731.47 -0.59 -0.42 0.70 1 - 4689.37 3567.66 -5994.02 -0.59 -0.42 0.70 1 - 4928.14 3490.07 -5838.86 -0.59 -0.42 0.70 1 - 5167.06 3412.55 -5683.50 -0.59 -0.42 0.70 1 - 4799.73 3751.62 -5791.08 -0.59 -0.42 0.70 1 - 5038.66 3674.10 -5635.72 -0.59 -0.42 0.70 1 - 4909.96 3935.45 -5587.98 -0.59 -0.42 0.70 1 - 5103.11 4368.92 -5068.73 -0.64 -0.53 0.55 1 - 5481.79 4587.86 -4421.44 -0.64 -0.53 0.55 1 - 5403.76 4432.18 -4659.90 -0.64 -0.53 0.55 1 - 5325.73 4276.49 -4898.35 -0.64 -0.53 0.55 1 - 5626.66 4339.68 -4489.72 -0.64 -0.53 0.55 1 - 5548.63 4184.00 -4728.17 -0.64 -0.53 0.55 1 - 5771.24 4091.57 -4557.80 -0.64 -0.53 0.55 1 - 4267.66 3473.32 -6376.67 -0.52 -0.47 0.71 1 - 4380.23 3656.42 -6174.10 -0.52 -0.47 0.71 1 - 4492.80 3839.60 -5971.89 -0.52 -0.47 0.71 1 - 4605.22 4022.91 -5769.28 -0.52 -0.47 0.71 1 - 4717.94 4206.15 -5566.87 -0.52 -0.47 0.71 1 - 4128.48 3725.51 -6311.96 -0.52 -0.47 0.71 1 - 4240.76 3908.76 -6109.54 -0.52 -0.47 0.71 1 - 4705.71 4709.28 -5167.47 -0.56 -0.61 0.55 1 - 4944.64 4631.76 -5012.11 -0.56 -0.61 0.55 1 - 4540.90 4938.36 -5080.12 -0.56 -0.61 0.55 1 - 4779.82 4860.57 -4925.00 -0.56 -0.61 0.55 1 - 5018.74 4783.05 -4769.63 -0.56 -0.61 0.55 1 - 4376.08 5167.17 -4993.00 -0.56 -0.61 0.55 1 - 4615.00 5089.65 -4837.64 -0.56 -0.61 0.55 1 - 4853.92 5011.86 -4682.52 -0.56 -0.61 0.55 1 - 5092.85 4934.34 -4527.16 -0.56 -0.61 0.55 1 - 4211.26 5396.25 -4905.65 -0.56 -0.61 0.55 1 - 4450.18 5318.46 -4750.53 -0.56 -0.61 0.55 1 - 4689.10 5240.94 -4595.16 -0.56 -0.61 0.55 1 - 4927.88 5163.36 -4440.00 -0.56 -0.61 0.55 1 - 5166.95 5085.64 -4284.68 -0.56 -0.61 0.55 1 - 4285.36 5547.54 -4663.17 -0.56 -0.61 0.55 1 - 4524.29 5469.76 -4508.05 -0.56 -0.61 0.55 1 - 4763.21 5392.24 -4352.69 -0.56 -0.61 0.55 1 - 5001.98 5314.65 -4197.52 -0.56 -0.61 0.55 1 - 4359.47 5698.84 -4420.69 -0.56 -0.61 0.55 1 - 4598.39 5621.05 -4265.57 -0.56 -0.61 0.55 1 - 4837.31 5543.53 -4110.21 -0.56 -0.61 0.55 1 - 7474.14 1962.79 -3332.83 -0.86 -0.28 0.42 1 - 7382.94 2243.48 -3332.83 -0.86 -0.28 0.42 1 - 7291.59 2524.35 -3332.95 -0.86 -0.28 0.42 1 - 7011.42 3708.42 -2812.60 -0.82 -0.49 0.30 1 - 7011.42 3863.58 -2561.54 -0.82 -0.49 0.30 1 - 7011.32 4018.95 -2310.36 -0.82 -0.49 0.30 1 - 5585.92 5713.54 -2640.54 -0.71 -0.64 0.29 1 - 5775.26 5489.80 -2675.31 -0.71 -0.64 0.29 1 - 5964.38 5265.75 -2710.32 -0.71 -0.64 0.29 1 - 5983.51 4969.24 -3244.69 -0.65 -0.64 0.40 1 - 5983.40 5124.61 -2993.51 -0.65 -0.64 0.40 1 - 5789.57 5033.64 -3458.04 -0.65 -0.64 0.40 1 - 5789.72 5188.75 -3206.77 -0.65 -0.64 0.40 1 - 5789.61 5344.12 -2955.59 -0.65 -0.64 0.40 1 - 5595.89 5097.78 -3671.30 -0.65 -0.64 0.40 1 - 5595.78 5253.14 -3420.12 -0.65 -0.64 0.40 1 - 5595.93 5408.26 -3168.85 -0.65 -0.64 0.40 1 - 5595.82 5563.62 -2917.67 -0.65 -0.64 0.40 1 - 5401.95 5162.17 -3884.65 -0.65 -0.64 0.40 1 - 5402.09 5317.29 -3633.38 -0.65 -0.64 0.40 1 - 5401.99 5472.65 -3382.20 -0.65 -0.64 0.40 1 - 5401.99 5627.82 -3131.14 -0.65 -0.64 0.40 1 - 5402.03 5783.13 -2879.75 -0.65 -0.64 0.40 1 - 5208.16 5381.68 -3846.73 -0.65 -0.64 0.40 1 - 5208.30 5536.80 -3595.46 -0.65 -0.64 0.40 1 - 5208.20 5692.16 -3344.28 -0.65 -0.64 0.40 1 - 5208.20 5847.32 -3093.22 -0.65 -0.64 0.40 1 - 5014.37 5601.19 -3808.81 -0.65 -0.64 0.40 1 - 5014.51 5756.30 -3557.54 -0.65 -0.64 0.40 1 - 5014.41 5911.67 -3306.36 -0.65 -0.64 0.40 1 - 5103.06 6487.49 -1640.88 -0.64 -0.73 0.22 1 - 5181.09 6343.82 -1886.78 -0.64 -0.73 0.22 1 - 5259.13 6200.16 -2132.67 -0.64 -0.73 0.22 1 - 4168.41 6239.63 -3749.05 -0.53 -0.72 0.45 1 - 4220.58 6060.35 -3977.78 -0.53 -0.72 0.45 1 - 4355.02 6245.42 -3520.31 -0.53 -0.72 0.45 1 - 4407.19 6066.14 -3749.05 -0.53 -0.72 0.45 1 - 4459.35 5886.87 -3977.78 -0.53 -0.72 0.45 1 - 4593.79 6071.94 -3520.31 -0.53 -0.72 0.45 1 - 4646.24 5892.44 -3749.10 -0.53 -0.72 0.45 1 - 4944.55 6554.45 -1901.15 -0.56 -0.77 0.30 1 - 4705.59 6728.03 -1901.29 -0.56 -0.77 0.30 1 - 5018.61 6405.21 -2145.11 -0.56 -0.77 0.30 1 - 4779.74 6578.82 -2144.91 -0.56 -0.77 0.30 1 - 4540.78 6752.39 -2145.05 -0.56 -0.77 0.30 1 - 5092.76 6256.00 -2388.73 -0.56 -0.77 0.30 1 - 4853.79 6429.58 -2388.87 -0.56 -0.77 0.30 1 - 4614.93 6603.18 -2388.67 -0.56 -0.77 0.30 1 - 4375.96 6776.76 -2388.81 -0.56 -0.77 0.30 1 - 5166.81 6106.77 -2632.69 -0.56 -0.77 0.30 1 - 4927.94 6280.37 -2632.49 -0.56 -0.77 0.30 1 - 4688.98 6453.95 -2632.63 -0.56 -0.77 0.30 1 - 4450.21 6627.43 -2632.63 -0.56 -0.77 0.30 1 - 4211.15 6801.13 -2632.57 -0.56 -0.77 0.30 1 - 5002.00 6131.13 -2876.45 -0.56 -0.77 0.30 1 - 4763.13 6304.74 -2876.25 -0.56 -0.77 0.30 1 - 4524.17 6478.31 -2876.39 -0.56 -0.77 0.30 1 - 4285.39 6651.79 -2876.39 -0.56 -0.77 0.30 1 - 4837.18 6155.50 -3120.21 -0.56 -0.77 0.30 1 - 4598.31 6329.10 -3120.01 -0.56 -0.77 0.30 1 - 4359.35 6502.68 -3120.15 -0.56 -0.77 0.30 1 - 4592.99 6858.07 -1640.88 -0.50 -0.84 0.22 1 - 4018.48 7069.57 -2126.19 -0.50 -0.84 0.22 1 - 4179.22 7039.74 -1880.30 -0.50 -0.84 0.22 1 - 4339.96 7009.92 -1634.40 -0.50 -0.84 0.22 1 - 3926.24 7191.92 -1873.67 -0.50 -0.84 0.22 1 - 4086.98 7162.10 -1627.78 -0.50 -0.84 0.22 1 - 3833.94 7313.96 -1621.30 -0.50 -0.84 0.22 1 - 7160.19 775.27 4353.23 -0.83 -0.05 -0.55 1 - 6822.16 329.27 4898.49 -0.83 -0.05 -0.55 1 - 6976.81 409.36 4660.03 -0.83 -0.05 -0.55 1 - 7131.46 489.44 4421.57 -0.83 -0.05 -0.55 1 - 6948.22 123.58 4728.17 -0.83 -0.05 -0.55 1 - 7102.87 203.66 4489.71 -0.83 -0.05 -0.55 1 - 7073.94 -82.20 4557.89 -0.83 -0.05 -0.55 1 - 4176.42 73.25 7305.86 -0.53 -0.05 -0.84 1 - 4709.73 513.71 6942.72 -0.53 -0.05 -0.84 1 - 4470.96 436.13 7097.88 -0.53 -0.05 -0.84 1 - 4231.97 358.63 7253.15 -0.53 -0.05 -0.84 1 - 4526.57 721.32 7045.47 -0.53 -0.05 -0.84 1 - 4287.58 643.83 7200.74 -0.53 -0.05 -0.84 1 - 4343.29 928.89 7148.01 -0.53 -0.05 -0.84 1 - 5180.98 403.27 6628.25 -0.58 -0.11 -0.80 1 - 4997.25 609.50 6732.87 -0.58 -0.11 -0.80 1 - 4813.85 815.69 6837.61 -0.58 -0.11 -0.80 1 - 4630.17 1022.15 6942.15 -0.58 -0.11 -0.80 1 - 4446.56 1228.43 7046.98 -0.58 -0.11 -0.80 1 - 5222.62 687.16 6558.72 -0.58 -0.11 -0.80 1 - 5039.15 893.53 6663.16 -0.58 -0.11 -0.80 1 - 4855.54 1099.81 6768.00 -0.58 -0.11 -0.80 1 - 4672.03 1305.94 6872.52 -0.58 -0.11 -0.80 1 - 5264.53 971.19 6489.01 -0.58 -0.11 -0.80 1 - 5080.79 1177.41 6593.63 -0.58 -0.11 -0.80 1 - 4897.27 1383.55 6698.15 -0.58 -0.11 -0.80 1 - 5306.38 1254.98 6419.38 -0.58 -0.11 -0.80 1 - 5122.65 1461.21 6524.00 -0.58 -0.11 -0.80 1 - 6725.10 1404.92 4837.84 -0.81 -0.17 -0.55 1 - 6577.48 1608.28 4993.03 -0.81 -0.17 -0.55 1 - 7169.38 1077.50 4284.69 -0.81 -0.17 -0.55 1 - 7021.66 1280.57 4440.06 -0.81 -0.17 -0.55 1 - 6874.04 1483.93 4595.25 -0.81 -0.17 -0.55 1 - 6726.47 1687.04 4750.42 -0.81 -0.17 -0.55 1 - 6578.70 1890.36 4905.81 -0.81 -0.17 -0.55 1 - 7170.60 1359.58 4197.48 -0.81 -0.17 -0.55 1 - 7022.88 1562.64 4352.85 -0.81 -0.17 -0.55 1 - 6875.26 1766.00 4508.03 -0.81 -0.17 -0.55 1 - 6727.69 1969.12 4663.20 -0.81 -0.17 -0.55 1 - 7171.82 1641.65 4110.26 -0.81 -0.17 -0.55 1 - 7024.10 1844.72 4265.63 -0.81 -0.17 -0.55 1 - 6876.48 2048.08 4420.82 -0.81 -0.17 -0.55 1 - 6381.21 968.93 5400.24 -0.74 -0.17 -0.65 1 - 6227.16 1734.31 5372.37 -0.74 -0.17 -0.65 1 - 6220.09 1451.11 5455.66 -0.74 -0.17 -0.65 1 - 6213.02 1167.91 5538.96 -0.74 -0.17 -0.65 1 - 6051.94 1650.07 5594.74 -0.74 -0.17 -0.65 1 - 6044.87 1366.88 5678.03 -0.74 -0.17 -0.65 1 - 5876.67 1565.86 5816.75 -0.74 -0.17 -0.65 1 - 7222.36 2036.22 3749.05 -0.85 -0.28 -0.45 1 - 7067.98 2141.24 3977.78 -0.85 -0.28 -0.45 1 - 7285.53 2211.91 3520.31 -0.85 -0.28 -0.45 1 - 7131.16 2316.92 3749.05 -0.85 -0.28 -0.45 1 - 6976.78 2421.94 3977.78 -0.85 -0.28 -0.45 1 - 7194.33 2492.61 3520.31 -0.85 -0.28 -0.45 1 - 7039.83 2597.95 3749.10 -0.85 -0.28 -0.45 1 - 6248.41 2291.97 5150.17 -0.70 -0.30 -0.65 1 - 5712.79 2707.16 5539.04 -0.70 -0.30 -0.65 1 - 5884.97 2482.20 5455.75 -0.70 -0.30 -0.65 1 - 6057.16 2257.23 5372.46 -0.70 -0.30 -0.65 1 - 5693.87 2447.26 5677.99 -0.70 -0.30 -0.65 1 - 5866.05 2222.30 5594.70 -0.70 -0.30 -0.65 1 - 5674.62 2187.47 5816.83 -0.70 -0.30 -0.65 1 - 5932.93 3020.15 5167.48 -0.76 -0.34 -0.55 1 - 5933.04 3271.33 5012.12 -0.76 -0.34 -0.55 1 - 6099.87 2792.60 5080.13 -0.76 -0.34 -0.55 1 - 6099.72 3043.87 4925.01 -0.76 -0.34 -0.55 1 - 6099.83 3295.06 4769.64 -0.76 -0.34 -0.55 1 - 6266.55 2565.14 4993.01 -0.76 -0.34 -0.55 1 - 6266.66 2816.33 4837.65 -0.76 -0.34 -0.55 1 - 6266.51 3067.60 4682.53 -0.76 -0.34 -0.55 1 - 6266.62 3318.78 4527.16 -0.76 -0.34 -0.55 1 - 6433.49 2337.60 4905.66 -0.76 -0.34 -0.55 1 - 6433.34 2588.87 4750.53 -0.76 -0.34 -0.55 1 - 6433.45 2840.05 4595.17 -0.76 -0.34 -0.55 1 - 6433.45 3091.12 4440.00 -0.76 -0.34 -0.55 1 - 6433.41 3342.50 4284.68 -0.76 -0.34 -0.55 1 - 6600.28 2361.32 4663.18 -0.76 -0.34 -0.55 1 - 6600.13 2612.59 4508.06 -0.76 -0.34 -0.55 1 - 6600.24 2863.78 4352.69 -0.76 -0.34 -0.55 1 - 6600.24 3114.84 4197.53 -0.76 -0.34 -0.55 1 - 6767.07 2385.05 4420.70 -0.76 -0.34 -0.55 1 - 6766.92 2636.32 4265.58 -0.76 -0.34 -0.55 1 - 6767.03 2887.50 4110.21 -0.76 -0.34 -0.55 1 - 4319.32 1619.81 7047.03 -0.54 -0.25 -0.80 1 - 4346.66 1894.69 6942.15 -0.54 -0.25 -0.80 1 - 4373.87 2169.45 6837.67 -0.54 -0.25 -0.80 1 - 4401.15 2444.10 6732.86 -0.54 -0.25 -0.80 1 - 4428.63 2719.01 6628.20 -0.54 -0.25 -0.80 1 - 4547.30 1689.60 6872.56 -0.54 -0.25 -0.80 1 - 4574.58 1964.25 6767.75 -0.54 -0.25 -0.80 1 - 4601.78 2239.01 6663.27 -0.54 -0.25 -0.80 1 - 4629.20 2513.69 6558.68 -0.54 -0.25 -0.80 1 - 4775.21 1759.16 6698.16 -0.54 -0.25 -0.80 1 - 4802.63 2033.84 6593.56 -0.54 -0.25 -0.80 1 - 4829.83 2308.60 6489.09 -0.54 -0.25 -0.80 1 - 5003.26 1828.75 6523.97 -0.54 -0.25 -0.80 1 - 5030.46 2103.52 6419.49 -0.54 -0.25 -0.80 1 - 4622.10 2985.46 6376.68 -0.61 -0.35 -0.71 1 - 4831.03 3035.94 6174.12 -0.61 -0.35 -0.71 1 - 5458.21 3187.25 5566.88 -0.61 -0.35 -0.71 1 - 4818.94 2775.17 6311.97 -0.61 -0.35 -0.71 1 - 5027.91 2825.32 6109.56 -0.61 -0.35 -0.71 1 - 5237.02 2875.90 5907.15 -0.61 -0.35 -0.71 1 - 5445.84 2926.26 5704.78 -0.61 -0.35 -0.71 1 - 5015.83 2564.55 6247.41 -0.61 -0.35 -0.71 1 - 5224.75 2615.03 6044.85 -0.61 -0.35 -0.71 1 - 5433.58 2665.39 5842.48 -0.61 -0.35 -0.71 1 - 5212.56 2354.14 6182.90 -0.61 -0.35 -0.71 1 - 5421.49 2404.62 5980.33 -0.61 -0.35 -0.71 1 - 5732.03 3503.28 5068.74 -0.70 -0.45 -0.55 1 - 6057.28 3795.76 4421.44 -0.70 -0.45 -0.55 1 - 5885.10 3769.66 4659.90 -0.70 -0.45 -0.55 1 - 5712.92 3743.56 4898.36 -0.70 -0.45 -0.55 1 - 5866.02 4010.24 4489.72 -0.70 -0.45 -0.55 1 - 5693.84 3984.14 4728.18 -0.70 -0.45 -0.55 1 - 5674.72 4224.42 4557.80 -0.70 -0.45 -0.55 1 - 4842.14 3357.38 5994.03 -0.58 -0.43 -0.70 1 - 4842.13 3608.44 5838.87 -0.58 -0.43 -0.70 1 - 4842.24 3859.63 5683.50 -0.58 -0.43 -0.70 1 - 5051.20 3405.50 5791.09 -0.58 -0.43 -0.70 1 - 5051.31 3656.68 5635.73 -0.58 -0.43 -0.70 1 - 5260.09 3453.52 5587.99 -0.58 -0.43 -0.70 1 - 5458.19 3553.72 5340.41 -0.61 -0.48 -0.63 1 - 5249.04 3757.47 5385.69 -0.61 -0.48 -0.63 1 - 5040.11 3961.00 5431.27 -0.61 -0.48 -0.63 1 - 4831.11 4164.54 5476.50 -0.61 -0.48 -0.63 1 - 4622.14 4368.39 5521.93 -0.61 -0.48 -0.63 1 - 5445.83 3793.78 5168.63 -0.61 -0.48 -0.63 1 - 5236.83 3997.32 5213.86 -0.61 -0.48 -0.63 1 - 5027.90 4200.85 5259.45 -0.61 -0.48 -0.63 1 - 4819.08 4404.49 5304.83 -0.61 -0.48 -0.63 1 - 5433.62 4033.63 4996.81 -0.61 -0.48 -0.63 1 - 5224.80 4237.27 5042.19 -0.61 -0.48 -0.63 1 - 5015.87 4440.79 5087.78 -0.61 -0.48 -0.63 1 - 5421.59 4273.58 4825.14 -0.61 -0.48 -0.63 1 - 5212.66 4477.10 4870.72 -0.61 -0.48 -0.63 1 - 5470.63 4469.28 4522.73 -0.65 -0.56 -0.51 1 - 5266.46 4680.32 4553.93 -0.65 -0.56 -0.51 1 - 5651.59 4472.71 4289.40 -0.65 -0.56 -0.51 1 - 5447.62 4683.72 4320.90 -0.65 -0.56 -0.51 1 - 5243.45 4894.76 4352.10 -0.65 -0.56 -0.51 1 - 5628.74 4686.84 4087.66 -0.65 -0.56 -0.51 1 - 5424.57 4897.88 4118.86 -0.65 -0.56 -0.51 1 - 7593.33 3088.42 -1561.49 -0.93 -0.30 0.19 1 - 7593.31 2932.96 -1812.71 -0.93 -0.30 0.19 1 - 7593.18 2777.84 -2063.88 -0.93 -0.30 0.19 1 - 7684.43 2962.76 -1310.37 -0.93 -0.30 0.19 1 - 7684.65 2807.39 -1561.54 -0.93 -0.30 0.19 1 - 5941.19 5754.30 -1395.85 -0.73 -0.66 0.17 1 - 6000.23 5622.21 -1653.03 -0.73 -0.66 0.17 1 - 6078.68 5666.38 -1149.76 -0.73 -0.66 0.17 1 - 6137.96 5534.37 -1407.19 -0.73 -0.66 0.17 1 - 6196.91 5402.25 -1664.71 -0.73 -0.66 0.17 1 - 6275.45 5446.45 -1161.10 -0.73 -0.66 0.17 1 - 6334.40 5314.33 -1418.62 -0.73 -0.66 0.17 1 - 6640.35 5180.81 -75.01 -0.74 -0.67 0.03 1 - 6442.67 5400.35 -69.20 -0.74 -0.67 0.03 1 - 6245.34 5619.84 -63.12 -0.74 -0.67 0.03 1 - 6047.81 5839.17 -57.29 -0.74 -0.67 0.03 1 - 5850.34 6058.85 -51.48 -0.74 -0.67 0.03 1 - 6532.70 5289.70 -327.67 -0.74 -0.67 0.03 1 - 6335.16 5509.03 -321.84 -0.74 -0.67 0.03 1 - 6137.83 5728.52 -315.76 -0.74 -0.67 0.03 1 - 5940.51 5947.99 -309.94 -0.74 -0.67 0.03 1 - 6425.19 5398.39 -580.32 -0.74 -0.67 0.03 1 - 6227.87 5617.86 -574.50 -0.74 -0.67 0.03 1 - 6030.53 5837.34 -568.42 -0.74 -0.67 0.03 1 - 6317.89 5507.21 -832.97 -0.74 -0.67 0.03 1 - 6120.56 5726.70 -826.90 -0.74 -0.67 0.03 1 - 5979.54 5915.92 265.15 -0.75 -0.66 -0.06 1 - 6358.40 5444.32 759.48 -0.75 -0.66 -0.06 1 - 6267.19 5569.85 508.41 -0.75 -0.66 -0.06 1 - 6175.99 5695.37 257.10 -0.75 -0.66 -0.06 1 - 6463.72 5349.65 500.34 -0.75 -0.66 -0.06 1 - 6372.52 5475.16 249.02 -0.75 -0.66 -0.06 1 - 6568.83 5254.83 241.20 -0.75 -0.66 -0.06 1 - 5750.17 6147.32 290.55 -0.69 -0.71 -0.10 1 - 5841.37 6021.81 541.87 -0.69 -0.71 -0.10 1 - 5932.57 5896.27 792.93 -0.69 -0.71 -0.10 1 - 6023.91 5770.55 1044.27 -0.69 -0.71 -0.10 1 - 6115.11 5645.02 1295.33 -0.69 -0.71 -0.10 1 - 5629.10 6227.04 547.97 -0.69 -0.71 -0.10 1 - 5720.30 6101.53 799.29 -0.69 -0.71 -0.10 1 - 5811.65 5975.78 1050.37 -0.69 -0.71 -0.10 1 - 5902.85 5850.27 1301.69 -0.69 -0.71 -0.10 1 - 5508.04 6306.76 805.40 -0.69 -0.71 -0.10 1 - 5599.39 6181.02 1056.48 -0.69 -0.71 -0.10 1 - 5690.59 6055.50 1307.80 -0.69 -0.71 -0.10 1 - 5387.34 6386.39 1062.58 -0.69 -0.71 -0.10 1 - 5478.54 6260.88 1313.90 -0.69 -0.71 -0.10 1 - 5582.85 6301.24 -254.90 -0.65 -0.76 0.10 1 - 5453.63 6377.62 -509.26 -0.65 -0.76 0.10 1 - 5324.74 6454.11 -763.54 -0.65 -0.76 0.10 1 - 5195.61 6530.36 -1018.10 -0.65 -0.76 0.10 1 - 5066.53 6606.94 -1272.52 -0.65 -0.76 0.10 1 - 5678.07 6185.85 -509.41 -0.65 -0.76 0.10 1 - 5549.13 6262.01 -763.83 -0.65 -0.76 0.10 1 - 4460.62 7144.22 36.42 -0.59 -0.81 -0.02 1 - 4699.58 6970.65 36.57 -0.59 -0.81 -0.02 1 - 4938.36 6797.16 36.56 -0.59 -0.81 -0.02 1 - 5177.42 6623.46 36.51 -0.59 -0.81 -0.02 1 - 5416.19 6449.98 36.51 -0.59 -0.81 -0.02 1 - 4576.35 7052.29 292.22 -0.59 -0.81 -0.02 1 - 4815.31 6878.71 292.37 -0.59 -0.81 -0.02 1 - 5054.18 6705.11 292.17 -0.59 -0.81 -0.02 1 - 5293.14 6531.53 292.31 -0.59 -0.81 -0.02 1 - 4692.07 6960.35 548.02 -0.59 -0.81 -0.02 1 - 4930.94 6786.75 547.82 -0.59 -0.81 -0.02 1 - 5169.90 6613.17 547.97 -0.59 -0.81 -0.02 1 - 4807.85 6868.59 803.42 -0.59 -0.81 -0.02 1 - 5046.81 6695.01 803.57 -0.59 -0.81 -0.02 1 - 6402.26 3793.20 3929.72 -0.74 -0.50 -0.44 1 - 6212.98 4432.03 3521.60 -0.74 -0.50 -0.44 1 - 6220.05 4230.87 3737.65 -0.74 -0.50 -0.44 1 - 6227.12 4029.72 3953.71 -0.74 -0.50 -0.44 1 - 6044.90 4467.25 3761.85 -0.74 -0.50 -0.44 1 - 6051.97 4266.10 3977.91 -0.74 -0.50 -0.44 1 - 5876.63 4502.50 4001.81 -0.74 -0.50 -0.44 1 - 5494.17 5568.63 3121.41 -0.70 -0.61 -0.39 1 - 5692.87 5350.80 3104.13 -0.70 -0.61 -0.39 1 - 5891.61 5133.25 3087.07 -0.70 -0.61 -0.39 1 - 6090.31 4915.26 3070.00 -0.70 -0.61 -0.39 1 - 6289.21 4697.55 3052.82 -0.70 -0.61 -0.39 1 - 5529.81 5382.93 3348.13 -0.70 -0.61 -0.39 1 - 5728.35 5165.10 3331.17 -0.70 -0.61 -0.39 1 - 5927.25 4947.39 3313.99 -0.70 -0.61 -0.39 1 - 6125.79 4729.71 3296.83 -0.70 -0.61 -0.39 1 - 5565.30 5197.23 3575.17 -0.70 -0.61 -0.39 1 - 5764.00 4979.39 3557.89 -0.70 -0.61 -0.39 1 - 5962.54 4761.72 3540.73 -0.70 -0.61 -0.39 1 - 5600.78 5011.68 3802.00 -0.70 -0.61 -0.39 1 - 5799.48 4793.85 3784.72 -0.70 -0.61 -0.39 1 - 6136.44 5378.44 2059.09 -0.72 -0.63 -0.30 1 - 5890.79 5303.10 2796.85 -0.72 -0.63 -0.30 1 - 6038.36 5255.15 2545.78 -0.72 -0.63 -0.30 1 - 6186.09 5207.04 2294.60 -0.72 -0.63 -0.30 1 - 6088.21 5084.04 2781.18 -0.72 -0.63 -0.30 1 - 6235.94 5035.93 2530.00 -0.72 -0.63 -0.30 1 - 6285.43 4864.85 2765.43 -0.72 -0.63 -0.30 1 - 6058.09 5566.43 1803.52 -0.68 -0.69 -0.27 1 - 5910.36 5614.54 2054.70 -0.68 -0.69 -0.27 1 - 5762.79 5662.49 2305.76 -0.68 -0.69 -0.27 1 - 5615.07 5710.45 2557.15 -0.68 -0.69 -0.27 1 - 5467.50 5758.40 2808.21 -0.68 -0.69 -0.27 1 - 5845.41 5771.26 1812.97 -0.68 -0.69 -0.27 1 - 5697.68 5819.37 2064.15 -0.68 -0.69 -0.27 1 - 5550.11 5867.17 2315.42 -0.68 -0.69 -0.27 1 - 5402.38 5915.28 2566.60 -0.68 -0.69 -0.27 1 - 5632.72 5976.09 1822.42 -0.68 -0.69 -0.27 1 - 5485.15 6023.88 2073.69 -0.68 -0.69 -0.27 1 - 5337.42 6072.00 2324.87 -0.68 -0.69 -0.27 1 - 5420.39 6180.73 1832.05 -0.68 -0.69 -0.27 1 - 5272.66 6228.84 2083.23 -0.68 -0.69 -0.27 1 - 4446.50 5753.71 4250.21 -0.58 -0.67 -0.46 1 - 4630.20 5752.16 4018.78 -0.58 -0.67 -0.46 1 - 4813.71 5750.98 3787.53 -0.58 -0.67 -0.46 1 - 4997.21 5749.43 3556.27 -0.58 -0.67 -0.46 1 - 5181.03 5748.06 3324.98 -0.58 -0.67 -0.46 1 - 4671.97 5562.98 4241.54 -0.58 -0.67 -0.46 1 - 4855.47 5561.43 4010.27 -0.58 -0.67 -0.46 1 - 5038.98 5560.24 3779.03 -0.58 -0.67 -0.46 1 - 5222.61 5558.87 3547.91 -0.58 -0.67 -0.46 1 - 4897.24 5372.24 4233.03 -0.58 -0.67 -0.46 1 - 5080.87 5370.87 4001.91 -0.58 -0.67 -0.46 1 - 5264.38 5369.68 3770.67 -0.58 -0.67 -0.46 1 - 5122.64 5181.68 4224.67 -0.58 -0.67 -0.46 1 - 5306.15 5180.49 3993.42 -0.58 -0.67 -0.46 1 - 4893.00 5981.18 3332.78 -0.53 -0.73 -0.42 1 - 4231.94 6327.15 3564.34 -0.53 -0.73 -0.42 1 - 4470.72 6153.67 3564.34 -0.53 -0.73 -0.42 1 - 4709.61 5980.00 3564.46 -0.53 -0.73 -0.42 1 - 4287.65 6152.67 3795.99 -0.53 -0.73 -0.42 1 - 4526.54 5979.00 3796.11 -0.53 -0.73 -0.42 1 - 4343.23 5978.02 4027.50 -0.53 -0.73 -0.42 1 - 5076.48 5982.46 3062.35 -0.55 -0.76 -0.35 1 - 4837.58 6156.13 3062.23 -0.55 -0.76 -0.35 1 - 4598.81 6329.61 3062.23 -0.55 -0.76 -0.35 1 - 4359.73 6503.27 3062.28 -0.55 -0.76 -0.35 1 - 4120.95 6676.75 3062.28 -0.55 -0.76 -0.35 1 - 5008.96 6140.73 2822.21 -0.55 -0.76 -0.35 1 - 4770.06 6314.40 2822.09 -0.55 -0.76 -0.35 1 - 4531.10 6487.88 2822.26 -0.55 -0.76 -0.35 1 - 4292.21 6661.55 2822.14 -0.55 -0.76 -0.35 1 - 4941.43 6299.01 2582.07 -0.55 -0.76 -0.35 1 - 4702.47 6472.49 2582.24 -0.55 -0.76 -0.35 1 - 4463.58 6646.16 2582.12 -0.55 -0.76 -0.35 1 - 4873.96 6457.26 2342.37 -0.55 -0.76 -0.35 1 - 4635.07 6630.93 2342.25 -0.55 -0.76 -0.35 1 - 4327.82 6961.83 1561.47 -0.58 -0.79 -0.19 1 - 4475.60 6913.69 1310.22 -0.58 -0.79 -0.19 1 - 4623.06 6865.73 1059.02 -0.58 -0.79 -0.19 1 - 4419.01 6836.14 1812.53 -0.58 -0.79 -0.19 1 - 4566.90 6788.17 1561.43 -0.58 -0.79 -0.19 1 - 4714.37 6740.21 1310.22 -0.58 -0.79 -0.19 1 - 4862.14 6692.07 1058.97 -0.58 -0.79 -0.19 1 - 4510.32 6710.61 2063.74 -0.58 -0.79 -0.19 1 - 4658.09 6662.47 1812.49 -0.58 -0.79 -0.19 1 - 4805.68 6614.69 1561.43 -0.58 -0.79 -0.19 1 - 4953.26 6566.54 1310.34 -0.58 -0.79 -0.19 1 - 5100.92 6518.59 1058.97 -0.58 -0.79 -0.19 1 - 4749.21 6536.94 2063.86 -0.58 -0.79 -0.19 1 - 4896.87 6488.99 1812.49 -0.58 -0.79 -0.19 1 - 5044.57 6441.02 1561.55 -0.58 -0.79 -0.19 1 - 5192.23 6393.07 1310.17 -0.58 -0.79 -0.19 1 - 4988.18 6363.47 2063.69 -0.58 -0.79 -0.19 1 - 5135.76 6315.32 1812.61 -0.58 -0.79 -0.19 1 - 5283.54 6267.54 1561.38 -0.58 -0.79 -0.19 1 - 2107.80 6753.11 -4557.89 9999.00 9999.00 9999.00 3 - 3145.09 7796.16 -69.24 9999.00 9999.00 9999.00 3 - 5771.24 4091.57 -4557.80 9999.00 9999.00 9999.00 3 - 2002.06 3509.43 7378.30 9999.00 9999.00 9999.00 3 - 3598.30 314.49 -7608.69 -0.36 -0.03 0.93 1 - 3329.72 384.35 -7709.78 -0.36 -0.03 0.93 1 - 3061.40 454.08 -7811.08 -0.36 -0.03 0.93 1 - 2792.68 523.73 -7912.22 -0.36 -0.03 0.93 1 - 2524.17 593.61 -8013.56 -0.36 -0.03 0.93 1 - 3410.66 101.20 -7689.08 -0.36 -0.03 0.93 1 - 3142.14 170.71 -7790.18 -0.36 -0.03 0.93 1 - 2873.63 240.59 -7891.51 -0.36 -0.03 0.93 1 - 2605.25 310.30 -7992.57 -0.36 -0.03 0.93 1 - 3223.08 -112.44 -7769.47 -0.36 -0.03 0.93 1 - 2954.51 -42.58 -7870.56 -0.36 -0.03 0.93 1 - 2686.13 27.13 -7971.62 -0.36 -0.03 0.93 1 - 3035.65 -325.87 -7849.82 -0.36 -0.03 0.93 1 - 2767.08 -256.01 -7950.91 -0.36 -0.03 0.93 1 - 1919.91 468.60 -8192.58 -0.15 -0.05 0.99 1 - 1828.50 749.45 -8192.61 -0.15 -0.05 0.99 1 - 1725.16 250.09 -8232.62 -0.15 -0.05 0.99 1 - 1634.10 531.00 -8232.57 -0.15 -0.05 0.99 1 - 1542.70 811.84 -8232.61 -0.15 -0.05 0.99 1 - 1530.76 31.64 -8272.58 -0.15 -0.05 0.99 1 - 1439.36 312.49 -8272.62 -0.15 -0.05 0.99 1 - 1348.30 593.39 -8272.57 -0.15 -0.05 0.99 1 - 1256.89 874.24 -8272.61 -0.15 -0.05 0.99 1 - 1336.02 -186.86 -8312.63 -0.15 -0.05 0.99 1 - 1244.96 94.04 -8312.58 -0.15 -0.05 0.99 1 - 1153.55 374.89 -8312.62 -0.15 -0.05 0.99 1 - 1062.35 655.59 -8312.61 -0.15 -0.05 0.99 1 - 971.09 936.64 -8312.60 -0.15 -0.05 0.99 1 - 1050.21 -124.47 -8352.63 -0.15 -0.05 0.99 1 - 959.15 156.44 -8352.58 -0.15 -0.05 0.99 1 - 867.75 437.28 -8352.61 -0.15 -0.05 0.99 1 - 776.55 717.98 -8352.61 -0.15 -0.05 0.99 1 - 764.41 -62.07 -8392.62 -0.15 -0.05 0.99 1 - 673.35 218.83 -8392.57 -0.15 -0.05 0.99 1 - 581.94 499.68 -8392.61 -0.15 -0.05 0.99 1 - 3492.61 669.10 -7627.40 -0.37 -0.12 0.92 1 - 3401.41 949.80 -7627.40 -0.37 -0.12 0.92 1 - 3310.00 1230.64 -7627.44 -0.37 -0.12 0.92 1 - 3218.94 1511.55 -7627.39 -0.37 -0.12 0.92 1 - 3223.20 736.78 -7727.54 -0.37 -0.12 0.92 1 - 3132.00 1017.48 -7727.54 -0.37 -0.12 0.92 1 - 3040.60 1298.33 -7727.57 -0.37 -0.12 0.92 1 - 2953.85 804.49 -7827.92 -0.37 -0.12 0.92 1 - 2862.45 1085.34 -7827.96 -0.37 -0.12 0.92 1 - 2684.45 872.18 -7928.06 -0.37 -0.12 0.92 1 - 2391.06 1003.34 -8013.55 -0.31 -0.18 0.93 1 - 2567.26 1217.79 -7912.20 -0.31 -0.18 0.93 1 - 2743.56 1431.92 -7811.11 -0.31 -0.18 0.93 1 - 2919.61 1646.17 -7709.81 -0.31 -0.18 0.93 1 - 3095.86 1860.65 -7608.71 -0.31 -0.18 0.93 1 - 2290.12 1280.20 -7992.57 -0.31 -0.18 0.93 1 - 2466.17 1494.46 -7891.27 -0.31 -0.18 0.93 1 - 2642.47 1708.58 -7790.18 -0.31 -0.18 0.93 1 - 2818.58 1922.85 -7689.12 -0.31 -0.18 0.93 1 - 2189.03 1556.87 -7971.63 -0.31 -0.18 0.93 1 - 2365.14 1771.14 -7870.58 -0.31 -0.18 0.93 1 - 2541.44 1985.26 -7769.49 -0.31 -0.18 0.93 1 - 2088.00 1833.55 -7950.94 -0.31 -0.18 0.93 1 - 2264.31 2047.67 -7849.85 -0.31 -0.18 0.93 1 - 4579.14 3383.83 -6197.12 -0.59 -0.42 0.70 1 - 4817.92 3306.25 -6041.96 -0.59 -0.42 0.70 1 - 5056.84 3228.72 -5886.59 -0.59 -0.42 0.70 1 - 5336.77 4835.98 -4353.36 -0.64 -0.53 0.55 1 - 5259.17 4680.29 -4591.82 -0.64 -0.53 0.55 1 - 5181.14 4524.61 -4830.27 -0.64 -0.53 0.55 1 - 1160.77 1173.76 -8251.94 -0.19 -0.16 0.97 1 - 1445.46 1111.47 -8205.13 -0.19 -0.16 0.97 1 - 1730.15 1048.81 -8158.10 -0.19 -0.16 0.97 1 - 2014.85 986.15 -8111.06 -0.19 -0.16 0.97 1 - 1349.12 1389.26 -8179.09 -0.19 -0.16 0.97 1 - 1633.82 1326.60 -8132.05 -0.19 -0.16 0.97 1 - 1918.51 1263.94 -8085.01 -0.19 -0.16 0.97 1 - 1537.68 1604.62 -8106.21 -0.19 -0.16 0.97 1 - 1822.38 1541.96 -8059.17 -0.19 -0.16 0.97 1 - 1726.04 1819.75 -8033.13 -0.19 -0.16 0.97 1 - 3335.67 2514.09 -7305.88 -0.40 -0.35 0.84 1 - 3483.25 2717.20 -7150.71 -0.40 -0.35 0.84 1 - 3630.80 2920.54 -6995.43 -0.40 -0.35 0.84 1 - 3778.61 3123.65 -6840.19 -0.40 -0.35 0.84 1 - 3213.02 2777.47 -7253.20 -0.40 -0.35 0.84 1 - 3360.59 2980.59 -7098.03 -0.40 -0.35 0.84 1 - 3508.14 3183.93 -6942.75 -0.40 -0.35 0.84 1 - 3090.43 3040.97 -7200.73 -0.40 -0.35 0.84 1 - 3237.98 3244.31 -7045.45 -0.40 -0.35 0.84 1 - 2967.78 3304.35 -7148.05 -0.40 -0.35 0.84 1 - 4353.48 4092.00 -5907.13 -0.52 -0.47 0.71 1 - 4465.91 4275.04 -5704.77 -0.52 -0.47 0.71 1 - 3989.02 3977.85 -6247.40 -0.52 -0.47 0.71 1 - 4101.59 4160.95 -6044.83 -0.52 -0.47 0.71 1 - 4214.02 4343.99 -5842.46 -0.52 -0.47 0.71 1 - 3849.70 4229.98 -6182.88 -0.52 -0.47 0.71 1 - 3962.27 4413.08 -5980.31 -0.52 -0.47 0.71 1 - 3141.63 2252.78 -7482.91 -0.33 -0.32 0.89 1 - 3021.21 2517.31 -7430.40 -0.33 -0.32 0.89 1 - 2900.88 2781.73 -7378.23 -0.33 -0.32 0.89 1 - 2780.21 3046.27 -7325.79 -0.33 -0.32 0.89 1 - 2659.86 3310.91 -7273.50 -0.33 -0.32 0.89 1 - 2863.59 2307.54 -7565.70 -0.33 -0.32 0.89 1 - 2742.95 2571.85 -7513.38 -0.33 -0.32 0.89 1 - 2622.59 2836.49 -7461.09 -0.33 -0.32 0.89 1 - 2502.19 3100.79 -7408.70 -0.33 -0.32 0.89 1 - 2585.33 2362.08 -7648.68 -0.33 -0.32 0.89 1 - 2464.91 2626.61 -7596.17 -0.33 -0.32 0.89 1 - 2344.51 2890.91 -7543.78 -0.33 -0.32 0.89 1 - 2307.31 2416.61 -7731.58 -0.33 -0.32 0.89 1 - 2186.89 2681.13 -7679.07 -0.33 -0.32 0.89 1 - 2875.28 3607.37 -7047.02 -0.41 -0.43 0.80 1 - 3145.16 3548.43 -6942.14 -0.41 -0.43 0.80 1 - 3414.88 3489.40 -6837.66 -0.41 -0.43 0.80 1 - 3684.52 3430.47 -6732.85 -0.41 -0.43 0.80 1 - 3954.46 3371.65 -6628.19 -0.41 -0.43 0.80 1 - 3012.11 3802.62 -6872.54 -0.41 -0.43 0.80 1 - 3281.74 3743.70 -6767.74 -0.41 -0.43 0.80 1 - 3551.47 3684.66 -6663.26 -0.41 -0.43 0.80 1 - 3821.17 3625.85 -6558.66 -0.41 -0.43 0.80 1 - 3148.69 3997.89 -6698.14 -0.41 -0.43 0.80 1 - 3418.40 3939.08 -6593.55 -0.41 -0.43 0.80 1 - 3688.12 3880.05 -6489.07 -0.41 -0.43 0.80 1 - 3285.35 4193.27 -6523.95 -0.41 -0.43 0.80 1 - 3555.07 4134.24 -6419.47 -0.41 -0.43 0.80 1 - 4593.05 4534.65 -5400.18 -0.50 -0.58 0.65 1 - 4432.30 4767.93 -5316.89 -0.50 -0.58 0.65 1 - 4271.56 5001.20 -5233.60 -0.50 -0.58 0.65 1 - 4110.67 5234.33 -5150.16 -0.50 -0.58 0.65 1 - 4340.02 4596.63 -5539.02 -0.50 -0.58 0.65 1 - 4179.28 4829.90 -5455.73 -0.50 -0.58 0.65 1 - 4018.53 5063.17 -5372.44 -0.50 -0.58 0.65 1 - 4086.99 4658.95 -5677.97 -0.50 -0.58 0.65 1 - 3926.25 4892.22 -5594.68 -0.50 -0.58 0.65 1 - 3833.97 4720.92 -5816.81 -0.50 -0.58 0.65 1 - 3222.91 4871.24 -6020.06 -0.40 -0.56 0.73 1 - 3096.81 4697.46 -6222.77 -0.40 -0.56 0.73 1 - 3492.88 4807.53 -5918.78 -0.40 -0.56 0.73 1 - 3366.78 4634.09 -6121.60 -0.40 -0.56 0.73 1 - 3240.67 4460.31 -6324.31 -0.40 -0.56 0.73 1 - 3636.75 4570.65 -6020.08 -0.40 -0.56 0.73 1 - 3510.64 4396.87 -6222.79 -0.40 -0.56 0.73 1 - 3707.77 5527.19 -5149.97 -0.39 -0.65 0.65 1 - 3436.46 5607.91 -5233.63 -0.39 -0.65 0.65 1 - 3164.94 5688.70 -5316.93 -0.39 -0.65 0.65 1 - 2893.42 5769.48 -5400.22 -0.39 -0.65 0.65 1 - 3573.73 5386.46 -5372.35 -0.39 -0.65 0.65 1 - 3302.21 5467.24 -5455.65 -0.39 -0.65 0.65 1 - 3030.69 5548.03 -5538.94 -0.39 -0.65 0.65 1 - 3439.48 5245.84 -5594.72 -0.39 -0.65 0.65 1 - 3167.95 5326.63 -5678.01 -0.39 -0.65 0.65 1 - 3305.22 5105.18 -5816.73 -0.39 -0.65 0.65 1 - 2877.04 6133.81 -5012.26 -0.41 -0.72 0.55 1 - 3024.83 5930.58 -5167.45 -0.41 -0.72 0.55 1 - 2998.20 6251.05 -4769.68 -0.41 -0.72 0.55 1 - 3145.69 6047.81 -4925.05 -0.41 -0.72 0.55 1 - 3293.48 5844.57 -5080.23 -0.41 -0.72 0.55 1 - 3119.06 6368.28 -4527.28 -0.41 -0.72 0.55 1 - 3266.85 6165.04 -4682.46 -0.41 -0.72 0.55 1 - 3414.34 5961.80 -4837.83 -0.41 -0.72 0.55 1 - 3562.13 5758.56 -4993.01 -0.41 -0.72 0.55 1 - 3240.23 6485.51 -4284.69 -0.41 -0.72 0.55 1 - 3387.71 6282.27 -4440.06 -0.41 -0.72 0.55 1 - 3535.50 6079.03 -4595.24 -0.41 -0.72 0.55 1 - 3683.07 5875.92 -4750.41 -0.41 -0.72 0.55 1 - 3830.78 5672.55 -4905.80 -0.41 -0.72 0.55 1 - 3508.88 6399.51 -4197.47 -0.41 -0.72 0.55 1 - 3656.36 6196.26 -4352.84 -0.41 -0.72 0.55 1 - 3804.15 5993.03 -4508.03 -0.41 -0.72 0.55 1 - 3951.72 5789.91 -4663.19 -0.41 -0.72 0.55 1 - 3777.53 6313.50 -4110.26 -0.41 -0.72 0.55 1 - 3925.01 6110.26 -4265.63 -0.41 -0.72 0.55 1 - 4072.80 5907.02 -4420.81 -0.41 -0.72 0.55 1 - 1984.55 4802.79 -6628.24 -0.29 -0.52 0.80 1 - 2123.90 4564.32 -6732.86 -0.29 -0.52 0.80 1 - 2263.33 4326.19 -6837.60 -0.29 -0.52 0.80 1 - 2402.92 4087.70 -6942.13 -0.29 -0.52 0.80 1 - 2542.37 3849.33 -7046.97 -0.29 -0.52 0.80 1 - 2267.41 4754.67 -6558.71 -0.29 -0.52 0.80 1 - 2406.98 4516.41 -6663.14 -0.29 -0.52 0.80 1 - 2546.43 4278.04 -6767.98 -0.29 -0.52 0.80 1 - 2685.77 4039.81 -6872.50 -0.29 -0.52 0.80 1 - 2550.48 4706.75 -6488.99 -0.29 -0.52 0.80 1 - 2689.84 4468.28 -6593.61 -0.29 -0.52 0.80 1 - 2829.18 4230.05 -6698.13 -0.29 -0.52 0.80 1 - 2833.33 4658.86 -6419.36 -0.29 -0.52 0.80 1 - 2972.68 4420.39 -6523.98 -0.29 -0.52 0.80 1 - 2326.95 3552.87 -7273.46 -0.21 -0.41 0.89 1 - 2037.98 3585.54 -7325.79 -0.21 -0.41 0.89 1 - 1749.32 3618.51 -7378.15 -0.21 -0.41 0.89 1 - 1460.60 3651.16 -7430.40 -0.21 -0.41 0.89 1 - 1171.72 3683.92 -7482.95 -0.21 -0.41 0.89 1 - 2175.85 3337.98 -7408.66 -0.21 -0.41 0.89 1 - 1887.12 3370.62 -7460.90 -0.21 -0.41 0.89 1 - 1598.46 3403.60 -7513.26 -0.21 -0.41 0.89 1 - 1309.82 3436.34 -7565.73 -0.21 -0.41 0.89 1 - 2024.99 3123.06 -7543.77 -0.21 -0.41 0.89 1 - 1736.35 3155.81 -7596.23 -0.21 -0.41 0.89 1 - 1447.69 3188.79 -7648.59 -0.21 -0.41 0.89 1 - 1874.22 2908.25 -7679.09 -0.21 -0.41 0.89 1 - 1585.56 2941.23 -7731.45 -0.21 -0.41 0.89 1 - 2542.31 5786.86 -5566.84 -0.29 -0.64 0.71 1 - 2402.86 5622.97 -5769.33 -0.29 -0.64 0.71 1 - 2263.36 5459.51 -5971.75 -0.29 -0.64 0.71 1 - 2124.00 5295.75 -6174.04 -0.29 -0.64 0.71 1 - 1984.64 5132.04 -6376.68 -0.29 -0.64 0.71 1 - 2685.72 5568.44 -5704.73 -0.29 -0.64 0.71 1 - 2546.36 5404.68 -5907.02 -0.29 -0.64 0.71 1 - 2406.86 5241.22 -6109.44 -0.29 -0.64 0.71 1 - 2267.59 5077.64 -6311.88 -0.29 -0.64 0.71 1 - 2829.22 5350.15 -5842.42 -0.29 -0.64 0.71 1 - 2689.95 5186.57 -6044.86 -0.29 -0.64 0.71 1 - 2550.45 5023.12 -6247.28 -0.29 -0.64 0.71 1 - 2972.81 5132.05 -5980.26 -0.29 -0.64 0.71 1 - 2833.32 4968.59 -6182.68 -0.29 -0.64 0.71 1 - 1803.19 4558.93 -6840.16 -0.21 -0.49 0.84 1 - 1655.61 4355.82 -6995.33 -0.21 -0.49 0.84 1 - 1508.06 4152.47 -7150.60 -0.21 -0.49 0.84 1 - 1360.25 3949.38 -7305.85 -0.21 -0.49 0.84 1 - 1943.95 4320.48 -6942.71 -0.21 -0.49 0.84 1 - 1796.38 4117.36 -7097.87 -0.21 -0.49 0.84 1 - 1648.82 3914.02 -7253.14 -0.21 -0.49 0.84 1 - 2084.81 4082.13 -7045.46 -0.21 -0.49 0.84 1 - 1937.25 3878.78 -7200.73 -0.21 -0.49 0.84 1 - 2225.58 3843.68 -7148.00 -0.21 -0.49 0.84 1 - 8125.85 744.27 -2059.07 -0.95 -0.08 0.30 1 - 8034.64 869.80 -2310.13 -0.95 -0.08 0.30 1 - 7943.34 995.29 -2561.43 -0.95 -0.08 0.30 1 - 6153.50 4710.25 -3281.64 -0.71 -0.55 0.44 1 - 5964.38 4779.13 -3497.69 -0.71 -0.55 0.44 1 - 5775.26 4848.01 -3713.75 -0.71 -0.55 0.44 1 - 4110.91 6947.11 -2378.56 -0.50 -0.84 0.22 1 - 4271.52 6917.71 -2132.67 -0.50 -0.84 0.22 1 - 4432.25 6887.89 -1886.77 -0.50 -0.84 0.22 1 - 3024.65 7274.19 -2993.56 -0.41 -0.82 0.40 1 - 2877.09 7226.14 -3244.86 -0.41 -0.82 0.40 1 - 3293.45 7157.61 -2955.75 -0.41 -0.82 0.40 1 - 3145.64 7109.74 -3206.86 -0.41 -0.82 0.40 1 - 2998.08 7061.69 -3458.15 -0.41 -0.82 0.40 1 - 3561.99 7041.22 -2917.75 -0.41 -0.82 0.40 1 - 3414.44 6993.16 -3169.04 -0.41 -0.82 0.40 1 - 3266.63 6945.29 -3420.15 -0.41 -0.82 0.40 1 - 3119.07 6897.24 -3671.44 -0.41 -0.82 0.40 1 - 3830.79 6924.64 -2879.93 -0.41 -0.82 0.40 1 - 3682.98 6876.76 -3131.04 -0.41 -0.82 0.40 1 - 3535.43 6828.71 -3382.33 -0.41 -0.82 0.40 1 - 3387.85 6780.76 -3633.39 -0.41 -0.82 0.40 1 - 3240.06 6732.78 -3884.74 -0.41 -0.82 0.40 1 - 3951.78 6760.18 -3093.22 -0.41 -0.82 0.40 1 - 3803.97 6712.31 -3344.33 -0.41 -0.82 0.40 1 - 3656.42 6664.26 -3595.63 -0.41 -0.82 0.40 1 - 3508.84 6616.31 -3846.69 -0.41 -0.82 0.40 1 - 4072.77 6595.73 -3306.52 -0.41 -0.82 0.40 1 - 3924.96 6547.86 -3557.63 -0.41 -0.82 0.40 1 - 3777.41 6499.81 -3808.92 -0.41 -0.82 0.40 1 - 2893.38 7410.29 -2745.39 -0.39 -0.87 0.29 1 - 3164.91 7299.66 -2710.37 -0.39 -0.87 0.29 1 - 3436.44 7189.02 -2675.36 -0.39 -0.87 0.29 1 - 3707.88 7078.18 -2640.25 -0.39 -0.87 0.29 1 - 3030.52 7435.41 -2485.19 -0.39 -0.87 0.29 1 - 3302.04 7324.78 -2450.18 -0.39 -0.87 0.29 1 - 3573.57 7214.15 -2415.16 -0.39 -0.87 0.29 1 - 3167.97 7460.69 -2225.04 -0.39 -0.87 0.29 1 - 3439.50 7350.06 -2190.02 -0.39 -0.87 0.29 1 - 3305.10 7485.82 -1964.84 -0.39 -0.87 0.29 1 - 6289.24 629.64 5566.85 -0.70 -0.07 -0.71 1 - 5692.91 383.57 6174.05 -0.70 -0.07 -0.71 1 - 5494.15 301.61 6376.69 -0.70 -0.07 -0.71 1 - 6125.83 833.52 5704.74 -0.70 -0.07 -0.71 1 - 5927.02 751.59 5907.03 -0.70 -0.07 -0.71 1 - 5728.46 669.43 6109.45 -0.70 -0.07 -0.71 1 - 5529.85 587.53 6311.90 -0.70 -0.07 -0.71 1 - 5962.57 1037.46 5842.43 -0.70 -0.07 -0.71 1 - 5763.96 955.55 6044.87 -0.70 -0.07 -0.71 1 - 5565.40 873.39 6247.30 -0.70 -0.07 -0.71 1 - 5799.51 1241.42 5980.28 -0.70 -0.07 -0.71 1 - 5600.95 1159.26 6182.70 -0.70 -0.07 -0.71 1 - 6402.43 1818.29 5149.98 -0.74 -0.17 -0.65 1 - 6395.36 1535.32 5233.65 -0.74 -0.17 -0.65 1 - 6388.29 1252.13 5316.94 -0.74 -0.17 -0.65 1 - 5628.75 1559.86 6020.09 -0.65 -0.21 -0.73 1 - 5424.51 1493.63 6222.80 -0.65 -0.21 -0.73 1 - 5651.59 1836.31 5918.80 -0.65 -0.21 -0.73 1 - 5447.67 1769.97 6121.62 -0.65 -0.21 -0.73 1 - 5243.42 1703.74 6324.34 -0.65 -0.21 -0.73 1 - 5470.75 2046.34 6020.10 -0.65 -0.21 -0.73 1 - 5266.51 1980.11 6222.81 -0.65 -0.21 -0.73 1 - 5732.04 2966.96 5400.20 -0.70 -0.30 -0.65 1 - 5904.22 2741.99 5316.91 -0.70 -0.30 -0.65 1 - 6076.40 2517.03 5233.62 -0.70 -0.30 -0.65 1 - 3113.35 2291.72 7482.91 -0.41 -0.21 -0.89 1 - 3327.72 2095.45 7430.41 -0.41 -0.21 -0.89 1 - 3756.31 1702.79 7325.80 -0.41 -0.21 -0.89 1 - 3970.80 1506.55 7273.51 -0.41 -0.21 -0.89 1 - 3079.50 2010.37 7565.70 -0.41 -0.21 -0.89 1 - 3293.60 1813.95 7513.38 -0.41 -0.21 -0.89 1 - 3508.10 1617.71 7461.09 -0.41 -0.21 -0.89 1 - 3722.25 1421.53 7408.70 -0.41 -0.21 -0.89 1 - 3045.39 1728.87 7648.68 -0.41 -0.21 -0.89 1 - 3259.75 1532.60 7596.17 -0.41 -0.21 -0.89 1 - 3473.91 1336.42 7543.78 -0.41 -0.21 -0.89 1 - 3011.33 1447.61 7731.58 -0.41 -0.21 -0.89 1 - 3225.70 1251.34 7679.08 -0.41 -0.21 -0.89 1 - 4138.42 2628.41 6840.20 -0.46 -0.27 -0.85 1 - 3634.41 2197.47 7253.20 -0.46 -0.27 -0.85 1 - 3873.19 2275.05 7098.04 -0.46 -0.27 -0.85 1 - 4112.17 2352.55 6942.76 -0.46 -0.27 -0.85 1 - 3847.13 1999.46 7200.74 -0.46 -0.27 -0.85 1 - 4086.11 2076.95 7045.46 -0.46 -0.27 -0.85 1 - 4059.72 1801.42 7148.06 -0.46 -0.27 -0.85 1 - 6248.44 3581.16 4353.36 -0.70 -0.45 -0.55 1 - 6076.40 3555.48 4591.82 -0.70 -0.45 -0.55 1 - 5904.22 3529.38 4830.28 -0.70 -0.45 -0.55 1 - 4633.25 3309.35 6197.13 -0.58 -0.43 -0.70 1 - 4633.25 3560.42 6041.96 -0.58 -0.43 -0.70 1 - 4144.35 2932.40 6720.40 -0.43 -0.35 -0.83 1 - 3905.37 2854.91 6875.68 -0.43 -0.35 -0.83 1 - 3666.59 2777.32 7030.85 -0.43 -0.35 -0.83 1 - 3427.55 2699.59 7186.20 -0.43 -0.35 -0.83 1 - 3188.77 2622.01 7341.36 -0.43 -0.35 -0.83 1 - 3921.87 3123.74 6754.58 -0.43 -0.35 -0.83 1 - 3682.89 3046.25 6909.86 -0.43 -0.35 -0.83 1 - 3444.05 2968.43 7065.09 -0.43 -0.35 -0.83 1 - 3205.07 2890.94 7220.37 -0.43 -0.35 -0.83 1 - 3699.39 3315.09 6788.75 -0.43 -0.35 -0.83 1 - 3460.55 3237.27 6943.99 -0.43 -0.35 -0.83 1 - 3221.57 3159.77 7099.27 -0.43 -0.35 -0.83 1 - 3477.19 3506.14 6823.10 -0.43 -0.35 -0.83 1 - 3238.20 3428.64 6978.37 -0.43 -0.35 -0.83 1 - 4386.04 4269.77 5785.33 -0.50 -0.45 -0.73 1 - 4385.98 3516.13 6251.18 -0.50 -0.45 -0.73 1 - 4385.98 3265.07 6406.35 -0.50 -0.45 -0.73 1 - 4165.10 4212.02 5972.76 -0.50 -0.45 -0.73 1 - 4165.00 3960.84 6128.13 -0.50 -0.45 -0.73 1 - 4165.14 3709.57 6283.25 -0.50 -0.45 -0.73 1 - 4165.04 3458.39 6438.61 -0.50 -0.45 -0.73 1 - 3944.16 4154.27 6160.19 -0.50 -0.45 -0.73 1 - 3944.31 3903.01 6315.31 -0.50 -0.45 -0.73 1 - 3944.21 3651.82 6470.68 -0.50 -0.45 -0.73 1 - 3723.66 4096.54 6347.53 -0.50 -0.45 -0.73 1 - 3723.55 3845.35 6502.90 -0.50 -0.45 -0.73 1 - 4428.54 4712.49 5396.23 -0.54 -0.61 -0.59 1 - 4401.11 4928.98 5197.20 -0.54 -0.61 -0.59 1 - 4373.94 5145.47 4998.42 -0.54 -0.61 -0.59 1 - 4346.69 5361.95 4799.21 -0.54 -0.61 -0.59 1 - 4319.39 5578.61 4600.30 -0.54 -0.61 -0.59 1 - 4629.09 4742.07 5181.60 -0.54 -0.61 -0.59 1 - 4601.96 4958.37 4982.52 -0.54 -0.61 -0.59 1 - 4574.67 5175.04 4783.61 -0.54 -0.61 -0.59 1 - 4547.36 5391.34 4584.71 -0.54 -0.61 -0.59 1 - 4829.94 4771.46 4966.93 -0.54 -0.61 -0.59 1 - 4802.51 4987.94 4767.90 -0.54 -0.61 -0.59 1 - 4775.21 5204.25 4569.00 -0.54 -0.61 -0.59 1 - 5030.61 4800.86 4752.44 -0.54 -0.61 -0.59 1 - 5003.18 5017.34 4553.41 -0.54 -0.61 -0.59 1 - 3188.81 5393.74 5628.27 -0.43 -0.59 -0.68 1 - 3427.71 5220.08 5628.40 -0.43 -0.59 -0.68 1 - 3666.49 5046.60 5628.40 -0.43 -0.59 -0.68 1 - 3905.57 4872.93 5628.35 -0.43 -0.59 -0.68 1 - 4144.34 4699.45 5628.35 -0.43 -0.59 -0.68 1 - 3205.25 5165.15 5814.70 -0.43 -0.59 -0.68 1 - 3444.15 4991.49 5814.83 -0.43 -0.59 -0.68 1 - 3683.11 4818.00 5814.65 -0.43 -0.59 -0.68 1 - 3922.01 4644.34 5814.78 -0.43 -0.59 -0.68 1 - 3221.69 4936.55 6001.12 -0.43 -0.59 -0.68 1 - 3460.65 4763.07 6000.94 -0.43 -0.59 -0.68 1 - 3699.55 4589.41 6001.07 -0.43 -0.59 -0.68 1 - 3238.32 4708.31 6187.36 -0.43 -0.59 -0.68 1 - 3477.22 4534.66 6187.49 -0.43 -0.59 -0.68 1 - 3421.85 5463.22 5409.95 -0.46 -0.63 -0.62 1 - 4112.20 5157.59 5209.20 -0.46 -0.63 -0.62 1 - 3873.43 5331.07 5209.20 -0.46 -0.63 -0.62 1 - 3634.53 5504.73 5209.07 -0.46 -0.63 -0.62 1 - 4086.06 5372.76 5008.63 -0.46 -0.63 -0.62 1 - 3847.16 5546.42 5008.50 -0.46 -0.63 -0.62 1 - 4059.78 5587.75 4807.94 -0.46 -0.63 -0.62 1 - 3970.86 5831.82 4600.32 -0.41 -0.70 -0.59 1 - 3756.29 5790.85 4799.28 -0.41 -0.70 -0.59 1 - 3542.14 5749.87 4998.31 -0.41 -0.70 -0.59 1 - 3327.74 5708.90 5197.09 -0.41 -0.70 -0.59 1 - 3113.30 5668.11 5396.18 -0.41 -0.70 -0.59 1 - 3722.31 5990.77 4584.72 -0.41 -0.70 -0.59 1 - 3507.91 5949.80 4783.50 -0.41 -0.70 -0.59 1 - 3293.77 5908.82 4982.53 -0.41 -0.70 -0.59 1 - 3079.50 5868.02 5181.44 -0.41 -0.70 -0.59 1 - 3473.94 6149.72 4568.94 -0.41 -0.70 -0.59 1 - 3259.67 6108.92 4767.84 -0.41 -0.70 -0.59 1 - 3045.53 6067.94 4966.88 -0.41 -0.70 -0.59 1 - 3225.70 6308.84 4553.29 -0.41 -0.70 -0.59 1 - 3011.56 6267.87 4752.32 -0.41 -0.70 -0.59 1 - 8314.83 1271.38 -265.07 -0.99 -0.10 0.06 1 - 8314.83 1116.21 -516.14 -0.99 -0.10 0.06 1 - 8314.82 960.81 -767.30 -0.99 -0.10 0.06 1 - 7852.11 3017.01 255.16 -0.95 -0.31 -0.06 1 - 7943.31 2736.31 255.16 -0.95 -0.31 -0.06 1 - 8034.55 2455.41 255.30 -0.95 -0.31 -0.06 1 - 7200.40 4235.53 -1018.61 -0.86 -0.50 0.06 1 - 7291.61 4110.00 -767.55 -0.86 -0.50 0.06 1 - 7382.80 3984.47 -516.23 -0.86 -0.50 0.06 1 - 6253.28 5539.13 1018.61 -0.75 -0.66 -0.06 1 - 6162.08 5664.67 767.55 -0.75 -0.66 -0.06 1 - 6070.88 5790.18 516.23 -0.75 -0.66 -0.06 1 - 5420.05 6338.59 -1018.25 -0.65 -0.76 0.10 1 - 5291.02 6414.87 -1272.46 -0.65 -0.76 0.10 1 - 5773.57 6070.24 -763.97 -0.65 -0.76 0.10 1 - 5644.35 6146.61 -1018.34 -0.65 -0.76 0.10 1 - 5515.31 6222.90 -1272.55 -0.65 -0.76 0.10 1 - 5868.98 5954.75 -1018.34 -0.65 -0.76 0.10 1 - 5739.76 6031.13 -1272.70 -0.65 -0.76 0.10 1 - 5295.80 6535.49 -255.16 -0.59 -0.81 0.06 1 - 5057.02 6708.97 -255.16 -0.59 -0.81 0.06 1 - 4818.06 6882.55 -255.30 -0.59 -0.81 0.06 1 - 4579.19 7056.15 -255.10 -0.59 -0.81 0.06 1 - 5167.16 6609.59 -510.40 -0.59 -0.81 0.06 1 - 4928.38 6783.07 -510.40 -0.59 -0.81 0.06 1 - 4689.42 6956.64 -510.55 -0.59 -0.81 0.06 1 - 5038.66 6683.89 -765.71 -0.59 -0.81 0.06 1 - 4799.70 6857.46 -765.85 -0.59 -0.81 0.06 1 - 4910.02 6757.98 -1020.95 -0.59 -0.81 0.06 1 - 4718.01 6860.16 -1272.50 -0.52 -0.85 0.10 1 - 4605.24 6959.31 -1018.02 -0.52 -0.85 0.10 1 - 4492.89 7058.45 -763.65 -0.52 -0.85 0.10 1 - 4380.21 7157.47 -509.38 -0.52 -0.85 0.10 1 - 4267.58 7256.82 -254.96 -0.52 -0.85 0.10 1 - 4465.97 7014.31 -1272.46 -0.52 -0.85 0.10 1 - 4353.29 7113.33 -1018.18 -0.52 -0.85 0.10 1 - 4240.94 7212.47 -763.81 -0.52 -0.85 0.10 1 - 4128.40 7311.69 -509.59 -0.52 -0.85 0.10 1 - 4214.02 7168.33 -1272.62 -0.52 -0.85 0.10 1 - 4101.49 7267.55 -1018.40 -0.52 -0.85 0.10 1 - 3989.14 7366.69 -764.03 -0.52 -0.85 0.10 1 - 3962.22 7322.55 -1272.83 -0.52 -0.85 0.10 1 - 3849.87 7421.68 -1018.47 -0.52 -0.85 0.10 1 - 3479.01 7560.23 1295.27 -0.46 -0.88 -0.10 1 - 3626.80 7512.22 1044.10 -0.46 -0.88 -0.10 1 - 3774.37 7464.27 793.04 -0.46 -0.88 -0.10 1 - 3922.08 7416.28 541.64 -0.46 -0.88 -0.10 1 - 4069.65 7368.33 290.58 -0.46 -0.88 -0.10 1 - 3739.90 7421.75 1301.47 -0.46 -0.88 -0.10 1 - 3887.69 7373.74 1050.31 -0.46 -0.88 -0.10 1 - 4035.17 7325.81 799.01 -0.46 -0.88 -0.10 1 - 4182.97 7277.80 547.85 -0.46 -0.88 -0.10 1 - 4000.79 7283.27 1307.68 -0.46 -0.88 -0.10 1 - 4148.26 7235.34 1056.38 -0.46 -0.88 -0.10 1 - 4296.06 7187.33 805.22 -0.46 -0.88 -0.10 1 - 4261.42 7145.12 1313.74 -0.46 -0.88 -0.10 1 - 4409.22 7097.11 1062.58 -0.46 -0.88 -0.10 1 - 3335.75 7658.88 1018.60 -0.40 -0.91 -0.06 1 - 3508.31 7633.63 257.10 -0.40 -0.91 -0.06 1 - 3360.74 7681.58 508.16 -0.40 -0.91 -0.06 1 - 3212.94 7729.59 759.32 -0.40 -0.91 -0.06 1 - 3238.10 7752.51 249.11 -0.40 -0.91 -0.06 1 - 3090.30 7800.52 500.27 -0.40 -0.91 -0.06 1 - 2967.82 7871.14 241.13 -0.40 -0.91 -0.06 1 - 8314.83 -1271.39 265.07 -0.99 0.10 -0.06 1 - 8314.83 -1116.23 516.14 -0.99 0.10 -0.06 1 - 8314.82 -960.83 767.30 -0.99 0.10 -0.06 1 - 7409.21 694.56 3929.47 -0.90 -0.03 -0.45 1 - 7521.86 527.48 3713.79 -0.90 -0.03 -0.45 1 - 7634.37 360.59 3497.75 -0.90 -0.03 -0.45 1 - 7877.44 1762.91 2378.56 -0.95 -0.21 -0.22 1 - 7899.11 1924.74 2132.67 -0.95 -0.21 -0.22 1 - 7920.42 2086.83 1886.77 -0.95 -0.21 -0.22 1 - 7746.90 2848.53 1640.88 -0.90 -0.39 -0.22 1 - 7634.39 2967.14 1886.78 -0.90 -0.39 -0.22 1 - 7521.87 3085.75 2132.67 -0.90 -0.39 -0.22 1 - 7160.05 3546.93 2640.54 -0.83 -0.47 -0.29 1 - 7005.77 3796.15 2675.31 -0.83 -0.47 -0.29 1 - 6851.13 4045.25 2710.32 -0.83 -0.47 -0.29 1 - 6381.25 4396.78 3281.64 -0.74 -0.50 -0.44 1 - 6388.32 4195.63 3497.69 -0.74 -0.50 -0.44 1 - 6395.39 3994.47 3713.75 -0.74 -0.50 -0.44 1 - 5693.57 5522.29 2812.60 -0.72 -0.63 -0.30 1 - 5841.14 5474.34 2561.54 -0.72 -0.63 -0.30 1 - 5988.87 5426.23 2310.36 -0.72 -0.63 -0.30 1 - 4176.36 6501.80 3332.83 -0.53 -0.73 -0.42 1 - 4415.14 6328.32 3332.83 -0.53 -0.73 -0.42 1 - 4654.03 6154.65 3332.95 -0.53 -0.73 -0.42 1 - 3865.79 6703.68 3324.93 -0.46 -0.76 -0.46 1 - 3923.85 6529.36 3556.17 -0.46 -0.76 -0.46 1 - 3981.92 6355.39 3787.44 -0.46 -0.76 -0.46 1 - 4039.79 6181.07 4018.85 -0.46 -0.76 -0.46 1 - 4097.97 6006.91 4250.23 -0.46 -0.76 -0.46 1 - 3673.04 6684.83 3547.75 -0.46 -0.76 -0.46 1 - 3730.79 6510.69 3779.04 -0.46 -0.76 -0.46 1 - 3788.97 6336.54 4010.43 -0.46 -0.76 -0.46 1 - 3846.92 6162.41 4241.54 -0.46 -0.76 -0.46 1 - 3479.97 6666.17 3770.62 -0.46 -0.76 -0.46 1 - 3538.03 6491.85 4001.86 -0.46 -0.76 -0.46 1 - 3595.98 6317.71 4232.98 -0.46 -0.76 -0.46 1 - 3287.10 6647.51 3993.31 -0.46 -0.76 -0.46 1 - 3345.16 6473.19 4224.56 -0.46 -0.76 -0.46 1 - 3786.93 6979.36 2808.23 -0.45 -0.85 -0.27 1 - 3695.80 7104.96 2556.93 -0.45 -0.85 -0.27 1 - 3604.60 7230.49 2305.87 -0.45 -0.85 -0.27 1 - 3513.23 7356.18 2054.53 -0.45 -0.85 -0.27 1 - 3422.03 7481.71 1803.47 -0.45 -0.85 -0.27 1 - 3956.20 6965.98 2566.46 -0.45 -0.85 -0.27 1 - 3865.07 7091.59 2315.17 -0.45 -0.85 -0.27 1 - 3773.63 7217.20 2064.06 -0.45 -0.85 -0.27 1 - 3682.50 7342.80 1812.77 -0.45 -0.85 -0.27 1 - 4125.47 6952.60 2324.70 -0.45 -0.85 -0.27 1 - 4034.03 7078.21 2073.59 -0.45 -0.85 -0.27 1 - 3942.89 7203.82 1822.30 -0.45 -0.85 -0.27 1 - 4294.48 6939.46 2083.21 -0.45 -0.85 -0.27 1 - 4203.35 7065.07 1831.92 -0.45 -0.85 -0.27 1 - 3492.65 7121.40 2812.54 -0.37 -0.88 -0.30 1 - 3040.70 7492.41 2294.47 -0.37 -0.88 -0.30 1 - 3131.91 7366.88 2545.53 -0.37 -0.88 -0.30 1 - 3223.04 7241.27 2796.82 -0.37 -0.88 -0.30 1 - 2862.59 7486.90 2529.96 -0.37 -0.88 -0.30 1 - 2953.72 7361.29 2781.25 -0.37 -0.88 -0.30 1 - 2684.42 7481.16 2765.36 -0.37 -0.88 -0.30 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 2037.98 3585.54 -7325.79 9999.00 9999.00 9999.00 3 - 6047.81 5839.17 -57.29 9999.00 9999.00 9999.00 3 - 5674.72 4224.42 4557.80 9999.00 9999.00 9999.00 3 - 7807.99 3157.93 -36.51 9999.00 9999.00 9999.00 3 - 8417.36 288.28 75.09 9999.00 9999.00 9999.00 3 - 7073.94 -82.20 4557.89 9999.00 9999.00 9999.00 3 - 1838.04 2094.54 -7911.51 -0.20 -0.28 0.94 1 - 2000.95 2318.98 -7810.12 -0.20 -0.28 0.94 1 - 1549.63 2132.88 -7962.04 -0.20 -0.28 0.94 1 - 1712.69 2357.18 -7860.95 -0.20 -0.28 0.94 1 - 1875.60 2581.62 -7759.56 -0.20 -0.28 0.94 1 - 1424.23 2395.17 -7911.57 -0.20 -0.28 0.94 1 - 1587.14 2619.61 -7810.18 -0.20 -0.28 0.94 1 - 315.20 2220.96 -8111.06 -0.09 -0.23 0.97 1 - 462.78 1969.56 -8158.10 -0.09 -0.23 0.97 1 - 610.35 1718.17 -8205.13 -0.09 -0.23 0.97 1 - 757.93 1466.71 -8251.93 -0.09 -0.23 0.97 1 - 609.19 2215.36 -8084.97 -0.09 -0.23 0.97 1 - 756.76 1963.97 -8132.01 -0.09 -0.23 0.97 1 - 904.34 1712.57 -8179.05 -0.09 -0.23 0.97 1 - 903.32 2209.62 -8059.18 -0.09 -0.23 0.97 1 - 1050.90 1958.23 -8106.22 -0.09 -0.23 0.97 1 - 1197.31 2204.03 -8033.09 -0.09 -0.23 0.97 1 - 2578.18 6203.37 -5068.76 -0.30 -0.77 0.55 1 - 2702.13 6325.69 -4830.30 -0.30 -0.77 0.55 1 - 2826.09 6448.02 -4591.84 -0.30 -0.77 0.55 1 - 2949.95 6570.17 -4353.23 -0.30 -0.77 0.55 1 - 2421.33 6386.51 -4898.49 -0.30 -0.77 0.55 1 - 2545.28 6508.84 -4660.03 -0.30 -0.77 0.55 1 - 2669.23 6631.17 -4421.57 -0.30 -0.77 0.55 1 - 2264.65 6569.97 -4728.17 -0.30 -0.77 0.55 1 - 2388.60 6692.30 -4489.71 -0.30 -0.77 0.55 1 - 2107.80 6753.11 -4557.89 -0.30 -0.77 0.55 1 - 1360.27 6010.30 -5731.41 -0.21 -0.69 0.70 1 - 1507.84 5807.19 -5886.58 -0.21 -0.69 0.70 1 - 1655.63 5603.95 -6041.76 -0.21 -0.69 0.70 1 - 1803.11 5400.71 -6197.13 -0.21 -0.69 0.70 1 - 1648.66 5968.75 -5683.54 -0.21 -0.69 0.70 1 - 1796.23 5765.63 -5838.70 -0.21 -0.69 0.70 1 - 1944.02 5562.40 -5993.89 -0.21 -0.69 0.70 1 - 1937.14 5927.37 -5635.82 -0.21 -0.69 0.70 1 - 2084.93 5724.14 -5791.00 -0.21 -0.69 0.70 1 - 2225.54 5885.82 -5587.94 -0.21 -0.69 0.70 1 - 1171.72 6250.86 -5522.01 -0.21 -0.75 0.63 1 - 1460.51 6208.82 -5476.57 -0.21 -0.75 0.63 1 - 1749.17 6167.09 -5431.27 -0.21 -0.75 0.63 1 - 2038.05 6125.18 -5385.63 -0.21 -0.75 0.63 1 - 2326.93 6083.33 -5340.34 -0.21 -0.75 0.63 1 - 1309.71 6395.82 -5304.98 -0.21 -0.75 0.63 1 - 1598.37 6354.03 -5259.32 -0.21 -0.75 0.63 1 - 1887.25 6312.18 -5214.04 -0.21 -0.75 0.63 1 - 2175.82 6270.27 -5168.58 -0.21 -0.75 0.63 1 - 1447.57 6541.03 -5087.73 -0.21 -0.75 0.63 1 - 1736.36 6498.99 -5042.29 -0.21 -0.75 0.63 1 - 2024.93 6457.08 -4996.83 -0.21 -0.75 0.63 1 - 1585.34 6686.11 -4870.68 -0.21 -0.75 0.63 1 - 1874.13 6644.08 -4825.24 -0.21 -0.75 0.63 1 - 812.83 3519.36 -7608.69 -0.08 -0.35 0.93 1 - 663.40 3285.52 -7709.78 -0.08 -0.35 0.93 1 - 514.17 3051.88 -7811.08 -0.08 -0.35 0.93 1 - 364.88 2817.84 -7912.22 -0.08 -0.35 0.93 1 - 215.44 2584.06 -8013.56 -0.08 -0.35 0.93 1 - 957.70 3275.00 -7689.08 -0.08 -0.35 0.93 1 - 808.61 3041.10 -7790.18 -0.08 -0.35 0.93 1 - 659.18 2807.32 -7891.51 -0.08 -0.35 0.93 1 - 509.95 2573.62 -7992.57 -0.08 -0.35 0.93 1 - 1102.92 3030.59 -7769.47 -0.08 -0.35 0.93 1 - 953.48 2796.74 -7870.56 -0.08 -0.35 0.93 1 - 804.25 2563.05 -7971.62 -0.08 -0.35 0.93 1 - 1247.98 2786.37 -7849.82 -0.08 -0.35 0.93 1 - 1098.55 2552.53 -7950.91 -0.08 -0.35 0.93 1 - 1038.67 3995.52 -7341.35 -0.14 -0.53 0.83 1 - 1186.23 4198.87 -7186.08 -0.14 -0.53 0.83 1 - 1333.80 4401.99 -7030.91 -0.14 -0.53 0.83 1 - 1481.60 4605.31 -6875.55 -0.14 -0.53 0.83 1 - 1629.17 4808.43 -6720.39 -0.14 -0.53 0.83 1 - 893.87 4222.79 -7220.26 -0.14 -0.53 0.83 1 - 1041.43 4426.14 -7064.99 -0.14 -0.53 0.83 1 - 1189.24 4629.23 -6909.74 -0.14 -0.53 0.83 1 - 1336.80 4832.58 -6754.47 -0.14 -0.53 0.83 1 - 749.07 4450.06 -7099.17 -0.14 -0.53 0.83 1 - 896.88 4653.15 -6943.92 -0.14 -0.53 0.83 1 - 1044.44 4856.50 -6788.65 -0.14 -0.53 0.83 1 - 604.61 4677.17 -6978.32 -0.14 -0.53 0.83 1 - 752.17 4880.52 -6823.05 -0.14 -0.53 0.83 1 - 2950.15 6831.94 -3929.47 -0.30 -0.84 0.45 1 - 2826.06 6990.70 -3713.79 -0.30 -0.84 0.45 1 - 2702.10 7149.28 -3497.75 -0.30 -0.84 0.45 1 - 2578.14 7307.86 -3281.70 -0.30 -0.84 0.45 1 - 2669.36 6920.23 -3953.81 -0.30 -0.84 0.45 1 - 2545.40 7078.80 -3737.76 -0.30 -0.84 0.45 1 - 2421.45 7237.38 -3521.71 -0.30 -0.84 0.45 1 - 2388.56 7008.62 -3977.91 -0.30 -0.84 0.45 1 - 2264.60 7167.20 -3761.86 -0.30 -0.84 0.45 1 - 2107.90 7096.72 -4001.88 -0.30 -0.84 0.45 1 - 1984.55 7998.61 -1738.54 -0.29 -0.92 0.25 1 - 2123.90 7890.61 -1975.50 -0.29 -0.92 0.25 1 - 2263.33 7782.94 -2212.33 -0.29 -0.92 0.25 1 - 2402.92 7674.87 -2449.23 -0.29 -0.92 0.25 1 - 2542.37 7567.10 -2686.29 -0.29 -0.92 0.25 1 - 2267.41 7916.39 -1718.80 -0.29 -0.92 0.25 1 - 2406.98 7808.42 -1955.48 -0.29 -0.92 0.25 1 - 2546.43 7700.65 -2192.54 -0.29 -0.92 0.25 1 - 2685.77 7592.76 -2429.26 -0.29 -0.92 0.25 1 - 2550.48 7834.20 -1698.78 -0.29 -0.92 0.25 1 - 2689.84 7726.20 -1935.74 -0.29 -0.92 0.25 1 - 2829.18 7618.31 -2172.47 -0.29 -0.92 0.25 1 - 2833.33 7752.08 -1678.81 -0.29 -0.92 0.25 1 - 2972.68 7644.09 -1915.77 -0.29 -0.92 0.25 1 - 1509.64 7150.89 -4118.86 -0.20 -0.83 0.51 1 - 1364.98 7041.91 -4352.20 -0.20 -0.83 0.51 1 - 1798.86 7100.30 -4087.45 -0.20 -0.83 0.51 1 - 1654.20 6991.31 -4320.78 -0.20 -0.83 0.51 1 - 1509.68 6882.03 -4553.98 -0.20 -0.83 0.51 1 - 1943.25 6940.41 -4289.41 -0.20 -0.83 0.51 1 - 1798.90 6831.43 -4522.56 -0.20 -0.83 0.51 1 - 2326.95 7497.12 -3052.74 -0.21 -0.90 0.39 1 - 2037.98 7556.36 -3069.96 -0.21 -0.90 0.39 1 - 1749.32 7615.85 -3087.01 -0.21 -0.90 0.39 1 - 1460.60 7675.01 -3104.18 -0.21 -0.90 0.39 1 - 1171.72 7734.46 -3121.51 -0.21 -0.90 0.39 1 - 2175.85 7427.08 -3296.76 -0.21 -0.90 0.39 1 - 1887.12 7486.25 -3313.94 -0.21 -0.90 0.39 1 - 1598.46 7545.73 -3330.98 -0.21 -0.90 0.39 1 - 1309.82 7605.11 -3348.26 -0.21 -0.90 0.39 1 - 2024.99 7356.97 -3540.74 -0.21 -0.90 0.39 1 - 1736.35 7416.35 -3558.01 -0.21 -0.90 0.39 1 - 1447.69 7475.84 -3575.05 -0.21 -0.90 0.39 1 - 1874.22 7287.08 -3784.81 -0.21 -0.90 0.39 1 - 1585.56 7346.56 -3801.85 -0.21 -0.90 0.39 1 - 1803.19 7958.13 -2059.07 -0.21 -0.93 0.30 1 - 1655.61 7910.18 -2310.13 -0.21 -0.93 0.30 1 - 1508.06 7862.13 -2561.43 -0.21 -0.93 0.30 1 - 1360.25 7814.25 -2812.54 -0.21 -0.93 0.30 1 - 1943.95 7848.76 -2294.47 -0.21 -0.93 0.30 1 - 1796.38 7800.81 -2545.53 -0.21 -0.93 0.30 1 - 1648.82 7752.76 -2796.82 -0.21 -0.93 0.30 1 - 2084.81 7739.61 -2529.96 -0.21 -0.93 0.30 1 - 1937.25 7691.56 -2781.25 -0.21 -0.93 0.30 1 - 2225.58 7630.24 -2765.36 -0.21 -0.93 0.30 1 - 6696.45 535.05 5068.77 -0.83 -0.05 -0.55 1 - 6851.10 615.13 4830.31 -0.83 -0.05 -0.55 1 - 7005.74 695.21 4591.85 -0.83 -0.05 -0.55 1 - 2209.67 -386.53 8111.06 -0.25 -0.01 -0.97 1 - 2016.18 -168.50 8158.10 -0.25 -0.01 -0.97 1 - 1822.69 49.54 8205.13 -0.25 -0.01 -0.97 1 - 1629.14 267.60 8251.93 -0.25 -0.01 -0.97 1 - 2295.19 -105.21 8084.97 -0.25 -0.01 -0.97 1 - 2101.70 112.83 8132.01 -0.25 -0.01 -0.97 1 - 1908.21 330.87 8179.05 -0.25 -0.01 -0.97 1 - 2380.63 176.30 8059.18 -0.25 -0.01 -0.97 1 - 2187.14 394.34 8106.22 -0.25 -0.01 -0.97 1 - 2466.15 457.63 8033.09 -0.25 -0.01 -0.97 1 - 4893.02 306.15 6840.17 -0.53 -0.05 -0.84 1 - 4654.24 228.56 6995.34 -0.53 -0.05 -0.84 1 - 4415.25 151.07 7150.61 -0.53 -0.05 -0.84 1 - 4098.05 1115.16 7273.47 -0.46 -0.07 -0.89 1 - 4039.82 830.25 7325.80 -0.46 -0.07 -0.89 1 - 3981.98 545.53 7378.16 -0.46 -0.07 -0.89 1 - 3923.81 260.85 7430.41 -0.46 -0.07 -0.89 1 - 3865.70 -24.02 7482.95 -0.46 -0.07 -0.89 1 - 3846.98 1037.87 7408.66 -0.46 -0.07 -0.89 1 - 3788.81 753.18 7460.91 -0.46 -0.07 -0.89 1 - 3730.97 468.47 7513.27 -0.46 -0.07 -0.89 1 - 3672.92 183.83 7565.73 -0.46 -0.07 -0.89 1 - 3595.97 960.80 7543.77 -0.46 -0.07 -0.89 1 - 3537.92 676.17 7596.23 -0.46 -0.07 -0.89 1 - 3480.08 391.46 7648.59 -0.46 -0.07 -0.89 1 - 3345.08 883.79 7679.09 -0.46 -0.07 -0.89 1 - 3287.24 599.08 7731.45 -0.46 -0.07 -0.89 1 - 2560.02 1100.83 7911.51 -0.33 -0.11 -0.94 1 - 2823.82 1186.41 7810.12 -0.33 -0.11 -0.94 1 - 2507.36 814.69 7962.04 -0.33 -0.11 -0.94 1 - 2771.07 900.46 7860.95 -0.33 -0.11 -0.94 1 - 3034.87 986.04 7759.56 -0.33 -0.11 -0.94 1 - 2718.06 614.38 7911.57 -0.33 -0.11 -0.94 1 - 2981.86 699.96 7810.18 -0.33 -0.11 -0.94 1 - 3421.83 2395.51 7305.88 -0.46 -0.27 -0.85 1 - 3660.60 2473.09 7150.72 -0.46 -0.27 -0.85 1 - 3899.58 2550.59 6995.44 -0.46 -0.27 -0.85 1 - 1475.01 741.24 8251.94 -0.21 -0.14 -0.97 1 - 1503.75 1031.25 8205.13 -0.21 -0.14 -0.97 1 - 1532.13 1321.37 8158.10 -0.21 -0.14 -0.97 1 - 1560.51 1611.49 8111.06 -0.21 -0.14 -0.97 1 - 1738.18 853.79 8179.09 -0.21 -0.14 -0.97 1 - 1766.56 1143.91 8132.05 -0.21 -0.14 -0.97 1 - 1794.94 1434.03 8085.01 -0.21 -0.14 -0.97 1 - 2001.26 966.57 8106.21 -0.21 -0.14 -0.97 1 - 2029.64 1256.69 8059.17 -0.21 -0.14 -0.97 1 - 2264.07 1079.23 8033.13 -0.21 -0.14 -0.97 1 - 1693.12 1963.99 8013.55 -0.27 -0.24 -0.93 1 - 1951.52 2065.28 7912.20 -0.27 -0.24 -0.93 1 - 2209.65 2166.79 7811.11 -0.27 -0.24 -0.93 1 - 2467.82 2268.02 7709.81 -0.27 -0.24 -0.93 1 - 2726.27 2369.36 7608.71 -0.27 -0.24 -0.93 1 - 1925.24 1782.43 7992.57 -0.27 -0.24 -0.93 1 - 2183.41 1883.65 7891.27 -0.27 -0.24 -0.93 1 - 2441.53 1985.16 7790.18 -0.27 -0.24 -0.93 1 - 2699.74 2086.43 7689.12 -0.27 -0.24 -0.93 1 - 2157.12 1600.79 7971.63 -0.27 -0.24 -0.93 1 - 2415.33 1702.06 7870.58 -0.27 -0.24 -0.93 1 - 2673.45 1803.57 7769.49 -0.27 -0.24 -0.93 1 - 2389.04 1419.21 7950.94 -0.27 -0.24 -0.93 1 - 2647.17 1520.72 7849.85 -0.27 -0.24 -0.93 1 - 1127.26 798.05 8301.46 -0.11 -0.15 -0.98 1 - 888.48 971.52 8301.46 -0.11 -0.15 -0.98 1 - 649.39 1145.17 8301.48 -0.11 -0.15 -0.98 1 - 410.61 1318.64 8301.48 -0.11 -0.15 -0.98 1 - 1155.57 1088.07 8253.93 -0.11 -0.15 -0.98 1 - 916.56 1261.47 8253.98 -0.11 -0.15 -0.98 1 - 677.70 1435.19 8253.94 -0.11 -0.15 -0.98 1 - 1183.68 1378.07 8206.69 -0.11 -0.15 -0.98 1 - 944.82 1551.78 8206.66 -0.11 -0.15 -0.98 1 - 1211.99 1668.09 8159.16 -0.11 -0.15 -0.98 1 - 1715.64 3114.89 7627.40 -0.23 -0.32 -0.92 1 - 1954.41 2941.42 7627.40 -0.23 -0.32 -0.92 1 - 2193.27 2767.70 7627.44 -0.23 -0.32 -0.92 1 - 2432.28 2594.30 7627.39 -0.23 -0.32 -0.92 1 - 1696.76 2837.76 7727.54 -0.23 -0.32 -0.92 1 - 1935.53 2664.28 7727.54 -0.23 -0.32 -0.92 1 - 2174.39 2490.56 7727.57 -0.23 -0.32 -0.92 1 - 1677.92 2560.67 7827.92 -0.23 -0.32 -0.92 1 - 1916.77 2386.96 7827.96 -0.23 -0.32 -0.92 1 - 1659.04 2283.54 7928.06 -0.23 -0.32 -0.92 1 - 2705.44 2719.00 7498.41 -0.28 -0.38 -0.88 1 - 2466.58 2892.72 7498.37 -0.28 -0.38 -0.88 1 - 2227.80 3066.19 7498.37 -0.28 -0.38 -0.88 1 - 1988.71 3239.84 7498.39 -0.28 -0.38 -0.88 1 - 1749.93 3413.31 7498.39 -0.28 -0.38 -0.88 1 - 2718.79 2988.59 7378.32 -0.28 -0.38 -0.88 1 - 2479.93 3162.31 7378.29 -0.28 -0.38 -0.88 1 - 2240.92 3335.71 7378.34 -0.28 -0.38 -0.88 1 - 2002.06 3509.43 7378.30 -0.28 -0.38 -0.88 1 - 2732.14 3258.18 7258.24 -0.28 -0.38 -0.88 1 - 2493.13 3431.59 7258.29 -0.28 -0.38 -0.88 1 - 2254.27 3605.30 7258.25 -0.28 -0.38 -0.88 1 - 2745.37 3527.51 7138.49 -0.28 -0.38 -0.88 1 - 2506.52 3701.23 7138.45 -0.28 -0.38 -0.88 1 - 2492.18 4435.28 6614.57 -0.36 -0.49 -0.79 1 - 2731.24 4512.79 6459.24 -0.36 -0.49 -0.79 1 - 2969.97 4590.45 6303.92 -0.36 -0.49 -0.79 1 - 2492.19 4184.09 6769.64 -0.36 -0.49 -0.79 1 - 2731.28 4261.64 6614.56 -0.36 -0.49 -0.79 1 - 2970.01 4339.31 6459.24 -0.36 -0.49 -0.79 1 - 3209.07 4416.81 6303.91 -0.36 -0.49 -0.79 1 - 2492.23 3932.94 6924.95 -0.36 -0.49 -0.79 1 - 2731.28 4010.45 6769.62 -0.36 -0.49 -0.79 1 - 2970.05 4088.16 6614.55 -0.36 -0.49 -0.79 1 - 3208.87 4165.59 6459.27 -0.36 -0.49 -0.79 1 - 3447.84 4243.33 6303.91 -0.36 -0.49 -0.79 1 - 2731.08 3759.23 6924.99 -0.36 -0.49 -0.79 1 - 2970.06 3836.97 6769.62 -0.36 -0.49 -0.79 1 - 3208.91 3914.45 6614.59 -0.36 -0.49 -0.79 1 - 3447.88 3992.19 6459.22 -0.36 -0.49 -0.79 1 - 2970.10 3585.82 6924.94 -0.36 -0.49 -0.79 1 - 3208.92 3663.25 6769.66 -0.36 -0.49 -0.79 1 - 3447.93 3741.04 6614.54 -0.36 -0.49 -0.79 1 - 4138.48 4942.59 5409.89 -0.46 -0.63 -0.62 1 - 3899.70 5116.07 5409.89 -0.46 -0.63 -0.62 1 - 3660.80 5289.73 5409.76 -0.46 -0.63 -0.62 1 - 1749.90 5180.33 6406.28 -0.28 -0.62 -0.73 1 - 1988.93 5257.88 6251.10 -0.28 -0.62 -0.73 1 - 2705.50 5490.76 5785.37 -0.28 -0.62 -0.73 1 - 2002.17 5029.99 6438.45 -0.28 -0.62 -0.73 1 - 2241.20 5107.54 6283.27 -0.28 -0.62 -0.73 1 - 2479.98 5185.28 6127.90 -0.28 -0.62 -0.73 1 - 2719.00 5262.83 5972.71 -0.28 -0.62 -0.73 1 - 2254.44 4879.65 6470.62 -0.28 -0.62 -0.73 1 - 2493.22 4957.38 6315.25 -0.28 -0.62 -0.73 1 - 2732.25 5034.94 6160.06 -0.28 -0.62 -0.73 1 - 2506.50 4729.69 6502.76 -0.28 -0.62 -0.73 1 - 2745.53 4807.24 6347.57 -0.28 -0.62 -0.73 1 - 1508.21 3842.95 7341.35 -0.20 -0.52 -0.83 1 - 1508.36 4094.20 7186.08 -0.20 -0.52 -0.83 1 - 1508.36 4345.26 7030.91 -0.20 -0.52 -0.83 1 - 1508.30 4596.63 6875.56 -0.20 -0.52 -0.83 1 - 1508.30 4847.69 6720.40 -0.20 -0.52 -0.83 1 - 1758.94 3941.71 7220.26 -0.20 -0.52 -0.83 1 - 1759.09 4192.95 7065.00 -0.20 -0.52 -0.83 1 - 1758.88 4444.13 6909.74 -0.20 -0.52 -0.83 1 - 1759.03 4695.38 6754.48 -0.20 -0.52 -0.83 1 - 2009.67 4040.46 7099.18 -0.20 -0.52 -0.83 1 - 2009.46 4291.64 6943.93 -0.20 -0.52 -0.83 1 - 2009.61 4542.89 6788.66 -0.20 -0.52 -0.83 1 - 2260.03 4139.28 6978.32 -0.20 -0.52 -0.83 1 - 2260.18 4390.53 6823.05 -0.20 -0.52 -0.83 1 - 1411.04 3324.99 7608.69 -0.14 -0.33 -0.93 1 - 1394.49 3047.97 7709.78 -0.14 -0.33 -0.93 1 - 1377.89 2771.24 7811.08 -0.14 -0.33 -0.93 1 - 1361.10 2494.15 7912.22 -0.14 -0.33 -0.93 1 - 1344.58 2217.18 8013.56 -0.14 -0.33 -0.93 1 - 1150.21 3212.45 7689.08 -0.14 -0.33 -0.93 1 - 1133.34 2935.59 7790.18 -0.14 -0.33 -0.93 1 - 1116.82 2658.62 7891.51 -0.14 -0.33 -0.93 1 - 1100.19 2381.85 7992.57 -0.14 -0.33 -0.93 1 - 889.06 3100.07 7769.47 -0.14 -0.33 -0.93 1 - 872.51 2823.05 7870.56 -0.14 -0.33 -0.93 1 - 855.88 2546.27 7971.62 -0.14 -0.33 -0.93 1 - 628.15 2987.76 7849.82 -0.14 -0.33 -0.93 1 - 611.60 2710.75 7950.91 -0.14 -0.33 -0.93 1 - 2718.14 6801.61 4087.44 -0.33 -0.79 -0.51 1 - 2981.87 6672.55 4118.86 -0.33 -0.79 -0.51 1 - 2507.35 6757.13 4289.41 -0.33 -0.79 -0.51 1 - 2771.11 6628.42 4320.78 -0.33 -0.79 -0.51 1 - 3034.84 6499.35 4352.20 -0.33 -0.79 -0.51 1 - 2560.07 6584.12 4522.57 -0.33 -0.79 -0.51 1 - 2823.80 6455.05 4553.98 -0.33 -0.79 -0.51 1 - 2726.23 5745.77 5522.01 -0.27 -0.73 -0.63 1 - 2467.88 5881.51 5476.58 -0.27 -0.73 -0.63 1 - 2209.82 6017.42 5431.27 -0.27 -0.73 -0.63 1 - 1951.48 6153.31 5385.64 -0.27 -0.73 -0.63 1 - 1693.17 6289.25 5340.35 -0.27 -0.73 -0.63 1 - 2699.79 5944.16 5304.98 -0.27 -0.73 -0.63 1 - 2441.70 6080.02 5259.32 -0.27 -0.73 -0.63 1 - 2183.39 6215.96 5214.04 -0.27 -0.73 -0.63 1 - 1925.30 6351.67 5168.59 -0.27 -0.73 -0.63 1 - 2673.61 6142.67 5087.73 -0.27 -0.73 -0.63 1 - 2415.27 6278.41 5042.29 -0.27 -0.73 -0.63 1 - 2157.17 6414.12 4996.84 -0.27 -0.73 -0.63 1 - 2647.43 6341.02 4870.68 -0.27 -0.73 -0.63 1 - 2389.09 6476.77 4825.24 -0.27 -0.73 -0.63 1 - 1954.49 5506.84 6041.77 -0.23 -0.68 -0.70 1 - 1715.71 5429.10 6197.14 -0.23 -0.68 -0.70 1 - 2174.55 5797.88 5683.54 -0.23 -0.68 -0.70 1 - 1935.77 5720.29 5838.71 -0.23 -0.68 -0.70 1 - 1696.75 5642.74 5993.90 -0.23 -0.68 -0.70 1 - 1916.84 5933.97 5635.83 -0.23 -0.68 -0.70 1 - 1677.82 5856.42 5791.01 -0.23 -0.68 -0.70 1 - 1659.10 6069.86 5587.95 -0.23 -0.68 -0.70 1 - 1560.46 6534.05 5068.77 -0.21 -0.81 -0.55 1 - 1532.08 6705.88 4830.31 -0.21 -0.81 -0.55 1 - 1503.70 6877.70 4591.85 -0.21 -0.81 -0.55 1 - 1475.29 7049.33 4353.23 -0.21 -0.81 -0.55 1 - 1795.00 6590.02 4898.49 -0.21 -0.81 -0.55 1 - 1766.63 6761.85 4660.03 -0.21 -0.81 -0.55 1 - 1738.25 6933.67 4421.57 -0.21 -0.81 -0.55 1 - 2029.59 6646.35 4728.17 -0.21 -0.81 -0.55 1 - 2001.21 6818.18 4489.71 -0.21 -0.81 -0.55 1 - 2264.14 6702.32 4557.89 -0.21 -0.81 -0.55 1 - 1050.45 1982.07 8111.06 -0.06 -0.24 -0.97 1 - 783.29 1865.43 8158.10 -0.06 -0.24 -0.97 1 - 516.13 1748.78 8205.13 -0.06 -0.24 -0.97 1 - 248.94 1632.09 8251.93 -0.06 -0.24 -0.97 1 - 809.32 2150.34 8084.97 -0.06 -0.24 -0.97 1 - 542.16 2033.70 8132.01 -0.06 -0.24 -0.97 1 - 275.00 1917.05 8179.05 -0.06 -0.24 -0.97 1 - 567.99 2318.58 8059.18 -0.06 -0.24 -0.97 1 - 300.83 2201.94 8106.22 -0.06 -0.24 -0.97 1 - 326.86 2486.85 8033.09 -0.06 -0.24 -0.97 1 - 1220.87 4748.13 6840.17 -0.12 -0.52 -0.84 1 - 1220.87 4497.07 6995.34 -0.12 -0.52 -0.84 1 - 1220.72 4245.82 7150.61 -0.12 -0.52 -0.84 1 - 1220.93 3994.64 7305.86 -0.12 -0.52 -0.84 1 - 966.83 4637.96 6942.72 -0.12 -0.52 -0.84 1 - 966.83 4386.90 7097.88 -0.12 -0.52 -0.84 1 - 966.68 4135.65 7253.15 -0.12 -0.52 -0.84 1 - 712.77 4527.92 7045.47 -0.12 -0.52 -0.84 1 - 712.62 4276.68 7200.74 -0.12 -0.52 -0.84 1 - 458.73 4417.75 7148.01 -0.12 -0.52 -0.84 1 - 3598.30 -314.49 7608.69 -0.36 0.03 -0.93 1 - 3329.72 -384.35 7709.78 -0.36 0.03 -0.93 1 - 3061.40 -454.08 7811.08 -0.36 0.03 -0.93 1 - 2792.68 -523.73 7912.22 -0.36 0.03 -0.93 1 - 2524.17 -593.61 8013.56 -0.36 0.03 -0.93 1 - 3410.66 -101.20 7689.08 -0.36 0.03 -0.93 1 - 3142.14 -170.71 7790.18 -0.36 0.03 -0.93 1 - 2873.63 -240.59 7891.51 -0.36 0.03 -0.93 1 - 2605.25 -310.30 7992.57 -0.36 0.03 -0.93 1 - 3223.08 112.44 7769.47 -0.36 0.03 -0.93 1 - 2954.51 42.58 7870.56 -0.36 0.03 -0.93 1 - 2686.13 -27.13 7971.62 -0.36 0.03 -0.93 1 - 3035.65 325.87 7849.82 -0.36 0.03 -0.93 1 - 2767.08 256.01 7950.91 -0.36 0.03 -0.93 1 - 3096.82 7666.63 -1418.68 -0.40 -0.90 0.17 1 - 3223.13 7562.97 -1664.63 -0.40 -0.90 0.17 1 - 3240.58 7651.38 -1161.16 -0.40 -0.90 0.17 1 - 3366.89 7547.72 -1407.12 -0.40 -0.90 0.17 1 - 3492.87 7443.91 -1653.03 -0.40 -0.90 0.17 1 - 3510.58 7532.14 -1149.73 -0.40 -0.90 0.17 1 - 3636.89 7428.48 -1395.69 -0.40 -0.90 0.17 1 - 3954.47 7436.28 -51.38 -0.41 -0.91 0.03 1 - 3684.61 7556.18 -57.22 -0.41 -0.91 0.03 1 - 3415.04 7676.25 -63.17 -0.41 -0.91 0.03 1 - 3145.09 7796.16 -69.24 -0.41 -0.91 0.03 1 - 2875.30 7916.30 -75.09 -0.41 -0.91 0.03 1 - 3821.29 7487.75 -309.78 -0.41 -0.91 0.03 1 - 3551.56 7607.60 -315.96 -0.41 -0.91 0.03 1 - 3281.77 7727.73 -321.81 -0.41 -0.91 0.03 1 - 3012.14 7847.56 -327.74 -0.41 -0.91 0.03 1 - 3688.25 7539.17 -568.52 -0.41 -0.91 0.03 1 - 3418.39 7659.06 -574.36 -0.41 -0.91 0.03 1 - 3148.75 7778.89 -580.30 -0.41 -0.91 0.03 1 - 3555.30 7590.58 -827.02 -0.41 -0.91 0.03 1 - 3285.44 7710.47 -832.86 -0.41 -0.91 0.03 1 - 3778.59 7515.00 265.07 -0.40 -0.91 -0.06 1 - 3631.02 7562.94 516.14 -0.40 -0.91 -0.06 1 - 3483.22 7610.96 767.30 -0.40 -0.91 -0.06 1 - 2659.92 7986.28 291.38 -0.33 -0.94 -0.11 1 - 2780.28 7914.69 551.57 -0.33 -0.94 -0.11 1 - 2900.84 7843.31 811.41 -0.33 -0.94 -0.11 1 - 3021.11 7771.75 1071.37 -0.33 -0.94 -0.11 1 - 3141.54 7700.41 1331.54 -0.33 -0.94 -0.11 1 - 2502.24 8013.24 539.77 -0.33 -0.94 -0.11 1 - 2622.51 7941.68 799.72 -0.33 -0.94 -0.11 1 - 2743.07 7870.29 1059.57 -0.33 -0.94 -0.11 1 - 2863.41 7798.97 1319.51 -0.33 -0.94 -0.11 1 - 2344.46 8040.22 787.92 -0.33 -0.94 -0.11 1 - 2464.80 7968.90 1047.87 -0.33 -0.94 -0.11 1 - 2585.36 7897.52 1307.71 -0.33 -0.94 -0.11 1 - 2186.75 8067.44 1036.07 -0.33 -0.94 -0.11 1 - 2307.32 7996.06 1295.92 -0.33 -0.94 -0.11 1 - 2542.31 8024.49 -291.38 -0.29 -0.95 0.11 1 - 2402.86 8037.33 -551.57 -0.29 -0.95 0.11 1 - 2263.36 8050.44 -811.41 -0.29 -0.95 0.11 1 - 2124.00 8063.24 -1071.37 -0.29 -0.95 0.11 1 - 1984.64 8076.31 -1331.54 -0.29 -0.95 0.11 1 - 2685.72 7953.62 -539.77 -0.29 -0.95 0.11 1 - 2546.36 7966.42 -799.72 -0.29 -0.95 0.11 1 - 2406.86 7979.53 -1059.57 -0.29 -0.95 0.11 1 - 2267.59 7992.57 -1319.51 -0.29 -0.95 0.11 1 - 2829.22 7882.71 -787.92 -0.29 -0.95 0.11 1 - 2689.95 7895.74 -1047.87 -0.29 -0.95 0.11 1 - 2550.45 7908.86 -1307.71 -0.29 -0.95 0.11 1 - 2972.81 7812.04 -1036.07 -0.29 -0.95 0.11 1 - 2833.32 7825.15 -1295.92 -0.29 -0.95 0.11 1 - 1360.27 8300.75 -265.07 -0.21 -0.97 0.06 1 - 1507.84 8252.80 -516.14 -0.21 -0.97 0.06 1 - 1655.63 8204.77 -767.30 -0.21 -0.97 0.06 1 - 1803.11 8156.86 -1018.60 -0.21 -0.97 0.06 1 - 1648.66 8237.86 -257.10 -0.21 -0.97 0.06 1 - 1796.23 8189.91 -508.16 -0.21 -0.97 0.06 1 - 1944.02 8141.89 -759.32 -0.21 -0.97 0.06 1 - 1937.14 8175.21 -249.11 -0.21 -0.97 0.06 1 - 2084.93 8127.18 -500.27 -0.21 -0.97 0.06 1 - 2225.54 8112.32 -241.13 -0.21 -0.97 0.06 1 - 7941.71 461.85 2745.39 -0.95 -0.10 -0.29 1 - 7920.40 754.28 2710.37 -0.95 -0.10 -0.29 1 - 7899.09 1046.70 2675.36 -0.95 -0.10 -0.29 1 - 2524.16 7433.05 3052.74 -0.36 -0.85 -0.39 1 - 2792.76 7311.12 3069.96 -0.36 -0.85 -0.39 1 - 3061.25 7189.58 3087.01 -0.36 -0.85 -0.39 1 - 3329.62 7067.73 3104.18 -0.36 -0.85 -0.39 1 - 3598.27 6946.04 3121.51 -0.36 -0.85 -0.39 1 - 2605.23 7287.58 3296.76 -0.36 -0.85 -0.39 1 - 2873.60 7165.73 3313.94 -0.36 -0.85 -0.39 1 - 3142.09 7044.19 3330.98 -0.36 -0.85 -0.39 1 - 3410.51 6922.57 3348.26 -0.36 -0.85 -0.39 1 - 2686.07 7142.18 3540.74 -0.36 -0.85 -0.39 1 - 2954.49 7020.56 3558.01 -0.36 -0.85 -0.39 1 - 3222.98 6899.02 3575.05 -0.36 -0.85 -0.39 1 - 2766.96 6997.01 3784.81 -0.36 -0.85 -0.39 1 - 3035.46 6875.47 3801.85 -0.36 -0.85 -0.39 1 - 3218.87 7498.15 2059.07 -0.37 -0.88 -0.30 1 - 3310.08 7372.62 2310.13 -0.37 -0.88 -0.30 1 - 3401.21 7247.01 2561.43 -0.37 -0.88 -0.30 1 - 3095.94 7637.50 1738.54 -0.31 -0.92 -0.25 1 - 2919.72 7632.04 1975.50 -0.31 -0.92 -0.25 1 - 2743.63 7626.89 2212.33 -0.31 -0.92 -0.25 1 - 2567.18 7621.51 2449.23 -0.31 -0.92 -0.25 1 - 2391.02 7616.28 2686.29 -0.31 -0.92 -0.25 1 - 2818.78 7737.24 1718.80 -0.31 -0.92 -0.25 1 - 2642.39 7731.93 1955.48 -0.31 -0.92 -0.25 1 - 2466.23 7726.71 2192.54 -0.31 -0.92 -0.25 1 - 2290.09 7721.32 2429.26 -0.31 -0.92 -0.25 1 - 2541.45 7837.13 1698.78 -0.31 -0.92 -0.25 1 - 2365.23 7831.67 1935.74 -0.31 -0.92 -0.25 1 - 2189.08 7826.29 2172.47 -0.31 -0.92 -0.25 1 - 2264.36 7936.95 1678.81 -0.31 -0.92 -0.25 1 - 2088.14 7931.49 1915.77 -0.31 -0.92 -0.25 1 - 1629.00 7261.22 3929.47 -0.25 -0.86 -0.44 1 - 1822.71 7316.72 3713.79 -0.25 -0.86 -0.44 1 - 2016.20 7372.15 3497.75 -0.25 -0.86 -0.44 1 - 2209.69 7427.58 3281.70 -0.25 -0.86 -0.44 1 - 1908.05 7167.60 3953.81 -0.25 -0.86 -0.44 1 - 2101.55 7223.03 3737.76 -0.25 -0.86 -0.44 1 - 2295.04 7278.46 3521.71 -0.25 -0.86 -0.44 1 - 2187.18 7074.06 3977.91 -0.25 -0.86 -0.44 1 - 2380.68 7129.49 3761.86 -0.25 -0.86 -0.44 1 - 2466.02 6980.37 4001.88 -0.25 -0.86 -0.44 1 - -2032.00 2098.00 -8729.00 9999.00 9999.00 9999.00 2 - 5151.00 2196.00 -7301.00 9999.00 9999.00 9999.00 2 - -3964.00 4708.00 -6840.00 9999.00 9999.00 9999.00 2 - 3253.00 5225.00 -6840.00 9999.00 9999.00 9999.00 2 - -497.00 5577.00 -7301.00 9999.00 9999.00 9999.00 2 - 1367.00 2581.00 -8729.00 9999.00 9999.00 9999.00 2 - -6942.00 3693.00 -4785.00 9999.00 9999.00 9999.00 2 - -5187.00 6332.00 -4258.00 9999.00 9999.00 9999.00 2 - 6493.00 4579.00 -4691.00 9999.00 9999.00 9999.00 2 - -424.00 594.00 13340.00 9999.00 9999.00 9999.00 5 - 4419.00 6890.00 -4258.00 9999.00 9999.00 9999.00 2 - 1367.00 7743.00 -4785.00 9999.00 9999.00 9999.00 2 - -7035.00 5706.00 -1615.00 9999.00 9999.00 9999.00 2 - 8429.00 3262.00 -1724.00 9999.00 9999.00 9999.00 2 - -4161.00 8054.00 -1595.00 9999.00 9999.00 9999.00 2 - 6374.00 6446.00 -1595.00 9999.00 9999.00 9999.00 2 - -497.00 9025.00 -1724.00 9999.00 9999.00 9999.00 2 - 3253.00 8454.00 -1615.00 9999.00 9999.00 9999.00 2 - -5707.00 7009.00 1724.00 9999.00 9999.00 9999.00 2 - 7601.00 4928.00 1615.00 9999.00 9999.00 9999.00 2 - 5657.00 5461.00 4785.00 9999.00 9999.00 9999.00 2 - -2338.00 8751.00 1615.00 9999.00 9999.00 9999.00 2 - 4902.00 7593.00 1724.00 9999.00 9999.00 9999.00 2 - -475.00 8172.00 4258.00 9999.00 9999.00 9999.00 2 - 1367.00 8962.00 1595.00 9999.00 9999.00 9999.00 2 - -6361.00 4761.00 4691.00 9999.00 9999.00 9999.00 2 - -3681.00 4220.00 7301.00 9999.00 9999.00 9999.00 2 - -3445.00 7068.00 4785.00 9999.00 9999.00 9999.00 2 - -440.00 6139.00 6840.00 9999.00 9999.00 9999.00 2 - 2876.00 4805.00 7301.00 9999.00 9999.00 9999.00 2 - -411.00 2892.00 8729.00 9999.00 9999.00 9999.00 2 - 2562.00 7521.00 4691.00 9999.00 9999.00 9999.00 2 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 1629.23 5219.54 -6406.27 -0.14 -0.66 0.73 1 - 1481.43 5422.78 -6251.09 -0.14 -0.66 0.73 1 - 1333.86 5625.90 -6095.92 -0.14 -0.66 0.73 1 - 1186.16 5829.26 -5940.54 -0.14 -0.66 0.73 1 - 1038.59 6032.37 -5785.37 -0.14 -0.66 0.73 1 - 1336.77 5246.20 -6438.44 -0.14 -0.66 0.73 1 - 1188.97 5449.44 -6283.26 -0.14 -0.66 0.73 1 - 1041.49 5652.68 -6127.89 -0.14 -0.66 0.73 1 - 893.70 5855.91 -5972.71 -0.14 -0.66 0.73 1 - 1044.31 5272.85 -6470.62 -0.14 -0.66 0.73 1 - 896.82 5476.09 -6315.25 -0.14 -0.66 0.73 1 - 749.03 5679.33 -6160.06 -0.14 -0.66 0.73 1 - 752.24 5299.69 -6502.76 -0.14 -0.66 0.73 1 - 604.45 5502.93 -6347.57 -0.14 -0.66 0.73 1 - 215.36 7052.05 -4600.32 -0.08 -0.81 0.59 1 - 364.87 6892.78 -4799.28 -0.08 -0.81 0.59 1 - 514.04 6733.76 -4998.31 -0.08 -0.81 0.59 1 - 663.40 6574.59 -5197.09 -0.08 -0.81 0.59 1 - 812.92 6415.54 -5396.18 -0.08 -0.81 0.59 1 - 509.87 7034.55 -4584.72 -0.08 -0.81 0.59 1 - 659.24 6875.38 -4783.50 -0.08 -0.81 0.59 1 - 808.40 6716.36 -4982.53 -0.08 -0.81 0.59 1 - 957.76 6557.41 -5181.44 -0.08 -0.81 0.59 1 - 804.23 7017.15 -4568.94 -0.08 -0.81 0.59 1 - 953.60 6858.20 -4767.84 -0.08 -0.81 0.59 1 - 1102.76 6699.18 -4966.88 -0.08 -0.81 0.59 1 - 1098.59 6999.97 -4553.29 -0.08 -0.81 0.59 1 - 1247.75 6840.95 -4752.32 -0.08 -0.81 0.59 1 - 147.61 1970.74 -8192.58 0.00 -0.16 0.99 1 - -147.74 1970.60 -8192.61 0.00 -0.16 0.99 1 - 295.24 1718.00 -8232.62 0.00 -0.16 0.99 1 - -0.05 1718.21 -8232.57 0.00 -0.16 0.99 1 - -295.40 1718.06 -8232.61 0.00 -0.16 0.99 1 - 442.93 1465.61 -8272.58 0.00 -0.16 0.99 1 - 147.58 1465.47 -8272.62 0.00 -0.16 0.99 1 - -147.71 1465.67 -8272.57 0.00 -0.16 0.99 1 - -443.06 1465.53 -8272.61 0.00 -0.16 0.99 1 - 590.56 1212.88 -8312.63 0.00 -0.16 0.99 1 - 295.27 1213.08 -8312.58 0.00 -0.16 0.99 1 - -0.08 1212.94 -8312.62 0.00 -0.16 0.99 1 - -295.22 1212.94 -8312.61 0.00 -0.16 0.99 1 - -590.72 1212.99 -8312.60 0.00 -0.16 0.99 1 - 442.90 960.35 -8352.63 0.00 -0.16 0.99 1 - 147.61 960.55 -8352.58 0.00 -0.16 0.99 1 - -147.74 960.40 -8352.61 0.00 -0.16 0.99 1 - -442.88 960.40 -8352.61 0.00 -0.16 0.99 1 - 295.24 707.81 -8392.62 0.00 -0.16 0.99 1 - -0.05 708.01 -8392.57 0.00 -0.16 0.99 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 442.92 3528.43 -7627.40 -0.00 -0.39 0.92 1 - 147.77 3528.43 -7627.40 -0.00 -0.39 0.92 1 - -147.58 3528.29 -7627.44 -0.00 -0.39 0.92 1 - -442.87 3528.49 -7627.39 -0.00 -0.39 0.92 1 - 295.29 3293.12 -7727.54 -0.00 -0.39 0.92 1 - 0.15 3293.12 -7727.54 -0.00 -0.39 0.92 1 - -295.20 3292.98 -7727.57 -0.00 -0.39 0.92 1 - 147.67 3057.88 -7827.92 -0.00 -0.39 0.92 1 - -147.68 3057.73 -7827.96 -0.00 -0.39 0.92 1 - 0.04 2822.57 -7928.06 -0.00 -0.39 0.92 1 - -590.56 3789.93 -7498.41 0.00 -0.47 0.88 1 - -295.21 3790.07 -7498.37 0.00 -0.47 0.88 1 - -0.06 3790.07 -7498.37 0.00 -0.47 0.88 1 - 295.43 3790.02 -7498.39 0.00 -0.47 0.88 1 - -295.40 707.87 -8392.61 0.00 -0.16 0.99 1 - -442.90 4015.89 -7378.32 0.00 -0.47 0.88 1 - -147.55 4016.03 -7378.29 0.00 -0.47 0.88 1 - 147.75 4015.83 -7378.34 0.00 -0.47 0.88 1 - 443.09 4015.97 -7378.30 0.00 -0.47 0.88 1 - -295.23 4241.84 -7258.24 0.00 -0.47 0.88 1 - 0.06 4241.64 -7258.29 0.00 -0.47 0.88 1 - 295.41 4241.78 -7258.25 0.00 -0.47 0.88 1 - -147.63 4467.51 -7138.49 0.00 -0.47 0.88 1 - 147.72 4467.65 -7138.45 0.00 -0.47 0.88 1 - -590.79 5053.09 -6614.58 0.00 -0.61 0.79 1 - -442.94 4849.79 -6769.79 0.00 -0.61 0.79 1 - -295.45 4646.52 -6924.96 0.00 -0.61 0.79 1 - -443.13 5256.13 -6459.28 0.00 -0.61 0.79 1 - -295.29 5053.06 -6614.63 0.00 -0.61 0.79 1 - -147.80 4849.79 -6769.80 0.00 -0.61 0.79 1 - 0.04 4646.49 -6925.01 0.00 -0.61 0.79 1 - -295.48 5459.40 -6304.12 0.00 -0.61 0.79 1 - -147.64 5256.11 -6459.34 0.00 -0.61 0.79 1 - -0.15 5053.06 -6614.63 0.00 -0.61 0.79 1 - 147.55 4849.86 -6769.67 0.00 -0.61 0.79 1 - 295.19 4646.49 -6925.02 0.00 -0.61 0.79 1 - -0.13 5459.48 -6303.99 0.00 -0.61 0.79 1 - 147.51 5256.11 -6459.34 0.00 -0.61 0.79 1 - 295.20 5053.13 -6614.50 0.00 -0.61 0.79 1 - 442.84 4849.76 -6769.85 0.00 -0.61 0.79 1 - 295.16 5459.38 -6304.17 0.00 -0.61 0.79 1 - 442.86 5256.18 -6459.21 0.00 -0.61 0.79 1 - 590.49 5053.03 -6614.68 0.00 -0.61 0.79 1 - 590.56 6237.96 -5628.27 -0.00 -0.73 0.68 1 - 295.21 6237.89 -5628.40 -0.00 -0.73 0.68 1 - 0.06 6237.89 -5628.40 -0.00 -0.73 0.68 1 - -295.43 6237.92 -5628.35 -0.00 -0.73 0.68 1 - -590.58 6237.92 -5628.35 -0.00 -0.73 0.68 1 - 442.90 6062.69 -5814.70 -0.00 -0.73 0.68 1 - 147.55 6062.62 -5814.83 -0.00 -0.73 0.68 1 - -147.75 6062.72 -5814.65 -0.00 -0.73 0.68 1 - -443.09 6062.65 -5814.78 -0.00 -0.73 0.68 1 - 295.23 5887.42 -6001.12 -0.00 -0.73 0.68 1 - -0.06 5887.52 -6000.94 -0.00 -0.73 0.68 1 - -295.41 5887.45 -6001.07 -0.00 -0.73 0.68 1 - 147.63 5712.54 -6187.36 -0.00 -0.73 0.68 1 - -147.72 5712.47 -6187.49 -0.00 -0.73 0.68 1 - -442.92 6431.18 -5409.89 0.00 -0.78 0.62 1 - -147.77 6431.18 -5409.89 0.00 -0.78 0.62 1 - 147.58 6431.25 -5409.76 0.00 -0.78 0.62 1 - 442.87 6431.15 -5409.95 0.00 -0.78 0.62 1 - -295.29 6589.66 -5209.20 0.00 -0.78 0.62 1 - -0.15 6589.66 -5209.20 0.00 -0.78 0.62 1 - 295.20 6589.74 -5209.07 0.00 -0.78 0.62 1 - -147.67 6748.37 -5008.63 0.00 -0.78 0.62 1 - 147.68 6748.44 -5008.50 0.00 -0.78 0.62 1 - -0.04 6906.86 -4807.94 0.00 -0.78 0.62 1 - -812.83 6415.51 -5396.23 0.08 -0.81 0.59 1 - -663.40 6574.53 -5197.20 0.08 -0.81 0.59 1 - -514.17 6733.70 -4998.42 0.08 -0.81 0.59 1 - -364.88 6892.82 -4799.21 0.08 -0.81 0.59 1 - -215.44 7052.06 -4600.30 0.08 -0.81 0.59 1 - -957.70 6557.32 -5181.60 0.08 -0.81 0.59 1 - -808.61 6716.37 -4982.52 0.08 -0.81 0.59 1 - -659.18 6875.61 -4783.61 0.08 -0.81 0.59 1 - -509.95 7034.56 -4584.71 0.08 -0.81 0.59 1 - -1102.92 6699.15 -4966.93 0.08 -0.81 0.59 1 - -953.48 6858.17 -4767.90 0.08 -0.81 0.59 1 - -804.25 7017.12 -4569.00 0.08 -0.81 0.59 1 - -1247.98 6840.89 -4752.44 0.08 -0.81 0.59 1 - -1098.55 6999.91 -4553.41 0.08 -0.81 0.59 1 - 1038.67 7872.31 -2808.23 -0.14 -0.95 0.27 1 - 1186.23 7920.36 -2556.93 -0.14 -0.95 0.27 1 - 1333.80 7968.31 -2305.87 -0.14 -0.95 0.27 1 - 1481.60 8016.29 -2054.53 -0.14 -0.95 0.27 1 - 1629.17 8064.24 -1803.47 -0.14 -0.95 0.27 1 - 893.87 7960.98 -2566.46 -0.14 -0.95 0.27 1 - 1041.43 8009.03 -2315.17 -0.14 -0.95 0.27 1 - 1189.24 8056.91 -2064.06 -0.14 -0.95 0.27 1 - 1336.80 8104.96 -1812.77 -0.14 -0.95 0.27 1 - 749.07 8049.65 -2324.70 -0.14 -0.95 0.27 1 - 896.88 8097.53 -2073.59 -0.14 -0.95 0.27 1 - 1044.44 8145.58 -1822.30 -0.14 -0.95 0.27 1 - 604.61 8138.36 -2083.21 -0.14 -0.95 0.27 1 - 752.17 8186.41 -1831.92 -0.14 -0.95 0.27 1 - 812.83 7695.63 -3324.93 -0.08 -0.88 0.46 1 - 663.40 7588.73 -3556.17 -0.08 -0.88 0.46 1 - 514.17 7482.12 -3787.44 -0.08 -0.88 0.46 1 - 364.88 7375.10 -4018.85 -0.08 -0.88 0.46 1 - 215.44 7268.41 -4250.23 -0.08 -0.88 0.46 1 - 957.70 7567.09 -3547.75 -0.08 -0.88 0.46 1 - 808.61 7460.15 -3779.04 -0.08 -0.88 0.46 1 - 659.18 7353.46 -4010.43 -0.08 -0.88 0.46 1 - 509.95 7246.64 -4241.54 -0.08 -0.88 0.46 1 - 1102.92 7438.51 -3770.62 -0.08 -0.88 0.46 1 - 953.48 7331.61 -4001.86 -0.08 -0.88 0.46 1 - 804.25 7224.79 -4232.98 -0.08 -0.88 0.46 1 - 1247.98 7310.05 -3993.31 -0.08 -0.88 0.46 1 - 1098.55 7203.15 -4224.56 -0.08 -0.88 0.46 1 - 442.92 7714.86 -3332.83 -0.00 -0.91 0.42 1 - 147.77 7714.86 -3332.83 -0.00 -0.91 0.42 1 - -147.58 7714.78 -3332.95 -0.00 -0.91 0.42 1 - -442.87 7714.90 -3332.78 -0.00 -0.91 0.42 1 - 295.29 7606.24 -3564.34 -0.00 -0.91 0.42 1 - 0.15 7606.24 -3564.34 -0.00 -0.91 0.42 1 - -295.20 7606.15 -3564.46 -0.00 -0.91 0.42 1 - 147.67 7497.82 -3795.99 -0.00 -0.91 0.42 1 - -147.68 7497.74 -3796.11 -0.00 -0.91 0.42 1 - 0.04 7389.19 -4027.50 -0.00 -0.91 0.42 1 - -590.56 7823.78 -3062.35 0.00 -0.94 0.35 1 - -295.21 7823.86 -3062.23 0.00 -0.94 0.35 1 - -0.06 7823.86 -3062.23 0.00 -0.94 0.35 1 - 295.43 7823.83 -3062.28 0.00 -0.94 0.35 1 - 590.58 7823.83 -3062.28 0.00 -0.94 0.35 1 - -442.90 7912.14 -2822.21 0.00 -0.94 0.35 1 - -147.55 7912.22 -2822.09 0.00 -0.94 0.35 1 - 147.75 7912.10 -2822.26 0.00 -0.94 0.35 1 - 443.09 7912.19 -2822.14 0.00 -0.94 0.35 1 - -295.23 8000.50 -2582.07 0.00 -0.94 0.35 1 - 0.06 8000.38 -2582.24 0.00 -0.94 0.35 1 - 295.41 8000.47 -2582.12 0.00 -0.94 0.35 1 - -147.63 8088.87 -2342.37 0.00 -0.94 0.35 1 - 147.72 8088.95 -2342.25 0.00 -0.94 0.35 1 - -215.36 7268.43 -4250.21 0.08 -0.88 0.46 1 - -364.87 7375.15 -4018.78 0.08 -0.88 0.46 1 - -514.04 7482.06 -3787.53 0.08 -0.88 0.46 1 - -663.40 7588.67 -3556.27 0.08 -0.88 0.46 1 - -812.92 7695.60 -3324.98 0.08 -0.88 0.46 1 - -509.87 7246.65 -4241.54 0.08 -0.88 0.46 1 - -659.24 7353.26 -4010.27 0.08 -0.88 0.46 1 - -808.40 7460.16 -3779.03 0.08 -0.88 0.46 1 - -957.76 7566.98 -3547.91 0.08 -0.88 0.46 1 - -804.23 7224.75 -4233.03 0.08 -0.88 0.46 1 - -953.60 7331.57 -4001.91 0.08 -0.88 0.46 1 - -1102.76 7438.48 -3770.67 0.08 -0.88 0.46 1 - -1098.59 7203.07 -4224.67 0.08 -0.88 0.46 1 - -1247.75 7309.97 -3993.42 0.08 -0.88 0.46 1 - 1344.66 6176.00 5566.85 -0.14 -0.69 -0.71 1 - 1394.41 5532.80 6174.05 -0.14 -0.69 -0.71 1 - 1410.94 5318.44 6376.69 -0.14 -0.69 -0.71 1 - 1100.26 6083.59 5704.74 -0.14 -0.69 -0.71 1 - 1116.75 5869.19 5907.03 -0.14 -0.69 -0.71 1 - 1133.52 5654.95 6109.45 -0.14 -0.69 -0.71 1 - 1150.05 5440.75 6311.90 -0.14 -0.69 -0.71 1 - 855.85 5991.34 5842.43 -0.14 -0.69 -0.71 1 - 872.38 5777.13 6044.87 -0.14 -0.69 -0.71 1 - 889.16 5562.90 6247.30 -0.14 -0.69 -0.71 1 - 611.49 5899.28 5980.28 -0.14 -0.69 -0.71 1 - 628.26 5685.05 6182.70 -0.14 -0.69 -0.71 1 - 205.79 4242.07 7273.47 -0.07 -0.46 -0.89 1 - 458.77 4098.65 7325.80 -0.07 -0.46 -0.89 1 - 711.68 3955.66 7378.16 -0.07 -0.46 -0.89 1 - 964.45 3812.36 7430.41 -0.07 -0.46 -0.89 1 - 1217.42 3669.07 7482.95 -0.07 -0.46 -0.89 1 - 201.72 3979.41 7408.66 -0.07 -0.46 -0.89 1 - 454.49 3836.11 7460.91 -0.07 -0.46 -0.89 1 - 707.40 3693.12 7513.27 -0.07 -0.46 -0.89 1 - 960.17 3549.95 7565.73 -0.07 -0.46 -0.89 1 - 197.44 3716.87 7543.77 -0.07 -0.46 -0.89 1 - 450.21 3573.70 7596.23 -0.07 -0.46 -0.89 1 - 703.12 3430.71 7648.59 -0.07 -0.46 -0.89 1 - 193.16 3454.46 7679.09 -0.07 -0.46 -0.89 1 - 446.07 3311.47 7731.45 -0.07 -0.46 -0.89 1 - 1217.48 5052.02 6628.25 -0.07 -0.59 -0.80 1 - 964.57 4941.01 6732.87 -0.07 -0.59 -0.80 1 - 711.80 4830.30 6837.61 -0.07 -0.59 -0.80 1 - 458.68 4719.41 6942.15 -0.07 -0.59 -0.80 1 - 205.76 4608.53 7046.98 -0.07 -0.59 -0.80 1 - 960.35 5179.35 6558.72 -0.07 -0.59 -0.80 1 - 707.39 5068.63 6663.16 -0.07 -0.59 -0.80 1 - 454.47 4957.75 6768.00 -0.07 -0.59 -0.80 1 - 201.71 4846.92 6872.52 -0.07 -0.59 -0.80 1 - 703.18 5306.97 6489.01 -0.07 -0.59 -0.80 1 - 450.27 5195.96 6593.63 -0.07 -0.59 -0.80 1 - 197.51 5085.12 6698.15 -0.07 -0.59 -0.80 1 - 446.20 5434.48 6419.38 -0.07 -0.59 -0.80 1 - 193.29 5323.46 6524.00 -0.07 -0.59 -0.80 1 - 1277.80 6653.44 5012.27 -0.09 -0.83 -0.55 1 - 1038.77 6575.89 5167.46 -0.09 -0.83 -0.55 1 - 1248.68 6819.51 4769.69 -0.09 -0.83 -0.55 1 - 1009.90 6741.77 4925.06 -0.09 -0.83 -0.55 1 - 770.87 6664.22 5080.24 -0.09 -0.83 -0.55 1 - 1219.81 6985.39 4527.28 -0.09 -0.83 -0.55 1 - 980.78 6907.84 4682.47 -0.09 -0.83 -0.55 1 - 742.00 6830.10 4837.84 -0.09 -0.83 -0.55 1 - 502.98 6752.55 4993.03 -0.09 -0.83 -0.55 1 - 1190.69 7151.46 4284.69 -0.09 -0.83 -0.55 1 - 951.91 7073.72 4440.06 -0.09 -0.83 -0.55 1 - 712.89 6996.17 4595.25 -0.09 -0.83 -0.55 1 - 474.11 6918.58 4750.42 -0.09 -0.83 -0.55 1 - 235.08 6840.87 4905.81 -0.09 -0.83 -0.55 1 - 922.80 7239.79 4197.48 -0.09 -0.83 -0.55 1 - 684.02 7162.05 4352.85 -0.09 -0.83 -0.55 1 - 444.99 7084.50 4508.03 -0.09 -0.83 -0.55 1 - 206.22 7006.91 4663.20 -0.09 -0.83 -0.55 1 - 654.90 7328.12 4110.26 -0.09 -0.83 -0.55 1 - 416.12 7250.38 4265.63 -0.09 -0.83 -0.55 1 - 177.10 7172.82 4420.82 -0.09 -0.83 -0.55 1 - 249.16 6650.96 5149.98 -0.06 -0.76 -0.65 1 - 516.09 6556.80 5233.65 -0.06 -0.76 -0.65 1 - 783.24 6462.56 5316.94 -0.06 -0.76 -0.65 1 - 1050.39 6368.32 5400.24 -0.06 -0.76 -0.65 1 - 274.87 6458.32 5372.37 -0.06 -0.76 -0.65 1 - 542.02 6364.08 5455.66 -0.06 -0.76 -0.65 1 - 809.17 6269.84 5538.96 -0.06 -0.76 -0.65 1 - 300.83 6265.65 5594.74 -0.06 -0.76 -0.65 1 - 567.99 6171.41 5678.03 -0.06 -0.76 -0.65 1 - 326.77 6072.93 5816.75 -0.06 -0.76 -0.65 1 - -255.85 2774.88 7911.51 0.00 -0.34 -0.94 1 - -255.73 3052.22 7810.12 0.00 -0.34 -0.94 1 - 0.01 2636.38 7962.04 0.00 -0.34 -0.94 1 - -0.07 2913.69 7860.95 0.00 -0.34 -0.94 1 - 0.05 3191.02 7759.56 0.00 -0.34 -0.94 1 - 255.63 2774.87 7911.57 0.00 -0.34 -0.94 1 - 255.76 3052.20 7810.18 0.00 -0.34 -0.94 1 - 255.85 5835.29 6020.09 -0.00 -0.69 -0.73 1 - 255.73 5620.57 6222.80 -0.00 -0.69 -0.73 1 - -0.01 5942.44 5918.80 -0.00 -0.69 -0.73 1 - 0.07 5727.99 6121.62 -0.00 -0.69 -0.73 1 - -0.05 5513.28 6324.34 -0.00 -0.69 -0.73 1 - -255.63 5835.35 6020.10 -0.00 -0.69 -0.73 1 - -255.76 5620.64 6222.81 -0.00 -0.69 -0.73 1 - 295.25 7498.11 3749.05 -0.00 -0.89 -0.45 1 - 147.67 7383.74 3977.78 -0.00 -0.89 -0.45 1 - 147.69 7612.48 3520.31 -0.00 -0.89 -0.45 1 - 0.11 7498.11 3749.05 -0.00 -0.89 -0.45 1 - -147.47 7383.74 3977.78 -0.00 -0.89 -0.45 1 - -147.46 7612.48 3520.31 -0.00 -0.89 -0.45 1 - -295.39 7498.10 3749.10 -0.00 -0.89 -0.45 1 - -1050.45 6368.34 5400.20 0.06 -0.76 -0.65 1 - -783.29 6462.58 5316.91 0.06 -0.76 -0.65 1 - -516.13 6556.81 5233.62 0.06 -0.76 -0.65 1 - -248.94 6650.86 5150.17 0.06 -0.76 -0.65 1 - -809.32 6269.75 5539.04 0.06 -0.76 -0.65 1 - -542.16 6363.99 5455.75 0.06 -0.76 -0.65 1 - -275.00 6458.23 5372.46 0.06 -0.76 -0.65 1 - -567.99 6171.44 5677.99 0.06 -0.76 -0.65 1 - -300.83 6265.68 5594.70 0.06 -0.76 -0.65 1 - -326.86 6072.85 5816.83 0.06 -0.76 -0.65 1 - -1038.95 6575.84 5167.48 0.09 -0.83 -0.55 1 - -1277.81 6653.56 5012.12 0.09 -0.83 -0.55 1 - -770.96 6664.29 5080.13 0.09 -0.83 -0.55 1 - -1009.98 6741.80 4925.01 0.09 -0.83 -0.55 1 - -1248.84 6819.52 4769.64 0.09 -0.83 -0.55 1 - -503.13 6752.53 4993.01 0.09 -0.83 -0.55 1 - -741.99 6830.25 4837.65 0.09 -0.83 -0.55 1 - -981.00 6907.76 4682.53 0.09 -0.83 -0.55 1 - -1219.86 6985.48 4527.16 0.09 -0.83 -0.55 1 - -235.14 6840.98 4905.66 0.09 -0.83 -0.55 1 - -474.15 6918.49 4750.53 0.09 -0.83 -0.55 1 - -713.01 6996.21 4595.17 0.09 -0.83 -0.55 1 - -951.79 7073.79 4440.00 0.09 -0.83 -0.55 1 - -1190.88 7151.43 4284.68 0.09 -0.83 -0.55 1 - -206.16 7006.94 4663.18 0.09 -0.83 -0.55 1 - -445.18 7084.45 4508.06 0.09 -0.83 -0.55 1 - -684.03 7162.17 4352.69 0.09 -0.83 -0.55 1 - -922.81 7239.75 4197.53 0.09 -0.83 -0.55 1 - -177.19 7172.90 4420.70 0.09 -0.83 -0.55 1 - -416.20 7250.40 4265.58 0.09 -0.83 -0.55 1 - -655.06 7328.12 4110.21 0.09 -0.83 -0.55 1 - -205.79 4608.46 7047.03 0.07 -0.59 -0.80 1 - -458.77 4719.41 6942.15 0.07 -0.59 -0.80 1 - -711.68 4830.19 6837.67 0.07 -0.59 -0.80 1 - -964.45 4941.01 6732.86 0.07 -0.59 -0.80 1 - -1217.42 5052.09 6628.20 0.07 -0.59 -0.80 1 - -201.72 4846.85 6872.56 0.07 -0.59 -0.80 1 - -454.49 4957.67 6767.75 0.07 -0.59 -0.80 1 - -707.40 5068.45 6663.27 0.07 -0.59 -0.80 1 - -960.17 5179.40 6558.68 0.07 -0.59 -0.80 1 - -197.44 5085.11 6698.16 0.07 -0.59 -0.80 1 - -450.21 5196.06 6593.56 0.07 -0.59 -0.80 1 - -703.12 5306.84 6489.09 0.07 -0.59 -0.80 1 - -193.16 5323.50 6523.97 0.07 -0.59 -0.80 1 - -446.07 5434.28 6419.49 0.07 -0.59 -0.80 1 - 1171.72 8340.45 51.38 -0.21 -0.98 -0.03 1 - 1460.51 8278.83 57.22 -0.21 -0.98 -0.03 1 - 1749.17 8217.52 63.17 -0.21 -0.98 -0.03 1 - 2038.05 8155.86 69.24 -0.21 -0.98 -0.03 1 - 2326.93 8094.47 75.09 -0.21 -0.98 -0.03 1 - 1309.71 8303.81 309.78 -0.21 -0.98 -0.03 1 - 1598.37 8242.23 315.96 -0.21 -0.98 -0.03 1 - 1887.25 8180.84 321.81 -0.21 -0.98 -0.03 1 - 2175.82 8119.30 327.74 -0.21 -0.98 -0.03 1 - 1447.57 8267.21 568.52 -0.21 -0.98 -0.03 1 - 1736.36 8205.58 574.36 -0.21 -0.98 -0.03 1 - 2024.93 8144.04 580.30 -0.21 -0.98 -0.03 1 - 1585.34 8230.65 827.02 -0.21 -0.98 -0.03 1 - 1874.13 8169.02 832.86 -0.21 -0.98 -0.03 1 - 1629.23 8161.26 -1295.27 -0.14 -0.98 0.10 1 - 1481.43 8209.29 -1044.10 -0.14 -0.98 0.10 1 - 1333.86 8257.24 -793.04 -0.14 -0.98 0.10 1 - 1186.16 8305.22 -541.64 -0.14 -0.98 0.10 1 - 1038.59 8353.17 -290.58 -0.14 -0.98 0.10 1 - 1336.77 8202.57 -1301.47 -0.14 -0.98 0.10 1 - 1188.97 8250.60 -1050.31 -0.14 -0.98 0.10 1 - 1041.49 8298.51 -799.01 -0.14 -0.98 0.10 1 - 893.70 8346.54 -547.85 -0.14 -0.98 0.10 1 - 1044.31 8243.88 -1307.68 -0.14 -0.98 0.10 1 - 896.82 8291.79 -1056.38 -0.14 -0.98 0.10 1 - 749.03 8339.82 -805.22 -0.14 -0.98 0.10 1 - 752.24 8285.32 -1313.74 -0.14 -0.98 0.10 1 - 604.45 8333.34 -1062.58 -0.14 -0.98 0.10 1 - 215.36 8323.16 1272.50 -0.08 -0.99 -0.10 1 - 364.87 8337.09 1018.02 -0.08 -0.99 -0.10 1 - 514.04 8351.25 763.65 -0.08 -0.99 -0.10 1 - 663.40 8365.13 509.38 -0.08 -0.99 -0.10 1 - 812.92 8379.31 254.96 -0.08 -0.99 -0.10 1 - 509.87 8299.72 1272.46 -0.08 -0.99 -0.10 1 - 659.24 8313.60 1018.18 -0.08 -0.99 -0.10 1 - 808.40 8327.76 763.81 -0.08 -0.99 -0.10 1 - 957.76 8341.89 509.59 -0.08 -0.99 -0.10 1 - 804.23 8276.23 1272.62 -0.08 -0.99 -0.10 1 - 953.60 8290.36 1018.40 -0.08 -0.99 -0.10 1 - 1102.76 8304.52 764.03 -0.08 -0.99 -0.10 1 - 1098.59 8252.99 1272.83 -0.08 -0.99 -0.10 1 - 1247.75 8267.16 1018.47 -0.08 -0.99 -0.10 1 - -590.79 8176.05 -1561.49 0.00 -0.98 0.19 1 - -442.94 8128.00 -1812.71 0.00 -0.98 0.19 1 - -295.45 8079.94 -2063.88 0.00 -0.98 0.19 1 - -443.13 8223.87 -1310.37 0.00 -0.98 0.19 1 - -295.29 8176.07 -1561.54 0.00 -0.98 0.19 1 - -147.80 8128.00 -1812.71 0.00 -0.98 0.19 1 - 0.04 8079.95 -2063.94 0.00 -0.98 0.19 1 - -295.48 8271.93 -1059.21 0.00 -0.98 0.19 1 - -147.64 8223.88 -1310.43 0.00 -0.98 0.19 1 - -0.15 8176.07 -1561.54 0.00 -0.98 0.19 1 - 147.55 8127.97 -1812.57 0.00 -0.98 0.19 1 - 295.19 8079.95 -2063.94 0.00 -0.98 0.19 1 - -0.13 8271.90 -1059.06 0.00 -0.98 0.19 1 - 147.51 8223.88 -1310.43 0.00 -0.98 0.19 1 - 295.20 8176.03 -1561.40 0.00 -0.98 0.19 1 - 442.84 8128.01 -1812.77 0.00 -0.98 0.19 1 - 295.16 8271.94 -1059.26 0.00 -0.98 0.19 1 - 442.86 8223.85 -1310.29 0.00 -0.98 0.19 1 - 590.49 8176.08 -1561.60 0.00 -0.98 0.19 1 - 590.56 8401.67 -36.42 -0.00 -1.00 0.02 1 - 295.21 8401.71 -36.57 -0.00 -1.00 0.02 1 - 0.06 8401.71 -36.56 -0.00 -1.00 0.02 1 - -295.43 8401.69 -36.51 -0.00 -1.00 0.02 1 - -590.58 8401.69 -36.51 -0.00 -1.00 0.02 1 - 442.90 8395.32 -292.22 -0.00 -1.00 0.02 1 - 147.55 8395.35 -292.37 -0.00 -1.00 0.02 1 - -147.75 8395.31 -292.17 -0.00 -1.00 0.02 1 - -443.09 8395.34 -292.31 -0.00 -1.00 0.02 1 - 295.23 8388.96 -548.02 -0.00 -1.00 0.02 1 - -0.06 8388.92 -547.82 -0.00 -1.00 0.02 1 - -295.41 8388.95 -547.97 -0.00 -1.00 0.02 1 - 147.63 8382.78 -803.42 -0.00 -1.00 0.02 1 - -147.72 8382.81 -803.57 -0.00 -1.00 0.02 1 - -442.92 8400.10 255.16 0.00 -1.00 -0.06 1 - -147.77 8400.10 255.16 0.00 -1.00 -0.06 1 - 147.58 8400.07 255.30 0.00 -1.00 -0.06 1 - 442.87 8400.12 255.10 0.00 -1.00 -0.06 1 - -295.29 8384.44 510.40 0.00 -1.00 -0.06 1 - -0.15 8384.44 510.40 0.00 -1.00 -0.06 1 - 295.20 8384.41 510.55 0.00 -1.00 -0.06 1 - -147.67 8369.02 765.71 0.00 -1.00 -0.06 1 - 147.68 8368.99 765.85 0.00 -1.00 -0.06 1 - -0.04 8353.36 1020.95 0.00 -1.00 -0.06 1 - -812.83 8379.32 254.90 0.08 -0.99 -0.10 1 - -663.40 8365.16 509.26 0.08 -0.99 -0.10 1 - -514.17 8351.28 763.54 0.08 -0.99 -0.10 1 - -364.88 8337.07 1018.10 0.08 -0.99 -0.10 1 - -215.44 8323.16 1272.52 0.08 -0.99 -0.10 1 - -957.70 8341.93 509.41 0.08 -0.99 -0.10 1 - -808.61 8327.76 763.83 0.08 -0.99 -0.10 1 - -659.18 8313.85 1018.25 0.08 -0.99 -0.10 1 - -509.95 8299.72 1272.46 0.08 -0.99 -0.10 1 - -1102.92 8304.54 763.97 0.08 -0.99 -0.10 1 - -953.48 8290.38 1018.34 0.08 -0.99 -0.10 1 - -804.25 8276.25 1272.55 0.08 -0.99 -0.10 1 - -1247.98 8267.19 1018.34 0.08 -0.99 -0.10 1 - -1098.55 8253.02 1272.70 0.08 -0.99 -0.10 1 - 2014.87 7695.74 2745.39 -0.19 -0.94 -0.29 1 - 1730.17 7765.84 2710.37 -0.19 -0.94 -0.29 1 - 1445.47 7835.94 2675.36 -0.19 -0.94 -0.29 1 - 1160.72 7905.81 2640.25 -0.19 -0.94 -0.29 1 - 1918.70 7796.67 2485.19 -0.19 -0.94 -0.29 1 - 1634.00 7866.77 2450.18 -0.19 -0.94 -0.29 1 - 1349.30 7936.87 2415.16 -0.19 -0.94 -0.29 1 - 1822.34 7897.91 2225.04 -0.19 -0.94 -0.29 1 - 1537.65 7968.01 2190.02 -0.19 -0.94 -0.29 1 - 1726.17 7998.84 1964.84 -0.19 -0.94 -0.29 1 - 1424.05 8147.48 1395.69 -0.20 -0.96 -0.17 1 - 1587.17 8157.09 1149.73 -0.20 -0.96 -0.17 1 - 1549.64 8075.31 1653.03 -0.20 -0.96 -0.17 1 - 1712.57 8085.24 1407.12 -0.20 -0.96 -0.17 1 - 1875.69 8094.85 1161.16 -0.20 -0.96 -0.17 1 - 1837.85 8013.07 1664.63 -0.20 -0.96 -0.17 1 - 2000.96 8022.69 1418.68 -0.20 -0.96 -0.17 1 - 1828.68 7662.79 2993.56 -0.15 -0.91 -0.40 1 - 1919.81 7537.19 3244.86 -0.15 -0.91 -0.40 1 - 1542.69 7726.48 2955.75 -0.15 -0.91 -0.40 1 - 1634.13 7600.87 3206.86 -0.15 -0.91 -0.40 1 - 1725.26 7475.26 3458.15 -0.15 -0.91 -0.40 1 - 1257.01 7790.16 2917.75 -0.15 -0.91 -0.40 1 - 1348.15 7664.55 3169.04 -0.15 -0.91 -0.40 1 - 1439.59 7538.94 3420.15 -0.15 -0.91 -0.40 1 - 1530.72 7413.33 3671.44 -0.15 -0.91 -0.40 1 - 971.03 7853.84 2879.93 -0.15 -0.91 -0.40 1 - 1062.47 7728.23 3131.04 -0.15 -0.91 -0.40 1 - 1153.60 7602.62 3382.33 -0.15 -0.91 -0.40 1 - 1244.81 7477.09 3633.39 -0.15 -0.91 -0.40 1 - 1336.17 7351.41 3884.74 -0.15 -0.91 -0.40 1 - 776.48 7791.91 3093.22 -0.15 -0.91 -0.40 1 - 867.92 7666.30 3344.33 -0.15 -0.91 -0.40 1 - 959.05 7540.70 3595.63 -0.15 -0.91 -0.40 1 - 1050.26 7415.17 3846.69 -0.15 -0.91 -0.40 1 - 581.94 7729.99 3306.52 -0.15 -0.91 -0.40 1 - 673.38 7604.38 3557.63 -0.15 -0.91 -0.40 1 - 764.51 7478.77 3808.92 -0.15 -0.91 -0.40 1 - 757.62 8036.67 2378.56 -0.09 -0.97 -0.22 1 - 610.41 8107.28 2132.67 -0.09 -0.97 -0.22 1 - 462.84 8177.63 1886.77 -0.09 -0.97 -0.22 1 - 315.27 8247.98 1640.88 -0.09 -0.97 -0.22 1 - 904.37 8081.40 2126.19 -0.09 -0.97 -0.22 1 - 756.81 8151.75 1880.30 -0.09 -0.97 -0.22 1 - 609.24 8222.11 1634.40 -0.09 -0.97 -0.22 1 - 1050.92 8126.17 1873.67 -0.09 -0.97 -0.22 1 - 903.35 8196.52 1627.78 -0.09 -0.97 -0.22 1 - 1197.32 8170.65 1621.30 -0.09 -0.97 -0.22 1 - -147.61 8209.00 1901.15 -0.00 -0.95 -0.30 1 - 147.74 8208.96 1901.29 -0.00 -0.95 -0.30 1 - -295.24 8131.79 2145.11 -0.00 -0.95 -0.30 1 - 0.05 8131.84 2144.91 -0.00 -0.95 -0.30 1 - 295.40 8131.80 2145.05 -0.00 -0.95 -0.30 1 - -442.93 8054.66 2388.73 -0.00 -0.95 -0.30 1 - -147.58 8054.63 2388.87 -0.00 -0.95 -0.30 1 - 147.71 8054.68 2388.67 -0.00 -0.95 -0.30 1 - 443.06 8054.64 2388.81 -0.00 -0.95 -0.30 1 - -590.56 7977.46 2632.69 -0.00 -0.95 -0.30 1 - -295.27 7977.50 2632.49 -0.00 -0.95 -0.30 1 - 0.08 7977.47 2632.63 -0.00 -0.95 -0.30 1 - 295.22 7977.47 2632.63 -0.00 -0.95 -0.30 1 - 590.72 7977.48 2632.57 -0.00 -0.95 -0.30 1 - -442.90 7900.30 2876.45 -0.00 -0.95 -0.30 1 - -147.61 7900.34 2876.25 -0.00 -0.95 -0.30 1 - 147.74 7900.31 2876.39 -0.00 -0.95 -0.30 1 - 442.88 7900.31 2876.39 -0.00 -0.95 -0.30 1 - -295.24 7823.14 3120.21 -0.00 -0.95 -0.30 1 - 0.05 7823.18 3120.01 -0.00 -0.95 -0.30 1 - 295.40 7823.15 3120.15 -0.00 -0.95 -0.30 1 - -315.20 8247.98 1640.88 0.09 -0.97 -0.22 1 - -462.78 8177.63 1886.78 0.09 -0.97 -0.22 1 - -610.35 8107.28 2132.67 0.09 -0.97 -0.22 1 - -757.93 8036.68 2378.51 0.09 -0.97 -0.22 1 - -609.19 8222.15 1634.22 0.09 -0.97 -0.22 1 - -756.76 8151.80 1880.12 0.09 -0.97 -0.22 1 - -904.34 8081.44 2126.01 0.09 -0.97 -0.22 1 - -903.32 8196.51 1627.82 0.09 -0.97 -0.22 1 - -1050.90 8126.16 1873.72 0.09 -0.97 -0.22 1 - -1197.31 8170.68 1621.16 0.09 -0.97 -0.22 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -3145.16 7796.14 -69.20 9999.00 9999.00 9999.00 3 - -2107.90 6753.14 -4557.80 9999.00 9999.00 9999.00 3 - -2264.07 6702.41 4557.80 9999.00 9999.00 9999.00 3 - 0.06 8401.71 -36.56 9999.00 9999.00 9999.00 3 - -1038.67 6032.37 -5785.33 0.14 -0.66 0.73 1 - -1186.23 5829.10 -5940.69 0.14 -0.66 0.73 1 - -1333.80 5625.98 -6095.86 0.14 -0.66 0.73 1 - -1481.60 5422.63 -6251.17 0.14 -0.66 0.73 1 - -1629.17 5219.52 -6406.34 0.14 -0.66 0.73 1 - -893.87 5855.79 -5972.76 0.14 -0.66 0.73 1 - -1041.43 5652.51 -6128.12 0.14 -0.66 0.73 1 - -1189.24 5449.32 -6283.24 0.14 -0.66 0.73 1 - -1336.80 5246.05 -6438.60 0.14 -0.66 0.73 1 - -749.07 5679.20 -6160.19 0.14 -0.66 0.73 1 - -896.88 5476.01 -6315.31 0.14 -0.66 0.73 1 - -1044.44 5272.74 -6470.67 0.14 -0.66 0.73 1 - -604.61 5502.88 -6347.53 0.14 -0.66 0.73 1 - -752.17 5299.61 -6502.89 0.14 -0.66 0.73 1 - -1629.23 4808.36 -6720.39 0.14 -0.53 0.83 1 - -1481.43 4605.19 -6875.67 0.14 -0.53 0.83 1 - -1333.86 4402.07 -7030.84 0.14 -0.53 0.83 1 - -1186.16 4198.68 -7186.19 0.14 -0.53 0.83 1 - -1038.59 3995.56 -7341.36 0.14 -0.53 0.83 1 - -1336.77 4832.39 -6754.57 0.14 -0.53 0.83 1 - -1188.97 4629.22 -6909.85 0.14 -0.53 0.83 1 - -1041.49 4425.88 -7065.09 0.14 -0.53 0.83 1 - -893.70 4222.71 -7220.37 0.14 -0.53 0.83 1 - -1044.31 4856.42 -6788.74 0.14 -0.53 0.83 1 - -896.82 4653.07 -6943.98 0.14 -0.53 0.83 1 - -749.03 4449.90 -7099.26 0.14 -0.53 0.83 1 - -752.24 4880.37 -6823.09 0.14 -0.53 0.83 1 - -604.45 4677.20 -6978.37 0.14 -0.53 0.83 1 - -215.36 2584.08 -8013.55 0.08 -0.35 0.93 1 - -364.87 2817.92 -7912.20 0.08 -0.35 0.93 1 - -514.04 3051.77 -7811.11 0.08 -0.35 0.93 1 - -663.40 3285.41 -7709.81 0.08 -0.35 0.93 1 - -812.92 3519.31 -7608.71 0.08 -0.35 0.93 1 - -509.87 2573.63 -7992.57 0.08 -0.35 0.93 1 - -659.24 2807.27 -7891.27 0.08 -0.35 0.93 1 - -808.40 3041.12 -7790.18 0.08 -0.35 0.93 1 - -957.76 3274.82 -7689.12 0.08 -0.35 0.93 1 - -804.23 2562.98 -7971.63 0.08 -0.35 0.93 1 - -953.60 2796.68 -7870.58 0.08 -0.35 0.93 1 - -1102.76 3030.53 -7769.49 0.08 -0.35 0.93 1 - -1098.59 2552.40 -7950.94 0.08 -0.35 0.93 1 - -1247.75 2786.24 -7849.85 0.08 -0.35 0.93 1 - -2326.95 6083.27 -5340.40 0.21 -0.75 0.63 1 - -2037.98 6125.17 -5385.68 0.21 -0.75 0.63 1 - -1749.32 6167.02 -5431.26 0.21 -0.75 0.63 1 - -1460.60 6208.84 -5476.50 0.21 -0.75 0.63 1 - -1171.72 6250.93 -5521.93 0.21 -0.75 0.63 1 - -2175.85 6270.21 -5168.62 0.21 -0.75 0.63 1 - -1887.12 6312.04 -5213.86 0.21 -0.75 0.63 1 - -1598.46 6353.88 -5259.44 0.21 -0.75 0.63 1 - -1309.82 6395.89 -5304.83 0.21 -0.75 0.63 1 - -2024.99 6457.08 -4996.80 0.21 -0.75 0.63 1 - -1736.35 6499.08 -5042.19 0.21 -0.75 0.63 1 - -1447.69 6540.93 -5087.77 0.21 -0.75 0.63 1 - -1874.22 6644.12 -4825.13 0.21 -0.75 0.63 1 - -1585.56 6685.97 -4870.72 0.21 -0.75 0.63 1 - -1803.19 5400.68 -6197.12 0.21 -0.69 0.70 1 - -1655.61 5603.80 -6041.96 0.21 -0.69 0.70 1 - -1508.06 5807.07 -5886.59 0.21 -0.69 0.70 1 - -1360.25 6010.26 -5731.47 0.21 -0.69 0.70 1 - -1943.95 5562.32 -5994.02 0.21 -0.69 0.70 1 - -1796.38 5765.43 -5838.86 0.21 -0.69 0.70 1 - -1648.82 5968.70 -5683.50 0.21 -0.69 0.70 1 - -2084.81 5724.13 -5791.08 0.21 -0.69 0.70 1 - -1937.25 5927.40 -5635.72 0.21 -0.69 0.70 1 - -2225.58 5885.76 -5587.98 0.21 -0.69 0.70 1 - -2950.15 6569.96 -4353.36 0.30 -0.77 0.55 1 - -2826.06 6448.06 -4591.82 0.30 -0.77 0.55 1 - -2702.10 6325.74 -4830.27 0.30 -0.77 0.55 1 - -2578.14 6203.41 -5068.73 0.30 -0.77 0.55 1 - -2669.36 6631.21 -4421.44 0.30 -0.77 0.55 1 - -2545.40 6508.89 -4659.90 0.30 -0.77 0.55 1 - -2421.45 6386.57 -4898.35 0.30 -0.77 0.55 1 - -2388.56 6692.30 -4489.72 0.30 -0.77 0.55 1 - -2264.60 6569.98 -4728.17 0.30 -0.77 0.55 1 - -2107.90 6753.14 -4557.80 0.30 -0.77 0.55 1 - -757.62 1466.66 -8251.94 0.09 -0.23 0.97 1 - -610.41 1718.17 -8205.13 0.09 -0.23 0.97 1 - -462.84 1969.57 -8158.10 0.09 -0.23 0.97 1 - -315.27 2220.96 -8111.06 0.09 -0.23 0.97 1 - -904.37 1712.39 -8179.09 0.09 -0.23 0.97 1 - -756.81 1963.79 -8132.05 0.09 -0.23 0.97 1 - -609.24 2215.19 -8085.01 0.09 -0.23 0.97 1 - -1050.92 1958.27 -8106.21 0.09 -0.23 0.97 1 - -903.35 2209.67 -8059.17 0.09 -0.23 0.97 1 - -1197.32 2203.89 -8033.13 0.09 -0.23 0.97 1 - -1360.27 3949.31 -7305.88 0.21 -0.49 0.84 1 - -1507.84 4152.42 -7150.71 0.21 -0.49 0.84 1 - -1655.63 4355.59 -6995.43 0.21 -0.49 0.84 1 - -1803.11 4558.94 -6840.19 0.21 -0.49 0.84 1 - -1648.66 3914.04 -7253.20 0.21 -0.49 0.84 1 - -1796.23 4117.16 -7098.03 0.21 -0.49 0.84 1 - -1944.02 4320.33 -6942.75 0.21 -0.49 0.84 1 - -1937.14 3878.88 -7200.73 0.21 -0.49 0.84 1 - -2084.93 4082.05 -7045.45 0.21 -0.49 0.84 1 - -2225.54 3843.62 -7148.05 0.21 -0.49 0.84 1 - -1629.23 8064.19 -1803.52 0.14 -0.95 0.27 1 - -1481.43 8016.28 -2054.70 0.14 -0.95 0.27 1 - -1333.86 7968.33 -2305.76 0.14 -0.95 0.27 1 - -1186.16 7920.30 -2557.15 0.14 -0.95 0.27 1 - -1038.59 7872.35 -2808.21 0.14 -0.95 0.27 1 - -1336.77 8104.89 -1812.97 0.14 -0.95 0.27 1 - -1188.97 8056.97 -2064.15 0.14 -0.95 0.27 1 - -1041.49 8008.90 -2315.42 0.14 -0.95 0.27 1 - -893.70 7960.99 -2566.60 0.14 -0.95 0.27 1 - -1044.31 8145.58 -1822.42 0.14 -0.95 0.27 1 - -896.82 8097.51 -2073.69 0.14 -0.95 0.27 1 - -749.03 8049.60 -2324.87 0.14 -0.95 0.27 1 - -752.24 8186.33 -1832.05 0.14 -0.95 0.27 1 - -604.45 8138.42 -2083.23 0.14 -0.95 0.27 1 - -1171.72 7734.50 -3121.41 0.21 -0.90 0.39 1 - -1460.51 7675.06 -3104.13 0.21 -0.90 0.39 1 - -1749.17 7615.88 -3087.07 0.21 -0.90 0.39 1 - -2038.05 7556.32 -3070.00 0.21 -0.90 0.39 1 - -2326.93 7497.10 -3052.82 0.21 -0.90 0.39 1 - -1309.71 7605.21 -3348.13 0.21 -0.90 0.39 1 - -1598.37 7545.69 -3331.17 0.21 -0.90 0.39 1 - -1887.25 7486.47 -3313.99 0.21 -0.90 0.39 1 - -2175.82 7427.07 -3296.83 0.21 -0.90 0.39 1 - -1447.57 7475.84 -3575.17 0.21 -0.90 0.39 1 - -1736.36 7416.40 -3557.89 0.21 -0.90 0.39 1 - -2024.93 7357.00 -3540.73 0.21 -0.90 0.39 1 - -1585.34 7346.59 -3802.00 0.21 -0.90 0.39 1 - -1874.13 7287.15 -3784.72 0.21 -0.90 0.39 1 - -1360.27 7814.22 -2812.60 0.21 -0.93 0.30 1 - -1507.84 7862.17 -2561.54 0.21 -0.93 0.30 1 - -1655.63 7910.08 -2310.36 0.21 -0.93 0.30 1 - -1803.11 7958.15 -2059.09 0.21 -0.93 0.30 1 - -1648.66 7752.81 -2796.85 0.21 -0.93 0.30 1 - -1796.23 7800.76 -2545.78 0.21 -0.93 0.30 1 - -1944.02 7848.67 -2294.60 0.21 -0.93 0.30 1 - -1937.14 7691.63 -2781.18 0.21 -0.93 0.30 1 - -2084.93 7739.54 -2530.00 0.21 -0.93 0.30 1 - -2225.54 7630.23 -2765.43 0.21 -0.93 0.30 1 - -1798.86 6831.27 -4522.73 0.20 -0.83 0.51 1 - -1509.64 6882.00 -4553.93 0.20 -0.83 0.51 1 - -1943.25 6940.41 -4289.40 0.20 -0.83 0.51 1 - -1654.20 6991.24 -4320.90 0.20 -0.83 0.51 1 - -1364.98 7041.96 -4352.10 0.20 -0.83 0.51 1 - -1798.90 7100.22 -4087.66 0.20 -0.83 0.51 1 - -1509.68 7150.94 -4118.86 0.20 -0.83 0.51 1 - -2542.31 7567.10 -2686.35 0.29 -0.92 0.25 1 - -2402.86 7674.91 -2449.21 0.29 -0.92 0.25 1 - -2263.36 7782.86 -2212.48 0.29 -0.92 0.25 1 - -2124.00 7890.56 -1975.54 0.29 -0.92 0.25 1 - -1984.64 7998.59 -1738.49 0.29 -0.92 0.25 1 - -2685.72 7592.75 -2429.33 0.29 -0.92 0.25 1 - -2546.36 7700.44 -2192.39 0.29 -0.92 0.25 1 - -2406.86 7808.39 -1955.66 0.29 -0.92 0.25 1 - -2267.59 7916.31 -1718.82 0.29 -0.92 0.25 1 - -2829.22 7618.28 -2172.51 0.29 -0.92 0.25 1 - -2689.95 7726.19 -1935.66 0.29 -0.92 0.25 1 - -2550.45 7834.14 -1698.94 0.29 -0.92 0.25 1 - -2972.81 7644.03 -1915.79 0.29 -0.92 0.25 1 - -2833.32 7751.98 -1679.06 0.29 -0.92 0.25 1 - -2578.18 7307.87 -3281.64 0.30 -0.84 0.44 1 - -2702.13 7149.29 -3497.69 0.30 -0.84 0.44 1 - -2826.09 6990.71 -3713.75 0.30 -0.84 0.44 1 - -2949.95 6831.91 -3929.72 0.30 -0.84 0.44 1 - -2421.33 7237.48 -3521.60 0.30 -0.84 0.44 1 - -2545.28 7078.90 -3737.65 0.30 -0.84 0.44 1 - -2669.23 6920.32 -3953.71 0.30 -0.84 0.44 1 - -2264.65 7167.18 -3761.85 0.30 -0.84 0.44 1 - -2388.60 7008.60 -3977.91 0.30 -0.84 0.44 1 - -2107.80 7096.79 -4001.81 0.30 -0.84 0.44 1 - -1217.48 3669.14 7482.91 0.07 -0.46 -0.89 1 - -964.57 3812.36 7430.41 0.07 -0.46 -0.89 1 - -711.80 3955.55 7378.23 0.07 -0.46 -0.89 1 - -458.68 4098.64 7325.80 0.07 -0.46 -0.89 1 - -205.76 4242.00 7273.51 0.07 -0.46 -0.89 1 - -960.35 3550.01 7565.70 0.07 -0.46 -0.89 1 - -707.39 3692.93 7513.38 0.07 -0.46 -0.89 1 - -454.47 3836.29 7461.09 0.07 -0.46 -0.89 1 - -201.71 3979.34 7408.70 0.07 -0.46 -0.89 1 - -703.18 3430.58 7648.68 0.07 -0.46 -0.89 1 - -450.27 3573.80 7596.17 0.07 -0.46 -0.89 1 - -197.51 3716.85 7543.78 0.07 -0.46 -0.89 1 - -446.20 3311.27 7731.58 0.07 -0.46 -0.89 1 - -193.29 3454.50 7679.08 0.07 -0.46 -0.89 1 - -1411.04 5318.44 6376.68 0.14 -0.69 -0.71 1 - -1394.49 5532.74 6174.12 0.14 -0.69 -0.71 1 - -1344.58 6175.99 5566.88 0.14 -0.69 -0.71 1 - -1150.21 5440.66 6311.97 0.14 -0.69 -0.71 1 - -1133.34 5654.90 6109.56 0.14 -0.69 -0.71 1 - -1116.82 5869.41 5907.15 0.14 -0.69 -0.71 1 - -1100.19 6083.57 5704.78 0.14 -0.69 -0.71 1 - -889.06 5562.83 6247.41 0.14 -0.69 -0.71 1 - -872.51 5777.13 6044.85 0.14 -0.69 -0.71 1 - -855.88 5991.30 5842.48 0.14 -0.69 -0.71 1 - -628.15 5684.92 6182.90 0.14 -0.69 -0.71 1 - -611.60 5899.22 5980.33 0.14 -0.69 -0.71 1 - -1220.87 3994.59 7305.88 0.12 -0.52 -0.85 1 - -1220.87 4245.66 7150.72 0.12 -0.52 -0.85 1 - -1220.72 4496.89 6995.44 0.12 -0.52 -0.85 1 - -1220.93 4748.09 6840.20 0.12 -0.52 -0.85 1 - -966.83 4135.58 7253.20 0.12 -0.52 -0.85 1 - -966.83 4386.64 7098.04 0.12 -0.52 -0.85 1 - -966.68 4637.88 6942.76 0.12 -0.52 -0.85 1 - -712.77 4276.70 7200.74 0.12 -0.52 -0.85 1 - -712.62 4527.93 7045.46 0.12 -0.52 -0.85 1 - -458.73 4417.68 7148.06 0.12 -0.52 -0.85 1 - -249.16 1631.87 8251.94 0.06 -0.24 -0.97 1 - -516.09 1748.82 8205.13 0.06 -0.24 -0.97 1 - -783.24 1865.47 8158.10 0.06 -0.24 -0.97 1 - -1050.39 1982.11 8111.06 0.06 -0.24 -0.97 1 - -274.87 1916.93 8179.09 0.06 -0.24 -0.97 1 - -542.02 2033.58 8132.05 0.06 -0.24 -0.97 1 - -809.17 2150.23 8085.01 0.06 -0.24 -0.97 1 - -300.83 2201.99 8106.21 0.06 -0.24 -0.97 1 - -567.99 2318.64 8059.17 0.06 -0.24 -0.97 1 - -326.77 2486.75 8033.13 0.06 -0.24 -0.97 1 - -1475.01 7049.27 4353.36 0.21 -0.81 -0.55 1 - -1503.75 6877.71 4591.82 0.21 -0.81 -0.55 1 - -1532.13 6705.89 4830.28 0.21 -0.81 -0.55 1 - -1560.51 6534.07 5068.74 0.21 -0.81 -0.55 1 - -1738.18 6933.78 4421.44 0.21 -0.81 -0.55 1 - -1766.56 6761.96 4659.90 0.21 -0.81 -0.55 1 - -1794.94 6590.14 4898.36 0.21 -0.81 -0.55 1 - -2001.26 6818.16 4489.72 0.21 -0.81 -0.55 1 - -2029.64 6646.33 4728.18 0.21 -0.81 -0.55 1 - -2264.07 6702.41 4557.80 0.21 -0.81 -0.55 1 - -1715.64 5429.13 6197.13 0.23 -0.68 -0.70 1 - -1954.41 5506.71 6041.96 0.23 -0.68 -0.70 1 - -1696.76 5642.63 5994.03 0.23 -0.68 -0.70 1 - -1935.53 5720.22 5838.87 0.23 -0.68 -0.70 1 - -2174.39 5797.94 5683.50 0.23 -0.68 -0.70 1 - -1677.92 5856.34 5791.09 0.23 -0.68 -0.70 1 - -1916.77 5934.06 5635.73 0.23 -0.68 -0.70 1 - -1659.04 6069.84 5587.99 0.23 -0.68 -0.70 1 - -1693.12 6289.22 5340.41 0.27 -0.73 -0.63 1 - -1951.52 6153.27 5385.69 0.27 -0.73 -0.63 1 - -2209.65 6017.45 5431.27 0.27 -0.73 -0.63 1 - -2467.82 5881.58 5476.50 0.27 -0.73 -0.63 1 - -2726.27 5745.83 5521.93 0.27 -0.73 -0.63 1 - -1925.24 6351.65 5168.63 0.27 -0.73 -0.63 1 - -2183.41 6215.77 5213.86 0.27 -0.73 -0.63 1 - -2441.53 6079.96 5259.45 0.27 -0.73 -0.63 1 - -2699.74 5944.28 5304.83 0.27 -0.73 -0.63 1 - -2157.12 6414.15 4996.81 0.27 -0.73 -0.63 1 - -2415.33 6278.47 5042.19 0.27 -0.73 -0.63 1 - -2673.45 6142.66 5087.78 0.27 -0.73 -0.63 1 - -2389.04 6476.85 4825.14 0.27 -0.73 -0.63 1 - -2647.17 6341.04 4870.72 0.27 -0.73 -0.63 1 - -1344.66 2217.15 8013.55 0.14 -0.33 -0.93 1 - -1361.15 2494.21 7912.20 0.14 -0.33 -0.93 1 - -1377.92 2771.07 7811.11 0.14 -0.33 -0.93 1 - -1394.41 3047.88 7709.81 0.14 -0.33 -0.93 1 - -1410.94 3325.00 7608.71 0.14 -0.33 -0.93 1 - -1100.26 2381.81 7992.57 0.14 -0.33 -0.93 1 - -1116.75 2658.62 7891.27 0.14 -0.33 -0.93 1 - -1133.52 2935.48 7790.18 0.14 -0.33 -0.93 1 - -1150.05 3212.34 7689.12 0.14 -0.33 -0.93 1 - -855.85 2546.21 7971.63 0.14 -0.33 -0.93 1 - -872.38 2823.07 7870.58 0.14 -0.33 -0.93 1 - -889.16 3099.93 7769.49 0.14 -0.33 -0.93 1 - -611.49 2710.66 7950.94 0.14 -0.33 -0.93 1 - -628.26 2987.52 7849.85 0.14 -0.33 -0.93 1 - -2560.02 6583.97 4522.73 0.33 -0.79 -0.51 1 - -2823.82 6455.01 4553.93 0.33 -0.79 -0.51 1 - -2507.36 6757.14 4289.40 0.33 -0.79 -0.51 1 - -2771.07 6628.36 4320.90 0.33 -0.79 -0.51 1 - -3034.87 6499.40 4352.10 0.33 -0.79 -0.51 1 - -2718.06 6801.57 4087.66 0.33 -0.79 -0.51 1 - -2981.86 6672.61 4118.86 0.33 -0.79 -0.51 1 - -1508.21 4847.67 6720.40 0.20 -0.52 -0.83 1 - -1508.36 4596.43 6875.68 0.20 -0.52 -0.83 1 - -1508.36 4345.37 7030.85 0.20 -0.52 -0.83 1 - -1508.30 4094.00 7186.20 0.20 -0.52 -0.83 1 - -1508.30 3842.94 7341.36 0.20 -0.52 -0.83 1 - -1758.94 4695.21 6754.58 0.20 -0.52 -0.83 1 - -1759.09 4443.97 6909.86 0.20 -0.52 -0.83 1 - -1758.88 4192.77 7065.09 0.20 -0.52 -0.83 1 - -1759.03 3941.54 7220.37 0.20 -0.52 -0.83 1 - -2009.67 4542.74 6788.75 0.20 -0.52 -0.83 1 - -2009.46 4291.54 6943.99 0.20 -0.52 -0.83 1 - -2009.61 4040.31 7099.27 0.20 -0.52 -0.83 1 - -2260.03 4390.45 6823.10 0.20 -0.52 -0.83 1 - -2260.18 4139.21 6978.37 0.20 -0.52 -0.83 1 - -2705.44 5490.80 5785.33 0.28 -0.62 -0.73 1 - -1988.71 5257.86 6251.18 0.28 -0.62 -0.73 1 - -1749.93 5180.27 6406.35 0.28 -0.62 -0.73 1 - -2718.79 5262.83 5972.76 0.28 -0.62 -0.73 1 - -2479.93 5185.11 6128.13 0.28 -0.62 -0.73 1 - -2240.92 5107.61 6283.25 0.28 -0.62 -0.73 1 - -2002.06 5029.88 6438.61 0.28 -0.62 -0.73 1 - -2732.14 5034.86 6160.19 0.28 -0.62 -0.73 1 - -2493.13 4957.35 6315.31 0.28 -0.62 -0.73 1 - -2254.27 4879.63 6470.68 0.28 -0.62 -0.73 1 - -2745.37 4807.30 6347.53 0.28 -0.62 -0.73 1 - -2506.52 4729.58 6502.90 0.28 -0.62 -0.73 1 - -410.64 1318.69 8301.46 0.11 -0.15 -0.98 1 - -649.42 1145.21 8301.46 0.11 -0.15 -0.98 1 - -888.45 971.48 8301.48 0.11 -0.15 -0.98 1 - -1127.22 798.00 8301.48 0.11 -0.15 -0.98 1 - -677.72 1435.24 8253.93 0.11 -0.15 -0.98 1 - -916.50 1261.51 8253.98 0.11 -0.15 -0.98 1 - -944.84 1551.59 8206.69 0.11 -0.15 -0.98 1 - -1183.87 1378.11 8206.66 0.11 -0.15 -0.98 1 - -1211.92 1668.14 8159.16 0.11 -0.15 -0.98 1 - -2479.98 3162.03 7378.34 0.28 -0.38 -0.88 1 - -2719.00 2988.54 7378.30 0.28 -0.38 -0.88 1 - -2254.44 3605.25 7258.24 0.28 -0.38 -0.88 1 - -2493.22 3431.52 7258.29 0.28 -0.38 -0.88 1 - -2732.25 3258.04 7258.25 0.28 -0.38 -0.88 1 - -2506.50 3701.06 7138.49 0.28 -0.38 -0.88 1 - -2745.53 3527.58 7138.45 0.28 -0.38 -0.88 1 - -2726.23 2369.46 7608.69 0.27 -0.24 -0.93 1 - -2467.88 2268.11 7709.78 0.27 -0.24 -0.93 1 - -2209.82 2166.81 7811.08 0.27 -0.24 -0.93 1 - -1951.48 2065.21 7912.22 0.27 -0.24 -0.93 1 - -1693.17 1963.92 8013.56 0.27 -0.24 -0.93 1 - -2699.79 2086.62 7689.08 0.27 -0.24 -0.93 1 - -2441.70 1985.02 7790.18 0.27 -0.24 -0.93 1 - -2183.39 1883.72 7891.51 0.27 -0.24 -0.93 1 - -1925.30 1782.37 7992.57 0.27 -0.24 -0.93 1 - -2673.61 1803.53 7769.47 0.27 -0.24 -0.93 1 - -2415.27 1702.18 7870.56 0.27 -0.24 -0.93 1 - -2157.17 1600.83 7971.62 0.27 -0.24 -0.93 1 - -2647.43 1520.69 7849.82 0.27 -0.24 -0.93 1 - -2389.09 1419.34 7950.91 0.27 -0.24 -0.93 1 - -1629.00 267.32 8251.94 0.25 -0.01 -0.97 1 - -1822.71 49.59 8205.13 0.25 -0.01 -0.97 1 - -2016.20 -168.44 8158.10 0.25 -0.01 -0.97 1 - -1038.67 8353.14 -290.55 0.14 -0.98 0.10 1 - -1186.23 8305.21 -541.87 0.14 -0.98 0.10 1 - -1333.80 8257.26 -792.93 0.14 -0.98 0.10 1 - -1481.60 8209.23 -1044.27 0.14 -0.98 0.10 1 - -1629.17 8161.28 -1295.33 0.14 -0.98 0.10 1 - -893.87 8346.48 -547.97 0.14 -0.98 0.10 1 - -1041.43 8298.54 -799.29 0.14 -0.98 0.10 1 - -1189.24 8250.50 -1050.37 0.14 -0.98 0.10 1 - -1336.80 8202.57 -1301.69 0.14 -0.98 0.10 1 - -749.07 8339.81 -805.40 0.14 -0.98 0.10 1 - -896.88 8291.77 -1056.48 0.14 -0.98 0.10 1 - -1044.44 8243.84 -1307.80 0.14 -0.98 0.10 1 - -604.61 8333.28 -1062.58 0.14 -0.98 0.10 1 - -752.17 8285.35 -1313.90 0.14 -0.98 0.10 1 - -1803.19 8156.84 -1018.61 0.21 -0.97 0.06 1 - -1655.61 8204.79 -767.55 0.21 -0.97 0.06 1 - -1508.06 8252.72 -516.23 0.21 -0.97 0.06 1 - -1360.25 8300.76 -265.15 0.21 -0.97 0.06 1 - -1943.95 8141.92 -759.48 0.21 -0.97 0.06 1 - -1796.38 8189.87 -508.41 0.21 -0.97 0.06 1 - -1648.82 8237.80 -257.10 0.21 -0.97 0.06 1 - -2084.81 8127.23 -500.34 0.21 -0.97 0.06 1 - -1937.25 8175.17 -249.02 0.21 -0.97 0.06 1 - -2225.58 8112.31 -241.20 0.21 -0.97 0.06 1 - -2326.95 8094.47 75.01 0.21 -0.98 -0.03 1 - -2037.98 8155.88 69.20 0.21 -0.98 -0.03 1 - -1749.32 8217.46 63.12 0.21 -0.98 -0.03 1 - -1460.60 8278.79 57.29 0.21 -0.98 -0.03 1 - -1171.72 8340.45 51.48 0.21 -0.98 -0.03 1 - -2175.85 8119.29 327.67 0.21 -0.98 -0.03 1 - -1887.12 8180.61 321.84 0.21 -0.98 -0.03 1 - -1598.46 8242.19 315.76 0.21 -0.98 -0.03 1 - -1309.82 8303.76 309.94 0.21 -0.98 -0.03 1 - -2024.99 8144.02 580.32 0.21 -0.98 -0.03 1 - -1736.35 8205.59 574.50 0.21 -0.98 -0.03 1 - -1447.69 8267.17 568.42 0.21 -0.98 -0.03 1 - -1874.22 8168.99 832.97 0.21 -0.98 -0.03 1 - -1585.56 8230.57 826.90 0.21 -0.98 -0.03 1 - -1984.55 8076.35 -1331.50 0.29 -0.95 0.11 1 - -2123.90 8063.28 -1071.42 0.29 -0.95 0.11 1 - -2263.33 8050.46 -811.59 0.29 -0.95 0.11 1 - -2402.92 8037.30 -551.53 0.29 -0.95 0.11 1 - -2542.37 8024.47 -291.44 0.29 -0.95 0.11 1 - -2267.41 7992.64 -1319.55 0.29 -0.95 0.11 1 - -2406.98 7979.49 -1059.74 0.29 -0.95 0.11 1 - -2546.43 7966.66 -799.66 0.29 -0.95 0.11 1 - -2685.77 7953.61 -539.83 0.29 -0.95 0.11 1 - -2550.48 7908.85 -1307.88 0.29 -0.95 0.11 1 - -2689.84 7895.78 -1047.80 0.29 -0.95 0.11 1 - -2829.18 7882.73 -787.97 0.29 -0.95 0.11 1 - -2833.33 7825.16 -1296.18 0.29 -0.95 0.11 1 - -2972.68 7812.09 -1036.10 0.29 -0.95 0.11 1 - -3141.63 7700.39 1331.50 0.33 -0.94 -0.11 1 - -3021.21 7771.73 1071.42 0.33 -0.94 -0.11 1 - -2900.88 7843.31 811.59 0.33 -0.94 -0.11 1 - -2780.21 7914.71 551.53 0.33 -0.94 -0.11 1 - -2659.86 7986.30 291.44 0.33 -0.94 -0.11 1 - -2863.59 7798.92 1319.55 0.33 -0.94 -0.11 1 - -2742.95 7870.33 1059.74 0.33 -0.94 -0.11 1 - -2622.59 7941.91 799.66 0.33 -0.94 -0.11 1 - -2502.19 8013.25 539.83 0.33 -0.94 -0.11 1 - -2585.33 7897.53 1307.88 0.33 -0.94 -0.11 1 - -2464.91 7968.87 1047.80 0.33 -0.94 -0.11 1 - -2344.51 8040.21 787.97 0.33 -0.94 -0.11 1 - -2307.31 7996.07 1296.18 0.33 -0.94 -0.11 1 - -2186.89 8067.40 1036.10 0.33 -0.94 -0.11 1 - -3096.81 7666.59 -1418.62 0.40 -0.90 0.17 1 - -3240.67 7651.35 -1161.10 0.40 -0.90 0.17 1 - -3222.91 7563.00 -1664.71 0.40 -0.90 0.17 1 - -3366.78 7547.76 -1407.19 0.40 -0.90 0.17 1 - -3510.64 7532.17 -1149.76 0.40 -0.90 0.17 1 - -3492.88 7443.91 -1653.03 0.40 -0.90 0.17 1 - -3636.75 7428.58 -1395.85 0.40 -0.90 0.17 1 - -2875.28 7916.30 -75.01 0.41 -0.91 0.03 1 - -3145.16 7796.14 -69.20 0.41 -0.91 0.03 1 - -3414.88 7676.29 -63.12 0.41 -0.91 0.03 1 - -3684.52 7556.20 -57.29 0.41 -0.91 0.03 1 - -3954.46 7436.28 -51.48 0.41 -0.91 0.03 1 - -3012.11 7847.57 -327.67 0.41 -0.91 0.03 1 - -3281.74 7727.48 -321.84 0.41 -0.91 0.03 1 - -3551.47 7607.63 -315.76 0.41 -0.91 0.03 1 - -3821.17 7487.78 -309.94 0.41 -0.91 0.03 1 - -3148.69 7778.91 -580.32 0.41 -0.91 0.03 1 - -3418.40 7659.06 -574.50 0.41 -0.91 0.03 1 - -3688.12 7539.21 -568.42 0.41 -0.91 0.03 1 - -3285.35 7710.49 -832.97 0.41 -0.91 0.03 1 - -3555.07 7590.64 -826.90 0.41 -0.91 0.03 1 - -3335.67 7658.91 1018.61 0.40 -0.91 -0.06 1 - -3483.25 7610.96 767.55 0.40 -0.91 -0.06 1 - -3630.80 7563.01 516.23 0.40 -0.91 -0.06 1 - -3778.61 7514.99 265.15 0.40 -0.91 -0.06 1 - -3213.02 7729.58 759.48 0.40 -0.91 -0.06 1 - -3360.59 7681.63 508.41 0.40 -0.91 -0.06 1 - -3508.14 7633.68 257.10 0.40 -0.91 -0.06 1 - -3090.43 7800.49 500.34 0.40 -0.91 -0.06 1 - -3237.98 7752.54 249.02 0.40 -0.91 -0.06 1 - -2967.78 7871.15 241.20 0.40 -0.91 -0.06 1 - -1919.91 7537.23 3244.69 0.15 -0.91 -0.40 1 - -1828.50 7662.86 2993.51 0.15 -0.91 -0.40 1 - -1725.16 7475.33 3458.04 0.15 -0.91 -0.40 1 - -1634.10 7600.91 3206.77 0.15 -0.91 -0.40 1 - -1542.70 7726.54 2955.59 0.15 -0.91 -0.40 1 - -1530.76 7413.38 3671.30 0.15 -0.91 -0.40 1 - -1439.36 7539.01 3420.12 0.15 -0.91 -0.40 1 - -1348.30 7664.59 3168.85 0.15 -0.91 -0.40 1 - -1256.89 7790.22 2917.67 0.15 -0.91 -0.40 1 - -1336.02 7351.48 3884.65 0.15 -0.91 -0.40 1 - -1244.96 7477.06 3633.38 0.15 -0.91 -0.40 1 - -1153.55 7602.69 3382.20 0.15 -0.91 -0.40 1 - -1062.35 7728.22 3131.14 0.15 -0.91 -0.40 1 - -971.09 7853.90 2879.75 0.15 -0.91 -0.40 1 - -1050.21 7415.16 3846.73 0.15 -0.91 -0.40 1 - -959.15 7540.74 3595.46 0.15 -0.91 -0.40 1 - -867.75 7666.37 3344.28 0.15 -0.91 -0.40 1 - -776.55 7791.90 3093.22 0.15 -0.91 -0.40 1 - -764.41 7478.84 3808.81 0.15 -0.91 -0.40 1 - -673.35 7604.42 3557.54 0.15 -0.91 -0.40 1 - -581.94 7730.05 3306.36 0.15 -0.91 -0.40 1 - -1160.77 7905.68 2640.54 0.19 -0.94 -0.29 1 - -1445.46 7835.96 2675.31 0.19 -0.94 -0.29 1 - -1730.15 7765.86 2710.32 0.19 -0.94 -0.29 1 - -2014.85 7695.77 2745.32 0.19 -0.94 -0.29 1 - -1349.12 7936.90 2415.20 0.19 -0.94 -0.29 1 - -1633.82 7866.80 2450.21 0.19 -0.94 -0.29 1 - -1918.51 7796.70 2485.21 0.19 -0.94 -0.29 1 - -1537.68 7968.02 2189.99 0.19 -0.94 -0.29 1 - -1822.38 7897.92 2224.99 0.19 -0.94 -0.29 1 - -1726.04 7998.86 1964.88 0.19 -0.94 -0.29 1 - -1838.04 8012.97 1664.71 0.20 -0.96 -0.17 1 - -2000.95 8022.65 1418.62 0.20 -0.96 -0.17 1 - -1549.63 8075.31 1653.03 0.20 -0.96 -0.17 1 - -1712.69 8085.20 1407.19 0.20 -0.96 -0.17 1 - -1875.60 8094.88 1161.10 0.20 -0.96 -0.17 1 - -1424.23 8147.47 1395.85 0.20 -0.96 -0.17 1 - -1587.14 8157.15 1149.76 0.20 -0.96 -0.17 1 - -2209.67 7427.61 3281.64 0.25 -0.86 -0.44 1 - -2016.18 7372.18 3497.69 0.25 -0.86 -0.44 1 - -1822.69 7316.74 3713.75 0.25 -0.86 -0.44 1 - -1629.14 7261.08 3929.72 0.25 -0.86 -0.44 1 - -2295.19 7278.47 3521.60 0.25 -0.86 -0.44 1 - -2101.70 7223.04 3737.65 0.25 -0.86 -0.44 1 - -1908.21 7167.60 3953.71 0.25 -0.86 -0.44 1 - -2380.63 7129.51 3761.85 0.25 -0.86 -0.44 1 - -2187.14 7074.07 3977.91 0.25 -0.86 -0.44 1 - -2466.15 6980.36 4001.81 0.25 -0.86 -0.44 1 - -2391.06 7616.24 2686.35 0.31 -0.92 -0.25 1 - -2567.26 7621.50 2449.21 0.31 -0.92 -0.25 1 - -2743.56 7626.84 2212.48 0.31 -0.92 -0.25 1 - -2919.61 7632.05 1975.54 0.31 -0.92 -0.25 1 - -3095.86 7637.54 1738.49 0.31 -0.92 -0.25 1 - -2290.12 7721.29 2429.33 0.31 -0.92 -0.25 1 - -2466.17 7726.50 2192.39 0.31 -0.92 -0.25 1 - -2642.47 7731.84 1955.66 0.31 -0.92 -0.25 1 - -2818.58 7737.28 1718.82 0.31 -0.92 -0.25 1 - -2189.03 7826.29 2172.51 0.31 -0.92 -0.25 1 - -2365.14 7831.73 1935.66 0.31 -0.92 -0.25 1 - -2541.44 7837.07 1698.94 0.31 -0.92 -0.25 1 - -2088.00 7931.52 1915.79 0.31 -0.92 -0.25 1 - -2264.31 7936.86 1679.06 0.31 -0.92 -0.25 1 - -3598.30 6946.07 3121.41 0.36 -0.85 -0.39 1 - -3329.72 7067.73 3104.13 0.36 -0.85 -0.39 1 - -3061.40 7189.52 3087.07 0.36 -0.85 -0.39 1 - -2792.68 7311.13 3070.00 0.36 -0.85 -0.39 1 - -2524.17 7433.02 3052.82 0.36 -0.85 -0.39 1 - -3410.66 6922.58 3348.13 0.36 -0.85 -0.39 1 - -3142.14 7044.10 3331.17 0.36 -0.85 -0.39 1 - -2873.63 7165.98 3313.99 0.36 -0.85 -0.39 1 - -2605.25 7287.54 3296.83 0.36 -0.85 -0.39 1 - -3223.08 6898.95 3575.17 0.36 -0.85 -0.39 1 - -2954.51 7020.61 3557.89 0.36 -0.85 -0.39 1 - -2686.13 7142.17 3540.73 0.36 -0.85 -0.39 1 - -3035.65 6875.36 3802.00 0.36 -0.85 -0.39 1 - -2767.08 6997.02 3784.72 0.36 -0.85 -0.39 1 - -3492.61 7121.39 2812.60 0.37 -0.88 -0.30 1 - -3401.41 7246.92 2561.54 0.37 -0.88 -0.30 1 - -3310.00 7372.55 2310.36 0.37 -0.88 -0.30 1 - -3218.94 7498.12 2059.09 0.37 -0.88 -0.30 1 - -3223.20 7241.22 2796.85 0.37 -0.88 -0.30 1 - -3132.00 7366.75 2545.78 0.37 -0.88 -0.30 1 - -3040.60 7492.38 2294.60 0.37 -0.88 -0.30 1 - -2953.85 7361.29 2781.18 0.37 -0.88 -0.30 1 - -2862.45 7486.92 2530.00 0.37 -0.88 -0.30 1 - -2684.45 7481.12 2765.43 0.37 -0.88 -0.30 1 - -4176.36 73.30 7305.88 9999.00 9999.00 9999.00 3 - -7074.00 -82.10 4557.80 9999.00 9999.00 9999.00 3 - -5771.25 4091.46 -4557.89 9999.00 9999.00 9999.00 3 - -5674.62 4224.46 4557.89 9999.00 9999.00 9999.00 3 - -6047.76 5839.25 -57.22 9999.00 9999.00 9999.00 3 - -2038.05 3585.48 -7325.79 9999.00 9999.00 9999.00 3 - -2002.17 3509.24 7378.32 9999.00 9999.00 9999.00 3 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -1984.55 5132.10 -6376.67 0.29 -0.64 0.71 1 - -2123.90 5295.74 -6174.10 0.29 -0.64 0.71 1 - -2263.33 5459.41 -5971.89 0.29 -0.64 0.71 1 - -2402.92 5622.98 -5769.28 0.29 -0.64 0.71 1 - -2542.37 5786.80 -5566.87 0.29 -0.64 0.71 1 - -2267.41 5077.67 -6311.96 0.29 -0.64 0.71 1 - -2406.98 5241.08 -6109.54 0.29 -0.64 0.71 1 - -2546.43 5404.90 -5907.13 0.29 -0.64 0.71 1 - -2685.77 5568.39 -5704.77 0.29 -0.64 0.71 1 - -2550.48 5023.01 -6247.40 0.29 -0.64 0.71 1 - -2689.84 5186.65 -6044.83 0.29 -0.64 0.71 1 - -2829.18 5350.13 -5842.46 0.29 -0.64 0.71 1 - -2833.33 4968.42 -6182.88 0.29 -0.64 0.71 1 - -2972.68 5132.06 -5980.31 0.29 -0.64 0.71 1 - -1171.72 3684.02 -7482.91 0.21 -0.41 0.89 1 - -1460.51 3651.23 -7430.40 0.21 -0.41 0.89 1 - -1749.17 3618.49 -7378.23 0.21 -0.41 0.89 1 - -2038.05 3585.48 -7325.79 0.21 -0.41 0.89 1 - -2326.93 3552.80 -7273.50 0.21 -0.41 0.89 1 - -1309.71 3436.50 -7565.70 0.21 -0.41 0.89 1 - -1598.37 3403.44 -7513.38 0.21 -0.41 0.89 1 - -1887.25 3370.76 -7461.09 0.21 -0.41 0.89 1 - -2175.82 3337.92 -7408.70 0.21 -0.41 0.89 1 - -1447.57 3188.71 -7648.68 0.21 -0.41 0.89 1 - -1736.36 3155.93 -7596.17 0.21 -0.41 0.89 1 - -2024.93 3123.09 -7543.78 0.21 -0.41 0.89 1 - -1585.34 2941.15 -7731.58 0.21 -0.41 0.89 1 - -1874.13 2908.36 -7679.07 0.21 -0.41 0.89 1 - -2542.31 3849.29 -7047.02 0.29 -0.52 0.80 1 - -2402.86 4087.74 -6942.14 0.29 -0.52 0.80 1 - -2263.36 4326.03 -6837.66 0.29 -0.52 0.80 1 - -2124.00 4564.26 -6732.85 0.29 -0.52 0.80 1 - -1984.64 4802.82 -6628.19 0.29 -0.52 0.80 1 - -2685.72 4039.76 -6872.54 0.29 -0.52 0.80 1 - -2546.36 4277.99 -6767.74 0.29 -0.52 0.80 1 - -2406.86 4516.27 -6663.26 0.29 -0.52 0.80 1 - -2267.59 4754.60 -6558.66 0.29 -0.52 0.80 1 - -2829.22 4230.00 -6698.14 0.29 -0.52 0.80 1 - -2689.95 4468.33 -6593.55 0.29 -0.52 0.80 1 - -2550.45 4706.61 -6489.07 0.29 -0.52 0.80 1 - -2972.81 4420.34 -6523.95 0.29 -0.52 0.80 1 - -2833.32 4658.62 -6419.47 0.29 -0.52 0.80 1 - -3024.65 5930.64 -5167.47 0.41 -0.72 0.55 1 - -2877.09 6133.92 -5012.11 0.41 -0.72 0.55 1 - -3293.45 5844.68 -5080.12 0.41 -0.72 0.55 1 - -3145.64 6047.87 -4925.00 0.41 -0.72 0.55 1 - -2998.08 6251.15 -4769.63 0.41 -0.72 0.55 1 - -3561.99 5758.64 -4993.00 0.41 -0.72 0.55 1 - -3414.44 5961.91 -4837.64 0.41 -0.72 0.55 1 - -3266.63 6165.10 -4682.52 0.41 -0.72 0.55 1 - -3119.07 6368.37 -4527.16 0.41 -0.72 0.55 1 - -3830.79 5672.67 -4905.65 0.41 -0.72 0.55 1 - -3682.98 5875.87 -4750.53 0.41 -0.72 0.55 1 - -3535.43 6079.14 -4595.16 0.41 -0.72 0.55 1 - -3387.85 6282.25 -4440.00 0.41 -0.72 0.55 1 - -3240.06 6485.60 -4284.68 0.41 -0.72 0.55 1 - -3951.78 5789.90 -4663.17 0.41 -0.72 0.55 1 - -3803.97 5993.09 -4508.05 0.41 -0.72 0.55 1 - -3656.42 6196.37 -4352.69 0.41 -0.72 0.55 1 - -3508.84 6399.48 -4197.52 0.41 -0.72 0.55 1 - -4072.77 5907.13 -4420.69 0.41 -0.72 0.55 1 - -3924.96 6110.32 -4265.57 0.41 -0.72 0.55 1 - -3777.41 6313.60 -4110.21 0.41 -0.72 0.55 1 - -2893.38 5769.53 -5400.18 0.39 -0.65 0.65 1 - -3164.91 5688.74 -5316.89 0.39 -0.65 0.65 1 - -3436.44 5607.94 -5233.60 0.39 -0.65 0.65 1 - -3707.88 5526.97 -5150.16 0.39 -0.65 0.65 1 - -3030.52 5548.04 -5539.02 0.39 -0.65 0.65 1 - -3302.04 5467.25 -5455.73 0.39 -0.65 0.65 1 - -3573.57 5386.46 -5372.44 0.39 -0.65 0.65 1 - -3167.97 5326.66 -5677.97 0.39 -0.65 0.65 1 - -3439.50 5245.86 -5594.68 0.39 -0.65 0.65 1 - -3305.10 5105.17 -5816.81 0.39 -0.65 0.65 1 - -1424.05 2395.32 -7911.51 0.20 -0.28 0.94 1 - -1587.17 2619.61 -7810.12 0.20 -0.28 0.94 1 - -1549.64 2132.87 -7962.04 0.20 -0.28 0.94 1 - -1712.57 2357.27 -7860.95 0.20 -0.28 0.94 1 - -1875.69 2581.56 -7759.56 0.20 -0.28 0.94 1 - -1837.85 2094.66 -7911.57 0.20 -0.28 0.94 1 - -2000.96 2318.95 -7810.18 0.20 -0.28 0.94 1 - -3636.89 4570.47 -6020.06 0.40 -0.56 0.73 1 - -3510.58 4396.84 -6222.77 0.40 -0.56 0.73 1 - -3492.87 4807.54 -5918.78 0.40 -0.56 0.73 1 - -3366.89 4634.01 -6121.60 0.40 -0.56 0.73 1 - -3240.58 4460.38 -6324.31 0.40 -0.56 0.73 1 - -3223.13 4871.16 -6020.08 0.40 -0.56 0.73 1 - -3096.82 4697.53 -6222.79 0.40 -0.56 0.73 1 - -3778.59 3123.71 -6840.16 0.40 -0.35 0.84 1 - -3631.02 2920.60 -6995.33 0.40 -0.35 0.84 1 - -3483.22 2717.42 -7150.60 0.40 -0.35 0.84 1 - -2014.87 986.08 -8111.06 0.19 -0.16 0.97 1 - -1730.17 1048.75 -8158.10 0.19 -0.16 0.97 1 - -1445.47 1111.42 -8205.13 0.19 -0.16 0.97 1 - -1160.72 1174.07 -8251.93 0.19 -0.16 0.97 1 - -1918.70 1263.95 -8084.97 0.19 -0.16 0.97 1 - -1634.00 1326.62 -8132.01 0.19 -0.16 0.97 1 - -1349.30 1389.29 -8179.05 0.19 -0.16 0.97 1 - -1822.34 1541.92 -8059.18 0.19 -0.16 0.97 1 - -1537.65 1604.58 -8106.22 0.19 -0.16 0.97 1 - -1726.17 1819.78 -8033.09 0.19 -0.16 0.97 1 - -1828.68 749.37 -8192.58 0.15 -0.05 0.99 1 - -1919.81 468.44 -8192.61 0.15 -0.05 0.99 1 - -1542.69 811.68 -8232.62 0.15 -0.05 0.99 1 - -1634.13 530.90 -8232.57 0.15 -0.05 0.99 1 - -1725.26 249.97 -8232.61 0.15 -0.05 0.99 1 - -1257.01 874.15 -8272.58 0.15 -0.05 0.99 1 - -1348.15 593.21 -8272.62 0.15 -0.05 0.99 1 - -1439.59 312.43 -8272.57 0.15 -0.05 0.99 1 - -1530.72 31.50 -8272.61 0.15 -0.05 0.99 1 - -971.03 936.46 -8312.63 0.15 -0.05 0.99 1 - -1062.47 655.68 -8312.58 0.15 -0.05 0.99 1 - -1153.60 374.74 -8312.62 0.15 -0.05 0.99 1 - -1244.81 94.04 -8312.61 0.15 -0.05 0.99 1 - -1336.17 -186.97 -8312.60 0.15 -0.05 0.99 1 - -776.48 717.99 -8352.63 0.15 -0.05 0.99 1 - -867.92 437.21 -8352.58 0.15 -0.05 0.99 1 - -959.05 156.27 -8352.61 0.15 -0.05 0.99 1 - -1050.26 -124.43 -8352.61 0.15 -0.05 0.99 1 - -581.94 499.52 -8392.62 0.15 -0.05 0.99 1 - -673.38 218.74 -8392.57 0.15 -0.05 0.99 1 - -764.51 -62.20 -8392.61 0.15 -0.05 0.99 1 - -3707.77 7078.10 -2640.54 0.39 -0.87 0.29 1 - -3436.46 7189.04 -2675.31 0.39 -0.87 0.29 1 - -3164.94 7299.67 -2710.32 0.39 -0.87 0.29 1 - -2893.42 7410.30 -2745.32 0.39 -0.87 0.29 1 - -3573.73 7214.07 -2415.20 0.39 -0.87 0.29 1 - -3302.21 7324.70 -2450.21 0.39 -0.87 0.29 1 - -3030.69 7435.33 -2485.21 0.39 -0.87 0.29 1 - -3439.48 7350.08 -2189.99 0.39 -0.87 0.29 1 - -3167.95 7460.71 -2224.99 0.39 -0.87 0.29 1 - -3305.22 7485.75 -1964.88 0.39 -0.87 0.29 1 - -2877.04 7226.23 -3244.69 0.41 -0.82 0.40 1 - -3024.83 7274.14 -2993.51 0.41 -0.82 0.40 1 - -2998.20 7061.68 -3458.04 0.41 -0.82 0.40 1 - -3145.69 7109.76 -3206.77 0.41 -0.82 0.40 1 - -3293.48 7157.67 -2955.59 0.41 -0.82 0.40 1 - -3119.06 6897.30 -3671.30 0.41 -0.82 0.40 1 - -3266.85 6945.21 -3420.12 0.41 -0.82 0.40 1 - -3414.34 6993.28 -3168.85 0.41 -0.82 0.40 1 - -3562.13 7041.19 -2917.67 0.41 -0.82 0.40 1 - -3240.23 6732.75 -3884.65 0.41 -0.82 0.40 1 - -3387.71 6780.82 -3633.38 0.41 -0.82 0.40 1 - -3535.50 6828.73 -3382.20 0.41 -0.82 0.40 1 - -3683.07 6876.68 -3131.14 0.41 -0.82 0.40 1 - -3830.78 6924.72 -2879.75 0.41 -0.82 0.40 1 - -3508.88 6616.28 -3846.73 0.41 -0.82 0.40 1 - -3656.36 6664.35 -3595.46 0.41 -0.82 0.40 1 - -3804.15 6712.26 -3344.28 0.41 -0.82 0.40 1 - -3951.72 6760.21 -3093.22 0.41 -0.82 0.40 1 - -3777.53 6499.80 -3808.81 0.41 -0.82 0.40 1 - -3925.01 6547.87 -3557.54 0.41 -0.82 0.40 1 - -4072.80 6595.79 -3306.36 0.41 -0.82 0.40 1 - -4593.05 6858.03 -1640.88 0.50 -0.84 0.22 1 - -4432.30 6887.85 -1886.78 0.50 -0.84 0.22 1 - -4271.56 6917.68 -2132.67 0.50 -0.84 0.22 1 - -4110.67 6947.30 -2378.51 0.50 -0.84 0.22 1 - -4340.02 7009.93 -1634.22 0.50 -0.84 0.22 1 - -4179.28 7039.75 -1880.12 0.50 -0.84 0.22 1 - -4018.53 7069.58 -2126.01 0.50 -0.84 0.22 1 - -4086.99 7162.08 -1627.82 0.50 -0.84 0.22 1 - -3926.25 7191.90 -1873.72 0.50 -0.84 0.22 1 - -3833.97 7313.98 -1621.16 0.50 -0.84 0.22 1 - -3113.35 5668.03 5396.23 0.41 -0.70 -0.59 1 - -3327.72 5708.85 5197.20 0.41 -0.70 -0.59 1 - -3542.00 5749.90 4998.42 0.41 -0.70 -0.59 1 - -3756.31 5790.89 4799.21 0.41 -0.70 -0.59 1 - -3970.80 5831.88 4600.30 0.41 -0.70 -0.59 1 - -3079.50 5867.91 5181.60 0.41 -0.70 -0.59 1 - -3293.60 5908.95 4982.52 0.41 -0.70 -0.59 1 - -3508.10 5949.95 4783.61 0.41 -0.70 -0.59 1 - -3722.25 5990.82 4584.71 0.41 -0.70 -0.59 1 - -3045.39 6068.01 4966.93 0.41 -0.70 -0.59 1 - -3259.75 6108.83 4767.90 0.41 -0.70 -0.59 1 - -3473.91 6149.70 4569.00 0.41 -0.70 -0.59 1 - -3011.33 6267.95 4752.44 0.41 -0.70 -0.59 1 - -3225.70 6308.76 4553.41 0.41 -0.70 -0.59 1 - -2432.29 2594.22 7627.40 0.23 -0.32 -0.92 1 - -2193.51 2767.70 7627.40 0.23 -0.32 -0.92 1 - -1954.49 2941.18 7627.44 0.23 -0.32 -0.92 1 - -1715.71 3114.91 7627.39 0.23 -0.32 -0.92 1 - -2174.55 2490.63 7727.54 0.23 -0.32 -0.92 1 - -1935.77 2664.11 7727.54 0.23 -0.32 -0.92 1 - -1696.75 2837.59 7727.57 0.23 -0.32 -0.92 1 - -1916.84 2387.08 7827.92 0.23 -0.32 -0.92 1 - -1677.82 2560.57 7827.96 0.23 -0.32 -0.92 1 - -1659.10 2283.49 7928.06 0.23 -0.32 -0.92 1 - -1749.90 3413.23 7498.41 0.28 -0.38 -0.88 1 - -1988.93 3239.75 7498.37 0.28 -0.38 -0.88 1 - -2227.70 3066.27 7498.37 0.28 -0.38 -0.88 1 - -2466.73 2892.54 7498.39 0.28 -0.38 -0.88 1 - -2705.50 2719.06 7498.39 0.28 -0.38 -0.88 1 - -2002.17 3509.24 7378.32 0.28 -0.38 -0.88 1 - -2241.20 3335.76 7378.29 0.28 -0.38 -0.88 1 - -3448.09 3740.78 6614.57 0.36 -0.49 -0.79 1 - -3447.93 3992.08 6459.24 0.36 -0.49 -0.79 1 - -3448.03 4243.13 6303.92 0.36 -0.49 -0.79 1 - -3209.19 3663.16 6769.64 0.36 -0.49 -0.79 1 - -3209.06 3914.51 6614.56 0.36 -0.49 -0.79 1 - -3209.16 4165.56 6459.24 0.36 -0.49 -0.79 1 - -3209.00 4416.86 6303.91 0.36 -0.49 -0.79 1 - -2970.32 3585.59 6924.95 0.36 -0.49 -0.79 1 - -2970.16 3836.89 6769.62 0.36 -0.49 -0.79 1 - -2970.29 4087.99 6614.55 0.36 -0.49 -0.79 1 - -2970.13 4339.04 6459.27 0.36 -0.49 -0.79 1 - -2970.22 4590.34 6303.91 0.36 -0.49 -0.79 1 - -2731.30 3759.07 6924.99 0.36 -0.49 -0.79 1 - -2731.39 4010.37 6769.62 0.36 -0.49 -0.79 1 - -2731.26 4261.47 6614.59 0.36 -0.49 -0.79 1 - -2731.35 4512.77 6459.22 0.36 -0.49 -0.79 1 - -2492.52 3932.80 6924.94 0.36 -0.49 -0.79 1 - -2492.36 4183.86 6769.66 0.36 -0.49 -0.79 1 - -2492.49 4435.20 6614.54 0.36 -0.49 -0.79 1 - -4144.35 4699.50 5628.27 0.43 -0.59 -0.68 1 - -3905.37 4873.04 5628.40 0.43 -0.59 -0.68 1 - -3666.59 5046.52 5628.40 0.43 -0.59 -0.68 1 - -3427.55 5220.23 5628.35 0.43 -0.59 -0.68 1 - -3188.77 5393.71 5628.35 0.43 -0.59 -0.68 1 - -3921.87 4644.49 5814.70 0.43 -0.59 -0.68 1 - -3682.89 4818.03 5814.83 0.43 -0.59 -0.68 1 - -3444.05 4991.68 5814.65 0.43 -0.59 -0.68 1 - -3205.07 5165.23 5814.78 0.43 -0.59 -0.68 1 - -3699.39 4589.49 6001.12 0.43 -0.59 -0.68 1 - -3460.55 4763.14 6000.94 0.43 -0.59 -0.68 1 - -3221.57 4936.68 6001.07 0.43 -0.59 -0.68 1 - -3477.19 4534.77 6187.36 0.43 -0.59 -0.68 1 - -3238.20 4708.31 6187.49 0.43 -0.59 -0.68 1 - -3421.83 5463.27 5409.89 0.46 -0.63 -0.62 1 - -3660.60 5289.79 5409.89 0.46 -0.63 -0.62 1 - -3899.58 5116.25 5409.76 0.46 -0.63 -0.62 1 - -4138.42 4942.60 5409.95 0.46 -0.63 -0.62 1 - -3634.41 5504.72 5209.20 0.46 -0.63 -0.62 1 - -3873.19 5331.24 5209.20 0.46 -0.63 -0.62 1 - -4112.17 5157.70 5209.07 0.46 -0.63 -0.62 1 - -3847.13 5546.35 5008.63 0.46 -0.63 -0.62 1 - -4086.11 5372.81 5008.50 0.46 -0.63 -0.62 1 - -4059.72 5587.80 4807.94 0.46 -0.63 -0.62 1 - -4319.32 5578.65 4600.32 0.54 -0.61 -0.59 1 - -4346.66 5361.92 4799.28 0.54 -0.61 -0.59 1 - -4373.87 5145.59 4998.31 0.54 -0.61 -0.59 1 - -4401.15 4929.02 5197.09 0.54 -0.61 -0.59 1 - -4428.63 4712.46 5396.18 0.54 -0.61 -0.59 1 - -4547.30 5391.39 4584.72 0.54 -0.61 -0.59 1 - -4574.58 5174.82 4783.50 0.54 -0.61 -0.59 1 - -4601.78 4958.49 4982.53 0.54 -0.61 -0.59 1 - -4629.20 4742.10 5181.44 0.54 -0.61 -0.59 1 - -4775.21 5204.29 4568.94 0.54 -0.61 -0.59 1 - -4802.63 4987.90 4767.84 0.54 -0.61 -0.59 1 - -4829.83 4771.57 4966.88 0.54 -0.61 -0.59 1 - -5003.26 5017.37 4553.29 0.54 -0.61 -0.59 1 - -5030.46 4801.04 4752.32 0.54 -0.61 -0.59 1 - -4386.04 3265.06 6406.28 0.50 -0.45 -0.73 1 - -4385.93 3516.35 6251.10 0.50 -0.45 -0.73 1 - -4385.98 4269.82 5785.37 0.50 -0.45 -0.73 1 - -4165.10 3458.52 6438.45 0.50 -0.45 -0.73 1 - -4165.00 3709.82 6283.27 0.50 -0.45 -0.73 1 - -4165.14 3960.93 6127.90 0.50 -0.45 -0.73 1 - -4165.04 4212.23 5972.71 0.50 -0.45 -0.73 1 - -3944.16 3651.99 6470.62 0.50 -0.45 -0.73 1 - -3944.31 3903.11 6315.25 0.50 -0.45 -0.73 1 - -3944.21 4154.40 6160.06 0.50 -0.45 -0.73 1 - -3723.66 3845.37 6502.76 0.50 -0.45 -0.73 1 - -3723.55 4096.67 6347.57 0.50 -0.45 -0.73 1 - -3188.81 2621.93 7341.35 0.43 -0.35 -0.83 1 - -3427.71 2699.71 7186.08 0.43 -0.35 -0.83 1 - -3666.49 2777.29 7030.91 0.43 -0.35 -0.83 1 - -3905.57 2854.91 6875.56 0.43 -0.35 -0.83 1 - -4144.34 2932.49 6720.40 0.43 -0.35 -0.83 1 - -3205.25 2890.90 7220.26 0.43 -0.35 -0.83 1 - -3444.15 2968.68 7065.00 0.43 -0.35 -0.83 1 - -3683.11 3046.10 6909.74 0.43 -0.35 -0.83 1 - -3922.01 3123.88 6754.48 0.43 -0.35 -0.83 1 - -3221.69 3159.88 7099.18 0.43 -0.35 -0.83 1 - -3460.65 3237.30 6943.93 0.43 -0.35 -0.83 1 - -3699.55 3315.08 6788.66 0.43 -0.35 -0.83 1 - -3238.32 3428.52 6978.32 0.43 -0.35 -0.83 1 - -3477.22 3506.30 6823.05 0.43 -0.35 -0.83 1 - -5237.02 3997.37 5214.04 0.61 -0.48 -0.63 1 - -5445.84 3793.84 5168.59 0.61 -0.48 -0.63 1 - -5015.83 4440.95 5087.73 0.61 -0.48 -0.63 1 - -5224.75 4237.19 5042.29 0.61 -0.48 -0.63 1 - -5433.58 4033.67 4996.84 0.61 -0.48 -0.63 1 - -5212.56 4477.34 4870.68 0.61 -0.48 -0.63 1 - -5421.49 4273.59 4825.24 0.61 -0.48 -0.63 1 - -4633.35 3560.53 6041.77 0.58 -0.43 -0.70 1 - -4633.20 3309.42 6197.14 0.58 -0.43 -0.70 1 - -4842.14 3859.76 5683.54 0.58 -0.43 -0.70 1 - -4842.13 3608.69 5838.71 0.58 -0.43 -0.70 1 - -4842.24 3357.40 5993.90 0.58 -0.43 -0.70 1 - -5051.20 3656.72 5635.83 0.58 -0.43 -0.70 1 - -5051.31 3405.43 5791.01 0.58 -0.43 -0.70 1 - -5260.09 3453.59 5587.95 0.58 -0.43 -0.70 1 - -5732.04 3503.22 5068.77 0.70 -0.45 -0.55 1 - -5904.22 3529.33 4830.31 0.70 -0.45 -0.55 1 - -6076.40 3555.44 4591.85 0.70 -0.45 -0.55 1 - -1560.46 1611.53 8111.06 0.21 -0.14 -0.97 1 - -1532.08 1321.40 8158.10 0.21 -0.14 -0.97 1 - -1503.70 1031.28 8205.13 0.21 -0.14 -0.97 1 - -1475.29 741.10 8251.93 0.21 -0.14 -0.97 1 - -1795.00 1434.20 8084.97 0.21 -0.14 -0.97 1 - -1766.63 1144.08 8132.01 0.21 -0.14 -0.97 1 - -1738.25 853.95 8179.05 0.21 -0.14 -0.97 1 - -2029.59 1256.68 8059.18 0.21 -0.14 -0.97 1 - -2001.21 966.55 8106.22 0.21 -0.14 -0.97 1 - -2264.14 1079.35 8033.09 0.21 -0.14 -0.97 1 - -4138.48 2628.36 6840.17 0.46 -0.27 -0.84 1 - -3899.70 2550.78 6995.34 0.46 -0.27 -0.84 1 - -3660.80 2473.00 7150.61 0.46 -0.27 -0.84 1 - -3421.85 2395.58 7305.86 0.46 -0.27 -0.84 1 - -4112.20 2352.71 6942.72 0.46 -0.27 -0.84 1 - -3873.43 2275.13 7097.88 0.46 -0.27 -0.84 1 - -3634.53 2197.35 7253.15 0.46 -0.27 -0.84 1 - -4086.06 2077.09 7045.47 0.46 -0.27 -0.84 1 - -3847.16 1999.31 7200.74 0.46 -0.27 -0.84 1 - -4059.78 1801.44 7148.01 0.46 -0.27 -0.84 1 - -3970.86 1506.59 7273.47 0.41 -0.21 -0.89 1 - -3756.29 1702.87 7325.80 0.41 -0.21 -0.89 1 - -3327.74 2095.34 7430.41 0.41 -0.21 -0.89 1 - -3113.30 2291.64 7482.95 0.41 -0.21 -0.89 1 - -3722.31 1421.56 7408.66 0.41 -0.21 -0.89 1 - -3507.91 1617.68 7460.91 0.41 -0.21 -0.89 1 - -3293.77 1814.02 7513.27 0.41 -0.21 -0.89 1 - -3079.50 2010.17 7565.73 0.41 -0.21 -0.89 1 - -3473.94 1336.36 7543.77 0.41 -0.21 -0.89 1 - -3259.67 1532.51 7596.23 0.41 -0.21 -0.89 1 - -3045.53 1728.86 7648.59 0.41 -0.21 -0.89 1 - -3225.70 1251.20 7679.09 0.41 -0.21 -0.89 1 - -3011.56 1447.54 7731.45 0.41 -0.21 -0.89 1 - -6248.44 2292.22 5149.98 0.70 -0.30 -0.65 1 - -6076.40 2516.99 5233.65 0.70 -0.30 -0.65 1 - -5904.22 2741.95 5316.94 0.70 -0.30 -0.65 1 - -2718.14 614.17 7911.51 0.33 -0.11 -0.94 1 - -2981.87 699.99 7810.12 0.33 -0.11 -0.94 1 - -2507.35 814.70 7962.04 0.33 -0.11 -0.94 1 - -2771.11 900.32 7860.95 0.33 -0.11 -0.94 1 - -3034.84 986.15 7759.56 0.33 -0.11 -0.94 1 - -2560.07 1100.61 7911.57 0.33 -0.11 -0.94 1 - -2823.80 1186.43 7810.18 0.33 -0.11 -0.94 1 - -6381.25 968.88 5400.20 0.74 -0.17 -0.65 1 - -6388.32 1252.09 5316.91 0.74 -0.17 -0.65 1 - -6395.39 1535.30 5233.62 0.74 -0.17 -0.65 1 - -3865.79 -24.05 7482.91 0.46 -0.07 -0.89 1 - -3923.85 260.74 7430.41 0.46 -0.07 -0.89 1 - -3981.92 545.38 7378.23 0.46 -0.07 -0.89 1 - -4039.79 830.32 7325.80 0.46 -0.07 -0.89 1 - -4097.97 1115.16 7273.51 0.46 -0.07 -0.89 1 - -3673.04 183.68 7565.70 0.46 -0.07 -0.89 1 - -3730.79 468.42 7513.38 0.46 -0.07 -0.89 1 - -3788.97 753.26 7461.09 0.46 -0.07 -0.89 1 - -3846.92 1037.85 7408.70 0.46 -0.07 -0.89 1 - -3479.97 391.36 7648.68 0.46 -0.07 -0.89 1 - -3538.03 676.15 7596.17 0.46 -0.07 -0.89 1 - -3595.98 960.74 7543.78 0.46 -0.07 -0.89 1 - -3287.10 598.89 7731.58 0.46 -0.07 -0.89 1 - -3345.16 883.68 7679.08 0.46 -0.07 -0.89 1 - -4176.36 73.30 7305.88 0.53 -0.05 -0.85 1 - -4415.14 150.88 7150.72 0.53 -0.05 -0.85 1 - -4654.03 228.65 6995.44 0.53 -0.05 -0.85 1 - -2209.69 -386.47 8111.06 0.25 -0.01 -0.97 1 - -1908.05 330.96 8179.09 0.25 -0.01 -0.97 1 - -2101.55 112.93 8132.05 0.25 -0.01 -0.97 1 - -2295.04 -105.10 8085.01 0.25 -0.01 -0.97 1 - -2187.18 394.35 8106.21 0.25 -0.01 -0.97 1 - -2380.68 176.32 8059.17 0.25 -0.01 -0.97 1 - -2466.02 457.69 8033.13 0.25 -0.01 -0.97 1 - -7160.05 775.53 4353.36 0.83 -0.05 -0.55 1 - -7005.77 695.18 4591.82 0.83 -0.05 -0.55 1 - -6851.13 615.09 4830.28 0.83 -0.05 -0.55 1 - -4069.56 7368.35 290.55 0.46 -0.88 -0.10 1 - -3922.01 7416.30 541.87 0.46 -0.88 -0.10 1 - -3774.44 7464.25 792.93 0.46 -0.88 -0.10 1 - -3626.64 7512.27 1044.27 0.46 -0.88 -0.10 1 - -3479.07 7560.22 1295.33 0.46 -0.88 -0.10 1 - -4182.79 7277.85 547.97 0.46 -0.88 -0.10 1 - -4035.24 7325.80 799.29 0.46 -0.88 -0.10 1 - -3887.42 7373.82 1050.37 0.46 -0.88 -0.10 1 - -3739.87 7421.77 1301.69 0.46 -0.88 -0.10 1 - -4296.02 7187.35 805.40 0.46 -0.88 -0.10 1 - -4148.20 7235.36 1056.48 0.46 -0.88 -0.10 1 - -4000.65 7283.31 1307.80 0.46 -0.88 -0.10 1 - -4409.05 7097.16 1062.58 0.46 -0.88 -0.10 1 - -4261.50 7145.11 1313.90 0.46 -0.88 -0.10 1 - -4267.66 7256.78 -254.90 0.52 -0.85 0.10 1 - -4380.23 7157.49 -509.26 0.52 -0.85 0.10 1 - -4492.80 7058.55 -763.54 0.52 -0.85 0.10 1 - -4605.22 6959.30 -1018.10 0.52 -0.85 0.10 1 - -4717.94 6860.21 -1272.52 0.52 -0.85 0.10 1 - -4128.48 7311.69 -509.41 0.52 -0.85 0.10 1 - -4240.76 7212.59 -763.83 0.52 -0.85 0.10 1 - -4353.48 7113.50 -1018.25 0.52 -0.85 0.10 1 - -4465.91 7014.35 -1272.46 0.52 -0.85 0.10 1 - -3989.02 7366.79 -763.97 0.52 -0.85 0.10 1 - -4101.59 7267.50 -1018.34 0.52 -0.85 0.10 1 - -4214.02 7168.35 -1272.55 0.52 -0.85 0.10 1 - -3849.70 7421.84 -1018.34 0.52 -0.85 0.10 1 - -3962.27 7322.55 -1272.70 0.52 -0.85 0.10 1 - -4579.14 7056.17 -255.16 0.59 -0.81 0.06 1 - -4817.92 6882.69 -255.16 0.59 -0.81 0.06 1 - -5056.84 6709.06 -255.30 0.59 -0.81 0.06 1 - -5295.76 6535.53 -255.10 0.59 -0.81 0.06 1 - -4689.37 6956.72 -510.40 0.59 -0.81 0.06 1 - -4928.14 6783.24 -510.40 0.59 -0.81 0.06 1 - -5167.06 6609.61 -510.55 0.59 -0.81 0.06 1 - -4799.73 6857.48 -765.71 0.59 -0.81 0.06 1 - -5038.66 6683.85 -765.85 0.59 -0.81 0.06 1 - -4909.96 6758.03 -1020.95 0.59 -0.81 0.06 1 - -5979.55 5915.91 265.07 0.75 -0.66 -0.06 1 - -6070.75 5790.38 516.14 0.75 -0.66 -0.06 1 - -6162.09 5664.65 767.30 0.75 -0.66 -0.06 1 - -7200.45 4235.47 -1018.60 0.86 -0.50 0.06 1 - -7142.66 4364.86 -759.32 0.86 -0.50 0.06 1 - -7085.14 4494.33 -500.27 0.86 -0.50 0.06 1 - -8125.85 2174.55 255.16 0.95 -0.31 -0.06 1 - -8034.64 2455.24 255.16 0.95 -0.31 -0.06 1 - -7943.34 2736.13 255.30 0.95 -0.31 -0.06 1 - -8314.83 805.67 -1018.61 0.99 -0.10 0.06 1 - -8314.83 960.84 -767.55 0.99 -0.10 0.06 1 - -8314.82 1115.99 -516.23 0.99 -0.10 0.06 1 - -3421.95 7481.71 1803.52 0.45 -0.85 -0.27 1 - -3513.36 7356.08 2054.70 0.45 -0.85 -0.27 1 - -3604.56 7230.55 2305.76 0.45 -0.85 -0.27 1 - -3695.82 7104.87 2557.15 0.45 -0.85 -0.27 1 - -3787.02 6979.34 2808.21 0.45 -0.85 -0.27 1 - -3682.48 7342.72 1812.97 0.45 -0.85 -0.27 1 - -3773.88 7217.09 2064.15 0.45 -0.85 -0.27 1 - -3864.94 7091.52 2315.42 0.45 -0.85 -0.27 1 - -3956.34 6965.89 2566.60 0.45 -0.85 -0.27 1 - -3943.00 7203.74 1822.42 0.45 -0.85 -0.27 1 - -4034.06 7078.16 2073.69 0.45 -0.85 -0.27 1 - -4125.47 6952.54 2324.87 0.45 -0.85 -0.27 1 - -4203.24 7065.04 1832.05 0.45 -0.85 -0.27 1 - -4294.64 6939.41 2083.23 0.45 -0.85 -0.27 1 - -4098.05 6006.87 4250.21 0.46 -0.76 -0.46 1 - -4039.82 6181.10 4018.78 0.46 -0.76 -0.46 1 - -3981.98 6355.26 3787.53 0.46 -0.76 -0.46 1 - -3923.81 6529.31 3556.27 0.46 -0.76 -0.46 1 - -3865.70 6703.70 3324.98 0.46 -0.76 -0.46 1 - -3846.98 6162.37 4241.54 0.46 -0.76 -0.46 1 - -3788.81 6336.41 4010.27 0.46 -0.76 -0.46 1 - -3730.97 6510.57 3779.03 0.46 -0.76 -0.46 1 - -3672.92 6684.79 3547.91 0.46 -0.76 -0.46 1 - -3595.97 6317.67 4233.03 0.46 -0.76 -0.46 1 - -3537.92 6491.89 4001.91 0.46 -0.76 -0.46 1 - -3480.08 6666.05 3770.67 0.46 -0.76 -0.46 1 - -3345.08 6473.15 4224.67 0.46 -0.76 -0.46 1 - -3287.24 6647.31 3993.42 0.46 -0.76 -0.46 1 - -4893.02 5981.12 3332.83 0.53 -0.73 -0.42 1 - -4654.24 6154.61 3332.83 0.53 -0.73 -0.42 1 - -4415.25 6328.14 3332.95 0.53 -0.73 -0.42 1 - -4176.42 6501.80 3332.78 0.53 -0.73 -0.42 1 - -4709.73 5980.02 3564.34 0.53 -0.73 -0.42 1 - -4470.96 6153.50 3564.34 0.53 -0.73 -0.42 1 - -4231.97 6327.03 3564.46 0.53 -0.73 -0.42 1 - -4526.57 5979.08 3795.99 0.53 -0.73 -0.42 1 - -4287.58 6152.61 3796.11 0.53 -0.73 -0.42 1 - -4343.29 5977.97 4027.50 0.53 -0.73 -0.42 1 - -4120.94 6676.70 3062.35 0.55 -0.76 -0.35 1 - -4359.93 6503.16 3062.23 0.55 -0.76 -0.35 1 - -4598.71 6329.68 3062.23 0.55 -0.76 -0.35 1 - -4837.75 6155.97 3062.28 0.55 -0.76 -0.35 1 - -5076.52 5982.48 3062.28 0.55 -0.76 -0.35 1 - -4292.34 6661.39 2822.21 0.55 -0.76 -0.35 1 - -4531.33 6487.86 2822.09 0.55 -0.76 -0.35 1 - -4770.16 6314.19 2822.26 0.55 -0.76 -0.35 1 - -5009.15 6140.66 2822.14 0.55 -0.76 -0.35 1 - -4463.74 6646.08 2582.07 0.55 -0.76 -0.35 1 - -4702.56 6472.42 2582.24 0.55 -0.76 -0.35 1 - -4941.55 6298.88 2582.12 0.55 -0.76 -0.35 1 - -4635.09 6630.81 2342.37 0.55 -0.76 -0.35 1 - -4874.08 6457.28 2342.25 0.55 -0.76 -0.35 1 - -5180.98 5748.14 3324.93 0.58 -0.67 -0.46 1 - -4997.25 5749.49 3556.17 0.58 -0.67 -0.46 1 - -4813.85 5750.96 3787.44 0.58 -0.67 -0.46 1 - -4630.17 5752.12 4018.85 0.58 -0.67 -0.46 1 - -4446.56 5753.65 4250.23 0.58 -0.67 -0.46 1 - -5222.62 5558.99 3547.75 0.58 -0.67 -0.46 1 - -5039.15 5560.11 3779.04 0.58 -0.67 -0.46 1 - -4855.54 5561.63 4010.43 0.58 -0.67 -0.46 1 - -4672.03 5562.93 4241.54 0.58 -0.67 -0.46 1 - -5264.53 5369.61 3770.62 0.58 -0.67 -0.46 1 - -5080.79 5370.96 4001.86 0.58 -0.67 -0.46 1 - -4897.27 5372.26 4232.98 0.58 -0.67 -0.46 1 - -5306.38 5180.42 3993.31 0.58 -0.67 -0.46 1 - -5122.65 5181.77 4224.56 0.58 -0.67 -0.46 1 - -6136.48 5378.39 2059.07 0.72 -0.63 -0.30 1 - -5988.91 5426.34 2310.13 0.72 -0.63 -0.30 1 - -5841.29 5474.19 2561.43 0.72 -0.63 -0.30 1 - -6402.43 3793.12 3929.47 0.74 -0.50 -0.45 1 - -6395.36 3994.50 3713.79 0.74 -0.50 -0.45 1 - -6388.29 4195.65 3497.75 0.74 -0.50 -0.45 1 - -6696.45 4294.37 2745.39 0.83 -0.47 -0.29 1 - -6851.10 4045.27 2710.37 0.83 -0.47 -0.29 1 - -7005.74 3796.17 2675.36 0.83 -0.47 -0.29 1 - -7409.21 3204.01 2378.56 0.90 -0.39 -0.22 1 - -7521.86 3085.83 2132.67 0.90 -0.39 -0.22 1 - -7634.37 2967.23 1886.77 0.90 -0.39 -0.22 1 - -7941.71 2249.00 1640.88 0.95 -0.21 -0.22 1 - -7920.40 2086.91 1886.78 0.95 -0.21 -0.22 1 - -7899.09 1924.82 2132.67 0.95 -0.21 -0.22 1 - -7877.44 1339.04 2640.54 0.95 -0.10 -0.29 1 - -7899.11 1046.74 2675.31 0.95 -0.10 -0.29 1 - -7920.42 754.32 2710.32 0.95 -0.10 -0.29 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -4110.91 5234.29 -5149.97 0.50 -0.58 0.65 1 - -4271.52 5001.21 -5233.63 0.50 -0.58 0.65 1 - -4432.25 4767.94 -5316.93 0.50 -0.58 0.65 1 - -4592.99 4534.67 -5400.22 0.50 -0.58 0.65 1 - -4018.48 5063.32 -5372.35 0.50 -0.58 0.65 1 - -4179.22 4830.06 -5455.65 0.50 -0.58 0.65 1 - -4339.96 4596.79 -5538.94 0.50 -0.58 0.65 1 - -3926.24 4892.19 -5594.72 0.50 -0.58 0.65 1 - -4086.98 4658.92 -5678.01 0.50 -0.58 0.65 1 - -3833.94 4721.04 -5816.73 0.50 -0.58 0.65 1 - -4944.55 4631.67 -5012.26 0.56 -0.61 0.55 1 - -4705.59 4709.43 -5167.45 0.56 -0.61 0.55 1 - -5018.61 4783.14 -4769.68 0.56 -0.61 0.55 1 - -4779.74 4860.60 -4925.05 0.56 -0.61 0.55 1 - -4540.78 4938.35 -5080.23 0.56 -0.61 0.55 1 - -5092.76 4934.31 -4527.28 0.56 -0.61 0.55 1 - -4853.79 5012.06 -4682.46 0.56 -0.61 0.55 1 - -4614.93 5089.52 -4837.83 0.56 -0.61 0.55 1 - -4375.96 5167.27 -4993.01 0.56 -0.61 0.55 1 - -5166.81 5085.77 -4284.69 0.56 -0.61 0.55 1 - -4927.94 5163.23 -4440.06 0.56 -0.61 0.55 1 - -4688.98 5240.98 -4595.24 0.56 -0.61 0.55 1 - -4450.21 5318.57 -4750.41 0.56 -0.61 0.55 1 - -4211.15 5396.20 -4905.80 0.56 -0.61 0.55 1 - -5002.00 5314.69 -4197.47 0.56 -0.61 0.55 1 - -4763.13 5392.15 -4352.84 0.56 -0.61 0.55 1 - -4524.17 5469.91 -4508.03 0.56 -0.61 0.55 1 - -4285.39 5547.49 -4663.19 0.56 -0.61 0.55 1 - -4837.18 5543.62 -4110.26 0.56 -0.61 0.55 1 - -4598.31 5621.07 -4265.63 0.56 -0.61 0.55 1 - -4359.35 5698.83 -4420.81 0.56 -0.61 0.55 1 - -3954.47 3371.56 -6628.24 0.41 -0.43 0.80 1 - -3684.61 3430.40 -6732.86 0.41 -0.43 0.80 1 - -3415.04 3489.42 -6837.60 0.41 -0.43 0.80 1 - -3145.09 3548.48 -6942.13 0.41 -0.43 0.80 1 - -2875.30 3607.44 -7046.97 0.41 -0.43 0.80 1 - -3821.29 3625.70 -6558.71 0.41 -0.43 0.80 1 - -3551.56 3684.82 -6663.14 0.41 -0.43 0.80 1 - -3281.77 3743.78 -6767.98 0.41 -0.43 0.80 1 - -3012.14 3802.68 -6872.50 0.41 -0.43 0.80 1 - -3688.25 3880.12 -6488.99 0.41 -0.43 0.80 1 - -3418.39 3938.96 -6593.61 0.41 -0.43 0.80 1 - -3148.75 3997.86 -6698.13 0.41 -0.43 0.80 1 - -3555.30 4134.32 -6419.36 0.41 -0.43 0.80 1 - -3285.44 4193.16 -6523.98 0.41 -0.43 0.80 1 - -2659.92 3310.95 -7273.46 0.33 -0.33 0.89 1 - -2780.28 3046.22 -7325.79 0.33 -0.33 0.89 1 - -2900.84 2781.88 -7378.15 0.33 -0.33 0.89 1 - -3021.11 2517.37 -7430.40 0.33 -0.33 0.89 1 - -3141.54 2252.76 -7482.95 0.33 -0.33 0.89 1 - -2502.24 3100.84 -7408.66 0.33 -0.33 0.89 1 - -2622.51 2836.33 -7460.90 0.33 -0.33 0.89 1 - -2743.07 2571.99 -7513.26 0.33 -0.33 0.89 1 - -2863.41 2307.60 -7565.73 0.33 -0.33 0.89 1 - -2344.46 2890.95 -7543.77 0.33 -0.33 0.89 1 - -2464.80 2626.56 -7596.23 0.33 -0.33 0.89 1 - -2585.36 2362.22 -7648.59 0.33 -0.33 0.89 1 - -2186.75 2681.18 -7679.09 0.33 -0.33 0.89 1 - -2307.32 2416.84 -7731.45 0.33 -0.33 0.89 1 - -4718.01 4206.11 -5566.84 0.52 -0.47 0.71 1 - -4605.24 4022.84 -5769.33 0.52 -0.47 0.71 1 - -4492.89 3839.66 -5971.75 0.52 -0.47 0.71 1 - -4380.21 3656.52 -6174.04 0.52 -0.47 0.71 1 - -4267.58 3473.39 -6376.68 0.52 -0.47 0.71 1 - -4465.97 4275.01 -5704.73 0.52 -0.47 0.71 1 - -4353.29 4091.87 -5907.02 0.52 -0.47 0.71 1 - -4240.94 3908.69 -6109.44 0.52 -0.47 0.71 1 - -4128.40 3725.68 -6311.88 0.52 -0.47 0.71 1 - -4214.02 4344.04 -5842.42 0.52 -0.47 0.71 1 - -4101.49 4161.03 -6044.86 0.52 -0.47 0.71 1 - -3989.14 3977.85 -6247.28 0.52 -0.47 0.71 1 - -3962.22 4413.20 -5980.26 0.52 -0.47 0.71 1 - -3849.87 4230.02 -6182.68 0.52 -0.47 0.71 1 - -3335.75 2514.09 -7305.85 0.40 -0.35 0.84 1 - -3508.31 3183.91 -6942.71 0.40 -0.35 0.84 1 - -3360.74 2980.79 -7097.87 0.40 -0.35 0.84 1 - -3212.94 2777.62 -7253.14 0.40 -0.35 0.84 1 - -3238.10 3244.21 -7045.46 0.40 -0.35 0.84 1 - -3090.30 3041.04 -7200.73 0.40 -0.35 0.84 1 - -2967.82 3304.40 -7148.00 0.40 -0.35 0.84 1 - -5103.06 4368.94 -5068.76 0.64 -0.53 0.55 1 - -5181.09 4524.63 -4830.30 0.64 -0.53 0.55 1 - -5259.13 4680.31 -4591.84 0.64 -0.53 0.55 1 - -5337.02 4835.86 -4353.23 0.64 -0.53 0.55 1 - -5325.71 4276.36 -4898.49 0.64 -0.53 0.55 1 - -5403.75 4432.04 -4660.03 0.64 -0.53 0.55 1 - -5481.78 4587.73 -4421.57 0.64 -0.53 0.55 1 - -5548.60 4184.04 -4728.17 0.64 -0.53 0.55 1 - -5626.64 4339.72 -4489.71 0.64 -0.53 0.55 1 - -5771.25 4091.46 -4557.89 0.64 -0.53 0.55 1 - -5295.80 3150.97 -5731.41 0.59 -0.42 0.70 1 - -5057.02 3228.56 -5886.58 0.59 -0.42 0.70 1 - -4818.06 3306.31 -6041.76 0.59 -0.42 0.70 1 - -3095.94 1860.58 -7608.69 0.31 -0.18 0.93 1 - -2919.72 1646.20 -7709.78 0.31 -0.18 0.93 1 - -2743.63 1432.08 -7811.08 0.31 -0.18 0.93 1 - -2567.18 1217.77 -7912.22 0.31 -0.18 0.93 1 - -2391.02 1003.41 -8013.56 0.31 -0.18 0.93 1 - -2818.78 1922.85 -7689.08 0.31 -0.18 0.93 1 - -2642.39 1708.78 -7790.18 0.31 -0.18 0.93 1 - -2466.23 1494.42 -7891.51 0.31 -0.18 0.93 1 - -2290.09 1280.27 -7992.57 0.31 -0.18 0.93 1 - -2541.45 1985.43 -7769.47 0.31 -0.18 0.93 1 - -2365.23 1771.05 -7870.56 0.31 -0.18 0.93 1 - -2189.08 1556.90 -7971.62 0.31 -0.18 0.93 1 - -2264.36 2047.93 -7849.82 0.31 -0.18 0.93 1 - -2088.14 1833.55 -7950.91 0.31 -0.18 0.93 1 - -3479.01 2222.51 -7341.35 0.46 -0.30 0.83 1 - -3626.80 2425.68 -7186.08 0.46 -0.30 0.83 1 - -3774.37 2628.80 -7030.91 0.46 -0.30 0.83 1 - -3922.08 2832.19 -6875.55 0.46 -0.30 0.83 1 - -4069.65 3035.31 -6720.39 0.46 -0.30 0.83 1 - -3739.90 2155.03 -7220.26 0.46 -0.30 0.83 1 - -3887.69 2358.20 -7064.99 0.46 -0.30 0.83 1 - -4035.17 2561.54 -6909.74 0.46 -0.30 0.83 1 - -4182.97 2764.71 -6754.47 0.46 -0.30 0.83 1 - -4000.79 2087.54 -7099.17 0.46 -0.30 0.83 1 - -4148.26 2290.88 -6943.92 0.46 -0.30 0.83 1 - -4296.06 2494.05 -6788.65 0.46 -0.30 0.83 1 - -4261.42 2020.34 -6978.32 0.46 -0.30 0.83 1 - -4409.22 2223.51 -6823.05 0.46 -0.30 0.83 1 - -3218.87 1511.57 -7627.40 0.37 -0.12 0.92 1 - -3310.08 1230.88 -7627.40 0.37 -0.12 0.92 1 - -3401.21 949.94 -7627.44 0.37 -0.12 0.92 1 - -3492.65 669.16 -7627.39 0.37 -0.12 0.92 1 - -3040.70 1298.46 -7727.54 0.37 -0.12 0.92 1 - -3131.91 1017.76 -7727.54 0.37 -0.12 0.92 1 - -3223.04 736.83 -7727.57 0.37 -0.12 0.92 1 - -2862.59 1085.37 -7827.92 0.37 -0.12 0.92 1 - -2953.72 804.43 -7827.96 0.37 -0.12 0.92 1 - -2684.42 872.25 -7928.06 0.37 -0.12 0.92 1 - -4988.34 999.61 -6614.58 0.58 -0.19 0.79 1 - -4749.30 1077.39 -6769.79 0.58 -0.19 0.79 1 - -4510.40 1154.85 -6924.96 0.58 -0.19 0.79 1 - -5135.82 1202.78 -6459.28 0.58 -0.19 0.79 1 - -4897.00 1280.63 -6614.63 0.58 -0.19 0.79 1 - -6253.28 1566.10 -5409.89 0.75 -0.24 0.62 1 - -6162.08 1846.80 -5409.89 0.75 -0.24 0.62 1 - -6070.88 2127.71 -5409.76 0.75 -0.24 0.62 1 - -4646.14 5892.54 -3749.05 0.53 -0.72 0.45 1 - -4459.52 5886.75 -3977.78 0.53 -0.72 0.45 1 - -4593.98 6071.80 -3520.31 0.53 -0.72 0.45 1 - -4407.36 6066.02 -3749.05 0.53 -0.72 0.45 1 - -4220.74 6060.23 -3977.78 0.53 -0.72 0.45 1 - -4355.21 6245.28 -3520.31 0.53 -0.72 0.45 1 - -4168.29 6239.70 -3749.10 0.53 -0.72 0.45 1 - -4705.71 6727.98 -1901.15 0.56 -0.77 0.30 1 - -4944.64 6554.35 -1901.29 0.56 -0.77 0.30 1 - -4540.90 6752.29 -2145.11 0.56 -0.77 0.30 1 - -4779.82 6578.76 -2144.91 0.56 -0.77 0.30 1 - -5018.74 6405.13 -2145.05 0.56 -0.77 0.30 1 - -4376.08 6776.70 -2388.73 0.56 -0.77 0.30 1 - -4615.00 6603.07 -2388.87 0.56 -0.77 0.30 1 - -4853.92 6429.54 -2388.67 0.56 -0.77 0.30 1 - -5092.85 6255.91 -2388.81 0.56 -0.77 0.30 1 - -4211.26 6801.02 -2632.69 0.56 -0.77 0.30 1 - -4450.18 6627.48 -2632.49 0.56 -0.77 0.30 1 - -4689.10 6453.86 -2632.63 0.56 -0.77 0.30 1 - -4927.88 6280.38 -2632.63 0.56 -0.77 0.30 1 - -5166.95 6106.70 -2632.57 0.56 -0.77 0.30 1 - -4285.36 6651.80 -2876.45 0.56 -0.77 0.30 1 - -4524.29 6478.27 -2876.25 0.56 -0.77 0.30 1 - -4763.21 6304.64 -2876.39 0.56 -0.77 0.30 1 - -5001.98 6131.16 -2876.39 0.56 -0.77 0.30 1 - -4359.47 6502.58 -3120.21 0.56 -0.77 0.30 1 - -4598.39 6329.05 -3120.01 0.56 -0.77 0.30 1 - -4837.31 6155.42 -3120.15 0.56 -0.77 0.30 1 - -5336.77 6056.48 -2378.56 0.64 -0.73 0.22 1 - -5259.17 6200.13 -2132.67 0.64 -0.73 0.22 1 - -5181.14 6343.79 -1886.77 0.64 -0.73 0.22 1 - -5103.11 6487.45 -1640.88 0.64 -0.73 0.22 1 - -5481.79 6006.41 -2126.19 0.64 -0.73 0.22 1 - -5403.76 6150.07 -1880.30 0.64 -0.73 0.22 1 - -5325.73 6293.72 -1634.40 0.64 -0.73 0.22 1 - -5626.66 5956.49 -1873.67 0.64 -0.73 0.22 1 - -5548.63 6100.15 -1627.78 0.64 -0.73 0.22 1 - -5771.24 5906.42 -1621.30 0.64 -0.73 0.22 1 - -5983.51 5124.45 -2993.56 0.65 -0.64 0.40 1 - -5983.40 4969.27 -3244.86 0.65 -0.64 0.40 1 - -5789.57 5344.07 -2955.75 0.65 -0.64 0.40 1 - -5789.72 5188.70 -3206.86 0.65 -0.64 0.40 1 - -5789.61 5033.52 -3458.15 0.65 -0.64 0.40 1 - -5595.89 5563.51 -2917.75 0.65 -0.64 0.40 1 - -5595.78 5408.32 -3169.04 0.65 -0.64 0.40 1 - -5595.93 5252.95 -3420.15 0.65 -0.64 0.40 1 - -5595.82 5097.77 -3671.44 0.65 -0.64 0.40 1 - -5401.95 5783.12 -2879.93 0.65 -0.64 0.40 1 - -5402.09 5627.75 -3131.04 0.65 -0.64 0.40 1 - -5401.99 5472.57 -3382.33 0.65 -0.64 0.40 1 - -5401.99 5317.40 -3633.39 0.65 -0.64 0.40 1 - -5402.03 5162.02 -3884.74 0.65 -0.64 0.40 1 - -5208.16 5847.37 -3093.22 0.65 -0.64 0.40 1 - -5208.30 5692.00 -3344.33 0.65 -0.64 0.40 1 - -5208.20 5536.82 -3595.63 0.65 -0.64 0.40 1 - -5208.20 5381.65 -3846.69 0.65 -0.64 0.40 1 - -5014.37 5911.62 -3306.52 0.65 -0.64 0.40 1 - -5014.51 5756.25 -3557.63 0.65 -0.64 0.40 1 - -5014.41 5601.07 -3808.92 0.65 -0.64 0.40 1 - -6153.50 5041.67 -2745.39 0.71 -0.64 0.29 1 - -5964.38 5265.72 -2710.37 0.71 -0.64 0.29 1 - -5775.26 5489.77 -2675.36 0.71 -0.64 0.29 1 - -5585.92 4916.93 -3929.47 0.71 -0.55 0.45 1 - -5775.26 4847.98 -3713.79 0.71 -0.55 0.45 1 - -5964.38 4779.09 -3497.75 0.71 -0.55 0.45 1 - -7011.42 4174.13 -2059.07 0.82 -0.49 0.30 1 - -7011.42 4018.96 -2310.13 0.82 -0.49 0.30 1 - -7011.32 3863.78 -2561.43 0.82 -0.49 0.30 1 - -5628.75 4686.93 4087.44 0.65 -0.56 -0.51 1 - -5424.51 4897.86 4118.86 0.65 -0.56 -0.51 1 - -5651.59 4472.71 4289.41 0.65 -0.56 -0.51 1 - -5447.67 4683.78 4320.78 0.65 -0.56 -0.51 1 - -5243.42 4894.71 4352.20 0.65 -0.56 -0.51 1 - -5470.75 4469.38 4522.57 0.65 -0.56 -0.51 1 - -5266.51 4680.31 4553.98 0.65 -0.56 -0.51 1 - -4622.10 4368.34 5522.01 0.61 -0.48 -0.63 1 - -4831.03 4164.58 5476.58 0.61 -0.48 -0.63 1 - -5040.03 3961.15 5431.27 0.61 -0.48 -0.63 1 - -5249.10 3757.45 5385.64 0.61 -0.48 -0.63 1 - -5458.21 3553.79 5340.35 0.61 -0.48 -0.63 1 - -4818.94 4404.50 5304.98 0.61 -0.48 -0.63 1 - -5027.91 4201.03 5259.32 0.61 -0.48 -0.63 1 - -6248.41 3581.45 4353.23 0.70 -0.45 -0.55 1 - -5712.79 3743.58 4898.49 0.70 -0.45 -0.55 1 - -5884.97 3769.69 4660.03 0.70 -0.45 -0.55 1 - -6057.16 3795.80 4421.57 0.70 -0.45 -0.55 1 - -5693.87 3984.09 4728.17 0.70 -0.45 -0.55 1 - -5866.05 4010.20 4489.71 0.70 -0.45 -0.55 1 - -5674.62 4224.46 4557.89 0.70 -0.45 -0.55 1 - -5458.19 3187.33 5566.85 0.61 -0.35 -0.71 1 - -4831.11 3035.89 6174.05 0.61 -0.35 -0.71 1 - -4622.14 2985.36 6376.69 0.61 -0.35 -0.71 1 - -5445.83 2926.33 5704.74 0.61 -0.35 -0.71 1 - -5236.83 2875.76 5907.03 0.61 -0.35 -0.71 1 - -5027.90 2825.51 6109.45 0.61 -0.35 -0.71 1 - -4819.08 2775.04 6311.90 0.61 -0.35 -0.71 1 - -5433.62 2665.39 5842.43 0.61 -0.35 -0.71 1 - -5224.80 2614.91 6044.87 0.61 -0.35 -0.71 1 - -5015.87 2564.66 6247.30 0.61 -0.35 -0.71 1 - -5421.59 2404.53 5980.28 0.61 -0.35 -0.71 1 - -5212.66 2354.29 6182.70 0.61 -0.35 -0.71 1 - -4428.54 2719.04 6628.25 0.54 -0.25 -0.80 1 - -4401.11 2444.21 6732.87 0.54 -0.25 -0.80 1 - -4373.94 2169.60 6837.61 0.54 -0.25 -0.80 1 - -4346.69 1894.61 6942.15 0.54 -0.25 -0.80 1 - -4319.39 1619.81 7046.98 0.54 -0.25 -0.80 1 - -4629.09 2513.85 6558.72 0.54 -0.25 -0.80 1 - -4601.96 2239.06 6663.16 0.54 -0.25 -0.80 1 - -4574.67 1964.25 6768.00 0.54 -0.25 -0.80 1 - -4547.36 1689.62 6872.52 0.54 -0.25 -0.80 1 - -4829.94 2308.70 6489.01 0.54 -0.25 -0.80 1 - -4802.51 2033.87 6593.63 0.54 -0.25 -0.80 1 - -4775.21 1759.23 6698.15 0.54 -0.25 -0.80 1 - -5030.61 2103.70 6419.38 0.54 -0.25 -0.80 1 - -5003.18 1828.87 6524.00 0.54 -0.25 -0.80 1 - -5932.93 3271.28 5012.27 0.76 -0.34 -0.55 1 - -5933.04 3019.99 5167.46 0.76 -0.34 -0.55 1 - -6099.87 3294.91 4769.69 0.76 -0.34 -0.55 1 - -6099.72 3043.80 4925.06 0.76 -0.34 -0.55 1 - -6099.83 2792.50 5080.24 0.76 -0.34 -0.55 1 - -6266.55 3318.72 4527.28 0.76 -0.34 -0.55 1 - -6266.66 3067.42 4682.47 0.76 -0.34 -0.55 1 - -6266.51 2816.31 4837.84 0.76 -0.34 -0.55 1 - -6266.62 2565.01 4993.03 0.76 -0.34 -0.55 1 - -6433.49 3342.34 4284.69 0.76 -0.34 -0.55 1 - -6433.34 3091.23 4440.06 0.76 -0.34 -0.55 1 - -6433.45 2839.93 4595.25 0.76 -0.34 -0.55 1 - -6433.45 2588.87 4750.42 0.76 -0.34 -0.55 1 - -6433.41 2337.52 4905.81 0.76 -0.34 -0.55 1 - -6600.28 3114.85 4197.48 0.76 -0.34 -0.55 1 - -6600.13 2863.74 4352.85 0.76 -0.34 -0.55 1 - -6600.24 2612.44 4508.03 0.76 -0.34 -0.55 1 - -6600.24 2361.38 4663.20 0.76 -0.34 -0.55 1 - -6767.07 2887.36 4110.26 0.76 -0.34 -0.55 1 - -6766.92 2636.25 4265.63 0.76 -0.34 -0.55 1 - -6767.03 2384.96 4420.82 0.76 -0.34 -0.55 1 - -5732.03 2966.90 5400.24 0.70 -0.30 -0.65 1 - -6057.28 2257.15 5372.37 0.70 -0.30 -0.65 1 - -5885.10 2482.10 5455.66 0.70 -0.30 -0.65 1 - -5712.92 2707.06 5538.96 0.70 -0.30 -0.65 1 - -5693.84 2447.25 5678.03 0.70 -0.30 -0.65 1 - -5674.72 2187.41 5816.75 0.70 -0.30 -0.65 1 - -5266.46 1980.06 6222.80 0.65 -0.21 -0.73 1 - -5243.45 1703.64 6324.34 0.65 -0.21 -0.73 1 - -5470.63 2046.53 6020.09 0.65 -0.21 -0.73 1 - -5447.62 1770.11 6121.62 0.65 -0.21 -0.73 1 - -5424.57 1493.63 6222.81 0.65 -0.21 -0.73 1 - -5651.59 1836.30 5918.80 0.65 -0.21 -0.73 1 - -5628.74 1560.10 6020.10 0.65 -0.21 -0.73 1 - -6402.26 1818.47 5150.17 0.74 -0.17 -0.65 1 - -6212.98 1167.75 5539.04 0.74 -0.17 -0.65 1 - -6220.05 1450.95 5455.75 0.74 -0.17 -0.65 1 - -6227.12 1734.16 5372.46 0.74 -0.17 -0.65 1 - -6044.90 1366.89 5677.99 0.74 -0.17 -0.65 1 - -6051.97 1650.10 5594.70 0.74 -0.17 -0.65 1 - -5876.63 1565.75 5816.83 0.74 -0.17 -0.65 1 - -6575.04 1043.94 5167.48 0.81 -0.17 -0.55 1 - -6722.77 840.79 5012.12 0.81 -0.17 -0.55 1 - -6576.35 1326.15 5080.13 0.81 -0.17 -0.55 1 - -6723.93 1122.78 4925.01 0.81 -0.17 -0.55 1 - -6871.65 919.63 4769.64 0.81 -0.17 -0.55 1 - -6577.51 1608.14 4993.01 0.81 -0.17 -0.55 1 - -6725.23 1404.99 4837.65 0.81 -0.17 -0.55 1 - -6872.81 1201.63 4682.53 0.81 -0.17 -0.55 1 - -7020.53 998.48 4527.16 0.81 -0.17 -0.55 1 - -6578.82 1890.35 4905.66 0.81 -0.17 -0.55 1 - -6726.39 1686.98 4750.53 0.81 -0.17 -0.55 1 - -6874.12 1483.83 4595.17 0.81 -0.17 -0.55 1 - -7021.69 1280.72 4440.00 0.81 -0.17 -0.55 1 - -7169.42 1077.32 4284.68 0.81 -0.17 -0.55 1 - -4446.50 1228.38 7047.03 0.58 -0.11 -0.80 1 - -4630.20 1022.07 6942.15 0.58 -0.11 -0.80 1 - -4813.71 815.77 6837.67 0.58 -0.11 -0.80 1 - -4997.21 609.61 6732.86 0.58 -0.11 -0.80 1 - -5181.03 403.35 6628.20 0.58 -0.11 -0.80 1 - -4671.97 1305.92 6872.56 0.58 -0.11 -0.80 1 - -4855.47 1099.76 6767.75 0.58 -0.11 -0.80 1 - -5038.98 893.46 6663.27 0.58 -0.11 -0.80 1 - -5222.61 687.35 6558.68 0.58 -0.11 -0.80 1 - -4897.24 1383.61 6698.16 0.58 -0.11 -0.80 1 - -5080.87 1177.50 6593.56 0.58 -0.11 -0.80 1 - -5264.38 971.20 6489.09 0.58 -0.11 -0.80 1 - -5122.64 1461.35 6523.97 0.58 -0.11 -0.80 1 - -5306.15 1255.05 6419.49 0.58 -0.11 -0.80 1 - -5494.17 301.51 6376.68 0.70 -0.07 -0.71 1 - -5692.87 383.48 6174.12 0.70 -0.07 -0.71 1 - -6289.21 629.71 5566.88 0.70 -0.07 -0.71 1 - -5529.81 587.34 6311.97 0.70 -0.07 -0.71 1 - -5728.35 669.59 6109.56 0.70 -0.07 -0.71 1 - -5927.25 751.59 5907.15 0.70 -0.07 -0.71 1 - -6125.79 833.59 5704.78 0.70 -0.07 -0.71 1 - -5565.30 873.46 6247.41 0.70 -0.07 -0.71 1 - -5764.00 955.42 6044.85 0.70 -0.07 -0.71 1 - -5962.54 1037.42 5842.48 0.70 -0.07 -0.71 1 - -5600.78 1159.32 6182.90 0.70 -0.07 -0.71 1 - -5799.48 1241.29 5980.33 0.70 -0.07 -0.71 1 - -4893.00 306.08 6840.20 0.53 -0.05 -0.85 1 - -4231.94 358.47 7253.20 0.53 -0.05 -0.85 1 - -4470.72 436.05 7098.04 0.53 -0.05 -0.85 1 - -4709.61 513.82 6942.76 0.53 -0.05 -0.85 1 - -4287.65 643.69 7200.74 0.53 -0.05 -0.85 1 - -4526.54 721.47 7045.46 0.53 -0.05 -0.85 1 - -4343.23 928.87 7148.06 0.53 -0.05 -0.85 1 - -5416.16 6449.98 36.42 0.59 -0.81 -0.02 1 - -5177.24 6623.61 36.57 0.59 -0.81 -0.02 1 - -4938.46 6797.09 36.56 0.59 -0.81 -0.02 1 - -4699.39 6970.77 36.51 0.59 -0.81 -0.02 1 - -4460.62 7144.25 36.51 0.59 -0.81 -0.02 1 - -5292.97 6531.63 292.22 0.59 -0.81 -0.02 1 - -5054.04 6705.26 292.37 0.59 -0.81 -0.02 1 - -4815.12 6878.79 292.17 0.59 -0.81 -0.02 1 - -4576.20 7052.42 292.31 0.59 -0.81 -0.02 1 - -5169.77 6613.28 548.02 0.59 -0.81 -0.02 1 - -4930.85 6786.82 547.82 0.59 -0.81 -0.02 1 - -4691.93 6960.44 547.97 0.59 -0.81 -0.02 1 - -5046.72 6695.04 803.42 0.59 -0.81 -0.02 1 - -4807.80 6868.67 803.57 0.59 -0.81 -0.02 1 - -5066.47 6607.00 -1272.50 0.65 -0.76 0.10 1 - -5195.62 6530.38 -1018.02 0.65 -0.76 0.10 1 - -5324.61 6454.16 -763.65 0.65 -0.76 0.10 1 - -5453.61 6377.60 -509.38 0.65 -0.76 0.10 1 - -5582.91 6301.18 -254.96 0.65 -0.76 0.10 1 - -5290.95 6414.92 -1272.46 0.65 -0.76 0.10 1 - -5419.95 6338.36 -1018.18 0.65 -0.76 0.10 1 - -5548.95 6262.14 -763.81 0.65 -0.76 0.10 1 - -5678.10 6185.77 -509.59 0.65 -0.76 0.10 1 - -5515.29 6222.90 -1272.62 0.65 -0.76 0.10 1 - -5644.44 6146.53 -1018.40 0.65 -0.76 0.10 1 - -5773.44 6070.32 -764.03 0.65 -0.76 0.10 1 - -5739.77 6031.08 -1272.83 0.65 -0.76 0.10 1 - -5868.77 5954.86 -1018.47 0.65 -0.76 0.10 1 - -6115.15 5644.97 1295.27 0.69 -0.71 -0.10 1 - -6023.81 5770.70 1044.10 0.69 -0.71 -0.10 1 - -5932.61 5896.22 793.04 0.69 -0.71 -0.10 1 - -5841.32 6021.86 541.64 0.69 -0.71 -0.10 1 - -5750.12 6147.39 290.58 0.69 -0.71 -0.10 1 - -5902.83 5850.30 1301.47 0.69 -0.71 -0.10 1 - -5811.49 5976.02 1050.31 0.69 -0.71 -0.10 1 - -5720.34 6101.47 799.01 0.69 -0.71 -0.10 1 - -5629.00 6227.19 547.85 0.69 -0.71 -0.10 1 - -5690.51 6055.62 1307.68 0.69 -0.71 -0.10 1 - -5599.35 6181.07 1056.38 0.69 -0.71 -0.10 1 - -5508.02 6306.79 805.22 0.69 -0.71 -0.10 1 - -5478.58 6260.81 1313.74 0.69 -0.71 -0.10 1 - -5387.24 6386.54 1062.58 0.69 -0.71 -0.10 1 - -5941.06 5754.41 -1395.69 0.73 -0.66 0.17 1 - -6078.67 5666.31 -1149.73 0.73 -0.66 0.17 1 - -6000.23 5622.21 -1653.03 0.73 -0.66 0.17 1 - -6137.89 5534.47 -1407.12 0.73 -0.66 0.17 1 - -6275.51 5446.38 -1161.16 0.73 -0.66 0.17 1 - -6196.82 5402.45 -1664.63 0.73 -0.66 0.17 1 - -6334.44 5314.36 -1418.68 0.73 -0.66 0.17 1 - -5850.34 6058.85 -51.38 0.74 -0.67 0.03 1 - -6047.76 5839.25 -57.22 0.74 -0.67 0.03 1 - -6245.25 5619.98 -63.17 0.74 -0.67 0.03 1 - -6442.71 5400.30 -69.24 0.74 -0.67 0.03 1 - -6640.34 5180.84 -75.09 0.74 -0.67 0.03 1 - -5940.44 5948.10 -309.78 0.74 -0.67 0.03 1 - -6137.77 5728.61 -315.96 0.74 -0.67 0.03 1 - -6335.40 5509.15 -321.81 0.74 -0.67 0.03 1 - -6532.68 5289.74 -327.74 0.74 -0.67 0.03 1 - -6030.46 5837.45 -568.52 0.74 -0.67 0.03 1 - -6227.87 5617.85 -574.36 0.74 -0.67 0.03 1 - -6425.16 5398.45 -580.30 0.74 -0.67 0.03 1 - -6120.43 5726.90 -827.02 0.74 -0.67 0.03 1 - -6317.84 5507.29 -832.86 0.74 -0.67 0.03 1 - -6253.24 5539.21 1018.60 0.75 -0.66 -0.06 1 - -6175.90 5695.52 257.10 0.75 -0.66 -0.06 1 - -6267.10 5569.99 508.16 0.75 -0.66 -0.06 1 - -6358.44 5444.26 759.32 0.75 -0.66 -0.06 1 - -6372.46 5475.27 249.11 0.75 -0.66 -0.06 1 - -6463.79 5349.54 500.27 0.75 -0.66 -0.06 1 - -6568.80 5254.88 241.13 0.75 -0.66 -0.06 1 - -6846.14 4897.58 -291.38 0.82 -0.57 0.11 1 - -6901.44 4768.92 -551.57 0.82 -0.57 0.11 1 - -6957.02 4640.31 -811.41 0.82 -0.57 0.11 1 - -7012.25 4511.72 -1071.37 0.82 -0.57 0.11 1 - -7067.75 4383.22 -1331.54 0.82 -0.57 0.11 1 - -6734.42 5012.07 -539.77 0.82 -0.57 0.11 1 - -6789.65 4883.49 -799.72 0.82 -0.57 0.11 1 - -6845.23 4754.87 -1059.57 0.82 -0.57 0.11 1 - -6900.67 4626.44 -1319.51 0.82 -0.57 0.11 1 - -6622.63 5126.64 -787.92 0.82 -0.57 0.11 1 - -6678.07 4998.21 -1047.87 0.82 -0.57 0.11 1 - -6733.65 4869.59 -1307.71 0.82 -0.57 0.11 1 - -6511.05 5241.36 -1036.07 0.82 -0.57 0.11 1 - -6566.63 5112.74 -1295.92 0.82 -0.57 0.11 1 - -7027.56 4623.46 -241.13 0.86 -0.50 0.06 1 - -7291.59 4110.02 -767.30 0.86 -0.50 0.06 1 - -7234.01 4239.14 -508.16 0.86 -0.50 0.06 1 - -7176.48 4368.61 -249.11 0.86 -0.50 0.06 1 - -7382.94 3984.30 -516.14 0.86 -0.50 0.06 1 - -7325.21 4113.61 -257.10 0.86 -0.50 0.06 1 - -7474.14 3858.77 -265.07 0.86 -0.50 0.06 1 - -5283.74 6267.32 1561.47 0.58 -0.79 -0.19 1 - -5192.29 6392.98 1310.22 0.58 -0.79 -0.19 1 - -5101.12 6518.41 1059.02 0.58 -0.79 -0.19 1 - -5136.01 6315.20 1812.53 0.58 -0.79 -0.19 1 - -5044.69 6441.03 1561.43 0.58 -0.79 -0.19 1 - -4953.52 6566.46 1310.22 0.58 -0.79 -0.19 1 - -4862.07 6692.12 1058.97 0.58 -0.79 -0.19 1 - -4988.41 6363.25 2063.74 0.58 -0.79 -0.19 1 - -4896.97 6488.92 1812.49 0.58 -0.79 -0.19 1 - -4805.92 6614.51 1561.43 0.58 -0.79 -0.19 1 - -4714.52 6740.00 1310.34 0.58 -0.79 -0.19 1 - -4623.30 6865.61 1058.97 0.58 -0.79 -0.19 1 - -4749.42 6536.79 2063.86 0.58 -0.79 -0.19 1 - -4658.20 6662.40 1812.49 0.58 -0.79 -0.19 1 - -4566.93 6788.05 1561.55 0.58 -0.79 -0.19 1 - -4475.70 6913.66 1310.17 0.58 -0.79 -0.19 1 - -4510.60 6710.45 2063.69 0.58 -0.79 -0.19 1 - -4419.20 6835.93 1812.61 0.58 -0.79 -0.19 1 - -4328.10 6961.71 1561.38 0.58 -0.79 -0.19 1 - -5467.54 5758.33 2808.23 0.68 -0.69 -0.27 1 - -5615.16 5710.47 2556.93 0.68 -0.69 -0.27 1 - -5762.73 5662.52 2305.87 0.68 -0.69 -0.27 1 - -5910.50 5614.47 2054.53 0.68 -0.69 -0.27 1 - -6058.07 5566.52 1803.47 0.68 -0.69 -0.27 1 - -5402.51 5915.17 2566.46 0.68 -0.69 -0.27 1 - -5550.13 5867.32 2315.17 0.68 -0.69 -0.27 1 - -5697.85 5819.17 2064.06 0.68 -0.69 -0.27 1 - -5845.48 5771.31 1812.77 0.68 -0.69 -0.27 1 - -5337.49 6072.02 2324.70 0.68 -0.69 -0.27 1 - -5485.21 6023.87 2073.59 0.68 -0.69 -0.27 1 - -5632.83 5976.02 1822.30 0.68 -0.69 -0.27 1 - -5272.76 6228.70 2083.21 0.68 -0.69 -0.27 1 - -5420.38 6180.84 1831.92 0.68 -0.69 -0.27 1 - -6289.24 4697.57 3052.74 0.70 -0.61 -0.39 1 - -6090.28 4915.34 3069.96 0.70 -0.61 -0.39 1 - -5891.72 5133.13 3087.01 0.70 -0.61 -0.39 1 - -5692.91 5350.70 3104.18 0.70 -0.61 -0.39 1 - -5494.15 5568.60 3121.51 0.70 -0.61 -0.39 1 - -6125.83 4729.72 3296.76 0.70 -0.61 -0.39 1 - -5927.02 4947.29 3313.94 0.70 -0.61 -0.39 1 - -5728.46 5165.08 3330.98 0.70 -0.61 -0.39 1 - -5529.85 5382.78 3348.26 0.70 -0.61 -0.39 1 - -5962.57 4761.66 3540.74 0.70 -0.61 -0.39 1 - -5763.96 4979.36 3558.01 0.70 -0.61 -0.39 1 - -5565.40 5197.16 3575.05 0.70 -0.61 -0.39 1 - -5799.51 4793.74 3784.81 0.70 -0.61 -0.39 1 - -5600.95 5011.53 3801.85 0.70 -0.61 -0.39 1 - -5693.57 5522.34 2812.54 0.72 -0.63 -0.30 1 - -6186.08 5207.16 2294.47 0.72 -0.63 -0.30 1 - -6038.51 5255.11 2545.53 0.72 -0.63 -0.30 1 - -5890.89 5302.97 2796.82 0.72 -0.63 -0.30 1 - -6235.88 5036.07 2529.96 0.72 -0.63 -0.30 1 - -6088.26 5083.92 2781.25 0.72 -0.63 -0.30 1 - -6285.47 4864.85 2765.36 0.72 -0.63 -0.30 1 - -6381.21 4396.80 3281.70 0.74 -0.50 -0.45 1 - -6227.16 4029.58 3953.81 0.74 -0.50 -0.45 1 - -6220.09 4230.74 3737.76 0.74 -0.50 -0.45 1 - -6213.02 4431.89 3521.71 0.74 -0.50 -0.45 1 - -6051.94 4266.15 3977.91 0.74 -0.50 -0.45 1 - -6044.87 4467.30 3761.86 0.74 -0.50 -0.45 1 - -5876.67 4502.38 4001.88 0.74 -0.50 -0.45 1 - -7706.10 1086.19 3168.85 0.91 -0.14 -0.40 1 - -7797.34 1211.94 2917.67 0.91 -0.14 -0.40 1 - -7404.52 1001.11 3884.65 0.91 -0.14 -0.40 1 - -7495.81 1126.52 3633.38 0.91 -0.14 -0.40 1 - -7587.05 1252.27 3382.20 0.91 -0.14 -0.40 1 - -7678.25 1377.80 3131.14 0.91 -0.14 -0.40 1 - -7769.58 1503.43 2879.75 0.91 -0.14 -0.40 1 - -7376.77 1292.60 3846.73 0.91 -0.14 -0.40 1 - -7468.06 1418.01 3595.46 0.91 -0.14 -0.40 1 - -7559.30 1543.77 3344.28 0.91 -0.14 -0.40 1 - -7650.50 1669.30 3093.22 0.91 -0.14 -0.40 1 - -7349.01 1584.10 3808.81 0.91 -0.14 -0.40 1 - -7440.30 1709.51 3557.54 0.91 -0.14 -0.40 1 - -7531.54 1835.26 3306.36 0.91 -0.14 -0.40 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -4579.19 3383.77 -6197.13 0.59 -0.42 0.70 1 - -5167.16 3412.41 -5683.54 0.59 -0.42 0.70 1 - -4928.38 3489.99 -5838.70 0.59 -0.42 0.70 1 - -4689.42 3567.75 -5993.89 0.59 -0.42 0.70 1 - -5038.66 3673.99 -5635.82 0.59 -0.42 0.70 1 - -4799.70 3751.74 -5791.00 0.59 -0.42 0.70 1 - -4910.02 3935.43 -5587.94 0.59 -0.42 0.70 1 - -5582.85 3045.98 -5522.01 0.65 -0.43 0.63 1 - -5453.63 3307.65 -5476.57 0.65 -0.43 0.63 1 - -5324.74 3569.29 -5431.27 0.65 -0.43 0.63 1 - -5195.61 3831.08 -5385.63 0.65 -0.43 0.63 1 - -5066.53 4092.89 -5340.34 0.65 -0.43 0.63 1 - -5678.07 3222.02 -5304.98 0.65 -0.43 0.63 1 - -5549.13 3483.64 -5259.32 0.65 -0.43 0.63 1 - -5420.05 3745.45 -5214.04 0.65 -0.43 0.63 1 - -5291.02 4006.94 -5168.58 0.65 -0.43 0.63 1 - -5773.57 3398.01 -5087.73 0.65 -0.43 0.63 1 - -5644.35 3659.67 -5042.29 0.65 -0.43 0.63 1 - -5515.31 3921.17 -4996.83 0.65 -0.43 0.63 1 - -5868.98 3573.87 -4870.68 0.65 -0.43 0.63 1 - -5739.76 3835.54 -4825.24 0.65 -0.43 0.63 1 - -4460.62 3162.41 -6406.27 0.59 -0.34 0.73 1 - -4699.58 3084.65 -6251.09 0.59 -0.34 0.73 1 - -4938.36 3007.07 -6095.92 0.59 -0.34 0.73 1 - -5177.42 2929.44 -5940.54 0.59 -0.34 0.73 1 - -5416.19 2851.86 -5785.37 0.59 -0.34 0.73 1 - -4576.35 2892.50 -6438.44 0.59 -0.34 0.73 1 - -4815.31 2814.74 -6283.26 0.59 -0.34 0.73 1 - -5054.18 2737.28 -6127.89 0.59 -0.34 0.73 1 - -5293.14 2659.53 -5972.71 0.59 -0.34 0.73 1 - -4692.07 2622.59 -6470.62 0.59 -0.34 0.73 1 - -4930.94 2545.13 -6315.25 0.59 -0.34 0.73 1 - -5169.90 2467.37 -6160.06 0.59 -0.34 0.73 1 - -4807.85 2353.11 -6502.76 0.59 -0.34 0.73 1 - -5046.81 2275.36 -6347.57 0.59 -0.34 0.73 1 - -6640.35 2384.02 -4600.32 0.74 -0.32 0.59 1 - -6442.67 2477.00 -4799.28 0.74 -0.32 0.59 1 - -6245.34 2569.72 -4998.31 0.74 -0.32 0.59 1 - -6047.81 2662.59 -5197.09 0.74 -0.32 0.59 1 - -5850.34 2755.64 -5396.18 0.74 -0.32 0.59 1 - -6532.70 2658.71 -4584.72 0.74 -0.32 0.59 1 - -6335.16 2751.58 -4783.50 0.74 -0.32 0.59 1 - -6137.83 2844.30 -4982.53 0.74 -0.32 0.59 1 - -5940.51 2937.23 -5181.44 0.74 -0.32 0.59 1 - -6425.19 2933.28 -4568.94 0.74 -0.32 0.59 1 - -6227.87 3026.22 -4767.84 0.74 -0.32 0.59 1 - -6030.53 3118.94 -4966.88 0.74 -0.32 0.59 1 - -6317.89 3207.93 -4553.29 0.74 -0.32 0.59 1 - -6120.56 3300.65 -4752.32 0.74 -0.32 0.59 1 - -3786.93 609.49 -7498.41 0.45 -0.14 0.88 1 - -3695.80 890.43 -7498.37 0.45 -0.14 0.88 1 - -3604.60 1171.13 -7498.37 0.45 -0.14 0.88 1 - -3513.23 1452.14 -7498.39 0.45 -0.14 0.88 1 - -3422.03 1732.84 -7498.39 0.45 -0.14 0.88 1 - -3956.20 819.75 -7378.32 0.45 -0.14 0.88 1 - -3865.07 1100.69 -7378.29 0.45 -0.14 0.88 1 - -3773.63 1381.46 -7378.34 0.45 -0.14 0.88 1 - -3682.50 1662.40 -7378.30 0.45 -0.14 0.88 1 - -4125.47 1030.01 -7258.24 0.45 -0.14 0.88 1 - -4034.03 1310.78 -7258.29 0.45 -0.14 0.88 1 - -3942.89 1591.72 -7258.25 0.45 -0.14 0.88 1 - -4294.48 1240.12 -7138.49 0.45 -0.14 0.88 1 - -4203.35 1521.06 -7138.45 0.45 -0.14 0.88 1 - -4658.10 1358.09 -6769.80 0.58 -0.19 0.79 1 - -4419.06 1435.87 -6925.01 0.58 -0.19 0.79 1 - -5283.51 1406.02 -6304.12 0.58 -0.19 0.79 1 - -5044.48 1483.81 -6459.34 0.58 -0.19 0.79 1 - -4805.79 1561.33 -6614.63 0.58 -0.19 0.79 1 - -4566.90 1639.01 -6769.67 0.58 -0.19 0.79 1 - -4327.86 1716.57 -6925.02 0.58 -0.19 0.79 1 - -5192.31 1686.94 -6303.99 0.58 -0.19 0.79 1 - -4953.27 1764.50 -6459.34 0.58 -0.19 0.79 1 - -4714.59 1842.25 -6614.50 0.58 -0.19 0.79 1 - -4475.55 1919.81 -6769.85 0.58 -0.19 0.79 1 - -5100.97 1967.74 -6304.17 0.58 -0.19 0.79 1 - -4862.07 2045.42 -6459.21 0.58 -0.19 0.79 1 - -4623.25 2123.05 -6614.68 0.58 -0.19 0.79 1 - -5750.17 2489.28 -5628.27 0.69 -0.23 0.68 1 - -5841.37 2208.37 -5628.40 0.69 -0.23 0.68 1 - -5932.57 1927.67 -5628.40 0.69 -0.23 0.68 1 - -6023.91 1646.64 -5628.35 0.69 -0.23 0.68 1 - -6115.11 1365.94 -5628.35 0.69 -0.23 0.68 1 - -5629.10 2294.69 -5814.70 0.69 -0.23 0.68 1 - -5720.30 2013.77 -5814.83 0.69 -0.23 0.68 1 - -5811.65 1732.96 -5814.65 0.69 -0.23 0.68 1 - -5902.85 1452.05 -5814.78 0.69 -0.23 0.68 1 - -5508.04 2100.09 -6001.12 0.69 -0.23 0.68 1 - -5599.39 1819.28 -6000.94 0.69 -0.23 0.68 1 - -5690.59 1538.37 -6001.07 0.69 -0.23 0.68 1 - -5387.34 1905.67 -6187.36 0.69 -0.23 0.68 1 - -5478.54 1624.75 -6187.49 0.69 -0.23 0.68 1 - -5979.54 2408.52 -5409.95 0.75 -0.24 0.62 1 - -6358.40 1755.48 -5209.20 0.75 -0.24 0.62 1 - -6267.19 2036.17 -5209.20 0.75 -0.24 0.62 1 - -6175.99 2317.09 -5209.07 0.75 -0.24 0.62 1 - -6463.72 1944.92 -5008.63 0.75 -0.24 0.62 1 - -6372.52 2225.83 -5008.50 0.75 -0.24 0.62 1 - -6568.83 2134.29 -4807.94 0.75 -0.24 0.62 1 - -6352.70 1209.45 -5396.23 0.79 -0.17 0.59 1 - -6457.76 1400.71 -5197.20 0.79 -0.17 0.59 1 - -6563.02 1591.82 -4998.42 0.79 -0.17 0.59 1 - -6668.22 1782.98 -4799.21 0.79 -0.17 0.59 1 - -6773.49 1974.31 -4600.30 0.79 -0.17 0.59 1 - -6532.33 1115.50 -5181.60 0.79 -0.17 0.59 1 - -6637.52 1306.43 -4982.52 0.79 -0.17 0.59 1 - -6742.79 1497.76 -4783.61 0.79 -0.17 0.59 1 - -6847.84 1688.81 -4584.71 0.79 -0.17 0.59 1 - -6712.10 1021.21 -4966.93 0.79 -0.17 0.59 1 - -6817.15 1212.48 -4767.90 0.79 -0.17 0.59 1 - -6922.21 1403.52 -4569.00 0.79 -0.17 0.59 1 - -6891.72 927.05 -4752.44 0.79 -0.17 0.59 1 - -6996.78 1118.31 -4553.41 0.79 -0.17 0.59 1 - -5076.48 -63.63 -6720.39 0.55 -0.03 0.83 1 - -4837.58 14.15 -6875.67 0.55 -0.03 0.83 1 - -4598.81 91.73 -7030.84 0.55 -0.03 0.83 1 - -4359.73 169.35 -7186.19 0.55 -0.03 0.83 1 - -4120.95 246.93 -7341.36 0.55 -0.03 0.83 1 - -5008.96 221.95 -6754.57 0.55 -0.03 0.83 1 - -4770.06 299.72 -6909.85 0.55 -0.03 0.83 1 - -4531.10 377.15 -7065.09 0.55 -0.03 0.83 1 - -4292.21 454.92 -7220.37 0.55 -0.03 0.83 1 - -4941.43 507.52 -6788.74 0.55 -0.03 0.83 1 - -4702.47 584.94 -6943.98 0.55 -0.03 0.83 1 - -4463.58 662.72 -7099.26 0.55 -0.03 0.83 1 - -4873.96 792.68 -6823.09 0.55 -0.03 0.83 1 - -4635.07 870.46 -6978.37 0.55 -0.03 0.83 1 - -5585.96 5713.67 -2640.25 0.71 -0.64 0.29 1 - -6135.03 5179.85 -2485.19 0.71 -0.64 0.29 1 - -5945.90 5403.90 -2450.18 0.71 -0.64 0.29 1 - -5756.78 5627.96 -2415.16 0.71 -0.64 0.29 1 - -6116.59 5318.39 -2225.04 0.71 -0.64 0.29 1 - -5927.46 5542.44 -2190.02 0.71 -0.64 0.29 1 - -6098.11 5456.58 -1964.84 0.71 -0.64 0.29 1 - -6153.50 4710.21 -3281.70 0.71 -0.55 0.45 1 - -5756.66 4677.17 -3953.81 0.71 -0.55 0.45 1 - -5945.78 4608.29 -3737.76 0.71 -0.55 0.45 1 - -6134.90 4539.40 -3521.71 0.71 -0.55 0.45 1 - -5927.50 4437.43 -3977.91 0.71 -0.55 0.45 1 - -6116.62 4368.54 -3761.86 0.71 -0.55 0.45 1 - -6098.01 4197.74 -4001.88 0.71 -0.55 0.45 1 - -6993.87 4359.12 -1738.54 0.79 -0.56 0.25 1 - -6848.10 4458.28 -1975.50 0.79 -0.56 0.25 1 - -6702.62 4557.61 -2212.33 0.79 -0.56 0.25 1 - -6556.70 4656.98 -2449.23 0.79 -0.56 0.25 1 - -6411.11 4756.29 -2686.29 0.79 -0.56 0.25 1 - -6828.27 4602.72 -1718.80 0.79 -0.56 0.25 1 - -6682.46 4702.11 -1955.48 0.79 -0.56 0.25 1 - -6536.87 4801.42 -2192.54 0.79 -0.56 0.25 1 - -6391.20 4900.60 -2429.26 0.79 -0.56 0.25 1 - -6662.63 4846.55 -1698.78 0.79 -0.56 0.25 1 - -6516.86 4945.71 -1935.74 0.79 -0.56 0.25 1 - -6371.19 5044.89 -2172.47 0.79 -0.56 0.25 1 - -6497.13 5090.17 -1678.81 0.79 -0.56 0.25 1 - -6351.36 5189.33 -1915.77 0.79 -0.56 0.25 1 - -6000.23 3992.84 -4289.41 0.73 -0.45 0.51 1 - -6196.91 3904.92 -4087.45 0.73 -0.45 0.51 1 - -5941.19 3821.88 -4522.56 0.73 -0.45 0.51 1 - -6137.96 3733.67 -4320.78 0.73 -0.45 0.51 1 - -6334.40 3645.49 -4118.86 0.73 -0.45 0.51 1 - -6078.68 3562.45 -4553.98 0.73 -0.45 0.51 1 - -6275.45 3474.24 -4352.20 0.73 -0.45 0.51 1 - -6411.13 4529.79 -3052.74 0.79 -0.48 0.39 1 - -6556.76 4273.27 -3069.96 0.79 -0.48 0.39 1 - -6702.53 4017.13 -3087.01 0.79 -0.48 0.39 1 - -6848.02 3760.82 -3104.18 0.79 -0.48 0.39 1 - -6993.83 3504.45 -3121.51 0.79 -0.48 0.39 1 - -6391.21 4364.45 -3296.76 0.79 -0.48 0.39 1 - -6536.70 4108.13 -3313.94 0.79 -0.48 0.39 1 - -6682.47 3851.99 -3330.98 0.79 -0.48 0.39 1 - -6828.14 3595.82 -3348.26 0.79 -0.48 0.39 1 - -6371.14 4199.30 -3540.74 0.79 -0.48 0.39 1 - -6516.81 3943.14 -3558.01 0.79 -0.48 0.39 1 - -6662.59 3687.00 -3575.05 0.79 -0.48 0.39 1 - -6351.26 4034.31 -3784.81 0.79 -0.48 0.39 1 - -6497.03 3778.17 -3801.85 0.79 -0.48 0.39 1 - -7011.46 3708.41 -2812.54 0.82 -0.49 0.30 1 - -6863.91 4274.21 -2294.47 0.82 -0.49 0.30 1 - -6863.91 4119.04 -2545.53 0.82 -0.49 0.30 1 - -6863.80 3963.86 -2796.82 0.82 -0.49 0.30 1 - -6716.57 4374.44 -2529.96 0.82 -0.49 0.30 1 - -6716.47 4219.25 -2781.25 0.82 -0.49 0.30 1 - -6569.05 4474.52 -2765.36 0.82 -0.49 0.30 1 - -7166.05 3420.51 -2808.23 0.86 -0.43 0.27 1 - -7166.15 3575.70 -2556.93 0.86 -0.43 0.27 1 - -7166.15 3730.86 -2305.87 0.86 -0.43 0.27 1 - -7166.11 3886.25 -2054.53 0.86 -0.43 0.27 1 - -7166.11 4041.42 -1803.47 0.86 -0.43 0.27 1 - -7295.12 3310.20 -2566.46 0.86 -0.43 0.27 1 - -7295.23 3465.39 -2315.17 0.86 -0.43 0.27 1 - -7295.08 3620.76 -2064.06 0.86 -0.43 0.27 1 - -7295.19 3775.94 -1812.77 0.86 -0.43 0.27 1 - -7424.20 3199.89 -2324.70 0.86 -0.43 0.27 1 - -7424.06 3355.26 -2073.59 0.86 -0.43 0.27 1 - -7424.16 3510.44 -1822.30 0.86 -0.43 0.27 1 - -7553.21 3089.92 -2083.21 0.86 -0.43 0.27 1 - -7553.31 3245.10 -1831.92 0.86 -0.43 0.27 1 - -7067.81 3151.13 -3324.93 0.82 -0.35 0.46 1 - -7012.32 2975.97 -3556.17 0.82 -0.35 0.46 1 - -6957.04 2801.10 -3787.44 0.82 -0.35 0.46 1 - -6901.39 2626.05 -4018.85 0.82 -0.35 0.46 1 - -6846.10 2450.96 -4250.23 0.82 -0.35 0.46 1 - -6900.79 3249.18 -3547.75 0.82 -0.35 0.46 1 - -6845.16 3074.35 -3779.04 0.82 -0.35 0.46 1 - -6789.86 2899.26 -4010.43 0.82 -0.35 0.46 1 - -6734.39 2724.32 -4241.54 0.82 -0.35 0.46 1 - -6733.63 3347.56 -3770.62 0.82 -0.35 0.46 1 - -6678.14 3172.40 -4001.86 0.82 -0.35 0.46 1 - -6622.66 2997.47 -4232.98 0.82 -0.35 0.46 1 - -6566.63 3445.83 -3993.31 0.82 -0.35 0.46 1 - -6511.14 3270.67 -4224.56 0.82 -0.35 0.46 1 - -7200.40 2805.26 -3332.83 0.86 -0.28 0.42 1 - -7291.61 2524.57 -3332.83 0.86 -0.28 0.42 1 - -7382.80 2243.65 -3332.95 0.86 -0.28 0.42 1 - -7474.16 1962.84 -3332.78 0.86 -0.28 0.42 1 - -7142.71 2631.29 -3564.34 0.86 -0.28 0.42 1 - -7233.92 2350.60 -3564.34 0.86 -0.28 0.42 1 - -7325.11 2069.68 -3564.46 0.86 -0.28 0.42 1 - -7085.22 2457.39 -3795.99 0.86 -0.28 0.42 1 - -7176.41 2176.47 -3796.11 0.86 -0.28 0.42 1 - -7027.53 2283.42 -4027.50 0.86 -0.28 0.42 1 - -7623.35 1856.03 -3062.35 0.89 -0.29 0.35 1 - -7532.16 2136.95 -3062.23 0.89 -0.29 0.35 1 - -7440.96 2417.65 -3062.23 0.89 -0.29 0.35 1 - -7349.61 2698.67 -3062.28 0.89 -0.29 0.35 1 - -7258.41 2979.37 -3062.28 0.89 -0.29 0.35 1 - -7661.75 2023.77 -2822.21 0.89 -0.29 0.35 1 - -7570.57 2304.69 -2822.09 0.89 -0.29 0.35 1 - -7479.20 2585.49 -2822.26 0.89 -0.29 0.35 1 - -7388.02 2866.41 -2822.14 0.89 -0.29 0.35 1 - -7700.16 2191.51 -2582.07 0.89 -0.29 0.35 1 - -7608.80 2472.31 -2582.24 0.89 -0.29 0.35 1 - -7517.61 2753.23 -2582.12 0.89 -0.29 0.35 1 - -7738.59 2359.20 -2342.37 0.89 -0.29 0.35 1 - -7647.40 2640.12 -2342.25 0.89 -0.29 0.35 1 - -6979.24 2041.25 -4250.21 0.87 -0.20 0.46 1 - -7126.94 1932.03 -4018.78 0.87 -0.20 0.46 1 - -7274.71 1823.21 -3787.53 0.87 -0.20 0.46 1 - -7422.26 1714.09 -3556.27 0.87 -0.20 0.46 1 - -7570.16 1604.94 -3324.98 0.87 -0.20 0.46 1 - -7049.53 1754.42 -4241.54 0.87 -0.20 0.46 1 - -7197.08 1645.31 -4010.27 0.87 -0.20 0.46 1 - -7344.85 1536.49 -3779.03 0.87 -0.20 0.46 1 - -7492.59 1427.44 -3547.91 0.87 -0.20 0.46 1 - -7119.67 1467.70 -4233.03 0.87 -0.20 0.46 1 - -7267.42 1358.66 -4001.91 0.87 -0.20 0.46 1 - -7415.19 1249.83 -3770.67 0.87 -0.20 0.46 1 - -7190.01 1181.05 -4224.67 0.87 -0.20 0.46 1 - -7337.78 1072.22 -3993.42 0.87 -0.20 0.46 1 - -8172.96 942.49 -1803.52 0.95 -0.16 0.27 1 - -8081.73 1068.24 -2054.70 0.95 -0.16 0.27 1 - -7990.52 1193.77 -2305.76 0.95 -0.16 0.27 1 - -7899.20 1319.40 -2557.15 0.95 -0.16 0.27 1 - -7807.99 1444.93 -2808.21 0.95 -0.16 0.27 1 - -8121.29 1233.21 -1812.97 0.95 -0.16 0.27 1 - -8030.05 1358.96 -2064.15 0.95 -0.16 0.27 1 - -7938.76 1484.37 -2315.42 0.95 -0.16 0.27 1 - -7847.52 1610.13 -2566.60 0.95 -0.16 0.27 1 - -8069.61 1523.93 -1822.42 0.95 -0.16 0.27 1 - -7978.32 1649.34 -2073.69 0.95 -0.16 0.27 1 - -7887.08 1775.09 -2324.87 0.95 -0.16 0.27 1 - -8018.12 1814.29 -1832.05 0.95 -0.16 0.27 1 - -7926.88 1940.05 -2083.23 0.95 -0.16 0.27 1 - -8125.84 744.34 -2059.09 0.95 -0.08 0.30 1 - -7882.83 827.78 -2796.85 0.95 -0.08 0.30 1 - -7974.04 702.25 -2545.78 0.95 -0.08 0.30 1 - -8065.27 576.50 -2294.60 0.95 -0.08 0.30 1 - -7913.79 534.51 -2781.18 0.95 -0.08 0.30 1 - -8005.02 408.76 -2530.00 0.95 -0.08 0.30 1 - -7944.51 241.26 -2765.43 0.95 -0.08 0.30 1 - -7039.88 2597.85 3749.05 0.85 -0.28 -0.45 1 - -6976.72 2422.15 3977.78 0.85 -0.28 -0.45 1 - -7194.26 2492.85 3520.31 0.85 -0.28 -0.45 1 - -7131.09 2317.15 3749.05 0.85 -0.28 -0.45 1 - -7067.92 2141.45 3977.78 0.85 -0.28 -0.45 1 - -7285.46 2212.15 3520.31 0.85 -0.28 -0.45 1 - -7222.39 2036.11 3749.10 0.85 -0.28 -0.45 1 - -6696.49 535.00 5068.74 0.83 -0.05 -0.55 1 - -7131.54 489.55 4421.44 0.83 -0.05 -0.55 1 - -6976.90 409.46 4659.90 0.83 -0.05 -0.55 1 - -6822.26 329.37 4898.36 0.83 -0.05 -0.55 1 - -7102.87 203.62 4489.72 0.83 -0.05 -0.55 1 - -6948.23 123.52 4728.18 0.83 -0.05 -0.55 1 - -7074.00 -82.10 4557.80 0.83 -0.05 -0.55 1 - -5890.79 129.96 5994.03 0.72 0.01 -0.70 1 - -6038.36 -73.16 5838.87 0.72 0.01 -0.70 1 - -6186.09 -276.30 5683.50 0.72 0.01 -0.70 1 - -6088.21 213.92 5791.09 0.72 0.01 -0.70 1 - -6235.94 10.77 5635.73 0.72 0.01 -0.70 1 - -6285.43 297.85 5587.99 0.72 0.01 -0.70 1 - -6773.45 4997.63 291.38 0.79 -0.60 -0.11 1 - -6668.18 5089.98 551.57 0.79 -0.60 -0.11 1 - -6563.03 5182.58 811.41 0.79 -0.60 -0.11 1 - -6457.81 5274.85 1071.37 0.79 -0.60 -0.11 1 - -6352.75 5367.35 1331.54 0.79 -0.60 -0.11 1 - -6847.82 4856.00 539.77 0.79 -0.60 -0.11 1 - -6742.59 4948.27 799.72 0.79 -0.60 -0.11 1 - -6637.45 5040.87 1059.57 0.79 -0.60 -0.11 1 - -6532.44 5133.28 1319.51 0.79 -0.60 -0.11 1 - -6922.23 4714.28 787.92 0.79 -0.60 -0.11 1 - -6817.22 4806.69 1047.87 0.79 -0.60 -0.11 1 - -6712.07 4899.30 1307.71 0.79 -0.60 -0.11 1 - -6996.86 4572.71 1036.07 0.79 -0.60 -0.11 1 - -6891.71 4665.31 1295.92 0.79 -0.60 -0.11 1 - -7570.16 3691.72 51.38 0.87 -0.50 -0.03 1 - -7422.32 3947.33 57.22 0.87 -0.50 -0.03 1 - -7274.81 4202.91 63.17 0.87 -0.50 -0.03 1 - -7126.90 4458.60 69.24 0.87 -0.50 -0.03 1 - -6979.25 4714.37 75.09 0.87 -0.50 -0.03 1 - -7492.68 3811.63 309.78 0.87 -0.50 -0.03 1 - -7344.91 4067.13 315.96 0.87 -0.50 -0.03 1 - -7197.26 4322.90 321.81 0.87 -0.50 -0.03 1 - -7049.55 4578.33 327.74 0.87 -0.50 -0.03 1 - -7415.27 3931.44 568.52 0.87 -0.50 -0.03 1 - -7267.42 4187.05 574.36 0.87 -0.50 -0.03 1 - -7119.71 4442.48 580.30 0.87 -0.50 -0.03 1 - -7337.92 4051.17 827.02 0.87 -0.50 -0.03 1 - -7190.07 4306.78 832.86 0.87 -0.50 -0.03 1 - -7258.37 4071.45 -1295.27 0.89 -0.44 0.10 1 - -7349.71 3945.74 -1044.10 0.89 -0.44 0.10 1 - -7440.92 3820.21 -793.04 0.89 -0.44 0.10 1 - -7532.20 3694.57 -541.64 0.89 -0.44 0.10 1 - -7623.40 3569.04 -290.58 0.89 -0.44 0.10 1 - -7388.03 3806.08 -1301.47 0.89 -0.44 0.10 1 - -7479.38 3680.36 -1050.31 0.89 -0.44 0.10 1 - -7570.52 3554.90 -799.01 0.89 -0.44 0.10 1 - -7661.86 3429.19 -547.85 0.89 -0.44 0.10 1 - -7517.70 3540.70 -1307.68 0.89 -0.44 0.10 1 - -7608.83 3415.24 -1056.38 0.89 -0.44 0.10 1 - -7700.18 3289.52 -805.22 0.89 -0.44 0.10 1 - -7647.35 3275.73 -1313.74 0.89 -0.44 0.10 1 - -7738.70 3150.02 -1062.58 0.89 -0.44 0.10 1 - -7849.25 2776.83 1272.50 0.92 -0.38 -0.10 1 - -7816.30 2923.33 1018.02 0.92 -0.38 -0.10 1 - -7783.67 3069.57 763.65 0.92 -0.38 -0.10 1 - -7750.72 3215.91 509.38 0.92 -0.38 -0.10 1 - -7717.99 3362.49 254.96 0.92 -0.38 -0.10 1 - -7735.95 3049.68 1272.46 0.92 -0.38 -0.10 1 - -7703.00 3196.03 1018.18 0.92 -0.38 -0.10 1 - -7670.37 3342.26 763.81 0.92 -0.38 -0.10 1 - -7637.65 3488.68 509.59 0.92 -0.38 -0.10 1 - -7622.65 3322.38 1272.62 0.92 -0.38 -0.10 1 - -7589.93 3468.80 1018.40 0.92 -0.38 -0.10 1 - -7557.31 3615.04 764.03 0.92 -0.38 -0.10 1 - -7509.59 3595.15 1272.83 0.92 -0.38 -0.10 1 - -7476.96 3741.39 1018.47 0.92 -0.38 -0.10 1 - -7593.44 3088.15 -1561.60 0.93 -0.30 0.19 1 - -7684.50 2962.50 -1310.29 0.93 -0.30 0.19 1 - -7775.88 2836.89 -1059.26 0.93 -0.30 0.19 1 - -7593.36 2932.87 -1812.77 0.93 -0.30 0.19 1 - -7684.65 2807.29 -1561.40 0.93 -0.30 0.19 1 - -7775.80 2681.61 -1310.43 0.93 -0.30 0.19 1 - -7867.08 2556.04 -1059.06 0.93 -0.30 0.19 1 - -7593.27 2777.59 -2063.94 0.93 -0.30 0.19 1 - -7684.56 2652.01 -1812.57 0.93 -0.30 0.19 1 - -7775.95 2526.41 -1561.54 0.93 -0.30 0.19 1 - -7867.00 2400.92 -1310.43 0.93 -0.30 0.19 1 - -7958.38 2275.16 -1059.21 0.93 -0.30 0.19 1 - -7684.48 2496.89 -2063.94 0.93 -0.30 0.19 1 - -7775.86 2371.13 -1812.71 0.93 -0.30 0.19 1 - -7867.15 2245.71 -1561.54 0.93 -0.30 0.19 1 - -7958.30 2119.88 -1310.37 0.93 -0.30 0.19 1 - -7775.78 2215.85 -2063.88 0.93 -0.30 0.19 1 - -7867.07 2090.43 -1812.71 0.93 -0.30 0.19 1 - -7958.45 1964.67 -1561.49 0.93 -0.30 0.19 1 - -7807.98 3157.92 -36.42 0.95 -0.31 0.02 1 - -7899.28 2877.04 -36.57 0.95 -0.31 0.02 1 - -7990.48 2596.34 -36.56 0.95 -0.31 0.02 1 - -8081.78 2315.30 -36.51 0.95 -0.31 0.02 1 - -8172.99 2034.60 -36.51 0.95 -0.31 0.02 1 - -7847.57 3015.52 -292.22 0.95 -0.31 0.02 1 - -7938.86 2734.64 -292.37 0.95 -0.31 0.02 1 - -8030.07 2453.79 -292.17 0.95 -0.31 0.02 1 - -8121.37 2172.90 -292.31 0.95 -0.31 0.02 1 - -7887.15 2873.13 -548.02 0.95 -0.31 0.02 1 - -7978.36 2592.27 -547.82 0.95 -0.31 0.02 1 - -8069.66 2311.39 -547.97 0.95 -0.31 0.02 1 - -7926.88 2730.83 -803.42 0.95 -0.31 0.02 1 - -8018.18 2449.95 -803.57 0.95 -0.31 0.02 1 - -7852.14 3016.98 255.10 0.95 -0.31 -0.06 1 - -8065.33 2310.11 510.40 0.95 -0.31 -0.06 1 - -7974.13 2590.80 510.40 0.95 -0.31 -0.06 1 - -7882.83 2871.69 510.55 0.95 -0.31 -0.06 1 - -8005.05 2445.74 765.71 0.95 -0.31 -0.06 1 - -7913.75 2726.63 765.85 0.95 -0.31 -0.06 1 - -7944.53 2581.30 1020.95 0.95 -0.31 -0.06 1 - -8220.39 1816.31 254.90 0.97 -0.23 -0.10 1 - -8160.74 1954.06 509.26 0.97 -0.23 -0.10 1 - -8101.43 2091.70 763.54 0.97 -0.23 -0.10 1 - -8041.78 2229.29 1018.10 0.97 -0.23 -0.10 1 - -7982.37 2367.11 1272.52 0.97 -0.23 -0.10 1 - -8229.60 1666.99 509.41 0.97 -0.23 -0.10 1 - -8170.05 1804.39 763.83 0.97 -0.23 -0.10 1 - -8110.64 1942.22 1018.25 0.97 -0.23 -0.10 1 - -8051.09 2079.78 1272.46 0.97 -0.23 -0.10 1 - -8238.91 1517.32 763.97 0.97 -0.23 -0.10 1 - -8179.26 1655.07 1018.34 0.97 -0.23 -0.10 1 - -8119.71 1792.63 1272.55 0.97 -0.23 -0.10 1 - -8248.21 1367.81 1018.34 0.97 -0.23 -0.10 1 - -8188.57 1505.56 1272.70 0.97 -0.23 -0.10 1 - -8265.28 1593.44 -290.55 0.98 -0.17 0.10 1 - -8265.29 1438.29 -541.87 0.98 -0.17 0.10 1 - -8265.29 1283.12 -792.93 0.98 -0.17 0.10 1 - -8265.28 1127.72 -1044.27 0.98 -0.17 0.10 1 - -8265.28 972.55 -1295.33 0.98 -0.17 0.10 1 - -8214.19 1729.09 -547.97 0.98 -0.17 0.10 1 - -8214.20 1573.94 -799.29 0.98 -0.17 0.10 1 - -8214.19 1418.52 -1050.37 0.98 -0.17 0.10 1 - -8214.20 1263.37 -1301.69 0.98 -0.17 0.10 1 - -8163.11 1864.74 -805.40 0.98 -0.17 0.10 1 - -8163.10 1709.32 -1056.48 0.98 -0.17 0.10 1 - -8163.11 1554.17 -1307.80 0.98 -0.17 0.10 1 - -8112.26 2000.11 -1062.58 0.98 -0.17 0.10 1 - -8112.27 1844.96 -1313.90 0.98 -0.17 0.10 1 - -6307.00 5304.53 1738.54 0.78 -0.58 -0.25 1 - -6356.27 5135.25 1975.50 0.78 -0.58 -0.25 1 - -6405.78 4966.19 2212.33 0.78 -0.58 -0.25 1 - -6455.19 4796.71 2449.23 0.78 -0.58 -0.25 1 - -6504.65 4627.56 2686.29 0.78 -0.58 -0.25 1 - -6487.51 5071.76 1718.80 0.78 -0.58 -0.25 1 - -6536.97 4902.37 1955.48 0.78 -0.58 -0.25 1 - -6586.43 4733.22 2192.54 0.78 -0.58 -0.25 1 - -6635.74 4564.03 2429.26 0.78 -0.58 -0.25 1 - -6668.21 4838.87 1698.78 0.78 -0.58 -0.25 1 - -6717.47 4669.59 1935.74 0.78 -0.58 -0.25 1 - -6766.79 4500.41 2172.47 0.78 -0.58 -0.25 1 - -6848.77 4606.19 1678.81 0.78 -0.58 -0.25 1 - -6898.03 4436.91 1915.77 0.78 -0.58 -0.25 1 - -7160.19 3546.94 2640.25 0.83 -0.47 -0.29 1 - -6822.16 4234.10 2485.19 0.83 -0.47 -0.29 1 - -6976.81 3985.00 2450.18 0.83 -0.47 -0.29 1 - -7131.46 3735.90 2415.16 0.83 -0.47 -0.29 1 - -6948.22 4173.75 2225.04 0.83 -0.47 -0.29 1 - -7102.87 3924.65 2190.02 0.83 -0.47 -0.29 1 - -7073.94 4113.48 1964.84 0.83 -0.47 -0.29 1 - -7308.66 3872.07 1395.69 0.85 -0.49 -0.17 1 - -7267.41 4030.18 1149.73 0.85 -0.49 -0.17 1 - -7201.22 3969.21 1653.03 0.85 -0.49 -0.17 1 - -7160.31 4127.24 1407.12 0.85 -0.49 -0.17 1 - -7119.05 4285.34 1161.16 0.85 -0.49 -0.17 1 - -7052.97 4224.08 1664.63 0.85 -0.49 -0.17 1 - -7011.71 4382.19 1418.68 0.85 -0.49 -0.17 1 - -6722.66 4107.12 2993.56 0.81 -0.42 -0.40 1 - -6575.03 4154.97 3244.86 0.81 -0.42 -0.40 1 - -6871.60 3854.81 2955.75 0.81 -0.42 -0.40 1 - -6723.88 3902.96 3206.86 0.81 -0.42 -0.40 1 - -6576.25 3950.81 3458.15 0.81 -0.42 -0.40 1 - -7020.44 3602.79 2917.75 0.81 -0.42 -0.40 1 - -6872.82 3650.65 3169.04 0.81 -0.42 -0.40 1 - -6725.10 3698.80 3420.15 0.81 -0.42 -0.40 1 - -6577.48 3746.65 3671.44 0.81 -0.42 -0.40 1 - -7169.38 3350.48 2879.93 0.81 -0.42 -0.40 1 - -7021.66 3398.63 3131.04 0.81 -0.42 -0.40 1 - -6874.04 3446.49 3382.33 0.81 -0.42 -0.40 1 - -6726.47 3494.44 3633.39 0.81 -0.42 -0.40 1 - -6578.70 3542.49 3884.74 0.81 -0.42 -0.40 1 - -7170.60 3146.32 3093.22 0.81 -0.42 -0.40 1 - -7022.88 3194.47 3344.33 0.81 -0.42 -0.40 1 - -6875.26 3242.33 3595.63 0.81 -0.42 -0.40 1 - -6727.69 3290.28 3846.69 0.81 -0.42 -0.40 1 - -7171.82 2942.16 3306.52 0.81 -0.42 -0.40 1 - -7024.10 2990.31 3557.63 0.81 -0.42 -0.40 1 - -6876.48 3038.17 3808.92 0.81 -0.42 -0.40 1 - -7746.88 2848.62 1640.88 0.90 -0.39 -0.22 1 - -7406.41 3357.41 2126.19 0.90 -0.39 -0.22 1 - -7518.92 3238.81 1880.30 0.90 -0.39 -0.22 1 - -7631.43 3120.20 1634.40 0.90 -0.39 -0.22 1 - -7403.70 3510.62 1873.67 0.90 -0.39 -0.22 1 - -7516.21 3392.02 1627.78 0.90 -0.39 -0.22 1 - -7400.76 3663.60 1621.30 0.90 -0.39 -0.22 1 - -7852.84 2396.34 1901.15 0.91 -0.29 -0.30 1 - -7761.54 2677.23 1901.29 0.91 -0.29 -0.30 1 - -7825.03 2232.08 2145.11 0.91 -0.29 -0.30 1 - -7733.83 2512.93 2144.91 0.91 -0.29 -0.30 1 - -7642.53 2793.82 2145.05 0.91 -0.29 -0.30 1 - -7797.32 2067.79 2388.73 0.91 -0.29 -0.30 1 - -7706.02 2348.67 2388.87 0.91 -0.29 -0.30 1 - -7614.81 2629.52 2388.67 0.91 -0.29 -0.30 1 - -7523.51 2910.40 2388.81 0.91 -0.29 -0.30 1 - -7769.51 1903.52 2632.69 0.91 -0.29 -0.30 1 - -7678.30 2184.37 2632.49 0.91 -0.29 -0.30 1 - -7587.00 2465.26 2632.63 0.91 -0.29 -0.30 1 - -7495.80 2745.95 2632.63 0.91 -0.29 -0.30 1 - -7404.50 3026.99 2632.57 0.91 -0.29 -0.30 1 - -7650.49 2020.11 2876.45 0.91 -0.29 -0.30 1 - -7559.29 2300.96 2876.25 0.91 -0.29 -0.30 1 - -7467.99 2581.85 2876.39 0.91 -0.29 -0.30 1 - -7376.78 2862.54 2876.39 0.91 -0.29 -0.30 1 - -7531.48 2136.70 3120.21 0.91 -0.29 -0.30 1 - -7440.27 2417.55 3120.01 0.91 -0.29 -0.30 1 - -7348.97 2698.43 3120.15 0.91 -0.29 -0.30 1 - -7877.55 1762.65 2378.51 0.95 -0.21 -0.22 1 - -8007.98 1961.42 1634.22 0.95 -0.21 -0.22 1 - -7986.67 1799.33 1880.12 0.95 -0.21 -0.22 1 - -7965.37 1637.24 2126.01 0.95 -0.21 -0.22 1 - -8074.49 1673.76 1627.82 0.95 -0.21 -0.22 1 - -8053.19 1511.67 1873.72 0.95 -0.21 -0.22 1 - -8140.77 1386.18 1621.16 0.95 -0.21 -0.22 1 - -7761.61 503.20 3244.69 0.91 -0.14 -0.40 1 - -7852.85 628.95 2993.51 0.91 -0.14 -0.40 1 - -7642.56 669.28 3458.04 0.91 -0.14 -0.40 1 - -7733.85 794.69 3206.77 0.91 -0.14 -0.40 1 - -7825.09 920.45 2955.59 0.91 -0.14 -0.40 1 - -7523.57 835.03 3671.30 0.91 -0.14 -0.40 1 - -7614.81 960.78 3420.12 0.91 -0.14 -0.40 1 - -6058.09 876.26 -5785.33 0.68 -0.07 0.73 1 - -5910.36 673.12 -5940.69 0.68 -0.07 0.73 1 - -5762.79 470.00 -6095.86 0.68 -0.07 0.73 1 - -5615.07 266.60 -6251.17 0.68 -0.07 0.73 1 - -5467.50 63.49 -6406.34 0.68 -0.07 0.73 1 - -5845.41 959.41 -5972.76 0.68 -0.07 0.73 1 - -5697.68 756.26 -6128.12 0.68 -0.07 0.73 1 - -5550.11 552.90 -6283.24 0.68 -0.07 0.73 1 - -5402.38 349.75 -6438.60 0.68 -0.07 0.73 1 - -5632.72 1042.55 -6160.19 0.68 -0.07 0.73 1 - -5485.15 839.19 -6315.31 0.68 -0.07 0.73 1 - -5337.42 636.04 -6470.67 0.68 -0.07 0.73 1 - -5420.39 1125.46 -6347.53 0.68 -0.07 0.73 1 - -5272.66 922.31 -6502.89 0.68 -0.07 0.73 1 - -6504.60 -333.22 -5340.40 0.77 -0.03 0.63 1 - -6455.15 -45.45 -5385.68 0.77 -0.03 0.63 1 - -6405.75 242.01 -5431.26 0.77 -0.03 0.63 1 - -6356.31 529.53 -5476.50 0.77 -0.03 0.63 1 - -6307.07 817.27 -5521.93 0.77 -0.03 0.63 1 - -6635.70 -131.75 -5168.62 0.77 -0.03 0.63 1 - -6586.25 155.77 -5213.86 0.77 -0.03 0.63 1 - -6536.85 443.23 -5259.44 0.77 -0.03 0.63 1 - -6487.61 730.72 -5304.83 0.77 -0.03 0.63 1 - -6766.80 69.47 -4996.80 0.77 -0.03 0.63 1 - -6717.56 356.96 -5042.19 0.77 -0.03 0.63 1 - -6668.16 644.42 -5087.77 0.77 -0.03 0.63 1 - -6898.10 270.66 -4825.13 0.77 -0.03 0.63 1 - -6848.70 558.12 -4870.72 0.77 -0.03 0.63 1 - -6136.44 563.60 -5731.47 0.72 -0.01 0.70 1 - -5890.79 -129.96 -5994.02 0.72 -0.01 0.70 1 - -6038.36 73.16 -5838.86 0.72 -0.01 0.70 1 - -6186.09 276.30 -5683.50 0.72 -0.01 0.70 1 - -6088.21 -213.92 -5791.08 0.72 -0.01 0.70 1 - -6235.94 -10.77 -5635.72 0.72 -0.01 0.70 1 - -6285.43 -297.85 -5587.98 0.72 -0.01 0.70 1 - -6402.26 -1818.47 -5150.16 0.74 0.17 0.65 1 - -6212.98 -1167.75 -5539.02 0.74 0.17 0.65 1 - -6220.05 -1450.95 -5455.73 0.74 0.17 0.65 1 - -6227.12 -1734.16 -5372.44 0.74 0.17 0.65 1 - -6044.90 -1366.89 -5677.97 0.74 0.17 0.65 1 - -6051.97 -1650.10 -5594.68 0.74 0.17 0.65 1 - -5876.63 -1565.75 -5816.81 0.74 0.17 0.65 1 - -6575.04 -1043.94 -5167.47 0.81 0.17 0.55 1 - -6722.77 -840.79 -5012.11 0.81 0.17 0.55 1 - -6576.35 -1326.15 -5080.12 0.81 0.17 0.55 1 - -6723.93 -1122.78 -4925.00 0.81 0.17 0.55 1 - -6871.65 -919.63 -4769.63 0.81 0.17 0.55 1 - -6577.51 -1608.14 -4993.00 0.81 0.17 0.55 1 - -6725.23 -1404.99 -4837.64 0.81 0.17 0.55 1 - -6872.81 -1201.63 -4682.52 0.81 0.17 0.55 1 - -7020.53 -998.48 -4527.16 0.81 0.17 0.55 1 - -6578.82 -1890.35 -4905.65 0.81 0.17 0.55 1 - -6726.39 -1686.98 -4750.53 0.81 0.17 0.55 1 - -6874.12 -1483.83 -4595.16 0.81 0.17 0.55 1 - -7021.69 -1280.72 -4440.00 0.81 0.17 0.55 1 - -7169.42 -1077.32 -4284.68 0.81 0.17 0.55 1 - -6727.70 -1969.19 -4663.17 0.81 0.17 0.55 1 - -6875.27 -1765.83 -4508.05 0.81 0.17 0.55 1 - -7023.00 -1562.68 -4352.69 0.81 0.17 0.55 1 - -7170.57 -1359.56 -4197.52 0.81 0.17 0.55 1 - -6876.58 -2048.04 -4420.69 0.81 0.17 0.55 1 - -7024.15 -1844.67 -4265.57 0.81 0.17 0.55 1 - -7171.88 -1641.52 -4110.21 0.81 0.17 0.55 1 - -4446.50 -1228.38 -7047.02 0.58 0.11 0.80 1 - -4630.20 -1022.07 -6942.14 0.58 0.11 0.80 1 - -4813.71 -815.77 -6837.66 0.58 0.11 0.80 1 - -4997.21 -609.61 -6732.85 0.58 0.11 0.80 1 - -5181.03 -403.35 -6628.19 0.58 0.11 0.80 1 - -4671.97 -1305.92 -6872.54 0.58 0.11 0.80 1 - -4855.47 -1099.76 -6767.74 0.58 0.11 0.80 1 - -5038.98 -893.46 -6663.26 0.58 0.11 0.80 1 - -5222.61 -687.35 -6558.66 0.58 0.11 0.80 1 - -4897.24 -1383.61 -6698.14 0.58 0.11 0.80 1 - -5080.87 -1177.50 -6593.55 0.58 0.11 0.80 1 - -5264.38 -971.20 -6489.07 0.58 0.11 0.80 1 - -5122.64 -1461.35 -6523.95 0.58 0.11 0.80 1 - -5306.15 -1255.05 -6419.47 0.58 0.11 0.80 1 - -5494.17 -301.51 -6376.67 0.70 0.07 0.71 1 - -5692.87 -383.48 -6174.10 0.70 0.07 0.71 1 - -5891.61 -465.51 -5971.89 0.70 0.07 0.71 1 - -6090.31 -547.72 -5769.28 0.70 0.07 0.71 1 - -6289.21 -629.71 -5566.87 0.70 0.07 0.71 1 - -5529.81 -587.34 -6311.96 0.70 0.07 0.71 1 - -5728.35 -669.59 -6109.54 0.70 0.07 0.71 1 - -5927.25 -751.59 -5907.13 0.70 0.07 0.71 1 - -6125.79 -833.59 -5704.77 0.70 0.07 0.71 1 - -5565.30 -873.46 -6247.40 0.70 0.07 0.71 1 - -5764.00 -955.42 -6044.83 0.70 0.07 0.71 1 - -5962.54 -1037.42 -5842.46 0.70 0.07 0.71 1 - -5600.78 -1159.32 -6182.88 0.70 0.07 0.71 1 - -5799.48 -1241.29 -5980.31 0.70 0.07 0.71 1 - -6696.49 -535.00 -5068.73 0.83 0.05 0.55 1 - -7131.54 -489.55 -4421.44 0.83 0.05 0.55 1 - -6976.90 -409.46 -4659.90 0.83 0.05 0.55 1 - -6822.26 -329.37 -4898.35 0.83 0.05 0.55 1 - -7102.87 -203.62 -4489.72 0.83 0.05 0.55 1 - -6948.23 -123.52 -4728.17 0.83 0.05 0.55 1 - -7074.00 82.10 -4557.80 0.83 0.05 0.55 1 - -7718.03 1275.73 -3121.41 0.92 -0.08 0.39 1 - -7750.74 982.70 -3104.13 0.92 -0.08 0.39 1 - -7783.66 689.88 -3087.07 0.92 -0.08 0.39 1 - -7816.28 396.73 -3070.00 0.92 -0.08 0.39 1 - -7849.22 103.69 -3052.82 0.92 -0.08 0.39 1 - -7637.71 1104.53 -3348.13 0.92 -0.08 0.39 1 - -7670.30 811.61 -3331.17 0.92 -0.08 0.39 1 - -7703.25 518.57 -3313.99 0.92 -0.08 0.39 1 - -7735.93 225.76 -3296.83 0.92 -0.08 0.39 1 - -7557.27 933.44 -3575.17 0.92 -0.08 0.39 1 - -7589.98 640.42 -3557.89 0.92 -0.08 0.39 1 - -7622.66 347.61 -3540.73 0.92 -0.08 0.39 1 - -7476.92 762.47 -3802.00 0.92 -0.08 0.39 1 - -7509.63 469.44 -3784.72 0.92 -0.08 0.39 1 - -7852.11 1121.03 -2812.60 0.95 -0.08 0.30 1 - -7943.31 995.50 -2561.54 0.95 -0.08 0.30 1 - -8034.55 869.75 -2310.36 0.95 -0.08 0.30 1 - -7052.81 400.16 -4522.73 0.85 -0.07 0.51 1 - -7011.68 690.90 -4553.93 0.85 -0.07 0.51 1 - -7201.22 296.57 -4289.40 0.85 -0.07 0.51 1 - -7160.24 587.17 -4320.90 0.85 -0.07 0.51 1 - -7119.11 877.91 -4352.10 0.85 -0.07 0.51 1 - -7308.60 483.23 -4087.66 0.85 -0.07 0.51 1 - -7267.47 773.97 -4118.86 0.85 -0.07 0.51 1 - -7982.35 -79.52 -2686.35 0.97 -0.01 0.25 1 - -8041.80 86.43 -2449.21 0.97 -0.01 0.25 1 - -8101.36 252.45 -2212.48 0.97 -0.01 0.25 1 - -8160.72 418.27 -1975.54 0.97 -0.01 0.25 1 - -8220.40 584.20 -1738.49 0.97 -0.01 0.25 1 - -8051.07 -207.99 -2429.33 0.97 -0.01 0.25 1 - -8110.42 -42.16 -2192.39 0.97 -0.01 0.25 1 - -8169.99 123.86 -1955.66 0.97 -0.01 0.25 1 - -8229.58 289.67 -1718.82 0.97 -0.01 0.25 1 - -8119.69 -336.57 -2172.51 0.97 -0.01 0.25 1 - -8179.28 -170.77 -1935.66 0.97 -0.01 0.25 1 - -8238.85 -4.74 -1698.94 0.97 -0.01 0.25 1 - -8188.55 -465.18 -1915.79 0.97 -0.01 0.25 1 - -8248.11 -299.15 -1679.06 0.97 -0.01 0.25 1 - -7409.21 -3204.01 -2378.56 0.90 0.39 0.22 1 - -7521.86 -3085.83 -2132.67 0.90 0.39 0.22 1 - -7634.37 -2967.23 -1886.77 0.90 0.39 0.22 1 - -7746.88 -2848.62 -1640.88 0.90 0.39 0.22 1 - -7406.41 -3357.41 -2126.19 0.90 0.39 0.22 1 - -7518.92 -3238.81 -1880.30 0.90 0.39 0.22 1 - -7631.43 -3120.20 -1634.40 0.90 0.39 0.22 1 - -7403.70 -3510.62 -1873.67 0.90 0.39 0.22 1 - -7516.21 -3392.02 -1627.78 0.90 0.39 0.22 1 - -7400.76 -3663.60 -1621.30 0.90 0.39 0.22 1 - -7039.88 -2597.85 -3749.05 0.85 0.28 0.45 1 - -6976.72 -2422.15 -3977.78 0.85 0.28 0.45 1 - -7194.26 -2492.85 -3520.31 0.85 0.28 0.45 1 - -7131.09 -2317.15 -3749.05 0.85 0.28 0.45 1 - -7067.92 -2141.45 -3977.78 0.85 0.28 0.45 1 - -7285.46 -2212.15 -3520.31 0.85 0.28 0.45 1 - -7222.39 -2036.11 -3749.10 0.85 0.28 0.45 1 - -7852.84 -2396.34 -1901.15 0.91 0.29 0.30 1 - -7761.54 -2677.23 -1901.29 0.91 0.29 0.30 1 - -7825.03 -2232.08 -2145.11 0.91 0.29 0.30 1 - -7733.83 -2512.93 -2144.91 0.91 0.29 0.30 1 - -7642.53 -2793.82 -2145.05 0.91 0.29 0.30 1 - -7797.32 -2067.79 -2388.73 0.91 0.29 0.30 1 - -7706.02 -2348.67 -2388.87 0.91 0.29 0.30 1 - -7614.81 -2629.52 -2388.67 0.91 0.29 0.30 1 - -7523.51 -2910.40 -2388.81 0.91 0.29 0.30 1 - -7769.51 -1903.52 -2632.69 0.91 0.29 0.30 1 - -7678.30 -2184.37 -2632.49 0.91 0.29 0.30 1 - -7587.00 -2465.26 -2632.63 0.91 0.29 0.30 1 - -7495.80 -2745.95 -2632.63 0.91 0.29 0.30 1 - -7404.50 -3026.99 -2632.57 0.91 0.29 0.30 1 - -7650.49 -2020.11 -2876.45 0.91 0.29 0.30 1 - -7559.29 -2300.96 -2876.25 0.91 0.29 0.30 1 - -7467.99 -2581.85 -2876.39 0.91 0.29 0.30 1 - -7376.78 -2862.54 -2876.39 0.91 0.29 0.30 1 - -7531.48 -2136.70 -3120.21 0.91 0.29 0.30 1 - -7440.27 -2417.55 -3120.01 0.91 0.29 0.30 1 - -7348.97 -2698.43 -3120.15 0.91 0.29 0.30 1 - -7941.71 -2249.00 -1640.88 0.95 0.21 0.22 1 - -7920.40 -2086.91 -1886.78 0.95 0.21 0.22 1 - -7899.09 -1924.82 -2132.67 0.95 0.21 0.22 1 - -7877.55 -1762.65 -2378.51 0.95 0.21 0.22 1 - -8007.98 -1961.42 -1634.22 0.95 0.21 0.22 1 - -7986.67 -1799.33 -1880.12 0.95 0.21 0.22 1 - -7965.37 -1637.24 -2126.01 0.95 0.21 0.22 1 - -8074.49 -1673.76 -1627.82 0.95 0.21 0.22 1 - -8053.19 -1511.67 -1873.72 0.95 0.21 0.22 1 - -8140.77 -1386.18 -1621.16 0.95 0.21 0.22 1 - -7761.61 -503.20 -3244.69 0.91 0.14 0.40 1 - -7852.85 -628.95 -2993.51 0.91 0.14 0.40 1 - -7642.56 -669.28 -3458.04 0.91 0.14 0.40 1 - -7733.85 -794.69 -3206.77 0.91 0.14 0.40 1 - -7825.09 -920.45 -2955.59 0.91 0.14 0.40 1 - -7523.57 -835.03 -3671.30 0.91 0.14 0.40 1 - -7614.81 -960.78 -3420.12 0.91 0.14 0.40 1 - -7706.10 -1086.19 -3168.85 0.91 0.14 0.40 1 - -7797.34 -1211.94 -2917.67 0.91 0.14 0.40 1 - -7404.52 -1001.11 -3884.65 0.91 0.14 0.40 1 - -7495.81 -1126.52 -3633.38 0.91 0.14 0.40 1 - -7587.05 -1252.27 -3382.20 0.91 0.14 0.40 1 - -7678.25 -1377.80 -3131.14 0.91 0.14 0.40 1 - -7769.58 -1503.43 -2879.75 0.91 0.14 0.40 1 - -7376.77 -1292.60 -3846.73 0.91 0.14 0.40 1 - -7468.06 -1418.01 -3595.46 0.91 0.14 0.40 1 - -7559.30 -1543.77 -3344.28 0.91 0.14 0.40 1 - -7650.50 -1669.30 -3093.22 0.91 0.14 0.40 1 - -7349.01 -1584.10 -3808.81 0.91 0.14 0.40 1 - -7440.30 -1709.51 -3557.54 0.91 0.14 0.40 1 - -7531.54 -1835.26 -3306.36 0.91 0.14 0.40 1 - -7877.44 -1339.04 -2640.54 0.95 0.10 0.29 1 - -7899.11 -1046.74 -2675.31 0.95 0.10 0.29 1 - -7920.42 -754.32 -2710.32 0.95 0.10 0.29 1 - -7941.73 -461.90 -2745.32 0.95 0.10 0.29 1 - -7965.34 -1169.55 -2415.20 0.95 0.10 0.29 1 - -7986.65 -877.13 -2450.21 0.95 0.10 0.29 1 - -8007.96 -584.71 -2485.21 0.95 0.10 0.29 1 - -8053.20 -999.84 -2189.99 0.95 0.10 0.29 1 - -8074.51 -707.42 -2224.99 0.95 0.10 0.29 1 - -8140.74 -830.23 -1964.88 0.95 0.10 0.29 1 - -7746.90 -193.74 -3281.64 0.90 0.03 0.44 1 - -7634.39 -360.63 -3497.69 0.90 0.03 0.44 1 - -7521.87 -527.52 -3713.75 0.90 0.03 0.44 1 - -7409.12 -694.40 -3929.72 0.90 0.03 0.44 1 - -7631.48 -66.32 -3521.60 0.90 0.03 0.44 1 - -7518.97 -233.21 -3737.65 0.90 0.03 0.44 1 - -7406.46 -400.10 -3953.71 0.90 0.03 0.44 1 - -7516.21 60.97 -3761.85 0.90 0.03 0.44 1 - -7403.70 -105.92 -3977.91 0.90 0.03 0.44 1 - -7400.79 188.39 -4001.81 0.90 0.03 0.44 1 - -6727.70 1969.19 4663.18 0.81 -0.17 -0.55 1 - -6875.27 1765.83 4508.06 0.81 -0.17 -0.55 1 - -7023.00 1562.68 4352.69 0.81 -0.17 -0.55 1 - -7170.57 1359.56 4197.53 0.81 -0.17 -0.55 1 - -6876.58 2048.04 4420.70 0.81 -0.17 -0.55 1 - -7024.15 1844.67 4265.58 0.81 -0.17 -0.55 1 - -7171.88 1641.52 4110.21 0.81 -0.17 -0.55 1 - -6352.70 -1209.45 5396.23 0.79 0.17 -0.59 1 - -6457.76 -1400.71 5197.20 0.79 0.17 -0.59 1 - -6563.02 -1591.82 4998.42 0.79 0.17 -0.59 1 - -6668.22 -1782.98 4799.21 0.79 0.17 -0.59 1 - -6773.49 -1974.31 4600.30 0.79 0.17 -0.59 1 - -6532.33 -1115.50 5181.60 0.79 0.17 -0.59 1 - -6637.52 -1306.43 4982.52 0.79 0.17 -0.59 1 - -8314.83 1271.41 -265.15 0.99 -0.10 0.06 1 - -8344.14 667.19 -759.48 0.99 -0.10 0.06 1 - -8344.14 822.35 -508.41 0.99 -0.10 0.06 1 - -8344.13 977.50 -257.10 0.99 -0.10 0.06 1 - -8373.70 528.69 -500.34 0.99 -0.10 0.06 1 - -8373.69 683.84 -249.02 0.99 -0.10 0.06 1 - -8403.01 390.20 -241.20 0.99 -0.10 0.06 1 - -8417.36 288.27 75.01 0.99 -0.10 -0.03 1 - -8386.48 582.08 69.20 0.99 -0.10 -0.03 1 - -8355.84 875.64 63.12 0.99 -0.10 -0.03 1 - -8324.95 1169.19 57.29 0.99 -0.10 -0.03 1 - -8294.32 1462.98 51.48 0.99 -0.10 -0.03 1 - -8394.28 439.65 327.67 0.99 -0.10 -0.03 1 - -8363.38 733.20 321.84 0.99 -0.10 -0.03 1 - -8332.75 1026.76 315.76 0.99 -0.10 -0.03 1 - -8302.11 1320.30 309.94 0.99 -0.10 -0.03 1 - -8371.18 590.77 580.32 0.99 -0.10 -0.03 1 - -8340.54 884.31 574.50 0.99 -0.10 -0.03 1 - -8309.91 1177.87 568.42 0.99 -0.10 -0.03 1 - -8348.34 741.88 832.97 0.99 -0.10 -0.03 1 - -8317.70 1035.44 826.90 0.99 -0.10 -0.03 1 - -8294.32 608.31 -1331.50 0.99 -0.02 0.11 1 - -8324.96 471.74 -1071.42 0.99 -0.02 0.11 1 - -8355.85 335.17 -811.59 0.99 -0.02 0.11 1 - -8386.47 198.35 -551.53 0.99 -0.02 0.11 1 - -8417.36 61.77 -291.44 0.99 -0.02 0.11 1 - -8302.12 313.43 -1319.55 0.99 -0.02 0.11 1 - -8332.75 176.62 -1059.74 0.99 -0.02 0.11 1 - -8363.64 40.04 -799.66 0.99 -0.02 0.11 1 - -8394.28 -96.51 -539.83 0.99 -0.02 0.11 1 - -8309.91 18.31 -1307.88 0.99 -0.02 0.11 1 - -8340.54 -118.26 -1047.80 0.99 -0.02 0.11 1 - -8371.18 -254.81 -787.97 0.99 -0.02 0.11 1 - -8317.71 -276.55 -1296.18 0.99 -0.02 0.11 1 - -8348.35 -413.12 -1036.10 0.99 -0.02 0.11 1 - -7200.45 -4235.47 1018.60 0.86 0.50 -0.06 1 - -7325.21 -4113.61 257.10 0.86 0.50 -0.06 1 - -7234.01 -4239.14 508.16 0.86 0.50 -0.06 1 - -7142.66 -4364.86 759.32 0.86 0.50 -0.06 1 - -7176.48 -4368.61 249.11 0.86 0.50 -0.06 1 - -7085.14 -4494.33 500.27 0.86 0.50 -0.06 1 - -7027.56 -4623.46 241.13 0.86 0.50 -0.06 1 - -7258.37 -4071.45 1295.27 0.89 0.44 -0.10 1 - -7349.71 -3945.74 1044.10 0.89 0.44 -0.10 1 - -7440.92 -3820.21 793.04 0.89 0.44 -0.10 1 - -7532.20 -3694.57 541.64 0.89 0.44 -0.10 1 - -7623.40 -3569.04 290.58 0.89 0.44 -0.10 1 - -7388.03 -3806.08 1301.47 0.89 0.44 -0.10 1 - -7479.38 -3680.36 1050.31 0.89 0.44 -0.10 1 - -7570.52 -3554.90 799.01 0.89 0.44 -0.10 1 - -7661.86 -3429.19 547.85 0.89 0.44 -0.10 1 - -7517.70 -3540.70 1307.68 0.89 0.44 -0.10 1 - -7608.83 -3415.24 1056.38 0.89 0.44 -0.10 1 - -7700.18 -3289.52 805.22 0.89 0.44 -0.10 1 - -7647.35 -3275.73 1313.74 0.89 0.44 -0.10 1 - -7738.70 -3150.02 1062.58 0.89 0.44 -0.10 1 - -7849.25 -2776.83 -1272.50 0.92 0.38 0.10 1 - -7816.30 -2923.33 -1018.02 0.92 0.38 0.10 1 - -7783.67 -3069.57 -763.65 0.92 0.38 0.10 1 - -7750.72 -3215.91 -509.38 0.92 0.38 0.10 1 - -7717.99 -3362.49 -254.96 0.92 0.38 0.10 1 - -7735.95 -3049.68 -1272.46 0.92 0.38 0.10 1 - -7703.00 -3196.03 -1018.18 0.92 0.38 0.10 1 - -7670.37 -3342.26 -763.81 0.92 0.38 0.10 1 - -7637.65 -3488.68 -509.59 0.92 0.38 0.10 1 - -7622.65 -3322.38 -1272.62 0.92 0.38 0.10 1 - -7589.93 -3468.80 -1018.40 0.92 0.38 0.10 1 - -7557.31 -3615.04 -764.03 0.92 0.38 0.10 1 - -7509.59 -3595.15 -1272.83 0.92 0.38 0.10 1 - -7476.96 -3741.39 -1018.47 0.92 0.38 0.10 1 - -7852.14 -3016.98 -255.10 0.95 0.31 0.06 1 - -8065.33 -2310.11 -510.40 0.95 0.31 0.06 1 - -7974.13 -2590.80 -510.40 0.95 0.31 0.06 1 - -7882.83 -2871.69 -510.55 0.95 0.31 0.06 1 - -8005.05 -2445.74 -765.71 0.95 0.31 0.06 1 - -7913.75 -2726.63 -765.85 0.95 0.31 0.06 1 - -7944.53 -2581.30 -1020.95 0.95 0.31 0.06 1 - -7807.98 -3157.92 36.42 0.95 0.31 -0.02 1 - -7899.28 -2877.04 36.57 0.95 0.31 -0.02 1 - -7990.48 -2596.34 36.56 0.95 0.31 -0.02 1 - -8081.78 -2315.30 36.51 0.95 0.31 -0.02 1 - -8172.99 -2034.60 36.51 0.95 0.31 -0.02 1 - -7847.57 -3015.52 292.22 0.95 0.31 -0.02 1 - -7938.86 -2734.64 292.37 0.95 0.31 -0.02 1 - -8030.07 -2453.79 292.17 0.95 0.31 -0.02 1 - -8121.37 -2172.90 292.31 0.95 0.31 -0.02 1 - -7887.15 -2873.13 548.02 0.95 0.31 -0.02 1 - -7978.36 -2592.27 547.82 0.95 0.31 -0.02 1 - -8069.66 -2311.39 547.97 0.95 0.31 -0.02 1 - -7926.88 -2730.83 803.42 0.95 0.31 -0.02 1 - -8018.18 -2449.95 803.57 0.95 0.31 -0.02 1 - -8220.39 -1816.31 -254.90 0.97 0.23 0.10 1 - -8160.74 -1954.06 -509.26 0.97 0.23 0.10 1 - -8101.43 -2091.70 -763.54 0.97 0.23 0.10 1 - -8041.78 -2229.29 -1018.10 0.97 0.23 0.10 1 - -7982.37 -2367.11 -1272.52 0.97 0.23 0.10 1 - -8229.60 -1666.99 -509.41 0.97 0.23 0.10 1 - -8170.05 -1804.39 -763.83 0.97 0.23 0.10 1 - -8110.64 -1942.22 -1018.25 0.97 0.23 0.10 1 - -8051.09 -2079.78 -1272.46 0.97 0.23 0.10 1 - -8238.91 -1517.32 -763.97 0.97 0.23 0.10 1 - -8179.26 -1655.07 -1018.34 0.97 0.23 0.10 1 - -8119.71 -1792.63 -1272.55 0.97 0.23 0.10 1 - -8248.21 -1367.81 -1018.34 0.97 0.23 0.10 1 - -8188.57 -1505.56 -1272.70 0.97 0.23 0.10 1 - -8265.28 -1593.44 290.55 0.98 0.17 -0.10 1 - -8265.29 -1438.29 541.87 0.98 0.17 -0.10 1 - -8265.29 -1283.12 792.93 0.98 0.17 -0.10 1 - -8265.28 -1127.72 1044.27 0.98 0.17 -0.10 1 - -8265.28 -972.55 1295.33 0.98 0.17 -0.10 1 - -8214.19 -1729.09 547.97 0.98 0.17 -0.10 1 - -8214.20 -1573.94 799.29 0.98 0.17 -0.10 1 - -8214.19 -1418.52 1050.37 0.98 0.17 -0.10 1 - -8214.20 -1263.37 1301.69 0.98 0.17 -0.10 1 - -8163.11 -1864.74 805.40 0.98 0.17 -0.10 1 - -8163.10 -1709.32 1056.48 0.98 0.17 -0.10 1 - -8163.11 -1554.17 1307.80 0.98 0.17 -0.10 1 - -8112.26 -2000.11 1062.58 0.98 0.17 -0.10 1 - -8112.27 -1844.96 1313.90 0.98 0.17 -0.10 1 - -8417.36 -288.27 -75.01 0.99 0.10 0.03 1 - -8386.48 -582.08 -69.20 0.99 0.10 0.03 1 - -8355.84 -875.64 -63.12 0.99 0.10 0.03 1 - -8324.95 -1169.19 -57.29 0.99 0.10 0.03 1 - -8294.32 -1462.98 -51.48 0.99 0.10 0.03 1 - -8394.28 -439.65 -327.67 0.99 0.10 0.03 1 - -8363.38 -733.20 -321.84 0.99 0.10 0.03 1 - -8332.75 -1026.76 -315.76 0.99 0.10 0.03 1 - -8302.11 -1320.30 -309.94 0.99 0.10 0.03 1 - -8371.18 -590.77 -580.32 0.99 0.10 0.03 1 - -8340.54 -884.31 -574.50 0.99 0.10 0.03 1 - -8309.91 -1177.87 -568.42 0.99 0.10 0.03 1 - -8348.34 -741.88 -832.97 0.99 0.10 0.03 1 - -8317.70 -1035.44 -826.90 0.99 0.10 0.03 1 - -8314.83 -1271.41 265.15 0.99 0.10 -0.06 1 - -8344.14 -667.19 759.48 0.99 0.10 -0.06 1 - -8344.14 -822.35 508.41 0.99 0.10 -0.06 1 - -8344.13 -977.50 257.10 0.99 0.10 -0.06 1 - -8373.70 -528.69 500.34 0.99 0.10 -0.06 1 - -8373.69 -683.84 249.02 0.99 0.10 -0.06 1 - -8403.01 -390.20 241.20 0.99 0.10 -0.06 1 - -8294.32 -608.31 1331.50 0.99 0.02 -0.11 1 - -8324.96 -471.74 1071.42 0.99 0.02 -0.11 1 - -8355.85 -335.17 811.59 0.99 0.02 -0.11 1 - -8386.47 -198.35 551.53 0.99 0.02 -0.11 1 - -8417.36 -61.77 291.44 0.99 0.02 -0.11 1 - -8302.12 -313.43 1319.55 0.99 0.02 -0.11 1 - -8332.75 -176.62 1059.74 0.99 0.02 -0.11 1 - -8363.64 -40.04 799.66 0.99 0.02 -0.11 1 - -8394.28 96.51 539.83 0.99 0.02 -0.11 1 - -8309.91 -18.31 1307.88 0.99 0.02 -0.11 1 - -8340.54 118.26 1047.80 0.99 0.02 -0.11 1 - -8371.18 254.81 787.97 0.99 0.02 -0.11 1 - -8317.71 276.55 1296.18 0.99 0.02 -0.11 1 - -8348.35 413.12 1036.10 0.99 0.02 -0.11 1 - -7941.73 461.90 2745.32 0.95 -0.10 -0.29 1 - -7965.34 1169.55 2415.20 0.95 -0.10 -0.29 1 - -7986.65 877.13 2450.21 0.95 -0.10 -0.29 1 - -8007.96 584.71 2485.21 0.95 -0.10 -0.29 1 - -8053.20 999.84 2189.99 0.95 -0.10 -0.29 1 - -8074.51 707.42 2224.99 0.95 -0.10 -0.29 1 - -8140.74 830.23 1964.88 0.95 -0.10 -0.29 1 - -8188.77 728.08 1664.71 0.98 -0.11 -0.17 1 - -8248.33 576.14 1418.62 0.98 -0.11 -0.17 1 - -8158.94 1021.64 1653.03 0.98 -0.11 -0.17 1 - -8218.73 869.61 1407.19 0.98 -0.11 -0.17 1 - -8278.29 717.67 1161.10 0.98 -0.11 -0.17 1 - -8188.81 1163.20 1395.85 0.98 -0.11 -0.17 1 - -8248.37 1011.26 1149.76 0.98 -0.11 -0.17 1 - -7409.12 694.40 3929.72 0.90 -0.03 -0.44 1 - -7631.48 66.32 3521.60 0.90 -0.03 -0.44 1 - -7518.97 233.21 3737.65 0.90 -0.03 -0.44 1 - -7406.46 400.10 3953.71 0.90 -0.03 -0.44 1 - -7516.21 -60.97 3761.85 0.90 -0.03 -0.44 1 - -7403.70 105.92 3977.91 0.90 -0.03 -0.44 1 - -7400.79 -188.39 4001.81 0.90 -0.03 -0.44 1 - -7474.16 -1962.84 3332.78 0.86 0.28 -0.42 1 - -7142.71 -2631.29 3564.34 0.86 0.28 -0.42 1 - -7233.92 -2350.60 3564.34 0.86 0.28 -0.42 1 - -7325.11 -2069.68 3564.46 0.86 0.28 -0.42 1 - -7085.22 -2457.39 3795.99 0.86 0.28 -0.42 1 - -7176.41 -2176.47 3796.11 0.86 0.28 -0.42 1 - -7027.53 -2283.42 4027.50 0.86 0.28 -0.42 1 - -7623.35 -1856.03 3062.35 0.89 0.29 -0.35 1 - -7532.16 -2136.95 3062.23 0.89 0.29 -0.35 1 - -7440.96 -2417.65 3062.23 0.89 0.29 -0.35 1 - -7349.61 -2698.67 3062.28 0.89 0.29 -0.35 1 - -7258.41 -2979.37 3062.28 0.89 0.29 -0.35 1 - -7661.75 -2023.77 2822.21 0.89 0.29 -0.35 1 - -7570.57 -2304.69 2822.09 0.89 0.29 -0.35 1 - -7479.20 -2585.49 2822.26 0.89 0.29 -0.35 1 - -7388.02 -2866.41 2822.14 0.89 0.29 -0.35 1 - -7700.16 -2191.51 2582.07 0.89 0.29 -0.35 1 - -7608.80 -2472.31 2582.24 0.89 0.29 -0.35 1 - -7517.61 -2753.23 2582.12 0.89 0.29 -0.35 1 - -7738.59 -2359.20 2342.37 0.89 0.29 -0.35 1 - -7647.40 -2640.12 2342.25 0.89 0.29 -0.35 1 - -7775.79 -2681.92 1310.22 0.93 0.30 -0.19 1 - -7867.04 -2556.12 1058.97 0.93 0.30 -0.19 1 - -7593.31 -2777.91 2063.74 0.93 0.30 -0.19 1 - -7684.56 -2652.10 1812.49 0.93 0.30 -0.19 1 - -7775.88 -2526.70 1561.43 0.93 0.30 -0.19 1 - -7866.97 -2401.00 1310.34 0.93 0.30 -0.19 1 - -7958.25 -2275.42 1058.97 0.93 0.30 -0.19 1 - -7684.50 -2496.99 2063.86 0.93 0.30 -0.19 1 - -7775.77 -2371.41 1812.49 0.93 0.30 -0.19 1 - -7867.07 -2245.78 1561.55 0.93 0.30 -0.19 1 - -7958.34 -2120.20 1310.17 0.93 0.30 -0.19 1 - -7775.86 -2216.18 2063.69 0.93 0.30 -0.19 1 - -7866.96 -2090.49 1812.61 0.93 0.30 -0.19 1 - -7958.43 -1964.97 1561.38 0.93 0.30 -0.19 1 - -6979.24 -2041.25 4250.21 0.87 0.20 -0.46 1 - -7126.94 -1932.03 4018.78 0.87 0.20 -0.46 1 - -7274.71 -1823.21 3787.53 0.87 0.20 -0.46 1 - -7422.26 -1714.09 3556.27 0.87 0.20 -0.46 1 - -7570.16 -1604.94 3324.98 0.87 0.20 -0.46 1 - -7049.53 -1754.42 4241.54 0.87 0.20 -0.46 1 - -7197.08 -1645.31 4010.27 0.87 0.20 -0.46 1 - -7344.85 -1536.49 3779.03 0.87 0.20 -0.46 1 - -7492.59 -1427.44 3547.91 0.87 0.20 -0.46 1 - -7119.67 -1467.70 4233.03 0.87 0.20 -0.46 1 - -7267.42 -1358.66 4001.91 0.87 0.20 -0.46 1 - -7415.19 -1249.83 3770.67 0.87 0.20 -0.46 1 - -7190.01 -1181.05 4224.67 0.87 0.20 -0.46 1 - -7337.78 -1072.22 3993.42 0.87 0.20 -0.46 1 - -8172.96 -942.49 1803.52 0.95 0.16 -0.27 1 - -8081.73 -1068.24 2054.70 0.95 0.16 -0.27 1 - -7990.52 -1193.77 2305.76 0.95 0.16 -0.27 1 - -7899.20 -1319.40 2557.15 0.95 0.16 -0.27 1 - -7807.99 -1444.93 2808.21 0.95 0.16 -0.27 1 - -8121.29 -1233.21 1812.97 0.95 0.16 -0.27 1 - -8030.05 -1358.96 2064.15 0.95 0.16 -0.27 1 - -7938.76 -1484.37 2315.42 0.95 0.16 -0.27 1 - -7847.52 -1610.13 2566.60 0.95 0.16 -0.27 1 - -8069.61 -1523.93 1822.42 0.95 0.16 -0.27 1 - -7978.32 -1649.34 2073.69 0.95 0.16 -0.27 1 - -7887.08 -1775.09 2324.87 0.95 0.16 -0.27 1 - -8018.12 -1814.29 1832.05 0.95 0.16 -0.27 1 - -7926.88 -1940.05 2083.23 0.95 0.16 -0.27 1 - -7718.03 -1275.73 3121.41 0.92 0.08 -0.39 1 - -7750.74 -982.70 3104.13 0.92 0.08 -0.39 1 - -7783.66 -689.88 3087.07 0.92 0.08 -0.39 1 - -7816.28 -396.73 3070.00 0.92 0.08 -0.39 1 - -7849.22 -103.69 3052.82 0.92 0.08 -0.39 1 - -7637.71 -1104.53 3348.13 0.92 0.08 -0.39 1 - -7670.30 -811.61 3331.17 0.92 0.08 -0.39 1 - -7703.25 -518.57 3313.99 0.92 0.08 -0.39 1 - -7735.93 -225.76 3296.83 0.92 0.08 -0.39 1 - -7557.27 -933.44 3575.17 0.92 0.08 -0.39 1 - -7589.98 -640.42 3557.89 0.92 0.08 -0.39 1 - -7622.66 -347.61 3540.73 0.92 0.08 -0.39 1 - -7476.92 -762.47 3802.00 0.92 0.08 -0.39 1 - -7509.63 -469.44 3784.72 0.92 0.08 -0.39 1 - -8125.84 -744.34 2059.09 0.95 0.08 -0.30 1 - -7882.83 -827.78 2796.85 0.95 0.08 -0.30 1 - -7974.04 -702.25 2545.78 0.95 0.08 -0.30 1 - -8065.27 -576.50 2294.60 0.95 0.08 -0.30 1 - -7913.79 -534.51 2781.18 0.95 0.08 -0.30 1 - -8005.02 -408.76 2530.00 0.95 0.08 -0.30 1 - -7944.51 -241.26 2765.43 0.95 0.08 -0.30 1 - -7982.35 79.52 2686.35 0.97 0.01 -0.25 1 - -8041.80 -86.43 2449.21 0.97 0.01 -0.25 1 - -8101.36 -252.45 2212.48 0.97 0.01 -0.25 1 - -8160.72 -418.27 1975.54 0.97 0.01 -0.25 1 - -8220.40 -584.20 1738.49 0.97 0.01 -0.25 1 - -8051.07 207.99 2429.33 0.97 0.01 -0.25 1 - -8110.42 42.16 2192.39 0.97 0.01 -0.25 1 - -8169.99 -123.86 1955.66 0.97 0.01 -0.25 1 - -8229.58 -289.67 1718.82 0.97 0.01 -0.25 1 - -8119.69 336.57 2172.51 0.97 0.01 -0.25 1 - -8179.28 170.77 1935.66 0.97 0.01 -0.25 1 - -8238.85 4.74 1698.94 0.97 0.01 -0.25 1 - -8188.55 465.18 1915.79 0.97 0.01 -0.25 1 - -8248.11 299.15 1679.06 0.97 0.01 -0.25 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -2524.16 593.70 -8013.55 0.36 -0.03 0.93 1 - -2792.76 523.76 -7912.20 0.36 -0.03 0.93 1 - -3061.25 454.16 -7811.11 0.36 -0.03 0.93 1 - -3329.62 384.31 -7709.81 0.36 -0.03 0.93 1 - -3598.27 314.39 -7608.71 0.36 -0.03 0.93 1 - -2605.23 310.38 -7992.57 0.36 -0.03 0.93 1 - -2873.60 240.52 -7891.27 0.36 -0.03 0.93 1 - -3142.09 170.92 -7790.18 0.36 -0.03 0.93 1 - -3410.51 101.08 -7689.12 0.36 -0.03 0.93 1 - -2686.07 27.13 -7971.63 0.36 -0.03 0.93 1 - -2954.49 -42.71 -7870.58 0.36 -0.03 0.93 1 - -3222.98 -112.31 -7769.49 0.36 -0.03 0.93 1 - -2766.96 -256.10 -7950.94 0.36 -0.03 0.93 1 - -3035.46 -325.69 -7849.85 0.36 -0.03 0.93 1 - -4622.10 -4368.34 -5522.01 0.61 0.48 0.63 1 - -4831.03 -4164.58 -5476.57 0.61 0.48 0.63 1 - -5040.03 -3961.15 -5431.27 0.61 0.48 0.63 1 - -5249.10 -3757.45 -5385.63 0.61 0.48 0.63 1 - -5458.21 -3553.79 -5340.34 0.61 0.48 0.63 1 - -4818.94 -4404.50 -5304.98 0.61 0.48 0.63 1 - -5027.91 -4201.03 -5259.32 0.61 0.48 0.63 1 - -5237.02 -3997.37 -5214.04 0.61 0.48 0.63 1 - -5445.84 -3793.84 -5168.58 0.61 0.48 0.63 1 - -5015.83 -4440.95 -5087.73 0.61 0.48 0.63 1 - -5224.75 -4237.19 -5042.29 0.61 0.48 0.63 1 - -5433.58 -4033.67 -4996.83 0.61 0.48 0.63 1 - -5212.56 -4477.34 -4870.68 0.61 0.48 0.63 1 - -5421.49 -4273.59 -4825.24 0.61 0.48 0.63 1 - -4633.20 -3309.42 -6197.13 0.58 0.43 0.70 1 - -4842.14 -3859.76 -5683.54 0.58 0.43 0.70 1 - -4842.13 -3608.69 -5838.70 0.58 0.43 0.70 1 - -4842.24 -3357.40 -5993.89 0.58 0.43 0.70 1 - -5051.20 -3656.72 -5635.82 0.58 0.43 0.70 1 - -5051.31 -3405.43 -5791.00 0.58 0.43 0.70 1 - -5260.09 -3453.59 -5587.94 0.58 0.43 0.70 1 - -5732.04 -3503.22 -5068.76 0.70 0.45 0.55 1 - -5904.22 -3529.33 -4830.30 0.70 0.45 0.55 1 - -6076.40 -3555.44 -4591.84 0.70 0.45 0.55 1 - -6248.41 -3581.45 -4353.23 0.70 0.45 0.55 1 - -5712.79 -3743.58 -4898.49 0.70 0.45 0.55 1 - -5884.97 -3769.69 -4660.03 0.70 0.45 0.55 1 - -6057.16 -3795.80 -4421.57 0.70 0.45 0.55 1 - -5693.87 -3984.09 -4728.17 0.70 0.45 0.55 1 - -5866.05 -4010.20 -4489.71 0.70 0.45 0.55 1 - -5674.62 -4224.46 -4557.89 0.70 0.45 0.55 1 - -3421.85 -2395.58 -7305.85 0.46 0.27 0.84 1 - -4112.20 -2352.71 -6942.71 0.46 0.27 0.84 1 - -3873.43 -2275.13 -7097.87 0.46 0.27 0.84 1 - -3634.53 -2197.35 -7253.14 0.46 0.27 0.84 1 - -4086.06 -2077.09 -7045.46 0.46 0.27 0.84 1 - -3847.16 -1999.31 -7200.73 0.46 0.27 0.84 1 - -4059.78 -1801.44 -7148.00 0.46 0.27 0.84 1 - -5458.19 -3187.33 -5566.84 0.61 0.35 0.71 1 - -5249.04 -3136.71 -5769.33 0.61 0.35 0.71 1 - -5040.11 -3086.46 -5971.75 0.61 0.35 0.71 1 - -4831.11 -3035.89 -6174.04 0.61 0.35 0.71 1 - -4622.14 -2985.36 -6376.68 0.61 0.35 0.71 1 - -5445.83 -2926.33 -5704.73 0.61 0.35 0.71 1 - -5236.83 -2875.76 -5907.02 0.61 0.35 0.71 1 - -5027.90 -2825.51 -6109.44 0.61 0.35 0.71 1 - -4819.08 -2775.04 -6311.88 0.61 0.35 0.71 1 - -5433.62 -2665.39 -5842.42 0.61 0.35 0.71 1 - -5224.80 -2614.91 -6044.86 0.61 0.35 0.71 1 - -5015.87 -2564.66 -6247.28 0.61 0.35 0.71 1 - -5421.59 -2404.53 -5980.26 0.61 0.35 0.71 1 - -5212.66 -2354.29 -6182.68 0.61 0.35 0.71 1 - -3970.86 -1506.59 -7273.46 0.41 0.21 0.89 1 - -3756.29 -1702.87 -7325.79 0.41 0.21 0.89 1 - -3542.14 -1899.22 -7378.15 0.41 0.21 0.89 1 - -3327.74 -2095.34 -7430.40 0.41 0.21 0.89 1 - -3113.30 -2291.64 -7482.95 0.41 0.21 0.89 1 - -3722.31 -1421.56 -7408.66 0.41 0.21 0.89 1 - -3507.91 -1617.68 -7460.90 0.41 0.21 0.89 1 - -4428.54 -2719.04 -6628.24 0.54 0.25 0.80 1 - -4401.11 -2444.21 -6732.86 0.54 0.25 0.80 1 - -4373.94 -2169.60 -6837.60 0.54 0.25 0.80 1 - -4346.69 -1894.61 -6942.13 0.54 0.25 0.80 1 - -4319.39 -1619.81 -7046.97 0.54 0.25 0.80 1 - -4629.09 -2513.85 -6558.71 0.54 0.25 0.80 1 - -4601.96 -2239.06 -6663.14 0.54 0.25 0.80 1 - -4574.67 -1964.25 -6767.98 0.54 0.25 0.80 1 - -4547.36 -1689.62 -6872.50 0.54 0.25 0.80 1 - -4829.94 -2308.70 -6488.99 0.54 0.25 0.80 1 - -4802.51 -2033.87 -6593.61 0.54 0.25 0.80 1 - -4775.21 -1759.23 -6698.13 0.54 0.25 0.80 1 - -5030.61 -2103.70 -6419.36 0.54 0.25 0.80 1 - -5003.18 -1828.87 -6523.98 0.54 0.25 0.80 1 - -5932.93 -3271.28 -5012.26 0.76 0.34 0.55 1 - -5933.04 -3019.99 -5167.45 0.76 0.34 0.55 1 - -6099.87 -3294.91 -4769.68 0.76 0.34 0.55 1 - -6099.72 -3043.80 -4925.05 0.76 0.34 0.55 1 - -6099.83 -2792.50 -5080.23 0.76 0.34 0.55 1 - -6266.55 -3318.72 -4527.28 0.76 0.34 0.55 1 - -6266.66 -3067.42 -4682.46 0.76 0.34 0.55 1 - -6266.51 -2816.31 -4837.83 0.76 0.34 0.55 1 - -6266.62 -2565.01 -4993.01 0.76 0.34 0.55 1 - -6433.49 -3342.34 -4284.69 0.76 0.34 0.55 1 - -6433.34 -3091.23 -4440.06 0.76 0.34 0.55 1 - -6433.45 -2839.93 -4595.24 0.76 0.34 0.55 1 - -6433.45 -2588.87 -4750.41 0.76 0.34 0.55 1 - -6433.41 -2337.52 -4905.80 0.76 0.34 0.55 1 - -6600.28 -3114.85 -4197.47 0.76 0.34 0.55 1 - -6600.13 -2863.74 -4352.84 0.76 0.34 0.55 1 - -6600.24 -2612.44 -4508.03 0.76 0.34 0.55 1 - -6600.24 -2361.38 -4663.19 0.76 0.34 0.55 1 - -6767.07 -2887.36 -4110.26 0.76 0.34 0.55 1 - -6766.92 -2636.25 -4265.63 0.76 0.34 0.55 1 - -6767.03 -2384.96 -4420.81 0.76 0.34 0.55 1 - -6248.44 -2292.22 -5149.97 0.70 0.30 0.65 1 - -6076.40 -2516.99 -5233.63 0.70 0.30 0.65 1 - -5904.22 -2741.95 -5316.93 0.70 0.30 0.65 1 - -5732.03 -2966.90 -5400.22 0.70 0.30 0.65 1 - -6057.28 -2257.15 -5372.35 0.70 0.30 0.65 1 - -5885.10 -2482.10 -5455.65 0.70 0.30 0.65 1 - -5712.92 -2707.06 -5538.94 0.70 0.30 0.65 1 - -5866.02 -2222.30 -5594.72 0.70 0.30 0.65 1 - -5693.84 -2447.25 -5678.01 0.70 0.30 0.65 1 - -5674.72 -2187.41 -5816.73 0.70 0.30 0.65 1 - -5470.63 -2046.53 -6020.06 0.65 0.21 0.73 1 - -5266.46 -1980.06 -6222.77 0.65 0.21 0.73 1 - -5651.59 -1836.30 -5918.78 0.65 0.21 0.73 1 - -5447.62 -1770.11 -6121.60 0.65 0.21 0.73 1 - -5243.45 -1703.64 -6324.31 0.65 0.21 0.73 1 - -5628.74 -1560.10 -6020.08 0.65 0.21 0.73 1 - -5424.57 -1493.63 -6222.79 0.65 0.21 0.73 1 - -6381.25 -968.88 -5400.18 0.74 0.17 0.65 1 - -6388.32 -1252.09 -5316.89 0.74 0.17 0.65 1 - -6395.39 -1535.30 -5233.60 0.74 0.17 0.65 1 - -3865.79 24.05 -7482.91 0.46 0.07 0.89 1 - -3923.85 -260.74 -7430.40 0.46 0.07 0.89 1 - -3981.92 -545.38 -7378.23 0.46 0.07 0.89 1 - -4039.79 -830.32 -7325.79 0.46 0.07 0.89 1 - -4097.97 -1115.16 -7273.50 0.46 0.07 0.89 1 - -3673.04 -183.68 -7565.70 0.46 0.07 0.89 1 - -3730.79 -468.42 -7513.38 0.46 0.07 0.89 1 - -3788.97 -753.26 -7461.09 0.46 0.07 0.89 1 - -3846.92 -1037.85 -7408.70 0.46 0.07 0.89 1 - -3479.97 -391.36 -7648.68 0.46 0.07 0.89 1 - -3538.03 -676.15 -7596.17 0.46 0.07 0.89 1 - -3595.98 -960.74 -7543.78 0.46 0.07 0.89 1 - -3287.10 -598.89 -7731.58 0.46 0.07 0.89 1 - -3345.16 -883.68 -7679.07 0.46 0.07 0.89 1 - -4893.00 -306.08 -6840.19 0.53 0.05 0.85 1 - -4231.94 -358.47 -7253.20 0.53 0.05 0.85 1 - -4470.72 -436.05 -7098.03 0.53 0.05 0.85 1 - -4709.61 -513.82 -6942.75 0.53 0.05 0.85 1 - -4287.65 -643.69 -7200.73 0.53 0.05 0.85 1 - -4526.54 -721.47 -7045.45 0.53 0.05 0.85 1 - -4343.23 -928.87 -7148.05 0.53 0.05 0.85 1 - -7160.05 -775.53 -4353.36 0.83 0.05 0.55 1 - -7005.77 -695.18 -4591.82 0.83 0.05 0.55 1 - -6851.13 -615.09 -4830.27 0.83 0.05 0.55 1 - -5467.54 -5758.33 -2808.23 0.68 0.69 0.27 1 - -5615.16 -5710.47 -2556.93 0.68 0.69 0.27 1 - -5762.73 -5662.52 -2305.87 0.68 0.69 0.27 1 - -5910.50 -5614.47 -2054.53 0.68 0.69 0.27 1 - -6058.07 -5566.52 -1803.47 0.68 0.69 0.27 1 - -5402.51 -5915.17 -2566.46 0.68 0.69 0.27 1 - -5550.13 -5867.32 -2315.17 0.68 0.69 0.27 1 - -5697.85 -5819.17 -2064.06 0.68 0.69 0.27 1 - -5845.48 -5771.31 -1812.77 0.68 0.69 0.27 1 - -5337.49 -6072.02 -2324.70 0.68 0.69 0.27 1 - -5485.21 -6023.87 -2073.59 0.68 0.69 0.27 1 - -5632.83 -5976.02 -1822.30 0.68 0.69 0.27 1 - -5272.76 -6228.70 -2083.21 0.68 0.69 0.27 1 - -5420.38 -6180.84 -1831.92 0.68 0.69 0.27 1 - -6289.24 -4697.57 -3052.74 0.70 0.61 0.39 1 - -6090.28 -4915.34 -3069.96 0.70 0.61 0.39 1 - -5891.72 -5133.13 -3087.01 0.70 0.61 0.39 1 - -5692.91 -5350.70 -3104.18 0.70 0.61 0.39 1 - -5494.15 -5568.60 -3121.51 0.70 0.61 0.39 1 - -6125.83 -4729.72 -3296.76 0.70 0.61 0.39 1 - -5927.02 -4947.29 -3313.94 0.70 0.61 0.39 1 - -5728.46 -5165.08 -3330.98 0.70 0.61 0.39 1 - -5529.85 -5382.78 -3348.26 0.70 0.61 0.39 1 - -5962.57 -4761.66 -3540.74 0.70 0.61 0.39 1 - -5763.96 -4979.36 -3558.01 0.70 0.61 0.39 1 - -5565.40 -5197.16 -3575.05 0.70 0.61 0.39 1 - -5799.51 -4793.74 -3784.81 0.70 0.61 0.39 1 - -5600.95 -5011.53 -3801.85 0.70 0.61 0.39 1 - -6875.26 -3242.33 -3595.63 0.81 0.42 0.40 1 - -5988.91 -5426.34 -2310.13 0.72 0.63 0.30 1 - -5841.29 -5474.19 -2561.43 0.72 0.63 0.30 1 - -5693.57 -5522.34 -2812.54 0.72 0.63 0.30 1 - -6186.08 -5207.16 -2294.47 0.72 0.63 0.30 1 - -6038.51 -5255.11 -2545.53 0.72 0.63 0.30 1 - -5890.89 -5302.97 -2796.82 0.72 0.63 0.30 1 - -6235.88 -5036.07 -2529.96 0.72 0.63 0.30 1 - -6088.26 -5083.92 -2781.25 0.72 0.63 0.30 1 - -6285.47 -4864.85 -2765.36 0.72 0.63 0.30 1 - -5628.75 -4686.93 -4087.45 0.65 0.56 0.51 1 - -5424.51 -4897.86 -4118.86 0.65 0.56 0.51 1 - -5651.59 -4472.71 -4289.41 0.65 0.56 0.51 1 - -5447.67 -4683.78 -4320.78 0.65 0.56 0.51 1 - -5243.42 -4894.71 -4352.20 0.65 0.56 0.51 1 - -5470.75 -4469.38 -4522.56 0.65 0.56 0.51 1 - -5266.51 -4680.31 -4553.98 0.65 0.56 0.51 1 - -6307.00 -5304.53 -1738.54 0.78 0.58 0.25 1 - -6356.27 -5135.25 -1975.50 0.78 0.58 0.25 1 - -6405.78 -4966.19 -2212.33 0.78 0.58 0.25 1 - -6455.19 -4796.71 -2449.23 0.78 0.58 0.25 1 - -6504.65 -4627.56 -2686.29 0.78 0.58 0.25 1 - -6487.51 -5071.76 -1718.80 0.78 0.58 0.25 1 - -6536.97 -4902.37 -1955.48 0.78 0.58 0.25 1 - -6586.43 -4733.22 -2192.54 0.78 0.58 0.25 1 - -6635.74 -4564.03 -2429.26 0.78 0.58 0.25 1 - -6668.21 -4838.87 -1698.78 0.78 0.58 0.25 1 - -6717.47 -4669.59 -1935.74 0.78 0.58 0.25 1 - -6766.79 -4500.41 -2172.47 0.78 0.58 0.25 1 - -6848.77 -4606.19 -1678.81 0.78 0.58 0.25 1 - -6898.03 -4436.91 -1915.77 0.78 0.58 0.25 1 - -6402.43 -3793.12 -3929.47 0.74 0.50 0.45 1 - -6395.36 -3994.50 -3713.79 0.74 0.50 0.45 1 - -6388.29 -4195.65 -3497.75 0.74 0.50 0.45 1 - -6381.21 -4396.80 -3281.70 0.74 0.50 0.45 1 - -6227.16 -4029.58 -3953.81 0.74 0.50 0.45 1 - -6220.09 -4230.74 -3737.76 0.74 0.50 0.45 1 - -6213.02 -4431.89 -3521.71 0.74 0.50 0.45 1 - -6051.94 -4266.15 -3977.91 0.74 0.50 0.45 1 - -6044.87 -4467.30 -3761.86 0.74 0.50 0.45 1 - -5876.67 -4502.38 -4001.88 0.74 0.50 0.45 1 - -6696.45 -4294.37 -2745.39 0.83 0.47 0.29 1 - -6851.10 -4045.27 -2710.37 0.83 0.47 0.29 1 - -7005.74 -3796.17 -2675.36 0.83 0.47 0.29 1 - -7160.19 -3546.94 -2640.25 0.83 0.47 0.29 1 - -6822.16 -4234.10 -2485.19 0.83 0.47 0.29 1 - -6976.81 -3985.00 -2450.18 0.83 0.47 0.29 1 - -7131.46 -3735.90 -2415.16 0.83 0.47 0.29 1 - -6948.22 -4173.75 -2225.04 0.83 0.47 0.29 1 - -7102.87 -3924.65 -2190.02 0.83 0.47 0.29 1 - -7073.94 -4113.48 -1964.84 0.83 0.47 0.29 1 - -6722.66 -4107.12 -2993.56 0.81 0.42 0.40 1 - -6575.03 -4154.97 -3244.86 0.81 0.42 0.40 1 - -6871.60 -3854.81 -2955.75 0.81 0.42 0.40 1 - -6723.88 -3902.96 -3206.86 0.81 0.42 0.40 1 - -6576.25 -3950.81 -3458.15 0.81 0.42 0.40 1 - -7020.44 -3602.79 -2917.75 0.81 0.42 0.40 1 - -6872.82 -3650.65 -3169.04 0.81 0.42 0.40 1 - -6725.10 -3698.80 -3420.15 0.81 0.42 0.40 1 - -6577.48 -3746.65 -3671.44 0.81 0.42 0.40 1 - -7169.38 -3350.48 -2879.93 0.81 0.42 0.40 1 - -7021.66 -3398.63 -3131.04 0.81 0.42 0.40 1 - -6874.04 -3446.49 -3382.33 0.81 0.42 0.40 1 - -6726.47 -3494.44 -3633.39 0.81 0.42 0.40 1 - -6578.70 -3542.49 -3884.74 0.81 0.42 0.40 1 - -7170.60 -3146.32 -3093.22 0.81 0.42 0.40 1 - -7022.88 -3194.47 -3344.33 0.81 0.42 0.40 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -6727.69 -3290.28 -3846.69 0.81 0.42 0.40 1 - -7171.82 -2942.16 -3306.52 0.81 0.42 0.40 1 - -7024.10 -2990.31 -3557.63 0.81 0.42 0.40 1 - -6876.48 -3038.17 -3808.92 0.81 0.42 0.40 1 - -6196.91 -3904.92 4087.44 0.73 0.45 -0.51 1 - -6334.40 -3645.49 4118.86 0.73 0.45 -0.51 1 - -6000.23 -3992.84 4289.41 0.73 0.45 -0.51 1 - -6137.96 -3733.67 4320.78 0.73 0.45 -0.51 1 - -6275.45 -3474.24 4352.20 0.73 0.45 -0.51 1 - -5941.19 -3821.88 4522.57 0.73 0.45 -0.51 1 - -6078.68 -3562.45 4553.98 0.73 0.45 -0.51 1 - -6640.35 -2384.02 4600.32 0.74 0.32 -0.59 1 - -6442.67 -2477.00 4799.28 0.74 0.32 -0.59 1 - -6245.34 -2569.72 4998.31 0.74 0.32 -0.59 1 - -6047.81 -2662.59 5197.09 0.74 0.32 -0.59 1 - -5850.34 -2755.64 5396.18 0.74 0.32 -0.59 1 - -6532.70 -2658.71 4584.72 0.74 0.32 -0.59 1 - -6335.16 -2751.58 4783.50 0.74 0.32 -0.59 1 - -6137.83 -2844.30 4982.53 0.74 0.32 -0.59 1 - -5940.51 -2937.23 5181.44 0.74 0.32 -0.59 1 - -6425.19 -2933.28 4568.94 0.74 0.32 -0.59 1 - -6227.87 -3026.22 4767.84 0.74 0.32 -0.59 1 - -6030.53 -3118.94 4966.88 0.74 0.32 -0.59 1 - -6317.89 -3207.93 4553.29 0.74 0.32 -0.59 1 - -6120.56 -3300.65 4752.32 0.74 0.32 -0.59 1 - -5841.37 -2208.37 5628.40 0.69 0.23 -0.68 1 - -5932.57 -1927.67 5628.40 0.69 0.23 -0.68 1 - -6023.91 -1646.64 5628.35 0.69 0.23 -0.68 1 - -6115.11 -1365.94 5628.35 0.69 0.23 -0.68 1 - -5629.10 -2294.69 5814.70 0.69 0.23 -0.68 1 - -5720.30 -2013.77 5814.83 0.69 0.23 -0.68 1 - -5811.65 -1732.96 5814.65 0.69 0.23 -0.68 1 - -5902.85 -1452.05 5814.78 0.69 0.23 -0.68 1 - -5508.04 -2100.09 6001.12 0.69 0.23 -0.68 1 - -5599.39 -1819.28 6000.94 0.69 0.23 -0.68 1 - -5690.59 -1538.37 6001.07 0.69 0.23 -0.68 1 - -5387.34 -1905.67 6187.36 0.69 0.23 -0.68 1 - -5478.54 -1624.75 6187.49 0.69 0.23 -0.68 1 - -5979.54 -2408.52 5409.95 0.75 0.24 -0.62 1 - -6358.40 -1755.48 5209.20 0.75 0.24 -0.62 1 - -6267.19 -2036.17 5209.20 0.75 0.24 -0.62 1 - -6175.99 -2317.09 5209.07 0.75 0.24 -0.62 1 - -6463.72 -1944.92 5008.63 0.75 0.24 -0.62 1 - -6372.52 -2225.83 5008.50 0.75 0.24 -0.62 1 - -6568.83 -2134.29 4807.94 0.75 0.24 -0.62 1 - -6742.79 -1497.76 4783.61 0.79 0.17 -0.59 1 - -6847.84 -1688.81 4584.71 0.79 0.17 -0.59 1 - -6712.10 -1021.21 4966.93 0.79 0.17 -0.59 1 - -6817.15 -1212.48 4767.90 0.79 0.17 -0.59 1 - -6922.21 -1403.52 4569.00 0.79 0.17 -0.59 1 - -6891.72 -927.05 4752.44 0.79 0.17 -0.59 1 - -6996.78 -1118.31 4553.41 0.79 0.17 -0.59 1 - -6058.09 -876.26 5785.33 0.68 0.07 -0.73 1 - -5615.07 -266.60 6251.18 0.68 0.07 -0.73 1 - -5467.50 -63.49 6406.35 0.68 0.07 -0.73 1 - -5845.41 -959.41 5972.76 0.68 0.07 -0.73 1 - -5697.68 -756.26 6128.13 0.68 0.07 -0.73 1 - -5550.11 -552.90 6283.25 0.68 0.07 -0.73 1 - -5402.38 -349.75 6438.61 0.68 0.07 -0.73 1 - -5632.72 -1042.55 6160.19 0.68 0.07 -0.73 1 - -5485.15 -839.19 6315.31 0.68 0.07 -0.73 1 - -5337.42 -636.04 6470.68 0.68 0.07 -0.73 1 - -5420.39 -1125.46 6347.53 0.68 0.07 -0.73 1 - -5272.66 -922.31 6502.90 0.68 0.07 -0.73 1 - -5076.48 63.63 6720.40 0.55 0.03 -0.83 1 - -4837.58 -14.15 6875.68 0.55 0.03 -0.83 1 - -4598.81 -91.73 7030.85 0.55 0.03 -0.83 1 - -4359.73 -169.35 7186.20 0.55 0.03 -0.83 1 - -4120.95 -246.93 7341.36 0.55 0.03 -0.83 1 - -5008.96 -221.95 6754.58 0.55 0.03 -0.83 1 - -4770.06 -299.72 6909.86 0.55 0.03 -0.83 1 - -4531.10 -377.15 7065.09 0.55 0.03 -0.83 1 - -4292.21 -454.92 7220.37 0.55 0.03 -0.83 1 - -4941.43 -507.52 6788.75 0.55 0.03 -0.83 1 - -4702.47 -584.94 6943.99 0.55 0.03 -0.83 1 - -4463.58 -662.72 7099.27 0.55 0.03 -0.83 1 - -4873.96 -792.68 6823.10 0.55 0.03 -0.83 1 - -4635.07 -870.46 6978.37 0.55 0.03 -0.83 1 - -7052.81 -400.16 4522.73 0.85 0.07 -0.51 1 - -7011.68 -690.90 4553.93 0.85 0.07 -0.51 1 - -7201.22 -296.57 4289.40 0.85 0.07 -0.51 1 - -7160.24 -587.17 4320.90 0.85 0.07 -0.51 1 - -7119.11 -877.91 4352.10 0.85 0.07 -0.51 1 - -7308.60 -483.23 4087.66 0.85 0.07 -0.51 1 - -7267.47 -773.97 4118.86 0.85 0.07 -0.51 1 - -6504.60 333.22 5340.41 0.77 0.03 -0.63 1 - -6455.15 45.45 5385.69 0.77 0.03 -0.63 1 - -6405.75 -242.01 5431.27 0.77 0.03 -0.63 1 - -6356.31 -529.53 5476.50 0.77 0.03 -0.63 1 - -6307.07 -817.27 5521.93 0.77 0.03 -0.63 1 - -6635.70 131.75 5168.63 0.77 0.03 -0.63 1 - -6586.25 -155.77 5213.86 0.77 0.03 -0.63 1 - -6536.85 -443.23 5259.45 0.77 0.03 -0.63 1 - -6487.61 -730.72 5304.83 0.77 0.03 -0.63 1 - -6766.80 -69.47 4996.81 0.77 0.03 -0.63 1 - -6717.56 -356.96 5042.19 0.77 0.03 -0.63 1 - -6668.16 -644.42 5087.78 0.77 0.03 -0.63 1 - -6898.10 -270.66 4825.14 0.77 0.03 -0.63 1 - -6848.70 -558.12 4870.72 0.77 0.03 -0.63 1 - -5850.34 -6058.85 51.38 0.74 0.67 -0.03 1 - -6047.76 -5839.25 57.22 0.74 0.67 -0.03 1 - -6245.25 -5619.98 63.17 0.74 0.67 -0.03 1 - -6442.71 -5400.30 69.24 0.74 0.67 -0.03 1 - -6640.34 -5180.84 75.09 0.74 0.67 -0.03 1 - -5940.44 -5948.10 309.78 0.74 0.67 -0.03 1 - -6137.77 -5728.61 315.96 0.74 0.67 -0.03 1 - -6335.40 -5509.15 321.81 0.74 0.67 -0.03 1 - -6532.68 -5289.74 327.74 0.74 0.67 -0.03 1 - -6030.46 -5837.45 568.52 0.74 0.67 -0.03 1 - -6227.87 -5617.85 574.36 0.74 0.67 -0.03 1 - -6425.16 -5398.45 580.30 0.74 0.67 -0.03 1 - -6120.43 -5726.90 827.02 0.74 0.67 -0.03 1 - -6317.84 -5507.29 832.86 0.74 0.67 -0.03 1 - -6773.45 -4997.63 -291.38 0.79 0.60 0.11 1 - -6668.18 -5089.98 -551.57 0.79 0.60 0.11 1 - -6563.03 -5182.58 -811.41 0.79 0.60 0.11 1 - -6457.81 -5274.85 -1071.37 0.79 0.60 0.11 1 - -6352.75 -5367.35 -1331.54 0.79 0.60 0.11 1 - -6847.82 -4856.00 -539.77 0.79 0.60 0.11 1 - -6742.59 -4948.27 -799.72 0.79 0.60 0.11 1 - -6637.45 -5040.87 -1059.57 0.79 0.60 0.11 1 - -6532.44 -5133.28 -1319.51 0.79 0.60 0.11 1 - -6922.23 -4714.28 -787.92 0.79 0.60 0.11 1 - -6817.22 -4806.69 -1047.87 0.79 0.60 0.11 1 - -6712.07 -4899.30 -1307.71 0.79 0.60 0.11 1 - -6996.86 -4572.71 -1036.07 0.79 0.60 0.11 1 - -6891.71 -4665.31 -1295.92 0.79 0.60 0.11 1 - -6846.14 -4897.58 291.38 0.82 0.57 -0.11 1 - -6901.44 -4768.92 551.57 0.82 0.57 -0.11 1 - -6957.02 -4640.31 811.41 0.82 0.57 -0.11 1 - -7012.25 -4511.72 1071.37 0.82 0.57 -0.11 1 - -7067.75 -4383.22 1331.54 0.82 0.57 -0.11 1 - -6734.42 -5012.07 539.77 0.82 0.57 -0.11 1 - -6789.65 -4883.49 799.72 0.82 0.57 -0.11 1 - -6845.23 -4754.87 1059.57 0.82 0.57 -0.11 1 - -6900.67 -4626.44 1319.51 0.82 0.57 -0.11 1 - -6622.63 -5126.64 787.92 0.82 0.57 -0.11 1 - -6678.07 -4998.21 1047.87 0.82 0.57 -0.11 1 - -6733.65 -4869.59 1307.71 0.82 0.57 -0.11 1 - -6511.05 -5241.36 1036.07 0.82 0.57 -0.11 1 - -6566.63 -5112.74 1295.92 0.82 0.57 -0.11 1 - -7011.71 -4382.19 -1418.68 0.85 0.49 0.17 1 - -7052.97 -4224.08 -1664.63 0.85 0.49 0.17 1 - -7119.05 -4285.34 -1161.16 0.85 0.49 0.17 1 - -7160.31 -4127.24 -1407.12 0.85 0.49 0.17 1 - -7201.22 -3969.21 -1653.03 0.85 0.49 0.17 1 - -7267.41 -4030.18 -1149.73 0.85 0.49 0.17 1 - -7308.66 -3872.07 -1395.69 0.85 0.49 0.17 1 - -7570.16 -3691.72 -51.38 0.87 0.50 0.03 1 - -7422.32 -3947.33 -57.22 0.87 0.50 0.03 1 - -7274.81 -4202.91 -63.17 0.87 0.50 0.03 1 - -7126.90 -4458.60 -69.24 0.87 0.50 0.03 1 - -6979.25 -4714.37 -75.09 0.87 0.50 0.03 1 - -7492.68 -3811.63 -309.78 0.87 0.50 0.03 1 - -7344.91 -4067.13 -315.96 0.87 0.50 0.03 1 - -7197.26 -4322.90 -321.81 0.87 0.50 0.03 1 - -7049.55 -4578.33 -327.74 0.87 0.50 0.03 1 - -7415.27 -3931.44 -568.52 0.87 0.50 0.03 1 - -7267.42 -4187.05 -574.36 0.87 0.50 0.03 1 - -7119.71 -4442.48 -580.30 0.87 0.50 0.03 1 - -7337.92 -4051.17 -827.02 0.87 0.50 0.03 1 - -7190.07 -4306.78 -832.86 0.87 0.50 0.03 1 - -8188.77 -728.08 -1664.71 0.98 0.11 0.17 1 - -8248.33 -576.14 -1418.62 0.98 0.11 0.17 1 - -8158.94 -1021.64 -1653.03 0.98 0.11 0.17 1 - -8218.73 -869.61 -1407.19 0.98 0.11 0.17 1 - -8278.29 -717.67 -1161.10 0.98 0.11 0.17 1 - -8188.81 -1163.20 -1395.85 0.98 0.11 0.17 1 - -8248.37 -1011.26 -1149.76 0.98 0.11 0.17 1 - -8314.83 -805.67 1018.61 0.99 0.10 -0.06 1 - -8314.83 -960.84 767.55 0.99 0.10 -0.06 1 - -8314.82 -1115.99 516.23 0.99 0.10 -0.06 1 - -5585.96 -5713.67 2640.25 0.71 0.64 -0.29 1 - -6135.03 -5179.85 2485.19 0.71 0.64 -0.29 1 - -5945.90 -5403.90 2450.18 0.71 0.64 -0.29 1 - -5756.78 -5627.96 2415.16 0.71 0.64 -0.29 1 - -6116.59 -5318.39 2225.04 0.71 0.64 -0.29 1 - -5927.46 -5542.44 2190.02 0.71 0.64 -0.29 1 - -6098.11 -5456.58 1964.84 0.71 0.64 -0.29 1 - -5941.06 -5754.41 1395.69 0.73 0.66 -0.17 1 - -6078.67 -5666.31 1149.73 0.73 0.66 -0.17 1 - -6000.23 -5622.21 1653.03 0.73 0.66 -0.17 1 - -6137.89 -5534.47 1407.12 0.73 0.66 -0.17 1 - -6275.51 -5446.38 1161.16 0.73 0.66 -0.17 1 - -6196.82 -5402.45 1664.63 0.73 0.66 -0.17 1 - -6334.44 -5314.36 1418.68 0.73 0.66 -0.17 1 - -6993.87 -4359.12 1738.54 0.79 0.56 -0.25 1 - -6848.10 -4458.28 1975.50 0.79 0.56 -0.25 1 - -6702.62 -4557.61 2212.33 0.79 0.56 -0.25 1 - -6556.70 -4656.98 2449.23 0.79 0.56 -0.25 1 - -6411.11 -4756.29 2686.29 0.79 0.56 -0.25 1 - -6828.27 -4602.72 1718.80 0.79 0.56 -0.25 1 - -6682.46 -4702.11 1955.48 0.79 0.56 -0.25 1 - -6536.87 -4801.42 2192.54 0.79 0.56 -0.25 1 - -6391.20 -4900.60 2429.26 0.79 0.56 -0.25 1 - -6662.63 -4846.55 1698.78 0.79 0.56 -0.25 1 - -6516.86 -4945.71 1935.74 0.79 0.56 -0.25 1 - -6371.19 -5044.89 2172.47 0.79 0.56 -0.25 1 - -6497.13 -5090.17 1678.81 0.79 0.56 -0.25 1 - -6351.36 -5189.33 1915.77 0.79 0.56 -0.25 1 - -6411.13 -4529.79 3052.74 0.79 0.48 -0.39 1 - -6556.76 -4273.27 3069.96 0.79 0.48 -0.39 1 - -6702.53 -4017.13 3087.01 0.79 0.48 -0.39 1 - -6848.02 -3760.82 3104.18 0.79 0.48 -0.39 1 - -6993.83 -3504.45 3121.51 0.79 0.48 -0.39 1 - -6391.21 -4364.45 3296.76 0.79 0.48 -0.39 1 - -6536.70 -4108.13 3313.94 0.79 0.48 -0.39 1 - -6682.47 -3851.99 3330.98 0.79 0.48 -0.39 1 - -6828.14 -3595.82 3348.26 0.79 0.48 -0.39 1 - -6371.14 -4199.30 3540.74 0.79 0.48 -0.39 1 - -6516.81 -3943.14 3558.01 0.79 0.48 -0.39 1 - -6662.59 -3687.00 3575.05 0.79 0.48 -0.39 1 - -6351.26 -4034.31 3784.81 0.79 0.48 -0.39 1 - -6497.03 -3778.17 3801.85 0.79 0.48 -0.39 1 - -7011.46 -3708.41 2812.54 0.82 0.49 -0.30 1 - -6863.91 -4274.21 2294.47 0.82 0.49 -0.30 1 - -6863.91 -4119.04 2545.53 0.82 0.49 -0.30 1 - -6863.80 -3963.86 2796.82 0.82 0.49 -0.30 1 - -6716.57 -4374.44 2529.96 0.82 0.49 -0.30 1 - -6716.47 -4219.25 2781.25 0.82 0.49 -0.30 1 - -6569.05 -4474.52 2765.36 0.82 0.49 -0.30 1 - -7166.05 -3420.51 2808.23 0.86 0.43 -0.27 1 - -7166.15 -3575.70 2556.93 0.86 0.43 -0.27 1 - -7166.15 -3730.86 2305.87 0.86 0.43 -0.27 1 - -7166.11 -3886.25 2054.53 0.86 0.43 -0.27 1 - -7166.11 -4041.42 1803.47 0.86 0.43 -0.27 1 - -7295.12 -3310.20 2566.46 0.86 0.43 -0.27 1 - -7295.23 -3465.39 2315.17 0.86 0.43 -0.27 1 - -7295.08 -3620.76 2064.06 0.86 0.43 -0.27 1 - -7295.19 -3775.94 1812.77 0.86 0.43 -0.27 1 - -7424.20 -3199.89 2324.70 0.86 0.43 -0.27 1 - -7424.06 -3355.26 2073.59 0.86 0.43 -0.27 1 - -7424.16 -3510.44 1822.30 0.86 0.43 -0.27 1 - -7553.21 -3089.92 2083.21 0.86 0.43 -0.27 1 - -7553.31 -3245.10 1831.92 0.86 0.43 -0.27 1 - -7067.81 -3151.13 3324.93 0.82 0.35 -0.46 1 - -7012.32 -2975.97 3556.17 0.82 0.35 -0.46 1 - -6957.04 -2801.10 3787.44 0.82 0.35 -0.46 1 - -6901.39 -2626.05 4018.85 0.82 0.35 -0.46 1 - -6846.10 -2450.96 4250.23 0.82 0.35 -0.46 1 - -6900.79 -3249.18 3547.75 0.82 0.35 -0.46 1 - -6845.16 -3074.35 3779.04 0.82 0.35 -0.46 1 - -6789.86 -2899.26 4010.43 0.82 0.35 -0.46 1 - -6734.39 -2724.32 4241.54 0.82 0.35 -0.46 1 - -6733.63 -3347.56 3770.62 0.82 0.35 -0.46 1 - -6678.14 -3172.40 4001.86 0.82 0.35 -0.46 1 - -6622.66 -2997.47 4232.98 0.82 0.35 -0.46 1 - -6566.63 -3445.83 3993.31 0.82 0.35 -0.46 1 - -6511.14 -3270.67 4224.56 0.82 0.35 -0.46 1 - -7593.33 -3088.42 1561.47 0.93 0.30 -0.19 1 - -7684.58 -2962.62 1310.22 0.93 0.30 -0.19 1 - -7775.70 -2837.14 1059.02 0.93 0.30 -0.19 1 - -7593.22 -2933.13 1812.53 0.93 0.30 -0.19 1 - -7684.67 -2807.39 1561.43 0.93 0.30 -0.19 1 - -7852.11 -1121.03 2812.60 0.95 0.08 -0.30 1 - -7943.31 -995.50 2561.54 0.95 0.08 -0.30 1 - -8034.55 -869.75 2310.36 0.95 0.08 -0.30 1 - -2254.44 -3605.25 -7258.24 9999.00 9999.00 9999.00 3 - -5674.62 -4224.46 -4557.89 9999.00 9999.00 9999.00 3 - -7074.00 82.10 -4557.80 9999.00 9999.00 9999.00 3 - -4176.36 -73.30 -7305.88 9999.00 9999.00 9999.00 3 - -6047.76 -5839.25 57.22 9999.00 9999.00 9999.00 3 - -7807.98 -3157.92 36.42 9999.00 9999.00 9999.00 3 - -8417.36 61.77 -291.44 9999.00 9999.00 9999.00 3 - -7807.98 3157.92 -36.42 9999.00 9999.00 9999.00 3 - 5771.24 -4091.57 4557.80 9999.00 9999.00 9999.00 3 - -5693.57 -46.03 -6197.12 0.72 -0.01 0.70 1 - -5841.14 157.08 -6041.96 0.72 -0.01 0.70 1 - -5988.87 360.23 -5886.59 0.72 -0.01 0.70 1 - -1277.80 -1507.60 -8192.58 0.09 0.13 0.99 1 - -1038.77 -1681.09 -8192.61 0.09 0.13 0.99 1 - -1248.68 -1216.36 -8232.62 0.09 0.13 0.99 1 - -1009.90 -1390.09 -8232.57 0.09 0.13 0.99 1 - -770.87 -1563.57 -8232.61 0.09 0.13 0.99 1 - -1219.81 -925.36 -8272.58 0.09 0.13 0.99 1 - -980.78 -1098.85 -8272.62 0.09 0.13 0.99 1 - -742.00 -1272.58 -8272.57 0.09 0.13 0.99 1 - -502.98 -1446.06 -8272.61 0.09 0.13 0.99 1 - -1190.69 -634.12 -8312.63 0.09 0.13 0.99 1 - -951.91 -807.85 -8312.58 0.09 0.13 0.99 1 - -712.89 -981.34 -8312.62 0.09 0.13 0.99 1 - -474.11 -1154.82 -8312.61 0.09 0.13 0.99 1 - -235.08 -1328.55 -8312.60 0.09 0.13 0.99 1 - -922.80 -516.61 -8352.63 0.09 0.13 0.99 1 - -684.02 -690.34 -8352.58 0.09 0.13 0.99 1 - -444.99 -863.82 -8352.61 0.09 0.13 0.99 1 - -206.22 -1037.30 -8352.61 0.09 0.13 0.99 1 - -654.90 -399.10 -8392.62 0.09 0.13 0.99 1 - -416.12 -572.83 -8392.57 0.09 0.13 0.99 1 - -177.10 -746.31 -8392.61 0.09 0.13 0.99 1 - -2432.29 -2594.22 -7627.40 0.23 0.32 0.92 1 - -2193.51 -2767.70 -7627.40 0.23 0.32 0.92 1 - -1954.49 -2941.18 -7627.44 0.23 0.32 0.92 1 - -1715.71 -3114.91 -7627.39 0.23 0.32 0.92 1 - -2174.55 -2490.63 -7727.54 0.23 0.32 0.92 1 - -1935.77 -2664.11 -7727.54 0.23 0.32 0.92 1 - -1696.75 -2837.59 -7727.57 0.23 0.32 0.92 1 - -1916.84 -2387.08 -7827.92 0.23 0.32 0.92 1 - -1677.82 -2560.57 -7827.96 0.23 0.32 0.92 1 - -1659.10 -2283.49 -7928.06 0.23 0.32 0.92 1 - -1749.90 -3413.23 -7498.41 0.28 0.38 0.88 1 - -1988.93 -3239.75 -7498.37 0.28 0.38 0.88 1 - -2227.70 -3066.27 -7498.37 0.28 0.38 0.88 1 - -2466.73 -2892.54 -7498.39 0.28 0.38 0.88 1 - -2705.50 -2719.06 -7498.39 0.28 0.38 0.88 1 - -2002.17 -3509.24 -7378.32 0.28 0.38 0.88 1 - -2241.20 -3335.76 -7378.29 0.28 0.38 0.88 1 - -2479.98 -3162.03 -7378.34 0.28 0.38 0.88 1 - -2719.00 -2988.54 -7378.30 0.28 0.38 0.88 1 - -2254.44 -3605.25 -7258.24 0.28 0.38 0.88 1 - -2493.22 -3431.52 -7258.29 0.28 0.38 0.88 1 - -2732.25 -3258.04 -7258.25 0.28 0.38 0.88 1 - -2506.50 -3701.06 -7138.49 0.28 0.38 0.88 1 - -2745.53 -3527.58 -7138.45 0.28 0.38 0.88 1 - -2492.18 -4435.28 -6614.58 0.36 0.49 0.79 1 - -2492.29 -4183.90 -6769.79 0.36 0.49 0.79 1 - -2492.13 -3932.76 -6924.96 0.36 0.49 0.79 1 - -2730.98 -4512.76 -6459.28 0.36 0.49 0.79 1 - -2731.22 -4261.57 -6614.63 0.36 0.49 0.79 1 - -2731.06 -4010.42 -6769.80 0.36 0.49 0.79 1 - -2731.18 -3759.05 -6925.01 0.36 0.49 0.79 1 - -2969.91 -4590.42 -6304.12 0.36 0.49 0.79 1 - -2970.02 -4339.05 -6459.34 0.36 0.49 0.79 1 - -2970.00 -4088.09 -6614.63 0.36 0.49 0.79 1 - -2970.05 -3836.88 -6769.67 0.36 0.49 0.79 1 - -2969.95 -3585.57 -6925.02 0.36 0.49 0.79 1 - -3208.89 -4416.88 -6303.99 0.36 0.49 0.79 1 - -3208.80 -4165.57 -6459.34 0.36 0.49 0.79 1 - -3208.98 -3914.54 -6614.50 0.36 0.49 0.79 1 - -3208.89 -3663.23 -6769.85 0.36 0.49 0.79 1 - -3447.73 -4243.23 -6304.17 0.36 0.49 0.79 1 - -3447.78 -3992.02 -6459.21 0.36 0.49 0.79 1 - -3447.82 -3740.89 -6614.68 0.36 0.49 0.79 1 - -4144.35 -4699.50 -5628.27 0.43 0.59 0.68 1 - -3905.37 -4873.04 -5628.40 0.43 0.59 0.68 1 - -3666.59 -5046.52 -5628.40 0.43 0.59 0.68 1 - -3427.55 -5220.23 -5628.35 0.43 0.59 0.68 1 - -3188.77 -5393.71 -5628.35 0.43 0.59 0.68 1 - -3921.87 -4644.49 -5814.70 0.43 0.59 0.68 1 - -3682.89 -4818.03 -5814.83 0.43 0.59 0.68 1 - -3444.05 -4991.68 -5814.65 0.43 0.59 0.68 1 - -3205.07 -5165.23 -5814.78 0.43 0.59 0.68 1 - -3699.39 -4589.49 -6001.12 0.43 0.59 0.68 1 - -3460.55 -4763.14 -6000.94 0.43 0.59 0.68 1 - -3221.57 -4936.68 -6001.07 0.43 0.59 0.68 1 - -3477.19 -4534.77 -6187.36 0.43 0.59 0.68 1 - -3238.20 -4708.31 -6187.49 0.43 0.59 0.68 1 - -3421.83 -5463.27 -5409.89 0.46 0.63 0.62 1 - -3660.60 -5289.79 -5409.89 0.46 0.63 0.62 1 - -3899.58 -5116.25 -5409.76 0.46 0.63 0.62 1 - -4138.42 -4942.60 -5409.95 0.46 0.63 0.62 1 - -3634.41 -5504.72 -5209.20 0.46 0.63 0.62 1 - -3873.19 -5331.24 -5209.20 0.46 0.63 0.62 1 - -4112.17 -5157.70 -5209.07 0.46 0.63 0.62 1 - -3847.13 -5546.35 -5008.63 0.46 0.63 0.62 1 - -4086.11 -5372.81 -5008.50 0.46 0.63 0.62 1 - -4059.72 -5587.80 -4807.94 0.46 0.63 0.62 1 - -4319.32 -5578.65 -4600.32 0.54 0.61 0.59 1 - -4346.66 -5361.92 -4799.28 0.54 0.61 0.59 1 - -4373.87 -5145.59 -4998.31 0.54 0.61 0.59 1 - -4401.15 -4929.02 -5197.09 0.54 0.61 0.59 1 - -4428.63 -4712.46 -5396.18 0.54 0.61 0.59 1 - -4547.30 -5391.39 -4584.72 0.54 0.61 0.59 1 - -4574.58 -5174.82 -4783.50 0.54 0.61 0.59 1 - -4601.78 -4958.49 -4982.53 0.54 0.61 0.59 1 - -4629.20 -4742.10 -5181.44 0.54 0.61 0.59 1 - -4775.21 -5204.29 -4568.94 0.54 0.61 0.59 1 - -4802.63 -4987.90 -4767.84 0.54 0.61 0.59 1 - -4829.83 -4771.57 -4966.88 0.54 0.61 0.59 1 - -5003.26 -5017.37 -4553.29 0.54 0.61 0.59 1 - -5030.46 -4801.04 -4752.32 0.54 0.61 0.59 1 - -4386.04 -3265.06 -6406.27 0.50 0.45 0.73 1 - -4385.93 -3516.35 -6251.09 0.50 0.45 0.73 1 - -4385.94 -3767.41 -6095.92 0.50 0.45 0.73 1 - -4385.98 -4018.76 -5940.54 0.50 0.45 0.73 1 - -4385.98 -4269.82 -5785.37 0.50 0.45 0.73 1 - -4165.10 -3458.52 -6438.44 0.50 0.45 0.73 1 - -4165.00 -3709.82 -6283.26 0.50 0.45 0.73 1 - -4165.14 -3960.93 -6127.89 0.50 0.45 0.73 1 - -4165.04 -4212.23 -5972.71 0.50 0.45 0.73 1 - -3944.16 -3651.99 -6470.62 0.50 0.45 0.73 1 - -3944.31 -3903.11 -6315.25 0.50 0.45 0.73 1 - -3944.21 -4154.40 -6160.06 0.50 0.45 0.73 1 - -3723.66 -3845.37 -6502.76 0.50 0.45 0.73 1 - -3723.55 -4096.67 -6347.57 0.50 0.45 0.73 1 - -3188.81 -2621.93 -7341.35 0.43 0.35 0.83 1 - -3427.71 -2699.71 -7186.08 0.43 0.35 0.83 1 - -3666.49 -2777.29 -7030.91 0.43 0.35 0.83 1 - -3905.57 -2854.91 -6875.55 0.43 0.35 0.83 1 - -4144.34 -2932.49 -6720.39 0.43 0.35 0.83 1 - -3205.25 -2890.90 -7220.26 0.43 0.35 0.83 1 - -3444.15 -2968.68 -7064.99 0.43 0.35 0.83 1 - -3683.11 -3046.10 -6909.74 0.43 0.35 0.83 1 - -3922.01 -3123.88 -6754.47 0.43 0.35 0.83 1 - -3221.69 -3159.88 -7099.17 0.43 0.35 0.83 1 - -3460.65 -3237.30 -6943.92 0.43 0.35 0.83 1 - -3699.55 -3315.08 -6788.65 0.43 0.35 0.83 1 - -3238.32 -3428.52 -6978.32 0.43 0.35 0.83 1 - -3477.22 -3506.30 -6823.05 0.43 0.35 0.83 1 - -2726.23 -2369.46 -7608.69 0.27 0.24 0.93 1 - -2467.88 -2268.11 -7709.78 0.27 0.24 0.93 1 - -2209.82 -2166.81 -7811.08 0.27 0.24 0.93 1 - -1951.48 -2065.21 -7912.22 0.27 0.24 0.93 1 - -1693.17 -1963.92 -8013.56 0.27 0.24 0.93 1 - -2699.79 -2086.62 -7689.08 0.27 0.24 0.93 1 - -2441.70 -1985.02 -7790.18 0.27 0.24 0.93 1 - -2183.39 -1883.72 -7891.51 0.27 0.24 0.93 1 - -1925.30 -1782.37 -7992.57 0.27 0.24 0.93 1 - -2673.61 -1803.53 -7769.47 0.27 0.24 0.93 1 - -2415.27 -1702.18 -7870.56 0.27 0.24 0.93 1 - -2157.17 -1600.83 -7971.62 0.27 0.24 0.93 1 - -2647.43 -1520.69 -7849.82 0.27 0.24 0.93 1 - -2389.09 -1419.34 -7950.91 0.27 0.24 0.93 1 - -4633.25 -4062.89 -5731.41 0.58 0.43 0.70 1 - -4633.25 -3811.83 -5886.58 0.58 0.43 0.70 1 - -4633.35 -3560.53 -6041.76 0.58 0.43 0.70 1 - -1560.46 -1611.53 -8111.06 0.21 0.14 0.97 1 - -1532.08 -1321.40 -8158.10 0.21 0.14 0.97 1 - -1503.70 -1031.28 -8205.13 0.21 0.14 0.97 1 - -1475.29 -741.10 -8251.93 0.21 0.14 0.97 1 - -1795.00 -1434.20 -8084.97 0.21 0.14 0.97 1 - -1766.63 -1144.08 -8132.01 0.21 0.14 0.97 1 - -1738.25 -853.95 -8179.05 0.21 0.14 0.97 1 - -2029.59 -1256.68 -8059.18 0.21 0.14 0.97 1 - -2001.21 -966.55 -8106.22 0.21 0.14 0.97 1 - -2264.14 -1079.35 -8033.09 0.21 0.14 0.97 1 - -4138.48 -2628.36 -6840.16 0.46 0.27 0.84 1 - -3899.70 -2550.78 -6995.33 0.46 0.27 0.84 1 - -3660.80 -2473.00 -7150.60 0.46 0.27 0.84 1 - -3293.77 -1814.02 -7513.26 0.41 0.21 0.89 1 - -3079.50 -2010.17 -7565.73 0.41 0.21 0.89 1 - -3473.94 -1336.36 -7543.77 0.41 0.21 0.89 1 - -3259.67 -1532.51 -7596.23 0.41 0.21 0.89 1 - -3045.53 -1728.86 -7648.59 0.41 0.21 0.89 1 - -3225.70 -1251.20 -7679.09 0.41 0.21 0.89 1 - -3011.56 -1447.54 -7731.45 0.41 0.21 0.89 1 - -2718.14 -614.17 -7911.51 0.33 0.11 0.94 1 - -2981.87 -699.99 -7810.12 0.33 0.11 0.94 1 - -2507.35 -814.70 -7962.04 0.33 0.11 0.94 1 - -2771.11 -900.32 -7860.95 0.33 0.11 0.94 1 - -3034.84 -986.15 -7759.56 0.33 0.11 0.94 1 - -2560.07 -1100.61 -7911.57 0.33 0.11 0.94 1 - -2823.80 -1186.43 -7810.18 0.33 0.11 0.94 1 - -4176.36 -73.30 -7305.88 0.53 0.05 0.85 1 - -4415.14 -150.88 -7150.71 0.53 0.05 0.85 1 - -4654.03 -228.65 -6995.43 0.53 0.05 0.85 1 - -1629.00 -267.32 -8251.94 0.25 0.01 0.97 1 - -1822.71 -49.59 -8205.13 0.25 0.01 0.97 1 - -2016.20 168.44 -8158.10 0.25 0.01 0.97 1 - -2209.69 386.47 -8111.06 0.25 0.01 0.97 1 - -1908.05 -330.96 -8179.09 0.25 0.01 0.97 1 - -2101.55 -112.93 -8132.05 0.25 0.01 0.97 1 - -2295.04 105.10 -8085.01 0.25 0.01 0.97 1 - -2187.18 -394.35 -8106.21 0.25 0.01 0.97 1 - -2380.68 -176.32 -8059.17 0.25 0.01 0.97 1 - -2466.02 -457.69 -8033.13 0.25 0.01 0.97 1 - -4893.02 -5981.12 -3332.83 0.53 0.73 0.42 1 - -4654.24 -6154.61 -3332.83 0.53 0.73 0.42 1 - -4415.25 -6328.14 -3332.95 0.53 0.73 0.42 1 - -4176.42 -6501.80 -3332.78 0.53 0.73 0.42 1 - -4709.73 -5980.02 -3564.34 0.53 0.73 0.42 1 - -4470.96 -6153.50 -3564.34 0.53 0.73 0.42 1 - -4231.97 -6327.03 -3564.46 0.53 0.73 0.42 1 - -4526.57 -5979.08 -3795.99 0.53 0.73 0.42 1 - -4287.58 -6152.61 -3796.11 0.53 0.73 0.42 1 - -4343.29 -5977.97 -4027.50 0.53 0.73 0.42 1 - -4120.94 -6676.70 -3062.35 0.55 0.76 0.35 1 - -4359.93 -6503.16 -3062.23 0.55 0.76 0.35 1 - -4598.71 -6329.68 -3062.23 0.55 0.76 0.35 1 - -4837.75 -6155.97 -3062.28 0.55 0.76 0.35 1 - -5076.52 -5982.48 -3062.28 0.55 0.76 0.35 1 - -4292.34 -6661.39 -2822.21 0.55 0.76 0.35 1 - -4531.33 -6487.86 -2822.09 0.55 0.76 0.35 1 - -4770.16 -6314.19 -2822.26 0.55 0.76 0.35 1 - -5009.15 -6140.66 -2822.14 0.55 0.76 0.35 1 - -4463.74 -6646.08 -2582.07 0.55 0.76 0.35 1 - -4702.56 -6472.42 -2582.24 0.55 0.76 0.35 1 - -4941.55 -6298.88 -2582.12 0.55 0.76 0.35 1 - -4635.09 -6630.81 -2342.37 0.55 0.76 0.35 1 - -4874.08 -6457.28 -2342.25 0.55 0.76 0.35 1 - -5180.98 -5748.14 -3324.93 0.58 0.67 0.46 1 - -4997.25 -5749.49 -3556.17 0.58 0.67 0.46 1 - -4813.85 -5750.96 -3787.44 0.58 0.67 0.46 1 - -4630.17 -5752.12 -4018.85 0.58 0.67 0.46 1 - -4446.56 -5753.65 -4250.23 0.58 0.67 0.46 1 - -5222.62 -5558.99 -3547.75 0.58 0.67 0.46 1 - -5039.15 -5560.11 -3779.04 0.58 0.67 0.46 1 - -4855.54 -5561.63 -4010.43 0.58 0.67 0.46 1 - -4672.03 -5562.93 -4241.54 0.58 0.67 0.46 1 - -5264.53 -5369.61 -3770.62 0.58 0.67 0.46 1 - -5080.79 -5370.96 -4001.86 0.58 0.67 0.46 1 - -4897.27 -5372.26 -4232.98 0.58 0.67 0.46 1 - -5306.38 -5180.42 -3993.31 0.58 0.67 0.46 1 - -5122.65 -5181.77 -4224.56 0.58 0.67 0.46 1 - -3024.65 -5930.64 5167.48 0.41 0.72 -0.55 1 - -2877.09 -6133.92 5012.12 0.41 0.72 -0.55 1 - -3293.45 -5844.68 5080.13 0.41 0.72 -0.55 1 - -3145.64 -6047.87 4925.01 0.41 0.72 -0.55 1 - -2998.08 -6251.15 4769.64 0.41 0.72 -0.55 1 - -3561.99 -5758.64 4993.01 0.41 0.72 -0.55 1 - -3414.44 -5961.91 4837.65 0.41 0.72 -0.55 1 - -3266.63 -6165.10 4682.53 0.41 0.72 -0.55 1 - -3119.07 -6368.37 4527.16 0.41 0.72 -0.55 1 - -3830.79 -5672.67 4905.66 0.41 0.72 -0.55 1 - -3682.98 -5875.87 4750.53 0.41 0.72 -0.55 1 - -3535.43 -6079.14 4595.17 0.41 0.72 -0.55 1 - -3387.85 -6282.25 4440.00 0.41 0.72 -0.55 1 - -3240.06 -6485.60 4284.68 0.41 0.72 -0.55 1 - -3951.78 -5789.90 4663.18 0.41 0.72 -0.55 1 - -3803.97 -5993.09 4508.06 0.41 0.72 -0.55 1 - -3656.42 -6196.37 4352.69 0.41 0.72 -0.55 1 - -3508.84 -6399.48 4197.53 0.41 0.72 -0.55 1 - -4072.77 -5907.13 4420.70 0.41 0.72 -0.55 1 - -3924.96 -6110.32 4265.58 0.41 0.72 -0.55 1 - -3777.41 -6313.60 4110.21 0.41 0.72 -0.55 1 - -4944.55 -4631.67 5012.27 0.56 0.61 -0.55 1 - -4705.59 -4709.43 5167.46 0.56 0.61 -0.55 1 - -5018.61 -4783.14 4769.69 0.56 0.61 -0.55 1 - -4779.74 -4860.60 4925.06 0.56 0.61 -0.55 1 - -4540.78 -4938.35 5080.24 0.56 0.61 -0.55 1 - -5092.76 -4934.31 4527.28 0.56 0.61 -0.55 1 - -4853.79 -5012.06 4682.47 0.56 0.61 -0.55 1 - -4614.93 -5089.52 4837.84 0.56 0.61 -0.55 1 - -4375.96 -5167.27 4993.03 0.56 0.61 -0.55 1 - -5166.81 -5085.77 4284.69 0.56 0.61 -0.55 1 - -4927.94 -5163.23 4440.06 0.56 0.61 -0.55 1 - -4688.98 -5240.98 4595.25 0.56 0.61 -0.55 1 - -4450.21 -5318.57 4750.42 0.56 0.61 -0.55 1 - -4211.15 -5396.20 4905.81 0.56 0.61 -0.55 1 - -5002.00 -5314.69 4197.48 0.56 0.61 -0.55 1 - -4763.13 -5392.15 4352.85 0.56 0.61 -0.55 1 - -4524.17 -5469.91 4508.03 0.56 0.61 -0.55 1 - -4285.39 -5547.49 4663.20 0.56 0.61 -0.55 1 - -4837.18 -5543.62 4110.26 0.56 0.61 -0.55 1 - -4598.31 -5621.07 4265.63 0.56 0.61 -0.55 1 - -4359.35 -5698.83 4420.82 0.56 0.61 -0.55 1 - -5337.02 -4835.86 4353.23 0.64 0.53 -0.55 1 - -5325.71 -4276.36 4898.49 0.64 0.53 -0.55 1 - -5403.75 -4432.04 4660.03 0.64 0.53 -0.55 1 - -5481.78 -4587.73 4421.57 0.64 0.53 -0.55 1 - -5548.60 -4184.04 4728.17 0.64 0.53 -0.55 1 - -5626.64 -4339.72 4489.71 0.64 0.53 -0.55 1 - -5771.25 -4091.46 4557.89 0.64 0.53 -0.55 1 - -4579.19 -3383.77 6197.14 0.59 0.42 -0.70 1 - -5167.16 -3412.41 5683.54 0.59 0.42 -0.70 1 - -4928.38 -3489.99 5838.71 0.59 0.42 -0.70 1 - -4689.42 -3567.75 5993.90 0.59 0.42 -0.70 1 - -5038.66 -3673.99 5635.83 0.59 0.42 -0.70 1 - -4799.70 -3751.74 5791.01 0.59 0.42 -0.70 1 - -4910.02 -3935.43 5587.95 0.59 0.42 -0.70 1 - -5582.85 -3045.98 5522.01 0.65 0.43 -0.63 1 - -5453.63 -3307.65 5476.58 0.65 0.43 -0.63 1 - -5324.74 -3569.29 5431.27 0.65 0.43 -0.63 1 - -5195.61 -3831.08 5385.64 0.65 0.43 -0.63 1 - -5066.53 -4092.89 5340.35 0.65 0.43 -0.63 1 - -5678.07 -3222.02 5304.98 0.65 0.43 -0.63 1 - -5549.13 -3483.64 5259.32 0.65 0.43 -0.63 1 - -5420.05 -3745.45 5214.04 0.65 0.43 -0.63 1 - -5291.02 -4006.94 5168.59 0.65 0.43 -0.63 1 - -5773.57 -3398.01 5087.73 0.65 0.43 -0.63 1 - -5644.35 -3659.67 5042.29 0.65 0.43 -0.63 1 - -5515.31 -3921.17 4996.84 0.65 0.43 -0.63 1 - -5868.98 -3573.87 4870.68 0.65 0.43 -0.63 1 - -5739.76 -3835.54 4825.24 0.65 0.43 -0.63 1 - -3479.01 -2222.51 7341.35 0.46 0.30 -0.83 1 - -3626.80 -2425.68 7186.08 0.46 0.30 -0.83 1 - -3774.37 -2628.80 7030.91 0.46 0.30 -0.83 1 - -3922.08 -2832.19 6875.56 0.46 0.30 -0.83 1 - -4069.65 -3035.31 6720.40 0.46 0.30 -0.83 1 - -3739.90 -2155.03 7220.26 0.46 0.30 -0.83 1 - -3887.69 -2358.20 7065.00 0.46 0.30 -0.83 1 - -4035.17 -2561.54 6909.74 0.46 0.30 -0.83 1 - -4182.97 -2764.71 6754.48 0.46 0.30 -0.83 1 - -4000.79 -2087.54 7099.18 0.46 0.30 -0.83 1 - -4148.26 -2290.88 6943.93 0.46 0.30 -0.83 1 - -4296.06 -2494.05 6788.66 0.46 0.30 -0.83 1 - -4261.42 -2020.34 6978.32 0.46 0.30 -0.83 1 - -4409.22 -2223.51 6823.05 0.46 0.30 -0.83 1 - -4460.62 -3162.41 6406.28 0.59 0.34 -0.73 1 - -4699.58 -3084.65 6251.10 0.59 0.34 -0.73 1 - -5416.19 -2851.86 5785.37 0.59 0.34 -0.73 1 - -4576.35 -2892.50 6438.45 0.59 0.34 -0.73 1 - -4815.31 -2814.74 6283.27 0.59 0.34 -0.73 1 - -5054.18 -2737.28 6127.90 0.59 0.34 -0.73 1 - -5293.14 -2659.53 5972.71 0.59 0.34 -0.73 1 - -4692.07 -2622.59 6470.62 0.59 0.34 -0.73 1 - -4930.94 -2545.13 6315.25 0.59 0.34 -0.73 1 - -5169.90 -2467.37 6160.06 0.59 0.34 -0.73 1 - -4807.85 -2353.11 6502.76 0.59 0.34 -0.73 1 - -5046.81 -2275.36 6347.57 0.59 0.34 -0.73 1 - -3786.93 -609.49 7498.41 0.45 0.14 -0.88 1 - -3695.80 -890.43 7498.37 0.45 0.14 -0.88 1 - -3604.60 -1171.13 7498.37 0.45 0.14 -0.88 1 - -3513.23 -1452.14 7498.39 0.45 0.14 -0.88 1 - -3422.03 -1732.84 7498.39 0.45 0.14 -0.88 1 - -3956.20 -819.75 7378.32 0.45 0.14 -0.88 1 - -3865.07 -1100.69 7378.29 0.45 0.14 -0.88 1 - -3773.63 -1381.46 7378.34 0.45 0.14 -0.88 1 - -3682.50 -1662.40 7378.30 0.45 0.14 -0.88 1 - -4125.47 -1030.01 7258.24 0.45 0.14 -0.88 1 - -4034.03 -1310.78 7258.29 0.45 0.14 -0.88 1 - -3942.89 -1591.72 7258.25 0.45 0.14 -0.88 1 - -4294.48 -1240.12 7138.49 0.45 0.14 -0.88 1 - -4203.35 -1521.06 7138.45 0.45 0.14 -0.88 1 - -4623.22 -2123.35 6614.57 0.58 0.19 -0.79 1 - -4862.18 -2045.54 6459.24 0.58 0.19 -0.79 1 - -5100.97 -1968.05 6303.92 0.58 0.19 -0.79 1 - -4475.58 -1920.13 6769.64 0.58 0.19 -0.79 1 - -4714.59 -1842.34 6614.56 0.58 0.19 -0.79 1 - -4953.38 -1764.84 6459.24 0.58 0.19 -0.79 1 - -5192.34 -1687.03 6303.91 0.58 0.19 -0.79 1 - -4327.99 -1716.92 6924.95 0.58 0.19 -0.79 1 - -4566.94 -1639.11 6769.62 0.58 0.19 -0.79 1 - -4805.79 -1561.64 6614.55 0.58 0.19 -0.79 1 - -5044.51 -1483.91 6459.27 0.58 0.19 -0.79 1 - -5283.54 -1406.34 6303.91 0.58 0.19 -0.79 1 - -4419.12 -1435.98 6924.99 0.58 0.19 -0.79 1 - -4658.15 -1358.41 6769.62 0.58 0.19 -0.79 1 - -4896.92 -1280.70 6614.59 0.58 0.19 -0.79 1 - -5135.95 -1203.13 6459.22 0.58 0.19 -0.79 1 - -4510.56 -1155.21 6924.94 0.58 0.19 -0.79 1 - -4749.28 -1077.48 6769.66 0.58 0.19 -0.79 1 - -4988.36 -999.92 6614.54 0.58 0.19 -0.79 1 - -5693.57 46.03 6197.13 0.72 0.01 -0.70 1 - -5841.14 -157.08 6041.96 0.72 0.01 -0.70 1 - -5283.51 -6267.51 -1561.60 0.58 0.79 0.19 1 - -5192.15 -6392.93 -1310.29 0.58 0.79 0.19 1 - -5100.93 -6518.66 -1059.26 0.58 0.79 0.19 1 - -5135.81 -6315.41 -1812.77 0.58 0.79 0.19 1 - -5044.59 -6441.04 -1561.40 0.58 0.79 0.19 1 - -4953.23 -6566.56 -1310.43 0.58 0.79 0.19 1 - -4862.01 -6692.19 -1059.06 0.58 0.79 0.19 1 - -4988.10 -6363.32 -2063.94 0.58 0.79 0.19 1 - -4896.89 -6488.94 -1812.57 0.58 0.79 0.19 1 - -4805.67 -6614.67 -1561.54 0.58 0.79 0.19 1 - -4714.45 -6740.04 -1310.43 0.58 0.79 0.19 1 - -4623.09 -6865.82 -1059.21 0.58 0.79 0.19 1 - -4749.33 -6536.80 -2063.94 0.58 0.79 0.19 1 - -4657.96 -6662.57 -1812.71 0.58 0.79 0.19 1 - -4566.89 -6788.15 -1561.54 0.58 0.79 0.19 1 - -4475.38 -6913.72 -1310.37 0.58 0.79 0.19 1 - -4510.26 -6710.48 -2063.88 0.58 0.79 0.19 1 - -4419.19 -6836.05 -1812.71 0.58 0.79 0.19 1 - -4327.82 -6961.83 -1561.49 0.58 0.79 0.19 1 - -5295.76 -6535.53 255.10 0.59 0.81 -0.06 1 - -4689.37 -6956.72 510.40 0.59 0.81 -0.06 1 - -4928.14 -6783.24 510.40 0.59 0.81 -0.06 1 - -5167.06 -6609.61 510.55 0.59 0.81 -0.06 1 - -4799.73 -6857.48 765.71 0.59 0.81 -0.06 1 - -5038.66 -6683.85 765.85 0.59 0.81 -0.06 1 - -4909.96 -6758.03 1020.95 0.59 0.81 -0.06 1 - -5066.47 -6607.00 1272.50 0.65 0.76 -0.10 1 - -5195.62 -6530.38 1018.02 0.65 0.76 -0.10 1 - -5324.61 -6454.16 763.65 0.65 0.76 -0.10 1 - -5453.61 -6377.60 509.38 0.65 0.76 -0.10 1 - -5582.91 -6301.18 254.96 0.65 0.76 -0.10 1 - -5290.95 -6414.92 1272.46 0.65 0.76 -0.10 1 - -5419.95 -6338.36 1018.18 0.65 0.76 -0.10 1 - -5548.95 -6262.14 763.81 0.65 0.76 -0.10 1 - -5678.10 -6185.77 509.59 0.65 0.76 -0.10 1 - -5515.29 -6222.90 1272.62 0.65 0.76 -0.10 1 - -5644.44 -6146.53 1018.40 0.65 0.76 -0.10 1 - -5773.44 -6070.32 764.03 0.65 0.76 -0.10 1 - -5739.77 -6031.08 1272.83 0.65 0.76 -0.10 1 - -5868.77 -5954.86 1018.47 0.65 0.76 -0.10 1 - -6115.15 -5644.97 -1295.27 0.69 0.71 0.10 1 - -6023.81 -5770.70 -1044.10 0.69 0.71 0.10 1 - -5932.61 -5896.22 -793.04 0.69 0.71 0.10 1 - -5841.32 -6021.86 -541.64 0.69 0.71 0.10 1 - -5750.12 -6147.39 -290.58 0.69 0.71 0.10 1 - -5902.83 -5850.30 -1301.47 0.69 0.71 0.10 1 - -5811.49 -5976.02 -1050.31 0.69 0.71 0.10 1 - -5720.34 -6101.47 -799.01 0.69 0.71 0.10 1 - -5629.00 -6227.19 -547.85 0.69 0.71 0.10 1 - -5690.51 -6055.62 -1307.68 0.69 0.71 0.10 1 - -5599.35 -6181.07 -1056.38 0.69 0.71 0.10 1 - -5508.02 -6306.79 -805.22 0.69 0.71 0.10 1 - -5478.58 -6260.81 -1313.74 0.69 0.71 0.10 1 - -5387.24 -6386.54 -1062.58 0.69 0.71 0.10 1 - -5979.55 -5915.91 -265.07 0.75 0.66 0.06 1 - -6070.75 -5790.38 -516.14 0.75 0.66 0.06 1 - -6162.09 -5664.65 -767.30 0.75 0.66 0.06 1 - -6253.24 -5539.21 -1018.60 0.75 0.66 0.06 1 - -6175.90 -5695.52 -257.10 0.75 0.66 0.06 1 - -6267.10 -5569.99 -508.16 0.75 0.66 0.06 1 - -6358.44 -5444.26 -759.32 0.75 0.66 0.06 1 - -6372.46 -5475.27 -249.11 0.75 0.66 0.06 1 - -6463.79 -5349.54 -500.27 0.75 0.66 0.06 1 - -6568.80 -5254.88 -241.13 0.75 0.66 0.06 1 - -7474.14 -3858.77 265.07 0.86 0.50 -0.06 1 - -7382.94 -3984.30 516.14 0.86 0.50 -0.06 1 - -7291.59 -4110.02 767.30 0.86 0.50 -0.06 1 - -8125.85 -2174.55 -255.16 0.95 0.31 0.06 1 - -8034.64 -2455.24 -255.16 0.95 0.31 0.06 1 - -7943.34 -2736.13 -255.30 0.95 0.31 0.06 1 - -7746.90 193.74 3281.64 0.90 -0.03 -0.44 1 - -7634.39 360.63 3497.69 0.90 -0.03 -0.44 1 - -7521.87 527.52 3713.75 0.90 -0.03 -0.44 1 - -4705.71 -6727.98 1901.15 0.56 0.77 -0.30 1 - -4944.64 -6554.35 1901.29 0.56 0.77 -0.30 1 - -4540.90 -6752.29 2145.11 0.56 0.77 -0.30 1 - -4779.82 -6578.76 2144.91 0.56 0.77 -0.30 1 - -5018.74 -6405.13 2145.05 0.56 0.77 -0.30 1 - -4376.08 -6776.70 2388.73 0.56 0.77 -0.30 1 - -4615.00 -6603.07 2388.87 0.56 0.77 -0.30 1 - -4853.92 -6429.54 2388.67 0.56 0.77 -0.30 1 - -5092.85 -6255.91 2388.81 0.56 0.77 -0.30 1 - -4211.26 -6801.02 2632.69 0.56 0.77 -0.30 1 - -4450.18 -6627.48 2632.49 0.56 0.77 -0.30 1 - -4689.10 -6453.86 2632.63 0.56 0.77 -0.30 1 - -4927.88 -6280.38 2632.63 0.56 0.77 -0.30 1 - -5166.95 -6106.70 2632.57 0.56 0.77 -0.30 1 - -4285.36 -6651.80 2876.45 0.56 0.77 -0.30 1 - -4524.29 -6478.27 2876.25 0.56 0.77 -0.30 1 - -4763.21 -6304.64 2876.39 0.56 0.77 -0.30 1 - -5001.98 -6131.16 2876.39 0.56 0.77 -0.30 1 - -4359.47 -6502.58 3120.21 0.56 0.77 -0.30 1 - -4598.39 -6329.05 3120.01 0.56 0.77 -0.30 1 - -4837.31 -6155.42 3120.15 0.56 0.77 -0.30 1 - -5336.77 -6056.48 2378.56 0.64 0.73 -0.22 1 - -5259.17 -6200.13 2132.67 0.64 0.73 -0.22 1 - -5181.14 -6343.79 1886.77 0.64 0.73 -0.22 1 - -5103.11 -6487.45 1640.88 0.64 0.73 -0.22 1 - -5481.79 -6006.41 2126.19 0.64 0.73 -0.22 1 - -5403.76 -6150.07 1880.30 0.64 0.73 -0.22 1 - -5325.73 -6293.72 1634.40 0.64 0.73 -0.22 1 - -5626.66 -5956.49 1873.67 0.64 0.73 -0.22 1 - -5548.63 -6100.15 1627.78 0.64 0.73 -0.22 1 - -5771.24 -5906.42 1621.30 0.64 0.73 -0.22 1 - -5983.51 -5124.45 2993.56 0.65 0.64 -0.40 1 - -5983.40 -4969.27 3244.86 0.65 0.64 -0.40 1 - -5789.57 -5344.07 2955.75 0.65 0.64 -0.40 1 - -5789.72 -5188.70 3206.86 0.65 0.64 -0.40 1 - -5789.61 -5033.52 3458.15 0.65 0.64 -0.40 1 - -5595.89 -5563.51 2917.75 0.65 0.64 -0.40 1 - -5595.78 -5408.32 3169.04 0.65 0.64 -0.40 1 - -5595.93 -5252.95 3420.15 0.65 0.64 -0.40 1 - -5595.82 -5097.77 3671.44 0.65 0.64 -0.40 1 - -5401.95 -5783.12 2879.93 0.65 0.64 -0.40 1 - -5402.09 -5627.75 3131.04 0.65 0.64 -0.40 1 - -5401.99 -5472.57 3382.33 0.65 0.64 -0.40 1 - -5401.99 -5317.40 3633.39 0.65 0.64 -0.40 1 - -5402.03 -5162.02 3884.74 0.65 0.64 -0.40 1 - -5208.16 -5847.37 3093.22 0.65 0.64 -0.40 1 - -5208.30 -5692.00 3344.33 0.65 0.64 -0.40 1 - -5208.20 -5536.82 3595.63 0.65 0.64 -0.40 1 - -5208.20 -5381.65 3846.69 0.65 0.64 -0.40 1 - -5014.37 -5911.62 3306.52 0.65 0.64 -0.40 1 - -5014.51 -5756.25 3557.63 0.65 0.64 -0.40 1 - -5014.41 -5601.07 3808.92 0.65 0.64 -0.40 1 - -6153.50 -5041.67 2745.39 0.71 0.64 -0.29 1 - -5964.38 -5265.72 2710.37 0.71 0.64 -0.29 1 - -5775.26 -5489.77 2675.36 0.71 0.64 -0.29 1 - -5585.92 -4916.93 3929.47 0.71 0.55 -0.45 1 - -5775.26 -4847.98 3713.79 0.71 0.55 -0.45 1 - -5964.38 -4779.09 3497.75 0.71 0.55 -0.45 1 - -6153.50 -4710.21 3281.70 0.71 0.55 -0.45 1 - -5756.66 -4677.17 3953.81 0.71 0.55 -0.45 1 - -5945.78 -4608.29 3737.76 0.71 0.55 -0.45 1 - -6134.90 -4539.40 3521.71 0.71 0.55 -0.45 1 - -5927.50 -4437.43 3977.91 0.71 0.55 -0.45 1 - -6116.62 -4368.54 3761.86 0.71 0.55 -0.45 1 - -6098.01 -4197.74 4001.88 0.71 0.55 -0.45 1 - -7011.42 -4174.13 2059.07 0.82 0.49 -0.30 1 - -7011.42 -4018.96 2310.13 0.82 0.49 -0.30 1 - -7011.32 -3863.78 2561.43 0.82 0.49 -0.30 1 - -7200.40 -2805.26 3332.83 0.86 0.28 -0.42 1 - -7291.61 -2524.57 3332.83 0.86 0.28 -0.42 1 - -7382.80 -2243.65 3332.95 0.86 0.28 -0.42 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -2264.07 -6702.41 -4557.80 9999.00 9999.00 9999.00 3 - -3145.16 -7796.14 69.20 9999.00 9999.00 9999.00 3 - -2038.05 -3585.48 7325.80 9999.00 9999.00 9999.00 3 - -2107.90 -6753.14 4557.80 9999.00 9999.00 9999.00 3 - -5771.25 -4091.46 4557.89 9999.00 9999.00 9999.00 3 - -1693.12 -6289.22 -5340.40 0.27 0.73 0.63 1 - -1951.52 -6153.27 -5385.68 0.27 0.73 0.63 1 - -2209.65 -6017.45 -5431.26 0.27 0.73 0.63 1 - -2467.82 -5881.58 -5476.50 0.27 0.73 0.63 1 - -2726.27 -5745.83 -5521.93 0.27 0.73 0.63 1 - -1925.24 -6351.65 -5168.62 0.27 0.73 0.63 1 - -2183.41 -6215.77 -5213.86 0.27 0.73 0.63 1 - -2441.53 -6079.96 -5259.44 0.27 0.73 0.63 1 - -2699.74 -5944.28 -5304.83 0.27 0.73 0.63 1 - -2157.12 -6414.15 -4996.80 0.27 0.73 0.63 1 - -2415.33 -6278.47 -5042.19 0.27 0.73 0.63 1 - -2673.45 -6142.66 -5087.77 0.27 0.73 0.63 1 - -2389.04 -6476.85 -4825.13 0.27 0.73 0.63 1 - -2647.17 -6341.04 -4870.72 0.27 0.73 0.63 1 - -1344.66 -2217.15 -8013.55 0.14 0.33 0.93 1 - -1361.15 -2494.21 -7912.20 0.14 0.33 0.93 1 - -1377.92 -2771.07 -7811.11 0.14 0.33 0.93 1 - -1394.41 -3047.88 -7709.81 0.14 0.33 0.93 1 - -1410.94 -3325.00 -7608.71 0.14 0.33 0.93 1 - -1100.26 -2381.81 -7992.57 0.14 0.33 0.93 1 - -1116.75 -2658.62 -7891.27 0.14 0.33 0.93 1 - -1133.52 -2935.48 -7790.18 0.14 0.33 0.93 1 - -1150.05 -3212.34 -7689.12 0.14 0.33 0.93 1 - -855.85 -2546.21 -7971.63 0.14 0.33 0.93 1 - -872.38 -2823.07 -7870.58 0.14 0.33 0.93 1 - -889.16 -3099.93 -7769.49 0.14 0.33 0.93 1 - -611.49 -2710.66 -7950.94 0.14 0.33 0.93 1 - -628.26 -2987.52 -7849.85 0.14 0.33 0.93 1 - -1508.21 -4847.67 -6720.39 0.20 0.52 0.83 1 - -1508.36 -4596.43 -6875.67 0.20 0.52 0.83 1 - -1508.36 -4345.37 -7030.84 0.20 0.52 0.83 1 - -1508.30 -4094.00 -7186.19 0.20 0.52 0.83 1 - -1508.30 -3842.94 -7341.36 0.20 0.52 0.83 1 - -1758.94 -4695.21 -6754.57 0.20 0.52 0.83 1 - -1759.09 -4443.97 -6909.85 0.20 0.52 0.83 1 - -1758.88 -4192.77 -7065.09 0.20 0.52 0.83 1 - -1759.03 -3941.54 -7220.37 0.20 0.52 0.83 1 - -2009.67 -4542.74 -6788.74 0.20 0.52 0.83 1 - -2009.46 -4291.54 -6943.98 0.20 0.52 0.83 1 - -2009.61 -4040.31 -7099.26 0.20 0.52 0.83 1 - -2260.03 -4390.45 -6823.09 0.20 0.52 0.83 1 - -2260.18 -4139.21 -6978.37 0.20 0.52 0.83 1 - -2705.44 -5490.80 -5785.33 0.28 0.62 0.73 1 - -2466.58 -5413.08 -5940.69 0.28 0.62 0.73 1 - -2227.80 -5335.50 -6095.86 0.28 0.62 0.73 1 - -1988.71 -5257.86 -6251.17 0.28 0.62 0.73 1 - -1749.93 -5180.27 -6406.34 0.28 0.62 0.73 1 - -2718.79 -5262.83 -5972.76 0.28 0.62 0.73 1 - -2479.93 -5185.11 -6128.12 0.28 0.62 0.73 1 - -2240.92 -5107.61 -6283.24 0.28 0.62 0.73 1 - -2002.06 -5029.88 -6438.60 0.28 0.62 0.73 1 - -2732.14 -5034.86 -6160.19 0.28 0.62 0.73 1 - -2493.13 -4957.35 -6315.31 0.28 0.62 0.73 1 - -2254.27 -4879.63 -6470.67 0.28 0.62 0.73 1 - -2745.37 -4807.30 -6347.53 0.28 0.62 0.73 1 - -2506.52 -4729.58 -6502.89 0.28 0.62 0.73 1 - -3113.35 -5668.03 -5396.23 0.41 0.70 0.59 1 - -3327.72 -5708.85 -5197.20 0.41 0.70 0.59 1 - -3542.00 -5749.90 -4998.42 0.41 0.70 0.59 1 - -3756.31 -5790.89 -4799.21 0.41 0.70 0.59 1 - -3970.80 -5831.88 -4600.30 0.41 0.70 0.59 1 - -3079.50 -5867.91 -5181.60 0.41 0.70 0.59 1 - -3293.60 -5908.95 -4982.52 0.41 0.70 0.59 1 - -3508.10 -5949.95 -4783.61 0.41 0.70 0.59 1 - -3722.25 -5990.82 -4584.71 0.41 0.70 0.59 1 - -3045.39 -6068.01 -4966.93 0.41 0.70 0.59 1 - -3259.75 -6108.83 -4767.90 0.41 0.70 0.59 1 - -3473.91 -6149.70 -4569.00 0.41 0.70 0.59 1 - -3011.33 -6267.95 -4752.44 0.41 0.70 0.59 1 - -3225.70 -6308.76 -4553.41 0.41 0.70 0.59 1 - -2391.06 -7616.24 -2686.35 0.31 0.92 0.25 1 - -2567.26 -7621.50 -2449.21 0.31 0.92 0.25 1 - -2743.56 -7626.84 -2212.48 0.31 0.92 0.25 1 - -2919.61 -7632.05 -1975.54 0.31 0.92 0.25 1 - -3095.86 -7637.54 -1738.49 0.31 0.92 0.25 1 - -2290.12 -7721.29 -2429.33 0.31 0.92 0.25 1 - -2466.17 -7726.50 -2192.39 0.31 0.92 0.25 1 - -2642.47 -7731.84 -1955.66 0.31 0.92 0.25 1 - -2818.58 -7737.28 -1718.82 0.31 0.92 0.25 1 - -2189.03 -7826.29 -2172.51 0.31 0.92 0.25 1 - -2365.14 -7831.73 -1935.66 0.31 0.92 0.25 1 - -2541.44 -7837.07 -1698.94 0.31 0.92 0.25 1 - -2088.00 -7931.52 -1915.79 0.31 0.92 0.25 1 - -2264.31 -7936.86 -1679.06 0.31 0.92 0.25 1 - -2560.02 -6583.97 -4522.73 0.33 0.79 0.51 1 - -2823.82 -6455.01 -4553.93 0.33 0.79 0.51 1 - -2507.36 -6757.14 -4289.40 0.33 0.79 0.51 1 - -2771.07 -6628.36 -4320.90 0.33 0.79 0.51 1 - -3034.87 -6499.40 -4352.10 0.33 0.79 0.51 1 - -2718.06 -6801.57 -4087.66 0.33 0.79 0.51 1 - -2981.86 -6672.61 -4118.86 0.33 0.79 0.51 1 - -3598.30 -6946.07 -3121.41 0.36 0.85 0.39 1 - -3329.72 -7067.73 -3104.13 0.36 0.85 0.39 1 - -3061.40 -7189.52 -3087.07 0.36 0.85 0.39 1 - -2792.68 -7311.13 -3070.00 0.36 0.85 0.39 1 - -2524.17 -7433.02 -3052.82 0.36 0.85 0.39 1 - -3410.66 -6922.58 -3348.13 0.36 0.85 0.39 1 - -3142.14 -7044.10 -3331.17 0.36 0.85 0.39 1 - -2873.63 -7165.98 -3313.99 0.36 0.85 0.39 1 - -2605.25 -7287.54 -3296.83 0.36 0.85 0.39 1 - -3223.08 -6898.95 -3575.17 0.36 0.85 0.39 1 - -2954.51 -7020.61 -3557.89 0.36 0.85 0.39 1 - -2686.13 -7142.17 -3540.73 0.36 0.85 0.39 1 - -3035.65 -6875.36 -3802.00 0.36 0.85 0.39 1 - -2767.08 -6997.02 -3784.72 0.36 0.85 0.39 1 - -3492.61 -7121.39 -2812.60 0.37 0.88 0.30 1 - -3401.41 -7246.92 -2561.54 0.37 0.88 0.30 1 - -3310.00 -7372.55 -2310.36 0.37 0.88 0.30 1 - -3218.94 -7498.12 -2059.09 0.37 0.88 0.30 1 - -3223.20 -7241.22 -2796.85 0.37 0.88 0.30 1 - -3132.00 -7366.75 -2545.78 0.37 0.88 0.30 1 - -3040.60 -7492.38 -2294.60 0.37 0.88 0.30 1 - -2953.85 -7361.29 -2781.18 0.37 0.88 0.30 1 - -2862.45 -7486.92 -2530.00 0.37 0.88 0.30 1 - -2684.45 -7481.12 -2765.43 0.37 0.88 0.30 1 - -3421.95 -7481.71 -1803.52 0.45 0.85 0.27 1 - -3513.36 -7356.08 -2054.70 0.45 0.85 0.27 1 - -3604.56 -7230.55 -2305.76 0.45 0.85 0.27 1 - -3695.82 -7104.87 -2557.15 0.45 0.85 0.27 1 - -3787.02 -6979.34 -2808.21 0.45 0.85 0.27 1 - -3682.48 -7342.72 -1812.97 0.45 0.85 0.27 1 - -3773.88 -7217.09 -2064.15 0.45 0.85 0.27 1 - -3864.94 -7091.52 -2315.42 0.45 0.85 0.27 1 - -3956.34 -6965.89 -2566.60 0.45 0.85 0.27 1 - -3943.00 -7203.74 -1822.42 0.45 0.85 0.27 1 - -4034.06 -7078.16 -2073.69 0.45 0.85 0.27 1 - -4125.47 -6952.54 -2324.87 0.45 0.85 0.27 1 - -4203.24 -7065.04 -1832.05 0.45 0.85 0.27 1 - -4294.64 -6939.41 -2083.23 0.45 0.85 0.27 1 - -4098.05 -6006.87 -4250.21 0.46 0.76 0.46 1 - -4039.82 -6181.10 -4018.78 0.46 0.76 0.46 1 - -3981.98 -6355.26 -3787.53 0.46 0.76 0.46 1 - -3923.81 -6529.31 -3556.27 0.46 0.76 0.46 1 - -3865.70 -6703.70 -3324.98 0.46 0.76 0.46 1 - -3846.98 -6162.37 -4241.54 0.46 0.76 0.46 1 - -3788.81 -6336.41 -4010.27 0.46 0.76 0.46 1 - -3730.97 -6510.57 -3779.03 0.46 0.76 0.46 1 - -3672.92 -6684.79 -3547.91 0.46 0.76 0.46 1 - -3595.97 -6317.67 -4233.03 0.46 0.76 0.46 1 - -3537.92 -6491.89 -4001.91 0.46 0.76 0.46 1 - -3480.08 -6666.05 -3770.67 0.46 0.76 0.46 1 - -3345.08 -6473.15 -4224.67 0.46 0.76 0.46 1 - -3287.24 -6647.31 -3993.42 0.46 0.76 0.46 1 - -1803.19 -5400.68 6197.13 0.21 0.69 -0.70 1 - -1655.61 -5603.80 6041.96 0.21 0.69 -0.70 1 - -1943.95 -5562.32 5994.03 0.21 0.69 -0.70 1 - -1796.38 -5765.43 5838.87 0.21 0.69 -0.70 1 - -1648.82 -5968.70 5683.50 0.21 0.69 -0.70 1 - -2084.81 -5724.13 5791.09 0.21 0.69 -0.70 1 - -1937.25 -5927.40 5635.73 0.21 0.69 -0.70 1 - -2225.58 -5885.76 5587.99 0.21 0.69 -0.70 1 - -2950.15 -6569.96 4353.36 0.30 0.77 -0.55 1 - -2826.06 -6448.06 4591.82 0.30 0.77 -0.55 1 - -2702.10 -6325.74 4830.28 0.30 0.77 -0.55 1 - -2578.14 -6203.41 5068.74 0.30 0.77 -0.55 1 - -2669.36 -6631.21 4421.44 0.30 0.77 -0.55 1 - -2545.40 -6508.89 4659.90 0.30 0.77 -0.55 1 - -2421.45 -6386.57 4898.36 0.30 0.77 -0.55 1 - -2388.56 -6692.30 4489.72 0.30 0.77 -0.55 1 - -2264.60 -6569.98 4728.18 0.30 0.77 -0.55 1 - -2107.90 -6753.14 4557.80 0.30 0.77 -0.55 1 - -757.62 -1466.66 8251.94 0.09 0.23 -0.97 1 - -610.41 -1718.17 8205.13 0.09 0.23 -0.97 1 - -462.84 -1969.57 8158.10 0.09 0.23 -0.97 1 - -315.27 -2220.96 8111.06 0.09 0.23 -0.97 1 - -904.37 -1712.39 8179.09 0.09 0.23 -0.97 1 - -756.81 -1963.79 8132.05 0.09 0.23 -0.97 1 - -609.24 -2215.19 8085.01 0.09 0.23 -0.97 1 - -1050.92 -1958.27 8106.21 0.09 0.23 -0.97 1 - -903.35 -2209.67 8059.17 0.09 0.23 -0.97 1 - -1197.32 -2203.89 8033.13 0.09 0.23 -0.97 1 - -1360.27 -3949.31 7305.88 0.21 0.49 -0.85 1 - -1507.84 -4152.42 7150.72 0.21 0.49 -0.85 1 - -1655.63 -4355.59 6995.44 0.21 0.49 -0.85 1 - -1803.11 -4558.94 6840.20 0.21 0.49 -0.85 1 - -1648.66 -3914.04 7253.20 0.21 0.49 -0.85 1 - -1796.23 -4117.16 7098.04 0.21 0.49 -0.85 1 - -1944.02 -4320.33 6942.76 0.21 0.49 -0.85 1 - -1937.14 -3878.88 7200.74 0.21 0.49 -0.85 1 - -2084.93 -4082.05 7045.46 0.21 0.49 -0.85 1 - -2225.54 -3843.62 7148.06 0.21 0.49 -0.85 1 - -1984.55 -5132.10 6376.68 0.29 0.64 -0.71 1 - -2123.90 -5295.74 6174.12 0.29 0.64 -0.71 1 - -2542.37 -5786.80 5566.88 0.29 0.64 -0.71 1 - -2267.41 -5077.67 6311.97 0.29 0.64 -0.71 1 - -2406.98 -5241.08 6109.56 0.29 0.64 -0.71 1 - -2546.43 -5404.90 5907.15 0.29 0.64 -0.71 1 - -2685.77 -5568.39 5704.78 0.29 0.64 -0.71 1 - -2550.48 -5023.01 6247.41 0.29 0.64 -0.71 1 - -2689.84 -5186.65 6044.85 0.29 0.64 -0.71 1 - -2829.18 -5350.13 5842.48 0.29 0.64 -0.71 1 - -2833.33 -4968.42 6182.90 0.29 0.64 -0.71 1 - -2972.68 -5132.06 5980.33 0.29 0.64 -0.71 1 - -1171.72 -3684.02 7482.91 0.21 0.41 -0.89 1 - -1460.51 -3651.23 7430.41 0.21 0.41 -0.89 1 - -1749.17 -3618.49 7378.23 0.21 0.41 -0.89 1 - -2038.05 -3585.48 7325.80 0.21 0.41 -0.89 1 - -2326.93 -3552.80 7273.51 0.21 0.41 -0.89 1 - -1309.71 -3436.50 7565.70 0.21 0.41 -0.89 1 - -1598.37 -3403.44 7513.38 0.21 0.41 -0.89 1 - -1887.25 -3370.76 7461.09 0.21 0.41 -0.89 1 - -2175.82 -3337.92 7408.70 0.21 0.41 -0.89 1 - -1447.57 -3188.71 7648.68 0.21 0.41 -0.89 1 - -1736.36 -3155.93 7596.17 0.21 0.41 -0.89 1 - -2024.93 -3123.09 7543.78 0.21 0.41 -0.89 1 - -1585.34 -2941.15 7731.58 0.21 0.41 -0.89 1 - -1874.13 -2908.36 7679.08 0.21 0.41 -0.89 1 - -2542.31 -3849.29 7047.03 0.29 0.52 -0.80 1 - -2402.86 -4087.74 6942.15 0.29 0.52 -0.80 1 - -2263.36 -4326.03 6837.67 0.29 0.52 -0.80 1 - -2124.00 -4564.26 6732.86 0.29 0.52 -0.80 1 - -1984.64 -4802.82 6628.20 0.29 0.52 -0.80 1 - -2685.72 -4039.76 6872.56 0.29 0.52 -0.80 1 - -2546.36 -4277.99 6767.75 0.29 0.52 -0.80 1 - -2406.86 -4516.27 6663.27 0.29 0.52 -0.80 1 - -2267.59 -4754.60 6558.68 0.29 0.52 -0.80 1 - -2829.22 -4230.00 6698.16 0.29 0.52 -0.80 1 - -2689.95 -4468.33 6593.56 0.29 0.52 -0.80 1 - -2550.45 -4706.61 6489.09 0.29 0.52 -0.80 1 - -2972.81 -4420.34 6523.97 0.29 0.52 -0.80 1 - -2833.32 -4658.62 6419.49 0.29 0.52 -0.80 1 - -2893.38 -5769.53 5400.20 0.39 0.65 -0.65 1 - -3164.91 -5688.74 5316.91 0.39 0.65 -0.65 1 - -3436.44 -5607.94 5233.62 0.39 0.65 -0.65 1 - -3707.88 -5526.97 5150.17 0.39 0.65 -0.65 1 - -3030.52 -5548.04 5539.04 0.39 0.65 -0.65 1 - -3302.04 -5467.25 5455.75 0.39 0.65 -0.65 1 - -3573.57 -5386.46 5372.46 0.39 0.65 -0.65 1 - -3167.97 -5326.66 5677.99 0.39 0.65 -0.65 1 - -3439.50 -5245.86 5594.70 0.39 0.65 -0.65 1 - -3305.10 -5105.17 5816.83 0.39 0.65 -0.65 1 - -1424.05 -2395.32 7911.51 0.20 0.28 -0.94 1 - -1587.17 -2619.61 7810.12 0.20 0.28 -0.94 1 - -1549.64 -2132.87 7962.04 0.20 0.28 -0.94 1 - -1712.57 -2357.27 7860.95 0.20 0.28 -0.94 1 - -1875.69 -2581.56 7759.56 0.20 0.28 -0.94 1 - -1837.85 -2094.66 7911.57 0.20 0.28 -0.94 1 - -2000.96 -2318.95 7810.18 0.20 0.28 -0.94 1 - -3636.89 -4570.47 6020.09 0.40 0.56 -0.73 1 - -3510.58 -4396.84 6222.80 0.40 0.56 -0.73 1 - -3492.87 -4807.54 5918.80 0.40 0.56 -0.73 1 - -3366.89 -4634.01 6121.62 0.40 0.56 -0.73 1 - -3240.58 -4460.38 6324.34 0.40 0.56 -0.73 1 - -3223.13 -4871.16 6020.10 0.40 0.56 -0.73 1 - -3096.82 -4697.53 6222.81 0.40 0.56 -0.73 1 - -4646.14 -5892.54 3749.05 0.53 0.72 -0.45 1 - -4459.52 -5886.75 3977.78 0.53 0.72 -0.45 1 - -4593.98 -6071.80 3520.31 0.53 0.72 -0.45 1 - -4407.36 -6066.02 3749.05 0.53 0.72 -0.45 1 - -4220.74 -6060.23 3977.78 0.53 0.72 -0.45 1 - -4355.21 -6245.28 3520.31 0.53 0.72 -0.45 1 - -4168.29 -6239.70 3749.10 0.53 0.72 -0.45 1 - -4110.91 -5234.29 5149.98 0.50 0.58 -0.65 1 - -4271.52 -5001.21 5233.65 0.50 0.58 -0.65 1 - -4432.25 -4767.94 5316.94 0.50 0.58 -0.65 1 - -4592.99 -4534.67 5400.24 0.50 0.58 -0.65 1 - -4018.48 -5063.32 5372.37 0.50 0.58 -0.65 1 - -4179.22 -4830.06 5455.66 0.50 0.58 -0.65 1 - -4339.96 -4596.79 5538.96 0.50 0.58 -0.65 1 - -3926.24 -4892.19 5594.74 0.50 0.58 -0.65 1 - -4086.98 -4658.92 5678.03 0.50 0.58 -0.65 1 - -3833.94 -4721.04 5816.75 0.50 0.58 -0.65 1 - -3954.47 -3371.56 6628.25 0.41 0.43 -0.80 1 - -3684.61 -3430.40 6732.87 0.41 0.43 -0.80 1 - -3415.04 -3489.42 6837.61 0.41 0.43 -0.80 1 - -3145.09 -3548.48 6942.15 0.41 0.43 -0.80 1 - -2875.30 -3607.44 7046.98 0.41 0.43 -0.80 1 - -3821.29 -3625.70 6558.72 0.41 0.43 -0.80 1 - -3551.56 -3684.82 6663.16 0.41 0.43 -0.80 1 - -3281.77 -3743.78 6768.00 0.41 0.43 -0.80 1 - -3012.14 -3802.68 6872.52 0.41 0.43 -0.80 1 - -3688.25 -3880.12 6489.01 0.41 0.43 -0.80 1 - -3418.39 -3938.96 6593.63 0.41 0.43 -0.80 1 - -3148.75 -3997.86 6698.15 0.41 0.43 -0.80 1 - -3555.30 -4134.32 6419.38 0.41 0.43 -0.80 1 - -3285.44 -4193.16 6524.00 0.41 0.43 -0.80 1 - -2659.92 -3310.95 7273.47 0.33 0.33 -0.89 1 - -2780.28 -3046.22 7325.80 0.33 0.33 -0.89 1 - -2900.84 -2781.88 7378.16 0.33 0.33 -0.89 1 - -3021.11 -2517.37 7430.41 0.33 0.33 -0.89 1 - -3141.54 -2252.76 7482.95 0.33 0.33 -0.89 1 - -2502.24 -3100.84 7408.66 0.33 0.33 -0.89 1 - -2622.51 -2836.33 7460.91 0.33 0.33 -0.89 1 - -2743.07 -2571.99 7513.27 0.33 0.33 -0.89 1 - -2863.41 -2307.60 7565.73 0.33 0.33 -0.89 1 - -2344.46 -2890.95 7543.77 0.33 0.33 -0.89 1 - -2464.80 -2626.56 7596.23 0.33 0.33 -0.89 1 - -2585.36 -2362.22 7648.59 0.33 0.33 -0.89 1 - -2186.75 -2681.18 7679.09 0.33 0.33 -0.89 1 - -2307.32 -2416.84 7731.45 0.33 0.33 -0.89 1 - -4718.01 -4206.11 5566.85 0.52 0.47 -0.71 1 - -4380.21 -3656.52 6174.05 0.52 0.47 -0.71 1 - -4267.58 -3473.39 6376.69 0.52 0.47 -0.71 1 - -4465.97 -4275.01 5704.74 0.52 0.47 -0.71 1 - -4353.29 -4091.87 5907.03 0.52 0.47 -0.71 1 - -4240.94 -3908.69 6109.45 0.52 0.47 -0.71 1 - -4128.40 -3725.68 6311.90 0.52 0.47 -0.71 1 - -4214.02 -4344.04 5842.43 0.52 0.47 -0.71 1 - -4101.49 -4161.03 6044.87 0.52 0.47 -0.71 1 - -3989.14 -3977.85 6247.30 0.52 0.47 -0.71 1 - -3962.22 -4413.20 5980.28 0.52 0.47 -0.71 1 - -3849.87 -4230.02 6182.70 0.52 0.47 -0.71 1 - -3778.59 -3123.71 6840.17 0.40 0.35 -0.84 1 - -3631.02 -2920.60 6995.34 0.40 0.35 -0.84 1 - -3483.22 -2717.42 7150.61 0.40 0.35 -0.84 1 - -3335.75 -2514.09 7305.86 0.40 0.35 -0.84 1 - -3508.31 -3183.91 6942.72 0.40 0.35 -0.84 1 - -3360.74 -2980.79 7097.88 0.40 0.35 -0.84 1 - -3212.94 -2777.62 7253.15 0.40 0.35 -0.84 1 - -3238.10 -3244.21 7045.47 0.40 0.35 -0.84 1 - -3090.30 -3041.04 7200.74 0.40 0.35 -0.84 1 - -2967.82 -3304.40 7148.01 0.40 0.35 -0.84 1 - -2014.87 -986.08 8111.06 0.19 0.16 -0.97 1 - -1730.17 -1048.75 8158.10 0.19 0.16 -0.97 1 - -1445.47 -1111.42 8205.13 0.19 0.16 -0.97 1 - -1160.72 -1174.07 8251.93 0.19 0.16 -0.97 1 - -1918.70 -1263.95 8084.97 0.19 0.16 -0.97 1 - -1634.00 -1326.62 8132.01 0.19 0.16 -0.97 1 - -1349.30 -1389.29 8179.05 0.19 0.16 -0.97 1 - -1822.34 -1541.92 8059.18 0.19 0.16 -0.97 1 - -1537.65 -1604.58 8106.22 0.19 0.16 -0.97 1 - -1726.17 -1819.78 8033.09 0.19 0.16 -0.97 1 - -5103.06 -4368.94 5068.77 0.64 0.53 -0.55 1 - -5181.09 -4524.63 4830.31 0.64 0.53 -0.55 1 - -5259.13 -4680.31 4591.85 0.64 0.53 -0.55 1 - -4818.06 -3306.31 6041.77 0.59 0.42 -0.70 1 - -3095.94 -1860.58 7608.69 0.31 0.18 -0.93 1 - -2919.72 -1646.20 7709.78 0.31 0.18 -0.93 1 - -2743.63 -1432.08 7811.08 0.31 0.18 -0.93 1 - -2567.18 -1217.77 7912.22 0.31 0.18 -0.93 1 - -2391.02 -1003.41 8013.56 0.31 0.18 -0.93 1 - -2818.78 -1922.85 7689.08 0.31 0.18 -0.93 1 - -2642.39 -1708.78 7790.18 0.31 0.18 -0.93 1 - -2466.23 -1494.42 7891.51 0.31 0.18 -0.93 1 - -2290.09 -1280.27 7992.57 0.31 0.18 -0.93 1 - -2541.45 -1985.43 7769.47 0.31 0.18 -0.93 1 - -2365.23 -1771.05 7870.56 0.31 0.18 -0.93 1 - -2189.08 -1556.90 7971.62 0.31 0.18 -0.93 1 - -2264.36 -2047.93 7849.82 0.31 0.18 -0.93 1 - -2088.14 -1833.55 7950.91 0.31 0.18 -0.93 1 - -1381.05 16.96 8301.46 0.18 0.06 -0.98 1 - -1289.84 -263.74 8301.46 0.18 0.06 -0.98 1 - -1198.48 -544.75 8301.48 0.18 0.06 -0.98 1 - -1107.27 -825.45 8301.48 0.18 0.06 -0.98 1 - -1574.43 -201.03 8253.93 0.18 0.06 -0.98 1 - -1482.99 -481.81 8253.98 0.18 0.06 -0.98 1 - -1391.86 -762.75 8253.94 0.18 0.06 -0.98 1 - -1767.63 -419.12 8206.69 0.18 0.06 -0.98 1 - -1676.50 -700.06 8206.66 0.18 0.06 -0.98 1 - -1961.01 -637.12 8159.16 0.18 0.06 -0.98 1 - -3218.87 -1511.57 7627.40 0.37 0.12 -0.92 1 - -3310.08 -1230.88 7627.40 0.37 0.12 -0.92 1 - -3401.21 -949.94 7627.44 0.37 0.12 -0.92 1 - -3492.65 -669.16 7627.39 0.37 0.12 -0.92 1 - -3040.70 -1298.46 7727.54 0.37 0.12 -0.92 1 - -3131.91 -1017.76 7727.54 0.37 0.12 -0.92 1 - -3223.04 -736.83 7727.57 0.37 0.12 -0.92 1 - -2862.59 -1085.37 7827.92 0.37 0.12 -0.92 1 - -2953.72 -804.43 7827.96 0.37 0.12 -0.92 1 - -2684.42 -872.25 7928.06 0.37 0.12 -0.92 1 - -6253.28 -1566.10 5409.89 0.75 0.24 -0.62 1 - -6162.08 -1846.80 5409.89 0.75 0.24 -0.62 1 - -6070.88 -2127.71 5409.76 0.75 0.24 -0.62 1 - -2524.16 -593.70 8013.55 0.36 0.03 -0.93 1 - -2792.76 -523.76 7912.20 0.36 0.03 -0.93 1 - -3061.25 -454.16 7811.11 0.36 0.03 -0.93 1 - -3329.62 -384.31 7709.81 0.36 0.03 -0.93 1 - -3598.27 -314.39 7608.71 0.36 0.03 -0.93 1 - -2605.23 -310.38 7992.57 0.36 0.03 -0.93 1 - -2873.60 -240.52 7891.27 0.36 0.03 -0.93 1 - -3142.09 -170.92 7790.18 0.36 0.03 -0.93 1 - -3410.51 -101.08 7689.12 0.36 0.03 -0.93 1 - -2686.07 -27.13 7971.63 0.36 0.03 -0.93 1 - -2954.49 42.71 7870.58 0.36 0.03 -0.93 1 - -3222.98 112.31 7769.49 0.36 0.03 -0.93 1 - -2766.96 256.10 7950.94 0.36 0.03 -0.93 1 - -3035.46 325.69 7849.85 0.36 0.03 -0.93 1 - -3335.67 -7658.91 -1018.61 0.40 0.91 0.06 1 - -3483.25 -7610.96 -767.55 0.40 0.91 0.06 1 - -3630.80 -7563.01 -516.23 0.40 0.91 0.06 1 - -3778.61 -7514.99 -265.15 0.40 0.91 0.06 1 - -3213.02 -7729.58 -759.48 0.40 0.91 0.06 1 - -3360.59 -7681.63 -508.41 0.40 0.91 0.06 1 - -3508.14 -7633.68 -257.10 0.40 0.91 0.06 1 - -3090.43 -7800.49 -500.34 0.40 0.91 0.06 1 - -3237.98 -7752.54 -249.02 0.40 0.91 0.06 1 - -2967.78 -7871.15 -241.20 0.40 0.91 0.06 1 - -2875.28 -7916.30 75.01 0.41 0.91 -0.03 1 - -3145.16 -7796.14 69.20 0.41 0.91 -0.03 1 - -3414.88 -7676.29 63.12 0.41 0.91 -0.03 1 - -3684.52 -7556.20 57.29 0.41 0.91 -0.03 1 - -3954.46 -7436.28 51.48 0.41 0.91 -0.03 1 - -3012.11 -7847.57 327.67 0.41 0.91 -0.03 1 - -3281.74 -7727.48 321.84 0.41 0.91 -0.03 1 - -3551.47 -7607.63 315.76 0.41 0.91 -0.03 1 - -3821.17 -7487.78 309.94 0.41 0.91 -0.03 1 - -3148.69 -7778.91 580.32 0.41 0.91 -0.03 1 - -3418.40 -7659.06 574.50 0.41 0.91 -0.03 1 - -3688.12 -7539.21 568.42 0.41 0.91 -0.03 1 - -3285.35 -7710.49 832.97 0.41 0.91 -0.03 1 - -3555.07 -7590.64 826.90 0.41 0.91 -0.03 1 - -4069.56 -7368.35 -290.55 0.46 0.88 0.10 1 - -3922.01 -7416.30 -541.87 0.46 0.88 0.10 1 - -3774.44 -7464.25 -792.93 0.46 0.88 0.10 1 - -3626.64 -7512.27 -1044.27 0.46 0.88 0.10 1 - -3479.07 -7560.22 -1295.33 0.46 0.88 0.10 1 - -4182.79 -7277.85 -547.97 0.46 0.88 0.10 1 - -4035.24 -7325.80 -799.29 0.46 0.88 0.10 1 - -3887.42 -7373.82 -1050.37 0.46 0.88 0.10 1 - -3739.87 -7421.77 -1301.69 0.46 0.88 0.10 1 - -4296.02 -7187.35 -805.40 0.46 0.88 0.10 1 - -4148.20 -7235.36 -1056.48 0.46 0.88 0.10 1 - -4000.65 -7283.31 -1307.80 0.46 0.88 0.10 1 - -4409.05 -7097.16 -1062.58 0.46 0.88 0.10 1 - -4261.50 -7145.11 -1313.90 0.46 0.88 0.10 1 - -4267.66 -7256.78 254.90 0.52 0.85 -0.10 1 - -4380.23 -7157.49 509.26 0.52 0.85 -0.10 1 - -4492.80 -7058.55 763.54 0.52 0.85 -0.10 1 - -4605.22 -6959.30 1018.10 0.52 0.85 -0.10 1 - -4717.94 -6860.21 1272.52 0.52 0.85 -0.10 1 - -4128.48 -7311.69 509.41 0.52 0.85 -0.10 1 - -4240.76 -7212.59 763.83 0.52 0.85 -0.10 1 - -4353.48 -7113.50 1018.25 0.52 0.85 -0.10 1 - -4465.91 -7014.35 1272.46 0.52 0.85 -0.10 1 - -3989.02 -7366.79 763.97 0.52 0.85 -0.10 1 - -4101.59 -7267.50 1018.34 0.52 0.85 -0.10 1 - -4214.02 -7168.35 1272.55 0.52 0.85 -0.10 1 - -3849.70 -7421.84 1018.34 0.52 0.85 -0.10 1 - -3962.27 -7322.55 1272.70 0.52 0.85 -0.10 1 - -5416.16 -6449.98 -36.42 0.59 0.81 0.02 1 - -5177.24 -6623.61 -36.57 0.59 0.81 0.02 1 - -4938.46 -6797.09 -36.56 0.59 0.81 0.02 1 - -4699.39 -6970.77 -36.51 0.59 0.81 0.02 1 - -4460.62 -7144.25 -36.51 0.59 0.81 0.02 1 - -5292.97 -6531.63 -292.22 0.59 0.81 0.02 1 - -5054.04 -6705.26 -292.37 0.59 0.81 0.02 1 - -4815.12 -6878.79 -292.17 0.59 0.81 0.02 1 - -4576.20 -7052.42 -292.31 0.59 0.81 0.02 1 - -5169.77 -6613.28 -548.02 0.59 0.81 0.02 1 - -4930.85 -6786.82 -547.82 0.59 0.81 0.02 1 - -4691.93 -6960.44 -547.97 0.59 0.81 0.02 1 - -5046.72 -6695.04 -803.42 0.59 0.81 0.02 1 - -4807.80 -6868.67 -803.57 0.59 0.81 0.02 1 - -4579.14 -7056.17 255.16 0.59 0.81 -0.06 1 - -4817.92 -6882.69 255.16 0.59 0.81 -0.06 1 - -5056.84 -6709.06 255.30 0.59 0.81 -0.06 1 - -2578.18 -7307.87 3281.64 0.30 0.84 -0.44 1 - -2702.13 -7149.29 3497.69 0.30 0.84 -0.44 1 - -2826.09 -6990.71 3713.75 0.30 0.84 -0.44 1 - -2949.95 -6831.91 3929.72 0.30 0.84 -0.44 1 - -2421.33 -7237.48 3521.60 0.30 0.84 -0.44 1 - -2545.28 -7078.90 3737.65 0.30 0.84 -0.44 1 - -2669.23 -6920.32 3953.71 0.30 0.84 -0.44 1 - -2264.65 -7167.18 3761.85 0.30 0.84 -0.44 1 - -2388.60 -7008.60 3977.91 0.30 0.84 -0.44 1 - -2107.80 -7096.79 4001.81 0.30 0.84 -0.44 1 - -3707.77 -7078.10 2640.54 0.39 0.87 -0.29 1 - -3436.46 -7189.04 2675.31 0.39 0.87 -0.29 1 - -3164.94 -7299.67 2710.32 0.39 0.87 -0.29 1 - -2893.42 -7410.30 2745.32 0.39 0.87 -0.29 1 - -3573.73 -7214.07 2415.20 0.39 0.87 -0.29 1 - -3302.21 -7324.70 2450.21 0.39 0.87 -0.29 1 - -3030.69 -7435.33 2485.21 0.39 0.87 -0.29 1 - -3439.48 -7350.08 2189.99 0.39 0.87 -0.29 1 - -3167.95 -7460.71 2224.99 0.39 0.87 -0.29 1 - -3305.22 -7485.75 1964.88 0.39 0.87 -0.29 1 - -3222.91 -7563.00 1664.71 0.40 0.90 -0.17 1 - -3096.81 -7666.59 1418.62 0.40 0.90 -0.17 1 - -3492.88 -7443.91 1653.03 0.40 0.90 -0.17 1 - -3366.78 -7547.76 1407.19 0.40 0.90 -0.17 1 - -3240.67 -7651.35 1161.10 0.40 0.90 -0.17 1 - -3636.75 -7428.58 1395.85 0.40 0.90 -0.17 1 - -3510.64 -7532.17 1149.76 0.40 0.90 -0.17 1 - -2877.04 -7226.23 3244.69 0.41 0.82 -0.40 1 - -3024.83 -7274.14 2993.51 0.41 0.82 -0.40 1 - -2998.20 -7061.68 3458.04 0.41 0.82 -0.40 1 - -3145.69 -7109.76 3206.77 0.41 0.82 -0.40 1 - -3293.48 -7157.67 2955.59 0.41 0.82 -0.40 1 - -3119.06 -6897.30 3671.30 0.41 0.82 -0.40 1 - -3266.85 -6945.21 3420.12 0.41 0.82 -0.40 1 - -3414.34 -6993.28 3168.85 0.41 0.82 -0.40 1 - -3562.13 -7041.19 2917.67 0.41 0.82 -0.40 1 - -3240.23 -6732.75 3884.65 0.41 0.82 -0.40 1 - -3387.71 -6780.82 3633.38 0.41 0.82 -0.40 1 - -3535.50 -6828.73 3382.20 0.41 0.82 -0.40 1 - -3683.07 -6876.68 3131.14 0.41 0.82 -0.40 1 - -3830.78 -6924.72 2879.75 0.41 0.82 -0.40 1 - -3508.88 -6616.28 3846.73 0.41 0.82 -0.40 1 - -3656.36 -6664.35 3595.46 0.41 0.82 -0.40 1 - -3804.15 -6712.26 3344.28 0.41 0.82 -0.40 1 - -3951.72 -6760.21 3093.22 0.41 0.82 -0.40 1 - -3777.53 -6499.80 3808.81 0.41 0.82 -0.40 1 - -3925.01 -6547.87 3557.54 0.41 0.82 -0.40 1 - -4072.80 -6595.79 3306.36 0.41 0.82 -0.40 1 - -4593.05 -6858.03 1640.88 0.50 0.84 -0.22 1 - -4432.30 -6887.85 1886.78 0.50 0.84 -0.22 1 - -4271.56 -6917.68 2132.67 0.50 0.84 -0.22 1 - -4110.67 -6947.30 2378.51 0.50 0.84 -0.22 1 - -4340.02 -7009.93 1634.22 0.50 0.84 -0.22 1 - -4179.28 -7039.75 1880.12 0.50 0.84 -0.22 1 - -4018.53 -7069.58 2126.01 0.50 0.84 -0.22 1 - -4086.99 -7162.08 1627.82 0.50 0.84 -0.22 1 - -3926.25 -7191.90 1873.72 0.50 0.84 -0.22 1 - -3833.97 -7313.98 1621.16 0.50 0.84 -0.22 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -255.85 -2774.88 -7911.51 0.00 0.34 0.94 1 - -255.73 -3052.22 -7810.12 0.00 0.34 0.94 1 - 0.01 -2636.38 -7962.04 0.00 0.34 0.94 1 - -0.07 -2913.69 -7860.95 0.00 0.34 0.94 1 - 0.05 -3191.02 -7759.56 0.00 0.34 0.94 1 - 255.63 -2774.87 -7911.57 0.00 0.34 0.94 1 - 255.76 -3052.20 -7810.18 0.00 0.34 0.94 1 - -1050.45 -6368.34 -5400.18 0.06 0.76 0.65 1 - -783.29 -6462.58 -5316.89 0.06 0.76 0.65 1 - -516.13 -6556.81 -5233.60 0.06 0.76 0.65 1 - -248.94 -6650.86 -5150.16 0.06 0.76 0.65 1 - -809.32 -6269.75 -5539.02 0.06 0.76 0.65 1 - -542.16 -6363.99 -5455.73 0.06 0.76 0.65 1 - -275.00 -6458.23 -5372.44 0.06 0.76 0.65 1 - -567.99 -6171.44 -5677.97 0.06 0.76 0.65 1 - -300.83 -6265.68 -5594.68 0.06 0.76 0.65 1 - -326.86 -6072.85 -5816.81 0.06 0.76 0.65 1 - -1038.95 -6575.84 -5167.47 0.09 0.83 0.55 1 - -1277.81 -6653.56 -5012.11 0.09 0.83 0.55 1 - -770.96 -6664.29 -5080.12 0.09 0.83 0.55 1 - -1009.98 -6741.80 -4925.00 0.09 0.83 0.55 1 - -1248.84 -6819.52 -4769.63 0.09 0.83 0.55 1 - -503.13 -6752.53 -4993.00 0.09 0.83 0.55 1 - -741.99 -6830.25 -4837.64 0.09 0.83 0.55 1 - -981.00 -6907.76 -4682.52 0.09 0.83 0.55 1 - -1219.86 -6985.48 -4527.16 0.09 0.83 0.55 1 - -235.14 -6840.98 -4905.65 0.09 0.83 0.55 1 - -474.15 -6918.49 -4750.53 0.09 0.83 0.55 1 - -713.01 -6996.21 -4595.16 0.09 0.83 0.55 1 - -951.79 -7073.79 -4440.00 0.09 0.83 0.55 1 - -1190.88 -7151.43 -4284.68 0.09 0.83 0.55 1 - -206.16 -7006.94 -4663.17 0.09 0.83 0.55 1 - -445.18 -7084.45 -4508.05 0.09 0.83 0.55 1 - -684.03 -7162.17 -4352.69 0.09 0.83 0.55 1 - -922.81 -7239.75 -4197.52 0.09 0.83 0.55 1 - -177.19 -7172.90 -4420.69 0.09 0.83 0.55 1 - -416.20 -7250.40 -4265.57 0.09 0.83 0.55 1 - -655.06 -7328.12 -4110.21 0.09 0.83 0.55 1 - -205.79 -4608.46 -7047.02 0.07 0.59 0.80 1 - -458.77 -4719.41 -6942.14 0.07 0.59 0.80 1 - -711.68 -4830.19 -6837.66 0.07 0.59 0.80 1 - -964.45 -4941.01 -6732.85 0.07 0.59 0.80 1 - -1217.42 -5052.09 -6628.19 0.07 0.59 0.80 1 - -201.72 -4846.85 -6872.54 0.07 0.59 0.80 1 - -454.49 -4957.67 -6767.74 0.07 0.59 0.80 1 - -707.40 -5068.45 -6663.26 0.07 0.59 0.80 1 - -960.17 -5179.40 -6558.66 0.07 0.59 0.80 1 - -197.44 -5085.11 -6698.14 0.07 0.59 0.80 1 - -450.21 -5196.06 -6593.55 0.07 0.59 0.80 1 - -703.12 -5306.84 -6489.07 0.07 0.59 0.80 1 - -193.16 -5323.50 -6523.95 0.07 0.59 0.80 1 - -446.07 -5434.28 -6419.47 0.07 0.59 0.80 1 - -1217.48 -3669.14 -7482.91 0.07 0.46 0.89 1 - -964.57 -3812.36 -7430.40 0.07 0.46 0.89 1 - -711.80 -3955.55 -7378.23 0.07 0.46 0.89 1 - -458.68 -4098.64 -7325.79 0.07 0.46 0.89 1 - -205.76 -4242.00 -7273.50 0.07 0.46 0.89 1 - -960.35 -3550.01 -7565.70 0.07 0.46 0.89 1 - -707.39 -3692.93 -7513.38 0.07 0.46 0.89 1 - -454.47 -3836.29 -7461.09 0.07 0.46 0.89 1 - -201.71 -3979.34 -7408.70 0.07 0.46 0.89 1 - -703.18 -3430.58 -7648.68 0.07 0.46 0.89 1 - -450.27 -3573.80 -7596.17 0.07 0.46 0.89 1 - -197.51 -3716.85 -7543.78 0.07 0.46 0.89 1 - -446.20 -3311.27 -7731.58 0.07 0.46 0.89 1 - -193.29 -3454.50 -7679.07 0.07 0.46 0.89 1 - -1411.04 -5318.44 -6376.67 0.14 0.69 0.71 1 - -1394.49 -5532.74 -6174.10 0.14 0.69 0.71 1 - -1377.89 -5747.10 -5971.89 0.14 0.69 0.71 1 - -1361.10 -5961.48 -5769.28 0.14 0.69 0.71 1 - -1344.58 -6175.99 -5566.87 0.14 0.69 0.71 1 - -1150.21 -5440.66 -6311.96 0.14 0.69 0.71 1 - -1133.34 -5654.90 -6109.54 0.14 0.69 0.71 1 - -1116.82 -5869.41 -5907.13 0.14 0.69 0.71 1 - -1100.19 -6083.57 -5704.77 0.14 0.69 0.71 1 - -889.06 -5562.83 -6247.40 0.14 0.69 0.71 1 - -872.51 -5777.13 -6044.83 0.14 0.69 0.71 1 - -855.88 -5991.30 -5842.46 0.14 0.69 0.71 1 - -628.15 -5684.92 -6182.88 0.14 0.69 0.71 1 - -611.60 -5899.22 -5980.31 0.14 0.69 0.71 1 - -1220.87 -3994.59 -7305.88 0.12 0.52 0.85 1 - -1220.87 -4245.66 -7150.71 0.12 0.52 0.85 1 - -1220.72 -4496.89 -6995.43 0.12 0.52 0.85 1 - -1220.93 -4748.09 -6840.19 0.12 0.52 0.85 1 - -966.83 -4135.58 -7253.20 0.12 0.52 0.85 1 - -966.83 -4386.64 -7098.03 0.12 0.52 0.85 1 - -966.68 -4637.88 -6942.75 0.12 0.52 0.85 1 - -712.77 -4276.70 -7200.73 0.12 0.52 0.85 1 - -712.62 -4527.93 -7045.45 0.12 0.52 0.85 1 - -458.73 -4417.68 -7148.05 0.12 0.52 0.85 1 - -249.16 -1631.87 -8251.94 0.06 0.24 0.97 1 - -516.09 -1748.82 -8205.13 0.06 0.24 0.97 1 - -783.24 -1865.47 -8158.10 0.06 0.24 0.97 1 - -1050.39 -1982.11 -8111.06 0.06 0.24 0.97 1 - -274.87 -1916.93 -8179.09 0.06 0.24 0.97 1 - -542.02 -2033.58 -8132.05 0.06 0.24 0.97 1 - -809.17 -2150.23 -8085.01 0.06 0.24 0.97 1 - -300.83 -2201.99 -8106.21 0.06 0.24 0.97 1 - -567.99 -2318.64 -8059.17 0.06 0.24 0.97 1 - -326.77 -2486.75 -8033.13 0.06 0.24 0.97 1 - -1475.01 -7049.27 -4353.36 0.21 0.81 0.55 1 - -1503.75 -6877.71 -4591.82 0.21 0.81 0.55 1 - -1532.13 -6705.89 -4830.27 0.21 0.81 0.55 1 - -1560.51 -6534.07 -5068.73 0.21 0.81 0.55 1 - -1738.18 -6933.78 -4421.44 0.21 0.81 0.55 1 - -1766.56 -6761.96 -4659.90 0.21 0.81 0.55 1 - -1794.94 -6590.14 -4898.35 0.21 0.81 0.55 1 - -2001.26 -6818.16 -4489.72 0.21 0.81 0.55 1 - -2029.64 -6646.33 -4728.17 0.21 0.81 0.55 1 - -2264.07 -6702.41 -4557.80 0.21 0.81 0.55 1 - -1715.64 -5429.13 -6197.12 0.23 0.68 0.70 1 - -1954.41 -5506.71 -6041.96 0.23 0.68 0.70 1 - -2193.27 -5584.43 -5886.59 0.23 0.68 0.70 1 - -2432.28 -5661.94 -5731.47 0.23 0.68 0.70 1 - -1696.76 -5642.63 -5994.02 0.23 0.68 0.70 1 - -1935.53 -5720.22 -5838.86 0.23 0.68 0.70 1 - -2174.39 -5797.94 -5683.50 0.23 0.68 0.70 1 - -1677.92 -5856.34 -5791.08 0.23 0.68 0.70 1 - -1916.77 -5934.06 -5635.72 0.23 0.68 0.70 1 - -1659.04 -6069.84 -5587.98 0.23 0.68 0.70 1 - -315.20 -8247.98 -1640.88 0.09 0.97 0.22 1 - -462.78 -8177.63 -1886.78 0.09 0.97 0.22 1 - -610.35 -8107.28 -2132.67 0.09 0.97 0.22 1 - -757.93 -8036.68 -2378.51 0.09 0.97 0.22 1 - -609.19 -8222.15 -1634.22 0.09 0.97 0.22 1 - -756.76 -8151.80 -1880.12 0.09 0.97 0.22 1 - -904.34 -8081.44 -2126.01 0.09 0.97 0.22 1 - -903.32 -8196.51 -1627.82 0.09 0.97 0.22 1 - -1050.90 -8126.16 -1873.72 0.09 0.97 0.22 1 - -1197.31 -8170.68 -1621.16 0.09 0.97 0.22 1 - -1919.91 -7537.23 -3244.69 0.15 0.91 0.40 1 - -1828.50 -7662.86 -2993.51 0.15 0.91 0.40 1 - -1725.16 -7475.33 -3458.04 0.15 0.91 0.40 1 - -1634.10 -7600.91 -3206.77 0.15 0.91 0.40 1 - -1542.70 -7726.54 -2955.59 0.15 0.91 0.40 1 - -1530.76 -7413.38 -3671.30 0.15 0.91 0.40 1 - -1439.36 -7539.01 -3420.12 0.15 0.91 0.40 1 - -1348.30 -7664.59 -3168.85 0.15 0.91 0.40 1 - -1256.89 -7790.22 -2917.67 0.15 0.91 0.40 1 - -1336.02 -7351.48 -3884.65 0.15 0.91 0.40 1 - -1244.96 -7477.06 -3633.38 0.15 0.91 0.40 1 - -1153.55 -7602.69 -3382.20 0.15 0.91 0.40 1 - -1062.35 -7728.22 -3131.14 0.15 0.91 0.40 1 - -971.09 -7853.90 -2879.75 0.15 0.91 0.40 1 - -1050.21 -7415.16 -3846.73 0.15 0.91 0.40 1 - -959.15 -7540.74 -3595.46 0.15 0.91 0.40 1 - -867.75 -7666.37 -3344.28 0.15 0.91 0.40 1 - -776.55 -7791.90 -3093.22 0.15 0.91 0.40 1 - -764.41 -7478.84 -3808.81 0.15 0.91 0.40 1 - -673.35 -7604.42 -3557.54 0.15 0.91 0.40 1 - -581.94 -7730.05 -3306.36 0.15 0.91 0.40 1 - -1160.77 -7905.68 -2640.54 0.19 0.94 0.29 1 - -1445.46 -7835.96 -2675.31 0.19 0.94 0.29 1 - -1730.15 -7765.86 -2710.32 0.19 0.94 0.29 1 - -2014.85 -7695.77 -2745.32 0.19 0.94 0.29 1 - -1349.12 -7936.90 -2415.20 0.19 0.94 0.29 1 - -1633.82 -7866.80 -2450.21 0.19 0.94 0.29 1 - -1918.51 -7796.70 -2485.21 0.19 0.94 0.29 1 - -1537.68 -7968.02 -2189.99 0.19 0.94 0.29 1 - -1822.38 -7897.92 -2224.99 0.19 0.94 0.29 1 - -1726.04 -7998.86 -1964.88 0.19 0.94 0.29 1 - -2209.67 -7427.61 -3281.64 0.25 0.86 0.44 1 - -2016.18 -7372.18 -3497.69 0.25 0.86 0.44 1 - -1822.69 -7316.74 -3713.75 0.25 0.86 0.44 1 - -1629.14 -7261.08 -3929.72 0.25 0.86 0.44 1 - -2295.19 -7278.47 -3521.60 0.25 0.86 0.44 1 - -2101.70 -7223.04 -3737.65 0.25 0.86 0.44 1 - -1908.21 -7167.60 -3953.71 0.25 0.86 0.44 1 - -2380.63 -7129.51 -3761.85 0.25 0.86 0.44 1 - -2187.14 -7074.07 -3977.91 0.25 0.86 0.44 1 - -2466.15 -6980.36 -4001.81 0.25 0.86 0.44 1 - 1107.33 -825.47 8301.46 -0.18 0.06 -0.98 1 - 1198.53 -544.77 8301.46 -0.18 0.06 -0.98 1 - 1289.79 -263.72 8301.48 -0.18 0.06 -0.98 1 - 315.20 -2220.96 8111.06 -0.09 0.23 -0.97 1 - 462.78 -1969.56 8158.10 -0.09 0.23 -0.97 1 - 610.35 -1718.17 8205.13 -0.09 0.23 -0.97 1 - -442.89 -1308.21 8301.46 0.00 0.19 -0.98 1 - -147.75 -1308.21 8301.46 0.00 0.19 -0.98 1 - 147.75 -1308.15 8301.48 0.00 0.19 -0.98 1 - 442.89 -1308.15 8301.48 0.00 0.19 -0.98 1 - -295.33 -1559.49 8253.93 0.00 0.19 -0.98 1 - -0.03 -1559.29 8253.98 0.00 0.19 -0.98 1 - 295.31 -1559.43 8253.94 0.00 0.19 -0.98 1 - -147.61 -1810.63 8206.69 0.00 0.19 -0.98 1 - 147.74 -1810.77 8206.66 0.00 0.19 -0.98 1 - -0.04 -2061.90 8159.16 0.00 0.19 -0.98 1 - 442.92 -3528.43 7627.40 -0.00 0.39 -0.92 1 - 147.77 -3528.43 7627.40 -0.00 0.39 -0.92 1 - -147.58 -3528.29 7627.44 -0.00 0.39 -0.92 1 - -442.87 -3528.49 7627.39 -0.00 0.39 -0.92 1 - 295.29 -3293.12 7727.54 -0.00 0.39 -0.92 1 - 0.15 -3293.12 7727.54 -0.00 0.39 -0.92 1 - -295.20 -3292.98 7727.57 -0.00 0.39 -0.92 1 - 147.67 -3057.88 7827.92 -0.00 0.39 -0.92 1 - -147.68 -3057.73 7827.96 -0.00 0.39 -0.92 1 - 0.04 -2822.57 7928.06 -0.00 0.39 -0.92 1 - 590.79 -5053.10 6614.57 -0.00 0.61 -0.79 1 - 442.94 -5256.31 6459.24 -0.00 0.61 -0.79 1 - 295.45 -5459.47 6303.92 -0.00 0.61 -0.79 1 - 443.13 -4849.88 6769.64 -0.00 0.61 -0.79 1 - 295.29 -5053.15 6614.56 -0.00 0.61 -0.79 1 - 147.80 -5256.31 6459.24 -0.00 0.61 -0.79 1 - -0.04 -5459.53 6303.91 -0.00 0.61 -0.79 1 - 295.48 -4646.72 6924.95 -0.00 0.61 -0.79 1 - 147.64 -4849.93 6769.62 -0.00 0.61 -0.79 1 - 0.15 -5053.15 6614.55 -0.00 0.61 -0.79 1 - -147.55 -5256.17 6459.27 -0.00 0.61 -0.79 1 - -295.19 -5459.53 6303.91 -0.00 0.61 -0.79 1 - 0.13 -4646.58 6924.99 -0.00 0.61 -0.79 1 - -147.51 -4849.93 6769.62 -0.00 0.61 -0.79 1 - -295.20 -5053.01 6614.59 -0.00 0.61 -0.79 1 - -442.84 -5256.37 6459.22 -0.00 0.61 -0.79 1 - -295.16 -4646.78 6924.94 -0.00 0.61 -0.79 1 - -442.86 -4849.79 6769.66 -0.00 0.61 -0.79 1 - -590.49 -5053.21 6614.54 -0.00 0.61 -0.79 1 - -147.75 -6062.72 5814.65 -0.00 0.73 -0.68 1 - -443.09 -6062.65 5814.78 -0.00 0.73 -0.68 1 - 295.23 -5887.42 6001.12 -0.00 0.73 -0.68 1 - -0.06 -5887.52 6000.94 -0.00 0.73 -0.68 1 - -295.41 -5887.45 6001.07 -0.00 0.73 -0.68 1 - 147.63 -5712.54 6187.36 -0.00 0.73 -0.68 1 - -147.72 -5712.47 6187.49 -0.00 0.73 -0.68 1 - -442.92 -6431.18 5409.89 0.00 0.78 -0.62 1 - -147.77 -6431.18 5409.89 0.00 0.78 -0.62 1 - 147.58 -6431.25 5409.76 0.00 0.78 -0.62 1 - 442.87 -6431.15 5409.95 0.00 0.78 -0.62 1 - -295.29 -6589.66 5209.20 0.00 0.78 -0.62 1 - -0.15 -6589.66 5209.20 0.00 0.78 -0.62 1 - 295.20 -6589.74 5209.07 0.00 0.78 -0.62 1 - -147.67 -6748.37 5008.63 0.00 0.78 -0.62 1 - 147.68 -6748.44 5008.50 0.00 0.78 -0.62 1 - -0.04 -6906.86 4807.94 0.00 0.78 -0.62 1 - -812.83 -6415.51 5396.23 0.08 0.81 -0.59 1 - -663.40 -6574.53 5197.20 0.08 0.81 -0.59 1 - -514.17 -6733.70 4998.42 0.08 0.81 -0.59 1 - -364.88 -6892.82 4799.21 0.08 0.81 -0.59 1 - -215.44 -7052.06 4600.30 0.08 0.81 -0.59 1 - -957.70 -6557.32 5181.60 0.08 0.81 -0.59 1 - -808.61 -6716.37 4982.52 0.08 0.81 -0.59 1 - -659.18 -6875.61 4783.61 0.08 0.81 -0.59 1 - -509.95 -7034.56 4584.71 0.08 0.81 -0.59 1 - -1102.92 -6699.15 4966.93 0.08 0.81 -0.59 1 - -953.48 -6858.17 4767.90 0.08 0.81 -0.59 1 - -804.25 -7017.12 4569.00 0.08 0.81 -0.59 1 - -1247.98 -6840.89 4752.44 0.08 0.81 -0.59 1 - -1098.55 -6999.91 4553.41 0.08 0.81 -0.59 1 - -1038.67 -6032.37 5785.33 0.14 0.66 -0.73 1 - -1481.60 -5422.63 6251.18 0.14 0.66 -0.73 1 - -1629.17 -5219.52 6406.35 0.14 0.66 -0.73 1 - -893.87 -5855.79 5972.76 0.14 0.66 -0.73 1 - -1041.43 -5652.51 6128.13 0.14 0.66 -0.73 1 - -1189.24 -5449.32 6283.25 0.14 0.66 -0.73 1 - -1336.80 -5246.05 6438.61 0.14 0.66 -0.73 1 - -749.07 -5679.20 6160.19 0.14 0.66 -0.73 1 - -896.88 -5476.01 6315.31 0.14 0.66 -0.73 1 - -1044.44 -5272.74 6470.68 0.14 0.66 -0.73 1 - -604.61 -5502.88 6347.53 0.14 0.66 -0.73 1 - -752.17 -5299.61 6502.90 0.14 0.66 -0.73 1 - -1629.23 -4808.36 6720.40 0.14 0.53 -0.83 1 - -1481.43 -4605.19 6875.68 0.14 0.53 -0.83 1 - -1333.86 -4402.07 7030.85 0.14 0.53 -0.83 1 - -1186.16 -4198.68 7186.20 0.14 0.53 -0.83 1 - -1038.59 -3995.56 7341.36 0.14 0.53 -0.83 1 - -1336.77 -4832.39 6754.58 0.14 0.53 -0.83 1 - -1188.97 -4629.22 6909.86 0.14 0.53 -0.83 1 - -1041.49 -4425.88 7065.09 0.14 0.53 -0.83 1 - -893.70 -4222.71 7220.37 0.14 0.53 -0.83 1 - -1044.31 -4856.42 6788.75 0.14 0.53 -0.83 1 - -896.82 -4653.07 6943.99 0.14 0.53 -0.83 1 - -749.03 -4449.90 7099.27 0.14 0.53 -0.83 1 - -752.24 -4880.37 6823.10 0.14 0.53 -0.83 1 - -604.45 -4677.20 6978.37 0.14 0.53 -0.83 1 - -215.36 -2584.08 8013.55 0.08 0.35 -0.93 1 - -364.87 -2817.92 7912.20 0.08 0.35 -0.93 1 - -514.04 -3051.77 7811.11 0.08 0.35 -0.93 1 - -663.40 -3285.41 7709.81 0.08 0.35 -0.93 1 - -812.92 -3519.31 7608.71 0.08 0.35 -0.93 1 - -509.87 -2573.63 7992.57 0.08 0.35 -0.93 1 - -659.24 -2807.27 7891.27 0.08 0.35 -0.93 1 - -808.40 -3041.12 7790.18 0.08 0.35 -0.93 1 - -957.76 -3274.82 7689.12 0.08 0.35 -0.93 1 - -804.23 -2562.98 7971.63 0.08 0.35 -0.93 1 - -953.60 -2796.68 7870.58 0.08 0.35 -0.93 1 - -1102.76 -3030.53 7769.49 0.08 0.35 -0.93 1 - -1098.59 -2552.40 7950.94 0.08 0.35 -0.93 1 - -1247.75 -2786.24 7849.85 0.08 0.35 -0.93 1 - -1798.86 -6831.27 4522.73 0.20 0.83 -0.51 1 - -1509.64 -6882.00 4553.93 0.20 0.83 -0.51 1 - -1943.25 -6940.41 4289.40 0.20 0.83 -0.51 1 - -1654.20 -6991.24 4320.90 0.20 0.83 -0.51 1 - -1364.98 -7041.96 4352.10 0.20 0.83 -0.51 1 - -1798.90 -7100.22 4087.66 0.20 0.83 -0.51 1 - -1509.68 -7150.94 4118.86 0.20 0.83 -0.51 1 - -2326.95 -6083.27 5340.41 0.21 0.75 -0.63 1 - -2037.98 -6125.17 5385.69 0.21 0.75 -0.63 1 - -1749.32 -6167.02 5431.27 0.21 0.75 -0.63 1 - -1460.60 -6208.84 5476.50 0.21 0.75 -0.63 1 - -1171.72 -6250.93 5521.93 0.21 0.75 -0.63 1 - -2175.85 -6270.21 5168.63 0.21 0.75 -0.63 1 - -1887.12 -6312.04 5213.86 0.21 0.75 -0.63 1 - -1598.46 -6353.88 5259.45 0.21 0.75 -0.63 1 - -1309.82 -6395.89 5304.83 0.21 0.75 -0.63 1 - -2024.99 -6457.08 4996.81 0.21 0.75 -0.63 1 - -1736.35 -6499.08 5042.19 0.21 0.75 -0.63 1 - -1447.69 -6540.93 5087.78 0.21 0.75 -0.63 1 - -1874.22 -6644.12 4825.14 0.21 0.75 -0.63 1 - -1585.56 -6685.97 4870.72 0.21 0.75 -0.63 1 - -442.92 -8400.10 -255.16 0.00 1.00 0.06 1 - -147.77 -8400.10 -255.16 0.00 1.00 0.06 1 - 147.58 -8400.07 -255.30 0.00 1.00 0.06 1 - 442.87 -8400.12 -255.10 0.00 1.00 0.06 1 - -295.29 -8384.44 -510.40 0.00 1.00 0.06 1 - -0.15 -8384.44 -510.40 0.00 1.00 0.06 1 - 295.20 -8384.41 -510.55 0.00 1.00 0.06 1 - -147.67 -8369.02 -765.71 0.00 1.00 0.06 1 - 147.68 -8368.99 -765.85 0.00 1.00 0.06 1 - -0.04 -8353.36 -1020.95 0.00 1.00 0.06 1 - -812.83 -8379.32 -254.90 0.08 0.99 0.10 1 - -663.40 -8365.16 -509.26 0.08 0.99 0.10 1 - -514.17 -8351.28 -763.54 0.08 0.99 0.10 1 - -364.88 -8337.07 -1018.10 0.08 0.99 0.10 1 - -215.44 -8323.16 -1272.52 0.08 0.99 0.10 1 - -957.70 -8341.93 -509.41 0.08 0.99 0.10 1 - -808.61 -8327.76 -763.83 0.08 0.99 0.10 1 - -659.18 -8313.85 -1018.25 0.08 0.99 0.10 1 - -509.95 -8299.72 -1272.46 0.08 0.99 0.10 1 - -1102.92 -8304.54 -763.97 0.08 0.99 0.10 1 - -953.48 -8290.38 -1018.34 0.08 0.99 0.10 1 - -804.25 -8276.25 -1272.55 0.08 0.99 0.10 1 - -1247.98 -8267.19 -1018.34 0.08 0.99 0.10 1 - -1098.55 -8253.02 -1272.70 0.08 0.99 0.10 1 - -1038.67 -8353.14 290.55 0.14 0.98 -0.10 1 - -1186.23 -8305.21 541.87 0.14 0.98 -0.10 1 - -1333.80 -8257.26 792.93 0.14 0.98 -0.10 1 - -1481.60 -8209.23 1044.27 0.14 0.98 -0.10 1 - -1629.17 -8161.28 1295.33 0.14 0.98 -0.10 1 - -893.87 -8346.48 547.97 0.14 0.98 -0.10 1 - -1041.43 -8298.54 799.29 0.14 0.98 -0.10 1 - -1189.24 -8250.50 1050.37 0.14 0.98 -0.10 1 - -1336.80 -8202.57 1301.69 0.14 0.98 -0.10 1 - -749.07 -8339.81 805.40 0.14 0.98 -0.10 1 - -896.88 -8291.77 1056.48 0.14 0.98 -0.10 1 - -1044.44 -8243.84 1307.80 0.14 0.98 -0.10 1 - -604.61 -8333.28 1062.58 0.14 0.98 -0.10 1 - -752.17 -8285.35 1313.90 0.14 0.98 -0.10 1 - -1587.14 -8157.15 -1149.76 0.20 0.96 0.17 1 - -1424.23 -8147.47 -1395.85 0.20 0.96 0.17 1 - -1875.60 -8094.88 -1161.10 0.20 0.96 0.17 1 - -1712.69 -8085.20 -1407.19 0.20 0.96 0.17 1 - -1549.63 -8075.31 -1653.03 0.20 0.96 0.17 1 - -2000.95 -8022.65 -1418.62 0.20 0.96 0.17 1 - -1838.04 -8012.97 -1664.71 0.20 0.96 0.17 1 - -2326.95 -8094.47 -75.01 0.21 0.98 0.03 1 - -2037.98 -8155.88 -69.20 0.21 0.98 0.03 1 - -1749.32 -8217.46 -63.12 0.21 0.98 0.03 1 - -1460.60 -8278.79 -57.29 0.21 0.98 0.03 1 - -1171.72 -8340.45 -51.48 0.21 0.98 0.03 1 - -2175.85 -8119.29 -327.67 0.21 0.98 0.03 1 - -1887.12 -8180.61 -321.84 0.21 0.98 0.03 1 - -1598.46 -8242.19 -315.76 0.21 0.98 0.03 1 - -1309.82 -8303.76 -309.94 0.21 0.98 0.03 1 - -2024.99 -8144.02 -580.32 0.21 0.98 0.03 1 - -1736.35 -8205.59 -574.50 0.21 0.98 0.03 1 - -1447.69 -8267.17 -568.42 0.21 0.98 0.03 1 - -1874.22 -8168.99 -832.97 0.21 0.98 0.03 1 - -1585.56 -8230.57 -826.90 0.21 0.98 0.03 1 - -1803.19 -8156.84 1018.61 0.21 0.97 -0.06 1 - -1655.61 -8204.79 767.55 0.21 0.97 -0.06 1 - -1508.06 -8252.72 516.23 0.21 0.97 -0.06 1 - -1360.25 -8300.76 265.15 0.21 0.97 -0.06 1 - -1943.95 -8141.92 759.48 0.21 0.97 -0.06 1 - -1796.38 -8189.87 508.41 0.21 0.97 -0.06 1 - -1648.82 -8237.80 257.10 0.21 0.97 -0.06 1 - -2084.81 -8127.23 500.34 0.21 0.97 -0.06 1 - -1937.25 -8175.17 249.02 0.21 0.97 -0.06 1 - -2225.58 -8112.31 241.20 0.21 0.97 -0.06 1 - -1984.55 -8076.35 1331.50 0.29 0.95 -0.11 1 - -2123.90 -8063.28 1071.42 0.29 0.95 -0.11 1 - -2263.33 -8050.46 811.59 0.29 0.95 -0.11 1 - -2402.92 -8037.30 551.53 0.29 0.95 -0.11 1 - -2542.37 -8024.47 291.44 0.29 0.95 -0.11 1 - -2267.41 -7992.64 1319.55 0.29 0.95 -0.11 1 - -2406.98 -7979.49 1059.74 0.29 0.95 -0.11 1 - -2546.43 -7966.66 799.66 0.29 0.95 -0.11 1 - -2685.77 -7953.61 539.83 0.29 0.95 -0.11 1 - -2550.48 -7908.85 1307.88 0.29 0.95 -0.11 1 - -2689.84 -7895.78 1047.80 0.29 0.95 -0.11 1 - -2829.18 -7882.73 787.97 0.29 0.95 -0.11 1 - -2833.33 -7825.16 1296.18 0.29 0.95 -0.11 1 - -2972.68 -7812.09 1036.10 0.29 0.95 -0.11 1 - -3141.63 -7700.39 -1331.50 0.33 0.94 0.11 1 - -3021.21 -7771.73 -1071.42 0.33 0.94 0.11 1 - -2900.88 -7843.31 -811.59 0.33 0.94 0.11 1 - -2780.21 -7914.71 -551.53 0.33 0.94 0.11 1 - -2659.86 -7986.30 -291.44 0.33 0.94 0.11 1 - -2863.59 -7798.92 -1319.55 0.33 0.94 0.11 1 - -2742.95 -7870.33 -1059.74 0.33 0.94 0.11 1 - -2622.59 -7941.91 -799.66 0.33 0.94 0.11 1 - -2502.19 -8013.25 -539.83 0.33 0.94 0.11 1 - -2585.33 -7897.53 -1307.88 0.33 0.94 0.11 1 - -2464.91 -7968.87 -1047.80 0.33 0.94 0.11 1 - -2344.51 -8040.21 -787.97 0.33 0.94 0.11 1 - -2307.31 -7996.07 -1296.18 0.33 0.94 0.11 1 - -2186.89 -8067.40 -1036.10 0.33 0.94 0.11 1 - -215.36 -7268.43 4250.21 0.08 0.88 -0.46 1 - -364.87 -7375.15 4018.78 0.08 0.88 -0.46 1 - -514.04 -7482.06 3787.53 0.08 0.88 -0.46 1 - -663.40 -7588.67 3556.27 0.08 0.88 -0.46 1 - -812.92 -7695.60 3324.98 0.08 0.88 -0.46 1 - -509.87 -7246.65 4241.54 0.08 0.88 -0.46 1 - -659.24 -7353.26 4010.27 0.08 0.88 -0.46 1 - -808.40 -7460.16 3779.03 0.08 0.88 -0.46 1 - -957.76 -7566.98 3547.91 0.08 0.88 -0.46 1 - -804.23 -7224.75 4233.03 0.08 0.88 -0.46 1 - -953.60 -7331.57 4001.91 0.08 0.88 -0.46 1 - -1102.76 -7438.48 3770.67 0.08 0.88 -0.46 1 - -1098.59 -7203.07 4224.67 0.08 0.88 -0.46 1 - -1247.75 -7309.97 3993.42 0.08 0.88 -0.46 1 - -1629.23 -8064.19 1803.52 0.14 0.95 -0.27 1 - -1481.43 -8016.28 2054.70 0.14 0.95 -0.27 1 - -1333.86 -7968.33 2305.76 0.14 0.95 -0.27 1 - -1186.16 -7920.30 2557.15 0.14 0.95 -0.27 1 - -1038.59 -7872.35 2808.21 0.14 0.95 -0.27 1 - -1336.77 -8104.89 1812.97 0.14 0.95 -0.27 1 - -1188.97 -8056.97 2064.15 0.14 0.95 -0.27 1 - -1041.49 -8008.90 2315.42 0.14 0.95 -0.27 1 - -893.70 -7960.99 2566.60 0.14 0.95 -0.27 1 - -1044.31 -8145.58 1822.42 0.14 0.95 -0.27 1 - -896.82 -8097.51 2073.69 0.14 0.95 -0.27 1 - -749.03 -8049.60 2324.87 0.14 0.95 -0.27 1 - -752.24 -8186.33 1832.05 0.14 0.95 -0.27 1 - -604.45 -8138.42 2083.23 0.14 0.95 -0.27 1 - -1171.72 -7734.50 3121.41 0.21 0.90 -0.39 1 - -1460.51 -7675.06 3104.13 0.21 0.90 -0.39 1 - -1749.17 -7615.88 3087.07 0.21 0.90 -0.39 1 - -2038.05 -7556.32 3070.00 0.21 0.90 -0.39 1 - -2326.93 -7497.10 3052.82 0.21 0.90 -0.39 1 - -1309.71 -7605.21 3348.13 0.21 0.90 -0.39 1 - -1598.37 -7545.69 3331.17 0.21 0.90 -0.39 1 - -1887.25 -7486.47 3313.99 0.21 0.90 -0.39 1 - -2175.82 -7427.07 3296.83 0.21 0.90 -0.39 1 - -1447.57 -7475.84 3575.17 0.21 0.90 -0.39 1 - -1736.36 -7416.40 3557.89 0.21 0.90 -0.39 1 - -2024.93 -7357.00 3540.73 0.21 0.90 -0.39 1 - -1585.34 -7346.59 3802.00 0.21 0.90 -0.39 1 - -1874.13 -7287.15 3784.72 0.21 0.90 -0.39 1 - -1360.27 -7814.22 2812.60 0.21 0.93 -0.30 1 - -1507.84 -7862.17 2561.54 0.21 0.93 -0.30 1 - -1655.63 -7910.08 2310.36 0.21 0.93 -0.30 1 - -1803.11 -7958.15 2059.09 0.21 0.93 -0.30 1 - -1648.66 -7752.81 2796.85 0.21 0.93 -0.30 1 - -1796.23 -7800.76 2545.78 0.21 0.93 -0.30 1 - -1944.02 -7848.67 2294.60 0.21 0.93 -0.30 1 - -1937.14 -7691.63 2781.18 0.21 0.93 -0.30 1 - -2084.93 -7739.54 2530.00 0.21 0.93 -0.30 1 - -2225.54 -7630.23 2765.43 0.21 0.93 -0.30 1 - -2542.31 -7567.10 2686.35 0.29 0.92 -0.25 1 - -2402.86 -7674.91 2449.21 0.29 0.92 -0.25 1 - -2263.36 -7782.86 2212.48 0.29 0.92 -0.25 1 - -2124.00 -7890.56 1975.54 0.29 0.92 -0.25 1 - -1984.64 -7998.59 1738.49 0.29 0.92 -0.25 1 - -2685.72 -7592.75 2429.33 0.29 0.92 -0.25 1 - -2546.36 -7700.44 2192.39 0.29 0.92 -0.25 1 - -2406.86 -7808.39 1955.66 0.29 0.92 -0.25 1 - -2267.59 -7916.31 1718.82 0.29 0.92 -0.25 1 - -2829.22 -7618.28 2172.51 0.29 0.92 -0.25 1 - -2689.95 -7726.19 1935.66 0.29 0.92 -0.25 1 - -2550.45 -7834.14 1698.94 0.29 0.92 -0.25 1 - -2972.81 -7644.03 1915.79 0.29 0.92 -0.25 1 - -2833.32 -7751.98 1679.06 0.29 0.92 -0.25 1 - 500.00 1200.00 13500.00 9999.00 9999.00 9999.00 5 - 730.00 20.00 13340.00 9999.00 9999.00 9999.00 5 - -730.00 20.00 13340.00 9999.00 9999.00 9999.00 5 - -500.00 1200.00 13500.00 9999.00 9999.00 9999.00 5 - -5458.00 1251.00 -7301.00 9999.00 9999.00 9999.00 2 - -7945.00 112.00 -4691.00 9999.00 9999.00 9999.00 2 - -5703.00 -2315.00 -6840.00 9999.00 9999.00 9999.00 2 - -2623.00 -1284.00 -8729.00 9999.00 9999.00 9999.00 2 - -5657.00 -5461.00 -4785.00 9999.00 9999.00 9999.00 2 - -2876.00 -4805.00 -7301.00 9999.00 9999.00 9999.00 2 - -2562.00 -7521.00 -4691.00 9999.00 9999.00 9999.00 2 - -8737.00 2316.00 -1724.00 9999.00 9999.00 9999.00 2 - -8945.00 -1469.00 -1595.00 9999.00 9999.00 9999.00 2 - -7625.00 -2977.00 -4258.00 9999.00 9999.00 9999.00 2 - -7601.00 -4928.00 -1615.00 9999.00 9999.00 9999.00 2 - -4902.00 -7593.00 -1724.00 9999.00 9999.00 9999.00 2 - -1367.00 -8962.00 -1595.00 9999.00 9999.00 9999.00 2 - -8101.00 4070.00 1595.00 9999.00 9999.00 9999.00 2 - -8945.00 1469.00 1595.00 9999.00 9999.00 9999.00 2 - -8429.00 -3262.00 1724.00 9999.00 9999.00 9999.00 2 - -6374.00 -6446.00 1595.00 9999.00 9999.00 9999.00 2 - -3253.00 -8454.00 1615.00 9999.00 9999.00 9999.00 2 - -7919.00 2074.00 4258.00 9999.00 9999.00 9999.00 2 - -7787.00 -1092.00 4785.00 9999.00 9999.00 9999.00 2 - -6493.00 -4579.00 4691.00 9999.00 9999.00 9999.00 2 - -4419.00 -6890.00 4258.00 9999.00 9999.00 9999.00 2 - -1367.00 -7743.00 4785.00 9999.00 9999.00 9999.00 2 - -2877.00 503.00 8729.00 9999.00 9999.00 9999.00 2 - -5974.00 1479.00 6840.00 9999.00 9999.00 9999.00 2 - -5151.00 -2196.00 7301.00 9999.00 9999.00 9999.00 2 - -1367.00 -2581.00 8729.00 9999.00 9999.00 9999.00 2 - -3253.00 -5225.00 6840.00 9999.00 9999.00 9999.00 2 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 3145.09 -7796.16 69.24 9999.00 9999.00 9999.00 3 - 2107.80 -6753.12 4557.89 9999.00 9999.00 9999.00 3 - 2264.14 -6702.32 -4557.89 9999.00 9999.00 9999.00 3 - 0.06 -8401.71 36.56 9999.00 9999.00 9999.00 3 - 2037.98 -3585.54 7325.80 9999.00 9999.00 9999.00 3 - 1560.46 -6534.05 -5068.76 -0.21 0.81 0.55 1 - 1532.08 -6705.88 -4830.30 -0.21 0.81 0.55 1 - 1503.70 -6877.70 -4591.84 -0.21 0.81 0.55 1 - 1475.29 -7049.33 -4353.23 -0.21 0.81 0.55 1 - 1795.00 -6590.02 -4898.49 -0.21 0.81 0.55 1 - 1766.63 -6761.85 -4660.03 -0.21 0.81 0.55 1 - 1738.25 -6933.67 -4421.57 -0.21 0.81 0.55 1 - 2029.59 -6646.35 -4728.17 -0.21 0.81 0.55 1 - 2001.21 -6818.18 -4489.71 -0.21 0.81 0.55 1 - 2264.14 -6702.32 -4557.89 -0.21 0.81 0.55 1 - 1050.45 -1982.07 -8111.06 -0.06 0.24 0.97 1 - 783.29 -1865.43 -8158.10 -0.06 0.24 0.97 1 - 516.13 -1748.78 -8205.13 -0.06 0.24 0.97 1 - 248.94 -1632.09 -8251.93 -0.06 0.24 0.97 1 - 809.32 -2150.34 -8084.97 -0.06 0.24 0.97 1 - 542.16 -2033.70 -8132.01 -0.06 0.24 0.97 1 - 275.00 -1917.05 -8179.05 -0.06 0.24 0.97 1 - 567.99 -2318.58 -8059.18 -0.06 0.24 0.97 1 - 300.83 -2201.94 -8106.22 -0.06 0.24 0.97 1 - 326.86 -2486.85 -8033.09 -0.06 0.24 0.97 1 - 1220.87 -4748.13 -6840.16 -0.12 0.52 0.84 1 - 1220.87 -4497.07 -6995.33 -0.12 0.52 0.84 1 - 1220.72 -4245.82 -7150.60 -0.12 0.52 0.84 1 - 1220.93 -3994.64 -7305.85 -0.12 0.52 0.84 1 - 966.83 -4637.96 -6942.71 -0.12 0.52 0.84 1 - 966.83 -4386.90 -7097.87 -0.12 0.52 0.84 1 - 966.68 -4135.65 -7253.14 -0.12 0.52 0.84 1 - 712.77 -4527.92 -7045.46 -0.12 0.52 0.84 1 - 712.62 -4276.68 -7200.73 -0.12 0.52 0.84 1 - 458.73 -4417.75 -7148.00 -0.12 0.52 0.84 1 - 1344.66 -6176.00 -5566.84 -0.14 0.69 0.71 1 - 1361.15 -5961.44 -5769.33 -0.14 0.69 0.71 1 - 1377.92 -5747.20 -5971.75 -0.14 0.69 0.71 1 - 1394.41 -5532.80 -6174.04 -0.14 0.69 0.71 1 - 1410.94 -5318.44 -6376.68 -0.14 0.69 0.71 1 - 1100.26 -6083.59 -5704.73 -0.14 0.69 0.71 1 - 1116.75 -5869.19 -5907.02 -0.14 0.69 0.71 1 - 1133.52 -5654.95 -6109.44 -0.14 0.69 0.71 1 - 1150.05 -5440.75 -6311.88 -0.14 0.69 0.71 1 - 855.85 -5991.34 -5842.42 -0.14 0.69 0.71 1 - 872.38 -5777.13 -6044.86 -0.14 0.69 0.71 1 - 889.16 -5562.90 -6247.28 -0.14 0.69 0.71 1 - 611.49 -5899.28 -5980.26 -0.14 0.69 0.71 1 - 628.26 -5685.05 -6182.68 -0.14 0.69 0.71 1 - 205.79 -4242.07 -7273.46 -0.07 0.46 0.89 1 - 458.77 -4098.65 -7325.79 -0.07 0.46 0.89 1 - 711.68 -3955.66 -7378.15 -0.07 0.46 0.89 1 - 964.45 -3812.36 -7430.40 -0.07 0.46 0.89 1 - 1217.42 -3669.07 -7482.95 -0.07 0.46 0.89 1 - 201.72 -3979.41 -7408.66 -0.07 0.46 0.89 1 - 454.49 -3836.11 -7460.90 -0.07 0.46 0.89 1 - 707.40 -3693.12 -7513.26 -0.07 0.46 0.89 1 - 960.17 -3549.95 -7565.73 -0.07 0.46 0.89 1 - 197.44 -3716.87 -7543.77 -0.07 0.46 0.89 1 - 450.21 -3573.70 -7596.23 -0.07 0.46 0.89 1 - 703.12 -3430.71 -7648.59 -0.07 0.46 0.89 1 - 193.16 -3454.46 -7679.09 -0.07 0.46 0.89 1 - 446.07 -3311.47 -7731.45 -0.07 0.46 0.89 1 - 1217.48 -5052.02 -6628.24 -0.07 0.59 0.80 1 - 964.57 -4941.01 -6732.86 -0.07 0.59 0.80 1 - 711.80 -4830.30 -6837.60 -0.07 0.59 0.80 1 - 458.68 -4719.41 -6942.13 -0.07 0.59 0.80 1 - 205.76 -4608.53 -7046.97 -0.07 0.59 0.80 1 - 960.35 -5179.35 -6558.71 -0.07 0.59 0.80 1 - 707.39 -5068.63 -6663.14 -0.07 0.59 0.80 1 - 454.47 -4957.75 -6767.98 -0.07 0.59 0.80 1 - 201.71 -4846.92 -6872.50 -0.07 0.59 0.80 1 - 703.18 -5306.97 -6488.99 -0.07 0.59 0.80 1 - 450.27 -5195.96 -6593.61 -0.07 0.59 0.80 1 - 197.51 -5085.12 -6698.13 -0.07 0.59 0.80 1 - 446.20 -5434.48 -6419.36 -0.07 0.59 0.80 1 - 193.29 -5323.46 -6523.98 -0.07 0.59 0.80 1 - 1277.80 -6653.44 -5012.26 -0.09 0.83 0.55 1 - 1038.77 -6575.89 -5167.45 -0.09 0.83 0.55 1 - 1248.68 -6819.51 -4769.68 -0.09 0.83 0.55 1 - 1009.90 -6741.77 -4925.05 -0.09 0.83 0.55 1 - 770.87 -6664.22 -5080.23 -0.09 0.83 0.55 1 - 1219.81 -6985.39 -4527.28 -0.09 0.83 0.55 1 - 980.78 -6907.84 -4682.46 -0.09 0.83 0.55 1 - 742.00 -6830.10 -4837.83 -0.09 0.83 0.55 1 - 502.98 -6752.55 -4993.01 -0.09 0.83 0.55 1 - 1190.69 -7151.46 -4284.69 -0.09 0.83 0.55 1 - 951.91 -7073.72 -4440.06 -0.09 0.83 0.55 1 - 712.89 -6996.17 -4595.24 -0.09 0.83 0.55 1 - 474.11 -6918.58 -4750.41 -0.09 0.83 0.55 1 - 235.08 -6840.87 -4905.80 -0.09 0.83 0.55 1 - 922.80 -7239.79 -4197.47 -0.09 0.83 0.55 1 - 684.02 -7162.05 -4352.84 -0.09 0.83 0.55 1 - 444.99 -7084.50 -4508.03 -0.09 0.83 0.55 1 - 206.22 -7006.91 -4663.19 -0.09 0.83 0.55 1 - 654.90 -7328.12 -4110.26 -0.09 0.83 0.55 1 - 416.12 -7250.38 -4265.63 -0.09 0.83 0.55 1 - 177.10 -7172.82 -4420.81 -0.09 0.83 0.55 1 - 249.16 -6650.96 -5149.97 -0.06 0.76 0.65 1 - 516.09 -6556.80 -5233.63 -0.06 0.76 0.65 1 - 783.24 -6462.56 -5316.93 -0.06 0.76 0.65 1 - 1050.39 -6368.32 -5400.22 -0.06 0.76 0.65 1 - 274.87 -6458.32 -5372.35 -0.06 0.76 0.65 1 - 542.02 -6364.08 -5455.65 -0.06 0.76 0.65 1 - 809.17 -6269.84 -5538.94 -0.06 0.76 0.65 1 - 300.83 -6265.65 -5594.72 -0.06 0.76 0.65 1 - 567.99 -6171.41 -5678.01 -0.06 0.76 0.65 1 - 326.77 -6072.93 -5816.73 -0.06 0.76 0.65 1 - 255.73 -5620.57 -6222.77 0.00 0.69 0.73 1 - -0.05 -5513.28 -6324.31 0.00 0.69 0.73 1 - 255.85 -5835.29 -6020.06 0.00 0.69 0.73 1 - 0.07 -5727.99 -6121.60 0.00 0.69 0.73 1 - -255.76 -5620.64 -6222.79 0.00 0.69 0.73 1 - -0.01 -5942.44 -5918.78 0.00 0.69 0.73 1 - -255.63 -5835.35 -6020.08 0.00 0.69 0.73 1 - 1629.00 -7261.22 -3929.47 -0.25 0.86 0.44 1 - 1822.71 -7316.72 -3713.79 -0.25 0.86 0.44 1 - 2016.20 -7372.15 -3497.75 -0.25 0.86 0.44 1 - 2209.69 -7427.58 -3281.70 -0.25 0.86 0.44 1 - 1908.05 -7167.60 -3953.81 -0.25 0.86 0.44 1 - 2101.55 -7223.03 -3737.76 -0.25 0.86 0.44 1 - 2295.04 -7278.46 -3521.71 -0.25 0.86 0.44 1 - 2187.18 -7074.06 -3977.91 -0.25 0.86 0.44 1 - 2380.68 -7129.49 -3761.86 -0.25 0.86 0.44 1 - 2466.02 -6980.37 -4001.88 -0.25 0.86 0.44 1 - 2014.87 -7695.74 -2745.39 -0.19 0.94 0.29 1 - 1730.17 -7765.84 -2710.37 -0.19 0.94 0.29 1 - 1445.47 -7835.94 -2675.36 -0.19 0.94 0.29 1 - 1160.72 -7905.81 -2640.25 -0.19 0.94 0.29 1 - 1918.70 -7796.67 -2485.19 -0.19 0.94 0.29 1 - 1634.00 -7866.77 -2450.18 -0.19 0.94 0.29 1 - 1349.30 -7936.87 -2415.16 -0.19 0.94 0.29 1 - 1822.34 -7897.91 -2225.04 -0.19 0.94 0.29 1 - 1537.65 -7968.01 -2190.02 -0.19 0.94 0.29 1 - 1726.17 -7998.84 -1964.84 -0.19 0.94 0.29 1 - 1828.68 -7662.79 -2993.56 -0.15 0.91 0.40 1 - 1919.81 -7537.19 -3244.86 -0.15 0.91 0.40 1 - 1542.69 -7726.48 -2955.75 -0.15 0.91 0.40 1 - 1634.13 -7600.87 -3206.86 -0.15 0.91 0.40 1 - 1725.26 -7475.26 -3458.15 -0.15 0.91 0.40 1 - 1257.01 -7790.16 -2917.75 -0.15 0.91 0.40 1 - 1348.15 -7664.55 -3169.04 -0.15 0.91 0.40 1 - 1439.59 -7538.94 -3420.15 -0.15 0.91 0.40 1 - 1530.72 -7413.33 -3671.44 -0.15 0.91 0.40 1 - 971.03 -7853.84 -2879.93 -0.15 0.91 0.40 1 - 1062.47 -7728.23 -3131.04 -0.15 0.91 0.40 1 - 1153.60 -7602.62 -3382.33 -0.15 0.91 0.40 1 - 1244.81 -7477.09 -3633.39 -0.15 0.91 0.40 1 - 1336.17 -7351.41 -3884.74 -0.15 0.91 0.40 1 - 776.48 -7791.91 -3093.22 -0.15 0.91 0.40 1 - 867.92 -7666.30 -3344.33 -0.15 0.91 0.40 1 - 959.05 -7540.70 -3595.63 -0.15 0.91 0.40 1 - 1050.26 -7415.17 -3846.69 -0.15 0.91 0.40 1 - 581.94 -7729.99 -3306.52 -0.15 0.91 0.40 1 - 673.38 -7604.38 -3557.63 -0.15 0.91 0.40 1 - 764.51 -7478.77 -3808.92 -0.15 0.91 0.40 1 - 757.62 -8036.67 -2378.56 -0.09 0.97 0.22 1 - 610.41 -8107.28 -2132.67 -0.09 0.97 0.22 1 - 462.84 -8177.63 -1886.77 -0.09 0.97 0.22 1 - 315.27 -8247.98 -1640.88 -0.09 0.97 0.22 1 - 904.37 -8081.40 -2126.19 -0.09 0.97 0.22 1 - 756.81 -8151.75 -1880.30 -0.09 0.97 0.22 1 - 609.24 -8222.11 -1634.40 -0.09 0.97 0.22 1 - 1050.92 -8126.17 -1873.67 -0.09 0.97 0.22 1 - 903.35 -8196.52 -1627.78 -0.09 0.97 0.22 1 - 1197.32 -8170.65 -1621.30 -0.09 0.97 0.22 1 - 295.25 -7498.11 -3749.05 -0.00 0.89 0.45 1 - 147.67 -7383.74 -3977.78 -0.00 0.89 0.45 1 - 147.69 -7612.48 -3520.31 -0.00 0.89 0.45 1 - 0.11 -7498.11 -3749.05 -0.00 0.89 0.45 1 - -147.47 -7383.74 -3977.78 -0.00 0.89 0.45 1 - -147.46 -7612.48 -3520.31 -0.00 0.89 0.45 1 - -295.39 -7498.10 -3749.10 -0.00 0.89 0.45 1 - -147.61 -8209.00 -1901.15 -0.00 0.95 0.30 1 - 147.74 -8208.96 -1901.29 -0.00 0.95 0.30 1 - -295.24 -8131.79 -2145.11 -0.00 0.95 0.30 1 - 0.05 -8131.84 -2144.91 -0.00 0.95 0.30 1 - 295.40 -8131.80 -2145.05 -0.00 0.95 0.30 1 - -442.93 -8054.66 -2388.73 -0.00 0.95 0.30 1 - -147.58 -8054.63 -2388.87 -0.00 0.95 0.30 1 - 147.71 -8054.68 -2388.67 -0.00 0.95 0.30 1 - 443.06 -8054.64 -2388.81 -0.00 0.95 0.30 1 - -590.56 -7977.46 -2632.69 -0.00 0.95 0.30 1 - -295.27 -7977.50 -2632.49 -0.00 0.95 0.30 1 - 0.08 -7977.47 -2632.63 -0.00 0.95 0.30 1 - 295.22 -7977.47 -2632.63 -0.00 0.95 0.30 1 - 590.72 -7977.48 -2632.57 -0.00 0.95 0.30 1 - -442.90 -7900.30 -2876.45 -0.00 0.95 0.30 1 - -147.61 -7900.34 -2876.25 -0.00 0.95 0.30 1 - 147.74 -7900.31 -2876.39 -0.00 0.95 0.30 1 - 442.88 -7900.31 -2876.39 -0.00 0.95 0.30 1 - -295.24 -7823.14 -3120.21 -0.00 0.95 0.30 1 - 0.05 -7823.18 -3120.01 -0.00 0.95 0.30 1 - 295.40 -7823.15 -3120.15 -0.00 0.95 0.30 1 - 1380.99 16.98 8301.48 -0.18 0.06 -0.98 1 - 1391.91 -762.78 8253.93 -0.18 0.06 -0.98 1 - 1482.97 -481.87 8253.98 -0.18 0.06 -0.98 1 - 1574.37 -201.03 8253.94 -0.18 0.06 -0.98 1 - 1676.40 -699.89 8206.69 -0.18 0.06 -0.98 1 - 1767.80 -419.05 8206.66 -0.18 0.06 -0.98 1 - 1960.98 -637.20 8159.16 -0.18 0.06 -0.98 1 - 3492.61 -669.10 7627.40 -0.37 0.12 -0.92 1 - 3401.41 -949.80 7627.40 -0.37 0.12 -0.92 1 - 3310.00 -1230.64 7627.44 -0.37 0.12 -0.92 1 - 1445.46 -1111.47 8205.13 -0.19 0.16 -0.97 1 - 1730.15 -1048.81 8158.10 -0.19 0.16 -0.97 1 - 2014.85 -986.15 8111.06 -0.19 0.16 -0.97 1 - 1349.12 -1389.26 8179.09 -0.19 0.16 -0.97 1 - 1633.82 -1326.60 8132.05 -0.19 0.16 -0.97 1 - 1918.51 -1263.94 8085.01 -0.19 0.16 -0.97 1 - 1537.68 -1604.62 8106.21 -0.19 0.16 -0.97 1 - 1822.38 -1541.96 8059.17 -0.19 0.16 -0.97 1 - 1726.04 -1819.75 8033.13 -0.19 0.16 -0.97 1 - 3335.67 -2514.09 7305.88 -0.40 0.35 -0.85 1 - 3483.25 -2717.20 7150.72 -0.40 0.35 -0.85 1 - 3630.80 -2920.54 6995.44 -0.40 0.35 -0.85 1 - 1838.04 -2094.54 7911.51 -0.20 0.28 -0.94 1 - 2000.95 -2318.98 7810.12 -0.20 0.28 -0.94 1 - 1549.63 -2132.88 7962.04 -0.20 0.28 -0.94 1 - 1712.69 -2357.18 7860.95 -0.20 0.28 -0.94 1 - 1875.60 -2581.62 7759.56 -0.20 0.28 -0.94 1 - 1424.23 -2395.17 7911.57 -0.20 0.28 -0.94 1 - 1587.14 -2619.61 7810.18 -0.20 0.28 -0.94 1 - 1984.55 -4802.79 6628.25 -0.29 0.52 -0.80 1 - 2123.90 -4564.32 6732.87 -0.29 0.52 -0.80 1 - 2263.33 -4326.19 6837.61 -0.29 0.52 -0.80 1 - 2402.92 -4087.70 6942.15 -0.29 0.52 -0.80 1 - 2542.37 -3849.33 7046.98 -0.29 0.52 -0.80 1 - 2267.41 -4754.67 6558.72 -0.29 0.52 -0.80 1 - 2406.98 -4516.41 6663.16 -0.29 0.52 -0.80 1 - 2546.43 -4278.04 6768.00 -0.29 0.52 -0.80 1 - 2685.77 -4039.81 6872.52 -0.29 0.52 -0.80 1 - 2550.48 -4706.75 6489.01 -0.29 0.52 -0.80 1 - 2689.84 -4468.28 6593.63 -0.29 0.52 -0.80 1 - 2829.18 -4230.05 6698.15 -0.29 0.52 -0.80 1 - 2833.33 -4658.86 6419.38 -0.29 0.52 -0.80 1 - 2972.68 -4420.39 6524.00 -0.29 0.52 -0.80 1 - 2326.95 -3552.87 7273.47 -0.21 0.41 -0.89 1 - 2037.98 -3585.54 7325.80 -0.21 0.41 -0.89 1 - 1749.32 -3618.51 7378.16 -0.21 0.41 -0.89 1 - 1460.60 -3651.16 7430.41 -0.21 0.41 -0.89 1 - 1171.72 -3683.92 7482.95 -0.21 0.41 -0.89 1 - 2175.85 -3337.98 7408.66 -0.21 0.41 -0.89 1 - 1887.12 -3370.62 7460.91 -0.21 0.41 -0.89 1 - 1598.46 -3403.60 7513.27 -0.21 0.41 -0.89 1 - 1309.82 -3436.34 7565.73 -0.21 0.41 -0.89 1 - 2024.99 -3123.06 7543.77 -0.21 0.41 -0.89 1 - 1736.35 -3155.81 7596.23 -0.21 0.41 -0.89 1 - 1447.69 -3188.79 7648.59 -0.21 0.41 -0.89 1 - 1874.22 -2908.25 7679.09 -0.21 0.41 -0.89 1 - 1585.56 -2941.23 7731.45 -0.21 0.41 -0.89 1 - 2542.31 -5786.86 5566.85 -0.29 0.64 -0.71 1 - 2124.00 -5295.75 6174.05 -0.29 0.64 -0.71 1 - 1984.64 -5132.04 6376.69 -0.29 0.64 -0.71 1 - 2685.72 -5568.44 5704.74 -0.29 0.64 -0.71 1 - 2546.36 -5404.68 5907.03 -0.29 0.64 -0.71 1 - 2406.86 -5241.22 6109.45 -0.29 0.64 -0.71 1 - 2267.59 -5077.64 6311.90 -0.29 0.64 -0.71 1 - 2829.22 -5350.15 5842.43 -0.29 0.64 -0.71 1 - 2689.95 -5186.57 6044.87 -0.29 0.64 -0.71 1 - 2550.45 -5023.12 6247.30 -0.29 0.64 -0.71 1 - 2972.81 -5132.05 5980.28 -0.29 0.64 -0.71 1 - 2833.32 -4968.59 6182.70 -0.29 0.64 -0.71 1 - 1803.19 -4558.93 6840.17 -0.21 0.49 -0.84 1 - 1655.61 -4355.82 6995.34 -0.21 0.49 -0.84 1 - 1508.06 -4152.47 7150.61 -0.21 0.49 -0.84 1 - 1360.25 -3949.38 7305.86 -0.21 0.49 -0.84 1 - 1943.95 -4320.48 6942.72 -0.21 0.49 -0.84 1 - 1796.38 -4117.36 7097.88 -0.21 0.49 -0.84 1 - 1648.82 -3914.02 7253.15 -0.21 0.49 -0.84 1 - 2084.81 -4082.13 7045.47 -0.21 0.49 -0.84 1 - 1937.25 -3878.78 7200.74 -0.21 0.49 -0.84 1 - 2225.58 -3843.68 7148.01 -0.21 0.49 -0.84 1 - 757.93 -1466.71 8251.93 -0.09 0.23 -0.97 1 - 609.19 -2215.36 8084.97 -0.09 0.23 -0.97 1 - 756.76 -1963.97 8132.01 -0.09 0.23 -0.97 1 - 904.34 -1712.57 8179.05 -0.09 0.23 -0.97 1 - 903.32 -2209.62 8059.18 -0.09 0.23 -0.97 1 - 1050.90 -1958.23 8106.22 -0.09 0.23 -0.97 1 - 1197.31 -2204.03 8033.09 -0.09 0.23 -0.97 1 - 2578.18 -6203.37 5068.77 -0.30 0.77 -0.55 1 - 2702.13 -6325.70 4830.31 -0.30 0.77 -0.55 1 - 2826.09 -6448.03 4591.85 -0.30 0.77 -0.55 1 - 1655.63 -5603.95 6041.77 -0.21 0.69 -0.70 1 - 1803.11 -5400.71 6197.14 -0.21 0.69 -0.70 1 - 1648.66 -5968.75 5683.54 -0.21 0.69 -0.70 1 - 1796.23 -5765.63 5838.71 -0.21 0.69 -0.70 1 - 1944.02 -5562.40 5993.90 -0.21 0.69 -0.70 1 - 1937.14 -5927.37 5635.83 -0.21 0.69 -0.70 1 - 2084.93 -5724.14 5791.01 -0.21 0.69 -0.70 1 - 2225.54 -5885.82 5587.95 -0.21 0.69 -0.70 1 - 215.36 -7052.05 4600.32 -0.08 0.81 -0.59 1 - 364.87 -6892.78 4799.28 -0.08 0.81 -0.59 1 - 514.04 -6733.76 4998.31 -0.08 0.81 -0.59 1 - 663.40 -6574.59 5197.09 -0.08 0.81 -0.59 1 - 812.92 -6415.54 5396.18 -0.08 0.81 -0.59 1 - 509.87 -7034.55 4584.72 -0.08 0.81 -0.59 1 - 659.24 -6875.38 4783.50 -0.08 0.81 -0.59 1 - 808.40 -6716.36 4982.53 -0.08 0.81 -0.59 1 - 957.76 -6557.41 5181.44 -0.08 0.81 -0.59 1 - 804.23 -7017.15 4568.94 -0.08 0.81 -0.59 1 - 953.60 -6858.20 4767.84 -0.08 0.81 -0.59 1 - 1102.76 -6699.18 4966.88 -0.08 0.81 -0.59 1 - 1098.59 -6999.97 4553.29 -0.08 0.81 -0.59 1 - 1247.75 -6840.95 4752.32 -0.08 0.81 -0.59 1 - -590.56 -3789.93 7498.41 0.00 0.47 -0.88 1 - -295.21 -3790.07 7498.37 0.00 0.47 -0.88 1 - -0.06 -3790.07 7498.37 0.00 0.47 -0.88 1 - 295.43 -3790.02 7498.39 0.00 0.47 -0.88 1 - 590.58 -3790.02 7498.39 0.00 0.47 -0.88 1 - -442.90 -4015.89 7378.32 0.00 0.47 -0.88 1 - -147.55 -4016.03 7378.29 0.00 0.47 -0.88 1 - 147.75 -4015.83 7378.34 0.00 0.47 -0.88 1 - 443.09 -4015.97 7378.30 0.00 0.47 -0.88 1 - -295.23 -4241.84 7258.24 0.00 0.47 -0.88 1 - 0.06 -4241.64 7258.29 0.00 0.47 -0.88 1 - 295.41 -4241.78 7258.25 0.00 0.47 -0.88 1 - -147.63 -4467.51 7138.49 0.00 0.47 -0.88 1 - 147.72 -4467.65 7138.45 0.00 0.47 -0.88 1 - 590.56 -6237.96 5628.27 -0.00 0.73 -0.68 1 - 295.21 -6237.89 5628.40 -0.00 0.73 -0.68 1 - 0.06 -6237.89 5628.40 -0.00 0.73 -0.68 1 - -295.43 -6237.92 5628.35 -0.00 0.73 -0.68 1 - -590.58 -6237.92 5628.35 -0.00 0.73 -0.68 1 - 442.90 -6062.69 5814.70 -0.00 0.73 -0.68 1 - 147.55 -6062.62 5814.83 -0.00 0.73 -0.68 1 - 3778.58 -7515.00 -265.07 -0.40 0.91 0.06 1 - 3631.01 -7562.94 -516.14 -0.40 0.91 0.06 1 - 3483.21 -7610.96 -767.30 -0.40 0.91 0.06 1 - 2659.92 -7986.28 -291.38 -0.33 0.94 0.11 1 - 2780.28 -7914.69 -551.57 -0.33 0.94 0.11 1 - 2900.84 -7843.31 -811.41 -0.33 0.94 0.11 1 - 3021.11 -7771.75 -1071.37 -0.33 0.94 0.11 1 - 3141.54 -7700.41 -1331.54 -0.33 0.94 0.11 1 - 2502.24 -8013.24 -539.77 -0.33 0.94 0.11 1 - 2622.50 -7941.68 -799.72 -0.33 0.94 0.11 1 - 2743.06 -7870.29 -1059.57 -0.33 0.94 0.11 1 - 2863.40 -7798.97 -1319.51 -0.33 0.94 0.11 1 - 2344.46 -8040.22 -787.92 -0.33 0.94 0.11 1 - 2464.79 -7968.90 -1047.87 -0.33 0.94 0.11 1 - 2585.36 -7897.52 -1307.71 -0.33 0.94 0.11 1 - 2186.75 -8067.44 -1036.07 -0.33 0.94 0.11 1 - 2307.31 -7996.06 -1295.92 -0.33 0.94 0.11 1 - 2542.31 -8024.49 291.38 -0.29 0.95 -0.11 1 - 2402.86 -8037.33 551.57 -0.29 0.95 -0.11 1 - 2263.36 -8050.44 811.41 -0.29 0.95 -0.11 1 - 2124.00 -8063.24 1071.37 -0.29 0.95 -0.11 1 - 1984.64 -8076.31 1331.54 -0.29 0.95 -0.11 1 - 2685.72 -7953.62 539.77 -0.29 0.95 -0.11 1 - 2546.36 -7966.42 799.72 -0.29 0.95 -0.11 1 - 2406.86 -7979.53 1059.57 -0.29 0.95 -0.11 1 - 2267.59 -7992.57 1319.51 -0.29 0.95 -0.11 1 - 2829.22 -7882.71 787.92 -0.29 0.95 -0.11 1 - 2689.95 -7895.74 1047.87 -0.29 0.95 -0.11 1 - 2550.45 -7908.86 1307.71 -0.29 0.95 -0.11 1 - 2972.81 -7812.04 1036.07 -0.29 0.95 -0.11 1 - 2833.32 -7825.15 1295.92 -0.29 0.95 -0.11 1 - 1171.72 -8340.45 -51.38 -0.21 0.98 0.03 1 - 1460.51 -8278.83 -57.22 -0.21 0.98 0.03 1 - 1749.17 -8217.52 -63.17 -0.21 0.98 0.03 1 - 2038.05 -8155.86 -69.24 -0.21 0.98 0.03 1 - 2326.93 -8094.47 -75.09 -0.21 0.98 0.03 1 - 1309.71 -8303.81 -309.78 -0.21 0.98 0.03 1 - 1598.37 -8242.23 -315.96 -0.21 0.98 0.03 1 - 1887.25 -8180.84 -321.81 -0.21 0.98 0.03 1 - 2175.82 -8119.30 -327.74 -0.21 0.98 0.03 1 - 1447.57 -8267.21 -568.52 -0.21 0.98 0.03 1 - 1736.36 -8205.58 -574.36 -0.21 0.98 0.03 1 - 2024.93 -8144.04 -580.30 -0.21 0.98 0.03 1 - 1585.34 -8230.65 -827.02 -0.21 0.98 0.03 1 - 1874.13 -8169.02 -832.86 -0.21 0.98 0.03 1 - 1360.27 -8300.75 265.07 -0.21 0.97 -0.06 1 - 1507.84 -8252.80 516.14 -0.21 0.97 -0.06 1 - 1655.63 -8204.77 767.30 -0.21 0.97 -0.06 1 - 1803.11 -8156.86 1018.60 -0.21 0.97 -0.06 1 - 1648.66 -8237.86 257.10 -0.21 0.97 -0.06 1 - 1796.23 -8189.91 508.16 -0.21 0.97 -0.06 1 - 1944.02 -8141.89 759.32 -0.21 0.97 -0.06 1 - 1937.14 -8175.21 249.11 -0.21 0.97 -0.06 1 - 2084.93 -8127.18 500.27 -0.21 0.97 -0.06 1 - 2225.54 -8112.32 241.13 -0.21 0.97 -0.06 1 - 1629.23 -8161.26 1295.27 -0.14 0.98 -0.10 1 - 1481.43 -8209.29 1044.10 -0.14 0.98 -0.10 1 - 1333.86 -8257.24 793.04 -0.14 0.98 -0.10 1 - 1186.16 -8305.22 541.64 -0.14 0.98 -0.10 1 - 1038.59 -8353.17 290.58 -0.14 0.98 -0.10 1 - 1336.77 -8202.57 1301.47 -0.14 0.98 -0.10 1 - 1188.97 -8250.60 1050.31 -0.14 0.98 -0.10 1 - 1041.49 -8298.51 799.01 -0.14 0.98 -0.10 1 - 893.70 -8346.54 547.85 -0.14 0.98 -0.10 1 - 1044.31 -8243.88 1307.68 -0.14 0.98 -0.10 1 - 896.82 -8291.79 1056.38 -0.14 0.98 -0.10 1 - 749.03 -8339.82 805.22 -0.14 0.98 -0.10 1 - 752.24 -8285.32 1313.74 -0.14 0.98 -0.10 1 - 604.45 -8333.34 1062.58 -0.14 0.98 -0.10 1 - 215.36 -8323.16 -1272.50 -0.08 0.99 0.10 1 - 364.87 -8337.09 -1018.02 -0.08 0.99 0.10 1 - 514.04 -8351.25 -763.65 -0.08 0.99 0.10 1 - 663.40 -8365.13 -509.38 -0.08 0.99 0.10 1 - 812.92 -8379.31 -254.96 -0.08 0.99 0.10 1 - 509.87 -8299.72 -1272.46 -0.08 0.99 0.10 1 - 659.24 -8313.60 -1018.18 -0.08 0.99 0.10 1 - 808.40 -8327.76 -763.81 -0.08 0.99 0.10 1 - 957.76 -8341.89 -509.59 -0.08 0.99 0.10 1 - 804.23 -8276.23 -1272.62 -0.08 0.99 0.10 1 - 953.60 -8290.36 -1018.40 -0.08 0.99 0.10 1 - 1102.76 -8304.52 -764.03 -0.08 0.99 0.10 1 - 1098.59 -8252.99 -1272.83 -0.08 0.99 0.10 1 - 1247.75 -8267.16 -1018.47 -0.08 0.99 0.10 1 - 590.56 -8401.67 36.42 -0.00 1.00 -0.02 1 - 295.21 -8401.71 36.57 -0.00 1.00 -0.02 1 - 0.06 -8401.71 36.56 -0.00 1.00 -0.02 1 - -295.43 -8401.69 36.51 -0.00 1.00 -0.02 1 - -590.58 -8401.69 36.51 -0.00 1.00 -0.02 1 - 442.90 -8395.32 292.22 -0.00 1.00 -0.02 1 - 147.55 -8395.35 292.37 -0.00 1.00 -0.02 1 - -147.75 -8395.31 292.17 -0.00 1.00 -0.02 1 - -443.09 -8395.34 292.31 -0.00 1.00 -0.02 1 - 295.23 -8388.96 548.02 -0.00 1.00 -0.02 1 - -0.06 -8388.92 547.82 -0.00 1.00 -0.02 1 - -295.41 -8388.95 547.97 -0.00 1.00 -0.02 1 - 147.63 -8382.78 803.42 -0.00 1.00 -0.02 1 - -147.72 -8382.81 803.57 -0.00 1.00 -0.02 1 - 2950.15 -6831.95 3929.47 -0.30 0.84 -0.45 1 - 2826.06 -6990.71 3713.79 -0.30 0.84 -0.45 1 - 2702.10 -7149.29 3497.75 -0.30 0.84 -0.45 1 - 1984.55 -7998.61 1738.54 -0.29 0.92 -0.25 1 - 2123.90 -7890.61 1975.50 -0.29 0.92 -0.25 1 - 2263.33 -7782.94 2212.33 -0.29 0.92 -0.25 1 - 2402.92 -7674.87 2449.23 -0.29 0.92 -0.25 1 - 2542.37 -7567.10 2686.29 -0.29 0.92 -0.25 1 - 2267.41 -7916.39 1718.80 -0.29 0.92 -0.25 1 - 2406.98 -7808.42 1955.48 -0.29 0.92 -0.25 1 - 2546.43 -7700.65 2192.54 -0.29 0.92 -0.25 1 - 2685.77 -7592.76 2429.26 -0.29 0.92 -0.25 1 - 2550.48 -7834.20 1698.78 -0.29 0.92 -0.25 1 - 2689.84 -7726.20 1935.74 -0.29 0.92 -0.25 1 - 2829.18 -7618.31 2172.47 -0.29 0.92 -0.25 1 - 2833.33 -7752.08 1678.81 -0.29 0.92 -0.25 1 - 2972.68 -7644.09 1915.77 -0.29 0.92 -0.25 1 - 1038.67 -7872.31 2808.23 -0.14 0.95 -0.27 1 - 1186.23 -7920.36 2556.93 -0.14 0.95 -0.27 1 - 1333.80 -7968.31 2305.87 -0.14 0.95 -0.27 1 - 1481.60 -8016.29 2054.53 -0.14 0.95 -0.27 1 - 1629.17 -8064.24 1803.47 -0.14 0.95 -0.27 1 - 893.87 -7960.98 2566.46 -0.14 0.95 -0.27 1 - 1041.43 -8009.03 2315.17 -0.14 0.95 -0.27 1 - 1189.24 -8056.91 2064.06 -0.14 0.95 -0.27 1 - 1336.80 -8104.96 1812.77 -0.14 0.95 -0.27 1 - 749.07 -8049.65 2324.70 -0.14 0.95 -0.27 1 - 896.88 -8097.53 2073.59 -0.14 0.95 -0.27 1 - 1044.44 -8145.58 1822.30 -0.14 0.95 -0.27 1 - 604.61 -8138.36 2083.21 -0.14 0.95 -0.27 1 - 752.17 -8186.41 1831.92 -0.14 0.95 -0.27 1 - 812.83 -7695.63 3324.93 -0.08 0.88 -0.46 1 - 663.40 -7588.73 3556.17 -0.08 0.88 -0.46 1 - 514.17 -7482.12 3787.44 -0.08 0.88 -0.46 1 - 364.88 -7375.10 4018.85 -0.08 0.88 -0.46 1 - 215.44 -7268.41 4250.23 -0.08 0.88 -0.46 1 - 957.70 -7567.09 3547.75 -0.08 0.88 -0.46 1 - 808.61 -7460.15 3779.04 -0.08 0.88 -0.46 1 - 659.18 -7353.46 4010.43 -0.08 0.88 -0.46 1 - 509.95 -7246.64 4241.54 -0.08 0.88 -0.46 1 - 1102.92 -7438.51 3770.62 -0.08 0.88 -0.46 1 - 953.48 -7331.61 4001.86 -0.08 0.88 -0.46 1 - 804.25 -7224.79 4232.98 -0.08 0.88 -0.46 1 - 1247.98 -7310.05 3993.31 -0.08 0.88 -0.46 1 - 1098.55 -7203.15 4224.56 -0.08 0.88 -0.46 1 - 442.92 -7714.86 3332.83 -0.00 0.91 -0.42 1 - 147.77 -7714.86 3332.83 -0.00 0.91 -0.42 1 - -147.58 -7714.78 3332.95 -0.00 0.91 -0.42 1 - -442.87 -7714.90 3332.78 -0.00 0.91 -0.42 1 - 295.29 -7606.24 3564.34 -0.00 0.91 -0.42 1 - 0.15 -7606.24 3564.34 -0.00 0.91 -0.42 1 - -295.20 -7606.15 3564.46 -0.00 0.91 -0.42 1 - 147.67 -7497.82 3795.99 -0.00 0.91 -0.42 1 - -147.68 -7497.74 3796.11 -0.00 0.91 -0.42 1 - 0.04 -7389.19 4027.50 -0.00 0.91 -0.42 1 - -590.56 -7823.78 3062.35 0.00 0.94 -0.35 1 - -295.21 -7823.86 3062.23 0.00 0.94 -0.35 1 - -0.06 -7823.86 3062.23 0.00 0.94 -0.35 1 - 295.43 -7823.83 3062.28 0.00 0.94 -0.35 1 - 590.58 -7823.83 3062.28 0.00 0.94 -0.35 1 - -442.90 -7912.14 2822.21 0.00 0.94 -0.35 1 - -147.55 -7912.22 2822.09 0.00 0.94 -0.35 1 - 147.75 -7912.10 2822.26 0.00 0.94 -0.35 1 - 443.09 -7912.19 2822.14 0.00 0.94 -0.35 1 - -295.23 -8000.50 2582.07 0.00 0.94 -0.35 1 - 0.06 -8000.38 2582.24 0.00 0.94 -0.35 1 - 295.41 -8000.47 2582.12 0.00 0.94 -0.35 1 - -147.63 -8088.87 2342.37 0.00 0.94 -0.35 1 - 147.72 -8088.95 2342.25 0.00 0.94 -0.35 1 - 590.79 -8176.05 1561.47 -0.00 0.98 -0.19 1 - 442.94 -8223.97 1310.22 -0.00 0.98 -0.19 1 - 295.45 -8271.85 1059.02 -0.00 0.98 -0.19 1 - 443.13 -8127.96 1812.53 -0.00 0.98 -0.19 1 - 295.29 -8176.09 1561.43 -0.00 0.98 -0.19 1 - 147.80 -8223.97 1310.22 -0.00 0.98 -0.19 1 - -0.04 -8271.88 1058.97 -0.00 0.98 -0.19 1 - 295.48 -8080.08 2063.74 -0.00 0.98 -0.19 1 - 147.64 -8128.00 1812.49 -0.00 0.98 -0.19 1 - 0.15 -8176.09 1561.43 -0.00 0.98 -0.19 1 - -147.55 -8223.88 1310.34 -0.00 0.98 -0.19 1 - -295.19 -8271.88 1058.97 -0.00 0.98 -0.19 1 - 0.13 -8080.00 2063.86 -0.00 0.98 -0.19 1 - -147.51 -8128.00 1812.49 -0.00 0.98 -0.19 1 - -295.20 -8176.00 1561.55 -0.00 0.98 -0.19 1 - -442.84 -8224.00 1310.17 -0.00 0.98 -0.19 1 - -295.16 -8080.12 2063.69 -0.00 0.98 -0.19 1 - -442.86 -8127.91 1812.61 -0.00 0.98 -0.19 1 - -590.49 -8176.12 1561.38 -0.00 0.98 -0.19 1 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 3970.86 -5831.82 -4600.32 -0.41 0.70 0.59 1 - 3756.29 -5790.85 -4799.28 -0.41 0.70 0.59 1 - 3542.14 -5749.87 -4998.31 -0.41 0.70 0.59 1 - 3327.74 -5708.90 -5197.09 -0.41 0.70 0.59 1 - 3113.30 -5668.11 -5396.18 -0.41 0.70 0.59 1 - 3722.31 -5990.77 -4584.72 -0.41 0.70 0.59 1 - 3507.91 -5949.80 -4783.50 -0.41 0.70 0.59 1 - 3293.77 -5908.82 -4982.53 -0.41 0.70 0.59 1 - 3079.50 -5868.02 -5181.44 -0.41 0.70 0.59 1 - 3473.94 -6149.72 -4568.94 -0.41 0.70 0.59 1 - 3259.67 -6108.92 -4767.84 -0.41 0.70 0.59 1 - 3045.53 -6067.94 -4966.88 -0.41 0.70 0.59 1 - 3225.70 -6308.84 -4553.29 -0.41 0.70 0.59 1 - 3011.56 -6267.87 -4752.32 -0.41 0.70 0.59 1 - 1749.90 -5180.33 -6406.27 -0.28 0.62 0.73 1 - 1988.93 -5257.88 -6251.09 -0.28 0.62 0.73 1 - 2227.70 -5335.47 -6095.92 -0.28 0.62 0.73 1 - 2466.73 -5413.18 -5940.54 -0.28 0.62 0.73 1 - 2705.50 -5490.76 -5785.37 -0.28 0.62 0.73 1 - 2002.17 -5029.99 -6438.44 -0.28 0.62 0.73 1 - 2241.20 -5107.54 -6283.26 -0.28 0.62 0.73 1 - 2479.98 -5185.28 -6127.89 -0.28 0.62 0.73 1 - 2719.00 -5262.83 -5972.71 -0.28 0.62 0.73 1 - 2254.44 -4879.65 -6470.62 -0.28 0.62 0.73 1 - 2493.22 -4957.38 -6315.25 -0.28 0.62 0.73 1 - 2732.25 -5034.94 -6160.06 -0.28 0.62 0.73 1 - 2506.50 -4729.69 -6502.76 -0.28 0.62 0.73 1 - 2745.53 -4807.24 -6347.57 -0.28 0.62 0.73 1 - 1508.21 -3842.95 -7341.35 -0.20 0.52 0.83 1 - 1508.36 -4094.20 -7186.08 -0.20 0.52 0.83 1 - 1508.36 -4345.26 -7030.91 -0.20 0.52 0.83 1 - 1508.30 -4596.63 -6875.55 -0.20 0.52 0.83 1 - 1508.30 -4847.69 -6720.39 -0.20 0.52 0.83 1 - 1758.94 -3941.71 -7220.26 -0.20 0.52 0.83 1 - 1759.09 -4192.95 -7064.99 -0.20 0.52 0.83 1 - 1758.88 -4444.13 -6909.74 -0.20 0.52 0.83 1 - 1759.03 -4695.38 -6754.47 -0.20 0.52 0.83 1 - 2009.67 -4040.46 -7099.17 -0.20 0.52 0.83 1 - 2009.46 -4291.64 -6943.92 -0.20 0.52 0.83 1 - 2009.61 -4542.89 -6788.65 -0.20 0.52 0.83 1 - 2260.03 -4139.28 -6978.32 -0.20 0.52 0.83 1 - 2260.18 -4390.53 -6823.05 -0.20 0.52 0.83 1 - 1411.04 -3324.99 -7608.69 -0.14 0.33 0.93 1 - 1394.49 -3047.97 -7709.78 -0.14 0.33 0.93 1 - 1377.89 -2771.24 -7811.08 -0.14 0.33 0.93 1 - 1361.10 -2494.15 -7912.22 -0.14 0.33 0.93 1 - 1344.58 -2217.18 -8013.56 -0.14 0.33 0.93 1 - 1150.21 -3212.45 -7689.08 -0.14 0.33 0.93 1 - 1133.34 -2935.59 -7790.18 -0.14 0.33 0.93 1 - 1116.82 -2658.62 -7891.51 -0.14 0.33 0.93 1 - 1100.19 -2381.85 -7992.57 -0.14 0.33 0.93 1 - 889.06 -3100.07 -7769.47 -0.14 0.33 0.93 1 - 872.51 -2823.05 -7870.56 -0.14 0.33 0.93 1 - 855.88 -2546.27 -7971.62 -0.14 0.33 0.93 1 - 628.15 -2987.76 -7849.82 -0.14 0.33 0.93 1 - 611.60 -2710.75 -7950.91 -0.14 0.33 0.93 1 - 2726.23 -5745.77 -5522.01 -0.27 0.73 0.63 1 - 2467.88 -5881.51 -5476.57 -0.27 0.73 0.63 1 - 2209.82 -6017.42 -5431.27 -0.27 0.73 0.63 1 - 1951.48 -6153.31 -5385.63 -0.27 0.73 0.63 1 - 1693.17 -6289.25 -5340.34 -0.27 0.73 0.63 1 - 2699.79 -5944.16 -5304.98 -0.27 0.73 0.63 1 - 2441.70 -6080.02 -5259.32 -0.27 0.73 0.63 1 - 2183.39 -6215.96 -5214.04 -0.27 0.73 0.63 1 - 1925.30 -6351.67 -5168.58 -0.27 0.73 0.63 1 - 2673.61 -6142.67 -5087.73 -0.27 0.73 0.63 1 - 2415.27 -6278.41 -5042.29 -0.27 0.73 0.63 1 - 2157.17 -6414.12 -4996.83 -0.27 0.73 0.63 1 - 2647.43 -6341.02 -4870.68 -0.27 0.73 0.63 1 - 2389.09 -6476.77 -4825.24 -0.27 0.73 0.63 1 - 2432.29 -5661.98 -5731.41 -0.23 0.68 0.70 1 - 2193.51 -5584.40 -5886.58 -0.23 0.68 0.70 1 - 1954.49 -5506.84 -6041.76 -0.23 0.68 0.70 1 - 1715.71 -5429.10 -6197.13 -0.23 0.68 0.70 1 - 2174.55 -5797.88 -5683.54 -0.23 0.68 0.70 1 - 1935.77 -5720.29 -5838.70 -0.23 0.68 0.70 1 - 1696.75 -5642.74 -5993.89 -0.23 0.68 0.70 1 - 1916.84 -5933.97 -5635.82 -0.23 0.68 0.70 1 - 1677.82 -5856.42 -5791.00 -0.23 0.68 0.70 1 - 1659.10 -6069.86 -5587.94 -0.23 0.68 0.70 1 - 3786.92 -6979.36 -2808.23 -0.45 0.85 0.27 1 - 3695.79 -7104.96 -2556.93 -0.45 0.85 0.27 1 - 3604.59 -7230.49 -2305.87 -0.45 0.85 0.27 1 - 3513.22 -7356.18 -2054.53 -0.45 0.85 0.27 1 - 3422.01 -7481.71 -1803.47 -0.45 0.85 0.27 1 - 3956.19 -6965.98 -2566.46 -0.45 0.85 0.27 1 - 3865.06 -7091.59 -2315.17 -0.45 0.85 0.27 1 - 3773.61 -7217.20 -2064.06 -0.45 0.85 0.27 1 - 3682.48 -7342.80 -1812.77 -0.45 0.85 0.27 1 - 4125.45 -6952.60 -2324.70 -0.45 0.85 0.27 1 - 4034.01 -7078.21 -2073.59 -0.45 0.85 0.27 1 - 3942.88 -7203.82 -1822.30 -0.45 0.85 0.27 1 - 4294.46 -6939.46 -2083.21 -0.45 0.85 0.27 1 - 4203.33 -7065.07 -1831.92 -0.45 0.85 0.27 1 - 2524.16 -7433.05 -3052.74 -0.36 0.85 0.39 1 - 2792.76 -7311.12 -3069.96 -0.36 0.85 0.39 1 - 3061.25 -7189.58 -3087.01 -0.36 0.85 0.39 1 - 3329.61 -7067.73 -3104.18 -0.36 0.85 0.39 1 - 3598.26 -6946.04 -3121.51 -0.36 0.85 0.39 1 - 2605.23 -7287.58 -3296.76 -0.36 0.85 0.39 1 - 2873.59 -7165.73 -3313.94 -0.36 0.85 0.39 1 - 3142.08 -7044.19 -3330.98 -0.36 0.85 0.39 1 - 3410.50 -6922.57 -3348.26 -0.36 0.85 0.39 1 - 2686.07 -7142.18 -3540.74 -0.36 0.85 0.39 1 - 2954.49 -7020.56 -3558.01 -0.36 0.85 0.39 1 - 3222.98 -6899.02 -3575.05 -0.36 0.85 0.39 1 - 2766.96 -6997.01 -3784.81 -0.36 0.85 0.39 1 - 3035.45 -6875.47 -3801.85 -0.36 0.85 0.39 1 - 3218.86 -7498.15 -2059.07 -0.37 0.88 0.30 1 - 3310.07 -7372.62 -2310.13 -0.37 0.88 0.30 1 - 3401.20 -7247.01 -2561.43 -0.37 0.88 0.30 1 - 3492.64 -7121.40 -2812.54 -0.37 0.88 0.30 1 - 3040.70 -7492.41 -2294.47 -0.37 0.88 0.30 1 - 3131.90 -7366.88 -2545.53 -0.37 0.88 0.30 1 - 3223.03 -7241.27 -2796.82 -0.37 0.88 0.30 1 - 2862.58 -7486.90 -2529.96 -0.37 0.88 0.30 1 - 2953.72 -7361.29 -2781.25 -0.37 0.88 0.30 1 - 2684.42 -7481.16 -2765.36 -0.37 0.88 0.30 1 - 2718.14 -6801.61 -4087.45 -0.33 0.79 0.51 1 - 2981.87 -6672.55 -4118.86 -0.33 0.79 0.51 1 - 2507.35 -6757.13 -4289.41 -0.33 0.79 0.51 1 - 2771.11 -6628.42 -4320.78 -0.33 0.79 0.51 1 - 3034.84 -6499.35 -4352.20 -0.33 0.79 0.51 1 - 2560.07 -6584.12 -4522.56 -0.33 0.79 0.51 1 - 2823.80 -6455.05 -4553.98 -0.33 0.79 0.51 1 - 3095.93 -7637.50 -1738.54 -0.31 0.92 0.25 1 - 2919.71 -7632.04 -1975.50 -0.31 0.92 0.25 1 - 2743.63 -7626.89 -2212.33 -0.31 0.92 0.25 1 - 2567.17 -7621.51 -2449.23 -0.31 0.92 0.25 1 - 2391.01 -7616.28 -2686.29 -0.31 0.92 0.25 1 - 2818.77 -7737.24 -1718.80 -0.31 0.92 0.25 1 - 2642.39 -7731.93 -1955.48 -0.31 0.92 0.25 1 - 2466.23 -7726.71 -2192.54 -0.31 0.92 0.25 1 - 2290.09 -7721.32 -2429.26 -0.31 0.92 0.25 1 - 2541.44 -7837.13 -1698.78 -0.31 0.92 0.25 1 - 2365.23 -7831.67 -1935.74 -0.31 0.92 0.25 1 - 2189.08 -7826.29 -2172.47 -0.31 0.92 0.25 1 - 2264.35 -7936.95 -1678.81 -0.31 0.92 0.25 1 - 2088.14 -7931.49 -1915.77 -0.31 0.92 0.25 1 - 5841.29 -157.12 6041.77 -0.72 0.01 -0.70 1 - 4120.94 -246.84 7341.35 -0.55 0.03 -0.83 1 - 4359.93 -169.35 7186.08 -0.55 0.03 -0.83 1 - 4598.71 -91.76 7030.91 -0.55 0.03 -0.83 1 - 4837.75 -14.03 6875.56 -0.55 0.03 -0.83 1 - 5076.52 63.55 6720.40 -0.55 0.03 -0.83 1 - 4292.34 -454.78 7220.26 -0.55 0.03 -0.83 1 - 4531.33 -377.29 7065.00 -0.55 0.03 -0.83 1 - 4770.16 -299.47 6909.74 -0.55 0.03 -0.83 1 - 5009.15 -221.98 6754.48 -0.55 0.03 -0.83 1 - 4463.74 -662.73 7099.18 -0.55 0.03 -0.83 1 - 4702.56 -584.91 6943.93 -0.55 0.03 -0.83 1 - 4941.55 -507.41 6788.66 -0.55 0.03 -0.83 1 - 4635.09 -870.30 6978.32 -0.55 0.03 -0.83 1 - 4874.08 -792.80 6823.05 -0.55 0.03 -0.83 1 - 3218.94 -1511.55 7627.39 -0.37 0.12 -0.92 1 - 3223.20 -736.78 7727.54 -0.37 0.12 -0.92 1 - 3132.00 -1017.48 7727.54 -0.37 0.12 -0.92 1 - 3040.60 -1298.33 7727.57 -0.37 0.12 -0.92 1 - 2953.85 -804.49 7827.92 -0.37 0.12 -0.92 1 - 2862.45 -1085.34 7827.96 -0.37 0.12 -0.92 1 - 2684.45 -872.18 7928.06 -0.37 0.12 -0.92 1 - 3421.95 -1732.80 7498.41 -0.45 0.14 -0.88 1 - 3513.36 -1451.95 7498.37 -0.45 0.14 -0.88 1 - 3604.56 -1171.25 7498.37 -0.45 0.14 -0.88 1 - 3695.82 -890.20 7498.39 -0.45 0.14 -0.88 1 - 3787.02 -609.50 7498.39 -0.45 0.14 -0.88 1 - 3682.48 -1662.19 7378.32 -0.45 0.14 -0.88 1 - 3773.88 -1381.34 7378.29 -0.45 0.14 -0.88 1 - 3864.94 -1100.44 7378.34 -0.45 0.14 -0.88 1 - 3956.34 -819.59 7378.30 -0.45 0.14 -0.88 1 - 3943.00 -1591.58 7258.24 -0.45 0.14 -0.88 1 - 4034.06 -1310.67 7258.29 -0.45 0.14 -0.88 1 - 4125.47 -1029.83 7258.25 -0.45 0.14 -0.88 1 - 4203.24 -1520.93 7138.49 -0.45 0.14 -0.88 1 - 4294.64 -1240.08 7138.45 -0.45 0.14 -0.88 1 - 5979.55 -2408.58 5409.89 -0.75 0.24 -0.62 1 - 6070.75 -2127.88 5409.89 -0.75 0.24 -0.62 1 - 6162.09 -1847.01 5409.76 -0.75 0.24 -0.62 1 - 4069.56 -3035.35 6720.40 -0.46 0.30 -0.83 1 - 3922.01 -2832.00 6875.68 -0.46 0.30 -0.83 1 - 3774.44 -2628.89 7030.85 -0.46 0.30 -0.83 1 - 3626.64 -2425.56 7186.20 -0.46 0.30 -0.83 1 - 3479.07 -2222.45 7341.36 -0.46 0.30 -0.83 1 - 4182.79 -2764.62 6754.58 -0.46 0.30 -0.83 1 - 4035.24 -2561.28 6909.86 -0.46 0.30 -0.83 1 - 3887.42 -2358.18 7065.09 -0.46 0.30 -0.83 1 - 3739.87 -2154.84 7220.37 -0.46 0.30 -0.83 1 - 4296.02 -2493.90 6788.75 -0.46 0.30 -0.83 1 - 4148.20 -2290.80 6943.99 -0.46 0.30 -0.83 1 - 4000.65 -2087.46 7099.27 -0.46 0.30 -0.83 1 - 4409.05 -2223.53 6823.10 -0.46 0.30 -0.83 1 - 4261.50 -2020.19 6978.37 -0.46 0.30 -0.83 1 - 2391.06 -1003.34 8013.55 -0.31 0.18 -0.93 1 - 2567.26 -1217.79 7912.20 -0.31 0.18 -0.93 1 - 2743.56 -1431.92 7811.11 -0.31 0.18 -0.93 1 - 2919.61 -1646.17 7709.81 -0.31 0.18 -0.93 1 - 3095.86 -1860.65 7608.71 -0.31 0.18 -0.93 1 - 2290.12 -1280.20 7992.57 -0.31 0.18 -0.93 1 - 2466.17 -1494.46 7891.27 -0.31 0.18 -0.93 1 - 2642.47 -1708.58 7790.18 -0.31 0.18 -0.93 1 - 2818.58 -1922.85 7689.12 -0.31 0.18 -0.93 1 - 2189.03 -1556.87 7971.63 -0.31 0.18 -0.93 1 - 2365.14 -1771.14 7870.58 -0.31 0.18 -0.93 1 - 2541.44 -1985.26 7769.49 -0.31 0.18 -0.93 1 - 2088.00 -1833.55 7950.94 -0.31 0.18 -0.93 1 - 2264.31 -2047.67 7849.85 -0.31 0.18 -0.93 1 - 4579.14 -3383.83 6197.13 -0.59 0.42 -0.70 1 - 4817.92 -3306.25 6041.96 -0.59 0.42 -0.70 1 - 5336.77 -4835.99 4353.36 -0.64 0.53 -0.55 1 - 5259.17 -4680.30 4591.82 -0.64 0.53 -0.55 1 - 5181.14 -4524.61 4830.28 -0.64 0.53 -0.55 1 - 3778.61 -3123.65 6840.20 -0.40 0.35 -0.85 1 - 3213.02 -2777.47 7253.20 -0.40 0.35 -0.85 1 - 3360.59 -2980.59 7098.04 -0.40 0.35 -0.85 1 - 3508.14 -3183.93 6942.76 -0.40 0.35 -0.85 1 - 3090.43 -3040.97 7200.74 -0.40 0.35 -0.85 1 - 3237.98 -3244.31 7045.46 -0.40 0.35 -0.85 1 - 2967.78 -3304.35 7148.06 -0.40 0.35 -0.85 1 - 4267.66 -3473.32 6376.68 -0.52 0.47 -0.71 1 - 4380.23 -3656.42 6174.12 -0.52 0.47 -0.71 1 - 4717.94 -4206.15 5566.88 -0.52 0.47 -0.71 1 - 4128.48 -3725.51 6311.97 -0.52 0.47 -0.71 1 - 4240.76 -3908.76 6109.56 -0.52 0.47 -0.71 1 - 4353.48 -4092.00 5907.15 -0.52 0.47 -0.71 1 - 4465.91 -4275.04 5704.78 -0.52 0.47 -0.71 1 - 3989.02 -3977.85 6247.41 -0.52 0.47 -0.71 1 - 4101.59 -4160.95 6044.85 -0.52 0.47 -0.71 1 - 4214.02 -4343.99 5842.48 -0.52 0.47 -0.71 1 - 3849.70 -4229.98 6182.90 -0.52 0.47 -0.71 1 - 3962.27 -4413.08 5980.33 -0.52 0.47 -0.71 1 - 3141.63 -2252.78 7482.91 -0.33 0.32 -0.89 1 - 3021.21 -2517.31 7430.41 -0.33 0.32 -0.89 1 - 2900.88 -2781.73 7378.23 -0.33 0.32 -0.89 1 - 2780.21 -3046.27 7325.80 -0.33 0.32 -0.89 1 - 2659.86 -3310.91 7273.51 -0.33 0.32 -0.89 1 - 2863.59 -2307.54 7565.70 -0.33 0.32 -0.89 1 - 2742.95 -2571.85 7513.38 -0.33 0.32 -0.89 1 - 2622.59 -2836.49 7461.09 -0.33 0.32 -0.89 1 - 2502.19 -3100.79 7408.70 -0.33 0.32 -0.89 1 - 2585.33 -2362.08 7648.68 -0.33 0.32 -0.89 1 - 2464.91 -2626.61 7596.17 -0.33 0.32 -0.89 1 - 2344.51 -2890.91 7543.78 -0.33 0.32 -0.89 1 - 2307.31 -2416.61 7731.58 -0.33 0.32 -0.89 1 - 2186.89 -2681.13 7679.08 -0.33 0.32 -0.89 1 - 2875.28 -3607.37 7047.03 -0.41 0.43 -0.80 1 - 3145.16 -3548.43 6942.15 -0.41 0.43 -0.80 1 - 3414.88 -3489.40 6837.67 -0.41 0.43 -0.80 1 - 3684.52 -3430.47 6732.86 -0.41 0.43 -0.80 1 - 3954.46 -3371.65 6628.20 -0.41 0.43 -0.80 1 - 3012.11 -3802.62 6872.56 -0.41 0.43 -0.80 1 - 3281.74 -3743.70 6767.75 -0.41 0.43 -0.80 1 - 3551.47 -3684.66 6663.27 -0.41 0.43 -0.80 1 - 3821.17 -3625.85 6558.68 -0.41 0.43 -0.80 1 - 3148.69 -3997.89 6698.16 -0.41 0.43 -0.80 1 - 3418.40 -3939.08 6593.56 -0.41 0.43 -0.80 1 - 3688.12 -3880.05 6489.09 -0.41 0.43 -0.80 1 - 3285.35 -4193.27 6523.97 -0.41 0.43 -0.80 1 - 3555.07 -4134.24 6419.49 -0.41 0.43 -0.80 1 - 4593.05 -4534.65 5400.20 -0.50 0.58 -0.65 1 - 4432.30 -4767.93 5316.91 -0.50 0.58 -0.65 1 - 4271.56 -5001.20 5233.62 -0.50 0.58 -0.65 1 - 4110.67 -5234.34 5150.17 -0.50 0.58 -0.65 1 - 4340.02 -4596.63 5539.04 -0.50 0.58 -0.65 1 - 4179.28 -4829.91 5455.75 -0.50 0.58 -0.65 1 - 4018.53 -5063.18 5372.46 -0.50 0.58 -0.65 1 - 4086.99 -4658.95 5677.99 -0.50 0.58 -0.65 1 - 3926.25 -4892.22 5594.70 -0.50 0.58 -0.65 1 - 3833.97 -4720.93 5816.83 -0.50 0.58 -0.65 1 - 3222.91 -4871.25 6020.09 -0.40 0.56 -0.73 1 - 3096.81 -4697.46 6222.80 -0.40 0.56 -0.73 1 - 3492.88 -4807.53 5918.80 -0.40 0.56 -0.73 1 - 3366.78 -4634.09 6121.62 -0.40 0.56 -0.73 1 - 3240.67 -4460.31 6324.34 -0.40 0.56 -0.73 1 - 3636.75 -4570.65 6020.10 -0.40 0.56 -0.73 1 - 3510.64 -4396.87 6222.81 -0.40 0.56 -0.73 1 - 3707.77 -5527.20 5149.98 -0.39 0.65 -0.65 1 - 3436.46 -5607.91 5233.65 -0.39 0.65 -0.65 1 - 3164.94 -5688.70 5316.94 -0.39 0.65 -0.65 1 - 2893.42 -5769.48 5400.24 -0.39 0.65 -0.65 1 - 3573.73 -5386.46 5372.37 -0.39 0.65 -0.65 1 - 3302.21 -5467.24 5455.66 -0.39 0.65 -0.65 1 - 3030.69 -5548.03 5538.96 -0.39 0.65 -0.65 1 - 3439.48 -5245.85 5594.74 -0.39 0.65 -0.65 1 - 3167.95 -5326.63 5678.03 -0.39 0.65 -0.65 1 - 3305.22 -5105.18 5816.75 -0.39 0.65 -0.65 1 - 2877.04 -6133.82 5012.27 -0.41 0.72 -0.55 1 - 3024.83 -5930.58 5167.46 -0.41 0.72 -0.55 1 - 2998.20 -6251.05 4769.69 -0.41 0.72 -0.55 1 - 3145.69 -6047.81 4925.06 -0.41 0.72 -0.55 1 - 3293.48 -5844.58 5080.24 -0.41 0.72 -0.55 1 - 3119.06 -6368.29 4527.28 -0.41 0.72 -0.55 1 - 3266.85 -6165.05 4682.47 -0.41 0.72 -0.55 1 - 3414.34 -5961.81 4837.84 -0.41 0.72 -0.55 1 - 3562.13 -5758.57 4993.03 -0.41 0.72 -0.55 1 - 3240.23 -6485.52 4284.69 -0.41 0.72 -0.55 1 - 3387.71 -6282.28 4440.06 -0.41 0.72 -0.55 1 - 3535.50 -6079.05 4595.25 -0.41 0.72 -0.55 1 - 3683.07 -5875.93 4750.42 -0.41 0.72 -0.55 1 - 3830.78 -5672.57 4905.81 -0.41 0.72 -0.55 1 - 3508.88 -6399.52 4197.48 -0.41 0.72 -0.55 1 - 3656.36 -6196.28 4352.85 -0.41 0.72 -0.55 1 - 3804.15 -5993.04 4508.03 -0.41 0.72 -0.55 1 - 3951.72 -5789.93 4663.20 -0.41 0.72 -0.55 1 - 3777.53 -6313.52 4110.26 -0.41 0.72 -0.55 1 - 3925.01 -6110.27 4265.63 -0.41 0.72 -0.55 1 - 4072.80 -5907.04 4420.82 -0.41 0.72 -0.55 1 - 2949.95 -6570.18 4353.23 -0.30 0.77 -0.55 1 - 2421.33 -6386.51 4898.49 -0.30 0.77 -0.55 1 - 2545.28 -6508.84 4660.03 -0.30 0.77 -0.55 1 - 2669.23 -6631.17 4421.57 -0.30 0.77 -0.55 1 - 2264.65 -6569.97 4728.17 -0.30 0.77 -0.55 1 - 2388.60 -6692.30 4489.71 -0.30 0.77 -0.55 1 - 2107.80 -6753.12 4557.89 -0.30 0.77 -0.55 1 - 1171.72 -6250.86 5522.01 -0.21 0.75 -0.63 1 - 1460.51 -6208.82 5476.58 -0.21 0.75 -0.63 1 - 1749.17 -6167.09 5431.27 -0.21 0.75 -0.63 1 - 2038.05 -6125.18 5385.64 -0.21 0.75 -0.63 1 - 2326.93 -6083.33 5340.35 -0.21 0.75 -0.63 1 - 1309.71 -6395.82 5304.98 -0.21 0.75 -0.63 1 - 1598.37 -6354.03 5259.32 -0.21 0.75 -0.63 1 - 1887.25 -6312.18 5214.04 -0.21 0.75 -0.63 1 - 2175.82 -6270.27 5168.59 -0.21 0.75 -0.63 1 - 1447.57 -6541.03 5087.73 -0.21 0.75 -0.63 1 - 1736.36 -6498.99 5042.29 -0.21 0.75 -0.63 1 - 2024.93 -6457.08 4996.84 -0.21 0.75 -0.63 1 - 1585.34 -6686.11 4870.68 -0.21 0.75 -0.63 1 - 1874.13 -6644.08 4825.24 -0.21 0.75 -0.63 1 - 812.83 -3519.36 7608.69 -0.08 0.35 -0.93 1 - 663.40 -3285.52 7709.78 -0.08 0.35 -0.93 1 - 514.17 -3051.88 7811.08 -0.08 0.35 -0.93 1 - 364.88 -2817.84 7912.22 -0.08 0.35 -0.93 1 - 215.44 -2584.06 8013.56 -0.08 0.35 -0.93 1 - 957.70 -3275.00 7689.08 -0.08 0.35 -0.93 1 - 808.61 -3041.10 7790.18 -0.08 0.35 -0.93 1 - 659.18 -2807.32 7891.51 -0.08 0.35 -0.93 1 - 509.95 -2573.62 7992.57 -0.08 0.35 -0.93 1 - 1102.92 -3030.59 7769.47 -0.08 0.35 -0.93 1 - 953.48 -2796.74 7870.56 -0.08 0.35 -0.93 1 - 804.25 -2563.05 7971.62 -0.08 0.35 -0.93 1 - 1247.98 -2786.37 7849.82 -0.08 0.35 -0.93 1 - 1098.55 -2552.53 7950.91 -0.08 0.35 -0.93 1 - 1798.86 -7100.30 4087.44 -0.20 0.83 -0.51 1 - 1509.64 -7150.89 4118.86 -0.20 0.83 -0.51 1 - 1943.25 -6940.41 4289.41 -0.20 0.83 -0.51 1 - 1654.20 -6991.31 4320.78 -0.20 0.83 -0.51 1 - 1364.98 -7041.90 4352.20 -0.20 0.83 -0.51 1 - 1798.90 -6831.43 4522.57 -0.20 0.83 -0.51 1 - 1509.68 -6882.02 4553.98 -0.20 0.83 -0.51 1 - 1038.67 -3995.52 7341.35 -0.14 0.53 -0.83 1 - 1186.23 -4198.87 7186.08 -0.14 0.53 -0.83 1 - 1333.80 -4401.99 7030.91 -0.14 0.53 -0.83 1 - 1481.60 -4605.31 6875.56 -0.14 0.53 -0.83 1 - 1629.17 -4808.43 6720.40 -0.14 0.53 -0.83 1 - 893.87 -4222.79 7220.26 -0.14 0.53 -0.83 1 - 1041.43 -4426.14 7065.00 -0.14 0.53 -0.83 1 - 1189.24 -4629.23 6909.74 -0.14 0.53 -0.83 1 - 1336.80 -4832.58 6754.48 -0.14 0.53 -0.83 1 - 749.07 -4450.06 7099.18 -0.14 0.53 -0.83 1 - 896.88 -4653.15 6943.93 -0.14 0.53 -0.83 1 - 1044.44 -4856.50 6788.66 -0.14 0.53 -0.83 1 - 604.61 -4677.17 6978.32 -0.14 0.53 -0.83 1 - 752.17 -4880.52 6823.05 -0.14 0.53 -0.83 1 - 1629.23 -5219.54 6406.28 -0.14 0.66 -0.73 1 - 1481.43 -5422.78 6251.10 -0.14 0.66 -0.73 1 - 1038.59 -6032.37 5785.37 -0.14 0.66 -0.73 1 - 1336.77 -5246.20 6438.45 -0.14 0.66 -0.73 1 - 1188.97 -5449.44 6283.27 -0.14 0.66 -0.73 1 - 1041.49 -5652.68 6127.90 -0.14 0.66 -0.73 1 - 893.70 -5855.91 5972.71 -0.14 0.66 -0.73 1 - 1044.31 -5272.85 6470.62 -0.14 0.66 -0.73 1 - 896.82 -5476.09 6315.25 -0.14 0.66 -0.73 1 - 749.03 -5679.33 6160.06 -0.14 0.66 -0.73 1 - 752.24 -5299.69 6502.76 -0.14 0.66 -0.73 1 - 604.45 -5502.93 6347.57 -0.14 0.66 -0.73 1 - 6253.28 -5539.15 -1018.61 -0.75 0.66 0.06 1 - 6162.07 -5664.68 -767.55 -0.75 0.66 0.06 1 - 6070.87 -5790.20 -516.23 -0.75 0.66 0.06 1 - 5295.79 -6535.50 255.16 -0.59 0.81 -0.06 1 - 5057.01 -6708.98 255.16 -0.59 0.81 -0.06 1 - 4818.05 -6882.55 255.30 -0.59 0.81 -0.06 1 - 3479.00 -7560.23 -1295.27 -0.46 0.88 0.10 1 - 3626.79 -7512.22 -1044.10 -0.46 0.88 0.10 1 - 3774.36 -7464.27 -793.04 -0.46 0.88 0.10 1 - 3922.06 -7416.28 -541.64 -0.46 0.88 0.10 1 - 4069.63 -7368.33 -290.58 -0.46 0.88 0.10 1 - 3739.88 -7421.75 -1301.47 -0.46 0.88 0.10 1 - 3887.68 -7373.74 -1050.31 -0.46 0.88 0.10 1 - 4035.16 -7325.81 -799.01 -0.46 0.88 0.10 1 - 4182.95 -7277.80 -547.85 -0.46 0.88 0.10 1 - 4000.77 -7283.27 -1307.68 -0.46 0.88 0.10 1 - 4148.25 -7235.34 -1056.38 -0.46 0.88 0.10 1 - 4296.04 -7187.33 -805.22 -0.46 0.88 0.10 1 - 4261.41 -7145.12 -1313.74 -0.46 0.88 0.10 1 - 4409.20 -7097.11 -1062.58 -0.46 0.88 0.10 1 - 3335.74 -7658.88 -1018.60 -0.40 0.91 0.06 1 - 3508.30 -7633.63 -257.10 -0.40 0.91 0.06 1 - 3360.73 -7681.58 -508.16 -0.40 0.91 0.06 1 - 3212.94 -7729.59 -759.32 -0.40 0.91 0.06 1 - 3238.09 -7752.51 -249.11 -0.40 0.91 0.06 1 - 3090.30 -7800.52 -500.27 -0.40 0.91 0.06 1 - 2967.81 -7871.14 -241.13 -0.40 0.91 0.06 1 - 3954.46 -7436.28 51.38 -0.41 0.91 -0.03 1 - 3684.60 -7556.18 57.22 -0.41 0.91 -0.03 1 - 3415.04 -7676.25 63.17 -0.41 0.91 -0.03 1 - 3145.09 -7796.16 69.24 -0.41 0.91 -0.03 1 - 2875.30 -7916.30 75.09 -0.41 0.91 -0.03 1 - 3821.28 -7487.75 309.78 -0.41 0.91 -0.03 1 - 3551.56 -7607.60 315.96 -0.41 0.91 -0.03 1 - 3281.77 -7727.73 321.81 -0.41 0.91 -0.03 1 - 3012.14 -7847.56 327.74 -0.41 0.91 -0.03 1 - 3688.24 -7539.17 568.52 -0.41 0.91 -0.03 1 - 3418.38 -7659.06 574.36 -0.41 0.91 -0.03 1 - 3148.75 -7778.89 580.30 -0.41 0.91 -0.03 1 - 3555.29 -7590.58 827.02 -0.41 0.91 -0.03 1 - 3285.43 -7710.47 832.86 -0.41 0.91 -0.03 1 - 2000.96 -8022.69 -1418.68 -0.20 0.96 0.17 1 - 1837.85 -8013.07 -1664.63 -0.20 0.96 0.17 1 - 1875.69 -8094.85 -1161.16 -0.20 0.96 0.17 1 - 1712.57 -8085.24 -1407.12 -0.20 0.96 0.17 1 - 1549.64 -8075.31 -1653.03 -0.20 0.96 0.17 1 - 1587.17 -8157.09 -1149.73 -0.20 0.96 0.17 1 - 1424.05 -8147.48 -1395.69 -0.20 0.96 0.17 1 - 8125.85 -744.28 2059.07 -0.95 0.08 -0.30 1 - 8034.64 -869.81 2310.13 -0.95 0.08 -0.30 1 - 7943.34 -995.29 2561.43 -0.95 0.08 -0.30 1 - 7474.14 -1962.79 3332.83 -0.86 0.28 -0.42 1 - 7382.94 -2243.48 3332.83 -0.86 0.28 -0.42 1 - 7291.59 -2524.35 3332.95 -0.86 0.28 -0.42 1 - 6153.50 -4710.26 3281.64 -0.71 0.55 -0.44 1 - 5964.38 -4779.14 3497.69 -0.71 0.55 -0.44 1 - 5775.26 -4848.02 3713.75 -0.71 0.55 -0.44 1 - 4110.91 -6947.12 2378.56 -0.50 0.84 -0.22 1 - 4271.52 -6917.72 2132.67 -0.50 0.84 -0.22 1 - 4432.25 -6887.90 1886.77 -0.50 0.84 -0.22 1 - 3024.65 -7274.20 2993.56 -0.41 0.82 -0.40 1 - 2877.09 -7226.14 3244.86 -0.41 0.82 -0.40 1 - 3293.45 -7157.62 2955.75 -0.41 0.82 -0.40 1 - 3145.64 -7109.75 3206.86 -0.41 0.82 -0.40 1 - 2998.08 -7061.69 3458.15 -0.41 0.82 -0.40 1 - 3561.99 -7041.22 2917.75 -0.41 0.82 -0.40 1 - 3414.44 -6993.17 3169.04 -0.41 0.82 -0.40 1 - 3266.63 -6945.30 3420.15 -0.41 0.82 -0.40 1 - 3119.07 -6897.24 3671.44 -0.41 0.82 -0.40 1 - 3830.79 -6924.65 2879.93 -0.41 0.82 -0.40 1 - 3682.98 -6876.77 3131.04 -0.41 0.82 -0.40 1 - 3535.43 -6828.72 3382.33 -0.41 0.82 -0.40 1 - 3387.85 -6780.77 3633.39 -0.41 0.82 -0.40 1 - 3240.06 -6732.80 3884.74 -0.41 0.82 -0.40 1 - 3951.78 -6760.20 3093.22 -0.41 0.82 -0.40 1 - 3803.97 -6712.33 3344.33 -0.41 0.82 -0.40 1 - 3656.42 -6664.27 3595.63 -0.41 0.82 -0.40 1 - 3508.84 -6616.32 3846.69 -0.41 0.82 -0.40 1 - 4072.77 -6595.75 3306.52 -0.41 0.82 -0.40 1 - 3924.96 -6547.88 3557.63 -0.41 0.82 -0.40 1 - 3777.41 -6499.82 3808.92 -0.41 0.82 -0.40 1 - 2893.38 -7410.29 2745.39 -0.39 0.87 -0.29 1 - 3164.91 -7299.66 2710.37 -0.39 0.87 -0.29 1 - 3436.44 -7189.03 2675.36 -0.39 0.87 -0.29 1 - 3707.88 -7078.19 2640.25 -0.39 0.87 -0.29 1 - 3030.52 -7435.42 2485.19 -0.39 0.87 -0.29 1 - 3302.04 -7324.79 2450.18 -0.39 0.87 -0.29 1 - 3573.57 -7214.16 2415.16 -0.39 0.87 -0.29 1 - 3167.97 -7460.69 2225.04 -0.39 0.87 -0.29 1 - 3439.50 -7350.06 2190.02 -0.39 0.87 -0.29 1 - 3305.10 -7485.82 1964.84 -0.39 0.87 -0.29 1 - 3636.89 -7428.49 1395.69 -0.40 0.90 -0.17 1 - 3510.58 -7532.14 1149.73 -0.40 0.90 -0.17 1 - 3492.87 -7443.92 1653.03 -0.40 0.90 -0.17 1 - 3366.89 -7547.72 1407.12 -0.40 0.90 -0.17 1 - 3240.58 -7651.38 1161.16 -0.40 0.90 -0.17 1 - 3223.13 -7562.97 1664.63 -0.40 0.90 -0.17 1 - 3096.82 -7666.63 1418.68 -0.40 0.90 -0.17 1 - 2578.14 -7307.86 3281.70 -0.30 0.84 -0.45 1 - 2669.36 -6920.23 3953.81 -0.30 0.84 -0.45 1 - 2545.40 -7078.81 3737.76 -0.30 0.84 -0.45 1 - 2421.45 -7237.38 3521.71 -0.30 0.84 -0.45 1 - 2388.56 -7008.62 3977.91 -0.30 0.84 -0.45 1 - 2264.60 -7167.20 3761.86 -0.30 0.84 -0.45 1 - 2107.90 -7096.72 4001.88 -0.30 0.84 -0.45 1 - 2326.95 -7497.12 3052.74 -0.21 0.90 -0.39 1 - 2037.98 -7556.36 3069.96 -0.21 0.90 -0.39 1 - 1749.32 -7615.85 3087.01 -0.21 0.90 -0.39 1 - 1460.60 -7675.01 3104.18 -0.21 0.90 -0.39 1 - 1171.72 -7734.46 3121.51 -0.21 0.90 -0.39 1 - 2175.85 -7427.08 3296.76 -0.21 0.90 -0.39 1 - 1887.12 -7486.25 3313.94 -0.21 0.90 -0.39 1 - 1598.46 -7545.73 3330.98 -0.21 0.90 -0.39 1 - 1309.82 -7605.11 3348.26 -0.21 0.90 -0.39 1 - 2024.99 -7356.97 3540.74 -0.21 0.90 -0.39 1 - 1736.35 -7416.35 3558.01 -0.21 0.90 -0.39 1 - 1447.69 -7475.84 3575.05 -0.21 0.90 -0.39 1 - 1874.22 -7287.08 3784.81 -0.21 0.90 -0.39 1 - 1585.56 -7346.56 3801.85 -0.21 0.90 -0.39 1 - 1803.19 -7958.13 2059.07 -0.21 0.93 -0.30 1 - 1655.61 -7910.18 2310.13 -0.21 0.93 -0.30 1 - 1508.06 -7862.13 2561.43 -0.21 0.93 -0.30 1 - 1360.25 -7814.25 2812.54 -0.21 0.93 -0.30 1 - 1943.95 -7848.76 2294.47 -0.21 0.93 -0.30 1 - 1796.38 -7800.81 2545.53 -0.21 0.93 -0.30 1 - 1648.82 -7752.76 2796.82 -0.21 0.93 -0.30 1 - 2084.81 -7739.61 2529.96 -0.21 0.93 -0.30 1 - 1937.25 -7691.56 2781.25 -0.21 0.93 -0.30 1 - 2225.58 -7630.24 2765.36 -0.21 0.93 -0.30 1 - 0.09 0.06 -8383.13 9999.00 9999.00 9999.00 3 - 4176.42 -73.25 -7305.85 9999.00 9999.00 9999.00 3 - 7073.94 82.19 -4557.89 9999.00 9999.00 9999.00 3 - 7807.99 -3157.95 36.51 9999.00 9999.00 9999.00 3 - 5674.72 -4224.42 -4557.80 9999.00 9999.00 9999.00 3 - 2254.27 -3605.30 -7258.25 9999.00 9999.00 9999.00 3 - 6047.80 -5839.18 57.29 9999.00 9999.00 9999.00 3 - 6136.48 563.59 -5731.41 -0.72 -0.01 0.70 1 - 5988.91 360.48 -5886.58 -0.72 -0.01 0.70 1 - 5841.29 157.12 -6041.76 -0.72 -0.01 0.70 1 - 6696.45 -535.05 -5068.76 -0.83 0.05 0.55 1 - 6851.10 -615.13 -4830.30 -0.83 0.05 0.55 1 - 7005.74 -695.22 -4591.84 -0.83 0.05 0.55 1 - 2209.67 386.53 -8111.06 -0.25 0.01 0.97 1 - 2016.18 168.50 -8158.10 -0.25 0.01 0.97 1 - 1822.69 -49.54 -8205.13 -0.25 0.01 0.97 1 - 1629.14 -267.60 -8251.93 -0.25 0.01 0.97 1 - 2295.19 105.21 -8084.97 -0.25 0.01 0.97 1 - 2101.70 -112.83 -8132.01 -0.25 0.01 0.97 1 - 1908.21 -330.87 -8179.05 -0.25 0.01 0.97 1 - 2380.63 -176.30 -8059.18 -0.25 0.01 0.97 1 - 2187.14 -394.34 -8106.22 -0.25 0.01 0.97 1 - 2466.15 -457.63 -8033.09 -0.25 0.01 0.97 1 - 4893.02 -306.15 -6840.16 -0.53 0.05 0.84 1 - 4654.24 -228.56 -6995.33 -0.53 0.05 0.84 1 - 4415.25 -151.07 -7150.60 -0.53 0.05 0.84 1 - 2560.02 -1100.83 -7911.51 -0.33 0.11 0.94 1 - 2823.82 -1186.41 -7810.12 -0.33 0.11 0.94 1 - 2507.36 -814.69 -7962.04 -0.33 0.11 0.94 1 - 2771.07 -900.46 -7860.95 -0.33 0.11 0.94 1 - 3034.87 -986.04 -7759.56 -0.33 0.11 0.94 1 - 2718.06 -614.38 -7911.57 -0.33 0.11 0.94 1 - 2981.86 -699.96 -7810.18 -0.33 0.11 0.94 1 - 3421.83 -2395.51 -7305.88 -0.46 0.27 0.84 1 - 3660.60 -2473.09 -7150.71 -0.46 0.27 0.84 1 - 3899.58 -2550.59 -6995.43 -0.46 0.27 0.84 1 - 1475.01 -741.24 -8251.94 -0.21 0.14 0.97 1 - 1503.75 -1031.25 -8205.13 -0.21 0.14 0.97 1 - 1532.13 -1321.37 -8158.10 -0.21 0.14 0.97 1 - 1560.51 -1611.49 -8111.06 -0.21 0.14 0.97 1 - 1738.18 -853.79 -8179.09 -0.21 0.14 0.97 1 - 1766.56 -1143.91 -8132.05 -0.21 0.14 0.97 1 - 1794.94 -1434.03 -8085.01 -0.21 0.14 0.97 1 - 2001.26 -966.57 -8106.21 -0.21 0.14 0.97 1 - 2029.64 -1256.69 -8059.17 -0.21 0.14 0.97 1 - 2264.07 -1079.23 -8033.13 -0.21 0.14 0.97 1 - 4633.25 -3309.35 -6197.12 -0.58 0.43 0.70 1 - 4633.25 -3560.42 -6041.96 -0.58 0.43 0.70 1 - 4633.35 -3811.60 -5886.59 -0.58 0.43 0.70 1 - 1693.12 -1963.99 -8013.55 -0.27 0.24 0.93 1 - 1951.52 -2065.28 -7912.20 -0.27 0.24 0.93 1 - 2209.65 -2166.79 -7811.11 -0.27 0.24 0.93 1 - 2467.82 -2268.02 -7709.81 -0.27 0.24 0.93 1 - 2726.27 -2369.36 -7608.71 -0.27 0.24 0.93 1 - 1925.24 -1782.43 -7992.57 -0.27 0.24 0.93 1 - 2183.41 -1883.65 -7891.27 -0.27 0.24 0.93 1 - 2441.53 -1985.16 -7790.18 -0.27 0.24 0.93 1 - 2699.74 -2086.43 -7689.12 -0.27 0.24 0.93 1 - 2157.12 -1600.79 -7971.63 -0.27 0.24 0.93 1 - 2415.33 -1702.06 -7870.58 -0.27 0.24 0.93 1 - 2673.45 -1803.57 -7769.49 -0.27 0.24 0.93 1 - 2389.04 -1419.21 -7950.94 -0.27 0.24 0.93 1 - 2647.17 -1520.72 -7849.85 -0.27 0.24 0.93 1 - 4144.35 -2932.40 -6720.39 -0.43 0.35 0.83 1 - 3905.37 -2854.91 -6875.67 -0.43 0.35 0.83 1 - 3666.59 -2777.32 -7030.84 -0.43 0.35 0.83 1 - 3427.55 -2699.59 -7186.19 -0.43 0.35 0.83 1 - 3188.77 -2622.01 -7341.36 -0.43 0.35 0.83 1 - 3921.87 -3123.74 -6754.57 -0.43 0.35 0.83 1 - 3682.89 -3046.25 -6909.85 -0.43 0.35 0.83 1 - 3444.05 -2968.43 -7065.09 -0.43 0.35 0.83 1 - 3205.07 -2890.94 -7220.37 -0.43 0.35 0.83 1 - 3699.39 -3315.09 -6788.74 -0.43 0.35 0.83 1 - 3460.55 -3237.27 -6943.98 -0.43 0.35 0.83 1 - 3221.57 -3159.77 -7099.26 -0.43 0.35 0.83 1 - 3477.19 -3506.14 -6823.09 -0.43 0.35 0.83 1 - 3238.20 -3428.64 -6978.37 -0.43 0.35 0.83 1 - 4165.14 -3709.57 -6283.24 -0.50 0.45 0.73 1 - 4165.04 -3458.39 -6438.60 -0.50 0.45 0.73 1 - 3944.16 -4154.27 -6160.19 -0.50 0.45 0.73 1 - 3944.31 -3903.01 -6315.31 -0.50 0.45 0.73 1 - 3944.21 -3651.82 -6470.67 -0.50 0.45 0.73 1 - 3723.66 -4096.54 -6347.53 -0.50 0.45 0.73 1 - 3723.55 -3845.35 -6502.89 -0.50 0.45 0.73 1 - 4428.54 -4712.49 -5396.23 -0.54 0.61 0.59 1 - 4401.11 -4928.98 -5197.20 -0.54 0.61 0.59 1 - 4373.94 -5145.47 -4998.42 -0.54 0.61 0.59 1 - 4346.69 -5361.95 -4799.21 -0.54 0.61 0.59 1 - 4319.39 -5578.61 -4600.30 -0.54 0.61 0.59 1 - 4629.09 -4742.07 -5181.60 -0.54 0.61 0.59 1 - 4601.96 -4958.37 -4982.52 -0.54 0.61 0.59 1 - 4574.67 -5175.04 -4783.61 -0.54 0.61 0.59 1 - 4547.36 -5391.34 -4584.71 -0.54 0.61 0.59 1 - 4829.94 -4771.46 -4966.93 -0.54 0.61 0.59 1 - 4802.51 -4987.94 -4767.90 -0.54 0.61 0.59 1 - 4775.21 -5204.25 -4569.00 -0.54 0.61 0.59 1 - 5030.61 -4800.86 -4752.44 -0.54 0.61 0.59 1 - 5003.18 -5017.34 -4553.41 -0.54 0.61 0.59 1 - 238.87 173.53 -8383.13 -0.00 -0.00 1.00 1 - -30.84 293.68 -8383.12 -0.00 -0.00 1.00 1 - 269.80 -120.09 -8383.13 -0.00 -0.00 1.00 1 - 0.09 0.06 -8383.13 -0.00 -0.00 1.00 1 - -269.62 120.21 -8383.12 -0.00 -0.00 1.00 1 - 31.03 -293.57 -8383.13 -0.00 -0.00 1.00 1 - -239.00 -173.58 -8383.14 -0.00 -0.00 1.00 1 - 1038.95 -1681.13 -8192.58 -0.09 0.13 0.99 1 - 1277.81 -1507.41 -8192.61 -0.09 0.13 0.99 1 - 770.96 -1563.44 -8232.62 -0.09 0.13 0.99 1 - 1009.98 -1390.03 -8232.57 -0.09 0.13 0.99 1 - 1248.84 -1216.32 -8232.61 -0.09 0.13 0.99 1 - 503.13 -1446.06 -8272.58 -0.09 0.13 0.99 1 - 741.99 -1272.34 -8272.62 -0.09 0.13 0.99 1 - 981.00 -1098.94 -8272.57 -0.09 0.13 0.99 1 - 1219.86 -925.22 -8272.61 -0.09 0.13 0.99 1 - 235.14 -1328.36 -8312.63 -0.09 0.13 0.99 1 - 474.15 -1154.96 -8312.58 -0.09 0.13 0.99 1 - 713.01 -981.24 -8312.62 -0.09 0.13 0.99 1 - 951.79 -807.77 -8312.61 -0.09 0.13 0.99 1 - 1190.88 -634.12 -8312.60 -0.09 0.13 0.99 1 - 206.16 -1037.27 -8352.63 -0.09 0.13 0.99 1 - 445.18 -863.86 -8352.58 -0.09 0.13 0.99 1 - 684.03 -690.15 -8352.61 -0.09 0.13 0.99 1 - 922.81 -516.67 -8352.61 -0.09 0.13 0.99 1 - 177.19 -746.17 -8392.62 -0.09 0.13 0.99 1 - 416.20 -572.77 -8392.57 -0.09 0.13 0.99 1 - 655.06 -399.05 -8392.61 -0.09 0.13 0.99 1 - 1715.64 -3114.89 -7627.40 -0.23 0.32 0.92 1 - 1954.41 -2941.42 -7627.40 -0.23 0.32 0.92 1 - 2193.27 -2767.70 -7627.44 -0.23 0.32 0.92 1 - 2432.28 -2594.30 -7627.39 -0.23 0.32 0.92 1 - 1696.76 -2837.76 -7727.54 -0.23 0.32 0.92 1 - 1935.53 -2664.28 -7727.54 -0.23 0.32 0.92 1 - 2174.39 -2490.56 -7727.57 -0.23 0.32 0.92 1 - 1677.92 -2560.67 -7827.92 -0.23 0.32 0.92 1 - 1916.77 -2386.96 -7827.96 -0.23 0.32 0.92 1 - 1659.04 -2283.54 -7928.06 -0.23 0.32 0.92 1 - 2705.44 -2719.00 -7498.41 -0.28 0.38 0.88 1 - 2466.58 -2892.72 -7498.37 -0.28 0.38 0.88 1 - 2227.80 -3066.19 -7498.37 -0.28 0.38 0.88 1 - 1988.71 -3239.84 -7498.39 -0.28 0.38 0.88 1 - 1749.93 -3413.31 -7498.39 -0.28 0.38 0.88 1 - 2718.79 -2988.59 -7378.32 -0.28 0.38 0.88 1 - 2479.93 -3162.31 -7378.29 -0.28 0.38 0.88 1 - 2240.92 -3335.71 -7378.34 -0.28 0.38 0.88 1 - 2002.06 -3509.43 -7378.30 -0.28 0.38 0.88 1 - 2732.14 -3258.18 -7258.24 -0.28 0.38 0.88 1 - 2493.13 -3431.59 -7258.29 -0.28 0.38 0.88 1 - 2254.27 -3605.30 -7258.25 -0.28 0.38 0.88 1 - 2745.37 -3527.51 -7138.49 -0.28 0.38 0.88 1 - 2506.52 -3701.23 -7138.45 -0.28 0.38 0.88 1 - 3448.09 -3740.77 -6614.58 -0.36 0.49 0.79 1 - 3208.98 -3663.19 -6769.79 -0.36 0.49 0.79 1 - 2970.18 -3585.44 -6924.96 -0.36 0.49 0.79 1 - 3447.98 -3991.82 -6459.28 -0.36 0.49 0.79 1 - 3209.01 -3914.43 -6614.63 -0.36 0.49 0.79 1 - 2970.21 -3836.67 -6769.80 -0.36 0.49 0.79 1 - 2731.11 -3759.10 -6925.01 -0.36 0.49 0.79 1 - 3448.01 -4243.06 -6304.12 -0.36 0.49 0.79 1 - 3208.90 -4165.49 -6459.34 -0.36 0.49 0.79 1 - 2970.23 -4087.91 -6614.63 -0.36 0.49 0.79 1 - 2731.31 -4010.33 -6769.67 -0.36 0.49 0.79 1 - 2492.33 -3932.58 -6925.02 -0.36 0.49 0.79 1 - 3209.11 -4416.72 -6303.99 -0.36 0.49 0.79 1 - 2970.13 -4338.97 -6459.34 -0.36 0.49 0.79 1 - 2731.33 -4261.57 -6614.50 -0.36 0.49 0.79 1 - 2492.35 -4183.82 -6769.85 -0.36 0.49 0.79 1 - 2970.15 -4590.21 -6304.17 -0.36 0.49 0.79 1 - 2731.23 -4512.63 -6459.21 -0.36 0.49 0.79 1 - 2492.38 -4435.06 -6614.68 -0.36 0.49 0.79 1 - 3188.81 -5393.74 -5628.27 -0.43 0.59 0.68 1 - 3427.71 -5220.08 -5628.40 -0.43 0.59 0.68 1 - 3666.49 -5046.60 -5628.40 -0.43 0.59 0.68 1 - 3905.57 -4872.93 -5628.35 -0.43 0.59 0.68 1 - 4144.34 -4699.45 -5628.35 -0.43 0.59 0.68 1 - 3205.25 -5165.15 -5814.70 -0.43 0.59 0.68 1 - 3444.15 -4991.49 -5814.83 -0.43 0.59 0.68 1 - 3683.11 -4818.00 -5814.65 -0.43 0.59 0.68 1 - 3922.01 -4644.34 -5814.78 -0.43 0.59 0.68 1 - 3221.69 -4936.55 -6001.12 -0.43 0.59 0.68 1 - 3460.65 -4763.07 -6000.94 -0.43 0.59 0.68 1 - 3699.55 -4589.41 -6001.07 -0.43 0.59 0.68 1 - 3238.32 -4708.31 -6187.36 -0.43 0.59 0.68 1 - 3477.22 -4534.66 -6187.49 -0.43 0.59 0.68 1 - 4138.48 -4942.59 -5409.89 -0.46 0.63 0.62 1 - 3899.70 -5116.07 -5409.89 -0.46 0.63 0.62 1 - 3660.80 -5289.73 -5409.76 -0.46 0.63 0.62 1 - 3421.85 -5463.22 -5409.95 -0.46 0.63 0.62 1 - 4112.20 -5157.59 -5209.20 -0.46 0.63 0.62 1 - 3873.43 -5331.07 -5209.20 -0.46 0.63 0.62 1 - 3634.53 -5504.73 -5209.07 -0.46 0.63 0.62 1 - 4086.06 -5372.76 -5008.63 -0.46 0.63 0.62 1 - 3847.16 -5546.42 -5008.50 -0.46 0.63 0.62 1 - 4059.78 -5587.75 -4807.94 -0.46 0.63 0.62 1 - 4446.50 -5753.71 -4250.21 -0.58 0.67 0.46 1 - 4630.19 -5752.16 -4018.78 -0.58 0.67 0.46 1 - 4813.70 -5750.98 -3787.53 -0.58 0.67 0.46 1 - 4997.21 -5749.43 -3556.27 -0.58 0.67 0.46 1 - 5181.02 -5748.06 -3324.98 -0.58 0.67 0.46 1 - 4671.96 -5562.98 -4241.54 -0.58 0.67 0.46 1 - 4855.47 -5561.43 -4010.27 -0.58 0.67 0.46 1 - 5038.98 -5560.24 -3779.03 -0.58 0.67 0.46 1 - 5222.60 -5558.87 -3547.91 -0.58 0.67 0.46 1 - 4897.24 -5372.24 -4233.03 -0.58 0.67 0.46 1 - 5080.86 -5370.87 -4001.91 -0.58 0.67 0.46 1 - 5264.38 -5369.68 -3770.67 -0.58 0.67 0.46 1 - 5122.64 -5181.68 -4224.67 -0.58 0.67 0.46 1 - 5306.15 -5180.49 -3993.42 -0.58 0.67 0.46 1 - 4176.35 -6501.80 -3332.83 -0.53 0.73 0.42 1 - 4415.13 -6328.32 -3332.83 -0.53 0.73 0.42 1 - 4654.02 -6154.65 -3332.95 -0.53 0.73 0.42 1 - 4892.99 -5981.18 -3332.78 -0.53 0.73 0.42 1 - 4231.94 -6327.15 -3564.34 -0.53 0.73 0.42 1 - 4470.71 -6153.67 -3564.34 -0.53 0.73 0.42 1 - 4709.60 -5980.00 -3564.46 -0.53 0.73 0.42 1 - 4287.64 -6152.67 -3795.99 -0.53 0.73 0.42 1 - 4526.53 -5979.00 -3796.11 -0.53 0.73 0.42 1 - 4343.22 -5978.02 -4027.50 -0.53 0.73 0.42 1 - 5076.46 -5982.46 -3062.35 -0.55 0.76 0.35 1 - 4837.57 -6156.13 -3062.23 -0.55 0.76 0.35 1 - 4598.80 -6329.61 -3062.23 -0.55 0.76 0.35 1 - 4359.71 -6503.27 -3062.28 -0.55 0.76 0.35 1 - 4120.94 -6676.75 -3062.28 -0.55 0.76 0.35 1 - 5008.94 -6140.73 -2822.21 -0.55 0.76 0.35 1 - 4770.05 -6314.40 -2822.09 -0.55 0.76 0.35 1 - 4531.08 -6487.88 -2822.26 -0.55 0.76 0.35 1 - 4292.19 -6661.55 -2822.14 -0.55 0.76 0.35 1 - 4941.42 -6299.01 -2582.07 -0.55 0.76 0.35 1 - 4702.45 -6472.49 -2582.24 -0.55 0.76 0.35 1 - 4463.56 -6646.16 -2582.12 -0.55 0.76 0.35 1 - 4873.95 -6457.26 -2342.37 -0.55 0.76 0.35 1 - 4635.05 -6630.93 -2342.25 -0.55 0.76 0.35 1 - 3865.78 -6703.68 -3324.93 -0.46 0.76 0.46 1 - 3923.84 -6529.36 -3556.17 -0.46 0.76 0.46 1 - 3981.91 -6355.39 -3787.44 -0.46 0.76 0.46 1 - 4039.78 -6181.07 -4018.85 -0.46 0.76 0.46 1 - 4097.97 -6006.91 -4250.23 -0.46 0.76 0.46 1 - 3673.03 -6684.83 -3547.75 -0.46 0.76 0.46 1 - 3730.78 -6510.69 -3779.04 -0.46 0.76 0.46 1 - 3788.97 -6336.54 -4010.43 -0.46 0.76 0.46 1 - 3846.91 -6162.41 -4241.54 -0.46 0.76 0.46 1 - 3479.97 -6666.17 -3770.62 -0.46 0.76 0.46 1 - 3538.03 -6491.85 -4001.86 -0.46 0.76 0.46 1 - 3595.98 -6317.71 -4232.98 -0.46 0.76 0.46 1 - 3287.10 -6647.51 -3993.31 -0.46 0.76 0.46 1 - 3345.16 -6473.19 -4224.56 -0.46 0.76 0.46 1 - 6307.00 -817.25 5522.01 -0.78 0.03 -0.63 1 - 6356.27 -529.60 5476.58 -0.78 0.03 -0.63 1 - 6405.78 -242.18 5431.27 -0.78 0.03 -0.63 1 - 6455.19 45.51 5385.64 -0.78 0.03 -0.63 1 - 6504.65 333.18 5340.35 -0.78 0.03 -0.63 1 - 6487.51 -730.81 5304.98 -0.78 0.03 -0.63 1 - 6536.97 -443.36 5259.32 -0.78 0.03 -0.63 1 - 6586.43 -155.69 5214.04 -0.78 0.03 -0.63 1 - 6635.74 131.71 5168.59 -0.78 0.03 -0.63 1 - 6668.21 -644.57 5087.73 -0.78 0.03 -0.63 1 - 6717.47 -356.92 5042.29 -0.78 0.03 -0.63 1 - 6766.79 -69.52 4996.84 -0.78 0.03 -0.63 1 - 6848.77 -558.37 4870.68 -0.78 0.03 -0.63 1 - 6898.03 -270.73 4825.24 -0.78 0.03 -0.63 1 - 4988.35 -999.61 6614.57 -0.58 0.19 -0.79 1 - 5135.93 -1203.02 6459.24 -0.58 0.19 -0.79 1 - 5283.57 -1406.07 6303.92 -0.58 0.19 -0.79 1 - 4749.45 -1077.24 6769.64 -0.58 0.19 -0.79 1 - 4897.09 -1280.66 6614.56 -0.58 0.19 -0.79 1 - 5044.73 -1483.71 6459.24 -0.58 0.19 -0.79 1 - 5192.31 -1687.12 6303.91 -0.58 0.19 -0.79 1 - 4510.60 -1154.89 6924.95 -0.58 0.19 -0.79 1 - 4658.19 -1358.29 6769.62 -0.58 0.19 -0.79 1 - 4805.88 -1561.36 6614.55 -0.58 0.19 -0.79 1 - 4953.32 -1764.56 6459.27 -0.58 0.19 -0.79 1 - 5101.11 -1967.82 6303.91 -0.58 0.19 -0.79 1 - 4419.20 -1435.74 6924.99 -0.58 0.19 -0.79 1 - 4566.98 -1638.99 6769.62 -0.58 0.19 -0.79 1 - 4714.48 -1842.21 6614.59 -0.58 0.19 -0.79 1 - 4862.26 -2045.46 6459.22 -0.58 0.19 -0.79 1 - 4328.14 -1716.64 6924.94 -0.58 0.19 -0.79 1 - 4475.58 -1919.84 6769.66 -0.58 0.19 -0.79 1 - 4623.42 -2123.11 6614.54 -0.58 0.19 -0.79 1 - 5720.34 -2013.99 5814.65 -0.69 0.23 -0.68 1 - 5629.00 -2294.86 5814.78 -0.69 0.23 -0.68 1 - 5690.51 -1538.52 6001.12 -0.69 0.23 -0.68 1 - 5599.35 -1819.39 6000.94 -0.69 0.23 -0.68 1 - 5508.02 -2100.26 6001.07 -0.69 0.23 -0.68 1 - 5478.58 -1624.86 6187.36 -0.69 0.23 -0.68 1 - 5387.24 -1905.73 6187.49 -0.69 0.23 -0.68 1 - 6335.40 -2751.59 4783.61 -0.74 0.32 -0.59 1 - 6532.68 -2658.78 4584.71 -0.74 0.32 -0.59 1 - 6030.46 -3119.08 4966.93 -0.74 0.32 -0.59 1 - 6227.87 -3026.10 4767.90 -0.74 0.32 -0.59 1 - 6425.16 -2933.29 4569.00 -0.74 0.32 -0.59 1 - 6120.43 -3300.85 4752.44 -0.74 0.32 -0.59 1 - 6317.84 -3207.87 4553.41 -0.74 0.32 -0.59 1 - 5416.16 -2851.93 5785.33 -0.59 0.34 -0.73 1 - 4699.39 -3084.76 6251.18 -0.59 0.34 -0.73 1 - 4460.62 -3162.35 6406.35 -0.59 0.34 -0.73 1 - 5292.97 -2659.65 5972.76 -0.59 0.34 -0.73 1 - 5054.04 -2737.17 6128.13 -0.59 0.34 -0.73 1 - 4815.12 -2814.96 6283.25 -0.59 0.34 -0.73 1 - 4576.20 -2892.48 6438.61 -0.59 0.34 -0.73 1 - 5169.77 -2467.37 6160.19 -0.59 0.34 -0.73 1 - 4930.85 -2545.16 6315.31 -0.59 0.34 -0.73 1 - 4691.93 -2622.68 6470.68 -0.59 0.34 -0.73 1 - 5046.72 -2275.50 6347.53 -0.59 0.34 -0.73 1 - 4807.80 -2353.02 6502.90 -0.59 0.34 -0.73 1 - 5066.47 -4092.89 5340.41 -0.65 0.43 -0.63 1 - 5195.62 -3831.02 5385.69 -0.65 0.43 -0.63 1 - 5324.61 -3569.42 5431.27 -0.65 0.43 -0.63 1 - 5453.61 -3307.74 5476.50 -0.65 0.43 -0.63 1 - 5582.91 -3046.01 5521.93 -0.65 0.43 -0.63 1 - 5290.95 -4006.96 5168.63 -0.65 0.43 -0.63 1 - 5419.95 -3745.28 5213.86 -0.65 0.43 -0.63 1 - 5548.95 -3483.68 5259.45 -0.65 0.43 -0.63 1 - 5678.10 -3222.15 5304.83 -0.65 0.43 -0.63 1 - 5515.29 -3921.22 4996.81 -0.65 0.43 -0.63 1 - 5644.44 -3659.69 5042.19 -0.65 0.43 -0.63 1 - 5773.44 -3398.09 5087.78 -0.65 0.43 -0.63 1 - 5739.77 -3835.63 4825.14 -0.65 0.43 -0.63 1 - 5868.77 -3574.03 4870.72 -0.65 0.43 -0.63 1 - 4689.37 -3567.66 5994.03 -0.59 0.42 -0.70 1 - 4928.14 -3490.07 5838.87 -0.59 0.42 -0.70 1 - 5167.06 -3412.55 5683.50 -0.59 0.42 -0.70 1 - 4799.73 -3751.62 5791.09 -0.59 0.42 -0.70 1 - 5038.66 -3674.10 5635.73 -0.59 0.42 -0.70 1 - 4909.96 -3935.45 5587.99 -0.59 0.42 -0.70 1 - 5103.11 -4368.92 5068.74 -0.64 0.53 -0.55 1 - 5481.79 -4587.87 4421.44 -0.64 0.53 -0.55 1 - 5403.76 -4432.18 4659.90 -0.64 0.53 -0.55 1 - 5325.73 -4276.49 4898.36 -0.64 0.53 -0.55 1 - 5626.66 -4339.69 4489.72 -0.64 0.53 -0.55 1 - 5548.63 -4184.00 4728.18 -0.64 0.53 -0.55 1 - 5771.24 -4091.57 4557.80 -0.64 0.53 -0.55 1 - 4705.71 -4709.28 5167.48 -0.56 0.61 -0.55 1 - 4944.64 -4631.76 5012.12 -0.56 0.61 -0.55 1 - 4540.90 -4938.37 5080.13 -0.56 0.61 -0.55 1 - 4779.82 -4860.58 4925.01 -0.56 0.61 -0.55 1 - 5018.74 -4783.06 4769.64 -0.56 0.61 -0.55 1 - 4376.08 -5167.18 4993.01 -0.56 0.61 -0.55 1 - 4615.00 -5089.66 4837.65 -0.56 0.61 -0.55 1 - 4853.92 -5011.87 4682.53 -0.56 0.61 -0.55 1 - 5092.85 -4934.35 4527.16 -0.56 0.61 -0.55 1 - 4211.26 -5396.26 4905.66 -0.56 0.61 -0.55 1 - 4450.18 -5318.48 4750.53 -0.56 0.61 -0.55 1 - 4689.10 -5240.96 4595.17 -0.56 0.61 -0.55 1 - 4927.88 -5163.37 4440.00 -0.56 0.61 -0.55 1 - 5166.95 -5085.65 4284.68 -0.56 0.61 -0.55 1 - 4285.36 -5547.56 4663.18 -0.56 0.61 -0.55 1 - 4524.29 -5469.77 4508.06 -0.56 0.61 -0.55 1 - 4763.21 -5392.25 4352.69 -0.56 0.61 -0.55 1 - 5001.98 -5314.67 4197.53 -0.56 0.61 -0.55 1 - 4359.47 -5698.85 4420.70 -0.56 0.61 -0.55 1 - 4598.39 -5621.07 4265.58 -0.56 0.61 -0.55 1 - 4837.31 -5543.55 4110.21 -0.56 0.61 -0.55 1 - 4168.41 -6239.65 3749.05 -0.53 0.72 -0.45 1 - 4220.58 -6060.38 3977.78 -0.53 0.72 -0.45 1 - 4355.02 -6245.44 3520.31 -0.53 0.72 -0.45 1 - 4407.19 -6066.17 3749.05 -0.53 0.72 -0.45 1 - 4459.35 -5886.90 3977.78 -0.53 0.72 -0.45 1 - 4593.79 -6071.96 3520.31 -0.53 0.72 -0.45 1 - 4646.24 -5892.47 3749.10 -0.53 0.72 -0.45 1 - 7852.11 -3017.02 -255.16 -0.95 0.31 0.06 1 - 7943.31 -2736.33 -255.16 -0.95 0.31 0.06 1 - 8034.55 -2455.42 -255.30 -0.95 0.31 0.06 1 - 7200.40 -4235.54 1018.61 -0.86 0.50 -0.06 1 - 7291.61 -4110.01 767.55 -0.86 0.50 -0.06 1 - 7382.80 -3984.49 516.23 -0.86 0.50 -0.06 1 - 6742.79 -4948.43 -799.66 -0.79 0.60 0.11 1 - 6847.84 -4855.97 -539.83 -0.79 0.60 0.11 1 - 6712.09 -4899.27 -1307.88 -0.79 0.60 0.11 1 - 6817.15 -4806.79 -1047.80 -0.79 0.60 0.11 1 - 6922.20 -4714.33 -787.97 -0.79 0.60 0.11 1 - 6891.72 -4665.31 -1296.18 -0.79 0.60 0.11 1 - 6996.78 -4572.83 -1036.10 -0.79 0.60 0.11 1 - 5979.53 -5915.94 -265.15 -0.75 0.66 0.06 1 - 6358.39 -5444.34 -759.48 -0.75 0.66 0.06 1 - 6267.18 -5569.87 -508.41 -0.75 0.66 0.06 1 - 6175.98 -5695.38 -257.10 -0.75 0.66 0.06 1 - 6463.71 -5349.67 -500.34 -0.75 0.66 0.06 1 - 6372.51 -5475.18 -249.02 -0.75 0.66 0.06 1 - 6568.82 -5254.85 -241.20 -0.75 0.66 0.06 1 - 5750.15 -6147.33 -290.55 -0.69 0.71 0.10 1 - 5841.35 -6021.82 -541.87 -0.69 0.71 0.10 1 - 5932.56 -5896.29 -792.93 -0.69 0.71 0.10 1 - 6023.90 -5770.56 -1044.27 -0.69 0.71 0.10 1 - 6115.10 -5645.03 -1295.33 -0.69 0.71 0.10 1 - 5629.09 -6227.05 -547.97 -0.69 0.71 0.10 1 - 5720.29 -6101.54 -799.29 -0.69 0.71 0.10 1 - 5811.63 -5975.79 -1050.37 -0.69 0.71 0.10 1 - 5902.83 -5850.28 -1301.69 -0.69 0.71 0.10 1 - 5508.03 -6306.77 -805.40 -0.69 0.71 0.10 1 - 5599.37 -6181.02 -1056.48 -0.69 0.71 0.10 1 - 5690.57 -6055.51 -1307.80 -0.69 0.71 0.10 1 - 5387.32 -6386.40 -1062.58 -0.69 0.71 0.10 1 - 5478.52 -6260.88 -1313.90 -0.69 0.71 0.10 1 - 5283.71 -6267.32 -1561.49 -0.58 0.79 0.19 1 - 5135.86 -6315.34 -1812.71 -0.58 0.79 0.19 1 - 4988.28 -6363.15 -2063.88 -0.58 0.79 0.19 1 - 5192.36 -6392.79 -1310.37 -0.58 0.79 0.19 1 - 5044.66 -6441.02 -1561.54 -0.58 0.79 0.19 1 - 4897.08 -6488.82 -1812.71 -0.58 0.79 0.19 1 - 4749.23 -6536.85 -2063.94 -0.58 0.79 0.19 1 - 5101.16 -6518.46 -1059.21 -0.58 0.79 0.19 1 - 4953.31 -6566.49 -1310.43 -0.58 0.79 0.19 1 - 4805.88 -6614.50 -1561.54 -0.58 0.79 0.19 1 - 4658.12 -6662.40 -1812.57 -0.58 0.79 0.19 1 - 4510.45 -6710.33 -2063.94 -0.58 0.79 0.19 1 - 4862.20 -6692.04 -1059.06 -0.58 0.79 0.19 1 - 4714.53 -6739.97 -1310.43 -0.58 0.79 0.19 1 - 4566.92 -6788.07 -1561.40 -0.58 0.79 0.19 1 - 4419.25 -6836.00 -1812.77 -0.58 0.79 0.19 1 - 4623.33 -6865.64 -1059.26 -0.58 0.79 0.19 1 - 4475.57 -6913.54 -1310.29 -0.58 0.79 0.19 1 - 4328.05 -6961.67 -1561.60 -0.58 0.79 0.19 1 - 4460.61 -7144.22 -36.42 -0.59 0.81 0.02 1 - 4699.57 -6970.65 -36.57 -0.59 0.81 0.02 1 - 4938.35 -6797.17 -36.56 -0.59 0.81 0.02 1 - 5177.40 -6623.47 -36.51 -0.59 0.81 0.02 1 - 5416.18 -6449.99 -36.51 -0.59 0.81 0.02 1 - 4576.33 -7052.29 -292.22 -0.59 0.81 0.02 1 - 4815.30 -6878.72 -292.37 -0.59 0.81 0.02 1 - 5054.16 -6705.11 -292.17 -0.59 0.81 0.02 1 - 5293.13 -6531.54 -292.31 -0.59 0.81 0.02 1 - 4692.06 -6960.35 -548.02 -0.59 0.81 0.02 1 - 4930.93 -6786.75 -547.82 -0.59 0.81 0.02 1 - 5169.89 -6613.18 -547.97 -0.59 0.81 0.02 1 - 4807.83 -6868.59 -803.42 -0.59 0.81 0.02 1 - 5046.80 -6695.02 -803.57 -0.59 0.81 0.02 1 - 4579.18 -7056.16 255.10 -0.59 0.81 -0.06 1 - 5167.15 -6609.60 510.40 -0.59 0.81 -0.06 1 - 4928.37 -6783.08 510.40 -0.59 0.81 -0.06 1 - 4689.41 -6956.65 510.55 -0.59 0.81 -0.06 1 - 5038.66 -6683.90 765.71 -0.59 0.81 -0.06 1 - 4799.69 -6857.47 765.85 -0.59 0.81 -0.06 1 - 4910.02 -6757.99 1020.95 -0.59 0.81 -0.06 1 - 4718.01 -6860.17 1272.50 -0.52 0.85 -0.10 1 - 4605.23 -6959.32 1018.02 -0.52 0.85 -0.10 1 - 4492.88 -7058.45 763.65 -0.52 0.85 -0.10 1 - 4380.20 -7157.48 509.38 -0.52 0.85 -0.10 1 - 4267.57 -7256.83 254.96 -0.52 0.85 -0.10 1 - 4465.97 -7014.32 1272.46 -0.52 0.85 -0.10 1 - 4353.29 -7113.34 1018.18 -0.52 0.85 -0.10 1 - 4240.93 -7212.47 763.81 -0.52 0.85 -0.10 1 - 4128.40 -7311.69 509.59 -0.52 0.85 -0.10 1 - 4214.02 -7168.33 1272.62 -0.52 0.85 -0.10 1 - 4101.48 -7267.56 1018.40 -0.52 0.85 -0.10 1 - 3989.13 -7366.69 764.03 -0.52 0.85 -0.10 1 - 3962.22 -7322.55 1272.83 -0.52 0.85 -0.10 1 - 3849.87 -7421.68 1018.47 -0.52 0.85 -0.10 1 - 7011.42 -3708.42 2812.60 -0.82 0.49 -0.30 1 - 7011.42 -3863.59 2561.54 -0.82 0.49 -0.30 1 - 7011.32 -4018.95 2310.36 -0.82 0.49 -0.30 1 - 5585.96 -4916.75 3929.72 -0.71 0.55 -0.44 1 - 6135.03 -4539.33 3521.60 -0.71 0.55 -0.44 1 - 5945.90 -4608.21 3737.65 -0.71 0.55 -0.44 1 - 5756.78 -4677.09 3953.71 -0.71 0.55 -0.44 1 - 6116.59 -4368.59 3761.85 -0.71 0.55 -0.44 1 - 5927.46 -4437.47 3977.91 -0.71 0.55 -0.44 1 - 6098.11 -4197.66 4001.81 -0.71 0.55 -0.44 1 - 5585.92 -5713.56 2640.54 -0.71 0.64 -0.29 1 - 5775.26 -5489.82 2675.31 -0.71 0.64 -0.29 1 - 5964.38 -5265.77 2710.32 -0.71 0.64 -0.29 1 - 5983.51 -4969.26 3244.69 -0.65 0.64 -0.40 1 - 5983.40 -5124.62 2993.51 -0.65 0.64 -0.40 1 - 5789.57 -5033.65 3458.04 -0.65 0.64 -0.40 1 - 5789.72 -5188.77 3206.77 -0.65 0.64 -0.40 1 - 5789.61 -5344.13 2955.59 -0.65 0.64 -0.40 1 - 5595.89 -5097.79 3671.30 -0.65 0.64 -0.40 1 - 5595.78 -5253.16 3420.12 -0.65 0.64 -0.40 1 - 5595.93 -5408.28 3168.85 -0.65 0.64 -0.40 1 - 5595.82 -5563.65 2917.67 -0.65 0.64 -0.40 1 - 5401.95 -5162.18 3884.65 -0.65 0.64 -0.40 1 - 5402.09 -5317.30 3633.38 -0.65 0.64 -0.40 1 - 5401.99 -5472.67 3382.20 -0.65 0.64 -0.40 1 - 5401.99 -5627.84 3131.14 -0.65 0.64 -0.40 1 - 5402.03 -5783.16 2879.75 -0.65 0.64 -0.40 1 - 5208.16 -5381.69 3846.73 -0.65 0.64 -0.40 1 - 5208.30 -5536.82 3595.46 -0.65 0.64 -0.40 1 - 5208.20 -5692.18 3344.28 -0.65 0.64 -0.40 1 - 5208.20 -5847.35 3093.22 -0.65 0.64 -0.40 1 - 5014.37 -5601.21 3808.81 -0.65 0.64 -0.40 1 - 5014.51 -5756.33 3557.54 -0.65 0.64 -0.40 1 - 5014.41 -5911.69 3306.36 -0.65 0.64 -0.40 1 - 5103.06 -6487.50 1640.88 -0.64 0.73 -0.22 1 - 5181.09 -6343.84 1886.78 -0.64 0.73 -0.22 1 - 5259.13 -6200.18 2132.67 -0.64 0.73 -0.22 1 - 4944.55 -6554.47 1901.15 -0.56 0.77 -0.30 1 - 4705.59 -6728.04 1901.29 -0.56 0.77 -0.30 1 - 5018.61 -6405.23 2145.11 -0.56 0.77 -0.30 1 - 4779.74 -6578.83 2144.91 -0.56 0.77 -0.30 1 - 4540.78 -6752.41 2145.05 -0.56 0.77 -0.30 1 - 5092.76 -6256.02 2388.73 -0.56 0.77 -0.30 1 - 4853.79 -6429.60 2388.87 -0.56 0.77 -0.30 1 - 4614.93 -6603.20 2388.67 -0.56 0.77 -0.30 1 - 4375.96 -6776.77 2388.81 -0.56 0.77 -0.30 1 - 5166.81 -6106.79 2632.69 -0.56 0.77 -0.30 1 - 4927.94 -6280.39 2632.49 -0.56 0.77 -0.30 1 - 4688.98 -6453.96 2632.63 -0.56 0.77 -0.30 1 - 4450.21 -6627.44 2632.63 -0.56 0.77 -0.30 1 - 4211.15 -6801.14 2632.57 -0.56 0.77 -0.30 1 - 5002.00 -6131.16 2876.45 -0.56 0.77 -0.30 1 - 4763.13 -6304.76 2876.25 -0.56 0.77 -0.30 1 - 4524.17 -6478.33 2876.39 -0.56 0.77 -0.30 1 - 4285.39 -6651.81 2876.39 -0.56 0.77 -0.30 1 - 4837.18 -6155.52 3120.21 -0.56 0.77 -0.30 1 - 4598.31 -6329.13 3120.01 -0.56 0.77 -0.30 1 - 4359.35 -6502.70 3120.15 -0.56 0.77 -0.30 1 - 4592.99 -6858.08 1640.88 -0.50 0.84 -0.22 1 - 4018.48 -7069.57 2126.19 -0.50 0.84 -0.22 1 - 4179.22 -7039.75 1880.30 -0.50 0.84 -0.22 1 - 4339.96 -7009.93 1634.40 -0.50 0.84 -0.22 1 - 3926.24 -7191.93 1873.67 -0.50 0.84 -0.22 1 - 4086.98 -7162.11 1627.78 -0.50 0.84 -0.22 1 - 3833.94 -7313.96 1621.30 -0.50 0.84 -0.22 1 - 6090.28 -547.66 -5769.33 -0.70 0.07 0.71 1 - 5891.72 -465.50 -5971.75 -0.70 0.07 0.71 1 - 5692.91 -383.57 -6174.04 -0.70 0.07 0.71 1 - 5494.15 -301.61 -6376.68 -0.70 0.07 0.71 1 - 6125.83 -833.52 -5704.73 -0.70 0.07 0.71 1 - 5927.02 -751.59 -5907.02 -0.70 0.07 0.71 1 - 5728.46 -669.43 -6109.44 -0.70 0.07 0.71 1 - 5529.85 -587.53 -6311.88 -0.70 0.07 0.71 1 - 5962.57 -1037.46 -5842.42 -0.70 0.07 0.71 1 - 5763.96 -955.55 -6044.86 -0.70 0.07 0.71 1 - 5565.40 -873.39 -6247.28 -0.70 0.07 0.71 1 - 5799.51 -1241.42 -5980.26 -0.70 0.07 0.71 1 - 5600.95 -1159.26 -6182.68 -0.70 0.07 0.71 1 - 4098.05 -1115.16 -7273.46 -0.46 0.07 0.89 1 - 4039.82 -830.25 -7325.79 -0.46 0.07 0.89 1 - 3981.98 -545.53 -7378.15 -0.46 0.07 0.89 1 - 3923.81 -260.85 -7430.40 -0.46 0.07 0.89 1 - 3865.70 24.02 -7482.95 -0.46 0.07 0.89 1 - 3846.98 -1037.87 -7408.66 -0.46 0.07 0.89 1 - 3788.81 -753.18 -7460.90 -0.46 0.07 0.89 1 - 3730.97 -468.47 -7513.26 -0.46 0.07 0.89 1 - 3672.92 -183.83 -7565.73 -0.46 0.07 0.89 1 - 3595.97 -960.80 -7543.77 -0.46 0.07 0.89 1 - 3537.92 -676.17 -7596.23 -0.46 0.07 0.89 1 - 3480.08 -391.46 -7648.59 -0.46 0.07 0.89 1 - 3345.08 -883.79 -7679.09 -0.46 0.07 0.89 1 - 3287.24 -599.08 -7731.45 -0.46 0.07 0.89 1 - 5180.98 -403.27 -6628.24 -0.58 0.11 0.80 1 - 4997.25 -609.50 -6732.86 -0.58 0.11 0.80 1 - 4813.85 -815.69 -6837.60 -0.58 0.11 0.80 1 - 4630.17 -1022.15 -6942.13 -0.58 0.11 0.80 1 - 4446.56 -1228.43 -7046.97 -0.58 0.11 0.80 1 - 5222.62 -687.16 -6558.71 -0.58 0.11 0.80 1 - 5039.15 -893.53 -6663.14 -0.58 0.11 0.80 1 - 4855.54 -1099.81 -6767.98 -0.58 0.11 0.80 1 - 4672.03 -1305.94 -6872.50 -0.58 0.11 0.80 1 - 5264.53 -971.19 -6488.99 -0.58 0.11 0.80 1 - 5080.79 -1177.41 -6593.61 -0.58 0.11 0.80 1 - 4897.27 -1383.55 -6698.13 -0.58 0.11 0.80 1 - 5306.38 -1254.98 -6419.36 -0.58 0.11 0.80 1 - 5122.65 -1461.21 -6523.98 -0.58 0.11 0.80 1 - 6402.43 -1818.30 -5149.97 -0.74 0.17 0.65 1 - 6395.36 -1535.33 -5233.63 -0.74 0.17 0.65 1 - 6388.29 -1252.13 -5316.93 -0.74 0.17 0.65 1 - 5628.75 -1559.87 -6020.06 -0.65 0.21 0.73 1 - 5424.51 -1493.63 -6222.77 -0.65 0.21 0.73 1 - 5651.59 -1836.31 -5918.78 -0.65 0.21 0.73 1 - 5447.67 -1769.97 -6121.60 -0.65 0.21 0.73 1 - 5243.42 -1703.74 -6324.31 -0.65 0.21 0.73 1 - 5470.75 -2046.34 -6020.08 -0.65 0.21 0.73 1 - 5266.51 -1980.11 -6222.79 -0.65 0.21 0.73 1 - 5732.04 -2966.96 -5400.18 -0.70 0.30 0.65 1 - 5904.22 -2742.00 -5316.89 -0.70 0.30 0.65 1 - 6076.40 -2517.04 -5233.60 -0.70 0.30 0.65 1 - 6248.41 -2291.98 -5150.16 -0.70 0.30 0.65 1 - 5712.79 -2707.17 -5539.02 -0.70 0.30 0.65 1 - 5884.97 -2482.20 -5455.73 -0.70 0.30 0.65 1 - 6057.16 -2257.24 -5372.44 -0.70 0.30 0.65 1 - 5693.87 -2447.26 -5677.97 -0.70 0.30 0.65 1 - 5866.05 -2222.30 -5594.68 -0.70 0.30 0.65 1 - 5674.62 -2187.47 -5816.81 -0.70 0.30 0.65 1 - 4319.32 -1619.81 -7047.02 -0.54 0.25 0.80 1 - 4346.66 -1894.69 -6942.14 -0.54 0.25 0.80 1 - 4373.87 -2169.45 -6837.66 -0.54 0.25 0.80 1 - 4401.15 -2444.10 -6732.85 -0.54 0.25 0.80 1 - 4428.63 -2719.01 -6628.19 -0.54 0.25 0.80 1 - 4547.30 -1689.60 -6872.54 -0.54 0.25 0.80 1 - 4574.58 -1964.25 -6767.74 -0.54 0.25 0.80 1 - 4601.78 -2239.01 -6663.26 -0.54 0.25 0.80 1 - 4629.20 -2513.69 -6558.66 -0.54 0.25 0.80 1 - 4775.21 -1759.16 -6698.14 -0.54 0.25 0.80 1 - 4802.63 -2033.84 -6593.55 -0.54 0.25 0.80 1 - 4829.83 -2308.60 -6489.07 -0.54 0.25 0.80 1 - 5003.26 -1828.75 -6523.95 -0.54 0.25 0.80 1 - 5030.46 -2103.52 -6419.47 -0.54 0.25 0.80 1 - 3113.35 -2291.72 -7482.91 -0.41 0.21 0.89 1 - 3327.72 -2095.45 -7430.40 -0.41 0.21 0.89 1 - 3542.00 -1899.29 -7378.23 -0.41 0.21 0.89 1 - 3756.31 -1702.79 -7325.79 -0.41 0.21 0.89 1 - 3970.80 -1506.55 -7273.50 -0.41 0.21 0.89 1 - 3079.50 -2010.37 -7565.70 -0.41 0.21 0.89 1 - 3293.60 -1813.95 -7513.38 -0.41 0.21 0.89 1 - 3508.10 -1617.71 -7461.09 -0.41 0.21 0.89 1 - 3722.25 -1421.53 -7408.70 -0.41 0.21 0.89 1 - 3045.39 -1728.87 -7648.68 -0.41 0.21 0.89 1 - 3259.75 -1532.60 -7596.17 -0.41 0.21 0.89 1 - 3473.91 -1336.42 -7543.78 -0.41 0.21 0.89 1 - 3011.33 -1447.61 -7731.58 -0.41 0.21 0.89 1 - 3225.70 -1251.34 -7679.07 -0.41 0.21 0.89 1 - 4622.10 -2985.46 -6376.67 -0.61 0.35 0.71 1 - 4831.03 -3035.94 -6174.10 -0.61 0.35 0.71 1 - 5040.03 -3086.40 -5971.89 -0.61 0.35 0.71 1 - 5249.10 -3136.68 -5769.28 -0.61 0.35 0.71 1 - 5458.21 -3187.25 -5566.87 -0.61 0.35 0.71 1 - 4818.94 -2775.17 -6311.96 -0.61 0.35 0.71 1 - 5027.91 -2825.32 -6109.54 -0.61 0.35 0.71 1 - 5237.02 -2875.90 -5907.13 -0.61 0.35 0.71 1 - 5445.84 -2926.26 -5704.77 -0.61 0.35 0.71 1 - 5015.83 -2564.55 -6247.40 -0.61 0.35 0.71 1 - 5224.75 -2615.03 -6044.83 -0.61 0.35 0.71 1 - 5433.58 -2665.39 -5842.46 -0.61 0.35 0.71 1 - 5212.56 -2354.14 -6182.88 -0.61 0.35 0.71 1 - 5421.49 -2404.62 -5980.31 -0.61 0.35 0.71 1 - 4138.42 -2628.41 -6840.19 -0.46 0.27 0.84 1 - 3634.41 -2197.47 -7253.20 -0.46 0.27 0.84 1 - 3873.19 -2275.05 -7098.03 -0.46 0.27 0.84 1 - 4112.17 -2352.55 -6942.75 -0.46 0.27 0.84 1 - 3847.13 -1999.46 -7200.73 -0.46 0.27 0.84 1 - 4086.11 -2076.95 -7045.45 -0.46 0.27 0.84 1 - 4059.72 -1801.42 -7148.05 -0.46 0.27 0.84 1 - 6248.44 -3581.17 -4353.36 -0.70 0.45 0.55 1 - 6076.40 -3555.48 -4591.82 -0.70 0.45 0.55 1 - 5904.22 -3529.38 -4830.27 -0.70 0.45 0.55 1 - 5732.03 -3503.28 -5068.73 -0.70 0.45 0.55 1 - 6057.28 -3795.76 -4421.44 -0.70 0.45 0.55 1 - 5885.10 -3769.66 -4659.90 -0.70 0.45 0.55 1 - 5712.92 -3743.56 -4898.35 -0.70 0.45 0.55 1 - 5866.02 -4010.24 -4489.72 -0.70 0.45 0.55 1 - 5693.84 -3984.14 -4728.17 -0.70 0.45 0.55 1 - 5674.72 -4224.42 -4557.80 -0.70 0.45 0.55 1 - 4633.20 -4062.87 -5731.47 -0.58 0.43 0.70 1 - 4842.14 -3357.38 -5994.02 -0.58 0.43 0.70 1 - 4842.13 -3608.44 -5838.86 -0.58 0.43 0.70 1 - 4842.24 -3859.63 -5683.50 -0.58 0.43 0.70 1 - 5051.20 -3405.50 -5791.08 -0.58 0.43 0.70 1 - 5051.31 -3656.68 -5635.72 -0.58 0.43 0.70 1 - 5260.09 -3453.52 -5587.98 -0.58 0.43 0.70 1 - 5458.19 -3553.72 -5340.40 -0.61 0.48 0.63 1 - 5249.04 -3757.47 -5385.68 -0.61 0.48 0.63 1 - 5040.11 -3961.00 -5431.26 -0.61 0.48 0.63 1 - 4831.11 -4164.54 -5476.50 -0.61 0.48 0.63 1 - 4622.14 -4368.39 -5521.93 -0.61 0.48 0.63 1 - 5445.83 -3793.78 -5168.62 -0.61 0.48 0.63 1 - 5236.83 -3997.32 -5213.86 -0.61 0.48 0.63 1 - 5027.90 -4200.85 -5259.44 -0.61 0.48 0.63 1 - 4819.08 -4404.49 -5304.83 -0.61 0.48 0.63 1 - 5433.62 -4033.63 -4996.80 -0.61 0.48 0.63 1 - 5224.80 -4237.27 -5042.19 -0.61 0.48 0.63 1 - 5015.87 -4440.79 -5087.77 -0.61 0.48 0.63 1 - 5421.59 -4273.58 -4825.13 -0.61 0.48 0.63 1 - 5212.66 -4477.10 -4870.72 -0.61 0.48 0.63 1 - 4386.04 -4269.77 -5785.33 -0.50 0.45 0.73 1 - 4385.93 -4018.59 -5940.69 -0.50 0.45 0.73 1 - 4385.94 -3767.52 -6095.86 -0.50 0.45 0.73 1 - 4385.98 -3516.13 -6251.17 -0.50 0.45 0.73 1 - 4385.98 -3265.07 -6406.34 -0.50 0.45 0.73 1 - 4165.10 -4212.02 -5972.76 -0.50 0.45 0.73 1 - 4165.00 -3960.84 -6128.12 -0.50 0.45 0.73 1 - 8220.39 584.29 -1738.54 -0.97 -0.01 0.25 1 - 8160.74 418.38 -1975.50 -0.97 -0.01 0.25 1 - 8101.43 252.50 -2212.33 -0.97 -0.01 0.25 1 - 8041.78 86.35 -2449.23 -0.97 -0.01 0.25 1 - 7982.37 -79.58 -2686.29 -0.97 -0.01 0.25 1 - 8229.60 289.87 -1718.80 -0.97 -0.01 0.25 1 - 8170.05 123.76 -1955.48 -0.97 -0.01 0.25 1 - 8110.64 -42.17 -2192.54 -0.97 -0.01 0.25 1 - 8051.09 -208.03 -2429.26 -0.97 -0.01 0.25 1 - 8238.91 -4.76 -1698.78 -0.97 -0.01 0.25 1 - 8179.26 -170.66 -1935.74 -0.97 -0.01 0.25 1 - 8119.71 -336.52 -2172.47 -0.97 -0.01 0.25 1 - 8248.21 -299.13 -1678.81 -0.97 -0.01 0.25 1 - 8188.57 -465.04 -1915.77 -0.97 -0.01 0.25 1 - 7409.21 -694.57 -3929.47 -0.90 0.03 0.45 1 - 7521.86 -527.50 -3713.79 -0.90 0.03 0.45 1 - 7634.37 -360.60 -3497.75 -0.90 0.03 0.45 1 - 7941.71 -461.87 -2745.39 -0.95 0.10 0.29 1 - 7920.40 -754.30 -2710.37 -0.95 0.10 0.29 1 - 7899.09 -1046.72 -2675.36 -0.95 0.10 0.29 1 - 7877.44 -1762.94 -2378.56 -0.95 0.21 0.22 1 - 7899.11 -1924.77 -2132.67 -0.95 0.21 0.22 1 - 7920.42 -2086.85 -1886.77 -0.95 0.21 0.22 1 - 7746.90 -2848.55 -1640.88 -0.90 0.39 0.22 1 - 7634.39 -2967.17 -1886.78 -0.90 0.39 0.22 1 - 7521.87 -3085.78 -2132.67 -0.90 0.39 0.22 1 - 7160.05 -3546.95 -2640.54 -0.83 0.47 0.29 1 - 7005.77 -3796.17 -2675.31 -0.83 0.47 0.29 1 - 6851.13 -4045.26 -2710.32 -0.83 0.47 0.29 1 - 6381.25 -4396.79 -3281.64 -0.74 0.50 0.44 1 - 6388.32 -4195.64 -3497.69 -0.74 0.50 0.44 1 - 6395.39 -3994.48 -3713.75 -0.74 0.50 0.44 1 - 5470.63 -4469.28 -4522.73 -0.65 0.56 0.51 1 - 5266.46 -4680.32 -4553.93 -0.65 0.56 0.51 1 - 5651.59 -4472.71 -4289.40 -0.65 0.56 0.51 1 - 5447.62 -4683.72 -4320.90 -0.65 0.56 0.51 1 - 5243.45 -4894.76 -4352.10 -0.65 0.56 0.51 1 - 5628.74 -4686.84 -4087.66 -0.65 0.56 0.51 1 - 5424.57 -4897.87 -4118.86 -0.65 0.56 0.51 1 - 5494.16 -5568.64 -3121.41 -0.70 0.61 0.39 1 - 5692.86 -5350.80 -3104.13 -0.70 0.61 0.39 1 - 5891.60 -5133.25 -3087.07 -0.70 0.61 0.39 1 - 6090.30 -4915.27 -3070.00 -0.70 0.61 0.39 1 - 6289.20 -4697.56 -3052.82 -0.70 0.61 0.39 1 - 5529.81 -5382.93 -3348.13 -0.70 0.61 0.39 1 - 5728.35 -5165.10 -3331.17 -0.70 0.61 0.39 1 - 5927.25 -4947.39 -3313.99 -0.70 0.61 0.39 1 - 6125.79 -4729.72 -3296.83 -0.70 0.61 0.39 1 - 5565.29 -5197.23 -3575.17 -0.70 0.61 0.39 1 - 5763.99 -4979.40 -3557.89 -0.70 0.61 0.39 1 - 5962.54 -4761.72 -3540.73 -0.70 0.61 0.39 1 - 5600.78 -5011.68 -3802.00 -0.70 0.61 0.39 1 - 5799.48 -4793.85 -3784.72 -0.70 0.61 0.39 1 - 5693.56 -5522.30 -2812.60 -0.72 0.63 0.30 1 - 5841.13 -5474.35 -2561.54 -0.72 0.63 0.30 1 - 5988.86 -5426.24 -2310.36 -0.72 0.63 0.30 1 - 6058.08 -5566.44 -1803.52 -0.68 0.69 0.27 1 - 5910.35 -5614.55 -2054.70 -0.68 0.69 0.27 1 - 5762.78 -5662.50 -2305.76 -0.68 0.69 0.27 1 - 5615.05 -5710.46 -2557.15 -0.68 0.69 0.27 1 - 5467.48 -5758.40 -2808.21 -0.68 0.69 0.27 1 - 5845.39 -5771.27 -1812.97 -0.68 0.69 0.27 1 - 5697.67 -5819.38 -2064.15 -0.68 0.69 0.27 1 - 5550.09 -5867.17 -2315.42 -0.68 0.69 0.27 1 - 5402.37 -5915.28 -2566.60 -0.68 0.69 0.27 1 - 5632.71 -5976.09 -1822.42 -0.68 0.69 0.27 1 - 5485.13 -6023.89 -2073.69 -0.68 0.69 0.27 1 - 5337.41 -6072.00 -2324.87 -0.68 0.69 0.27 1 - 5420.37 -6180.73 -1832.05 -0.68 0.69 0.27 1 - 5272.65 -6228.84 -2083.23 -0.68 0.69 0.27 1 - 5693.57 45.95 6197.14 -0.72 0.01 -0.70 1 - 6186.08 -276.47 5683.54 -0.72 0.01 -0.70 1 - 6038.51 -73.36 5838.71 -0.72 0.01 -0.70 1 - 5890.89 130.00 5993.90 -0.72 0.01 -0.70 1 - 6235.88 10.67 5635.83 -0.72 0.01 -0.70 1 - 6088.26 214.03 5791.01 -0.72 0.01 -0.70 1 - 6285.47 297.79 5587.95 -0.72 0.01 -0.70 1 - 7308.66 -483.30 4087.44 -0.85 0.07 -0.51 1 - 7267.41 -773.99 4118.86 -0.85 0.07 -0.51 1 - 7201.22 -296.57 4289.41 -0.85 0.07 -0.51 1 - 7160.31 -587.19 4320.78 -0.85 0.07 -0.51 1 - 7119.05 -877.89 4352.20 -0.85 0.07 -0.51 1 - 7052.97 -400.17 4522.57 -0.85 0.07 -0.51 1 - 7011.71 -690.87 4553.98 -0.85 0.07 -0.51 1 - 5467.54 -63.44 6406.28 -0.68 0.07 -0.73 1 - 5615.16 -266.80 6251.10 -0.68 0.07 -0.73 1 - 6058.07 -876.34 5785.37 -0.68 0.07 -0.73 1 - 5402.51 -349.82 6438.45 -0.68 0.07 -0.73 1 - 5550.13 -553.18 6283.27 -0.68 0.07 -0.73 1 - 5697.85 -756.25 6127.90 -0.68 0.07 -0.73 1 - 5845.48 -959.61 5972.71 -0.68 0.07 -0.73 1 - 5337.49 -636.20 6470.62 -0.68 0.07 -0.73 1 - 5485.21 -839.27 6315.25 -0.68 0.07 -0.73 1 - 5632.83 -1042.63 6160.06 -0.68 0.07 -0.73 1 - 5272.76 -922.26 6502.76 -0.68 0.07 -0.73 1 - 5420.38 -1125.62 6347.57 -0.68 0.07 -0.73 1 - 6773.45 -1974.38 4600.32 -0.79 0.17 -0.59 1 - 6668.18 -1782.97 4799.28 -0.79 0.17 -0.59 1 - 6563.03 -1591.96 4998.31 -0.79 0.17 -0.59 1 - 6457.81 -1400.72 5197.09 -0.79 0.17 -0.59 1 - 6352.75 -1209.37 5396.18 -0.79 0.17 -0.59 1 - 6847.82 -1688.88 4584.72 -0.79 0.17 -0.59 1 - 6742.59 -1497.64 4783.50 -0.79 0.17 -0.59 1 - 6637.45 -1306.63 4982.53 -0.79 0.17 -0.59 1 - 6532.44 -1115.46 5181.44 -0.79 0.17 -0.59 1 - 6922.23 -1403.55 4568.94 -0.79 0.17 -0.59 1 - 6817.22 -1212.37 4767.84 -0.79 0.17 -0.59 1 - 6712.07 -1021.37 4966.88 -0.79 0.17 -0.59 1 - 6996.86 -1118.29 4553.29 -0.79 0.17 -0.59 1 - 6891.71 -927.28 4752.32 -0.79 0.17 -0.59 1 - 6115.15 -1365.98 5628.27 -0.69 0.23 -0.68 1 - 6023.81 -1646.85 5628.40 -0.69 0.23 -0.68 1 - 5932.61 -1927.55 5628.40 -0.69 0.23 -0.68 1 - 5841.32 -2208.59 5628.35 -0.69 0.23 -0.68 1 - 5750.12 -2489.29 5628.35 -0.69 0.23 -0.68 1 - 5902.83 -1452.25 5814.70 -0.69 0.23 -0.68 1 - 5811.49 -1733.12 5814.83 -0.69 0.23 -0.68 1 - 6253.24 -1566.14 5409.95 -0.75 0.24 -0.62 1 - 6175.90 -2317.15 5209.20 -0.75 0.24 -0.62 1 - 6267.10 -2036.45 5209.20 -0.75 0.24 -0.62 1 - 6358.44 -1755.58 5209.07 -0.75 0.24 -0.62 1 - 6372.46 -2225.80 5008.63 -0.75 0.24 -0.62 1 - 6463.79 -1944.92 5008.50 -0.75 0.24 -0.62 1 - 6568.80 -2134.37 4807.94 -0.75 0.24 -0.62 1 - 5850.34 -2755.55 5396.23 -0.74 0.32 -0.59 1 - 6047.76 -2662.56 5197.20 -0.74 0.32 -0.59 1 - 6245.25 -2569.82 4998.42 -0.74 0.32 -0.59 1 - 6442.71 -2477.01 4799.21 -0.74 0.32 -0.59 1 - 6640.34 -2384.10 4600.30 -0.74 0.32 -0.59 1 - 5940.44 -2937.14 5181.60 -0.74 0.32 -0.59 1 - 6137.77 -2844.50 4982.52 -0.74 0.32 -0.59 1 - 5941.06 -3821.79 4522.73 -0.73 0.45 -0.51 1 - 6078.67 -3562.40 4553.93 -0.73 0.45 -0.51 1 - 6000.23 -3992.84 4289.40 -0.73 0.45 -0.51 1 - 6137.89 -3733.65 4320.90 -0.73 0.45 -0.51 1 - 6275.51 -3474.26 4352.10 -0.73 0.45 -0.51 1 - 6196.82 -3904.94 4087.66 -0.73 0.45 -0.51 1 - 6334.44 -3645.55 4118.86 -0.73 0.45 -0.51 1 - 8417.36 61.82 -291.38 -0.99 -0.02 0.11 1 - 8386.48 198.41 -551.57 -0.99 -0.02 0.11 1 - 8355.84 335.14 -811.41 -0.99 -0.02 0.11 1 - 8324.95 471.63 -1071.37 -0.99 -0.02 0.11 1 - 8294.32 608.22 -1331.54 -0.99 -0.02 0.11 1 - 8394.28 -96.47 -539.77 -0.99 -0.02 0.11 1 - 8363.38 40.02 -799.72 -0.99 -0.02 0.11 1 - 8332.75 176.75 -1059.57 -0.99 -0.02 0.11 1 - 8302.11 313.23 -1319.51 -0.99 -0.02 0.11 1 - 8371.18 -254.86 -787.92 -0.99 -0.02 0.11 1 - 8340.54 -118.38 -1047.87 -0.99 -0.02 0.11 1 - 8309.91 18.34 -1307.71 -0.99 -0.02 0.11 1 - 8348.34 -413.26 -1036.07 -0.99 -0.02 0.11 1 - 8317.70 -276.54 -1295.92 -0.99 -0.02 0.11 1 - 8248.37 -576.13 -1418.68 -0.98 0.11 0.17 1 - 8188.81 -728.29 -1664.63 -0.98 0.11 0.17 1 - 8278.29 -717.58 -1161.16 -0.98 0.11 0.17 1 - 8218.73 -869.74 -1407.12 -0.98 0.11 0.17 1 - 8158.94 -1021.63 -1653.03 -0.98 0.11 0.17 1 - 8248.33 -1011.21 -1149.73 -0.98 0.11 0.17 1 - 8188.77 -1163.37 -1395.69 -0.98 0.11 0.17 1 - 8169.99 -1804.60 -763.81 -0.97 0.23 0.10 1 - 8229.58 -1666.91 -509.59 -0.97 0.23 0.10 1 - 8119.69 -1792.64 -1272.62 -0.97 0.23 0.10 1 - 8179.28 -1654.95 -1018.40 -0.97 0.23 0.10 1 - 8238.85 -1517.46 -764.03 -0.97 0.23 0.10 1 - 8188.55 -1505.51 -1272.83 -0.97 0.23 0.10 1 - 8248.11 -1368.02 -1018.47 -0.97 0.23 0.10 1 - 7718.03 -3362.41 -254.90 -0.92 0.38 0.10 1 - 7750.74 -3215.91 -509.26 -0.92 0.38 0.10 1 - 7783.66 -3069.70 -763.54 -0.92 0.38 0.10 1 - 7816.28 -2923.33 -1018.10 -0.92 0.38 0.10 1 - 7849.22 -2776.91 -1272.52 -0.92 0.38 0.10 1 - 7637.71 -3488.63 -509.41 -0.92 0.38 0.10 1 - 7670.30 -3342.47 -763.83 -0.92 0.38 0.10 1 - 7703.25 -3196.05 -1018.25 -0.92 0.38 0.10 1 - 7735.93 -3049.75 -1272.46 -0.92 0.38 0.10 1 - 7557.27 -3615.19 -763.97 -0.92 0.38 0.10 1 - 7589.98 -3468.69 -1018.34 -0.92 0.38 0.10 1 - 7622.66 -3322.40 -1272.55 -0.92 0.38 0.10 1 - 7476.92 -3741.61 -1018.34 -0.92 0.38 0.10 1 - 7509.63 -3595.12 -1272.70 -0.92 0.38 0.10 1 - 7308.60 -3872.24 -1395.85 -0.85 0.49 0.17 1 - 7201.22 -3969.20 -1653.03 -0.85 0.49 0.17 1 - 7267.47 -4030.17 -1149.76 -0.85 0.49 0.17 1 - 7160.24 -4127.34 -1407.19 -0.85 0.49 0.17 1 - 7052.81 -4224.23 -1664.71 -0.85 0.49 0.17 1 - 7119.11 -4285.27 -1161.10 -0.85 0.49 0.17 1 - 7011.68 -4382.16 -1418.62 -0.85 0.49 0.17 1 - 6979.24 -4714.40 -75.01 -0.87 0.50 0.03 1 - 7126.94 -4458.55 -69.20 -0.87 0.50 0.03 1 - 7274.71 -4203.05 -63.12 -0.87 0.50 0.03 1 - 7422.26 -3947.41 -57.29 -0.87 0.50 0.03 1 - 7570.16 -3691.72 -51.48 -0.87 0.50 0.03 1 - 7049.53 -4578.37 -327.67 -0.87 0.50 0.03 1 - 7197.08 -4322.72 -321.84 -0.87 0.50 0.03 1 - 7344.85 -4067.22 -315.76 -0.87 0.50 0.03 1 - 7492.59 -3811.73 -309.94 -0.87 0.50 0.03 1 - 7119.67 -4442.53 -580.32 -0.87 0.50 0.03 1 - 7267.42 -4187.04 -574.50 -0.87 0.50 0.03 1 - 7415.19 -3931.54 -568.42 -0.87 0.50 0.03 1 - 7190.01 -4306.86 -832.97 -0.87 0.50 0.03 1 - 7337.78 -4051.36 -826.90 -0.87 0.50 0.03 1 - 6352.69 -5367.43 -1331.50 -0.79 0.60 0.11 1 - 6457.75 -5274.94 -1071.42 -0.79 0.60 0.11 1 - 6563.01 -5182.62 -811.59 -0.79 0.60 0.11 1 - 6668.21 -5089.93 -551.53 -0.79 0.60 0.11 1 - 6773.49 -4997.59 -291.44 -0.79 0.60 0.11 1 - 6532.32 -5133.44 -1319.55 -0.79 0.60 0.11 1 - 6637.52 -5040.77 -1059.74 -0.79 0.60 0.11 1 - 6640.35 -5180.83 75.01 -0.74 0.67 -0.03 1 - 6442.67 -5400.37 69.20 -0.74 0.67 -0.03 1 - 6245.34 -5619.86 63.12 -0.74 0.67 -0.03 1 - 6047.80 -5839.18 57.29 -0.74 0.67 -0.03 1 - 5850.33 -6058.86 51.48 -0.74 0.67 -0.03 1 - 6532.70 -5289.73 327.67 -0.74 0.67 -0.03 1 - 6335.16 -5509.05 321.84 -0.74 0.67 -0.03 1 - 6137.83 -5728.54 315.76 -0.74 0.67 -0.03 1 - 5940.50 -5948.01 309.94 -0.74 0.67 -0.03 1 - 6425.19 -5398.41 580.32 -0.74 0.67 -0.03 1 - 6227.86 -5617.88 574.50 -0.74 0.67 -0.03 1 - 6030.53 -5837.36 568.42 -0.74 0.67 -0.03 1 - 6317.89 -5507.23 832.97 -0.74 0.67 -0.03 1 - 6120.56 -5726.72 826.90 -0.74 0.67 -0.03 1 - 5582.84 -6301.26 254.90 -0.65 0.76 -0.10 1 - 5453.62 -6377.64 509.26 -0.65 0.76 -0.10 1 - 5324.73 -6454.12 763.54 -0.65 0.76 -0.10 1 - 5195.61 -6530.37 1018.10 -0.65 0.76 -0.10 1 - 5066.53 -6606.96 1272.52 -0.65 0.76 -0.10 1 - 5678.06 -6185.86 509.41 -0.65 0.76 -0.10 1 - 5549.12 -6262.02 763.83 -0.65 0.76 -0.10 1 - 5420.05 -6338.60 1018.25 -0.65 0.76 -0.10 1 - 5291.02 -6414.89 1272.46 -0.65 0.76 -0.10 1 - 5773.56 -6070.25 763.97 -0.65 0.76 -0.10 1 - 5644.35 -6146.63 1018.34 -0.65 0.76 -0.10 1 - 5515.31 -6222.92 1272.55 -0.65 0.76 -0.10 1 - 5868.97 -5954.77 1018.34 -0.65 0.76 -0.10 1 - 5739.76 -6031.15 1272.70 -0.65 0.76 -0.10 1 - 7746.88 193.70 3281.70 -0.90 -0.03 -0.45 1 - 7406.41 400.24 3953.81 -0.90 -0.03 -0.45 1 - 7518.92 233.34 3737.76 -0.90 -0.03 -0.45 1 - 7631.43 66.45 3521.71 -0.90 -0.03 -0.45 1 - 7403.70 105.86 3977.91 -0.90 -0.03 -0.45 1 - 7516.21 -61.03 3761.86 -0.90 -0.03 -0.45 1 - 7400.76 -188.28 4001.88 -0.90 -0.03 -0.45 1 - 7849.25 -103.69 3052.74 -0.92 0.08 -0.39 1 - 7816.30 -396.82 3069.96 -0.92 0.08 -0.39 1 - 7783.67 -689.72 3087.01 -0.92 0.08 -0.39 1 - 7750.72 -982.60 3104.18 -0.92 0.08 -0.39 1 - 7717.99 -1275.71 3121.51 -0.92 0.08 -0.39 1 - 7735.95 -225.74 3296.76 -0.92 0.08 -0.39 1 - 7703.00 -518.62 3313.94 -0.92 0.08 -0.39 1 - 7670.37 -811.53 3330.98 -0.92 0.08 -0.39 1 - 7637.65 -1104.40 3348.26 -0.92 0.08 -0.39 1 - 7622.65 -347.55 3540.74 -0.92 0.08 -0.39 1 - 7589.93 -640.41 3558.01 -0.92 0.08 -0.39 1 - 7557.31 -933.32 3575.05 -0.92 0.08 -0.39 1 - 7509.59 -469.34 3784.81 -0.92 0.08 -0.39 1 - 7476.96 -762.25 3801.85 -0.92 0.08 -0.39 1 - 7570.16 -1605.03 3324.93 -0.87 0.20 -0.46 1 - 7422.32 -1714.12 3556.17 -0.87 0.20 -0.46 1 - 7274.81 -1823.10 3787.44 -0.87 0.20 -0.46 1 - 7126.90 -1932.01 4018.85 -0.87 0.20 -0.46 1 - 6979.25 -2041.16 4250.23 -0.87 0.20 -0.46 1 - 7492.68 -1427.54 3547.75 -0.87 0.20 -0.46 1 - 7344.91 -1536.28 3779.04 -0.87 0.20 -0.46 1 - 7197.26 -1645.43 4010.43 -0.87 0.20 -0.46 1 - 7049.55 -1754.35 4241.54 -0.87 0.20 -0.46 1 - 7415.27 -1249.69 3770.62 -0.87 0.20 -0.46 1 - 7267.42 -1358.78 4001.86 -0.87 0.20 -0.46 1 - 7119.71 -1467.70 4232.98 -0.87 0.20 -0.46 1 - 7337.92 -1072.03 3993.31 -0.87 0.20 -0.46 1 - 7190.07 -1181.11 4224.56 -0.87 0.20 -0.46 1 - 7200.45 -2805.23 3332.78 -0.86 0.28 -0.42 1 - 7325.21 -2069.62 3564.34 -0.86 0.28 -0.42 1 - 7234.01 -2350.32 3564.34 -0.86 0.28 -0.42 1 - 7142.66 -2631.18 3564.46 -0.86 0.28 -0.42 1 - 7176.48 -2176.52 3795.99 -0.86 0.28 -0.42 1 - 7085.14 -2457.38 3796.11 -0.86 0.28 -0.42 1 - 7027.56 -2283.35 4027.50 -0.86 0.28 -0.42 1 - 7958.45 -1964.67 1561.47 -0.93 0.30 -0.19 1 - 7958.34 -2120.09 1310.22 -0.93 0.30 -0.19 1 - 7958.30 -2275.16 1059.02 -0.93 0.30 -0.19 1 - 7867.09 -2090.24 1812.53 -0.93 0.30 -0.19 1 - 7867.17 -2245.72 1561.43 -0.93 0.30 -0.19 1 - 6846.14 -2450.88 4250.21 -0.82 0.35 -0.46 1 - 6901.44 -2626.06 4018.78 -0.82 0.35 -0.46 1 - 6957.02 -2800.96 3787.53 -0.82 0.35 -0.46 1 - 7012.25 -2975.96 3556.27 -0.82 0.35 -0.46 1 - 7067.75 -3151.21 3324.98 -0.82 0.35 -0.46 1 - 6734.42 -2724.25 4241.54 -0.82 0.35 -0.46 1 - 6789.65 -2899.25 4010.27 -0.82 0.35 -0.46 1 - 6845.23 -3074.15 3779.03 -0.82 0.35 -0.46 1 - 6900.67 -3249.21 3547.91 -0.82 0.35 -0.46 1 - 6622.63 -2997.44 4233.03 -0.82 0.35 -0.46 1 - 6678.07 -3172.50 4001.91 -0.82 0.35 -0.46 1 - 6733.65 -3347.40 3770.67 -0.82 0.35 -0.46 1 - 6511.05 -3270.69 4224.67 -0.82 0.35 -0.46 1 - 6566.63 -3445.59 3993.42 -0.82 0.35 -0.46 1 - 6993.87 -3504.46 3121.41 -0.79 0.48 -0.39 1 - 6848.10 -3760.75 3104.13 -0.79 0.48 -0.39 1 - 6702.62 -4017.00 3087.07 -0.79 0.48 -0.39 1 - 6556.70 -4273.33 3070.00 -0.79 0.48 -0.39 1 - 6411.11 -4529.77 3052.82 -0.79 0.48 -0.39 1 - 6828.27 -3595.75 3348.13 -0.79 0.48 -0.39 1 - 6682.46 -3851.89 3331.17 -0.79 0.48 -0.39 1 - 6536.87 -4108.33 3313.99 -0.79 0.48 -0.39 1 - 6391.20 -4364.42 3296.83 -0.79 0.48 -0.39 1 - 6662.63 -3686.88 3575.17 -0.79 0.48 -0.39 1 - 6516.86 -3943.17 3557.89 -0.79 0.48 -0.39 1 - 6371.19 -4199.26 3540.73 -0.79 0.48 -0.39 1 - 6497.13 -3777.97 3802.00 -0.79 0.48 -0.39 1 - 6351.36 -4034.26 3784.72 -0.79 0.48 -0.39 1 - 7011.46 -4174.08 2059.09 -0.82 0.49 -0.30 1 - 6863.91 -3963.73 2796.85 -0.82 0.49 -0.30 1 - 6863.91 -4118.89 2545.78 -0.82 0.49 -0.30 1 - 6863.80 -4274.26 2294.60 -0.82 0.49 -0.30 1 - 6716.57 -4219.18 2781.18 -0.82 0.49 -0.30 1 - 6716.47 -4374.55 2530.00 -0.82 0.49 -0.30 1 - 6569.05 -4474.48 2765.43 -0.82 0.49 -0.30 1 - 6153.50 -5041.72 2745.32 -0.71 0.64 -0.29 1 - 5756.66 -5628.11 2415.20 -0.71 0.64 -0.29 1 - 5945.78 -5404.06 2450.21 -0.71 0.64 -0.29 1 - 6134.90 -5180.01 2485.21 -0.71 0.64 -0.29 1 - 5927.50 -5542.45 2189.99 -0.71 0.64 -0.29 1 - 6116.62 -5318.40 2224.99 -0.71 0.64 -0.29 1 - 6098.01 -5456.69 1964.88 -0.71 0.64 -0.29 1 - 5337.02 -6056.32 2378.51 -0.64 0.73 -0.22 1 - 5325.71 -6293.80 1634.22 -0.64 0.73 -0.22 1 - 5403.75 -6150.14 1880.12 -0.64 0.73 -0.22 1 - 5481.78 -6006.48 2126.01 -0.64 0.73 -0.22 1 - 5548.60 -6100.18 1627.82 -0.64 0.73 -0.22 1 - 5626.64 -5956.52 1873.72 -0.64 0.73 -0.22 1 - 5771.25 -5906.48 1621.16 -0.64 0.73 -0.22 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 5693.57 -45.95 -6197.13 -0.72 -0.01 0.70 1 - 6186.08 276.47 -5683.54 -0.72 -0.01 0.70 1 - 6038.51 73.36 -5838.70 -0.72 -0.01 0.70 1 - 5890.89 -130.00 -5993.89 -0.72 -0.01 0.70 1 - 6235.88 -10.67 -5635.82 -0.72 -0.01 0.70 1 - 6088.26 -214.03 -5791.00 -0.72 -0.01 0.70 1 - 6285.47 -297.79 -5587.94 -0.72 -0.01 0.70 1 - 4176.42 -73.25 -7305.85 -0.53 0.05 0.84 1 - 4709.73 -513.71 -6942.71 -0.53 0.05 0.84 1 - 4470.96 -436.13 -7097.87 -0.53 0.05 0.84 1 - 4231.97 -358.63 -7253.14 -0.53 0.05 0.84 1 - 4526.57 -721.32 -7045.46 -0.53 0.05 0.84 1 - 4287.58 -643.83 -7200.73 -0.53 0.05 0.84 1 - 4343.29 -928.89 -7148.00 -0.53 0.05 0.84 1 - 6289.24 -629.64 -5566.84 -0.70 0.07 0.71 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 6213.02 -1167.91 -5538.94 -0.74 0.17 0.65 1 - 6307.00 817.25 -5522.01 -0.78 -0.03 0.63 1 - 6356.27 529.60 -5476.57 -0.78 -0.03 0.63 1 - 6405.78 242.18 -5431.27 -0.78 -0.03 0.63 1 - 6455.19 -45.51 -5385.63 -0.78 -0.03 0.63 1 - 6504.65 -333.18 -5340.34 -0.78 -0.03 0.63 1 - 6487.51 730.81 -5304.98 -0.78 -0.03 0.63 1 - 6536.97 443.36 -5259.32 -0.78 -0.03 0.63 1 - 6586.43 155.69 -5214.04 -0.78 -0.03 0.63 1 - 6635.74 -131.71 -5168.58 -0.78 -0.03 0.63 1 - 6668.21 644.57 -5087.73 -0.78 -0.03 0.63 1 - 6717.47 356.92 -5042.29 -0.78 -0.03 0.63 1 - 6766.79 69.52 -4996.83 -0.78 -0.03 0.63 1 - 6848.77 558.37 -4870.68 -0.78 -0.03 0.63 1 - 6898.03 270.73 -4825.24 -0.78 -0.03 0.63 1 - 7160.19 -775.28 -4353.23 -0.83 0.05 0.55 1 - 6822.16 -329.28 -4898.49 -0.83 0.05 0.55 1 - 6976.81 -409.36 -4660.03 -0.83 0.05 0.55 1 - 7131.46 -489.45 -4421.57 -0.83 0.05 0.55 1 - 6948.22 -123.58 -4728.17 -0.83 0.05 0.55 1 - 7102.87 -203.66 -4489.71 -0.83 0.05 0.55 1 - 7073.94 82.19 -4557.89 -0.83 0.05 0.55 1 - 6722.66 -840.77 -5012.26 -0.81 0.17 0.55 1 - 6575.03 -1044.13 -5167.45 -0.81 0.17 0.55 1 - 6871.60 -919.78 -4769.68 -0.81 0.17 0.55 1 - 6723.88 -1122.85 -4925.05 -0.81 0.17 0.55 1 - 6576.25 -1326.21 -5080.23 -0.81 0.17 0.55 1 - 7020.44 -998.50 -4527.28 -0.81 0.17 0.55 1 - 6872.82 -1201.86 -4682.46 -0.81 0.17 0.55 1 - 6725.10 -1404.93 -4837.83 -0.81 0.17 0.55 1 - 6577.48 -1608.29 -4993.01 -0.81 0.17 0.55 1 - 7169.38 -1077.51 -4284.69 -0.81 0.17 0.55 1 - 7021.66 -1280.58 -4440.06 -0.81 0.17 0.55 1 - 6874.04 -1483.94 -4595.24 -0.81 0.17 0.55 1 - 6726.47 -1687.05 -4750.41 -0.81 0.17 0.55 1 - 6578.70 -1890.37 -4905.80 -0.81 0.17 0.55 1 - 7170.60 -1359.59 -4197.47 -0.81 0.17 0.55 1 - 7022.88 -1562.66 -4352.84 -0.81 0.17 0.55 1 - 6875.26 -1766.02 -4508.03 -0.81 0.17 0.55 1 - 6727.69 -1969.13 -4663.19 -0.81 0.17 0.55 1 - 7171.82 -1641.67 -4110.26 -0.81 0.17 0.55 1 - 7024.10 -1844.74 -4265.63 -0.81 0.17 0.55 1 - 6876.48 -2048.10 -4420.81 -0.81 0.17 0.55 1 - 6381.21 -968.93 -5400.22 -0.74 0.17 0.65 1 - 6227.16 -1734.31 -5372.35 -0.74 0.17 0.65 1 - 6220.09 -1451.11 -5455.65 -0.74 0.17 0.65 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 6051.94 -1650.08 -5594.72 -0.74 0.17 0.65 1 - 6044.87 -1366.88 -5678.01 -0.74 0.17 0.65 1 - 5876.67 -1565.86 -5816.73 -0.74 0.17 0.65 1 - 5932.93 -3020.15 -5167.47 -0.76 0.34 0.55 1 - 5933.04 -3271.34 -5012.11 -0.76 0.34 0.55 1 - 6099.87 -2792.61 -5080.12 -0.76 0.34 0.55 1 - 6099.72 -3043.88 -4925.00 -0.76 0.34 0.55 1 - 6099.83 -3295.06 -4769.63 -0.76 0.34 0.55 1 - 6266.55 -2565.15 -4993.00 -0.76 0.34 0.55 1 - 6266.66 -2816.34 -4837.64 -0.76 0.34 0.55 1 - 6266.51 -3067.60 -4682.52 -0.76 0.34 0.55 1 - 6266.62 -3318.79 -4527.16 -0.76 0.34 0.55 1 - 6433.49 -2337.61 -4905.65 -0.76 0.34 0.55 1 - 6433.34 -2588.88 -4750.53 -0.76 0.34 0.55 1 - 6433.45 -2840.06 -4595.16 -0.76 0.34 0.55 1 - 6433.45 -3091.13 -4440.00 -0.76 0.34 0.55 1 - 6433.41 -3342.52 -4284.68 -0.76 0.34 0.55 1 - 6600.28 -2361.34 -4663.17 -0.76 0.34 0.55 1 - 6600.13 -2612.61 -4508.05 -0.76 0.34 0.55 1 - 6600.24 -2863.79 -4352.69 -0.76 0.34 0.55 1 - 6600.24 -3114.86 -4197.52 -0.76 0.34 0.55 1 - 6767.07 -2385.07 -4420.69 -0.76 0.34 0.55 1 - 6766.92 -2636.33 -4265.57 -0.76 0.34 0.55 1 - 6767.03 -2887.52 -4110.21 -0.76 0.34 0.55 1 - 7308.66 483.30 -4087.45 -0.85 -0.07 0.51 1 - 7267.41 773.99 -4118.86 -0.85 -0.07 0.51 1 - 7201.22 296.57 -4289.41 -0.85 -0.07 0.51 1 - 7160.31 587.19 -4320.78 -0.85 -0.07 0.51 1 - 7119.05 877.89 -4352.20 -0.85 -0.07 0.51 1 - 7052.97 400.17 -4522.56 -0.85 -0.07 0.51 1 - 7011.71 690.87 -4553.98 -0.85 -0.07 0.51 1 - 7746.88 -193.71 -3281.70 -0.90 0.03 0.45 1 - 7406.41 -400.25 -3953.81 -0.90 0.03 0.45 1 - 7518.92 -233.35 -3737.76 -0.90 0.03 0.45 1 - 7631.43 -66.46 -3521.71 -0.90 0.03 0.45 1 - 7403.70 -105.87 -3977.91 -0.90 0.03 0.45 1 - 7516.21 61.02 -3761.86 -0.90 0.03 0.45 1 - 7400.76 188.27 -4001.88 -0.90 0.03 0.45 1 - 7877.55 -1339.13 -2640.25 -0.95 0.10 0.29 1 - 8007.98 -584.52 -2485.19 -0.95 0.10 0.29 1 - 7986.67 -876.95 -2450.18 -0.95 0.10 0.29 1 - 7965.37 -1169.38 -2415.16 -0.95 0.10 0.29 1 - 8074.49 -707.45 -2225.04 -0.95 0.10 0.29 1 - 8053.19 -999.87 -2190.02 -0.95 0.10 0.29 1 - 8140.77 -830.10 -1964.84 -0.95 0.10 0.29 1 - 7852.84 -628.77 -2993.56 -0.91 0.14 0.40 1 - 7761.54 -503.28 -3244.86 -0.91 0.14 0.40 1 - 7825.03 -920.43 -2955.75 -0.91 0.14 0.40 1 - 7733.83 -794.65 -3206.86 -0.91 0.14 0.40 1 - 7642.53 -669.17 -3458.15 -0.91 0.14 0.40 1 - 7797.32 -1211.81 -2917.75 -0.91 0.14 0.40 1 - 7706.02 -1086.32 -3169.04 -0.91 0.14 0.40 1 - 7614.81 -960.54 -3420.15 -0.91 0.14 0.40 1 - 7523.51 -835.05 -3671.44 -0.91 0.14 0.40 1 - 7769.51 -1503.48 -2879.93 -0.91 0.14 0.40 1 - 7678.30 -1377.69 -3131.04 -0.91 0.14 0.40 1 - 7587.00 -1252.21 -3382.33 -0.91 0.14 0.40 1 - 7495.80 -1126.67 -3633.39 -0.91 0.14 0.40 1 - 7404.50 -1000.94 -3884.74 -0.91 0.14 0.40 1 - 7650.49 -1669.36 -3093.22 -0.91 0.14 0.40 1 - 7559.29 -1543.58 -3344.33 -0.91 0.14 0.40 1 - 7467.99 -1418.09 -3595.63 -0.91 0.14 0.40 1 - 7376.78 -1292.56 -3846.69 -0.91 0.14 0.40 1 - 7531.48 -1835.25 -3306.52 -0.91 0.14 0.40 1 - 7440.27 -1709.47 -3557.63 -0.91 0.14 0.40 1 - 7348.97 -1583.98 -3808.92 -0.91 0.14 0.40 1 - 7941.73 -2248.94 -1640.88 -0.95 0.21 0.22 1 - 7965.34 -1637.19 -2126.19 -0.95 0.21 0.22 1 - 7986.65 -1799.28 -1880.30 -0.95 0.21 0.22 1 - 8007.96 -1961.36 -1634.40 -0.95 0.21 0.22 1 - 8053.20 -1511.65 -1873.67 -0.95 0.21 0.22 1 - 8074.51 -1673.74 -1627.78 -0.95 0.21 0.22 1 - 8140.74 -1386.16 -1621.30 -0.95 0.21 0.22 1 - 7222.36 -2036.25 -3749.05 -0.85 0.28 0.45 1 - 7067.98 -2141.26 -3977.78 -0.85 0.28 0.45 1 - 7285.53 -2211.93 -3520.31 -0.85 0.28 0.45 1 - 7131.16 -2316.95 -3749.05 -0.85 0.28 0.45 1 - 6976.78 -2421.96 -3977.78 -0.85 0.28 0.45 1 - 7194.33 -2492.63 -3520.31 -0.85 0.28 0.45 1 - 7039.83 -2597.98 -3749.10 -0.85 0.28 0.45 1 - 7761.61 -2677.12 -1901.15 -0.91 0.29 0.30 1 - 7852.85 -2396.22 -1901.29 -0.91 0.29 0.30 1 - 7642.56 -2793.67 -2145.11 -0.91 0.29 0.30 1 - 7733.85 -2512.84 -2144.91 -0.91 0.29 0.30 1 - 7825.09 -2231.94 -2145.05 -0.91 0.29 0.30 1 - 7523.57 -2910.29 -2388.73 -0.91 0.29 0.30 1 - 7614.81 -2629.39 -2388.87 -0.91 0.29 0.30 1 - 7706.10 -2348.56 -2388.67 -0.91 0.29 0.30 1 - 7797.34 -2067.66 -2388.81 -0.91 0.29 0.30 1 - 7404.52 -3026.84 -2632.69 -0.91 0.29 0.30 1 - 7495.81 -2746.01 -2632.49 -0.91 0.29 0.30 1 - 7587.05 -2465.11 -2632.63 -0.91 0.29 0.30 1 - 7678.25 -2184.41 -2632.63 -0.91 0.29 0.30 1 - 7769.58 -1903.38 -2632.57 -0.91 0.29 0.30 1 - 7376.77 -2862.56 -2876.45 -0.91 0.29 0.30 1 - 7468.06 -2581.74 -2876.25 -0.91 0.29 0.30 1 - 7559.30 -2300.83 -2876.39 -0.91 0.29 0.30 1 - 7650.50 -2020.14 -2876.39 -0.91 0.29 0.30 1 - 7349.01 -2698.28 -3120.21 -0.91 0.29 0.30 1 - 7440.30 -2417.46 -3120.01 -0.91 0.29 0.30 1 - 7531.54 -2136.55 -3120.15 -0.91 0.29 0.30 1 - 7409.12 -3204.31 -2378.51 -0.90 0.39 0.22 1 - 7631.48 -3120.17 -1634.22 -0.90 0.39 0.22 1 - 7518.97 -3238.78 -1880.12 -0.90 0.39 0.22 1 - 7406.46 -3357.39 -2126.01 -0.90 0.39 0.22 1 - 7516.21 -3391.98 -1627.82 -0.90 0.39 0.22 1 - 7403.70 -3510.60 -1873.72 -0.90 0.39 0.22 1 - 7400.79 -3663.60 -1621.16 -0.90 0.39 0.22 1 - 6575.04 -4155.08 -3244.69 -0.81 0.42 0.40 1 - 6722.77 -4106.97 -2993.51 -0.81 0.42 0.40 1 - 6576.35 -3950.74 -3458.04 -0.81 0.42 0.40 1 - 6723.93 -3902.94 -3206.77 -0.81 0.42 0.40 1 - 6871.65 -3854.83 -2955.59 -0.81 0.42 0.40 1 - 6577.51 -3746.71 -3671.30 -0.81 0.42 0.40 1 - 6725.23 -3698.60 -3420.12 -0.81 0.42 0.40 1 - 6872.81 -3650.80 -3168.85 -0.81 0.42 0.40 1 - 7020.53 -3602.69 -2917.67 -0.81 0.42 0.40 1 - 6578.82 -3542.36 -3884.65 -0.81 0.42 0.40 1 - 6726.39 -3494.57 -3633.38 -0.81 0.42 0.40 1 - 6874.12 -3446.46 -3382.20 -0.81 0.42 0.40 1 - -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 - 7169.42 -3350.56 -2879.75 -0.81 0.42 0.40 1 - 6727.70 -3290.23 -3846.73 -0.81 0.42 0.40 1 - 6875.27 -3242.43 -3595.46 -0.81 0.42 0.40 1 - 7023.00 -3194.32 -3344.28 -0.81 0.42 0.40 1 - 7170.57 -3146.38 -3093.22 -0.81 0.42 0.40 1 - 6876.58 -3038.09 -3808.81 -0.81 0.42 0.40 1 - 7024.15 -2990.29 -3557.54 -0.81 0.42 0.40 1 - 7171.88 -2942.19 -3306.36 -0.81 0.42 0.40 1 - 6696.49 -4294.36 -2745.32 -0.83 0.47 0.29 1 - 7131.54 -3735.74 -2415.20 -0.83 0.47 0.29 1 - 6976.90 -3984.83 -2450.21 -0.83 0.47 0.29 1 - 6822.26 -4233.93 -2485.21 -0.83 0.47 0.29 1 - 7102.87 -3924.68 -2189.99 -0.83 0.47 0.29 1 - 6948.23 -4173.78 -2224.99 -0.83 0.47 0.29 1 - 7074.00 -4113.35 -1964.88 -0.83 0.47 0.29 1 - 6402.26 -3793.21 -3929.72 -0.74 0.50 0.44 1 - 6212.98 -4432.03 -3521.60 -0.74 0.50 0.44 1 - 6220.05 -4230.88 -3737.65 -0.74 0.50 0.44 1 - 6227.12 -4029.73 -3953.71 -0.74 0.50 0.44 1 - 6044.90 -4467.26 -3761.85 -0.74 0.50 0.44 1 - 6051.97 -4266.10 -3977.91 -0.74 0.50 0.44 1 - 7021.69 -3398.51 -3131.14 -0.81 0.42 0.40 1 - 6504.60 -4627.59 -2686.35 -0.77 0.58 0.25 1 - 6455.15 -4796.78 -2449.21 -0.77 0.58 0.25 1 - 6405.75 -4966.11 -2212.48 -0.77 0.58 0.25 1 - 6356.30 -5135.15 -1975.54 -0.77 0.58 0.25 1 - 6307.06 -5304.47 -1738.49 -0.77 0.58 0.25 1 - 6635.70 -4564.05 -2429.33 -0.77 0.58 0.25 1 - 6586.25 -4733.09 -2192.39 -0.77 0.58 0.25 1 - 6536.85 -4902.42 -1955.66 -0.77 0.58 0.25 1 - 6487.60 -5071.58 -1718.82 -0.77 0.58 0.25 1 - 6766.80 -4500.36 -2172.51 -0.77 0.58 0.25 1 - 6717.55 -4669.52 -1935.66 -0.77 0.58 0.25 1 - 6668.15 -4838.85 -1698.94 -0.77 0.58 0.25 1 - 6898.10 -4436.79 -1915.79 -0.77 0.58 0.25 1 - 6848.70 -4606.11 -1679.06 -0.77 0.58 0.25 1 - 6136.43 -5378.45 -2059.09 -0.72 0.63 0.30 1 - 5890.78 -5303.11 -2796.85 -0.72 0.63 0.30 1 - 6038.35 -5255.16 -2545.78 -0.72 0.63 0.30 1 - 6186.08 -5207.05 -2294.60 -0.72 0.63 0.30 1 - 6088.21 -5084.05 -2781.18 -0.72 0.63 0.30 1 - 6235.93 -5035.94 -2530.00 -0.72 0.63 0.30 1 - 6285.43 -4864.86 -2765.43 -0.72 0.63 0.30 1 - 8417.36 -61.84 291.38 -0.99 0.02 -0.11 1 - 8386.48 -198.44 551.57 -0.99 0.02 -0.11 1 - 8355.84 -335.16 811.41 -0.99 0.02 -0.11 1 - 8324.95 -471.65 1071.37 -0.99 0.02 -0.11 1 - 8294.32 -608.23 1331.54 -0.99 0.02 -0.11 1 - 8394.28 96.45 539.77 -0.99 0.02 -0.11 1 - 8363.38 -40.05 799.72 -0.99 0.02 -0.11 1 - 8332.75 -176.76 1059.57 -0.99 0.02 -0.11 1 - 8302.11 -313.25 1319.51 -0.99 0.02 -0.11 1 - 8371.18 254.84 787.92 -0.99 0.02 -0.11 1 - 8340.54 118.36 1047.87 -0.99 0.02 -0.11 1 - 8309.91 -18.36 1307.71 -0.99 0.02 -0.11 1 - 8348.34 413.24 1036.07 -0.99 0.02 -0.11 1 - 8317.70 276.52 1295.92 -0.99 0.02 -0.11 1 - 8294.32 -1462.98 -51.38 -0.99 0.10 0.03 1 - 8324.96 -1169.29 -57.22 -0.99 0.10 0.03 1 - 8355.85 -875.81 -63.17 -0.99 0.10 0.03 1 - 8386.47 -582.02 -69.24 -0.99 0.10 0.03 1 - 8417.36 -288.31 -75.09 -0.99 0.10 0.03 1 - 8302.12 -1320.42 -309.78 -0.99 0.10 0.03 1 - 8332.75 -1026.86 -315.96 -0.99 0.10 0.03 1 - 8363.64 -733.15 -321.81 -0.99 0.10 0.03 1 - 8394.28 -439.69 -327.74 -0.99 0.10 0.03 1 - 8309.91 -1178.00 -568.52 -0.99 0.10 0.03 1 - 8340.54 -884.30 -574.36 -0.99 0.10 0.03 1 - 8371.18 -590.84 -580.30 -0.99 0.10 0.03 1 - 8317.71 -1035.67 -827.02 -0.99 0.10 0.03 1 - 8348.35 -741.97 -832.86 -0.99 0.10 0.03 1 - 8314.83 -805.76 1018.60 -0.99 0.10 -0.06 1 - 8344.14 -977.68 257.10 -0.99 0.10 -0.06 1 - 8344.14 -822.52 508.16 -0.99 0.10 -0.06 1 - 8344.13 -667.12 759.32 -0.99 0.10 -0.06 1 - 8373.70 -683.96 249.11 -0.99 0.10 -0.06 1 - 8373.69 -528.56 500.27 -0.99 0.10 -0.06 1 - 8403.01 -390.25 241.13 -0.99 0.10 -0.06 1 - 8265.28 -972.49 1295.27 -0.98 0.17 -0.10 1 - 8265.29 -1127.89 1044.10 -0.98 0.17 -0.10 1 - 8265.29 -1283.06 793.04 -0.98 0.17 -0.10 1 - 8265.28 -1438.36 541.64 -0.98 0.17 -0.10 1 - 8265.28 -1593.52 290.58 -0.98 0.17 -0.10 1 - 8214.19 -1263.41 1301.47 -0.98 0.17 -0.10 1 - 8214.20 -1418.81 1050.31 -0.98 0.17 -0.10 1 - 8214.19 -1573.87 799.01 -0.98 0.17 -0.10 1 - 8214.20 -1729.27 547.85 -0.98 0.17 -0.10 1 - 8163.11 -1554.32 1307.68 -0.98 0.17 -0.10 1 - 8163.10 -1709.39 1056.38 -0.98 0.17 -0.10 1 - 8163.11 -1864.78 805.22 -0.98 0.17 -0.10 1 - 8112.26 -1844.89 1313.74 -0.98 0.17 -0.10 1 - 8112.27 -2000.29 1062.58 -0.98 0.17 -0.10 1 - 7982.35 -2367.19 -1272.50 -0.97 0.23 0.10 1 - 8041.80 -2229.30 -1018.02 -0.97 0.23 0.10 1 - 8101.36 -2091.81 -763.65 -0.97 0.23 0.10 1 - 8160.72 -1954.05 -509.38 -0.97 0.23 0.10 1 - 8220.40 -1816.23 -254.96 -0.97 0.23 0.10 1 - 8051.07 -2079.85 -1272.46 -0.97 0.23 0.10 1 - 8110.42 -1942.09 -1018.18 -0.97 0.23 0.10 1 - 8125.84 -2174.60 -255.10 -0.95 0.31 0.06 1 - 7882.83 -2871.78 -510.40 -0.95 0.31 0.06 1 - 7974.04 -2591.09 -510.40 -0.95 0.31 0.06 1 - 8065.27 -2310.18 -510.55 -0.95 0.31 0.06 1 - 7913.79 -2726.62 -765.71 -0.95 0.31 0.06 1 - 8005.02 -2445.72 -765.85 -0.95 0.31 0.06 1 - 7944.51 -2581.38 -1020.95 -0.95 0.31 0.06 1 - 8172.96 -2034.62 36.42 -0.95 0.31 -0.02 1 - 8081.73 -2315.52 36.57 -0.95 0.31 -0.02 1 - 7990.52 -2596.22 36.56 -0.95 0.31 -0.02 1 - 7899.20 -2877.25 36.51 -0.95 0.31 -0.02 1 - 7807.99 -3157.95 36.51 -0.95 0.31 -0.02 1 - 8121.29 -2173.09 292.22 -0.95 0.31 -0.02 1 - 8030.05 -2453.99 292.37 -0.95 0.31 -0.02 1 - 7938.76 -2734.82 292.17 -0.95 0.31 -0.02 1 - 7847.52 -3015.72 292.31 -0.95 0.31 -0.02 1 - 8069.61 -2311.56 548.02 -0.95 0.31 -0.02 1 - 7978.32 -2592.38 547.82 -0.95 0.31 -0.02 1 - 7887.08 -2873.29 547.97 -0.95 0.31 -0.02 1 - 8018.12 -2450.02 803.42 -0.95 0.31 -0.02 1 - 7926.88 -2730.93 803.57 -0.95 0.31 -0.02 1 - 7623.35 -3569.11 290.55 -0.89 0.44 -0.10 1 - 7532.16 -3694.63 541.87 -0.89 0.44 -0.10 1 - 7440.96 -3820.16 792.93 -0.89 0.44 -0.10 1 - 7349.61 -3945.88 1044.27 -0.89 0.44 -0.10 1 - 7258.41 -4071.42 1295.33 -0.89 0.44 -0.10 1 - 7661.75 -3429.33 547.97 -0.89 0.44 -0.10 1 - 7570.57 -3554.86 799.29 -0.89 0.44 -0.10 1 - 7479.20 -3680.59 1050.37 -0.89 0.44 -0.10 1 - 7388.02 -3806.11 1301.69 -0.89 0.44 -0.10 1 - 7700.16 -3289.56 805.40 -0.89 0.44 -0.10 1 - 7608.80 -3415.29 1056.48 -0.89 0.44 -0.10 1 - 7517.61 -3540.82 1307.80 -0.89 0.44 -0.10 1 - 7738.59 -3150.16 1062.58 -0.89 0.44 -0.10 1 - 7647.40 -3275.68 1313.90 -0.89 0.44 -0.10 1 - 7474.16 -3858.76 265.15 -0.86 0.50 -0.06 1 - 7142.71 -4364.81 759.48 -0.86 0.50 -0.06 1 - 7233.92 -4239.28 508.41 -0.86 0.50 -0.06 1 - 7325.11 -4113.76 257.10 -0.86 0.50 -0.06 1 - 7085.22 -4494.23 500.34 -0.86 0.50 -0.06 1 - 7176.41 -4368.71 249.02 -0.86 0.50 -0.06 1 - 7027.53 -4623.50 241.20 -0.86 0.50 -0.06 1 - 7067.81 -4383.16 1331.50 -0.82 0.57 -0.11 1 - 7012.32 -4511.65 1071.42 -0.82 0.57 -0.11 1 - 6957.04 -4640.30 811.59 -0.82 0.57 -0.11 1 - 6901.39 -4768.99 551.53 -0.82 0.57 -0.11 1 - 6846.10 -4897.65 291.44 -0.82 0.57 -0.11 1 - 6900.79 -4626.30 1319.55 -0.82 0.57 -0.11 1 - 6845.16 -4754.99 1059.74 -0.82 0.57 -0.11 1 - 6789.86 -4883.64 799.66 -0.82 0.57 -0.11 1 - 6734.39 -5012.13 539.83 -0.82 0.57 -0.11 1 - 6733.63 -4869.64 1307.88 -0.82 0.57 -0.11 1 - 6678.14 -4998.13 1047.80 -0.82 0.57 -0.11 1 - 6622.66 -5126.62 787.97 -0.82 0.57 -0.11 1 - 6566.63 -5112.77 1296.18 -0.82 0.57 -0.11 1 - 6511.14 -5241.27 1036.10 -0.82 0.57 -0.11 1 - 8220.39 -584.30 1738.54 -0.97 0.01 -0.25 1 - 8160.74 -418.39 1975.50 -0.97 0.01 -0.25 1 - 8101.43 -252.52 2212.33 -0.97 0.01 -0.25 1 - 8041.78 -86.36 2449.23 -0.97 0.01 -0.25 1 - 7982.37 79.56 2686.29 -0.97 0.01 -0.25 1 - 8229.60 -289.88 1718.80 -0.97 0.01 -0.25 1 - 8170.05 -123.77 1955.48 -0.97 0.01 -0.25 1 - 8110.64 42.15 2192.54 -0.97 0.01 -0.25 1 - 8051.09 208.01 2429.26 -0.97 0.01 -0.25 1 - 8238.91 4.74 1698.78 -0.97 0.01 -0.25 1 - 8179.26 170.65 1935.74 -0.97 0.01 -0.25 1 - 8119.71 336.51 2172.47 -0.97 0.01 -0.25 1 - 8248.21 299.11 1678.81 -0.97 0.01 -0.25 1 - 8188.57 465.02 1915.77 -0.97 0.01 -0.25 1 - 7852.14 -1121.07 2812.54 -0.95 0.08 -0.30 1 - 8065.33 -576.60 2294.47 -0.95 0.08 -0.30 1 - 7974.13 -702.13 2545.53 -0.95 0.08 -0.30 1 - 7882.83 -827.62 2796.82 -0.95 0.08 -0.30 1 - 8005.05 -408.91 2529.96 -0.95 0.08 -0.30 1 - 7913.75 -534.39 2781.25 -0.95 0.08 -0.30 1 - 7944.53 -241.24 2765.36 -0.95 0.08 -0.30 1 - 7807.98 -1444.85 2808.23 -0.95 0.16 -0.27 1 - 7899.28 -1319.36 2556.93 -0.95 0.16 -0.27 1 - 7990.48 -1193.83 2305.87 -0.95 0.16 -0.27 1 - 8081.78 -1068.10 2054.53 -0.95 0.16 -0.27 1 - 8172.99 -942.57 1803.47 -0.95 0.16 -0.27 1 - 7847.57 -1609.96 2566.46 -0.95 0.16 -0.27 1 - 7938.86 -1484.48 2315.17 -0.95 0.16 -0.27 1 - 8030.07 -1358.70 2064.06 -0.95 0.16 -0.27 1 - 8121.37 -1233.21 1812.77 -0.95 0.16 -0.27 1 - 7887.15 -1775.08 2324.70 -0.95 0.16 -0.27 1 - 7978.36 -1649.30 2073.59 -0.95 0.16 -0.27 1 - 8069.66 -1523.81 1822.30 -0.95 0.16 -0.27 1 - 7926.88 -1939.88 2083.21 -0.95 0.16 -0.27 1 - 8018.18 -1814.39 1831.92 -0.95 0.16 -0.27 1 - 7258.37 -2979.33 3062.35 -0.89 0.29 -0.35 1 - 7349.71 -2698.47 3062.23 -0.89 0.29 -0.35 1 - 7440.92 -2417.77 3062.23 -0.89 0.29 -0.35 1 - 7532.20 -2136.72 3062.28 -0.89 0.29 -0.35 1 - 7623.40 -1856.03 3062.28 -0.89 0.29 -0.35 1 - 7388.03 -2866.21 2822.21 -0.89 0.29 -0.35 1 - 7479.38 -2585.34 2822.09 -0.89 0.29 -0.35 1 - 7570.52 -2304.46 2822.26 -0.89 0.29 -0.35 1 - 7661.86 -2023.60 2822.14 -0.89 0.29 -0.35 1 - 7517.70 -2753.08 2582.07 -0.89 0.29 -0.35 1 - 7608.83 -2472.20 2582.24 -0.89 0.29 -0.35 1 - 7700.18 -2191.33 2582.12 -0.89 0.29 -0.35 1 - 7647.35 -2640.01 2342.37 -0.89 0.29 -0.35 1 - 7738.70 -2359.14 2342.25 -0.89 0.29 -0.35 1 - 7867.13 -2400.79 1310.22 -0.93 0.30 -0.19 1 - 7867.01 -2556.20 1058.97 -0.93 0.30 -0.19 1 - 7775.93 -2215.87 2063.74 -0.93 0.30 -0.19 1 - 7775.81 -2371.29 1812.49 -0.93 0.30 -0.19 1 - 7775.97 -2526.42 1561.43 -0.93 0.30 -0.19 1 - 7775.78 -2681.65 1310.34 -0.93 0.30 -0.19 1 - 7775.81 -2836.90 1058.97 -0.93 0.30 -0.19 1 - 7684.58 -2496.74 2063.86 -0.93 0.30 -0.19 1 - 7684.60 -2651.98 1812.49 -0.93 0.30 -0.19 1 - 7684.62 -2807.28 1561.55 -0.93 0.30 -0.19 1 - 7684.65 -2962.53 1310.17 -0.93 0.30 -0.19 1 - 7593.44 -2777.61 2063.69 -0.93 0.30 -0.19 1 - 7593.26 -2932.85 1812.61 -0.93 0.30 -0.19 1 - 7593.48 -3088.16 1561.38 -0.93 0.30 -0.19 1 - 7166.05 -4041.47 1803.52 -0.86 0.43 -0.27 1 - 7166.15 -3886.10 2054.70 -0.86 0.43 -0.27 1 - 7166.15 -3730.94 2305.76 -0.86 0.43 -0.27 1 - 7166.11 -3575.62 2557.15 -0.86 0.43 -0.27 1 - 7166.11 -3420.45 2808.21 -0.86 0.43 -0.27 1 - 7295.12 -3775.90 1812.97 -0.86 0.43 -0.27 1 - 7295.23 -3620.53 2064.15 -0.86 0.43 -0.27 1 - 7295.08 -3465.41 2315.42 -0.86 0.43 -0.27 1 - 7295.19 -3310.05 2566.60 -0.86 0.43 -0.27 1 - 7424.20 -3510.32 1822.42 -0.86 0.43 -0.27 1 - 7424.06 -3355.20 2073.69 -0.86 0.43 -0.27 1 - 7424.16 -3199.84 2324.87 -0.86 0.43 -0.27 1 - 7553.21 -3245.15 1832.05 -0.86 0.43 -0.27 1 - 7553.31 -3089.78 2083.23 -0.86 0.43 -0.27 1 - 6411.13 -4756.24 2686.35 -0.79 0.56 -0.25 1 - 6556.76 -4656.94 2449.21 -0.79 0.56 -0.25 1 - 6702.53 -4557.63 2212.48 -0.79 0.56 -0.25 1 - 6848.02 -4458.37 1975.54 -0.79 0.56 -0.25 1 - 6993.83 -4359.21 1738.49 -0.79 0.56 -0.25 1 - 6391.21 -4900.57 2429.33 -0.79 0.56 -0.25 1 - 6536.70 -4801.31 2192.39 -0.79 0.56 -0.25 1 - 6682.47 -4702.00 1955.66 -0.79 0.56 -0.25 1 - 6828.14 -4602.89 1718.82 -0.79 0.56 -0.25 1 - 6371.14 -5044.94 2172.51 -0.79 0.56 -0.25 1 - 6516.81 -4945.83 1935.66 -0.79 0.56 -0.25 1 - 6662.59 -4846.52 1698.94 -0.79 0.56 -0.25 1 - 6351.26 -5189.46 1915.79 -0.79 0.56 -0.25 1 - 6497.03 -5090.15 1679.06 -0.79 0.56 -0.25 1 - 6196.91 -5402.28 1664.71 -0.73 0.66 -0.17 1 - 6334.40 -5314.36 1418.62 -0.73 0.66 -0.17 1 - 6000.23 -5622.24 1653.03 -0.73 0.66 -0.17 1 - 6137.96 -5534.39 1407.19 -0.73 0.66 -0.17 1 - 6275.45 -5446.47 1161.10 -0.73 0.66 -0.17 1 - 5941.19 -5754.32 1395.85 -0.73 0.66 -0.17 1 - 6078.68 -5666.40 1149.76 -0.73 0.66 -0.17 1 - 424.00 594.00 13340.00 9999.00 9999.00 9999.00 5 - 2877.00 -503.00 -8729.00 9999.00 9999.00 9999.00 2 - 5974.00 -1479.00 -6840.00 9999.00 9999.00 9999.00 2 - 440.00 -6139.00 -6840.00 9999.00 9999.00 9999.00 2 - 411.00 -2892.00 -8729.00 9999.00 9999.00 9999.00 2 - 3681.00 -4220.00 -7301.00 9999.00 9999.00 9999.00 2 - 0.00 -499.00 -9214.00 9999.00 9999.00 9999.00 2 - 7787.00 1092.00 -4785.00 9999.00 9999.00 9999.00 2 - 7919.00 -2074.00 -4258.00 9999.00 9999.00 9999.00 2 - 6361.00 -4761.00 -4691.00 9999.00 9999.00 9999.00 2 - 0.00 -730.00 13340.00 9999.00 9999.00 9999.00 5 - 3445.00 -7068.00 -4785.00 9999.00 9999.00 9999.00 2 - 9046.00 -481.00 -1615.00 9999.00 9999.00 9999.00 2 - 8101.00 -4070.00 -1595.00 9999.00 9999.00 9999.00 2 - 5707.00 -7009.00 -1724.00 9999.00 9999.00 9999.00 2 - 2338.00 -8751.00 -1615.00 9999.00 9999.00 9999.00 2 - 9046.00 481.00 1615.00 9999.00 9999.00 9999.00 2 - 8737.00 -2316.00 1724.00 9999.00 9999.00 9999.00 2 - 7035.00 -5706.00 1615.00 9999.00 9999.00 9999.00 2 - 497.00 -9025.00 1724.00 9999.00 9999.00 9999.00 2 - 4161.00 -8054.00 1595.00 9999.00 9999.00 9999.00 2 - 7625.00 2977.00 4258.00 9999.00 9999.00 9999.00 2 - 7945.00 -112.00 4691.00 9999.00 9999.00 9999.00 2 - 6942.00 -3693.00 4785.00 9999.00 9999.00 9999.00 2 - 5187.00 -6332.00 4258.00 9999.00 9999.00 9999.00 2 - 2348.00 -7591.00 4691.00 9999.00 9999.00 9999.00 2 - 5703.00 2315.00 6840.00 9999.00 9999.00 9999.00 2 - 2623.00 1284.00 8729.00 9999.00 9999.00 9999.00 2 - 5458.00 -1251.00 7301.00 9999.00 9999.00 9999.00 2 - 497.00 -5577.00 7301.00 9999.00 9999.00 9999.00 2 - 3964.00 -4708.00 6840.00 9999.00 9999.00 9999.00 2 - 2032.00 -2098.00 8729.00 9999.00 9999.00 9999.00 2 diff --git a/pmt_pcath_response.dat b/pmt_pcath_response.dat deleted file mode 100644 index 31fb041..0000000 --- a/pmt_pcath_response.dat +++ /dev/null @@ -1,127 +0,0 @@ -*LOG -*--- Standard Titles File: pmt_pcath_response.dat 02 Mar 1998 -*--- Banks: PCAT -*LOG OFF -*DO PCAT 1 -i(30I -F) #. Bank for Photocathode response. -#. (This bank MDL's PMT_PCATH_R.DAT) -#. -#. Contact: S. Biller, Oxford. -#. -#. Standard Database Header -#. -19750101 0 20380517 03331900 #. 1..4 Intrinsic validity - 0 0 0 #. 5..7 Data type, Task type, Format no. - 0 0 0 #. 8..10 Creation Date, Time, Source Id. -19750101 0 20380517 03331900 #. 11..14 Effective validity - 0 0 #. 15..16 Entry Date Time -4*0 #. 17..20 Spare -10*0 #. 21..30 Temporary data (not in database) -#. -#. End of Standard Database Header -#. -#. Revision History:- -#. ================ -#. -#. 3.01 M.Thorman New data - obtained from the NPL measurements of PMT -#. efficiency. -#. -#. User Data. -#. -#. Wavelength table of probability of an absorbed photon causing -#. a hit. In one nm steps from 230 to 700. - -0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 -0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 -0.0000E+00 0.4909E-03 0.9818E-03 0.1473E-02 0.1964E-02 -0.2454E-02 0.2945E-02 0.3436E-02 0.3927E-02 0.4418E-02 -0.4909E-02 0.5510E-02 0.6111E-02 0.6713E-02 0.7314E-02 -0.7915E-02 0.8516E-02 0.9117E-02 0.9719E-02 0.1032E-01 -0.1092E-01 0.1269E-01 0.1446E-01 0.1622E-01 0.1799E-01 -0.1976E-01 0.2153E-01 0.2329E-01 0.2506E-01 0.2683E-01 -0.2860E-01 0.3169E-01 0.3478E-01 0.3788E-01 0.4097E-01 -0.4406E-01 0.4716E-01 0.5025E-01 0.5334E-01 0.5644E-01 -0.5953E-01 0.6295E-01 0.6636E-01 0.6978E-01 0.7320E-01 -0.7661E-01 0.8003E-01 0.8344E-01 0.8686E-01 0.9028E-01 -0.9369E-01 0.9680E-01 0.9991E-01 0.1030 0.1061 -0.1092 0.1123 0.1154 0.1185 0.1217 -0.1248 0.1275 0.1302 0.1330 0.1357 -0.1385 0.1412 0.1439 0.1467 0.1494 -0.1522 0.1541 0.1561 0.1580 0.1600 -0.1619 0.1639 0.1658 0.1678 0.1697 -0.1717 0.1725 0.1734 0.1742 0.1751 -0.1759 0.1767 0.1776 0.1784 0.1793 -0.1801 0.1810 0.1819 0.1827 0.1836 -0.1844 0.1853 0.1862 0.1870 0.1879 -0.1888 0.1890 0.1893 0.1896 0.1898 -0.1901 0.1903 0.1906 0.1909 0.1911 -0.1914 0.1917 0.1921 0.1924 0.1928 -0.1931 0.1935 0.1938 0.1942 0.1945 -0.1949 0.1952 0.1954 0.1957 0.1960 -0.1963 0.1966 0.1969 0.1972 0.1975 -0.1978 0.1978 0.1978 0.1978 0.1979 -0.1979 0.1979 0.1979 0.1980 0.1980 -0.1980 0.1983 0.1985 0.1988 0.1990 -0.1993 0.1996 0.1998 0.2001 0.2003 -0.2006 0.2008 0.2010 0.2013 0.2015 -0.2017 0.2019 0.2022 0.2024 0.2026 -0.2029 0.2033 0.2038 0.2042 0.2047 -0.2052 0.2056 0.2061 0.2065 0.2070 -0.2075 0.2078 0.2082 0.2085 0.2089 -0.2092 0.2096 0.2099 0.2103 0.2106 -0.2110 0.2113 0.2116 0.2119 0.2123 -0.2126 0.2129 0.2132 0.2135 0.2139 -0.2142 0.2142 0.2143 0.2144 0.2144 -0.2145 0.2146 0.2146 0.2147 0.2148 -0.2148 0.2147 0.2145 0.2144 0.2142 -0.2141 0.2139 0.2138 0.2136 0.2135 -0.2133 0.2131 0.2128 0.2126 0.2124 -0.2121 0.2119 0.2117 0.2114 0.2112 -0.2110 0.2103 0.2097 0.2090 0.2084 -0.2077 0.2071 0.2064 0.2058 0.2051 -0.2045 0.2038 0.2032 0.2025 0.2018 -0.2012 0.2005 0.1999 0.1992 0.1986 -0.1979 0.1975 0.1971 0.1967 0.1962 -0.1958 0.1954 0.1950 0.1946 0.1941 -0.1937 0.1933 0.1929 0.1925 0.1921 -0.1917 0.1913 0.1908 0.1904 0.1900 -0.1896 0.1892 0.1887 0.1883 0.1879 -0.1874 0.1870 0.1866 0.1861 0.1857 -0.1852 0.1835 0.1818 0.1801 0.1784 -0.1766 0.1749 0.1732 0.1715 0.1698 -0.1681 0.1651 0.1622 0.1593 0.1564 -0.1535 0.1506 0.1477 0.1448 0.1419 -0.1390 0.1366 0.1342 0.1318 0.1294 -0.1270 0.1246 0.1222 0.1198 0.1174 -0.1150 0.1143 0.1136 0.1129 0.1122 -0.1115 0.1107 0.1100 0.1093 0.1086 -0.1079 0.1062 0.1046 0.1029 0.1013 -0.9965E-01 0.9801E-01 0.9636E-01 0.9472E-01 0.9308E-01 -0.9143E-01 0.9060E-01 0.8977E-01 0.8895E-01 0.8812E-01 -0.8729E-01 0.8646E-01 0.8563E-01 0.8480E-01 0.8398E-01 -0.8315E-01 0.8224E-01 0.8133E-01 0.8041E-01 0.7950E-01 -0.7859E-01 0.7768E-01 0.7677E-01 0.7586E-01 0.7495E-01 -0.7404E-01 0.7297E-01 0.7190E-01 0.7083E-01 0.6976E-01 -0.6869E-01 0.6762E-01 0.6655E-01 0.6548E-01 0.6441E-01 -0.6334E-01 0.6223E-01 0.6111E-01 0.5999E-01 0.5887E-01 -0.5775E-01 0.5663E-01 0.5552E-01 0.5440E-01 0.5328E-01 -0.5216E-01 0.5092E-01 0.4967E-01 0.4843E-01 0.4719E-01 -0.4594E-01 0.4470E-01 0.4345E-01 0.4221E-01 0.4097E-01 -0.3972E-01 0.3884E-01 0.3795E-01 0.3707E-01 0.3618E-01 -0.3530E-01 0.3441E-01 0.3353E-01 0.3264E-01 0.3176E-01 -0.3087E-01 0.2996E-01 0.2906E-01 0.2815E-01 0.2724E-01 -0.2634E-01 0.2543E-01 0.2452E-01 0.2361E-01 0.2271E-01 -0.2180E-01 0.2109E-01 0.2038E-01 0.1967E-01 0.1897E-01 -0.1826E-01 0.1755E-01 0.1684E-01 0.1613E-01 0.1542E-01 -0.1471E-01 0.1412E-01 0.1353E-01 0.1293E-01 0.1234E-01 -0.1175E-01 0.1115E-01 0.1056E-01 0.9967E-02 0.9374E-02 -0.8781E-02 0.8416E-02 0.8052E-02 0.7687E-02 0.7323E-02 -0.6958E-02 0.6594E-02 0.6229E-02 0.5865E-02 0.5500E-02 -0.5136E-02 0.4899E-02 0.4663E-02 0.4427E-02 0.4191E-02 -0.3955E-02 0.3718E-02 0.3482E-02 0.3246E-02 0.3010E-02 -0.2774E-02 0.2650E-02 0.2527E-02 0.2404E-02 0.2281E-02 -0.2157E-02 0.2034E-02 0.1911E-02 0.1788E-02 0.1665E-02 -0.1541E-02 0.1459E-02 0.1377E-02 0.1295E-02 0.1213E-02 -0.1131E-02 0.1049E-02 0.9665E-03 0.8844E-03 0.8023E-03 -0.7201E-03 0.6944E-03 0.6686E-03 0.6429E-03 0.6171E-03 -0.5914E-03 0.5656E-03 0.5399E-03 0.5141E-03 0.4884E-03 -0.4626E-03 diff --git a/quantum_efficiency.c b/quantum_efficiency.c deleted file mode 100644 index f8ae972..0000000 --- a/quantum_efficiency.c +++ /dev/null @@ -1,125 +0,0 @@ -#include -#include -#include -#include -#include -#include - -static int initialized = 0; - -static double *x, *y; -static size_t size; - -gsl_interp_accel *acc; -gsl_spline *spline; - -static int init() -{ - int i; - char line[256]; - char *str; - double value; - int n; - - FILE *f = fopen("pmt_pcath_response.dat", "r"); - - if (!f) { - fprintf(stderr, "failed to open pmt_pcath_response.dat: %s", strerror(errno)); - return -1; - } - - i = 0; - n = 0; - /* For the first pass, we just count how many values there are. */ - while (fgets(line, sizeof(line), f)) { - size_t len = strlen(line); - if (len && (line[len-1] != '\n')) { - fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); - goto err; - } - - i += 1; - - /* Skip the first 32 lines since it's just a header. */ - if (i < 32) continue; - - if (!len) continue; - else if (line[0] == '#') continue; - - str = strtok(line," \n"); - - while (str) { - value = strtod(str, NULL); - n += 1; - str = strtok(NULL," \n"); - } - } - - x = malloc(sizeof(double)*(n+2)); - y = malloc(sizeof(double)*(n+2)); - size = n + 2; - - /* Make sure we extrapolate to 0. */ - x[0] = 0; - y[0] = 0; - x[n+1] = 1000; - y[n+1] = 0; - - i = 0; - n = 0; - /* Now, we actually store the values. */ - rewind(f); - while (fgets(line, sizeof(line), f)) { - size_t len = strlen(line); - if (len && (line[len-1] != '\n')) { - fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); - goto err; - } - - i += 1; - - /* Skip the first 32 lines since it's just a header. */ - if (i < 32) continue; - - if (!len) continue; - else if (line[0] == '#') continue; - - str = strtok(line," \n"); - - while (str) { - value = strtod(str, NULL); - /* According to the file, the values are stored for wavelengths - * between 230 and 700 in 1 nm increments. */ - x[n+1] = 230 + n*1.0; - y[n+1] = value; - n += 1; - str = strtok(NULL," \n"); - } - } - - fclose(f); - - acc = gsl_interp_accel_alloc(); - spline = gsl_spline_alloc(gsl_interp_linear, size); - gsl_spline_init(spline, x, y, size); - - initialized = 1; - - return 0; - -err: - fclose(f); - - return -1; -} - -double get_quantum_efficiency(double wavelength) -{ - if (!initialized) { - if (init()) { - exit(1); - } - } - - return gsl_spline_eval(spline, wavelength, acc); -} diff --git a/quantum_efficiency.h b/quantum_efficiency.h deleted file mode 100644 index bd05950..0000000 --- a/quantum_efficiency.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef QUANTUM_EFFICIENCY_H -#define QUANTUM_EFFICIENCY_H - -double get_quantum_efficiency(double wavelength); - -#endif diff --git a/random.c b/random.c deleted file mode 100644 index f6cf85e..0000000 --- a/random.c +++ /dev/null @@ -1,14 +0,0 @@ -#include "random.h" -#include - -double randn(void) -{ - /* Generates a random number from a normal distribution using the - * Box-Muller transform. */ - double u1, u2; - - u1 = genrand_real1(); - u2 = genrand_real1(); - - return sqrt(-2*log(u1))*cos(2*M_PI*u2); -} diff --git a/random.h b/random.h deleted file mode 100644 index 309cd71..0000000 --- a/random.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef RANDOM_H -#define RANDOM_H - -#include "mt19937ar.h" - -double randn(void); - -#endif diff --git a/scattering.c b/scattering.c deleted file mode 100644 index a7fa717..0000000 --- a/scattering.c +++ /dev/null @@ -1,121 +0,0 @@ -#include "scattering.h" -#include "quantum_efficiency.h" -#include -#include -#include -#include -#include "optics.h" -#include "sno.h" -#include /* for size_t */ -#include /* for exit() */ -#include /* for fprintf() */ -#include /* for gsl_strerror() */ - -static double xlo = -1.0; -static double xhi = 1.0; -static size_t nx = 200; -static double ylo = 0.0; -static double yhi = 1.0; -static size_t ny = 1000; - -static double *x; -static double *y; -static double *z; - -static gsl_spline2d *spline; -static gsl_interp_accel *xacc; -static gsl_interp_accel *yacc; - -static double prob_scatter(double wavelength, void *params) -{ - /* Calculate the number of photons emitted per unit solid angle per cm at - * an angle `theta` for a particle travelling with velocity `beta` with an - * angular distribution of width `theta0`. */ - double qe, delta, index; - - double beta_cos_theta = ((double *) params)[0]; - double beta_sin_theta_theta0 = ((double *) params)[1]; - - qe = get_quantum_efficiency(wavelength); - - index = get_index(HEAVY_WATER_DENSITY, wavelength, 10.0); - - delta = (1.0/index - beta_cos_theta)/(2*beta_sin_theta_theta0); - - /* FIXME: ignore GSL error for underflow here. */ - if (delta*delta > 500) return 0.0; - else if (delta*delta == 0.0) return INFINITY; - return qe*exp(-delta*delta)*gsl_sf_bessel_K0(delta*delta)/pow(wavelength,2)*1e7/(4*M_PI*M_PI); -} - -void init_interpolation(void) -{ - size_t i, j; - double params[2]; - double result, error; - size_t nevals; - int status; - - x = malloc(nx*sizeof(double)); - y = malloc(ny*sizeof(double)); - z = malloc(nx*ny*sizeof(double)); - - spline = gsl_spline2d_alloc(gsl_interp2d_bilinear, nx, ny); - xacc = gsl_interp_accel_alloc(); - yacc = gsl_interp_accel_alloc(); - - for (i = 0; i < nx; i++) { - x[i] = xlo + (xhi-xlo)*i/(nx-1); - } - - for (i = 0; i < ny; i++) { - y[i] = ylo + (yhi-ylo)*i/(ny-1); - } - - gsl_integration_cquad_workspace *w = gsl_integration_cquad_workspace_alloc(100); - - gsl_function F; - F.function = &prob_scatter; - F.params = params; - - for (i = 0; i < nx; i++) { - for (j = 0; j < ny; j++) { - params[0] = x[i]; - params[1] = y[j]; - - status = gsl_integration_cquad(&F, 200, 800, 0, 1e-2, w, &result, &error, &nevals); - - if (status) { - fprintf(stderr, "error integrating photon angular distribution: %s\n", gsl_strerror(status)); - exit(1); - } - gsl_spline2d_set(spline, z, i, j, result); - } - } - - gsl_spline2d_init(spline, x, y, z, nx, ny); - - gsl_integration_cquad_workspace_free(w); -} - -double get_probability(double beta, double cos_theta, double theta0) -{ - double sin_theta; - - /* Technically this isn't defined up to a sign, but it doesn't matter since - * we are going to square it everywhere. */ - sin_theta = fabs(sin(acos(cos_theta))); - - return gsl_spline2d_eval(spline, beta*cos_theta, beta*sin_theta*theta0, xacc, yacc)/sin_theta; -} - -void free_interpolation(void) -{ - free(x); - free(y); - free(z); - - gsl_spline2d_free(spline); - gsl_interp_accel_free(xacc); - gsl_interp_accel_free(yacc); -} diff --git a/scattering.h b/scattering.h deleted file mode 100644 index f3a38d8..0000000 --- a/scattering.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef SCATTERING_H -#define SCATTERING_H - -void init_interpolation(void); -double get_probability(double beta, double cos_theta, double theta0); -void free_interpolation(void); - -#endif diff --git a/siphash.c b/siphash.c deleted file mode 100644 index 6b94190..0000000 --- a/siphash.c +++ /dev/null @@ -1,360 +0,0 @@ -/* - SipHash reference C implementation - - Copyright (c) 2012-2016 Jean-Philippe Aumasson - - Copyright (c) 2012-2014 Daniel J. Bernstein - Copyright (c) 2017 Salvatore Sanfilippo - - To the extent possible under law, the author(s) have dedicated all copyright - and related and neighboring rights to this software to the public domain - worldwide. This software is distributed without any warranty. - - You should have received a copy of the CC0 Public Domain Dedication along - with this software. If not, see - . - - ---------------------------------------------------------------------------- - - This version was modified by Salvatore Sanfilippo - in the following ways: - - 1. We use SipHash 1-2. This is not believed to be as strong as the - suggested 2-4 variant, but AFAIK there are not trivial attacks - against this reduced-rounds version, and it runs at the same speed - as Murmurhash2 that we used previously, why the 2-4 variant slowed - down Redis by a 4% figure more or less. - 2. Hard-code rounds in the hope the compiler can optimize it more - in this raw from. Anyway we always want the standard 2-4 variant. - 3. Modify the prototype and implementation so that the function directly - returns an uint64_t value, the hash itself, instead of receiving an - output buffer. This also means that the output size is set to 8 bytes - and the 16 bytes output code handling was removed. - 4. Provide a case insensitive variant to be used when hashing strings that - must be considered identical by the hash table regardless of the case. - If we don't have directly a case insensitive hash function, we need to - perform a text transformation in some temporary buffer, which is costly. - 5. Remove debugging code. - 6. Modified the original test.c file to be a stand-alone function testing - the function in the new form (returing an uint64_t) using just the - relevant test vector. - */ -#include -#include -#include -#include -#include - -/* Fast tolower() alike function that does not care about locale - * but just returns a-z insetad of A-Z. */ -int siptlw(int c) { - if (c >= 'A' && c <= 'Z') { - return c+('a'-'A'); - } else { - return c; - } -} - -/* Test of the CPU is Little Endian and supports not aligned accesses. - * Two interesting conditions to speedup the function that happen to be - * in most of x86 servers. */ -#if defined(__X86_64__) || defined(__x86_64__) || defined (__i386__) -#define UNALIGNED_LE_CPU -#endif - -#define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) - -#define U32TO8_LE(p, v) \ - (p)[0] = (uint8_t)((v)); \ - (p)[1] = (uint8_t)((v) >> 8); \ - (p)[2] = (uint8_t)((v) >> 16); \ - (p)[3] = (uint8_t)((v) >> 24); - -#define U64TO8_LE(p, v) \ - U32TO8_LE((p), (uint32_t)((v))); \ - U32TO8_LE((p) + 4, (uint32_t)((v) >> 32)); - -#ifdef UNALIGNED_LE_CPU -#define U8TO64_LE(p) (*((uint64_t*)(p))) -#else -#define U8TO64_LE(p) \ - (((uint64_t)((p)[0])) | ((uint64_t)((p)[1]) << 8) | \ - ((uint64_t)((p)[2]) << 16) | ((uint64_t)((p)[3]) << 24) | \ - ((uint64_t)((p)[4]) << 32) | ((uint64_t)((p)[5]) << 40) | \ - ((uint64_t)((p)[6]) << 48) | ((uint64_t)((p)[7]) << 56)) -#endif - -#define U8TO64_LE_NOCASE(p) \ - (((uint64_t)(siptlw((p)[0]))) | \ - ((uint64_t)(siptlw((p)[1])) << 8) | \ - ((uint64_t)(siptlw((p)[2])) << 16) | \ - ((uint64_t)(siptlw((p)[3])) << 24) | \ - ((uint64_t)(siptlw((p)[4])) << 32) | \ - ((uint64_t)(siptlw((p)[5])) << 40) | \ - ((uint64_t)(siptlw((p)[6])) << 48) | \ - ((uint64_t)(siptlw((p)[7])) << 56)) - -#define SIPROUND \ - do { \ - v0 += v1; \ - v1 = ROTL(v1, 13); \ - v1 ^= v0; \ - v0 = ROTL(v0, 32); \ - v2 += v3; \ - v3 = ROTL(v3, 16); \ - v3 ^= v2; \ - v0 += v3; \ - v3 = ROTL(v3, 21); \ - v3 ^= v0; \ - v2 += v1; \ - v1 = ROTL(v1, 17); \ - v1 ^= v2; \ - v2 = ROTL(v2, 32); \ - } while (0) - -uint64_t siphash(const uint8_t *in, const size_t inlen, const uint8_t *k) { -#ifndef UNALIGNED_LE_CPU - uint64_t hash; - uint8_t *out = (uint8_t*) &hash; -#endif - uint64_t v0 = 0x736f6d6570736575ULL; - uint64_t v1 = 0x646f72616e646f6dULL; - uint64_t v2 = 0x6c7967656e657261ULL; - uint64_t v3 = 0x7465646279746573ULL; - uint64_t k0 = U8TO64_LE(k); - uint64_t k1 = U8TO64_LE(k + 8); - uint64_t m; - const uint8_t *end = in + inlen - (inlen % sizeof(uint64_t)); - const int left = inlen & 7; - uint64_t b = ((uint64_t)inlen) << 56; - v3 ^= k1; - v2 ^= k0; - v1 ^= k1; - v0 ^= k0; - - for (; in != end; in += 8) { - m = U8TO64_LE(in); - v3 ^= m; - - SIPROUND; - - v0 ^= m; - } - - switch (left) { - case 7: b |= ((uint64_t)in[6]) << 48; /* fall-thru */ - case 6: b |= ((uint64_t)in[5]) << 40; /* fall-thru */ - case 5: b |= ((uint64_t)in[4]) << 32; /* fall-thru */ - case 4: b |= ((uint64_t)in[3]) << 24; /* fall-thru */ - case 3: b |= ((uint64_t)in[2]) << 16; /* fall-thru */ - case 2: b |= ((uint64_t)in[1]) << 8; /* fall-thru */ - case 1: b |= ((uint64_t)in[0]); break; - case 0: break; - } - - v3 ^= b; - - SIPROUND; - - v0 ^= b; - v2 ^= 0xff; - - SIPROUND; - SIPROUND; - - b = v0 ^ v1 ^ v2 ^ v3; -#ifndef UNALIGNED_LE_CPU - U64TO8_LE(out, b); - return hash; -#else - return b; -#endif -} - -uint64_t siphash_nocase(const uint8_t *in, const size_t inlen, const uint8_t *k) -{ -#ifndef UNALIGNED_LE_CPU - uint64_t hash; - uint8_t *out = (uint8_t*) &hash; -#endif - uint64_t v0 = 0x736f6d6570736575ULL; - uint64_t v1 = 0x646f72616e646f6dULL; - uint64_t v2 = 0x6c7967656e657261ULL; - uint64_t v3 = 0x7465646279746573ULL; - uint64_t k0 = U8TO64_LE(k); - uint64_t k1 = U8TO64_LE(k + 8); - uint64_t m; - const uint8_t *end = in + inlen - (inlen % sizeof(uint64_t)); - const int left = inlen & 7; - uint64_t b = ((uint64_t)inlen) << 56; - v3 ^= k1; - v2 ^= k0; - v1 ^= k1; - v0 ^= k0; - - for (; in != end; in += 8) { - m = U8TO64_LE_NOCASE(in); - v3 ^= m; - - SIPROUND; - - v0 ^= m; - } - - switch (left) { - case 7: b |= ((uint64_t)siptlw(in[6])) << 48; /* fall-thru */ - case 6: b |= ((uint64_t)siptlw(in[5])) << 40; /* fall-thru */ - case 5: b |= ((uint64_t)siptlw(in[4])) << 32; /* fall-thru */ - case 4: b |= ((uint64_t)siptlw(in[3])) << 24; /* fall-thru */ - case 3: b |= ((uint64_t)siptlw(in[2])) << 16; /* fall-thru */ - case 2: b |= ((uint64_t)siptlw(in[1])) << 8; /* fall-thru */ - case 1: b |= ((uint64_t)siptlw(in[0])); break; - case 0: break; - } - - v3 ^= b; - - SIPROUND; - - v0 ^= b; - v2 ^= 0xff; - - SIPROUND; - SIPROUND; - - b = v0 ^ v1 ^ v2 ^ v3; -#ifndef UNALIGNED_LE_CPU - U64TO8_LE(out, b); - return hash; -#else - return b; -#endif -} - - -/* --------------------------------- TEST ------------------------------------ */ - -#ifdef SIPHASH_TEST - -const uint8_t vectors_sip64[64][8] = { - { 0x31, 0x0e, 0x0e, 0xdd, 0x47, 0xdb, 0x6f, 0x72, }, - { 0xfd, 0x67, 0xdc, 0x93, 0xc5, 0x39, 0xf8, 0x74, }, - { 0x5a, 0x4f, 0xa9, 0xd9, 0x09, 0x80, 0x6c, 0x0d, }, - { 0x2d, 0x7e, 0xfb, 0xd7, 0x96, 0x66, 0x67, 0x85, }, - { 0xb7, 0x87, 0x71, 0x27, 0xe0, 0x94, 0x27, 0xcf, }, - { 0x8d, 0xa6, 0x99, 0xcd, 0x64, 0x55, 0x76, 0x18, }, - { 0xce, 0xe3, 0xfe, 0x58, 0x6e, 0x46, 0xc9, 0xcb, }, - { 0x37, 0xd1, 0x01, 0x8b, 0xf5, 0x00, 0x02, 0xab, }, - { 0x62, 0x24, 0x93, 0x9a, 0x79, 0xf5, 0xf5, 0x93, }, - { 0xb0, 0xe4, 0xa9, 0x0b, 0xdf, 0x82, 0x00, 0x9e, }, - { 0xf3, 0xb9, 0xdd, 0x94, 0xc5, 0xbb, 0x5d, 0x7a, }, - { 0xa7, 0xad, 0x6b, 0x22, 0x46, 0x2f, 0xb3, 0xf4, }, - { 0xfb, 0xe5, 0x0e, 0x86, 0xbc, 0x8f, 0x1e, 0x75, }, - { 0x90, 0x3d, 0x84, 0xc0, 0x27, 0x56, 0xea, 0x14, }, - { 0xee, 0xf2, 0x7a, 0x8e, 0x90, 0xca, 0x23, 0xf7, }, - { 0xe5, 0x45, 0xbe, 0x49, 0x61, 0xca, 0x29, 0xa1, }, - { 0xdb, 0x9b, 0xc2, 0x57, 0x7f, 0xcc, 0x2a, 0x3f, }, - { 0x94, 0x47, 0xbe, 0x2c, 0xf5, 0xe9, 0x9a, 0x69, }, - { 0x9c, 0xd3, 0x8d, 0x96, 0xf0, 0xb3, 0xc1, 0x4b, }, - { 0xbd, 0x61, 0x79, 0xa7, 0x1d, 0xc9, 0x6d, 0xbb, }, - { 0x98, 0xee, 0xa2, 0x1a, 0xf2, 0x5c, 0xd6, 0xbe, }, - { 0xc7, 0x67, 0x3b, 0x2e, 0xb0, 0xcb, 0xf2, 0xd0, }, - { 0x88, 0x3e, 0xa3, 0xe3, 0x95, 0x67, 0x53, 0x93, }, - { 0xc8, 0xce, 0x5c, 0xcd, 0x8c, 0x03, 0x0c, 0xa8, }, - { 0x94, 0xaf, 0x49, 0xf6, 0xc6, 0x50, 0xad, 0xb8, }, - { 0xea, 0xb8, 0x85, 0x8a, 0xde, 0x92, 0xe1, 0xbc, }, - { 0xf3, 0x15, 0xbb, 0x5b, 0xb8, 0x35, 0xd8, 0x17, }, - { 0xad, 0xcf, 0x6b, 0x07, 0x63, 0x61, 0x2e, 0x2f, }, - { 0xa5, 0xc9, 0x1d, 0xa7, 0xac, 0xaa, 0x4d, 0xde, }, - { 0x71, 0x65, 0x95, 0x87, 0x66, 0x50, 0xa2, 0xa6, }, - { 0x28, 0xef, 0x49, 0x5c, 0x53, 0xa3, 0x87, 0xad, }, - { 0x42, 0xc3, 0x41, 0xd8, 0xfa, 0x92, 0xd8, 0x32, }, - { 0xce, 0x7c, 0xf2, 0x72, 0x2f, 0x51, 0x27, 0x71, }, - { 0xe3, 0x78, 0x59, 0xf9, 0x46, 0x23, 0xf3, 0xa7, }, - { 0x38, 0x12, 0x05, 0xbb, 0x1a, 0xb0, 0xe0, 0x12, }, - { 0xae, 0x97, 0xa1, 0x0f, 0xd4, 0x34, 0xe0, 0x15, }, - { 0xb4, 0xa3, 0x15, 0x08, 0xbe, 0xff, 0x4d, 0x31, }, - { 0x81, 0x39, 0x62, 0x29, 0xf0, 0x90, 0x79, 0x02, }, - { 0x4d, 0x0c, 0xf4, 0x9e, 0xe5, 0xd4, 0xdc, 0xca, }, - { 0x5c, 0x73, 0x33, 0x6a, 0x76, 0xd8, 0xbf, 0x9a, }, - { 0xd0, 0xa7, 0x04, 0x53, 0x6b, 0xa9, 0x3e, 0x0e, }, - { 0x92, 0x59, 0x58, 0xfc, 0xd6, 0x42, 0x0c, 0xad, }, - { 0xa9, 0x15, 0xc2, 0x9b, 0xc8, 0x06, 0x73, 0x18, }, - { 0x95, 0x2b, 0x79, 0xf3, 0xbc, 0x0a, 0xa6, 0xd4, }, - { 0xf2, 0x1d, 0xf2, 0xe4, 0x1d, 0x45, 0x35, 0xf9, }, - { 0x87, 0x57, 0x75, 0x19, 0x04, 0x8f, 0x53, 0xa9, }, - { 0x10, 0xa5, 0x6c, 0xf5, 0xdf, 0xcd, 0x9a, 0xdb, }, - { 0xeb, 0x75, 0x09, 0x5c, 0xcd, 0x98, 0x6c, 0xd0, }, - { 0x51, 0xa9, 0xcb, 0x9e, 0xcb, 0xa3, 0x12, 0xe6, }, - { 0x96, 0xaf, 0xad, 0xfc, 0x2c, 0xe6, 0x66, 0xc7, }, - { 0x72, 0xfe, 0x52, 0x97, 0x5a, 0x43, 0x64, 0xee, }, - { 0x5a, 0x16, 0x45, 0xb2, 0x76, 0xd5, 0x92, 0xa1, }, - { 0xb2, 0x74, 0xcb, 0x8e, 0xbf, 0x87, 0x87, 0x0a, }, - { 0x6f, 0x9b, 0xb4, 0x20, 0x3d, 0xe7, 0xb3, 0x81, }, - { 0xea, 0xec, 0xb2, 0xa3, 0x0b, 0x22, 0xa8, 0x7f, }, - { 0x99, 0x24, 0xa4, 0x3c, 0xc1, 0x31, 0x57, 0x24, }, - { 0xbd, 0x83, 0x8d, 0x3a, 0xaf, 0xbf, 0x8d, 0xb7, }, - { 0x0b, 0x1a, 0x2a, 0x32, 0x65, 0xd5, 0x1a, 0xea, }, - { 0x13, 0x50, 0x79, 0xa3, 0x23, 0x1c, 0xe6, 0x60, }, - { 0x93, 0x2b, 0x28, 0x46, 0xe4, 0xd7, 0x06, 0x66, }, - { 0xe1, 0x91, 0x5f, 0x5c, 0xb1, 0xec, 0xa4, 0x6c, }, - { 0xf3, 0x25, 0x96, 0x5c, 0xa1, 0x6d, 0x62, 0x9f, }, - { 0x57, 0x5f, 0xf2, 0x8e, 0x60, 0x38, 0x1b, 0xe5, }, - { 0x72, 0x45, 0x06, 0xeb, 0x4c, 0x32, 0x8a, 0x95, }, -}; - - -/* Test siphash using a test vector. Returns 0 if the function passed - * all the tests, otherwise 1 is returned. - * - * IMPORTANT: The test vector is for SipHash 2-4. Before running - * the test revert back the siphash() function to 2-4 rounds since - * now it uses 1-2 rounds. */ -int siphash_test(void) { - uint8_t in[64], k[16]; - int i; - int fails = 0; - - for (i = 0; i < 16; ++i) - k[i] = i; - - for (i = 0; i < 64; ++i) { - in[i] = i; - uint64_t hash = siphash(in, i, k); - const uint8_t *v = NULL; - v = (uint8_t *)vectors_sip64; - if (memcmp(&hash, v + (i * 8), 8)) { - /* printf("fail for %d bytes\n", i); */ - fails++; - } - } - - /* Run a few basic tests with the case insensitive version. */ - uint64_t h1, h2; - h1 = siphash((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); - h2 = siphash_nocase((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); - if (h1 != h2) fails++; - - h1 = siphash((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); - h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); - if (h1 != h2) fails++; - - h1 = siphash((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); - h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); - if (h1 == h2) fails++; - - if (!fails) return 0; - return 1; -} - -int main(void) { - if (siphash_test() == 0) { - printf("SipHash test: OK\n"); - return 0; - } else { - printf("SipHash test: FAILED\n"); - return 1; - } -} - -#endif diff --git a/sno.h b/sno.h deleted file mode 100644 index eebb297..0000000 --- a/sno.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef SNO_H -#define SNO_H - -/* Density of heavy water at 10 degrees Celsius. - * - * From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */ -#define HEAVY_WATER_DENSITY 1.10595 - -/* Density of regular water at 10 degrees Celsius. - * - * From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */ -#define WATER_DENSITY 0.99973 - -/* Radius of the AV in mm. */ -#define AV_RADIUS_INNER 6005.0 -#define AV_RADIUS_OUTER 6060.0 -#define AV_RADIUS 6032.5 - -#endif diff --git a/sno_charge.c b/sno_charge.c deleted file mode 100644 index faf7826..0000000 --- a/sno_charge.c +++ /dev/null @@ -1,246 +0,0 @@ -#include "sno_charge.h" -#include -#include -#include -#include -#include -#include -#include "misc.h" - -#define MAX_PE 10 - -double qlo = -1.0; -double qhi = 100.0; -size_t nq = 10000; -static gsl_spline *splines[MAX_PE]; -static gsl_interp_accel *acc; - -static double qmean, qstd; - -static double pmiss[MAX_PE]; - -static int initialized = 0; - -/* Parameters for the single PE charge distribution. These numbers come from - * mc_generator.dat in SNOMAN 5.0294. */ - -/* Polya parameter. */ -static double M = 8.1497; -/* Amplitude of 1st Polya. */ -static double NG1 = 0.27235e-1; -/* Slope of Polya Gain 1 vs. high-half point. */ -static double SLPG1 = 0.71726; -/* Offset of Polya Gain 1 vs. high-half point. */ -static double OFFG1 = 1.2525; -/* Amplitude of 2nd Polya. */ -static double NG2 = 0.7944e-3; -/* Slope of Polya Gain 2 vs. high-half point. */ -static double SLPG2 = 0.71428; -/* Offset of Polya Gain 2 vs. high-half point. */ -static double OFFG2 = 118.21; -/* Amplitude of exponential noise peak. */ -static double NEXP = 0.81228e-1; -/* Falloff parameter of exponential noise peak. */ -static double Q0 = 20.116; -/* Mean of high-half point distribution. */ -static double MEAN_HIPT = 46.0; -/* Width of noise before discriminator in ADC counts. */ -static double QNOISE = 0.61; -/* Width of smearing after discriminator in ADC counts. */ -static double QSMEAR_ADC = 3.61; -/* Mean of simulated threshold distribution. */ -static double MEAN_THRESH = 8.5; - -double spe_pol2exp(double q) -{ - /* Returns the probability distribution to get a charge `q` on a PMT with a - * high-half point `hhp` from a single photoelectron. - * - * We assume that the charge has been normalized by the high-half point. - * - * This function models the single PE charge distribution as a double Polya - * with an exponential noise term. */ - double qpe1, qpe2, funpol1, funpol2, gmratio, g1, g2, norm, hhp; - - if (q < 0) return 0.0; - - hhp = MEAN_HIPT; - - q *= MEAN_HIPT; - - g1 = OFFG1 + SLPG1*hhp; - g2 = OFFG2 + SLPG2*hhp; - - qpe1 = q/g1; - qpe2 = q/g2; - - funpol1 = pow(M*qpe1,M-1)*exp(-M*qpe1); - funpol2 = pow(M*qpe2,M-1)*exp(-M*qpe2); - - gmratio = M/gsl_sf_gamma(M); - - norm = (NG1*g1 + NG2*g2 + NEXP*Q0)/MEAN_HIPT; - - return (gmratio*(NG1*funpol1 + NG2*funpol2) + NEXP*exp(-q/Q0))/norm; -} - -double pq(double q, int n) -{ - if (!initialized) { - fprintf(stderr, "charge interpolation hasn't been initialized!\n"); - exit(1); - } - - if (n > MAX_PE) { - /* Assume the distribution is gaussian by the central limit theorem. */ - return norm(q,n*qmean,qstd); - } - - if (q < qlo || q > qhi) return 0.0; - - return gsl_spline_eval(splines[n-1], q, acc); -} - -double get_pmiss(int n) -{ - if (!initialized) { - fprintf(stderr, "charge interpolation hasn't been initialized!\n"); - exit(1); - } - - if (n == 0) { - return 1.0; - } else if (n > MAX_PE) { - /* Assume the distribution is gaussian by the central limit theorem. */ - return 0.0; - } - - return pmiss[n-1]; -} - -static double gsl_charge(double x, void *params) -{ - double q = ((double *) params)[0]; - int n = (int) ((double *) params)[1]; - - return pq(x,1)*pq(q-x,n-1); -} - -static double gsl_charge2(double x, void *params) -{ - int n = (int) ((double *) params)[0]; - - return pq(x,n); -} - -static double gsl_smear(double x, void *params) -{ - double q = ((double *) params)[0]; - int n = (int) ((double *) params)[1]; - - return pq(x,n)*norm(q-x,0.0,QSMEAR_ADC/MEAN_HIPT); -} - -static double sno_charge1(double q, void *params) -{ - return q*spe_pol2exp(q); -} - -static double sno_charge2(double q, void *params) -{ - return q*q*spe_pol2exp(q); -} - -void init_charge(void) -{ - int i, j; - gsl_integration_cquad_workspace *w; - double result, error; - size_t nevals; - double *x, *y; - double params[2]; - gsl_function F; - double q, q2; - - initialized = 1; - - x = malloc(nq*sizeof(double)); - y = malloc(nq*sizeof(double)); - - for (i = 0; i < nq; i++) { - x[i] = qlo + (qhi-qlo)*i/(nq-1); - } - - w = gsl_integration_cquad_workspace_alloc(100); - - F.function = &sno_charge1; - F.params = NULL; - - gsl_integration_cquad(&F, 0, qhi, 0, 1e-9, w, &result, &error, &nevals); - q = result; - - F.function = &sno_charge2; - F.params = NULL; - - gsl_integration_cquad(&F, 0, qhi, 0, 1e-9, w, &result, &error, &nevals); - q2 = result; - - qmean = q; - qstd = sqrt(q2 - q*q); - - F.function = &gsl_charge; - F.params = ¶ms; - - acc = gsl_interp_accel_alloc(); - - splines[0] = gsl_spline_alloc(gsl_interp_linear,nq); - for (j = 0; j < nq; j++) { - y[j] = spe_pol2exp(x[j]); - } - gsl_spline_init(splines[0],x,y,nq); - - for (i = 2; i <= MAX_PE; i++) { - splines[i-1] = gsl_spline_alloc(gsl_interp_linear,nq); - for (j = 0; j < nq; j++) { - params[0] = x[j]; - params[1] = i; - if (x[j] < 0) { - y[j] = 0.0; - continue; - } - gsl_integration_cquad(&F, 0, x[j], 0, 1e-4, w, &result, &error, &nevals); - y[j] = result; - } - gsl_spline_init(splines[i-1],x,y,nq); - } - - /* Integrate the charge distribution before smearing to figure out the - * probability that the discriminator didn't fire. - * - * Note: Technically there is some smearing before the discriminator, but - * it is very small, so we ignore it. */ - F.function = &gsl_charge2; - for (i = 1; i <= MAX_PE; i++) { - params[0] = i; - gsl_integration_cquad(&F, 0, MEAN_THRESH/MEAN_HIPT, 0, 1e-9, w, &result, &error, &nevals); - pmiss[i-1] = result; - } - - F.function = &gsl_smear; - - for (i = 1; i <= MAX_PE; i++) { - for (j = 0; j < nq; j++) { - params[0] = x[j]; - params[1] = i; - gsl_integration_cquad(&F, x[j]-QSMEAR_ADC*10/MEAN_HIPT, x[j]+QSMEAR_ADC*10/MEAN_HIPT, 0, 1e-4, w, &result, &error, &nevals); - y[j] = result; - } - gsl_spline_free(splines[i-1]); - splines[i-1] = gsl_spline_alloc(gsl_interp_linear,nq); - gsl_spline_init(splines[i-1],x,y,nq); - } - - gsl_integration_cquad_workspace_free(w); - free(x); - free(y); -} diff --git a/sno_charge.h b/sno_charge.h deleted file mode 100644 index 545fdd2..0000000 --- a/sno_charge.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef SNO_CHARGE_H -#define SNO_CHARGE_H - -void init_charge(void); -double pq(double q, int n); -double get_pmiss(int n); -double spe_pol2exp(double q); - -#endif diff --git a/solid_angle.c b/solid_angle.c deleted file mode 100644 index 4e44413..0000000 --- a/solid_angle.c +++ /dev/null @@ -1,115 +0,0 @@ -#include "solid_angle.h" -#include -#include -#include -#include - -static double hd[11] = {0.1,0.125,0.150,0.175,0.2,0.3,0.4,0.5,0.6,0.8,1.0}; -static double Rd[13] = {0.1,0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2,1.3,1.4,1.5,2.0}; - -static double lookupTable[13][11] = { -{0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9997,1.0000,1.0003}, -{1.0340,1.0334,1.0325,1.0316,1.0306,1.0257,1.0202,1.0150,1.0108,1.0059,1.0058}, -{1.0836,1.0814,1.0788,1.0758,1.0725,1.0578,1.0429,1.0300,1.0201,1.0091,1.0072}, -{1.1789,1.1718,1.1635,1.1546,1.1452,1.1067,1.0733,1.0480,1.0303,1.0122,1.0083}, -{1.3626,1.3375,1.3107,1.2837,1.2572,1.1669,1.1045,1.0642,1.0388,1.0147,1.0092}, -{1.7390,1.6319,1.5384,1.4590,1.3923,1.2167,1.1212,1.0737,1.0437,1.0163,1.0097}, -{2.2382,1.9036,1.6924,1.5489,1.4458,1.2241,1.1262,1.0742,1.0444,1.0170,1.0101}, -{1.7336,1.5812,1.4741,1.3945,1.3331,1.1850,1.1103,1.0676,1.0418,1.0170,1.0102}, -{1.2190,1.2218,1.2151,1.2032,1.1889,1.1314,1.0876,1.0575,1.0375,1.0165,1.0102}, -{1.0806,1.0920,1.0990,1.1023,1.1026,1.0880,1.0662,1.0471,1.0325,1.0157,1.0102}, -{1.0390,1.0464,1.0523,1.0566,1.0594,1.0591,1.0494,1.0380,1.0279,1.0148,1.0100}, -{1.0222,1.0270,1.0311,1.0345,1.0371,1.0408,1.0371,1.0305,1.0237,1.0138,1.0098}, -{1.0041,1.0051,1.0061,1.0070,1.0078,1.0106,1.0120,1.0122,1.0116,1.0097,1.0084} -}; - -static double A(double u, double a, double h) -{ - return atan(((a*a-h*h)*u - 2*a*a*h*h)/(2*a*h*sqrt((u-h*h)*(u+a*a)))); -} - -double get_solid_angle_approx(double *pos, double *pmt, double *n, double r) -{ - /* Returns the approximate solid angle subtended by a circular disk of - * radius r at a position `pmt` with a normal vector `n` from a position - * `pos`. - * - * This approximation comes from calculating the solid angle subtended by a - * square of equal area, which has a closed form solution. For certain - * regimes, the approximation is not very good and so it is modified by a - * correction factor which comes from a lookup table. - * - * This formula comes from "The Solid Angle Subtended at a Point by a * Circular Disk." Gardener et al. 1969. */ - double dir[3]; - double h, r0, D, a, u1, u2, F; - static gsl_spline2d *spline; - static gsl_interp_accel *xacc; - static gsl_interp_accel *yacc; - - dir[0] = pos[0] - pmt[0]; - dir[1] = pos[1] - pmt[1]; - dir[2] = pos[2] - pmt[2]; - - h = fabs(dir[0]*n[0] + dir[1]*n[1] + dir[2]*n[2]); - D = sqrt(dir[0]*dir[0] + dir[1]*dir[1] + dir[2]*dir[2]); - r0 = sqrt(D*D - h*h); - - a = sqrt(M_PI)*r/2; - - u1 = h*h + pow(r0-a,2); - u2 = h*h + pow(r0+a,2); - - F = 1.0; - if (h/D > 0.1 && h/D < 1.0 && r/D > 0.1 && r/D < 2.0) { - if (!spline) { - spline = gsl_spline2d_alloc(gsl_interp2d_bilinear, sizeof(hd)/sizeof(double), sizeof(Rd)/sizeof(double)); - gsl_spline2d_init(spline, hd, Rd, (double *) lookupTable, sizeof(hd)/sizeof(double), sizeof(Rd)/sizeof(double)); - } - if (!xacc) xacc = gsl_interp_accel_alloc(); - if (!yacc) xacc = gsl_interp_accel_alloc(); - F = gsl_spline2d_eval(spline,h/D,r/D,xacc,yacc); - } - - if (r0 < a) { - return F*(A(u1,a,h) + A(u2,a,h) + M_PI); - } else { - return F*(A(u2,a,h) - A(u1,a,h)); - } -} - -double get_solid_angle(double *pos, double *pmt, double *n, double r) -{ - /* Returns the solid angle subtended by a circular disk of radius r at a - * position `pmt` with a normal vector `n` from a position `pos`. - * - * See http://www.umich.edu/~ners312/CourseLibrary/SolidAngleOfADiskOffAxis.pdf. */ - double dir[3]; - double L, r0, R, a2, k, Rmax, K, P; - - dir[0] = pos[0] - pmt[0]; - dir[1] = pos[1] - pmt[1]; - dir[2] = pos[2] - pmt[2]; - - L = fabs(dir[0]*n[0] + dir[1]*n[1] + dir[2]*n[2]); - R = sqrt(dir[0]*dir[0] + dir[1]*dir[1] + dir[2]*dir[2]); - r0 = sqrt(R*R - L*L); - - a2 = 4*r0*r/pow(r0+r,2); - Rmax = sqrt(L*L + (r0+r)*(r0+r)); - k = sqrt(4*r0*r/(L*L + pow(r0+r,2))); - - if (fabs(r0-r) < 1e-5) { - /* If r0 is very close to r, the GSL routines below will occasionally - * throw a domain error. */ - K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); - return M_PI - 2*L*K/Rmax; - } else if (r0 <= r) { - K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); - P = gsl_sf_ellint_Pcomp(k, -a2, GSL_PREC_DOUBLE); - return 2*M_PI - 2*L*K/Rmax + (2*L/Rmax)*(r0-r)*P/(r0+r); - } else { - K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); - P = gsl_sf_ellint_Pcomp(k, -a2, GSL_PREC_DOUBLE); - return -2*L*K/Rmax + (2*L/Rmax)*(r0-r)*P/(r0+r); - } -} diff --git a/solid_angle.h b/solid_angle.h deleted file mode 100644 index aacb692..0000000 --- a/solid_angle.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef SOLID_ANGLE_H -#define SOLID_ANGLE_H - -#include - -double get_solid_angle_approx(double *pos, double *pmt, double *n, double r); -double get_solid_angle(double *pos, double *pmt, double *n, double r); - -#endif diff --git a/src/DQXX_0000010000.dat b/src/DQXX_0000010000.dat new file mode 100644 index 0000000..cc9e35c --- /dev/null +++ b/src/DQXX_0000010000.dat @@ -0,0 +1,11614 @@ +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 0 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 0, Card 0 +#x8191045a +#x6f770000 +#x757c0420 +#x878f0440 +#x88910000 +#x757b0420 +#x7980063a +#x868e0418 +#x767e0000 +#x858b0000 +#x82890000 +#x6e750000 +#x71790000 +#x8a920000 +#x80890000 +#x6f7b0000 +#x79860000 +#x737e0000 +#x75830000 +#x7a860000 +#x79840000 +#x737d0000 +#x78830000 +#x7e8c0000 +#x727a0000 +#x777e0000 +#x7c830000 +#x72790000 +#x747b0000 +#x7a800000 +#x72780000 +#x767f0000 +#. Crate 0, Card 1 +#x7a870000 +#x6c730000 +#x797f0000 +#x80890000 +#x8b920000 +#x73790000 +#x6e740420 +#x81890000 +#x7a800000 +#x787e0000 +#x79800000 +#x777d0000 +#x81890000 +#x747a0000 +#x6c760000 +#x7f8a0418 +#x757e0000 +#x7c830000 +#x7b840000 +#x6e770000 +#x7d850000 +#x70760000 +#x6e750000 +#x818a0418 +#x858b0000 +#x6e740000 +#x6e750000 +#x7d830418 +#x6f750000 +#x7a800000 +#x7c830000 +#x707b0000 +#. Crate 0, Card 2 +#x7988041c +#x747a045c +#x767c047c +#x737b041c +#x767c043c +#x848b041c +#x7c82041c +#x7279041c +#x777f063d +#x7f85061f +#x767d043c +#x787e041c +#x757d041c +#x7980041c +#x7781041c +#x7784041c +#x717b041c +#x8389041c +#x7f88041c +#x757d043c +#x9199043c +#x7278043c +#x696f041c +#x828b041c +#x747b043c +#x8389043c +#x7e84041c +#x6e74041c +#x8d94043c +#x757e043c +#x6f76043c +#x8693041c +#. Crate 0, Card 3 +#x727e0440 +#x7c830000 +#x78800420 +#x757c0000 +#x8a920000 +#x73790000 +#x6e740000 +#x838c0000 +#x7e850000 +#x72780000 +#x71780000 +#x81880420 +#x818a0000 +#x787f0420 +#x6d750420 +#x7a870420 +#x7f890420 +#x71770000 +#x767e0000 +#x858c0420 +#x727a0000 +#x777d0000 +#x79800000 +#x76800420 +#x8897067a +#x787f0000 +#x6e750000 +#x848b0000 +#x888e0000 +#x747b0000 +#x71770420 +#x86900000 +#. Crate 0, Card 4 +#x84900000 +#x747b0000 +#x747b0000 +#x82890000 +#x838b0000 +#x6e750000 +#x757e0000 +#x888f0000 +#x8b930000 +#x72780000 +#x747b0420 +#x8b920000 +#x8b940000 +#x71780000 +#x747d0000 +#x8c980420 +#x757e0420 +#x888e0000 +#x858e0000 +#x777e0000 +#x767d0000 +#x868c0000 +#x82880000 +#x79820000 +#x797f0000 +#x7379061a +#x777d0000 +#x777d0000 +#x777d0000 +#x787e0000 +#x7c820000 +#x767f0000 +#. Crate 0, Card 5 +#x78850420 +#x7a840000 +#x7a800000 +#x787e0440 +#x777d0000 +#x7e840000 +#x757b0000 +#x767e0000 +#x7e860000 +#x79800000 +#x80870000 +#x7e850000 +#x838b0000 +#x82890420 +#x7a830000 +#x7d8a0420 +#x77800000 +#x767c0420 +#x727b0000 +#x787f0000 +#x79810000 +#x747a0420 +#x71770000 +#x737d0420 +#x747a0000 +#x767c0420 +#x747a0000 +#x767c0000 +#x757b0000 +#x7b810420 +#x747a0000 +#x727d0000 +#. Crate 0, Card 6 +#x7f8b0420 +#x6e740000 +#x6f750000 +#x7e840418 +#x757e0000 +#x888e0420 +#x7f860000 +#x717a0000 +#x868f0420 +#x70770420 +#x6a72061a +#x82890000 +#x87920000 +#x69700420 +#x6e770000 +#x89950000 +#x747d0420 +#x757c0000 +#x7c870000 +#x777f0000 +#x808a0000 +#x686e0420 +#x70790000 +#x858f0000 +#x71770000 +#x80870000 +#x858c0000 +#x747a0000 +#x72780000 +#x767d0000 +#x6f760000 +#x72800000 +#. Crate 0, Card 7 +#x78870000 +#x757c0000 +#x737b0000 +#x7a820000 +#x767e0000 +#x777f0000 +#x7a810000 +#x7b820000 +#x70780000 +#x89900000 +#x88900000 +#x73790000 +#x757e0000 +#x7d840000 +#x7b840000 +#x7a860000 +#x919a0000 +#x787e0000 +#x6a730000 +#x82890000 +#x8f960000 +#x757b0000 +#x6f760000 +#x858f0000 +#x777d0000 +#x89900000 +#x80860000 +#x72780000 +#x767c0000 +#x8a900440 +#x82890000 +#x717c0000 +#. Crate 0, Card 8 +#x79860000 +#x838b0000 +#x868f0000 +#x757f0000 +#x767f0000 +#x868f0000 +#x818a0000 +#x737a0000 +#x848c0000 +#x6f760000 +#x7c840000 +#x89900000 +#x70780000 +#x878e0000 +#x858d0000 +#x74810000 +#x828b0000 +#x70770420 +#x6e780000 +#x7b820420 +#x8b940420 +#x787f0420 +#x737b0000 +#x7f880420 +#x72780000 +#x7d830000 +#x898f0000 +#x73790000 +#x7179061a +#x81870000 +#x868c0000 +#x76800000 +#. Crate 0, Card 9 +#x7f8d0000 +#x747b0000 +#x757d0000 +#x7e860000 +#x7e860000 +#x7b820000 +#x767e0000 +#x7e850000 +#x8c940000 +#x71780000 +#x717a0000 +#x888e0000 +#x78810000 +#x787f0000 +#x757f0000 +#x77840000 +#x78810000 +#x757b0000 +#x737d0000 +#x777f0000 +#x78800000 +#x7a800000 +#x69700000 +#x757f0000 +#x898f0000 +#x777d0000 +#x868c0000 +#x8e940000 +#x838b0000 +#x73790000 +#x747a0000 +#x86900418 +#. Crate 0, Card 10 +#x73800000 +#x70760000 +#x72790000 +#x7c850000 +#x6a700000 +#x80860000 +#x868c0000 +#x6a770420 +#x79820000 +#x7a800000 +#x6e770420 +#x777f0420 +#x80880000 +#x7d830000 +#x75800000 +#x77830420 +#x6b740000 +#x737a0420 +#x747f0000 +#x737a0000 +#x79800000 +#x747b0420 +#x737b0000 +#x76800000 +#x71780420 +#x6f760420 +#x777d0420 +#x6e750420 +#x70770420 +#x6e740000 +#x6d740000 +#x74820000 +#. Crate 0, Card 11 +#x727d0000 +#x7a800000 +#x868e0000 +#x7a810418 +#x717b0000 +#x7b840000 +#x868e0000 +#x7d850418 +#x81890000 +#x6e750000 +#x757d0000 +#x848b0000 +#x7e870420 +#x70780000 +#x767f0000 +#x808d0000 +#x7e870000 +#x70770000 +#x727c0000 +#x818a0000 +#x7d840000 +#x767d0000 +#x79810000 +#x7b860000 +#x73790420 +#x82880000 +#x868c0000 +#x73790000 +#x757b0000 +#x787e0000 +#x787e0000 +#x76820000 +#. Crate 0, Card 12 +#x79860000 +#x7c860000 +#x78800000 +#x757d0000 +#x78800000 +#x777d0000 +#x7c840000 +#x7c830000 +#x72790000 +#x767c0000 +#x71780000 +#x737a0000 +#x7b820000 +#x7d830000 +#x757e0000 +#x737f0000 +#x8a940000 +#x787e0000 +#x717b0000 +#x7f860000 +#x7d830000 +#x747a0000 +#x6f760000 +#x747d0000 +#x777e0000 +#x767c0000 +#x71780000 +#x767d0000 +#x797f0000 +#x6f770420 +#x73790000 +#x7b860418 +#. Crate 0, Card 13 +#x75820000 +#x80870000 +#x878d0000 +#x797f0000 +#x77800000 +#x848b0000 +#x888f0460 +#x777f0000 +#x727b0000 +#x777e0000 +#x7f860000 +#x777d0000 +#x7a810000 +#x787f0000 +#x777f0000 +#x7b870000 +#x78820619 +#x73790000 +#x717b0000 +#x727a0000 +#x7a800000 +#x747b0000 +#x7a810000 +#x7e880000 +#x7c820000 +#x797f0000 +#x757b0000 +#x797f0000 +#x757b0000 +#x868c0000 +#x8c920000 +#x7a830000 +#. Crate 0, Card 14 +#x75870000 +#x838b0000 +#x7b820000 +#x727b0000 +#x787f0000 +#x7a810000 +#x757c0000 +#x787f0000 +#x757d0000 +#x79800000 +#x717a0000 +#x737a0000 +#x7b820000 +#x6d740000 +#x79820420 +#x7e8a0000 +#x87900000 +#x6e740000 +#x6d770000 +#x878e0000 +#x8d950000 +#x79ff061a +#x6c730000 +#x858e0000 +#x898f0000 +#x73790000 +#x6d730000 +#x888e0000 +#x80860000 +#x6d740000 +#x72780000 +#x8b950000 +#. Crate 0, Card 15 +#x87930000 +#x78800000 +#x6f790000 +#x86900000 +#x8c950000 +#x737b0000 +#x77800000 +#x868f0000 +#x747c0000 +#x747b0000 +#x777f0679 +#x70780000 +#x71790000 +#x757d0000 +#x7b830000 +#x6e7a0000 +#x727c0000 +#x747b0000 +#x79840000 +#x737b0000 +#x747d0000 +#x7c840000 +#x878f0000 +#x7f8a0000 +#x7c850000 +#x727b0000 +#x717a0000 +#x7a830000 +#x7b830000 +#x71790420 +#x71780619 +#x7b850000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 0 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 0 +#x083d0000 +#x083d0000 +#x083df100 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#x083d0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 1 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 1, Card 0 +#x80940000 +#x76830000 +#x7a830000 +#x79800000 +#x71790000 +#x888f0000 +#x8a920420 +#x717a0000 +#x848c0000 +#x6c720000 +#x747b0000 +#x888f0000 +#x7d850000 +#x868d0000 +#x80890639 +#x73800000 +#x8c960000 +#x747b0000 +#x6f79061a +#x7f870000 +#x7a830000 +#x787f0000 +#x767d0000 +#x7c860000 +#x777d0000 +#x7f850000 +#x868c0460 +#x7e840000 +#x777e0000 +#x6f750000 +#x757b0000 +#x7d890000 +#. Crate 1, Card 1 +#x92a20000 +#x767e0000 +#x737c0000 +#x8c950000 +#x8d950000 +#x70790000 +#x767c0000 +#x8b940000 +#x78810000 +#x7c830000 +#x767f0000 +#x757c0000 +#x81890000 +#x71780000 +#x717b0000 +#x7c8a0000 +#x8e970000 +#x747b0000 +#x6f790000 +#x868d0000 +#x7f88061a +#x80860000 +#x747c0000 +#x808a0000 +#x848a0000 +#x7f860000 +#x7a820440 +#x80880000 +#x7c840000 +#x7d850000 +#x7a810000 +#x818e0000 +#. Crate 1, Card 2 +#x7d8b0000 +#x646e0000 +#x727a0000 +#x838a0000 +#x767e0000 +#x858d0000 +#x82880000 +#x7b820000 +#x7d850000 +#x767d0000 +#x717c0000 +#x79800000 +#x8e990420 +#x777e0420 +#x707a0420 +#x85920420 +#x808a0000 +#x6c730000 +#x737c0000 +#x80870000 +#x7d850000 +#x73790000 +#x727a0000 +#x757f0000 +#x80870420 +#x70760000 +#x7b810000 +#x80860000 +#x7e850000 +#x7b820000 +#x777e0000 +#x79850000 +#. Crate 1, Card 3 +#x74810440 +#x72790420 +#x6d750000 +#x727d0420 +#x707a0000 +#x707a0000 +#x747b0000 +#x727b0418 +#x7b830000 +#x82890000 +#x7b830000 +#x6c720418 +#x737d0000 +#x787f0000 +#x727c0000 +#x77820000 +#x757f0000 +#x7a800000 +#x78810000 +#x747c0000 +#x77810440 +#x82880000 +#x80860420 +#x6f790418 +#x71770000 +#x6e740000 +#x70770000 +#x79800420 +#x777e0000 +#x72780000 +#x767c0000 +#x75820000 +#. Crate 1, Card 4 +#x72810000 +#x82880000 +#x79820000 +#x727b0000 +#x737a0000 +#x7a800000 +#x79800000 +#x70780420 +#x868e0000 +#x6d730000 +#x6f760000 +#x7e840000 +#x6e750000 +#x79800000 +#x777f0000 +#x717d0000 +#x7d870000 +#x78800420 +#x747d0460 +#x777f0000 +#x7c850000 +#x747a0000 +#x72790000 +#x7a830420 +#x767c0000 +#x777d0000 +#x767f0000 +#x757c0000 +#x737a0000 +#x797f0000 +#x767d0000 +#x75820000 +#. Crate 1, Card 5 +#x88960000 +#x767d0000 +#x707b0000 +#x848a0420 +#x767e0000 +#x7f890000 +#x7c830000 +#x727a0000 +#x727a0000 +#x7e850000 +#x787f0420 +#x767d0000 +#x848d0639 +#x767d0000 +#x6d770000 +#x7d8c0000 +#x8b940000 +#x757c0000 +#x737d0000 +#x81890000 +#x757d0000 +#x747c0000 +#x767f0000 +#x838d0000 +#x797f0000 +#x777e0000 +#x77800000 +#x787f0000 +#x7c830000 +#x7b820000 +#x767e0000 +#x7c890420 +#. Crate 1, Card 6 +#x8e9c0420 +#x828e0420 +#x818c0420 +#x868f0000 +#x777e0000 +#x727d0000 +#x727a0000 +#x7a850000 +#x838a0000 +#x70790000 +#x737c0000 +#x81880000 +#x7d860000 +#x6c730000 +#x727d0000 +#x7f8b065a +#x79810000 +#x767c0000 +#x77810000 +#x7c830000 +#x7f8a0000 +#x6f750000 +#x72790000 +#x919a0418 +#x787e0000 +#x767d0000 +#x757c0000 +#x747b0000 +#x797f0000 +#x737b0000 +#x757d0000 +#x74820000 +#. Crate 1, Card 7 +#x8f9d0000 +#x787f0000 +#x6b730000 +#x80880000 +#x8a940000 +#x747a0000 +#x6b710000 +#x858d0000 +#x848c0000 +#x69700000 +#x6e750000 +#x7d830000 +#x838d0000 +#x737a0000 +#x6f780000 +#x7f8b0000 +#x767f0000 +#x8a900000 +#x818b0000 +#x6e750000 +#x7e860000 +#x70760000 +#x71780000 +#x79830000 +#x767c0000 +#x79810000 +#x7c840000 +#x777f0000 +#x79800000 +#x727a0000 +#x6f750000 +#x74800000 +#. Crate 1, Card 8 +#x73830000 +#x7b830418 +#x878f0000 +#x7d850000 +#x747d0000 +#x7e850000 +#x878f0000 +#x777f0418 +#x89920000 +#x6d740000 +#x6e750000 +#x8c930000 +#x89930000 +#x737b0000 +#x707c0000 +#x7f8d0000 +#x737d0000 +#x79810000 +#x7a840000 +#x78800000 +#x717a0000 +#x787e0000 +#x82880000 +#x757f0418 +#x797f0000 +#x757b0000 +#x747a0000 +#x787f0000 +#x70760000 +#x757b0000 +#x757b0000 +#x6f7b0000 +#. Crate 1, Card 9 +#x78880000 +#x757e0000 +#x737d0000 +#x747b0000 +#x7d860000 +#x737a0000 +#x71780000 +#x79820000 +#x727a0000 +#x818a0000 +#x87900000 +#x757b0000 +#x88910000 +#x757d0000 +#x80890000 +#x8d9a0000 +#x78820000 +#x767d0000 +#x78810000 +#x7c840000 +#x79810000 +#x7a810000 +#x787f0000 +#x78810000 +#x7a810000 +#x71770000 +#x7079061a +#x78810000 +#x858b0000 +#x6e750000 +#x737b0000 +#x86920000 +#. Crate 1, Card 10 +#x8b9a0000 +#x747d0000 +#x6c760000 +#x838c0000 +#x828a0000 +#x7a820000 +#x767e0000 +#x858d0000 +#x7b830000 +#x777e0000 +#x77800000 +#x7a810000 +#x7d840000 +#x737a0000 +#x727c0000 +#x84910000 +#x77800000 +#x747a0000 +#x7b840000 +#x767d0000 +#x747b0000 +#x81870000 +#x868f0000 +#x7d870000 +#x80860000 +#x71770000 +#x777e0000 +#x878d0000 +#x848b0000 +#x737c0000 +#x7a810000 +#x8b990000 +#. Crate 1, Card 11 +#x75840000 +#x757d0000 +#x81880000 +#x6f760000 +#x777e0000 +#x8e950000 +#x82890000 +#x71790000 +#x828a0000 +#x6e750000 +#x767d0000 +#x8f960000 +#x7e860000 +#x79800000 +#x79830000 +#x7b880000 +#x7d870000 +#x72790000 +#x909a0000 +#x78810000 +#x737a0000 +#x81870000 +#x89900000 +#x727b0420 +#x878d0000 +#x72790420 +#x707a063a +#x7d880420 +#x7e840000 +#x757d0000 +#x767e0000 +#x838f0420 +#. Crate 1, Card 12 +#x7f8c0000 +#x747a0420 +#x6c740000 +#x7a840000 +#x70790000 +#x767e0000 +#x7f860000 +#x79800420 +#x7b830000 +#x6f760000 +#x767f0420 +#x848b0000 +#x7f860000 +#x6e750000 +#x79820000 +#x86920000 +#x90990000 +#x747a0420 +#x757e0000 +#x80880000 +#x7a820000 +#x80870000 +#x7c830000 +#x78810000 +#x77810000 +#x787e0000 +#x7a800420 +#x7a810000 +#x767c0000 +#x787f0000 +#x737a0000 +#x74810000 +#. Crate 1, Card 13 +#x84940000 +#x707c0000 +#x7a840000 +#x84900000 +#x757c0000 +#x7b830000 +#x7b860000 +#x737b0000 +#x858e0000 +#x737d0000 +#x747f0000 +#x838c0000 +#x86900000 +#x767c0000 +#x747f0000 +#x86920000 +#x88900000 +#x757c0000 +#x727b0000 +#x7f860000 +#x7c840000 +#x6e740000 +#x6e750000 +#x838d0000 +#x7c840000 +#x7c840000 +#x7a810000 +#x777e0000 +#x8b920000 +#x757e0000 +#x707b0000 +#x7f8b0000 +#. Crate 1, Card 14 +#x79860000 +#x78830000 +#x77810000 +#x7c8b0000 +#x83900000 +#x747f0000 +#x76820000 +#x81890000 +#x84900000 +#x70790000 +#x7e880000 +#x8c940000 +#x757d0000 +#x888f0000 +#x8a920639 +#x727f0000 +#x858d0000 +#x72780000 +#x747d0000 +#x8c940000 +#x7e870000 +#x767e0000 +#x78820000 +#x7d870000 +#x86900000 +#x737d0000 +#x78820000 +#x8a940000 +#x919b0000 +#x77810000 +#x767c0000 +#x88940000 +#. Crate 1, Card 15 +#x73800000 +#x7b840000 +#x7c860000 +#x77830000 +#x747c0000 +#x88920000 +#x80880000 +#x70770000 +#x7e850000 +#x737c0000 +#x727a0000 +#x7f860000 +#x7d850000 +#x7a810000 +#x7c850000 +#x78840000 +#x767f0000 +#x797f0000 +#x757e0000 +#x787f0000 +#x747b0000 +#x6d750000 +#x6f760000 +#x77810000 +#x7b830420 +#x747a0000 +#x767d0000 +#x767d0000 +#x757c0000 +#x757d0000 +#x777d0619 +#x78830000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 1 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 1 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 2 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 2, Card 0 +#x808f0000 +#x737b0000 +#x787f0000 +#x7b840000 +#x78800000 +#x78800000 +#x767c0000 +#x757d0000 +#x8a920000 +#x7b820000 +#x70780000 +#x7f860000 +#x8a920000 +#x737a0000 +#x70790000 +#x818d0000 +#x79840000 +#x7a800000 +#x757d0000 +#x7b830000 +#x828a0000 +#x747b0000 +#x747c0000 +#x7d870000 +#x747c0000 +#x7c830000 +#x7a820000 +#x7a800000 +#x888e0000 +#x727a0000 +#x70780000 +#x7f8b0000 +#. Crate 2, Card 1 +#x82910000 +#x6c730000 +#x737f0000 +#x888f0000 +#x727b0000 +#x878d0000 +#x848b0000 +#x747f0000 +#x727c0000 +#x7e850000 +#x868f0000 +#x757d0000 +#x8e990000 +#x71780000 +#x707a0000 +#x7f8d0000 +#x76810000 +#x8a910000 +#x838e0000 +#x727a0000 +#x7a850000 +#x858c0000 +#x82880000 +#x6f790000 +#x87910000 +#x72790000 +#x767f0000 +#x919a0000 +#x7d840000 +#x76810000 +#x7d850000 +#x7d890000 +#. Crate 2, Card 2 +#x77850000 +#x7d850440 +#x7b840000 +#x757f0000 +#x818e0000 +#x77840000 +#x70780000 +#x7f8a0000 +#x6f760000 +#x7c840000 +#x7e860000 +#x7c830000 +#x89910000 +#x70790000 +#x79840000 +#x919e0000 +#x76800000 +#x7c820000 +#x79830000 +#x757d0000 +#x767d0000 +#x82890000 +#x7d850000 +#x78830000 +#x7c830000 +#x868d0000 +#x838e0000 +#x717a0000 +#x7d850000 +#x868f0000 +#x83890000 +#x707e0000 +#. Crate 2, Card 3 +#x73810000 +#x79810000 +#x7b840000 +#x757d0000 +#x7a820000 +#x757c0000 +#x737a0000 +#x7d850000 +#x767f0000 +#x73790000 +#x7b830000 +#x757c0000 +#x7f870000 +#x747b0000 +#x77800000 +#x808d0000 +#x727c061a +#x767e0000 +#x818c0000 +#x747c0000 +#x72790000 +#x7e850000 +#x87900000 +#x727d0000 +#x7e850000 +#x6e740000 +#x6d730000 +#x7e850000 +#x848d0000 +#x6e770000 +#x777f0000 +#x84910000 +#. Crate 2, Card 4 +#x8b990000 +#x737a0000 +#x717a0000 +#x7d840418 +#x737b0000 +#x818a0000 +#x858b0000 +#x777f0418 +#x828b0000 +#x72790000 +#x79820000 +#x838a0000 +#x747c0000 +#x787f0000 +#x7a840000 +#x75820000 +#x7b850000 +#x6c730000 +#x737d0000 +#x81890000 +#x818a0000 +#x6c750000 +#x707a0000 +#x82890418 +#x80870000 +#x757e0000 +#x757d0000 +#x7f860000 +#x81870000 +#x727b0440 +#x71790000 +#x7d880000 +#. Crate 2, Card 5 +#x7b880000 +#x767e0000 +#x747d0000 +#x7a830000 +#x76800000 +#x747b0000 +#x70760000 +#x7b820000 +#x7b830000 +#x727a0000 +#x6c740000 +#x82890000 +#x7c850000 +#x7a820000 +#x737d0000 +#x79870000 +#x727c0000 +#x82890000 +#x88920000 +#x767d0000 +#x717b0000 +#x888e0000 +#x858d0000 +#x6f790000 +#x83890000 +#x6e750000 +#x73790000 +#x848b0000 +#x8b920000 +#x777f0000 +#x6c740000 +#x84900000 +#. Crate 2, Card 6 +#x7c8a0000 +#x7a840000 +#x77810000 +#x78800000 +#x80880000 +#x79820000 +#x7d860000 +#x7b860000 +#x828c0000 +#x878f0000 +#x85910000 +#x777e0000 +#x7b840000 +#x878f0000 +#x88920000 +#x72800000 +#x7d880000 +#x868c0000 +#x86910000 +#x79810000 +#x7b830000 +#x828a0000 +#x88910000 +#x828c0000 +#x838b0000 +#x6d740000 +#x797f0000 +#x858e0000 +#x7d840000 +#x70780000 +#x787e0000 +#x86930000 +#. Crate 2, Card 7 +#x79860000 +#x737a0000 +#x767f0000 +#x767c0000 +#x767e0000 +#x7b810418 +#x7a830000 +#x79810000 +#x7b820000 +#x89910000 +#x858d0000 +#x71780000 +#x878e0000 +#x767d0000 +#x6b750000 +#x808d0000 +#x7e860000 +#x6c720000 +#x767f0000 +#x868e0000 +#x7e870000 +#x72780000 +#x70770000 +#x838c0000 +#x767c0000 +#x767c0000 +#x6d750000 +#x717d0000 +#x81880000 +#x6b750000 +#x71790000 +#x8c980000 +#. Crate 2, Card 8 +#x89990440 +#x6f770000 +#x6f7a0000 +#x838e0000 +#x77800000 +#x8c930000 +#x757e0000 +#x767f0000 +#x717a0000 +#x848a0000 +#x8b910000 +#x78ff061e +#x868f0000 +#x70770000 +#x737c0000 +#x818d0000 +#x7c860000 +#x777d0000 +#x7f890000 +#x767e0000 +#x7a830000 +#x747a0000 +#x7a810000 +#x79830000 +#x72780000 +#x777d0000 +#x71770000 +#x73790000 +#x7a800000 +#x777d0000 +#x7b830000 +#x7b870000 +#. Crate 2, Card 9 +#x78860000 +#x80880000 +#x79820000 +#x6d760000 +#x81890000 +#x747d0000 +#x737a0000 +#x858d0000 +#x7b830000 +#x767e0000 +#x787f0000 +#x7d840000 +#x79820000 +#x848a0000 +#x7c860000 +#x727f0000 +#x7c850000 +#x686f0000 +#x727c0000 +#x7f870000 +#x747c0000 +#x747b0000 +#x747b0000 +#x6f780000 +#x747b0000 +#x747a0000 +#x6f750000 +#x7b820000 +#x757b0000 +#x858b0000 +#x848a0000 +#x76820000 +#. Crate 2, Card 10 +#x77820000 +#x747b0000 +#x777f0000 +#x767d0000 +#x80890000 +#x70780000 +#x727a0000 +#x868f0000 +#x77800000 +#x787e0000 +#x7b830000 +#x79800000 +#x747c0000 +#x7e850000 +#x828b0000 +#x79860000 +#x707b0000 +#x8c920000 +#x838d0000 +#x737b0000 +#x88920000 +#x79810440 +#x727c0000 +#x7e890000 +#x73790000 +#x787f0000 +#x75810000 +#x787f0000 +#x7c820000 +#x7a820000 +#x7d840000 +#x7f8a0000 +#. Crate 2, Card 11 +#x7e8d0000 +#x6f770000 +#x71790000 +#x84950418 +#x7e860000 +#x6e740000 +#x777e0000 +#x80880418 +#x7b830000 +#x757c0000 +#x767e0000 +#x7b830000 +#x7a840000 +#x79800000 +#x747e0000 +#x77840000 +#x7a830000 +#x6f760000 +#x707a0000 +#x78800000 +#x7a820000 +#x676f0000 +#x72790000 +#x7e880000 +#x777d0000 +#x6d730000 +#x71780000 +#x7d830000 +#x757b0000 +#x7b830000 +#x7a800000 +#x76820000 +#. Crate 2, Card 12 +#x76810000 +#x757c0000 +#x7c830000 +#x70780000 +#x7c850000 +#x727b0000 +#x6f770000 +#x76830000 +#x79810000 +#x7e850000 +#x81880000 +#x79800000 +#x838c0000 +#x6c760000 +#x727c0000 +#x808c0000 +#x8b940000 +#x787e0000 +#x6f780000 +#x8a910000 +#x838b0000 +#x757e0000 +#x70790000 +#x7d870000 +#x868c0000 +#x6f750000 +#x7b820000 +#x838b0000 +#x777d0000 +#x70770000 +#x72780000 +#x7b880000 +#. Crate 2, Card 13 +#x86950000 +#x757f0000 +#x6e750000 +#x7f880458 +#x858d0000 +#x72790000 +#x6b720000 +#x7c840418 +#x6e760000 +#x82890000 +#x868d0000 +#x747b0000 +#x71790000 +#x737b0000 +#x737c0000 +#x6a770000 +#x77810000 +#x79800000 +#x727d0000 +#x747d0000 +#x757d0000 +#x727a0000 +#x7a830000 +#x7c860000 +#x7f870000 +#x6e750000 +#x6a710000 +#x7e850000 +#x737a0000 +#x81880000 +#x7d850000 +#x6f7e0000 +#. Crate 2, Card 14 +#x89970000 +#x737c0000 +#x727a0000 +#x828d0000 +#x76800000 +#x868d0000 +#x83890000 +#x767d0000 +#x7a820000 +#x777e0000 +#x737b0000 +#x7f870000 +#x7e860000 +#x7b830000 +#x78810000 +#x7b880000 +#x89930000 +#x6e750000 +#x707b0000 +#x858d0000 +#x858e0000 +#x747c0000 +#x727d0000 +#x7f8a0000 +#x71790000 +#x7f860000 +#x82890000 +#x79800000 +#x787f0000 +#x7b840000 +#x7b830000 +#x7c880000 +#. Crate 2, Card 15 +#x7d880000 +#x7c840000 +#x7c850000 +#x7a830000 +#x747a0000 +#x89900000 +#x8d960000 +#x72790000 +#x7c830000 +#x797f0000 +#x7a820000 +#x79800000 +#x7a820000 +#x777f0000 +#x7a820000 +#x78850000 +#x7f890000 +#x7b820000 +#x7b850000 +#x7f870000 +#x7d840000 +#x777e0000 +#x7a810000 +#x7a840000 +#x787f0000 +#x767c0000 +#x7a820000 +#x7a810000 +#x7b820000 +#x7f860000 +#x7d850000 +#x7d880000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 2 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 2 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#x081b0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 3 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 3, Card 0 +#x7c88041a +#x6b730000 +#x737a0000 +#x80870000 +#x7d890000 +#x6d730000 +#x70770000 +#x7f860000 +#x747c0000 +#x80870000 +#x7a810000 +#x73790000 +#x79840000 +#x737a0000 +#x747d0000 +#x7b880000 +#x838f0000 +#x6d740000 +#x76810000 +#x7f880000 +#x7d870000 +#x72790000 +#x737b0000 +#x7e880000 +#x757c0000 +#x787f0000 +#x7a820000 +#x7a820000 +#x767f0000 +#x7b830000 +#x777f0000 +#x737f0000 +#. Crate 3, Card 1 +#x8b9b0000 +#x747d0000 +#x6b720000 +#x87900000 +#x909c0000 +#x7b860000 +#x717a0000 +#x86900000 +#x78810000 +#x838a0000 +#x7e860000 +#x767d0000 +#x747e0000 +#x81890000 +#x7b860000 +#x76830000 +#x818b0000 +#x737a0000 +#x707a0000 +#x7f870000 +#x76810000 +#x78800000 +#x7e860000 +#x77820000 +#x848c0000 +#x767d0000 +#x77800000 +#x838b0000 +#x81870000 +#x6e760000 +#x71780000 +#x828d0000 +#. Crate 3, Card 2 +#x78880000 +#x747d0000 +#x737b0000 +#x727b0000 +#x818a0000 +#x757c0000 +#x757c0000 +#x7c840000 +#x858e0000 +#x70780000 +#x6e770440 +#x80880000 +#x838e0000 +#x6e750000 +#x75810000 +#x8b9c0000 +#x77820000 +#x747a0000 +#x6f790000 +#x747d0000 +#x7e870000 +#x6c730000 +#x727a0440 +#x858f0000 +#x7a820000 +#x6a710000 +#x757b0000 +#x7f880000 +#x70760000 +#x838a0000 +#x898f0000 +#x717d0000 +#. Crate 3, Card 3 +#x818f0000 +#x737b0000 +#x7e860000 +#x848e0000 +#x7d860000 +#x7c830000 +#x767e0000 +#x7d870000 +#x8f980000 +#x78800000 +#x727a0000 +#x81880000 +#x828b0000 +#x747b0000 +#x757e0000 +#x85930000 +#x7d880000 +#x767c0000 +#x737e0000 +#x80880000 +#x757e0000 +#x7f850000 +#x82890000 +#x79830000 +#x747a061a +#x8086061a +#x88920000 +#x767e0000 +#x848a0420 +#x737a0000 +#x6e760000 +#x84920000 +#. Crate 3, Card 4 +#x6f7c0000 +#x747b0000 +#x717b0000 +#x727a0000 +#x78830000 +#x737b0000 +#x70780000 +#x767f0418 +#x727b0000 +#x757b0000 +#x6f760000 +#x73790000 +#x828b0000 +#x71780000 +#x747d0000 +#x83950000 +#x78820000 +#x6f770000 +#x737d0000 +#x79810000 +#x757d0000 +#x7b810000 +#x7e850000 +#x77810000 +#x7a820000 +#x71780000 +#x747a0000 +#x6e760000 +#x7b830000 +#x71780000 +#x70760000 +#x78850000 +#. Crate 3, Card 5 +#x79880000 +#x79820000 +#x828d0000 +#x7d870000 +#x7c840000 +#x77800000 +#x828b0000 +#x858e0418 +#x6e760000 +#x7e840418 +#x88900000 +#x757c0000 +#x6f780000 +#x83890000 +#x848e0000 +#x6d7b0418 +#x717b0000 +#x7e840000 +#x828c0000 +#x70780418 +#x767c0000 +#x80860000 +#x81880418 +#x747f0418 +#x838a0000 +#x6f750000 +#x6d740000 +#x7e840000 +#x838a0000 +#x747b0000 +#x6f770000 +#x7b880418 +#. Crate 3, Card 6 +#x78860000 +#x80860000 +#x80860000 +#x797f0000 +#x747c0000 +#x76800000 +#x7c840000 +#x6f7a0000 +#x79810000 +#x767d0000 +#x71790000 +#x70780000 +#x818b0000 +#x71790000 +#x646e0000 +#x7f8b0000 +#x8f9a0000 +#x767c0000 +#x6b750000 +#x81890000 +#x747d0000 +#x757c0000 +#x747c0000 +#x7a850000 +#x777d0000 +#x7e840000 +#x80860000 +#x767e0000 +#x747a0000 +#x868c0000 +#x7f870000 +#x73800000 +#. Crate 3, Card 7 +#x89970000 +#x69720000 +#x6c740000 +#x86900000 +#x77800000 +#x838d0000 +#x80880000 +#x727c0000 +#x737c0000 +#x7d850000 +#x848d0000 +#x767f0000 +#x767e0000 +#x80880000 +#x808b0000 +#x75830000 +#x858f0000 +#x747b0000 +#x75800000 +#x929b0000 +#x757c0000 +#x72780000 +#x7a810000 +#x77820000 +#x7b810420 +#x72780420 +#x73790000 +#x7c830420 +#x767c0000 +#x71770000 +#x787e0000 +#x78850000 +#. Crate 3, Card 8 +#x7d8a0000 +#x78810000 +#x737c0000 +#x737d0000 +#x76810000 +#x7a820000 +#x73790000 +#x737b0000 +#x7e880000 +#x72790000 +#x77800000 +#x7a820000 +#x727b0000 +#x7a820000 +#x77810000 +#x808d0000 +#x7b860000 +#x7c830000 +#x7b850000 +#x7a820000 +#x757d0000 +#x858b0000 +#x8a910000 +#x7a840418 +#x72780000 +#x8e940000 +#x898f0000 +#x6f750000 +#x8c930000 +#x6e760000 +#x6b720000 +#x89960000 +#. Crate 3, Card 9 +#x77860000 +#x79820000 +#x7a840000 +#x79830000 +#x787f0000 +#x7a840000 +#x7f870000 +#x78800000 +#x7a820000 +#x6f760000 +#x6f760000 +#x777e0000 +#x6c730000 +#x7e850000 +#x848d0000 +#x6f7a0000 +#x7d880000 +#x6b710000 +#x77820000 +#x838b0500 +#x787f0000 +#x73790000 +#x737a0000 +#x77810000 +#x81870000 +#x757b0000 +#x72790000 +#x7c820000 +#x7c830000 +#x7e880000 +#x7a810000 +#x7c890000 +#. Crate 3, Card 10 +#x838f0000 +#x717a0000 +#x77800000 +#x808d0000 +#x848d0000 +#x70770000 +#x757c0000 +#x89910000 +#x747d0000 +#x888f0000 +#x828a0000 +#x737a0000 +#x7b840000 +#x7c830000 +#x7e880000 +#x7b880000 +#x7e890000 +#x79800000 +#x79840000 +#x838b0000 +#x868e0000 +#x7b820000 +#x767e0000 +#x7f8a0000 +#x7b810000 +#x7c830000 +#x78810000 +#x7b840000 +#x757b0000 +#x7b810000 +#x7e840000 +#x737f0000 +#. Crate 3, Card 11 +#x7d8b0000 +#x6c740000 +#x767e0000 +#x838c0000 +#x747b0000 +#x757f0000 +#x838c0000 +#x737b0000 +#x7a830000 +#x767c0000 +#x78800000 +#x7c830000 +#x767e0000 +#x888f0000 +#x86910000 +#x76830000 +#x7a850000 +#x79800000 +#x75800000 +#x7b830000 +#x757d0000 +#x7b840000 +#x84900000 +#x7c870000 +#x7e860000 +#x76800000 +#x747e0000 +#x79830000 +#x7c850000 +#x7a850000 +#x76810000 +#x77820000 +#. Crate 3, Card 12 +#x85920000 +#x71790000 +#x757d0000 +#x7b830000 +#x828b0000 +#x6f760000 +#x6d740000 +#x838b0000 +#x838c0000 +#x6d740000 +#x71790000 +#x8c940000 +#x7a830000 +#x747c0000 +#x727c0000 +#x808d0000 +#x76800000 +#x7c830000 +#x7a850000 +#x7c850000 +#x78810000 +#x767c0000 +#x75800000 +#x76810000 +#x848c0000 +#x727a0000 +#x767f0000 +#x88900418 +#x7d870000 +#x737c0000 +#x77810000 +#x86930000 +#. Crate 3, Card 13 +#x8b970000 +#x747a0000 +#x6d740000 +#x7cff061e +#x89910000 +#x777d0000 +#x6f750000 +#x808a0000 +#x757d0000 +#x858c0000 +#x878f0000 +#x79800000 +#x878f0000 +#x737a0000 +#x737c0000 +#x828e0000 +#x7f890000 +#x767c0000 +#x747f0000 +#x79810000 +#x7b820000 +#x767c0000 +#x838a0000 +#x7e870000 +#x777d0000 +#x7d830000 +#x7c830000 +#x73790000 +#x7c820000 +#x767d0000 +#x757c0000 +#x7d890000 +#. Crate 3, Card 14 +#x7c8b0000 +#x6f760000 +#x6d790000 +#x77810000 +#x828b0000 +#x71780000 +#x747c0000 +#x8f980000 +#x767f0000 +#x6e750000 +#x757e0000 +#x7d840000 +#x838c0000 +#x777e0000 +#x6a730000 +#x87940000 +#x838e0000 +#x69700000 +#x727c0000 +#x8c940000 +#x747c0000 +#x7b820000 +#x7a810000 +#x6f7a0000 +#x7c830000 +#x6d740000 +#x747b0000 +#x737a0000 +#x787e0000 +#x727a0000 +#x72790000 +#x76840000 +#. Crate 3, Card 15 +#x7a870000 +#x737b0000 +#x717a0000 +#x81870000 +#x78800000 +#x757c0000 +#x757c0000 +#x787f0000 +#x717a0000 +#x7a810000 +#x838b0000 +#x747b0000 +#x757d0000 +#x7d840000 +#x828a0000 +#x78850000 +#x78820000 +#x787e0000 +#x7c870000 +#x79820000 +#x767e0000 +#x7a810000 +#x7f870000 +#x7b840000 +#x83890000 +#x6c720000 +#x777d0000 +#x8d930000 +#x8b920000 +#x6f760000 +#x6f750000 +#x828c0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 3 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 3 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x08700000 +#x09c30000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 4 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 4, Card 0 +#x7888041a +#x767c0000 +#x71780000 +#x72780000 +#x737a0000 +#x787e0000 +#x757c0000 +#x6d760000 +#x78800000 +#x797f0000 +#x6f760000 +#x7b820000 +#x7a830000 +#x747a0000 +#x777f0000 +#x79850000 +#x737d0000 +#x8e960000 +#x86900000 +#x6e750000 +#x86900000 +#x6e740000 +#x737b0000 +#x8f990000 +#x79810000 +#x7a810000 +#x8a910000 +#x868d0000 +#x787f0000 +#x81880000 +#x858e0000 +#x87910000 +#. Crate 4, Card 1 +#x89990000 +#x79810000 +#x67700000 +#x858f0000 +#x848c061a +#x76830418 +#x676e0000 +#x828a0418 +#x7e870000 +#x656b0000 +#x6b720000 +#x79800000 +#x7a830000 +#x767e0000 +#x76810000 +#x77830000 +#x808a0420 +#x696f061a +#x727c0000 +#x7a820000 +#x7c850000 +#x6d730000 +#x6f760420 +#x7f890418 +#x777d0000 +#x6f760000 +#x6c730000 +#x7e860418 +#x6d740000 +#x8c930000 +#x828a0000 +#x6b7b0000 +#. Crate 4, Card 2 +#x7386067a +#x8a930000 +#x848e0000 +#x6f770000 +#x79820000 +#x797f0000 +#x737c0000 +#x7a810619 +#x88920000 +#x737b0000 +#x727b0000 +#x7f870000 +#x75810000 +#x82890000 +#x88920000 +#x76840000 +#x717d0420 +#x848b0000 +#x8c960000 +#x78800000 +#x727b0000 +#x81880000 +#x89900000 +#x7b840420 +#x72790000 +#x767d0000 +#x767d0000 +#x78800420 +#x757b0000 +#x8c940000 +#x82880000 +#x6d790000 +#. Crate 4, Card 3 +#x6e7d0000 +#x7b850000 +#x7d860000 +#x717a0000 +#x81890000 +#x79820000 +#x79800000 +#x838c0418 +#x737c0000 +#x747a0000 +#x70780000 +#x727b0000 +#x79810000 +#x727b0000 +#x737f0000 +#x778a0000 +#x818a0000 +#x727a0000 +#x68710000 +#x7e850000 +#x848f0000 +#x757b0000 +#x6e750000 +#x7e860000 +#x81880000 +#x6f750000 +#x717a0000 +#x767e0418 +#x797f0000 +#x6e780000 +#x6f760000 +#x7c880000 +#. Crate 4, Card 4 +#x77840000 +#x7e860000 +#x818a0000 +#x717b0000 +#x818b0000 +#x79810000 +#x767e0000 +#x7b830000 +#x777f0000 +#x777d0000 +#x787f0000 +#x747a0000 +#x787f0000 +#x7b810000 +#x7b840000 +#x7f8b0000 +#x7b840000 +#x797f0000 +#x7f890000 +#x727a0000 +#x848f0000 +#x6f770000 +#x767f0000 +#x919c0000 +#x7e840000 +#x73790420 +#x767d0000 +#x797f0420 +#x7c830420 +#x878e0000 +#x83890000 +#x727e0000 +#. Crate 4, Card 5 +#x75810000 +#x7a810000 +#x7b840000 +#x777e0000 +#x767d0000 +#x72790000 +#x72780000 +#x7c840000 +#x919b0000 +#x757b0000 +#x6e760000 +#x89900000 +#x747d0000 +#x7c830000 +#x868e0000 +#x747f0000 +#x747e0000 +#x71780000 +#x70790000 +#x7b820000 +#x7d880000 +#x90960000 +#x8b910000 +#x7f890000 +#x767c0000 +#x81870000 +#x7d860000 +#x72790000 +#x868c0000 +#x6f770000 +#x78800000 +#x8c990418 +#. Crate 4, Card 6 +#x78850000 +#x76810000 +#x747f0000 +#x79830000 +#x7e880000 +#x70780000 +#x727b0000 +#x828b0418 +#x6e770000 +#x858c0000 +#x8f970000 +#x7d840000 +#x7a840000 +#x7e850000 +#x7a850000 +#x7b880000 +#x7e880000 +#x6a720000 +#x737d0000 +#x848c0000 +#x7e870420 +#x777f0000 +#x7a820000 +#x7e870418 +#x787e0000 +#x777d0000 +#x787f0000 +#x777e0000 +#x878d0000 +#x70770000 +#x747a0000 +#x83900000 +#. Crate 4, Card 7 +#x75820000 +#x78800000 +#x7c830000 +#x71790000 +#x747d0000 +#x767e0000 +#x7a810000 +#x767e0000 +#x7d830000 +#x757b0000 +#x72780000 +#x7e840000 +#x7e870000 +#x747a0000 +#x727c0000 +#x7c890000 +#x838c0000 +#x747c0000 +#x737e0000 +#x80870000 +#x838b0000 +#x6e770000 +#x7c860000 +#x89930000 +#x777e0000 +#x858c0000 +#x8b920000 +#x79800000 +#x7c820000 +#x8c930000 +#x81880000 +#x737f0000 +#. Crate 4, Card 8 +#x85950000 +#x707a0000 +#x6f790000 +#x7c840000 +#x747c0000 +#x7a810000 +#x787e0000 +#x79820000 +#x858c0000 +#x6e750000 +#x70780000 +#x7c830000 +#x7b830000 +#x747b0000 +#x6d770000 +#x7a870000 +#x7f880000 +#x6e750000 +#x747e0000 +#x848b0000 +#x7d850000 +#x7a800000 +#x7c840000 +#x7d870000 +#x82880000 +#x737a0000 +#x7f880000 +#x888f0000 +#x717b0000 +#x858e0000 +#x81890000 +#x717e0000 +#. Crate 4, Card 9 +#x6d790000 +#x80880000 +#x87900000 +#x717b0000 +#x878e0000 +#x6e770000 +#x72790000 +#x8d950000 +#x878e0000 +#x7aff061e +#x737b0000 +#x7f860000 +#x8a920000 +#x6e740000 +#x6d760000 +#x818d0000 +#x7d870000 +#x73790420 +#x747e0000 +#x7c840000 +#x88910000 +#x72780000 +#x777d0000 +#x89920000 +#x777d0000 +#x7d830000 +#x8c940000 +#x78820000 +#x747a0000 +#x7b830000 +#x858c0000 +#x77830000 +#. Crate 4, Card 10 +#x88960000 +#x777f0000 +#x737a0000 +#x818a0000 +#x7c840000 +#x767d0000 +#x79800000 +#x7a820000 +#x78800000 +#x7c870000 +#x82890000 +#x797f0500 +#x79810000 +#x7a810000 +#x747d0000 +#x7e8a0000 +#x7d860000 +#x747b0000 +#x78810000 +#x7d850000 +#x79830000 +#x81870000 +#x7a820000 +#x737c0000 +#x868c0000 +#x70760000 +#x787f0000 +#x868c0000 +#x6d730000 +#x838a0000 +#x8d940000 +#x75830000 +#. Crate 4, Card 11 +#x77850000 +#x87900000 +#x7f890000 +#x747e0000 +#x86900000 +#x737b0000 +#x71790000 +#x89930000 +#x767e0000 +#x70760000 +#x79800000 +#x767c0000 +#x747d0000 +#x737a0000 +#x78820000 +#x727e0000 +#x77810000 +#x7b810000 +#x7b860000 +#x747c0000 +#x757e0000 +#x83890000 +#x8a930000 +#x7e880000 +#x7a800000 +#x7d830000 +#x7d840000 +#x72790000 +#x82880000 +#x727b0000 +#x777d0000 +#x79870000 +#. Crate 4, Card 12 +#x8b990440 +#x77800440 +#x70790440 +#x7f880458 +#x8d970440 +#x747a0440 +#x70770440 +#x7d860458 +#x747c0000 +#x7a810000 +#x848d0000 +#x7a810000 +#x767f0000 +#x79800000 +#x78840000 +#x75810000 +#x848d0000 +#x6c730000 +#x707a0000 +#x7f870000 +#x70780000 +#x757c0000 +#x757d0000 +#x747e0000 +#x82890000 +#x70760000 +#x767e0000 +#x848c0000 +#x8e950000 +#x76830000 +#x6f770000 +#x7f8b0000 +#. Crate 4, Card 13 +#x74820000 +#x7f870000 +#x7e890000 +#x757d0000 +#x76800000 +#x848a0000 +#x7e850000 +#x6e770000 +#x77810000 +#x72790000 +#x79810000 +#x878f0000 +#x79820000 +#x727a0000 +#x747e0000 +#x7a870000 +#x88920000 +#x737b0000 +#x6c750000 +#x7e860000 +#x81890000 +#x757c0000 +#x6a710000 +#x7d880418 +#x787f0000 +#x757b0000 +#x767f0000 +#x78810000 +#x767d0000 +#x78800000 +#x777e0000 +#x78860000 +#. Crate 4, Card 14 +#x707c0000 +#x89900000 +#x858c0000 +#x6a720000 +#x71790000 +#x848b0000 +#x898f0000 +#x6d740000 +#x71790000 +#x7d830000 +#x8b920000 +#x7a800000 +#x7d860000 +#x858c0000 +#x818b0000 +#x7583065a +#x70790000 +#x89910000 +#x7f8a0000 +#x6c740000 +#x747b0000 +#x8a910000 +#x80870000 +#x6e780000 +#x757d0000 +#x6f770000 +#x747a0000 +#x777e0000 +#x81880000 +#x6c730000 +#x70780000 +#x8b970000 +#. Crate 4, Card 15 +#x7b8c0000 +#x747c0000 +#x6c750000 +#x76810000 +#x82890000 +#x767e0000 +#x71790000 +#x79810000 +#x808c0000 +#x77800000 +#x727c0000 +#x80890000 +#x77810000 +#x757d0000 +#x727a0000 +#x808b0000 +#x7d860000 +#x6d740000 +#x6e780000 +#x80860000 +#x777f0000 +#x80870000 +#x77810000 +#x717a0000 +#x757b0000 +#x757c0000 +#x74840000 +#x7d830000 +#x8389061a +#x6d760000 +#x71780000 +#x88940420 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 4 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 4 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#x07fb0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 5 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 5, Card 0 +#x7d91045a +#x777d045a +#x7a860000 +#x808f0000 +#x87940000 +#x71800000 +#x787e0000 +#x89910000 +#x737b0000 +#x82880000 +#x868e0000 +#x7b810000 +#x838b0000 +#x72780000 +#x737b0000 +#x88930000 +#x757f0000 +#x81880000 +#x828b0000 +#x78800000 +#x757e0000 +#x82880000 +#x7d840000 +#x727d0000 +#x7f850000 +#x747a0000 +#x73790000 +#x7b810000 +#x7f860000 +#x777d0000 +#x72780000 +#x79840000 +#. Crate 5, Card 1 +#x869b0000 +#x6b770000 +#x737b0000 +#x8c940000 +#x818a0000 +#x737b0000 +#x767d0000 +#x79820000 +#x727b0420 +#x7b810000 +#x828a0000 +#x757b0000 +#x77800000 +#x868d0000 +#x808a0000 +#x717f0000 +#x727e0000 +#x8a910000 +#x7e880000 +#x757c0000 +#x737b0000 +#x8a920000 +#x838d0000 +#x707a0000 +#x71780000 +#x8d940000 +#x858d0000 +#x6f780000 +#x747b0000 +#x81890000 +#x8a920000 +#x77870000 +#. Crate 5, Card 2 +#x7c8c0000 +#x77800000 +#x78820000 +#x7f860000 +#x7b820000 +#x727a0000 +#x7a810000 +#x7d840000 +#x80880000 +#x6d730000 +#x6f760000 +#x81890000 +#x737b0000 +#x767d0000 +#x6e770000 +#x717d0000 +#x838d0000 +#x757b0000 +#x717b0000 +#x80870000 +#x727b0000 +#x73790000 +#x77800000 +#x747d0000 +#x7c820000 +#x757c0000 +#x78810000 +#x78810000 +#x70790000 +#x7f870000 +#x7c840000 +#x6d7e0000 +#. Crate 5, Card 3 +#x84920000 +#x757e0420 +#x707a0000 +#x838c0000 +#x7f870000 +#x6d760000 +#x737b0000 +#x828d0000 +#x7a830000 +#x767d0000 +#x75800000 +#x7e850000 +#x7f870000 +#x71790000 +#x767f0000 +#x818e0000 +#x8d970440 +#x72790000 +#x747e0000 +#x8a920000 +#x89900000 +#x767d0000 +#x727a0000 +#x8a950000 +#x81870000 +#x6b710000 +#x7c820000 +#x868d0000 +#x7e840000 +#x6b710000 +#x73790000 +#x88940000 +#. Crate 5, Card 4 +#x7b870000 +#x737c0000 +#x717a0000 +#x767d0000 +#x87910000 +#x79810000 +#x727a0000 +#x80890000 +#x7c850000 +#x7f850000 +#x81890000 +#x7c830000 +#x88900000 +#x757c0000 +#x727c0000 +#x94a20000 +#x7e890000 +#x777d0000 +#x7c860000 +#x7e850000 +#x76810000 +#x888f0000 +#x8e950000 +#x78810418 +#x7f850000 +#x6c730000 +#x73790000 +#x7a800000 +#x757b0000 +#x7c830000 +#x7a800000 +#x74800000 +#. Crate 5, Card 5 +#x7886061a +#x767e0000 +#x727c0000 +#x77810000 +#x747d0000 +#x747c0000 +#x767d0000 +#x757d0418 +#x8e960000 +#x757c0000 +#x6c730000 +#x80860000 +#x757e0000 +#x80870000 +#x7b870000 +#x717e0000 +#x7c860000 +#x69710000 +#x6d760000 +#x7d840000 +#x70790000 +#x73790000 +#x7a810000 +#x6d770000 +#x79810000 +#x777d0000 +#x787e0000 +#x757e0000 +#x73790000 +#x777e0000 +#x7b830000 +#x727f0418 +#. Crate 5, Card 6 +#x7a860000 +#x80880000 +#x80880000 +#x78800000 +#x79810000 +#x81870000 +#x75ff061e +#x7b830000 +#x757e0000 +#x81890000 +#x7d840000 +#x73790000 +#x838c0000 +#x6d740000 +#x75800000 +#x84920000 +#x808a0000 +#x7b820000 +#x7b850000 +#x838b0000 +#x727b0000 +#x8b920000 +#x82890000 +#x737e0000 +#x7e840000 +#x73790000 +#x70780000 +#x79800000 +#x797f0000 +#x767e0000 +#x747a0000 +#x7a850000 +#. Crate 5, Card 7 +#x72810000 +#x70780000 +#x717c0000 +#x70790000 +#x6f780000 +#x737c0000 +#x71770000 +#x6b730000 +#x6e760000 +#x767d0000 +#x808a0000 +#x767c0000 +#x7d870000 +#x6c720000 +#x717b0000 +#x7f8c0418 +#x77810000 +#x727a061a +#x717b0000 +#x767e0000 +#x78820000 +#x747b0000 +#x747c0000 +#x757f0000 +#x80870000 +#x6c720000 +#x747b0000 +#x868e0000 +#x6e740000 +#x80880000 +#x898f0000 +#x74800000 +#. Crate 5, Card 8 +#x6d7a0000 +#x858c0000 +#x8a920000 +#x737a0000 +#x7a830000 +#x727a0000 +#x78800000 +#x808a0000 +#x79830000 +#x7e860000 +#x7e870000 +#x787f0000 +#x848e0000 +#x737b0000 +#x767f0000 +#x88950000 +#x7a830000 +#x83890000 +#x88920000 +#x7b830000 +#x7e890000 +#x858b0000 +#x89910000 +#x7a830418 +#x757b0000 +#x8a900000 +#x81880000 +#x71780000 +#x8b920000 +#x7a810000 +#x71770000 +#x7e8b0000 +#. Crate 5, Card 9 +#x79890000 +#x757c0000 +#x7a810000 +#x7c820000 +#x7d870000 +#x70790000 +#x767d0000 +#x848e0000 +#x858e0000 +#x727a0000 +#x79800000 +#x92980000 +#x75800440 +#x79810440 +#x7a840440 +#x74810440 +#x79820000 +#x79800000 +#x7a840000 +#x79810000 +#x8f9b0440 +#x79800000 +#x767d0000 +#x838c0000 +#x82880000 +#x6e740000 +#x767c0000 +#x80870000 +#x7e840000 +#x7a800000 +#x767d0000 +#x7a860000 +#. Crate 5, Card 10 +#x85940000 +#x6e770000 +#x727a0000 +#x848e0000 +#x78810000 +#x7d850000 +#x7b840000 +#x717b0000 +#x79820000 +#x80870000 +#x868e0000 +#x777e0000 +#x7d870000 +#x787e0000 +#x79820000 +#x79850000 +#x7e870000 +#x737a0000 +#x737d0000 +#x80870000 +#x7a830000 +#x787f0000 +#x777e0000 +#x79830000 +#x8c930000 +#x747a0000 +#x6b730000 +#x8f970440 +#x80880000 +#x6e770000 +#x72780000 +#x7e8b0000 +#. Crate 5, Card 11 +#x71820000 +#x7a820000 +#x767f0000 +#x757f0000 +#x737c0000 +#x757d0000 +#x73790000 +#x747b0000 +#x868e0000 +#x79800000 +#x757d0000 +#x7b830000 +#x82880000 +#x747c0000 +#x6f790000 +#x78850000 +#x737c0000 +#x8c920000 +#x7b840000 +#x7a810000 +#x747b0000 +#x888e0000 +#x8289061a +#x6f790000 +#x7c820000 +#x70760000 +#x6d740000 +#x81890000 +#x7d840000 +#x6d730000 +#x71780000 +#x86930000 +#. Crate 5, Card 12 +#x77840000 +#x80880000 +#x8a920000 +#x767e0000 +#x787f0000 +#x848a0000 +#x8b920000 +#x7f870000 +#x737b0000 +#x89900000 +#x7d850000 +#x6e750000 +#x818b0000 +#x73790000 +#x707b0000 +#x7e8a0000 +#x747e0000 +#x858c0000 +#x7c860000 +#x737a061a +#x878f0000 +#x78800000 +#x727b0000 +#x7c860000 +#x81880000 +#x757b0000 +#x727a0000 +#x767e0418 +#x757d0000 +#x7e870000 +#x7c850000 +#x717e0000 +#. Crate 5, Card 13 +#x8a970000 +#x7a810000 +#x6e760000 +#x838b0000 +#x8b930000 +#x79820000 +#x747c0000 +#x828a0000 +#x757e0000 +#x7f850000 +#x878e0000 +#x787f0000 +#x777f0000 +#x7f860000 +#x87900000 +#x7b870000 +#x7e880000 +#x7d830000 +#x7c860000 +#x7c840000 +#x888e0000 +#x777d0000 +#x767e0000 +#x7e870000 +#x78800000 +#x7a810000 +#x7f870000 +#x7d850000 +#x79810000 +#x7d850000 +#x828a0000 +#x7d890000 +#. Crate 5, Card 14 +#x77860000 +#x727b0000 +#x6b750000 +#x757e0000 +#x78800000 +#x737c0000 +#x757c0000 +#x767d0000 +#x7f880000 +#x6f790000 +#x6b740000 +#x81880000 +#x7e870000 +#x6b720000 +#x6c770000 +#x86920000 +#x7e870000 +#x767c0000 +#x6e770000 +#x7e850000 +#x868e0000 +#x73790000 +#x6c740000 +#x79830000 +#x7a820000 +#x737d0000 +#x727b0000 +#x78800000 +#x7f860000 +#x6f760000 +#x6f790000 +#x818e0000 +#. Crate 5, Card 15 +#x72800000 +#x747b0000 +#x747a0000 +#x71780000 +#x747c0000 +#x757b0000 +#x787f0000 +#x7b830000 +#x7a830000 +#x72780000 +#x757d0000 +#x777e0000 +#x71780000 +#x7b810000 +#x81890000 +#x727d0000 +#x87910000 +#x757b0000 +#x6b740000 +#x767e0000 +#x878e0000 +#x757c0000 +#x6f760000 +#x7d860000 +#x767c0000 +#x7b810000 +#x787e0000 +#x6f750000 +#x767d0000 +#x7d830000 +#x7b820000 +#x727f0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 5 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 5 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 6 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 6, Card 0 +#x73810000 +#x78820000 +#x747f0000 +#x747e0000 +#x878f0000 +#x6c7a0000 +#x6b750000 +#x88ff065e +#x848b045a +#x6e74045a +#x6970045a +#x787e0000 +#x6f750000 +#x6e750000 +#x70780000 +#x737e0000 +#x6e770000 +#x80860000 +#x77810000 +#x6e750000 +#x71790000 +#x81870440 +#x7c820000 +#x6f780000 +#x79800000 +#x6b720000 +#x6e740000 +#x7b820418 +#x78800000 +#x6b710000 +#x70770000 +#x7c880000 +#. Crate 6, Card 1 +#x6e7d0000 +#x82890000 +#x8a910000 +#x757c0000 +#x6f790000 +#x7e850000 +#x89900000 +#x79820418 +#x71790000 +#x737a0000 +#x6e760000 +#x757c0000 +#x79810000 +#x71780000 +#x717a0000 +#x76820000 +#x7c860000 +#x6c730000 +#x6e770000 +#x7b820000 +#x7d860000 +#x6c720000 +#x727a0618 +#x7e870000 +#x767c0000 +#x70780000 +#x6b710000 +#x7a800000 +#x757e0000 +#x747b0000 +#x71780000 +#x74820000 +#. Crate 6, Card 2 +#x7d8a0000 +#x747b0000 +#x757c0000 +#x808a0000 +#x7c84061a +#x79810000 +#x757c0000 +#x7f860000 +#x78810000 +#x757b0000 +#x7f870000 +#x8d950420 +#x7d860000 +#x767d0000 +#x818c0000 +#x86930000 +#x868f0000 +#x757c0000 +#x70790000 +#x78800000 +#x6f770000 +#x80860000 +#x878e0000 +#x717c0418 +#x6f760000 +#x71780000 +#x7a830000 +#x747d0000 +#x767c0000 +#x7a820000 +#x777f0000 +#x75820000 +#. Crate 6, Card 3 +#x7b890000 +#x78800000 +#x757c0000 +#x7e860000 +#x858e0000 +#x828b0000 +#x82890000 +#x919c0000 +#x818a0000 +#x6f770000 +#x747c0000 +#x868d0000 +#x848c0000 +#x737a0000 +#x78830000 +#x87940000 +#x818b0000 +#x71780000 +#x717b0000 +#x88900000 +#x858d0000 +#x757d0000 +#x7a820000 +#x848e0000 +#x7b810000 +#x787f0000 +#x767e0000 +#x7b820000 +#x7e850000 +#x79810000 +#x767c0000 +#x78850000 +#. Crate 6, Card 4 +#x7c880000 +#x737a0000 +#x6f790000 +#x79820000 +#x77800000 +#x777e0000 +#x747b0000 +#x79830418 +#x757f061a +#x81870000 +#x7c840000 +#x6e760000 +#x717a061a +#x767d0000 +#x7c870000 +#x78840000 +#x737d065a +#x767c061a +#x78820000 +#x777e0000 +#x737a0000 +#x79810000 +#x757d0000 +#x7782061a +#x80870000 +#x80890000 +#x7f880000 +#x7d860000 +#x737b0000 +#x777f0000 +#x767e0000 +#x77860000 +#. Crate 6, Card 5 +#x83910000 +#x6a700000 +#x747c0000 +#x6d750000 +#x70790000 +#x868d0000 +#x80870000 +#x70760000 +#x757e0000 +#x70770000 +#x777f0000 +#x767d0000 +#x858e0000 +#x747d0000 +#x69750000 +#x80900000 +#x7a840000 +#x73790000 +#x6f790000 +#x767e0000 +#x7b850000 +#x717a0000 +#x737c0000 +#x75800000 +#x878f061a +#x6b720000 +#x6b720000 +#x868c0000 +#x89940000 +#x676f0000 +#x69710000 +#x87950000 +#. Crate 6, Card 6 +#x79860000 +#x828a0000 +#x828a0000 +#x707a0000 +#x828c0000 +#x7d850000 +#x747c0000 +#x808b0000 +#x848d0000 +#x727a0000 +#x727a0000 +#x81880000 +#x919b0000 +#x78800000 +#x707a0638 +#x83930000 +#x8e980000 +#x767d0000 +#x6e780000 +#x81880000 +#x727a0000 +#x787f0000 +#x7c840000 +#x76810000 +#x858b0000 +#x777d0000 +#x71780000 +#x7d840000 +#x939a0000 +#x757c0618 +#x71770000 +#x8c9c0000 +#. Crate 6, Card 7 +#x79870000 +#x747b0000 +#x747d0000 +#x777e0000 +#x767d0000 +#x7b830000 +#x7a800000 +#x70780000 +#x78800000 +#x747a0000 +#x747b0000 +#x72790000 +#x88920000 +#x6f770000 +#x6e790000 +#x85920000 +#x7d870000 +#x737c0000 +#x77810000 +#x7e860000 +#x767f0000 +#x858b0000 +#x868d0000 +#x6f790000 +#x868d0000 +#x73790000 +#x7a800000 +#x7a800000 +#x7d840000 +#x70770000 +#x71780000 +#x818e0000 +#. Crate 6, Card 8 +#x7e8b0000 +#x797f0440 +#x7a820000 +#x79810000 +#x808a0000 +#x6e740000 +#x7b820000 +#x868e0000 +#x79800000 +#x787f0000 +#x757c0000 +#x747c0000 +#x7a830000 +#x7b830000 +#x737f0000 +#x76830000 +#x7e860000 +#x757c0000 +#x727c0000 +#x7c840000 +#x747b0000 +#x747b0000 +#x7e850000 +#x757f0000 +#x868d0000 +#x6f760000 +#x7a800000 +#x8a910000 +#x797f0000 +#x73790000 +#x7d840000 +#x77820000 +#. Crate 6, Card 9 +#x74840000 +#x8f96061a +#x838c0000 +#x747d0000 +#x81890000 +#x73790000 +#x6d750000 +#x828b0000 +#x727a0000 +#x898f0000 +#x81880000 +#x70760000 +#x727a0000 +#x8b920000 +#x858f0000 +#x6e7b0000 +#x838d0000 +#x72790000 +#x6e780000 +#x7b830000 +#x848d0000 +#x70760000 +#x7279061a +#x808a0000 +#x7c820000 +#x6a700000 +#x71770000 +#x777d0000 +#x767c0000 +#x7c830000 +#x79800000 +#x78830000 +#. Crate 6, Card 10 +#x7c8a0000 +#x777d0000 +#x7d850000 +#x767d0000 +#x7c830000 +#x777f0000 +#x686f0000 +#x7b840000 +#x777f0000 +#x767d0000 +#x7f880000 +#x757c0000 +#x828b0000 +#x6b720000 +#x76800000 +#x8c990000 +#x747f0000 +#x7c830000 +#x818b0000 +#x7b830000 +#x77800000 +#x767e0000 +#x7d860000 +#x79830000 +#x83890000 +#x6e740000 +#x767d0000 +#x878e0000 +#x858c0000 +#x70770420 +#x7177061a +#x89940000 +#. Crate 6, Card 11 +#x7b8a0000 +#x757b0000 +#x737a0618 +#x7d880000 +#x80890000 +#x747e0000 +#x757d0000 +#x7e870000 +#x7d840000 +#x747b0000 +#x6b730000 +#x757c0000 +#x858e0000 +#x72790000 +#x6d7a0000 +#x7c880000 +#x7c850000 +#x747b0000 +#x7a840000 +#x7e860000 +#x858e0000 +#x70770000 +#x727c0000 +#x87910000 +#x7c820000 +#x747b0000 +#x747b0000 +#x7a810000 +#x7d830000 +#x757c0000 +#x6f750000 +#x77830000 +#. Crate 6, Card 12 +#x7b8b0000 +#x79800000 +#x767e0000 +#x757d0000 +#x78820000 +#x7a810000 +#x757e0000 +#x78820000 +#x737c0000 +#x868d0000 +#x81880000 +#x6e750000 +#x7f850000 +#x737a0000 +#x767f0000 +#x7c880000 +#x757e0000 +#x757d0000 +#x77810000 +#x71780000 +#x727a0000 +#x82880000 +#x7c830000 +#x77820000 +#x787f0000 +#x72780000 +#x76800000 +#x777e0000 +#x7e860000 +#x787f0000 +#x777d0000 +#x78850000 +#. Crate 6, Card 13 +#x818e0000 +#x6a700000 +#x6f760000 +#x88910000 +#x7e860000 +#x6c730000 +#x6e750000 +#x80870000 +#x79820000 +#x70760000 +#x757d0000 +#x737a0000 +#x7c860000 +#x747b0000 +#x747e0000 +#x75830000 +#x7f880000 +#x757c0000 +#x6d760000 +#x7f870000 +#x7980065a +#x7d840000 +#x737b0000 +#x7c830000 +#x747a0000 +#x7c830000 +#x7a820000 +#x6f750000 +#x777e0000 +#x7b820000 +#x72790000 +#x737f0000 +#. Crate 6, Card 14 +#x85940000 +#x71780000 +#x747c0000 +#x81880000 +#x858d0000 +#x6d740000 +#x737a0000 +#x89910000 +#x878f0000 +#x747b0000 +#x71790000 +#x7f860000 +#x838c0000 +#x757c0000 +#x737d0000 +#x82900000 +#x8992065a +#x6d730000 +#x6d770000 +#x828a0000 +#x7c850000 +#x777f0000 +#x79800000 +#x7e880000 +#x858b0000 +#x6c730000 +#x78810000 +#x8f950000 +#x73790000 +#x7b820000 +#x7c820000 +#x74800000 +#. Crate 6, Card 15 +#x85930000 +#x6d730000 +#x777e0000 +#x80870000 +#x7b840000 +#x7f850000 +#x7d840000 +#x727b0000 +#x8c930000 +#x6e740000 +#x6d750000 +#x90970000 +#x818a0000 +#x70760000 +#x73790000 +#x88940000 +#x828e0000 +#x72840000 +#x70890000 +#x7a940000 +#x7b8f0000 +#x77850000 +#x747e0000 +#x7a860000 +#x848a0000 +#x6f750000 +#x6c730000 +#x848a0000 +#x838a0000 +#x6e740000 +#x71780000 +#x8a950000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 6 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 6 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 7 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 7, Card 0 +#x707f045a +#x8187045a +#x7a82045a +#x6f75045a +#x7a840000 +#x787f0000 +#x767d0000 +#x76800418 +#x767e0000 +#x747a0418 +#x737b0000 +#x7b820418 +#x727c0000 +#x767c0000 +#x78800000 +#x75810418 +#x727b0000 +#x81870000 +#x7c860000 +#x6b73061a +#x7c840000 +#x7b810000 +#x79810420 +#x7b850438 +#x767c0000 +#x7c820420 +#x6f760000 +#x747b0000 +#x73790000 +#x8c920000 +#x858b0000 +#x73800418 +#. Crate 7, Card 1 +#x7e8b0000 +#x767d0000 +#x75800000 +#x79840000 +#x8b940000 +#x6b740000 +#x6f770000 +#x858f0000 +#x757d0000 +#x7d860000 +#x818a0000 +#x7c830000 +#x7a850000 +#x8b960000 +#x86930000 +#x72800000 +#x79830000 +#x858c0000 +#x7f890000 +#x767d0000 +#x757e0000 +#x7e850000 +#x838b0000 +#x7a840000 +#x83890000 +#x767c0000 +#x747d0420 +#x767d0420 +#x858b0000 +#x767f0000 +#x6f750000 +#x82900000 +#. Crate 7, Card 2 +#x77870000 +#x6c770000 +#x727b0000 +#x757f0000 +#x7d860000 +#x69730000 +#x70760000 +#x828a0438 +#x777f0000 +#x6b730000 +#x737b0000 +#x747d0000 +#x747d0000 +#x7e840000 +#x858f0000 +#x76830000 +#x737c0000 +#x79800000 +#x78820000 +#x787f0000 +#x868e0000 +#x6c730000 +#x72790000 +#x848e0000 +#x7a810000 +#x787f061a +#x767d0000 +#x777e0418 +#x828a0000 +#x6f790000 +#x6c730000 +#x78870000 +#. Crate 7, Card 3 +#x7d8d0000 +#x909d0000 +#x939f0000 +#x7f890000 +#x7f870000 +#x78810000 +#x80890000 +#x828b0000 +#x929b0000 +#x777e0000 +#x747c0000 +#x89900000 +#x929b0000 +#x6e750000 +#x747d0000 +#x88950000 +#x8e980000 +#x7b830000 +#x727b0000 +#x828a0000 +#x828b0000 +#x79830000 +#x767f0000 +#x79830000 +#x797f067a +#x7e850000 +#x7c840000 +#x7b820000 +#x7e850000 +#x767f0000 +#x7a810000 +#x7c890000 +#. Crate 7, Card 4 +#x74820000 +#x6a710000 +#x757f0000 +#x777e0000 +#x818b0000 +#x6a720000 +#x757c0000 +#x7b830000 +#x70790000 +#x747c0000 +#x7b820000 +#x737a0000 +#x808a0000 +#x767f0000 +#x727d0000 +#x7d8a0000 +#x79820000 +#x757d0000 +#x77800000 +#x7a820000 +#x838b0000 +#x71780000 +#x747e0000 +#x7b840000 +#x7f870000 +#x777e0000 +#x747c0000 +#x747a0000 +#x787e0000 +#x787f0000 +#x767f0420 +#x75810000 +#. Crate 7, Card 5 +#x78880000 +#x7c860000 +#x79810000 +#x757e0000 +#x848c0000 +#x71780000 +#x727b0000 +#x80880000 +#x7d870000 +#x757c0000 +#x78800000 +#x7c840000 +#x77800000 +#x77800000 +#x7b850000 +#x7a870000 +#x70790000 +#x777f0000 +#x7c860000 +#x78800000 +#x74800000 +#x858f0000 +#x8a940000 +#x747e0000 +#x727a0000 +#x747c0000 +#x757d0000 +#x70780580 +#x79800000 +#x717a0000 +#x767e0000 +#x78830418 +#. Crate 7, Card 6 +#x88940000 +#x69700000 +#x70790000 +#x89900000 +#x727c0000 +#x777f0000 +#x78800000 +#x76800000 +#x7b830000 +#x747a0000 +#x747d0000 +#x757c0000 +#x7a820000 +#x7f860000 +#x7c860000 +#x76820000 +#x77800000 +#x757c0000 +#x737d0000 +#x79820000 +#x7c860000 +#x79810000 +#x777e0000 +#x7e890000 +#x71780000 +#x8b910000 +#x868e0000 +#x727b0000 +#x868f0000 +#x6e760000 +#x757f0000 +#x8e9a0000 +#. Crate 7, Card 7 +#x7b8a0000 +#x6b730000 +#x6e770000 +#x848d0000 +#x717a0000 +#x73790000 +#x747b0000 +#x70780000 +#x838b0000 +#x72780000 +#x6c730000 +#x71780000 +#x757d0000 +#x81870000 +#x818b0000 +#x78840618 +#x7d860000 +#x6d740000 +#x70790000 +#x7e850000 +#x80880000 +#x83890000 +#x7f870000 +#x77800000 +#x757b0000 +#x7d830000 +#x7f860000 +#x757f0000 +#x747a0000 +#x7b810000 +#x777f0000 +#x737f0000 +#. Crate 7, Card 8 +#x86950000 +#x6b710000 +#x6e780000 +#x868e0000 +#x79810000 +#x828b0000 +#x7c820000 +#x757d0000 +#x858c0000 +#x6f760000 +#x7a810000 +#x878e0000 +#x737b0000 +#x878e0000 +#x8a930000 +#x76820000 +#x7c850000 +#x72780000 +#x77810000 +#x868d0000 +#x7c860000 +#x7c860000 +#x78800000 +#x7a840000 +#x7d840000 +#x737b0000 +#x7c850000 +#x7d850000 +#x878e0000 +#x7b820000 +#x787f0000 +#x81920000 +#. Crate 7, Card 9 +#x76810000 +#x7a800000 +#x7b820000 +#x7b830000 +#x8e980000 +#x787f0000 +#x767d0000 +#x8b950000 +#x75800000 +#x7e870000 +#x7c880000 +#x767c0000 +#x838c0000 +#x6f760000 +#x757f0000 +#x8c980000 +#x767f0000 +#x898f0000 +#x8a940000 +#x757d0000 +#x79840000 +#x7e850000 +#x7b830000 +#x7e880000 +#x7f850000 +#x6e750000 +#x6e750000 +#x828b0000 +#x7e870000 +#x767d0000 +#x757b0000 +#x828e0000 +#. Crate 7, Card 10 +#x82910000 +#x6c750000 +#x727b0000 +#x868f0000 +#x818a0000 +#x77810000 +#x74820000 +#x88910000 +#x858f0000 +#x76810000 +#x79820000 +#x7d860000 +#x8c970000 +#x7c840000 +#x79830000 +#x808e0000 +#x747e0000 +#x767d0000 +#x7881061a +#x7a810000 +#x77830000 +#x767e0000 +#x7b850000 +#x747e0000 +#x727a0000 +#x7b830000 +#x727c0000 +#x77810000 +#x757e0000 +#x78810000 +#x79810000 +#x75820000 +#. Crate 7, Card 11 +#x798a0000 +#x7d870000 +#x7b870000 +#x757e0000 +#x858d0000 +#x6b720000 +#x71780000 +#x88920418 +#x78800000 +#x81890000 +#x7c840000 +#x6f760000 +#x747c0440 +#x7b820000 +#x757f0000 +#x717f0000 +#x8e980000 +#x777e0000 +#x6c760000 +#x87900000 +#x88900000 +#x6c740000 +#x6d740000 +#x838d0000 +#x7b820000 +#x747b0000 +#x78800000 +#x818a0000 +#x747a0000 +#x77800000 +#x747c0000 +#x75840000 +#. Crate 7, Card 12 +#x8a980000 +#x747b0000 +#x6a740000 +#x838c0000 +#x727a0000 +#x7d840000 +#x79800000 +#x76800418 +#x838b0000 +#x777e0000 +#x72790000 +#x7a810000 +#x848d0000 +#x6c730000 +#x707a0000 +#x86920000 +#x78810000 +#x747b0000 +#x6d770000 +#x7b820000 +#x727a0000 +#x80860000 +#x80860000 +#x70790000 +#x777d0000 +#x767c0000 +#x767d0000 +#x757d0000 +#x747a0000 +#x777e0000 +#x747b0000 +#x78870000 +#. Crate 7, Card 13 +#x78870000 +#x767d0000 +#x79820000 +#x7e860000 +#x717a0000 +#x7f850000 +#x838a0000 +#x78800000 +#x757e0000 +#x767e0000 +#x7c830000 +#x747c0000 +#x8a920000 +#x7b820000 +#x7c870000 +#x85920000 +#x79830000 +#x848b0000 +#x7f890000 +#x777f0000 +#x7d850000 +#x7b810000 +#x747b0000 +#x7d870000 +#x7d890000 +#x7a820000 +#x787e0000 +#x767c0000 +#x747a0000 +#x79800000 +#x78800000 +#x737f0000 +#. Crate 7, Card 14 +#x8f9e0000 +#x6d73065a +#x6f770000 +#x88930000 +#x88920000 +#x6c760000 +#x6f780000 +#x828c0000 +#x8a920000 +#x707b0000 +#x6e750000 +#x858b0000 +#x8c950000 +#x6d750000 +#x727d0000 +#x85930000 +#x868f0000 +#x71790000 +#x727e0000 +#x858e0000 +#x717a0000 +#x888e0000 +#x88910000 +#x747e0000 +#x7a810000 +#x747b0000 +#x757d0000 +#x7d840000 +#x7b810000 +#x777f0000 +#x757b0000 +#x7b820000 +#. Crate 7, Card 15 +#x8b970000 +#x747c0000 +#x6c740000 +#x8088061a +#x737d0000 +#x78800000 +#x7a820000 +#x767d0000 +#x7b840000 +#x757c0000 +#x79830000 +#x7c830000 +#x7f860000 +#x757c0000 +#x787f0000 +#x7b860000 +#x717a0000 +#x777d0000 +#x7b840000 +#x71780000 +#x79830000 +#x787f0000 +#x787f0000 +#x7a830000 +#x72790000 +#x71790000 +#x7a820000 +#x727a0000 +#x757f0000 +#x80880000 +#x7f890000 +#x76830000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 7 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 7 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#x08790000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 8 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 8, Card 0 +#x8390041a +#x6f75041a +#x7379041a +#x8288041a +#x8087041a +#x7076041a +#x7278041a +#x858d041a +#x88900440 +#x757c0440 +#x6d750000 +#x797f0000 +#x848d0000 +#x787f0000 +#x747d0000 +#x7b870000 +#x77810000 +#x727a0000 +#x717b0000 +#x757d0000 +#x85900000 +#x6f750000 +#x787f0000 +#x8d970000 +#x747a0000 +#x848a0000 +#x848a0000 +#x747a0000 +#x7e860000 +#x80860000 +#x7b810000 +#x757d0000 +#. Crate 8, Card 1 +#x80900000 +#x6c740000 +#x6d750000 +#x80880000 +#x757d0000 +#x70760000 +#x747b0000 +#x777f0000 +#x71790000 +#x7a810000 +#x747c0000 +#x6f770000 +#x828b0000 +#x6f780000 +#x717c0000 +#x81900000 +#x78810000 +#x70770000 +#x717b0000 +#x747c0000 +#x747e0000 +#x73790000 +#x6e750000 +#x757e0440 +#x818a0000 +#x69710000 +#x78820000 +#x7e880418 +#x767e0000 +#x717c0000 +#x75810000 +#x7d8b0000 +#. Crate 8, Card 2 +#x72800440 +#x80870000 +#x89910000 +#x747b0000 +#x858d0000 +#x6e770000 +#x737b0000 +#x8b930000 +#x78810000 +#x79800000 +#x78ff061e +#x7f870000 +#x767f0000 +#x81890000 +#x7c860000 +#x77840000 +#x737c0000 +#x83890000 +#x86900000 +#x757d0000 +#x747d0000 +#x7a820000 +#x7c840000 +#x767f0000 +#x767d0000 +#x787f0000 +#x7b820000 +#x777d0000 +#x737e0000 +#x787f0000 +#x7e880000 +#x74810000 +#. Crate 8, Card 3 +#x84920000 +#x6e760000 +#x71790000 +#x7f870000 +#x79820000 +#x79820000 +#x747a0000 +#x767f0000 +#x818a0000 +#x69720000 +#x6a720000 +#x80880000 +#x88900000 +#x7a810000 +#x6f7a0000 +#x78850000 +#x78810000 +#x6d740000 +#x707a0000 +#x7c840000 +#x6e790000 +#x838b0000 +#x81880000 +#x6e790000 +#x787f0000 +#x78800000 +#x767d0000 +#x737a0000 +#x6e750000 +#x787f0000 +#x838a0000 +#x717f0000 +#. Crate 8, Card 4 +#x7b890000 +#x777e0000 +#x77810000 +#x80880000 +#x808a0000 +#x767e0000 +#x747f0000 +#x7f890000 +#x7c850000 +#x73790000 +#x747b0000 +#x79810000 +#x79810000 +#x7a810000 +#x7a840000 +#x79860000 +#x919a0000 +#x71790000 +#x6d770000 +#x858d0000 +#x77800000 +#x787f0000 +#x757d0000 +#x76800000 +#x7f870000 +#x787e0000 +#x7c840000 +#x7e880000 +#x777d0000 +#x737a0440 +#x767d0000 +#x7d8a0000 +#. Crate 8, Card 5 +#x73820000 +#x8d950000 +#x85900000 +#x6c760000 +#x707a0000 +#x82890000 +#x8d950000 +#x7c850000 +#x757d0000 +#x7c860000 +#x878f0000 +#x7b830000 +#x7a830000 +#x858c0000 +#x828b0000 +#x7c8a0000 +#x7c850000 +#x71790000 +#x6e770000 +#x7e850000 +#x818c0000 +#x70ff061e +#x777e0000 +#x939c0000 +#x7d830000 +#x6d740000 +#x737b0000 +#x848d0000 +#x848b0000 +#x6c760000 +#x72790000 +#x7d8a0000 +#. Crate 8, Card 6 +#x727f0440 +#x808a0000 +#x858f0000 +#x79820000 +#x737e0000 +#x75800000 +#x70780000 +#x727a0000 +#x7c850000 +#x70780000 +#x6c730000 +#x7c830000 +#x8c960000 +#x777e0000 +#x6b750000 +#x808d0000 +#x767f0000 +#x79800000 +#x77810000 +#x7a820000 +#x767f0000 +#x747c0000 +#x777e0000 +#x79830000 +#x797f0000 +#x70760000 +#x6e760000 +#x7d840000 +#x747b0000 +#x838b0000 +#x7e880000 +#x74820000 +#. Crate 8, Card 7 +#x83900000 +#x727c0000 +#x70780000 +#x82890000 +#x868f0000 +#x717a0000 +#x6f780000 +#x818b0000 +#x80890000 +#x6a710000 +#x727a0000 +#x7b820000 +#x7c840000 +#x7a810000 +#x7e880000 +#x77870000 +#x818a0000 +#x71780000 +#x6f790000 +#x7e860000 +#x88900000 +#x80860000 +#x777e0000 +#x858f0000 +#x777e0000 +#x7a830000 +#x7b850000 +#x777e0000 +#x83890000 +#x767e0000 +#x757d0000 +#x82910000 +#. Crate 8, Card 8 +#x7c8c0000 +#x757b0000 +#x737b0000 +#x747c0418 +#x848d0000 +#x6c730000 +#x6f750000 +#x848d0418 +#x79820000 +#x79800000 +#x78800000 +#x7a810000 +#x77810000 +#x7d830000 +#x76800000 +#x7b870000 +#x7a840000 +#x868d0000 +#x7c860000 +#x747c0000 +#x727b0000 +#x7e850000 +#x7e860000 +#x737e0418 +#x79800000 +#x797f0000 +#x767c0000 +#x7c840000 +#x7c830000 +#x757b0418 +#x757c0418 +#x7a890418 +#. Crate 8, Card 9 +#x7a880000 +#x828d0000 +#x7d870000 +#x717c0000 +#x7b870000 +#x88910000 +#x828a0000 +#x747e0000 +#x88910000 +#x6d760000 +#x707a0000 +#x89900000 +#x7f880000 +#x747b0000 +#x77800000 +#x7c880000 +#x808a0000 +#x757d0000 +#x767f0000 +#x81890000 +#x848c0000 +#x787f0000 +#x7a810000 +#x808a0000 +#x91990000 +#x757d0000 +#x6e760000 +#x87900000 +#x8c940000 +#x78810000 +#x6e750000 +#x87960000 +#. Crate 8, Card 10 +#x74810000 +#x8b920000 +#x828a0000 +#x707a0000 +#x70780000 +#x7b850000 +#x888f0000 +#x79810000 +#x7c850000 +#x6f770000 +#x77800000 +#x7e860000 +#x81890000 +#x6b720000 +#x717a0000 +#x89990000 +#x707a0000 +#x80860000 +#x858e0000 +#x72790000 +#x858d0000 +#x70770000 +#x6e750000 +#x848f0000 +#x79810000 +#x777e0000 +#x727a0000 +#x747c0000 +#x7a810000 +#x6d750000 +#x777e0000 +#x818f0000 +#. Crate 8, Card 11 +#x79880000 +#x838b0000 +#x828a0000 +#x767f0000 +#x71780000 +#x8e950000 +#x8d930000 +#x7178061a +#x757d0000 +#x7d850000 +#x767f0000 +#x787f0000 +#x757d0000 +#x767e0000 +#x737e0000 +#x77840000 +#x737d0000 +#x8e950000 +#x8f990000 +#x7a820000 +#x7d840000 +#x88900000 +#x838c0000 +#x727c0000 +#x72790000 +#x8c930000 +#x848b0000 +#x70770000 +#x747a0000 +#x89910000 +#x848a0000 +#x73800000 +#. Crate 8, Card 12 +#x72800000 +#x747a0000 +#x7a860000 +#x757e0000 +#x7a860000 +#x757b0000 +#x72790000 +#x78810418 +#x757e0000 +#x6d740000 +#x767d0000 +#x757c0000 +#x77800000 +#x70760000 +#x79830000 +#x79860000 +#x737d0000 +#x717a0000 +#x6f790000 +#x7c830000 +#x767d0000 +#x71770000 +#x737c0000 +#x7a850418 +#x7f880000 +#x79800000 +#x777d0000 +#x6c730000 +#x80880000 +#x7f870000 +#x7f870000 +#x7b890000 +#. Crate 8, Card 13 +#x8b970000 +#x78820000 +#x6c740000 +#x7e870000 +#x858d0000 +#x858c0000 +#x87900000 +#x878f0000 +#x777f0000 +#x7e850000 +#x78800000 +#x70770000 +#x7b830000 +#x767d0000 +#x77820000 +#x77850000 +#x747d0000 +#x79800000 +#x7f890000 +#x767e0000 +#x828b0000 +#x70770000 +#x6e770000 +#x828c0000 +#x80870000 +#x6e750000 +#x767e0000 +#x81880000 +#x72790000 +#x828a0000 +#x7d860000 +#x74800000 +#. Crate 8, Card 14 +#x717e0000 +#x78800000 +#x7e860000 +#x747b0000 +#x8b930000 +#x6d760000 +#x6d740000 +#x828b0000 +#x747d0000 +#x7c820000 +#x81890000 +#x787f0000 +#x878f0000 +#x757d0000 +#x747e0000 +#x88940000 +#x8e990000 +#x6f750000 +#x6a74061a +#x878f0000 +#x767e0000 +#x8087061a +#x7c860000 +#x737d0000 +#x757d0000 +#x7f870000 +#x818a0000 +#x767e0000 +#x81870000 +#x6a710000 +#x6f750000 +#x86910000 +#. Crate 8, Card 15 +#x828e0000 +#x757e0000 +#x757e0000 +#x7e870000 +#x828a0000 +#x747b0000 +#x777d0000 +#x858b0000 +#x78800420 +#x88900000 +#x81880000 +#x737a0000 +#x7c830000 +#x7b810000 +#x777f0000 +#x7b870000 +#x7b850000 +#x767e0000 +#x80890000 +#x7b840000 +#x7b820000 +#x777d0000 +#x7e860000 +#x7e8c0000 +#x82890000 +#x747a0000 +#x72780000 +#x7d840000 +#x8a900000 +#x787f0000 +#x71770000 +#x858f0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 8 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 8 +#x080c1100 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#x080c0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 9 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 9, Card 0 +#x75830000 +#x747b0000 +#x757c0000 +#x7a810000 +#x7c840000 +#x747a0000 +#x797f0000 +#x7b840000 +#x767e0000 +#x7c830000 +#x838a0000 +#x787f0000 +#x79810420 +#x7e860000 +#x828a0000 +#x78840000 +#x87900420 +#x6e740000 +#x757f0000 +#x79800000 +#x7a810420 +#x6f750000 +#x71780000 +#x78820000 +#x8c920000 +#x6f750000 +#x71770000 +#x8b910000 +#x71770000 +#x888e0000 +#x8b910000 +#x737f0000 +#. Crate 9, Card 1 +#x7e8d0000 +#x6d74061a +#x717b0000 +#x88900420 +#x88900420 +#x72780420 +#x71770000 +#x868f0000 +#x757c0000 +#x81890420 +#x848c0000 +#x767d0420 +#x79830000 +#x787f0000 +#x808b0420 +#x75810000 +#x808a0000 +#x6e750420 +#x737c0420 +#x91980420 +#x7c870000 +#x6d770000 +#x7a830000 +#x818b0000 +#x73790000 +#x8389061a +#x858c0000 +#x767e0000 +#x7e840000 +#x707b0000 +#x757d0000 +#x75810000 +#. Crate 9, Card 2 +#x7a8a0000 +#x70770000 +#x71790000 +#x7d860000 +#x80880000 +#x6a710000 +#x6b720000 +#x80890000 +#x7c830000 +#x71770000 +#x71780000 +#x82890000 +#x828b0000 +#x6e750000 +#x727c0000 +#x838f0000 +#x78820000 +#x747b0000 +#x737d0000 +#x79800000 +#x747e0000 +#x838b0000 +#x7b850000 +#x6e790000 +#x7d850420 +#x7b820000 +#x757c0420 +#x7b830420 +#x71780000 +#x7e850420 +#x848b0420 +#x73800418 +#. Crate 9, Card 3 +#x80910420 +#x757b061a +#x777f0420 +#x7a820000 +#x767f0000 +#x82890420 +#x83890000 +#x7a840000 +#x7d850000 +#x73790000 +#x6e760000 +#x7d840000 +#x7d860000 +#x737b0000 +#x707b0000 +#x7b880000 +#x7b830638 +#x747b0420 +#x717b0420 +#x7b830420 +#x79800000 +#x71770000 +#x70770000 +#x7c850000 +#x747a0000 +#x7b810420 +#x737a0420 +#x757c0000 +#x898f0420 +#x747b0000 +#x72780000 +#x87940000 +#. Crate 9, Card 4 +#x7b8f0420 +#x747e0000 +#x747c0000 +#x7c860000 +#x717d0000 +#x737e0638 +#x7b830000 +#x717c0000 +#x6d750000 +#x747b0000 +#x747b0000 +#x737a0000 +#x79840000 +#x848b0000 +#x7f880000 +#x74800000 +#x8d970000 +#x767e0000 +#x6a740000 +#x7e860000 +#x7b840420 +#x7a810000 +#x757c0000 +#x7f890000 +#x767c0000 +#x7d830420 +#x797f0000 +#x70770000 +#x747b0000 +#x7a800000 +#x72790000 +#x6e7a0000 +#. Crate 9, Card 5 +#x70820420 +#x777f0000 +#x808a0000 +#x757d0420 +#x767e0420 +#x7c830000 +#x80870420 +#x737d0420 +#x757d0000 +#x757f0420 +#x737a0000 +#x71780418 +#x7b830000 +#x72790000 +#x737d0000 +#x7d8d0420 +#x7a840000 +#x656d0440 +#x6d760420 +#x7d850000 +#x838c0420 +#x6e740420 +#x6a710000 +#x848d0000 +#x7a800000 +#x747a0000 +#x72780000 +#x777f0000 +#x7f850000 +#x777d0420 +#x757c0000 +#x7c870000 +#. Crate 9, Card 6 +#x808f0000 +#x76800000 +#x7b840000 +#x7b830000 +#x7f8b0420 +#x7b840420 +#x80880420 +#x838d0000 +#x79820000 +#x838b0000 +#x838c0000 +#x78820000 +#x8d970000 +#x6f770000 +#x6f7a0000 +#x89980000 +#x7d870000 +#x6e740000 +#x747d0000 +#x79800000 +#x828b0000 +#x767d0000 +#x70770000 +#x7f890420 +#x767c0420 +#x80860000 +#x7d830420 +#x777d0420 +#x7b820000 +#x7c820000 +#x7e840000 +#x7b870000 +#. Crate 9, Card 7 +#x82920000 +#x77800000 +#x76800000 +#x87910000 +#x8b930659 +#x78800000 +#x71780000 +#x88900000 +#x80880000 +#x72790000 +#x747d0000 +#x81880000 +#x7b850000 +#x79810000 +#x7c860000 +#x7b890420 +#x757e0420 +#x858c0000 +#x818b0000 +#x727a0440 +#x7d840000 +#x8b930000 +#x8b940420 +#x75800420 +#x787f0420 +#x747a0000 +#x70760420 +#x7e870000 +#x787f0000 +#x83890000 +#x71780420 +#x75800000 +#. Crate 9, Card 8 +#x75820000 +#x737a0000 +#x737b0000 +#x7a840420 +#x7a840420 +#x757e0000 +#x757d0000 +#x7b850420 +#x727b0000 +#x757c0420 +#x737d0000 +#x7b820000 +#x7a830000 +#x7c840000 +#x78820000 +#x78890420 +#x78810000 +#x737c0000 +#x757f0000 +#x7c830000 +#x76800000 +#x7b830000 +#x7a830000 +#x79840000 +#x8a920000 +#x727a0000 +#x6f770000 +#x81880000 +#x7c820000 +#x6e750000 +#x747b0000 +#x85930000 +#. Crate 9, Card 9 +#x7b890000 +#x787e0000 +#x7a830000 +#x79810000 +#x78820000 +#x7a820000 +#x7a810000 +#x7a820000 +#x757e0000 +#x8b920000 +#x80870000 +#x71770000 +#x737c0000 +#x8e950000 +#x828b0000 +#x707c0000 +#x77800000 +#x81870000 +#x88910000 +#x727a0000 +#x7b830420 +#x8b910000 +#x858b0000 +#x727c0000 +#x7b810000 +#x767e0000 +#x7e850000 +#x7b830000 +#x868d0000 +#x7b830000 +#x7d840000 +#x79880000 +#. Crate 9, Card 10 +#x828f0000 +#x787f0000 +#x7f890000 +#x828b0000 +#x7c870000 +#x7c870000 +#x838a0000 +#x717c063a +#x868e0000 +#x6f760000 +#x78810440 +#x80860000 +#x8e960000 +#x70770000 +#x6e780000 +#x89960000 +#x79830000 +#x83890000 +#x7d870000 +#x72790000 +#x757e0000 +#x7b830000 +#x80890000 +#x76810000 +#x767f0000 +#x7d840000 +#x7a820000 +#x757e0000 +#x848d0000 +#x6c750000 +#x7d840638 +#x7d8b0418 +#. Crate 9, Card 11 +#x7b890000 +#x757e0000 +#x747d0000 +#x78820000 +#x80890000 +#x777f0000 +#x767e0000 +#x7c850000 +#x747d0000 +#x747b0000 +#x787f0000 +#x757c0000 +#x757e0000 +#x79810600 +#x7f8a0000 +#x77860000 +#x747d0000 +#x757c0000 +#x737d0000 +#x757d0000 +#x828a0000 +#x737a0000 +#x6e760000 +#x838c0000 +#x7a810000 +#x6f770000 +#x6e760000 +#x81890000 +#x7c840000 +#x727d0000 +#x71780000 +#x79860000 +#. Crate 9, Card 12 +#x74800000 +#x858f0000 +#x8a920000 +#x727c0000 +#x848e0000 +#x70770000 +#x72790000 +#x89910000 +#x828b0000 +#x71790000 +#x747c0000 +#x787f0000 +#x7e860000 +#x71780000 +#x747e0000 +#x79870679 +#x717b0420 +#x7e840420 +#x78820000 +#x888f0000 +#x777e0000 +#x747a0440 +#x79830000 +#x727c0000 +#x7b82061a +#x777e0000 +#x747c0000 +#x7c850000 +#x757b0000 +#x80860000 +#x8a910000 +#x76820000 +#. Crate 9, Card 13 +#x73800000 +#x77820000 +#x78820000 +#x737e0000 +#x747e0000 +#x727d0000 +#x737c0000 +#x727b0000 +#x7d860000 +#x6e750000 +#x6c750000 +#x80870000 +#x7d840000 +#x82890000 +#x7a830000 +#x6d790000 +#x7e870000 +#x747a0000 +#x6e780000 +#x7e8a0420 +#x80890000 +#x707a0440 +#x737a0659 +#x868f0438 +#x7a820000 +#x7e870420 +#x767d0000 +#x78800000 +#x80880420 +#x747b0000 +#x727a0000 +#x7c880000 +#. Crate 9, Card 14 +#x7b890000 +#x7b850000 +#x76800000 +#x78820000 +#x767f0000 +#x737b0000 +#x78810000 +#x6f770000 +#x80890000 +#x6d760000 +#x767e0000 +#x81870000 +#x7d850000 +#x70770000 +#x747f0000 +#x84910000 +#x76800000 +#x737a0000 +#x737c0000 +#x78800000 +#x71790000 +#x71790000 +#x72790000 +#x7b850000 +#x858b0000 +#x6f750659 +#x747a0000 +#x83890619 +#x7b810000 +#x72790000 +#x70760000 +#x78830000 +#. Crate 9, Card 15 +#x84910000 +#x6f790000 +#x6e790000 +#x858f0000 +#x8d960000 +#x757c0000 +#x6f780000 +#x80880000 +#x7e860000 +#x70770000 +#x737b0000 +#x858b0000 +#x888f0000 +#x70770000 +#x70790000 +#x7c860000 +#x747e0000 +#x82880000 +#x89930000 +#x79800000 +#x7e850000 +#x6f750000 +#x737a0000 +#x80890000 +#x787e0000 +#x7f850619 +#x7e840000 +#x70760000 +#x73790000 +#x82890000 +#x7b830000 +#x727f0420 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 9 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 9 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#x09830000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 10 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 10, Card 0 +#x7582045a +#x7c82045a +#x787f045a +#x777d045a +#x777f045a +#x797f045a +#x7b82045a +#x7d860420 +#x7e850000 +#x757c0000 +#x767d0420 +#x7d830000 +#x727c0000 +#x7a810000 +#x77800000 +#x76820000 +#x85900000 +#x777d0000 +#x6c760000 +#x80880000 +#x717f0420 +#x777e0000 +#x787f0000 +#x78820000 +#x747b0000 +#x777d0000 +#x797f0000 +#x777d0000 +#x8c950000 +#x737b0000 +#x6b720000 +#x7e890000 +#. Crate 10, Card 1 +#x6f7d0000 +#x7d880000 +#x87910000 +#x70760000 +#x70790000 +#x818b0000 +#x8b930000 +#x79810000 +#x727d0000 +#x80870000 +#x80870000 +#x777d0000 +#x78810000 +#x7e840000 +#x828d0000 +#x77840000 +#x757e0000 +#x777e0000 +#x717b0000 +#x7b830000 +#x727d0000 +#x6f760420 +#x737a0000 +#x707b0420 +#x777d0420 +#x757c0420 +#x747d0000 +#x78800000 +#x777d0000 +#x858d0000 +#x82890000 +#x75810000 +#. Crate 10, Card 2 +#x71810000 +#x79830000 +#x79840420 +#x757d0000 +#x7e860000 +#x717a0000 +#x7b810000 +#x757d0000 +#x777f0000 +#x79800000 +#x7a820000 +#x767d0000 +#x76810000 +#x7c840000 +#x7c880000 +#x79860000 +#x7c850000 +#x6a710000 +#x717b0000 +#x7e850000 +#x89910000 +#x72780000 +#x71780000 +#x818a0000 +#x868d0000 +#x6f750000 +#x737a0000 +#x838a0000 +#x80870000 +#x6c760000 +#x70760000 +#x7e8b0000 +#. Crate 10, Card 3 +#x76840000 +#x7b830000 +#x79820000 +#x79830000 +#x75800000 +#x797f0619 +#x7a83061a +#x79810418 +#x79820000 +#x7a810000 +#x7c840000 +#x7a820000 +#x78830000 +#x787f0000 +#x77810000 +#x76830000 +#x7e870000 +#x747c0000 +#x7c850420 +#x777e0000 +#x77820420 +#x858c0000 +#x8b920000 +#x7a840420 +#x868d0000 +#x737a063a +#x737a0000 +#x848a0420 +#x89910000 +#x757d0420 +#x7078063a +#x8793063a +#. Crate 10, Card 4 +#x76860000 +#x737d0000 +#x6e770000 +#x717a0000 +#x7d850420 +#x666e0420 +#x6c740000 +#x7e880000 +#x7b860000 +#x80890000 +#x79810000 +#x747c0000 +#x78810000 +#x747a0000 +#x737d0000 +#x7e8b0000 +#x757f0000 +#x8a900000 +#x838b0000 +#x71790000 +#x79850000 +#x76800420 +#x737d0420 +#x79830460 +#x767e0000 +#x70770000 +#x71780420 +#x6f750420 +#x72790000 +#x73800000 +#x727d0000 +#x76830000 +#. Crate 10, Card 5 +#x7f8d0000 +#x6f760000 +#x707b0000 +#x818a0000 +#x858d0000 +#x6f780000 +#x72790000 +#x868f0000 +#x747d0000 +#x858c0000 +#x7d850000 +#x747b0000 +#x7c850000 +#x767d0000 +#x757f0000 +#x79860420 +#x838c0000 +#x6b720000 +#x75800000 +#x89910000 +#x85900000 +#x71780000 +#x7b820000 +#x8a940000 +#x747a0000 +#x73790000 +#x7b810000 +#x747b0000 +#x80860000 +#x6f780000 +#x7a800000 +#x8a960000 +#. Crate 10, Card 6 +#x81920420 +#x69710000 +#x6b760000 +#x848c0000 +#x848c0000 +#x6a730418 +#x6a700000 +#x848d0418 +#x727b0420 +#x828a0000 +#x7c840420 +#x757c0000 +#x6f770000 +#x7a810420 +#x78820000 +#x73800000 +#x747e0000 +#x777e0000 +#x76800000 +#x747c0000 +#x78810000 +#x777f0000 +#x747d0000 +#x757f0000 +#x81870000 +#x73790000 +#x6c740000 +#x82880000 +#x80870420 +#x68710420 +#x6f760420 +#x88950638 +#. Crate 10, Card 7 +#x73810000 +#x7f880420 +#x7c850000 +#x70770000 +#x7c850000 +#x80880000 +#x82890000 +#x747c0420 +#x77800420 +#x80880420 +#x7f870420 +#x737a061a +#x86910000 +#x737a0000 +#x78820000 +#x89990440 +#x88900000 +#x767d0000 +#x6e780000 +#x848b0000 +#x737c0000 +#x71790000 +#x747c0000 +#x858e0000 +#x767c0000 +#x7c830000 +#x7a840420 +#x747b0420 +#x747c0420 +#x767e0420 +#x7a83065a +#x76830000 +#. Crate 10, Card 8 +#x808e0000 +#x6f790420 +#x727a0000 +#x868c0000 +#x868e0000 +#x6b720000 +#x757b0000 +#x8a920000 +#x81890000 +#x747b0000 +#x71790000 +#x8b920000 +#x818c0000 +#x72790000 +#x757f0000 +#x8a970000 +#x76800000 +#x7b830000 +#x79830000 +#x767e0000 +#x77810000 +#x81890000 +#x7a820000 +#x727c0000 +#x6f760000 +#x82880618 +#x8c920000 +#x767d0000 +#x81890000 +#x767e0000 +#x7077061a +#x7a870000 +#. Crate 10, Card 9 +#x727f0440 +#x7e84067a +#x848f0000 +#x79810000 +#x7e860000 +#x7a800000 +#x7e850000 +#x828a0000 +#x7a820000 +#x787f0000 +#x79810000 +#x7f870000 +#x7f870000 +#x747b0000 +#x76800000 +#x7c890000 +#x7c860000 +#x767d0000 +#x717b0000 +#x7b830000 +#x78810000 +#x757b0000 +#x747c0000 +#x7c860000 +#x7076065a +#x787e0000 +#x767d0000 +#x777d0000 +#x8f950000 +#x787f0000 +#x71770000 +#x84910000 +#. Crate 10, Card 10 +#x76820440 +#x737a0000 +#x7c830000 +#x717a0000 +#x7a820000 +#x727b0000 +#x727a0000 +#x77800418 +#x747c0000 +#x71780000 +#x6d750000 +#x6e750000 +#x70780000 +#x72790000 +#x747e0000 +#x77840000 +#x8c950000 +#x737a0000 +#x6c770000 +#x7c840000 +#x70780000 +#x797f0000 +#x7d850000 +#x76800000 +#x81870000 +#x71770000 +#x71770000 +#x80880000 +#x7a810000 +#x79810000 +#x7a800000 +#x7a870000 +#. Crate 10, Card 11 +#x78860000 +#x838a0000 +#x828a0000 +#x71770000 +#x8c950000 +#x777e0000 +#x6c730000 +#x848f0000 +#x7f870638 +#x747b0000 +#x7a820000 +#x7b830420 +#x747d0000 +#x72780000 +#x79840000 +#x7c970000 +#x7c860000 +#x777f0000 +#x747e0000 +#x7c840000 +#x7c830000 +#x7e840000 +#x7c820000 +#x79820000 +#x777d0000 +#x797f0000 +#x7a810000 +#x79800000 +#x72790000 +#x7b830000 +#x858e0000 +#x79860000 +#. Crate 10, Card 12 +#x76840000 +#x7a830000 +#x79810000 +#x828b0000 +#x88910420 +#x747b0000 +#x757b0000 +#x77810420 +#x7d860000 +#x71790420 +#x78800420 +#x868d0000 +#x838d0000 +#x747b0000 +#x757f0000 +#x85930000 +#x7c850000 +#x787f0000 +#x7c860000 +#x7c840000 +#x81880000 +#x737a0000 +#x79810000 +#x77820000 +#x777f0000 +#x73790000 +#x7c820000 +#x787f0000 +#x79800420 +#x7a800460 +#x7b830000 +#x78830420 +#. Crate 10, Card 13 +#x707e0460 +#x80870000 +#x838e0000 +#x757d0000 +#x838b0000 +#x6e760000 +#x6a710000 +#x7f880000 +#x6f760000 +#x717a0000 +#x7c840000 +#x757b0000 +#x7c830000 +#x72780000 +#x737c0000 +#x7a850000 +#x7f870000 +#x737a0000 +#x707a063a +#x81890000 +#x81880000 +#x71780000 +#x70770000 +#x7b850000 +#x73790000 +#x71780000 +#x737b0000 +#x767f0000 +#x777e0000 +#x81890000 +#x848c0000 +#x7a880000 +#. Crate 10, Card 14 +#x717e0000 +#x838a0000 +#x88900000 +#x6f770000 +#x76810000 +#x858f0000 +#x81870619 +#x757f0000 +#x737c0000 +#x888e0000 +#x828a0000 +#x757c0000 +#x808a0000 +#x70780000 +#x747e0000 +#x85910000 +#x838c0000 +#x676f0000 +#x717b0000 +#x8a920000 +#x7f870000 +#x767e0000 +#x78810000 +#x7d890000 +#x7c840000 +#x71780000 +#x6f770000 +#x838a0000 +#x79810000 +#x76800000 +#x72780000 +#x7885061a +#. Crate 10, Card 15 +#x7b880000 +#x76800000 +#x737d0000 +#x7c840000 +#x79810679 +#x7d850000 +#x78810000 +#x7d840000 +#x79810000 +#x70770000 +#x747c0000 +#x79810000 +#x7d850000 +#x70770000 +#x71780000 +#x76810000 +#x6f780000 +#x81870000 +#x848d0000 +#x757d0000 +#x757c0000 +#x787e0000 +#x7f860000 +#x747d0000 +#x70770000 +#x787f0000 +#x767e0000 +#x73790619 +#x767c0420 +#x737d0000 +#x79810000 +#x6f7c0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 10 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 10 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#x08c00000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 11 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 11, Card 0 +#x78890000 +#x777f0000 +#x79810440 +#x70780000 +#x86920000 +#x70790000 +#x70790000 +#x8f980000 +#x8e970440 +#x71780000 +#x6d750000 +#x8b920000 +#x878f0000 +#x737a0000 +#x77800000 +#x929e0638 +#x828c0420 +#x6d760000 +#x747e0000 +#x89910000 +#x7c840000 +#x6f750000 +#x747c0000 +#x808b0000 +#x888e0000 +#x6f750000 +#x72780000 +#x898f0000 +#x7c830000 +#x767c0000 +#x7a800000 +#x78830000 +#. Crate 11, Card 1 +#x7c8e0000 +#x767f0000 +#x79820000 +#x7a830000 +#x86920000 +#x78800000 +#x78810000 +#x838e0000 +#x7a820000 +#x7c830000 +#x7b820000 +#x747b0000 +#x7d890000 +#x787f0000 +#x727d0000 +#x7f8d0000 +#x77800420 +#x838a0420 +#x828c0000 +#x767e0000 +#x747e0000 +#x7d830000 +#x858c0000 +#x77820000 +#x72780000 +#x81880000 +#x8a910420 +#x7d830000 +#x797f0000 +#x858c063a +#x7c830000 +#x727e0000 +#. Crate 11, Card 2 +#x8f9f0000 +#x7b820000 +#x6a710000 +#x87910000 +#x818a0000 +#x71770000 +#x747a0000 +#x929a0000 +#x7b830000 +#x787f0000 +#x757d0000 +#x7d840000 +#x76800000 +#x7b820000 +#x727d0000 +#x7a890000 +#x707a0000 +#x7f870000 +#x8c960000 +#x78800000 +#x767e0000 +#x787e0000 +#x77800000 +#x707a0000 +#x787f0000 +#x7a820000 +#x71790000 +#x79800000 +#x70770000 +#x81880000 +#x83890000 +#x727f0000 +#. Crate 11, Card 3 +#x7e8c0000 +#x70770000 +#x747e0000 +#x88910000 +#x80890000 +#x6c730000 +#x747b0000 +#x8b940000 +#x88910000 +#x6d760000 +#x6d740000 +#x838b0000 +#x81890000 +#x6f750000 +#x707a0000 +#x89960000 +#x757e0000 +#x767f0000 +#x78820000 +#x747c0000 +#x747c0000 +#x7f870000 +#x7f860000 +#x727b0418 +#x70770000 +#x73790000 +#x78800000 +#x71780000 +#x72780000 +#x7f860000 +#x8a900000 +#x7a850420 +#. Crate 11, Card 4 +#x86930440 +#x6c720000 +#x71790000 +#x8b950000 +#x7f890000 +#x70770000 +#x797f0000 +#x838d0000 +#x777f0000 +#x7e850000 +#x7e860000 +#x777f0000 +#x707a0000 +#x848b0000 +#x8b950000 +#x79860000 +#x8a940000 +#x71780000 +#x6d770000 +#x81890000 +#x848d0000 +#x737c0000 +#x6e760000 +#x818b0420 +#x8a900000 +#x787e0000 +#x6e74061a +#x7e840418 +#x8f970000 +#x747c0000 +#x70760659 +#x83900000 +#. Crate 11, Card 5 +#x7b8b0000 +#x6c740000 +#x747b0000 +#x848c0000 +#x7b830000 +#x6f770000 +#x727a065a +#x80870000 +#x848c0000 +#x70770000 +#x70780000 +#x7e840000 +#x7a830420 +#x70770000 +#x727b0000 +#x7f8d0000 +#x8c960000 +#x70770000 +#x6a740000 +#x89910420 +#x7a810000 +#x69710440 +#x737b0000 +#x7c860000 +#x767c0000 +#x70780000 +#x6d740000 +#x80890000 +#x6f790420 +#x82880000 +#x868d0000 +#x77840000 +#. Crate 11, Card 6 +#x8b990000 +#x757d0000 +#x78800000 +#x80880000 +#x828b0000 +#x72790000 +#x747d0000 +#x848d0000 +#x848c0000 +#x686f0000 +#x6e780000 +#x878e0000 +#x86910000 +#x72790000 +#x6b750000 +#x85950000 +#x8c950000 +#x71780000 +#x6a740000 +#x848c0000 +#x757d0000 +#x747b0000 +#x6f780000 +#x69730000 +#x7c830000 +#x6f770000 +#x747b0000 +#x81880000 +#x69710000 +#x71790000 +#x72790000 +#x75820000 +#. Crate 11, Card 7 +#x7b8a0000 +#x777e0000 +#x78810000 +#x79830000 +#x7b850000 +#x767f0000 +#x777e0000 +#x78810000 +#x858e0000 +#x6a710000 +#x70780420 +#x838a0000 +#x86900000 +#x6e750000 +#x727c0000 +#x85960000 +#x89930000 +#x6e760000 +#x6f7a0000 +#x90970000 +#x858d0000 +#x71790000 +#x6d730000 +#x87910000 +#x72780000 +#x7e840000 +#x878e0000 +#x787f0000 +#x888e0000 +#x747d0000 +#x6e740000 +#x848f0000 +#. Crate 11, Card 8 +#x818f0000 +#x6c750000 +#x757f0000 +#x7c840000 +#x86900000 +#x6e760000 +#x72790000 +#x858d0000 +#x757d0000 +#x7c840000 +#x737b0000 +#x747b0000 +#x818d0000 +#x6c740000 +#x737e0000 +#x8d9b0000 +#x838c0000 +#x727a0000 +#x757e0000 +#x828a0000 +#x818b0000 +#x6d740000 +#x70770000 +#x858e0000 +#x72780000 +#x83890000 +#x89900000 +#x7a810000 +#x71790000 +#x81890000 +#x89900000 +#x828f0000 +#. Crate 11, Card 9 +#x77850000 +#x777f0000 +#x757d0000 +#x78810000 +#x858e0000 +#x69700000 +#x72790000 +#x919a0000 +#x7b830000 +#x6a710000 +#x70770000 +#x767d0000 +#x818a0000 +#x6f750000 +#x6c770000 +#x7b870000 +#x7c860000 +#x71780000 +#x70790000 +#x757c0000 +#x838b0000 +#x6e760000 +#x78800000 +#x8c950000 +#x8b910000 +#x757b0000 +#x6f760000 +#x81870000 +#x8c920000 +#x737b0000 +#x6c720000 +#x838e0000 +#. Crate 11, Card 10 +#x818e0000 +#x6f770000 +#x737a0000 +#x777e0000 +#x7d850000 +#x71780000 +#x70760000 +#x78810000 +#x777f0000 +#x737a0000 +#x6e770000 +#x7e840000 +#x848e0000 +#x71780000 +#x6f7a0000 +#x87940000 +#x717c0000 +#x747c0000 +#x79830000 +#x747d0000 +#x818a0000 +#x6e750000 +#x79810000 +#x858f0000 +#x7e840000 +#x71770000 +#x6e750000 +#x797f0000 +#x81870000 +#x71780000 +#x767d0000 +#x7d8a0000 +#. Crate 11, Card 11 +#x83930000 +#x747d0000 +#x6f800000 +#x7f8a0000 +#x7f880000 +#x757e0000 +#x77800000 +#x78810000 +#x78800000 +#x7f860000 +#x7d850000 +#x72780000 +#x818b0000 +#x747c0000 +#x707b0000 +#x818e0000 +#x858f0000 +#x6a710000 +#x737d0000 +#x8f960000 +#x767e0000 +#x81880000 +#x88910000 +#x78830000 +#x82890000 +#x7b810000 +#x7f850000 +#x7a820000 +#x7b810000 +#x757c0000 +#x767c0000 +#x76820000 +#. Crate 11, Card 12 +#x85920000 +#x6f760000 +#x6f780000 +#x7c830000 +#x7b830000 +#x6c730000 +#x72790000 +#x7f870000 +#x747c0000 +#x7f860000 +#x838b0000 +#x777d0000 +#x747d0000 +#x7e850000 +#x88910000 +#x7d890000 +#x808a0000 +#x71780000 +#x757f0000 +#x858d0000 +#x868e0000 +#x6f750000 +#x747c0000 +#x8d970000 +#x7a800000 +#x80860000 +#x80870000 +#x7a830000 +#x828b0000 +#x70760000 +#x70760000 +#x818d0000 +#. Crate 11, Card 13 +#x81900000 +#x777e0000 +#x78820000 +#x7d860000 +#x7dff0000 +#x848a0000 +#x7f880000 +#x78800000 +#x828a0000 +#x6f750000 +#x737b0000 +#x91980000 +#x79830000 +#x70780000 +#x747f0000 +#x77840000 +#x737d0000 +#x71790000 +#x7a830000 +#x70780000 +#x777f0000 +#x6d730000 +#x727a0000 +#x7a840000 +#x6e740000 +#x81880000 +#x848c0000 +#x757c0418 +#x7c820000 +#x6e770000 +#x6e740000 +#x7f8d0000 +#. Crate 11, Card 14 +#x929f0000 +#x747c0000 +#x70770000 +#x848c0000 +#x81890000 +#x737a0000 +#x787f0000 +#x858d0000 +#x868e0000 +#x72790000 +#x7c840000 +#x91990000 +#x8b940000 +#x777f0000 +#x7f8a0000 +#x83900000 +#x727c0000 +#x7e840000 +#x8f9a0000 +#x7e860000 +#x81890000 +#x71780000 +#x747b0000 +#x838d0000 +#x777f0000 +#x7a800000 +#x79810000 +#x79810000 +#x8f960000 +#x6e740000 +#x6d740000 +#x8e9b0000 +#. Crate 11, Card 15 +#x7c8a0000 +#x747c0000 +#x78800000 +#x7b810000 +#x838b0000 +#x6e740000 +#x7a810000 +#x8c940000 +#x747c0000 +#x7a800000 +#x7d840000 +#x777d0000 +#x7e870000 +#x6d740000 +#x717b0000 +#x828e0440 +#x858f0000 +#x6d730000 +#x6f7a0000 +#x8f970000 +#x79840000 +#x737b0000 +#x767e0000 +#x78830000 +#x797f0000 +#x777d0000 +#x70770000 +#x7d830000 +#x797f0000 +#x7b810000 +#x7d830000 +#x78840000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 11 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 11 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#x09410000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 12 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 12, Card 0 +#x6e7d041a +#x858c041a +#x858c041a +#x707d0000 +#x828d0000 +#x6e7a0000 +#x6d760000 +#x808c0000 +#x757d0619 +#x70770000 +#x747b0000 +#x7cff0000 +#x77820000 +#x787e0000 +#x76800000 +#x79850418 +#x737d0000 +#x777d0000 +#x78820000 +#x7b830000 +#x7a840000 +#x6e750000 +#x70770000 +#x7d850619 +#x787e0000 +#x81870000 +#x7b810000 +#x71770000 +#x7f850000 +#x71770000 +#x6e740000 +#x79830618 +#. Crate 12, Card 1 +#x73830000 +#x7b840000 +#x848e0000 +#x77800000 +#x878f0000 +#x6d740000 +#x72780420 +#x8790061a +#x878f0000 +#x71780000 +#x777f0000 +#x8a910000 +#x767f0000 +#x888f0000 +#x818b0000 +#x717e0000 +#x7c850000 +#x79800000 +#x76800000 +#x7a810000 +#x878f0000 +#x747b0000 +#x70770000 +#x818b0000 +#x79800420 +#x7a800000 +#x757d0000 +#x757c0000 +#x81870000 +#x767e0000 +#x737b0000 +#x7f8e0000 +#. Crate 12, Card 2 +#x75840000 +#x81890000 +#x828b0000 +#x78820000 +#x7b830000 +#x757d0000 +#x74cc0000 +#x7d850000 +#x7a820000 +#x848c0000 +#x7b840000 +#x727c0420 +#x777f0420 +#x848b0420 +#x7f890000 +#x73800000 +#x79820000 +#x767d0000 +#x78820000 +#x7c840000 +#x868e0000 +#x70780000 +#x6d750000 +#x88910000 +#x7c820000 +#x848a0000 +#x82880000 +#x72780000 +#x747a0000 +#x7f850000 +#x7b810000 +#x737e0000 +#. Crate 12, Card 3 +#x78850000 +#x757b0619 +#x747d0420 +#x78800000 +#x77820000 +#x737b0000 +#x72780000 +#x7b830000 +#x828a0000 +#x6b720000 +#x6d740000 +#x858b0000 +#x6f760000 +#x7b810000 +#x7b830000 +#x74810000 +#x727c0000 +#x787e0000 +#x737c0000 +#x7b840000 +#x747c0000 +#x747b0000 +#x7b820000 +#x76800420 +#x71770000 +#x7f850000 +#x777d0440 +#x737b0000 +#x757b0000 +#x7a820000 +#x7a810000 +#x79850000 +#. Crate 12, Card 4 +#x6f7d0000 +#x7b830000 +#x818c0000 +#x77800000 +#x818b0000 +#x6e760000 +#x7b820000 +#x87900000 +#x80880000 +#x6e760000 +#x71790000 +#x8a910000 +#x89930000 +#x757d0000 +#x70790000 +#x84900000 +#x747e0000 +#x747b063a +#x77810619 +#x69710000 +#x737d0000 +#x757d0000 +#x7a840000 +#x767f0418 +#x81890000 +#x6e760000 +#x6e760000 +#x858d0000 +#x7a820000 +#x848c0000 +#x7b840000 +#x6e7b0000 +#. Crate 12, Card 5 +#x77840000 +#x6d780000 +#x71790000 +#x7f870000 +#x81890000 +#x6b720000 +#x757d0000 +#x8a940000 +#x848c0000 +#x6e770000 +#x737b0000 +#x89900000 +#x7f870000 +#x777e0000 +#x737c0000 +#x818e0000 +#x747e0000 +#x79800000 +#x757e0000 +#x737c0000 +#x7a860000 +#x78830000 +#x747b0000 +#x7a840418 +#x7a810000 +#x747a0000 +#x7c830000 +#x7a820000 +#x78800000 +#x747b0000 +#x777d0440 +#x747f0000 +#. Crate 12, Card 6 +#x808d0000 +#x6c760000 +#x6f780000 +#x868f0000 +#x717a0000 +#x797f0000 +#x82890000 +#x767e0000 +#x848c0000 +#x70790000 +#x6d750000 +#x7a820000 +#x7e860000 +#x777f0000 +#x77820000 +#x80900000 +#x7d860000 +#x70770000 +#x737d0000 +#x7e860000 +#x7e860000 +#x71790000 +#x777f0000 +#x828b0000 +#x7b810000 +#x70790000 +#x6e760000 +#x7c820000 +#x72790000 +#x78820000 +#x777d0000 +#x717e0000 +#. Crate 12, Card 7 +#x7e8b0000 +#x787f0000 +#x757c0000 +#x7c840000 +#x79810000 +#x80870000 +#x848b0000 +#x757e0000 +#x7b820000 +#x7f860000 +#x7a820000 +#x7a810000 +#x79820000 +#x787f0000 +#x78810000 +#x7c8b0000 +#x737d0000 +#x83890000 +#x858f0000 +#x79810000 +#x868e0000 +#x6f750000 +#x727a0000 +#x858f0000 +#x868c0000 +#x767c0000 +#x7a800000 +#x878e0000 +#x787f0420 +#x7b810000 +#x757c0000 +#x727e0000 +#. Crate 12, Card 8 +#x6f7e0000 +#x80880000 +#x858c0000 +#x70790000 +#x828e0000 +#x6e780000 +#x747d0000 +#x88920000 +#x737b0000 +#x7a810000 +#x80880000 +#x767d0000 +#x79850000 +#x747a0000 +#x74800000 +#x7c890000 +#x707a0000 +#x797f0000 +#x707a0000 +#x70770000 +#x86910000 +#x70770000 +#x6e750000 +#x848d0000 +#x73790000 +#x82880000 +#x7f850000 +#x777d0000 +#x7c830000 +#x6f770000 +#x777d0000 +#x83900000 +#. Crate 12, Card 9 +#x78850000 +#x7c850000 +#x7c850000 +#x747c0000 +#x77800000 +#x777f0000 +#x72780000 +#x747d0000 +#x6c740000 +#x81890000 +#x7a840000 +#x6e740000 +#x717c0000 +#x7c830000 +#x737d0000 +#x6e7d0000 +#x757e0000 +#x7f860000 +#x7a840000 +#x72790000 +#x7b870000 +#x757b0000 +#x777e0000 +#x77820000 +#x838a0000 +#x767d0000 +#x737b0000 +#x7d840000 +#x7a8a0000 +#x777d0000 +#x757d0000 +#x7a880000 +#. Crate 12, Card 10 +#x7a890000 +#x6b730000 +#x6f790000 +#x78800000 +#x7b840000 +#x686f0000 +#x6d730000 +#x7f860000 +#x6e760000 +#x787e0000 +#x7e860000 +#x757b0000 +#x707a0000 +#x737a0000 +#x79820000 +#x737f0000 +#x757e0000 +#x767d0000 +#x747e0000 +#x70780000 +#x70790000 +#x73790000 +#x71780000 +#x707a0000 +#x888e0000 +#x71770000 +#x6c720000 +#x7e840418 +#x7a800000 +#x747a0000 +#x747a0000 +#x77830000 +#. Crate 12, Card 11 +#x72800000 +#x7d840000 +#x7d830000 +#x79820000 +#x7b850000 +#x6f750000 +#x70770000 +#x80880000 +#x767d0000 +#x7b810000 +#x79810000 +#x747b0000 +#x79810000 +#x70770000 +#x7a840420 +#x79860000 +#x8e970000 +#x777e0000 +#x717b0420 +#x858d0000 +#x8e960000 +#x73790000 +#x747b0000 +#x828d0000 +#x71770000 +#x787e0000 +#x747a0000 +#x757b0000 +#x7e840000 +#x73790000 +#x737a0000 +#x78840000 +#. Crate 12, Card 12 +#x6f7e0000 +#x828a0000 +#x87900000 +#x6f750000 +#x70790000 +#x7b840000 +#x81890000 +#x747c0000 +#x767d0000 +#x838a0000 +#x79800000 +#x6d740000 +#x7e860000 +#x6c730000 +#x747c0000 +#x84910000 +#x7d870000 +#x6c730000 +#x6e770000 +#x7c830000 +#x777f0000 +#x6c720000 +#x6e750000 +#x78830000 +#x7b810000 +#x72780000 +#x737b0000 +#x797f0000 +#x7b820000 +#x787e0000 +#x747b0000 +#x78840000 +#. Crate 12, Card 13 +#x7b880000 +#x71770000 +#x70770000 +#x787e0000 +#x7c840000 +#x757c0000 +#x727a0000 +#x737b0000 +#x727b0000 +#x868d0418 +#x89900000 +#x6c730418 +#x767f0000 +#x79800000 +#x7b860000 +#x7a860000 +#x76800000 +#x69700000 +#x6e780000 +#x7c840000 +#x7b840000 +#x6d750000 +#x727c0000 +#x808a0000 +#x77800000 +#x7b830000 +#x77810000 +#x757e0000 +#x71780000 +#x78800000 +#x79810000 +#x77820000 +#. Crate 12, Card 14 +#x7d8d0000 +#x838f0000 +#x7c870000 +#x74830000 +#x77810000 +#x838e0000 +#x7f880000 +#x737c0000 +#x79840000 +#x80870000 +#x7c850000 +#x757c0000 +#x78820000 +#x737a0000 +#x7b840000 +#x77840000 +#x76810000 +#x79810000 +#x88940000 +#x7c850000 +#x747d0000 +#x7c850000 +#x818c0000 +#x79850000 +#x858e0000 +#x6f780000 +#x76840000 +#x89920000 +#x727c0000 +#x757e0000 +#x7e860000 +#x77860000 +#. Crate 12, Card 15 +#x798a0000 +#x767f0000 +#x757c0000 +#x79810000 +#x78810000 +#x7e850000 +#x7d850000 +#x7e870000 +#x747d0000 +#x7c830000 +#x818a0000 +#x7a820000 +#x76800000 +#x787f0000 +#x777f0000 +#x808d0000 +#x7a840000 +#x757c0000 +#x78840000 +#x7e870000 +#x79820000 +#x757d0000 +#x79810000 +#x818c0000 +#x737a0000 +#x7a810000 +#x80870000 +#x767d0000 +#x848c0000 +#x757c0000 +#x6f760000 +#x86940000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 12 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 12 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#x08ab0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 13 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 13, Card 0 +#x8592041a +#x7279041a +#x737b041a +#x797f041a +#x7881041a +#x7a80041a +#x878d041a +#x7c84041a +#x727a041a +#x767d0000 +#x777f0000 +#x747a0000 +#x79830000 +#x7a810000 +#x747e0440 +#x79860000 +#x717c0000 +#x7d850000 +#x8a940000 +#x747c0000 +#x6f790000 +#x80880000 +#x8a910000 +#x75ff061a +#x797f0000 +#x7e840000 +#x7e860000 +#x78800000 +#x7f870000 +#x787e0000 +#x7b810000 +#x7b880000 +#. Crate 13, Card 1 +#x79890000 +#x77820000 +#x7d850000 +#x7f870000 +#x7c850000 +#x80870000 +#x7e850000 +#x7e860000 +#x7b840000 +#x767d0000 +#x767f0000 +#x7c840000 +#x7b870000 +#x757d0000 +#x76810000 +#x828e0000 +#x78820000 +#x7c840000 +#x85900000 +#x88910000 +#x84920000 +#x747a0000 +#x6f770000 +#x89930000 +#x848a0000 +#x737a0000 +#x767d0000 +#x81880000 +#x7b830000 +#x89900000 +#x868c0000 +#x77830000 +#. Crate 13, Card 2 +#x78860000 +#x737b0420 +#x79820000 +#x78810000 +#x6f7b0000 +#x818a0000 +#x8a930000 +#x737e0000 +#x7b840000 +#x7a810000 +#x767e0000 +#x7c820000 +#x77820000 +#x727a0000 +#x77810000 +#x7f8c0000 +#x8c960000 +#x6d750000 +#x6d770000 +#x838a0000 +#x8b970000 +#x737b0000 +#x737b0000 +#x87910000 +#x858c0000 +#x6d730000 +#x70780000 +#x878f0000 +#x727a0000 +#x7c850000 +#x797f0000 +#x707c0000 +#. Crate 13, Card 3 +#x727d0000 +#x737b0000 +#x737b0000 +#x777f0000 +#x737a0000 +#x848b0420 +#x737a0000 +#x767d0000 +#x78800000 +#x757b0000 +#x737a0000 +#x7d840000 +#x7d850000 +#x757d0000 +#x717a0000 +#x7d8a0000 +#x8a930000 +#x71780000 +#x76810000 +#x868e0000 +#x7d850000 +#x757c0000 +#x7f880000 +#x7e890000 +#x81870420 +#x78820000 +#x767d0000 +#x787f0000 +#x7a810000 +#x767d0000 +#x767c0000 +#x7b870000 +#. Crate 13, Card 4 +#x7f8b0000 +#x6d730000 +#x727a0000 +#x838b0000 +#x737b0000 +#x72790000 +#x7e840000 +#x767e0000 +#x8f970000 +#x727a0000 +#x6d750000 +#x7d840000 +#x717b0420 +#x7e860000 +#x89930000 +#x76820000 +#x78820420 +#x70770000 +#x6e780000 +#x7f860000 +#x7c840000 +#x6a700000 +#x73790000 +#x818b0000 +#x81880000 +#x6c720000 +#x6c720000 +#x838a0000 +#x7c830000 +#x797f0000 +#x767d0000 +#x7b870000 +#. Crate 13, Card 5 +#x717f0000 +#x71770418 +#x6d740000 +#x727c0000 +#x71780000 +#x70760000 +#x71770000 +#x727b0418 +#x777f0000 +#x6d740000 +#x737c0000 +#x79800000 +#x737a0000 +#x7a810420 +#x747d0000 +#x707b0418 +#x78820000 +#x7a820000 +#x78820000 +#x6c740000 +#x6d780000 +#x878d0000 +#x7f860418 +#x6d770418 +#x7c820000 +#x73790000 +#x72780000 +#x797f0418 +#x7b810000 +#x6e740000 +#x71790420 +#x76820000 +#. Crate 13, Card 6 +#x89970000 +#x73790000 +#x717b0000 +#x858c0000 +#x787f0000 +#x7e840000 +#x7d830000 +#x78820000 +#x777f0000 +#x8c930000 +#x888f0000 +#x757c0000 +#x7981065a +#x838a0000 +#x828a0000 +#x79860000 +#x78820000 +#x7e840000 +#x77820000 +#x77800000 +#x7c840000 +#x777d0000 +#x7a810000 +#x79820000 +#x7e840000 +#x767c0000 +#x7a810000 +#x7c840000 +#x7e850000 +#x7a810000 +#x777d0000 +#x83900000 +#. Crate 13, Card 7 +#x76830440 +#x676f0000 +#x72790000 +#x7c820000 +#x86900000 +#x747b0000 +#x6b730000 +#x7a840000 +#x727a0000 +#x71780000 +#x767d0000 +#x6f770000 +#x78810000 +#x70770000 +#x727b0000 +#x71800000 +#x737d0000 +#x7a810000 +#x727d0000 +#x71780000 +#x747b0000 +#x7c830000 +#x7d850000 +#x78830000 +#x787f0420 +#x72780000 +#x7c840000 +#x7f850000 +#x767c0000 +#x7a800000 +#x7b810000 +#x727d0000 +#. Crate 13, Card 8 +#x83920000 +#x6d740000 +#x747c0000 +#x858d0000 +#x7d850000 +#x747b0000 +#x7e850000 +#x7b830000 +#x858d0000 +#x72790000 +#x777e0000 +#x858b0000 +#x747b0000 +#x797f0000 +#x7a840000 +#x717d0000 +#x7b850000 +#x767d0000 +#x78820000 +#x7b830000 +#x777f0000 +#x7a830000 +#x79810000 +#x77800000 +#x737a0000 +#x7c820000 +#x747c0000 +#x777f0000 +#x71770000 +#x81870000 +#x898f0000 +#x78830000 +#. Crate 13, Card 9 +#x7f8c0000 +#x70760000 +#x6f750420 +#x82880000 +#x7e860000 +#x767c0000 +#x747a0000 +#x7c850000 +#x7a820000 +#x7a800000 +#x79810000 +#x7a820000 +#x828b0000 +#x6e750000 +#x6c750000 +#x7d890000 +#x7a840000 +#x73790000 +#x66700000 +#x7f860000 +#x818a0000 +#x70780000 +#x6d730000 +#x78810000 +#x777d0000 +#x858b0000 +#x7a800000 +#x71770000 +#x7c830000 +#x737a0000 +#x71780000 +#x7c880000 +#. Crate 13, Card 10 +#x78850000 +#x7c820000 +#x6e760000 +#x747a0000 +#x7a820000 +#x72790000 +#x757c0000 +#x777e0000 +#x81890000 +#x70770000 +#x727a0000 +#x7f850000 +#x7f880000 +#x73790000 +#x737c0000 +#x78830000 +#x767f0000 +#x7e840000 +#x7f890000 +#x757d0000 +#x727a0000 +#x82880000 +#x81880000 +#x707a0000 +#x82880000 +#x70760000 +#x7a800000 +#x858b0000 +#x8d930000 +#x767c0000 +#x6e740000 +#x88940000 +#. Crate 13, Card 11 +#x86930000 +#x70770000 +#x6f790000 +#x818b0000 +#x77800000 +#x7c850000 +#x878d0000 +#x777f0000 +#x71790000 +#x797f0000 +#x818a0000 +#x787f0000 +#x727b0000 +#x787f0000 +#x7d880000 +#x75820000 +#x7a840000 +#x70760000 +#x70790000 +#x777e0000 +#x737b0000 +#x73790000 +#x71780000 +#x7a840000 +#x767d0000 +#x7f850000 +#x7e840000 +#x71770000 +#x777e0000 +#x7c820000 +#x797f0000 +#x74810000 +#. Crate 13, Card 12 +#x84900000 +#x6e770000 +#x6c750000 +#x80890000 +#x737a0000 +#x7f850000 +#x858d0000 +#x767e0418 +#x777e0000 +#x747a0000 +#x757d0000 +#x767c0000 +#x78800000 +#x6c720000 +#x737d0000 +#x808d0000 +#x737d0000 +#x7c830000 +#x7a830000 +#x70780000 +#x6e750000 +#x7a810000 +#x7a810000 +#x6e760000 +#x73790000 +#x72780000 +#x747a0000 +#x72780000 +#x767d0000 +#x7f860000 +#x7a800000 +#x74820000 +#. Crate 13, Card 13 +#x78870000 +#x787f0000 +#x767d0000 +#x747d0000 +#x747c0000 +#x80870000 +#x878e0000 +#x757e0000 +#x79810000 +#x7e840000 +#x8a920000 +#x757c0000 +#x7d860000 +#x787f0000 +#x7c860000 +#x7e8a0000 +#x7e840000 +#x787e0000 +#x7c860000 +#x7c840000 +#x7c840000 +#x7c820000 +#x767d0000 +#x7c850000 +#x7b810000 +#x777d0000 +#x768d0000 +#x797f0000 +#x898f0000 +#x72780000 +#x71770000 +#x89960000 +#. Crate 13, Card 14 +#x78870000 +#x7a810000 +#x7a810000 +#x787e0000 +#x7b810000 +#x7f850000 +#x757d0000 +#x7b840000 +#x757d0000 +#x848e0000 +#x8d950000 +#x777e0000 +#x777e0000 +#x7f860000 +#x89930000 +#x7e8a0000 +#x747d0000 +#x7c840000 +#x79830000 +#x777f0000 +#x7a820000 +#x747c0000 +#x767d0000 +#x7d870000 +#x82880000 +#x878d0000 +#x80870000 +#x82880000 +#x7f850000 +#x858c0000 +#x80860000 +#x7e890000 +#. Crate 13, Card 15 +#x8494041a +#x73830418 +#x6c7c0418 +#x7e8a041a +#x86900000 +#x6d750000 +#x6e770000 +#x7f890000 +#x747d0000 +#x7e850000 +#x7c850000 +#x767d0000 +#x757f0000 +#x727a0000 +#x77800000 +#x707d0000 +#x747e0000 +#x7d840000 +#x87920000 +#x7d850000 +#x858e0000 +#x79800000 +#x77800000 +#x818b0000 +#x70770000 +#x7a810000 +#x7a810000 +#x747c0000 +#x747c0000 +#x79810000 +#x777e0000 +#x707c0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 13 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 13 +#x08de1100 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x08de0000 +#x09c30000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 14 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 14, Card 0 +#x8796061b +#x7d870000 +#x808e0000 +#x7b890000 +#x77840000 +#x7b8a0000 +#x7c840000 +#x7982061a +#x78800000 +#x747a0000 +#x767d0000 +#x7b820420 +#x7c860618 +#x72790420 +#x707a0000 +#x87950000 +#x8d970000 +#x787e0000 +#x6b750000 +#x868e0000 +#x737b0000 +#x787e0000 +#x7e860000 +#x757f0000 +#x747a0000 +#x787e0000 +#x78800000 +#x757b0000 +#x767d0000 +#x6e750000 +#x71770000 +#x73800000 +#. Crate 14, Card 1 +#x75840000 +#x737b0000 +#x83890000 +#x767e0000 +#x717b0000 +#x858f0000 +#x89900000 +#x727b0658 +#x7d850000 +#x70760000 +#x6f760000 +#x858c0000 +#x7c850000 +#x71770000 +#x717a0000 +#x848f0000 +#x707a0000 +#x82880000 +#x7d870000 +#x767d0000 +#x77800000 +#x7e850000 +#x80870000 +#x7a850000 +#x6e740000 +#x777d0000 +#x6f760000 +#x747b0000 +#x787f0000 +#x80880000 +#x7d830000 +#x77830000 +#. Crate 14, Card 2 +#x78850000 +#x79810000 +#x77800000 +#x78800000 +#x77800000 +#x7c840000 +#x79800000 +#x757f0000 +#x79800000 +#x72780420 +#x78800000 +#x777d0000 +#x747c0000 +#x71780000 +#x757e0000 +#x7c880000 +#x747d0000 +#x898f0000 +#x828c0000 +#x70780000 +#x838b0000 +#x737b0000 +#x767d0000 +#x7c850000 +#x7d830000 +#x6f750000 +#x73790000 +#x757d0000 +#x7a800000 +#x71770000 +#x767d0000 +#x78830000 +#. Crate 14, Card 3 +#x808e0000 +#x7a820000 +#x7c840000 +#x7f880000 +#x838d0000 +#x727a0000 +#x787f0000 +#x7a820000 +#x78820000 +#x71770000 +#x72780000 +#x79800000 +#x838d0000 +#x6e750000 +#x757e0000 +#x89970000 +#x838c0000 +#x787f0000 +#x7e880000 +#x7a820000 +#x7b820000 +#x898f0000 +#x868d0000 +#x757f0000 +#x747a0000 +#x787e0000 +#x7f850000 +#x777f061a +#x747b0000 +#x82880000 +#x838a0000 +#x75830000 +#. Crate 14, Card 4 +#x6e7b0000 +#x7e850000 +#x78820000 +#x71780000 +#x737b0000 +#x7c830000 +#x83890000 +#x6d750000 +#x80880000 +#x6f760000 +#x6d740000 +#x7d840000 +#x838c0000 +#x73790000 +#x737d0000 +#x828e0000 +#x828a0000 +#x71780000 +#x6f790000 +#x80880000 +#x7e850000 +#x6f750000 +#x79810000 +#x868f0000 +#x767c0000 +#x767c0000 +#x79800000 +#x72790000 +#x777d0000 +#x757b0000 +#x757b0000 +#x6c770000 +#. Crate 14, Card 5 +#x7a890000 +#x77810000 +#x777f0000 +#x7c850000 +#x7d840000 +#x777d0000 +#x767e0000 +#x78810000 +#x7d850000 +#x7a810000 +#x7a810000 +#x7f860000 +#x858e0000 +#x868d0000 +#x828e0000 +#x87940000 +#x828b0000 +#x797f0000 +#x757f0000 +#x7f870000 +#x7c850000 +#x777d0000 +#x777e0000 +#x818b0000 +#x777d0000 +#x797f0000 +#x7c830000 +#x79800000 +#x747b0000 +#x868c0000 +#x8a900000 +#x7b880000 +#. Crate 14, Card 6 +#x7d8b0000 +#x7f890000 +#x767e0000 +#x79830000 +#x757e0000 +#x7d850000 +#x82880000 +#x757d0000 +#x87900000 +#x78800000 +#x6b730000 +#x81890000 +#x929a0000 +#x7d840000 +#x6f790000 +#x82900000 +#x7b850000 +#x878e0000 +#x89940000 +#x78850000 +#x757d0000 +#x7c830000 +#x82880000 +#x737e0000 +#x7f850000 +#x71770000 +#x73790000 +#x838a0000 +#x797f0000 +#x7c830000 +#x7f850659 +#x7b860000 +#. Crate 14, Card 7 +#x79840000 +#x70770000 +#x727b0000 +#x777f0000 +#x80890000 +#x6e750000 +#x70780000 +#x858d0000 +#x70790000 +#x868d0000 +#x838b0000 +#x737a0000 +#x737c0000 +#x80870000 +#x86900000 +#x6e7a0000 +#x80890000 +#x6a710000 +#x6f780000 +#x7e860000 +#x7a830000 +#x6c720000 +#x7178061a +#x7d860000 +#x797f0000 +#x6b710000 +#x71770000 +#x747b0000 +#x757b0000 +#x6d740000 +#x6d730000 +#x77830000 +#. Crate 14, Card 8 +#x78860000 +#x878e0000 +#x838c0000 +#x6e740000 +#x7c850000 +#x868f0000 +#x828a0000 +#x717a0000 +#x767e0000 +#x767d0000 +#x767d0000 +#x7a800659 +#x8b930000 +#x757c0000 +#x6c750000 +#x838f0000 +#x727b0000 +#x7f850000 +#x7f870000 +#x72790000 +#x767e0000 +#x7c820000 +#x767c0000 +#x777f0000 +#x81870000 +#x73790000 +#x72780000 +#x7f870000 +#x81870000 +#x6f750000 +#x72780000 +#x818c0000 +#. Crate 14, Card 9 +#x73820000 +#x7d860000 +#x848c0000 +#x79810418 +#x737c0000 +#x79820000 +#x757d0000 +#x79810000 +#x7e860000 +#x6b720000 +#x71790000 +#x7c820000 +#x7b820000 +#x737a0000 +#x7d870000 +#x7a870000 +#x737c0000 +#x797f0000 +#x717b0000 +#x747b0000 +#x777f0000 +#x787e0000 +#x787f0000 +#x7b850000 +#x73790000 +#x777d0000 +#x7d830000 +#x6e740000 +#x73790000 +#x7e840000 +#x7f860000 +#x75810000 +#. Crate 14, Card 10 +#x73820000 +#x868c0000 +#x90960000 +#x7c830000 +#x7b830000 +#x7e840000 +#x787e0000 +#x76800000 +#x747c0000 +#x8a910000 +#x81890000 +#x747b0000 +#x78810000 +#x7c840000 +#x79850000 +#x79850000 +#x737d0000 +#x777e0000 +#x78820000 +#x777f0000 +#x7b820000 +#x73ff0000 +#x747b0000 +#x77810000 +#x777d0000 +#x7d830000 +#x898f0000 +#x7c820000 +#x7e840000 +#x78800000 +#x7d830000 +#x7d8b0000 +#. Crate 14, Card 11 +#x7b880000 +#x747b0000 +#x7c850000 +#x7b840000 +#x838b0000 +#x737c0000 +#x72790000 +#x7d860000 +#x7d850000 +#x7c830000 +#x767e0000 +#x7b820000 +#x7c850000 +#x79810000 +#x747f0000 +#x7a870000 +#x757f0000 +#x7b820000 +#x858f0000 +#x7e860000 +#x71790000 +#x7e850000 +#x858d0000 +#x7d880000 +#x727a0000 +#x757b0000 +#x747b0000 +#x737b0000 +#x868c0000 +#x72780000 +#x757d0000 +#x808c0000 +#. Crate 14, Card 12 +#x77870000 +#x7c850000 +#x7c860000 +#x78810000 +#x7a820000 +#x7a820000 +#x7b830000 +#x747d0000 +#x7a820000 +#x79800000 +#x777f0000 +#x7a810000 +#x79830000 +#x79800000 +#x7a840000 +#x77850000 +#x7d860000 +#x757b0000 +#x727b0000 +#x7a820000 +#x888f0000 +#x71770000 +#x6f760000 +#x858e0000 +#x82880000 +#x777d0000 +#x6f760000 +#x7c840000 +#x747b0000 +#x7e840000 +#x7f860000 +#x757f0000 +#. Crate 14, Card 13 +#x89960000 +#x72780000 +#x777e0000 +#x8a900000 +#x787f0000 +#x7b810000 +#x7b820000 +#x7e870000 +#x747c0000 +#x89900000 +#x82890000 +#x71790000 +#x7b830000 +#x787f0000 +#x7a840000 +#x727f0000 +#x8b950000 +#x7a820000 +#x6f790000 +#x878f0000 +#x8d940000 +#x6f750000 +#x6f760000 +#x848e0000 +#x7e840000 +#x767d0000 +#x757b0000 +#x81890000 +#x7e840000 +#x797f0000 +#x767c0000 +#x7c880000 +#. Crate 14, Card 14 +#x75840000 +#x777e0000 +#x747d0000 +#x747b0000 +#x78810000 +#x777e0000 +#x767e0000 +#x757e0000 +#x7f870000 +#x777d0000 +#x79810000 +#x767d0000 +#x7c850000 +#x6b720000 +#x757d0000 +#x838f0000 +#x79830000 +#x7f850000 +#x7b840000 +#x71780000 +#x7b830000 +#x767c0000 +#x6f760000 +#x7b840000 +#x787e0000 +#x797f0000 +#x79800000 +#x727a0000 +#x7b810000 +#x787e0000 +#x747a0000 +#x767f0000 +#. Crate 14, Card 15 +#x76830000 +#x797f0000 +#x7b840000 +#x787f0000 +#x7a820000 +#x7d840000 +#x7c830000 +#x7d840000 +#x757e0420 +#x7d840420 +#x747c0420 +#x7c820420 +#x747d0420 +#x8a900000 +#x8a910000 +#x6f7a0420 +#x76800000 +#x7b820000 +#x7b850000 +#x7a820000 +#x757c0000 +#x7a810000 +#x79820000 +#x77810000 +#x7d830000 +#x70770000 +#x6f760000 +#x7e850000 +#x7d850000 +#x797f0000 +#x72790000 +#x75800000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 14 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 14 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#x07b10000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 15 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 15, Card 0 +#x829e0458 +#x717a0458 +#x77800458 +#x89910458 +#x7c840458 +#x78820458 +#x79830458 +#x7d860458 +#x747c045a +#x80880000 +#x8a920000 +#x7e860000 +#x737b0000 +#x848b0000 +#x8c950000 +#x7d8a0000 +#x727d0000 +#x7c820000 +#x737c0000 +#x747c0000 +#x7a820000 +#x7b820000 +#x7c850000 +#x7f880000 +#x7f850000 +#x767c0000 +#x79800000 +#x777e0000 +#x7e850000 +#x737a0000 +#x787f0420 +#x7b880000 +#. Crate 15, Card 1 +#x81990000 +#x71790000 +#x6c770000 +#x76810000 +#x86910000 +#x747e0000 +#x707a0000 +#x7c840000 +#x71790000 +#x767d0000 +#x7b840000 +#x767d0000 +#x737b0000 +#x79810000 +#x7c860000 +#x77840000 +#x8b950000 +#x747b0000 +#x707a0000 +#x828a0000 +#x77810420 +#x7e860000 +#x7d840000 +#x717a0000 +#x727a0000 +#x7a810420 +#x81880000 +#x77800000 +#x71790000 +#x79800000 +#x7b810000 +#x727f0000 +#. Crate 15, Card 2 +#x798a0000 +#x6b730000 +#x70780000 +#x7b880000 +#x777e0000 +#x6d770000 +#x727a0000 +#x79810000 +#x828a0000 +#x67710000 +#x6b720000 +#x868e0000 +#x737b0420 +#x838a0000 +#x7f890000 +#x6d790000 +#x757e0420 +#x70760000 +#x77810420 +#x757d0000 +#x767f0000 +#x7c820000 +#x777f0000 +#x757f0000 +#x787e0000 +#x6a700000 +#x71770000 +#x7b810418 +#x888e0000 +#x757c0000 +#x757c0000 +#x86920000 +#. Crate 15, Card 3 +#x84920000 +#x737b0000 +#x6e790000 +#x7d860000 +#x8b950000 +#x77800000 +#x6f790000 +#x828b0000 +#x737b0000 +#x7d840000 +#x7f860000 +#x767e0000 +#x858d0000 +#x717a0000 +#x78800000 +#x818e0000 +#x868f0000 +#x71780000 +#x6f790000 +#x88900000 +#x747c0000 +#x80870000 +#x80880000 +#x79830000 +#x82880000 +#x747a0000 +#x777e0000 +#x777d0000 +#x777d0000 +#x80860000 +#x7f850000 +#x77840000 +#. Crate 15, Card 4 +#x717e0000 +#x7f860000 +#x8a930000 +#x7b830000 +#x737c0000 +#x81870000 +#x8b920000 +#x7d840418 +#x7d860000 +#x6b730000 +#x77800000 +#x848b0000 +#x7f870000 +#x6e760000 +#x7a850000 +#x84900000 +#x86900000 +#x6b720000 +#x6f780000 +#x88900000 +#x8c930000 +#x6d760000 +#x6e760000 +#x858e0418 +#x888e0000 +#x747b0000 +#x727a0000 +#x838a0000 +#x737a0000 +#x70770000 +#x767d0000 +#x72800000 +#. Crate 15, Card 5 +#x72810000 +#x79800000 +#x88900000 +#x79800000 +#x717c0000 +#x7d840000 +#x878e0000 +#x7c840000 +#x89920000 +#x737a0000 +#x6d740000 +#x868d0000 +#x89920000 +#x757d0000 +#x6f7a0000 +#x808b0000 +#x7c850000 +#x70770000 +#x717a0000 +#x79810000 +#x8f990000 +#x79810000 +#x747e0000 +#x838d0000 +#x7a820000 +#x71770000 +#x737a0000 +#x77800000 +#x70770000 +#x7e860000 +#x79800000 +#x77840000 +#. Crate 15, Card 6 +#x6d7a0000 +#x848c0000 +#x828a0000 +#x6f760000 +#x70770000 +#x83890000 +#x898f0000 +#x6e760000 +#x70790000 +#x8b910000 +#x89910000 +#x70770000 +#x8a930000 +#x737a0000 +#x6e780000 +#x82900000 +#x7e880000 +#x7c830000 +#x77810000 +#x79810000 +#x7d860000 +#x7a800000 +#x777e0000 +#x7b850000 +#x71770000 +#x787e0000 +#x80870000 +#x777f0000 +#x7d830000 +#x8d940000 +#x80860000 +#x6d790000 +#. Crate 15, Card 7 +#x818f0000 +#x717b0000 +#x78810000 +#x767f0000 +#x78800000 +#x757b0000 +#x767e0000 +#x7d860000 +#x81890000 +#x747b0000 +#x737a0000 +#x787f0000 +#x757f0000 +#x8d940000 +#x88910000 +#x717f0000 +#x7c850000 +#x7c820000 +#x76800000 +#x78800000 +#x7d870000 +#x787e0000 +#x767e0000 +#x7d860000 +#x777d0000 +#x7f850000 +#x81870000 +#x777d0000 +#x777e0000 +#x71790000 +#x747a0000 +#x7b870000 +#. Crate 15, Card 8 +#x7c8c0000 +#x71790000 +#x717b0000 +#x7a830000 +#x767f0000 +#x73790000 +#x747a0000 +#x7a830418 +#x727b0000 +#x79820000 +#x737b0000 +#x757b0000 +#x8a930000 +#x6b720000 +#x6e780000 +#x848f0000 +#x808a0000 +#x757b0000 +#x747f0000 +#x7d840000 +#x7a820000 +#x747a0000 +#x747b0000 +#x7a840000 +#x878e0000 +#x6c720000 +#x6f750000 +#x81870000 +#x8d930000 +#x767e0000 +#x6d750000 +#x838e0000 +#. Crate 15, Card 9 +#x89960000 +#x737c0000 +#x6d770000 +#x828b0000 +#x8d970000 +#x7b850000 +#x71780000 +#x80880000 +#x91990000 +#x757c0000 +#x6e750659 +#x88910000 +#x929b0000 +#x747b0000 +#x6c770000 +#x88940000 +#x7b840000 +#x83890000 +#x77810000 +#x72790000 +#x77800000 +#x72780000 +#x6f760000 +#x77810000 +#x797f0000 +#x81870000 +#x888e0000 +#x767d0000 +#x757d0000 +#x82890000 +#x888e0000 +#x7f8c0000 +#. Crate 15, Card 10 +#x7d890000 +#x747a0000 +#x77810000 +#x77810000 +#x767d0000 +#x7b850000 +#x81880000 +#x727a0000 +#x757e0000 +#x7c840000 +#x7b830000 +#x757c0000 +#x80890000 +#x878f0000 +#x79850000 +#x818e0598 +#x79840000 +#x79810000 +#x737e0000 +#x7d850000 +#x7a820000 +#x7a820000 +#x777e0000 +#x7c860000 +#x70760000 +#x7e840000 +#x888f0000 +#x737b0000 +#x767c0000 +#x7c820000 +#x7b820000 +#x79830000 +#. Crate 15, Card 11 +#x83910000 +#x72790000 +#x6f780000 +#x7a860000 +#x7c870000 +#x717c0000 +#x717b0000 +#x76800000 +#x7b840000 +#x767f0000 +#x77810000 +#x79810000 +#x7a820000 +#x777f0000 +#x79820659 +#x7c8a0000 +#x7d870000 +#x757e0000 +#x747e0000 +#x81880000 +#x838b0000 +#x767d0000 +#x79830000 +#x828c0000 +#x878d0000 +#x6e740000 +#x70790000 +#x878f0000 +#x8c930000 +#x767e0000 +#x6c740000 +#x808e0000 +#. Crate 15, Card 12 +#x75830000 +#x89920000 +#x848c0000 +#x747d0000 +#x878f0000 +#x757b0000 +#x7b830000 +#x878f0000 +#x8b940000 +#x71780000 +#x6e760000 +#x88900000 +#x8a940000 +#x6f770000 +#x74810000 +#x86930659 +#x79820000 +#x7c840000 +#x818c0000 +#x7b830000 +#x777f0000 +#x7f850000 +#x838b0000 +#x78820000 +#x7b820000 +#x777e0000 +#x7a810000 +#x71790000 +#x79810000 +#x838a0000 +#x868d0000 +#x7b880000 +#. Crate 15, Card 13 +#x83910000 +#x70790000 +#x70780000 +#x80880000 +#x767f0000 +#x767f0000 +#x7b820000 +#x7d870000 +#x79820000 +#x7d840000 +#x7b830000 +#x7c830000 +#x8c960000 +#x757b0000 +#x717b0000 +#x8b980000 +#x88920000 +#x787f0000 +#x76810000 +#x80880000 +#x8f970000 +#x7a820000 +#x777f0000 +#x86900000 +#x8a900000 +#x747b0000 +#x75810000 +#x848e0000 +#x8c930000 +#x727a0000 +#x7b820000 +#x85910000 +#. Crate 15, Card 14 +#x73820000 +#x76800000 +#x7d860000 +#x78800000 +#x77800000 +#x7f870000 +#x7b820000 +#x777f0000 +#x828a0000 +#x70770000 +#x757d0000 +#x81880000 +#x8d980000 +#x747b0000 +#x707a0000 +#x84910000 +#x77800000 +#x79800000 +#x808b0000 +#x7c840000 +#x919a0000 +#x78820000 +#x72790000 +#x818b0000 +#x7a810000 +#x767c0000 +#x737b0000 +#x7d840000 +#x79810000 +#x7b850000 +#x7f850000 +#x7a870000 +#. Crate 15, Card 15 +#x7f8d0000 +#x7d860000 +#x8b960000 +#x828c0000 +#x79830000 +#x78800000 +#x747b0000 +#x7c830000 +#x7c840000 +#x79800000 +#x767e0000 +#x787f0000 +#x7882061a +#x7a810000 +#x747c0000 +#x7782061a +#x76800000 +#x787e0000 +#x7e87061a +#x767f061a +#x7b83061a +#x79800000 +#x777e0000 +#x79830000 +#x7d920000 +#x72790000 +#x71790000 +#x7b830000 +#x80880000 +#x717a0000 +#x757c0000 +#x78850000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 15 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 15 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#x07e80000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 16 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 16, Card 0 +#x78850000 +#x81890000 +#x7c8a0000 +#x717c0000 +#x7a830000 +#x767f0000 +#x757d0000 +#x7b830000 +#x777f0000 +#x767d0000 +#x79810000 +#x757c0000 +#x7e870000 +#x6d740000 +#x70780000 +#x7a860000 +#x7a820000 +#x72780000 +#x6f780000 +#x78800000 +#x7e860000 +#x6b710000 +#x71780000 +#x76800000 +#x80870000 +#x71770000 +#x676d0000 +#x7a800000 +#x77810000 +#x757c0000 +#x787e0000 +#x77830000 +#. Crate 16, Card 1 +#x73820000 +#x818b0000 +#x7e8a0000 +#x6f770000 +#x75830000 +#x7e890000 +#x818b0000 +#x727c0000 +#x87900000 +#x737a0000 +#x747c0000 +#x7e850418 +#x77800418 +#x72790580 +#x7a850580 +#x74810418 +#x7b840420 +#x757c0000 +#x78820000 +#x7c840418 +#x79820000 +#x767d0000 +#x79820438 +#x7c870000 +#x7c830418 +#x7b810000 +#x7b850440 +#x7a82061a +#x7e850000 +#x78810000 +#x777f0000 +#x7a8a0000 +#. Crate 16, Card 2 +#x8c9a0420 +#x70770000 +#x6e770000 +#x848c061a +#x848d0000 +#x747f0000 +#x6f770418 +#x7f880418 +#x81890000 +#x727a0000 +#x747b0000 +#x878d0000 +#x6f790000 +#x8d950000 +#x8c990000 +#x75830420 +#x77800000 +#x848a0000 +#x848e0000 +#x777f061a +#x78800000 +#x868d0420 +#x838d0000 +#x717b0000 +#x7e840418 +#x73790000 +#x727a0418 +#x78800000 +#x767d0000 +#x73790000 +#x72780000 +#x7884061a +#. Crate 16, Card 3 +#x76830000 +#x89900000 +#x818a0000 +#x737b0000 +#x767f0000 +#x878f0000 +#x858b0000 +#x78800000 +#x757d0618 +#x7c840000 +#x7b830000 +#x747c0000 +#x717b0000 +#x7d840000 +#x848e0618 +#x7a860000 +#x838a0000 +#x767d0000 +#x6d780000 +#x80880420 +#x8c950000 +#x70780000 +#x6d770000 +#x858f0000 +#x70780000 +#x737a0000 +#x79810000 +#x70780000 +#x787f0000 +#x73790658 +#x767f0000 +#x79850000 +#. Crate 16, Card 4 +#x89950000 +#x6f780000 +#x76800000 +#x8c940420 +#x818a0000 +#x76800000 +#x777f0000 +#x7f880000 +#x7a820000 +#x767e0000 +#x7a810000 +#x7a820000 +#x79820000 +#x72790000 +#x727d0000 +#x7d890000 +#x75800000 +#x797f0000 +#x76810000 +#x79800000 +#x80890000 +#x71770000 +#x72780440 +#x7c860000 +#x777d0000 +#x7d830000 +#x81870000 +#x78810000 +#x767e0000 +#x7a810000 +#x7e850000 +#x77820000 +#. Crate 16, Card 5 +#x6e7d0000 +#x7e870000 +#x88900500 +#x757f0000 +#x6f770000 +#x80860500 +#x8a910420 +#x78820000 +#x6c750000 +#x7b830000 +#x7d860000 +#x757c0000 +#x6e780000 +#x848a0000 +#x808c0000 +#x707c0000 +#x727c0420 +#x7c830000 +#x7b850000 +#x737b0000 +#x7a830000 +#x6d730000 +#x70790000 +#x7d870000 +#x72ff061e +#x868d0000 +#x80880000 +#x6c730000 +#x8d950000 +#x747b0000 +#x68700000 +#x7b880000 +#. Crate 16, Card 6 +#x73810000 +#x777e0000 +#x78800000 +#x767e0000 +#x838b0000 +#x707a0000 +#x777f0000 +#x88910418 +#x757e0000 +#x86900000 +#x7c840000 +#x70780000 +#x808a0000 +#x787e0000 +#x7c870000 +#x84920000 +#x70790000 +#x767d0000 +#x7a840000 +#x757d0000 +#x777e0000 +#x71770000 +#x6f760000 +#x7d860000 +#x898f0000 +#x6c720000 +#x70760000 +#x8f960000 +#x72780000 +#x81870000 +#x7f860000 +#x737d0000 +#. Crate 16, Card 7 +#x7e8d0000 +#x707b0000 +#x737c0000 +#x818a0000 +#x7b820000 +#x78800420 +#x797f0000 +#x767c0000 +#x79820000 +#x86900000 +#x7e860000 +#x747d0000 +#x79820000 +#x79810000 +#x78830000 +#x75820440 +#x8a940000 +#x69700000 +#x6c760000 +#x848c0000 +#x89930000 +#x6d750000 +#x6c740000 +#x838d0000 +#x848b0000 +#x71780000 +#x79800000 +#x787e0000 +#x7b860000 +#x757c0000 +#x757d0000 +#x7d890000 +#. Crate 16, Card 8 +#x7a8a0000 +#x85910000 +#x8a950000 +#x7e870000 +#x747c0000 +#x868e0000 +#x8a910000 +#x79820000 +#x767f0000 +#x81880000 +#x8a920000 +#x80870000 +#x7c850000 +#x79800000 +#x77820000 +#x7c890000 +#x79820000 +#x797f0000 +#x767f0000 +#x70780000 +#x7b840000 +#x7b810000 +#x757c0000 +#x7a850000 +#x838f0000 +#x73790000 +#x787f0000 +#x8a950000 +#x7d880000 +#x909f0000 +#x868c0000 +#x79890000 +#. Crate 16, Card 9 +#x707e0000 +#x7f870000 +#x848c0000 +#x7d880000 +#x7a820000 +#x71790000 +#x70770000 +#x79820418 +#x7a820000 +#x737c0000 +#x77800000 +#x78800000 +#x7e860000 +#x72790000 +#x7b8a0000 +#x77840000 +#x79830000 +#x7d850000 +#x7d870000 +#x727a0000 +#x7f8a0000 +#x737b0000 +#x787f0000 +#x7c860418 +#x71770000 +#x848a0000 +#x7b810000 +#x787e0000 +#x78800000 +#x858c0000 +#x81880000 +#x737e0000 +#. Crate 16, Card 10 +#x75810000 +#x878f0000 +#x828c0000 +#x6f770000 +#x6f780000 +#x89910000 +#x8c930000 +#x727a0000 +#x81890000 +#x737a0000 +#x727a0000 +#x767d0000 +#x7d860000 +#x71780000 +#x747e0000 +#x86930000 +#x7d860000 +#x757d0000 +#x7b850000 +#x7b820000 +#x7d850000 +#x757b0000 +#x7d860000 +#x7b850000 +#x888f0000 +#x787f0000 +#x71780000 +#x7e850000 +#x7e840000 +#x6e750000 +#x6f750000 +#x85910000 +#. Crate 16, Card 11 +#x77870000 +#x7c840000 +#x777f0000 +#x7b840000 +#x7a840000 +#x737d0000 +#x777e0000 +#x78820000 +#x727a0000 +#x90970000 +#x878e0000 +#x6f760000 +#x737c0000 +#x82890000 +#x8b970000 +#x7f8c0000 +#x7a840000 +#x7a800000 +#x78820000 +#x777f0000 +#x7f890000 +#x767d0000 +#x757c0000 +#x7a850000 +#x79800000 +#x7e860000 +#x7f860000 +#x7b820000 +#x7c830440 +#x747c0000 +#x757c0000 +#x7b880000 +#. Crate 16, Card 12 +#x81910000 +#x747c0000 +#x7a830000 +#x787f0000 +#x79810000 +#x79800000 +#x747c0000 +#x727c0418 +#x777e0000 +#x838b0000 +#x8b930000 +#x7c830000 +#x71790000 +#x7f860000 +#x88930000 +#x75810000 +#x70790000 +#x777e0000 +#x78810000 +#x6f760000 +#x78800000 +#x747a0000 +#x71770000 +#x79820000 +#x777e0000 +#x656b0000 +#x6d730000 +#x7e850000 +#x7f870000 +#x6f780000 +#x6f750000 +#x7e8c0000 +#. Crate 16, Card 13 +#x74820000 +#x747b0000 +#x7f870000 +#x737b0000 +#x707a0000 +#x78800000 +#x7d830000 +#x767f0000 +#x7c85061a +#x70770000 +#x737b0000 +#x7a810000 +#x828c0000 +#x757c0000 +#x76810000 +#x7b870000 +#x757e0000 +#x747c0000 +#x79820000 +#x767e0000 +#x757d0000 +#x858c0000 +#x828a0000 +#x707a0000 +#x7a810000 +#x7e850000 +#x818a0000 +#x7b820000 +#x71790000 +#x7d860000 +#x878f0000 +#x7b890000 +#. Crate 16, Card 14 +#x81900000 +#x7d860000 +#x79830000 +#x8288065a +#x818b0000 +#x737a0000 +#x767e0000 +#x88910000 +#x878f0000 +#x838a0000 +#x78800000 +#x81880000 +#x78820000 +#x868d0000 +#x818c0000 +#x6f7d0000 +#x88920000 +#x6f770000 +#x6e780000 +#x858e0000 +#x878f0000 +#x737c0000 +#x6d760000 +#x828d0000 +#x848b0000 +#x71790000 +#x737a0000 +#x8c940000 +#x787f0000 +#x7b810000 +#x757d0000 +#x78850000 +#. Crate 16, Card 15 +#x747f0000 +#x888e0000 +#x82890000 +#x747b0000 +#x747b0000 +#x8c920000 +#x858b0000 +#x727a0000 +#x7b840000 +#x76800000 +#x74820000 +#x7e8e0000 +#x87920000 +#x6d760000 +#x7a810000 +#x7f880000 +#x838c0000 +#x747e0000 +#x73810000 +#x83910000 +#x7c890000 +#x727c0000 +#x79810000 +#x7d840000 +#x757b0000 +#x72780000 +#x747a0000 +#x777d0000 +#x757b0000 +#x787f0000 +#x7e850000 +#x76810000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 16 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 16 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#x07ca0000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 17 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 17, Card 0 +#x88990000 +#x6b710000 +#x6a710000 +#x858b0000 +#x747c0000 +#x757c0000 +#x737b0000 +#x71790000 +#x78810000 +#x939a0000 +#x868e0000 +#x757c0000 +#x737c0000 +#x81880000 +#x828b0000 +#x75810000 +#x747e0000 +#x797f0000 +#x76810000 +#x7b830000 +#x868e0000 +#x71770000 +#x6d740000 +#x8c960000 +#x72780000 +#x73790000 +#x747a0000 +#x747a0000 +#x7a800000 +#x787e0000 +#x767c0000 +#x77830000 +#. Crate 17, Card 1 +#x8b9a041c +#x6d74041c +#x6d75041c +#x868f043c +#x8891041c +#x7078041c +#x686e041c +#x878f041c +#x6e76041c +#x8b91045c +#x838b041c +#x7078041c +#x7782041c +#x737a041c +#x737e041c +#x7c89041c +#x727b041c +#x6d73041c +#x6f79041c +#x7980041c +#x7781041c +#x737a041c +#x737b041c +#x7781041c +#x777e041c +#x6f76041c +#x8086041c +#x868f041c +#x787f041c +#x8389041c +#x8187041c +#x6d7a041c +#. Crate 17, Card 2 +#x7e8b0000 +#x78800000 +#x7d880000 +#x7c830618 +#x7d840000 +#x787f0000 +#x7c830000 +#x7b830000 +#x7a830000 +#x6f760000 +#x757d0000 +#x878e0440 +#x757f0000 +#x7a820000 +#x717c0000 +#x76830000 +#x757f0000 +#x747a0000 +#x76800000 +#x79810000 +#x7c840000 +#x858b0000 +#x7c820000 +#x707a0000 +#x787e0000 +#x747a0000 +#x777d0420 +#x757c0000 +#x7e840000 +#x70790000 +#x7a810420 +#x8d9a0000 +#. Crate 17, Card 3 +#x7a890000 +#x6c740000 +#x6c750000 +#x79820000 +#x767f0000 +#x747d0000 +#x71780000 +#x79830438 +#x7b830000 +#x78810000 +#x757d0000 +#x737a0000 +#x7f880000 +#x6a710000 +#x727e0420 +#x8a980418 +#x747e0000 +#x787f0000 +#x747e0420 +#x6f770000 +#x77820420 +#x767d0420 +#x737b0000 +#x76810420 +#x7f850000 +#x7e840420 +#x767d0420 +#x76800418 +#x7c840000 +#x6f760000 +#x696f0000 +#x7b880418 +#. Crate 17, Card 4 +#x85930000 +#x7c860000 +#x7b830420 +#x7c870000 +#x79820420 +#x78810000 +#x747d0000 +#x80880420 +#x77800420 +#x76800420 +#x727b0000 +#x79800000 +#x767f0000 +#x767e0420 +#x727d0000 +#x76830420 +#x737d0000 +#x7c840420 +#x88920420 +#x7c840000 +#x87900000 +#x73790000 +#x71790420 +#x7f880000 +#x797f0000 +#x80880000 +#x858e0000 +#x757b0000 +#x79800000 +#x828a0000 +#x7f860000 +#x75850000 +#. Crate 17, Card 5 +#x80900000 +#x848b0420 +#x808a0000 +#x71790000 +#x7b840000 +#x868f0000 +#x82890420 +#x777d0420 +#x868e0000 +#x70770000 +#x6e760000 +#x7a810000 +#x858d0000 +#x72790000 +#x69720000 +#x707c0000 +#x757e0000 +#x72780000 +#x747d0420 +#x747c0000 +#x77800000 +#x767d0000 +#x6c730000 +#x767f0000 +#x8b930000 +#x6f750000 +#x6f770000 +#x868d0000 +#x79810000 +#x868e0000 +#x81890000 +#x727f0000 +#. Crate 17, Card 6 +#x85920000 +#x757e0000 +#x727a0000 +#x79830000 +#x76800000 +#x838e0000 +#x838b0000 +#x757e0000 +#x7d870000 +#x7b830000 +#x77810420 +#x7c870000 +#x87920440 +#x757e0000 +#x747d0000 +#x838f0000 +#x89930000 +#x777f0000 +#x747e0000 +#x838b0000 +#x838b0000 +#x7b820000 +#x858d0000 +#x90970000 +#x767d0420 +#x7e850000 +#x7a830000 +#x787e0420 +#x79800000 +#x818a0000 +#x7e840000 +#x727f0000 +#. Crate 17, Card 7 +#x7b890440 +#x848b0000 +#x82890000 +#x77800000 +#x7c860000 +#x82890000 +#x81880000 +#x757e0000 +#x80880000 +#x8e970000 +#x848c0000 +#x79800000 +#x838c0000 +#x8f960000 +#x838e0000 +#x78850618 +#x88910000 +#x797f0000 +#x858f0000 +#x90980000 +#x8c950000 +#x7b820000 +#x7b830000 +#x8e980000 +#x777d0000 +#x7a800000 +#x7b820000 +#x7a810000 +#x7c850000 +#x757b0000 +#x777e0000 +#x7e8a0000 +#. Crate 17, Card 8 +#x73800000 +#x7d870000 +#x7a830000 +#x777e0000 +#x828b0000 +#x7c830000 +#x7d830000 +#x7f880000 +#x808b0000 +#x77800440 +#x787f0000 +#x7e860000 +#x79820000 +#x787f0000 +#x757f0000 +#x7b880000 +#x78820000 +#x747c0000 +#x76800000 +#x7f870000 +#x78810000 +#x878f0618 +#x848b0000 +#x707a0000 +#x747b0000 +#x70780000 +#x747c0000 +#x747b0000 +#x80870000 +#x71780000 +#x727b0420 +#x7c880000 +#. Crate 17, Card 9 +#x79890420 +#x787f0000 +#x767d0000 +#x7a840000 +#x77800000 +#x79800420 +#x767d0000 +#x71790000 +#x7c830000 +#x6f770420 +#x757e0420 +#x7a800000 +#x828a0000 +#x71780000 +#x78830420 +#x86920000 +#x6b750000 +#x757b0000 +#x79820000 +#x777f0000 +#x757f0000 +#x81880420 +#x8c950000 +#x7c860000 +#x8a900000 +#x72780000 +#x73790420 +#x868d0420 +#x777e0000 +#x7f850000 +#x797f0000 +#x707e0420 +#. Crate 17, Card 10 +#x74840420 +#x7c840000 +#x7b830000 +#x76810000 +#x8e960420 +#x757b0000 +#x6c740000 +#x878f0000 +#x8c940000 +#x777e0000 +#x6b720000 +#x80870000 +#x79810000 +#x7b820000 +#x7c870000 +#x7b870000 +#x858f0000 +#x6c720000 +#x737c0000 +#x878f0000 +#x7d860000 +#x6d730000 +#x747d0000 +#x858f0000 +#x7b820000 +#x7a820000 +#x81890000 +#x888f0000 +#x7b840000 +#x777f0000 +#x81880000 +#x828e0000 +#. Crate 17, Card 11 +#x78850000 +#x878e0420 +#x818c0000 +#x6f780000 +#x717c0000 +#x7b830420 +#x78810420 +#x737c0420 +#x80880000 +#x6c730420 +#x7a830420 +#x87900420 +#x8e990420 +#x757c0000 +#x6d780000 +#x808c0000 +#x77800000 +#x737c0420 +#x6e780420 +#x79810000 +#x7a830420 +#x787e0000 +#x71780000 +#x757f0000 +#x8c9c0420 +#x6c760000 +#x77800420 +#x8f990000 +#x868d0420 +#x6f790420 +#x70760000 +#x828e0420 +#. Crate 17, Card 12 +#x72800000 +#x7f870000 +#x87900000 +#x747a0000 +#x7d870000 +#x767d0000 +#x7e850000 +#x7c850000 +#x7c840000 +#x767d0000 +#x767f0000 +#x777e0000 +#x818a0000 +#x6c730000 +#x6f790000 +#x89950000 +#x777f0000 +#x6d740000 +#x7a840000 +#x78800000 +#x7a820000 +#x737a0000 +#x71780000 +#x78820000 +#x71770000 +#x7e850000 +#x89910000 +#x71790000 +#x757c0000 +#x80860000 +#x7c830000 +#x74800000 +#. Crate 17, Card 13 +#x82900000 +#x717b0000 +#x78820000 +#x7a830000 +#x767e0000 +#x8f980000 +#x848d0000 +#x737b0000 +#x818a0000 +#x71790000 +#x79800000 +#x82890000 +#x89900000 +#x777f0000 +#x747f0000 +#x838f0440 +#x80890000 +#x6e760000 +#x6f780000 +#x7c840000 +#x878e0000 +#x72780000 +#x757c0000 +#x88910000 +#x868e0000 +#x72780000 +#x737b0000 +#x8c940000 +#x7d840000 +#x7b830000 +#x848b0000 +#x85910000 +#. Crate 17, Card 14 +#x78860000 +#x818b0000 +#x7f8b0000 +#x727f0000 +#x70760000 +#x7d830000 +#x797f0000 +#x83890000 +#x80890000 +#x6d770000 +#x71790000 +#x838a0000 +#x757e0000 +#x70770000 +#x727b0000 +#x75810000 +#x757e0000 +#x72790000 +#x717a0000 +#x6d740000 +#x777f0000 +#x7c830000 +#x767e0000 +#x747e0000 +#x747c0000 +#x848b0000 +#x7c830000 +#x70760659 +#x7c820659 +#x6b730000 +#x747b0000 +#x838f0000 +#. Crate 17, Card 15 +#x737e045a +#x757b045a +#x7279045a +#x7379045a +#x8f98045a +#x7379045a +#x7076045a +#x838b045a +#x757d045a +#x8187045a +#x858d045a +#x8187045a +#x7a80045a +#x878d045a +#x8189045a +#x7783045a +#x7881045a +#x808f045a +#x7f88045a +#x7880045a +#x8b92045a +#x737c045a +#x757c045a +#x8790045a +#x757b045a +#x787e045a +#x7a80045a +#x747a045a +#x7a81045a +#x7b81045a +#x777d045a +#x7781045a +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 17 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 17 +#x07990000 +#x0799f100 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x07990000 +#x0799e100 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCH +*LOG OFF +*DO DQCH 18 -i(30I -I) -N552 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 18, Card 0 +#x798b0000 +#x6f760000 +#x6d760000 +#x7d83041a +#x7d860000 +#x7e840000 +#x79800000 +#x6f7a0440 +#x808e041a +#x7c860000 +#x7d850000 +#x7e850000 +#x808a0000 +#x7b820000 +#x80880000 +#x7f8a0000 +#x747e045a +#x71860440 +#x76800440 +#x71790440 +#x737c0440 +#x787f0440 +#x7b830440 +#x767f0440 +#x8d930440 +#x71770440 +#x6d730440 +#x868d0440 +#x6f750440 +#x777d0440 +#x79800440 +#x727d0440 +#. Crate 18, Card 1 +#x8892045a +#x7177041a +#x6f75041a +#x7d83041a +#x7d85041a +#x7278041a +#x7178041a +#x7f87041a +#x767e041a +#x7a81041a +#x7c83041a +#x787f041a +#x7680041a +#x777e041a +#x7881041a +#x7985041a +#x828b041a +#x758b041a +#x7a85041a +#x858d041a +#x7a83041a +#x777f041a +#x7880041a +#x7a85041a +#x787e041a +#x777d041a +#x787e041a +#x797f0440 +#x787f0440 +#x777e0460 +#x777e0460 +#x74830440 +#. Crate 18, Card 2 +#x76850420 +#x7c850000 +#x7a850000 +#x77800000 +#x7c860000 +#x757d0420 +#x747d0000 +#x7f870000 +#x777f0440 +#x777e0000 +#x727a0000 +#x7c820000 +#x8e990000 +#x777f0000 +#x707a0000 +#x838e0000 +#x8e97061a +#x6d850000 +#x6c770000 +#x89910000 +#x86900000 +#x6c740000 +#x727b0000 +#x909a0000 +#x777d0000 +#x6c720000 +#x6c740000 +#x72790000 +#x81870000 +#x6a710000 +#x7a800000 +#x828e0000 +#. Crate 18, Card 3 +#x75810000 +#x72790000 +#x76800000 +#x7b840000 +#x858f0000 +#x727d0000 +#x727b0000 +#x8b940000 +#x757e0000 +#x7f87075a +#x838d0000 +#x767f0000 +#x737a0000 +#x8b920000 +#x88900000 +#x6f790000 +#x7d870000 +#x768d0000 +#x6e770000 +#x7e860000 +#x7a830000 +#x797f0000 +#xa4ad0000 +#x757e0000 +#x7c830000 +#x787f0000 +#x78810000 +#x81890000 +#x858c0000 +#x72790000 +#x77800000 +#x8c9b0000 +#. Crate 18, Card 4 +#x828f0000 +#x6e770000 +#x6f770420 +#x7d870000 +#x828c0000 +#x6d750000 +#x70780000 +#x838c0438 +#x71790000 +#x80860000 +#x868d0000 +#x71790440 +#x747d0000 +#x757c0000 +#x7f890000 +#x74800000 +#x828b0000 +#x6f760000 +#x6c760000 +#x80880000 +#x777f0420 +#x747c0000 +#x7a830000 +#x77800000 +#x7d840420 +#x6e750420 +#x727b0000 +#x777d0420 +#x777d0000 +#x6c730000 +#x71770000 +#x7a870420 +#. Crate 18, Card 5 +#x7c8a0420 +#x72780418 +#x70790420 +#x72790418 +#x78810000 +#x757b0000 +#x717a0000 +#x777f0418 +#x7b830000 +#x83890418 +#x7a810000 +#x6d750418 +#x6f770000 +#x767e0418 +#x747e0000 +#x75820000 +#x7c850000 +#x6c750000 +#x76810000 +#x80890000 +#x78840000 +#x75800000 +#x70790000 +#x7c870418 +#x71780000 +#x7a810000 +#x737c0000 +#x6e750000 +#x757c0000 +#x757d0000 +#x757d0000 +#x78830000 +#. Crate 18, Card 6 +#x8a990000 +#x747e0000 +#x6e770000 +#x7e850418 +#x88910420 +#x71790000 +#x6c750000 +#x7f870418 +#x767f0000 +#x78810000 +#x79800000 +#x79800000 +#x76800000 +#x79820000 +#x7e870000 +#x77830000 +#x757e0000 +#x737a0000 +#x70790000 +#x71790000 +#x8c960000 +#x757e0000 +#x6f780000 +#x818d0440 +#x77810000 +#x7c830000 +#x7a840000 +#x7a830420 +#x767e0000 +#x70780000 +#x747b061a +#x79850000 +#. Crate 18, Card 7 +#x808e0000 +#x6c760000 +#x6b72065a +#x7a840440 +#x747d0000 +#x7b860000 +#x7b860000 +#x727a0000 +#x737f0000 +#x6f770440 +#x707a0000 +#x78800000 +#x7b850000 +#x72790000 +#x6e770420 +#x77830000 +#x70790000 +#x777e0000 +#x838e0420 +#x71790000 +#x727b0420 +#x78810440 +#x868e0420 +#x7a840438 +#x73790000 +#x7f870000 +#x7c850000 +#x6e780000 +#x7e870000 +#x707b0000 +#x747f0000 +#x76830000 +#. Crate 18, Card 8 +#x74820420 +#x79830420 +#x7e880000 +#x747e0000 +#x70780000 +#x7b840000 +#x888f0000 +#x717a0000 +#x81890000 +#x6e740000 +#x757d0000 +#x89910000 +#x87900000 +#x70760000 +#x727c0000 +#x89950000 +#x828b0000 +#x6e760000 +#x757f0000 +#x7c830000 +#x818a0000 +#x71770000 +#x747c0000 +#x828b0000 +#x757b0000 +#x7c840000 +#x7b850000 +#x757d0420 +#x757c0000 +#x79820000 +#x78800000 +#x79850000 +#. Crate 18, Card 9 +#x74820000 +#x89920000 +#x7e8b0000 +#x6f790000 +#x7f8a0000 +#x79840420 +#x77810000 +#x7a830000 +#x77820000 +#x78810000 +#x7e860420 +#x71780000 +#x747e0420 +#x79830420 +#x7e8b0420 +#x79870000 +#x828b0420 +#x6e770420 +#x76810000 +#x838b0000 +#x79850000 +#x777f0000 +#x78820000 +#x77810000 +#x737a0420 +#x7a820000 +#x868d0000 +#x757c0418 +#x757d0000 +#x7f880000 +#x878f0000 +#x79870000 +#. Crate 18, Card 10 +#x67740000 +#x80890000 +#x89930000 +#x747d0000 +#x767e0000 +#x7b840000 +#x78800000 +#x757d0420 +#x77800000 +#x79800000 +#x757c0000 +#x72790000 +#x89910000 +#x72790000 +#x6c760000 +#x828f0000 +#x767f0000 +#x8f960000 +#x7d870000 +#x78800420 +#x757f0000 +#x767d0000 +#x7b850420 +#x78810420 +#x82890000 +#x6d740000 +#x737a0000 +#x838a0000 +#x81870000 +#x787e0000 +#x787e0000 +#x7b870000 +#. Crate 18, Card 11 +#x72800000 +#x737c0420 +#x6e770000 +#x727a0420 +#x747b0000 +#x7b820000 +#x79800000 +#x767e0438 +#x7e870000 +#x71780000 +#x78810000 +#x767c0000 +#x777f0000 +#x737a0000 +#x737d0000 +#x76820420 +#x7f880000 +#x69700000 +#x707b0420 +#x81890000 +#x7a840000 +#x737a0000 +#x717a0000 +#x7a830000 +#x8d940000 +#x737b0000 +#x6b730000 +#x828b0000 +#x757d0000 +#x747c0000 +#x757d0000 +#x7b890000 +#. Crate 18, Card 12 +#x74840000 +#x8c940000 +#x848c0000 +#x717a0000 +#x89930000 +#x6b740000 +#x6d750000 +#x87900420 +#x78810000 +#x787e0000 +#x6f760000 +#x79810000 +#x868e0000 +#x71780000 +#x76800000 +#x7f8c0000 +#x818b0000 +#x777e0000 +#x808b0000 +#x7d850000 +#x7e890000 +#x777e0000 +#x7e860000 +#x7b860619 +#x7c830000 +#x888f0000 +#x80870000 +#x747c0000 +#x7f860000 +#x7c850000 +#x797f0659 +#x7c890000 +#. Crate 18, Card 13 +#x7a8a0000 +#x7a810000 +#x7a810000 +#x79810000 +#x77800000 +#x79810000 +#x78800000 +#x757d0000 +#x737c0000 +#x89900000 +#x7c840000 +#x6f760000 +#x727c0000 +#x838c0000 +#x8c970000 +#x7b880000 +#x7c860000 +#x6f750000 +#x6f790000 +#x7c840000 +#x828b0000 +#x6c720000 +#x757b0000 +#x808a0659 +#x777f0000 +#x767d0000 +#x79810000 +#x7a800000 +#x8d940000 +#x767e0000 +#x70760000 +#x818d0000 +#. Crate 18, Card 14 +#x7a890000 +#x72790000 +#x7b830000 +#x7a840000 +#x7b820000 +#x6c720000 +#x70770000 +#x7d840000 +#x71790000 +#x787f0000 +#x848b0000 +#x6f760000 +#x6e770000 +#x858b0000 +#x828d0000 +#x6f7b0438 +#x838c0000 +#x6e740000 +#x707a0000 +#x81880000 +#x878f0000 +#x6f750000 +#x72790000 +#x7f880000 +#x7f860000 +#x787e0000 +#x787e0000 +#x767c0000 +#x81890000 +#x757d0000 +#x80870000 +#x87940000 +#. Crate 18, Card 15 +#x7580041a +#x7b810000 +#x757f0000 +#x737b0000 +#x868e0000 +#x6c740000 +#x6c730000 +#x7d840000 +#x75800000 +#x747b0000 +#x7e860619 +#x77800000 +#x727b0000 +#x7a810000 +#x767e0000 +#x7b870000 +#x6e780000 +#x787f0000 +#x707a0000 +#x777f0000 +#x737b0000 +#x898f0000 +#x858c0000 +#x757f0000 +#x70770000 +#x757b0000 +#x7a800000 +#x747d0000 +#x81890000 +#x70770000 +#x767d0000 +#x8e980000 +#. End of Title +*LOG +*--- Standard Titles File: DQxx_0000010000.dat 2/11/1999 +*--- Banks: DQCR +*LOG OFF +*DO DQCR 18 -i(30I -I) -N56 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +10*0 +#. Crate 18 +#x07da0000 +#x07da7100 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x07da0000 +#x09c30000 +#. End of Title +*LOG +*--- Standard Titles File: DQID_0000010000.dat 2/11/1999 +*--- Banks: DQID +*LOG OFF +*DO DQID 1 -i(50I -I) -N1874 #. Input titles: Event Unpacker. +#. above line contains: bank name, bank number, and format of data to follow. +#. +#. Contact: Mark Howe/John Roberts (University of Washington) +#. Fixed DQxx. Contact. J. Orrell, UW +#. Standard Database Header +#. +19991102 22120900 20200000 20202020 #. 1..4 Intrinsic validity + 11 0 0 #. 5..7 Data type, Task type, Format +19991102 22120900 0 #. 8..10 Creation Date, Time, Source +19991102 22120900 20200000 20202020 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time + 0 0 0 0 #. 17..20 Spare + 0 0 0 0 0 + 0 0 0 0 0 +#. 21..30 Temporary data (not in data base) +#. +#. End of Standard Database Header +20*0 +#. Crate 0 +#xf069 #xe024 #xd01d #xd178 #xd3b9 #xd561 +#xf030 #xe000 #xd15f #xd449 #xd44d #xd457 +#xfffd #xe02d #xd0ef #xd23e #xd4ac #xd019 +#xf049 #xe014 #xd23b #xd247 #xd3b5 #xd2d1 +#xf0a0 #xe058 #xd016 #xd08b #xd4a5 #xd531 +#xf000 #xe035 #xd152 #xd0c4 #xd400 #xd56c +#xf100 #xe057 #xd07e #xd3dd #xd3ea #xd46f +#xf024 #xe023 #xd00b #xd1bc #xd278 #xd189 +#xf11b #xe0e0 #xd05b #xd09e #xd0c1 #xd170 +#xf0c5 #xe092 #xd008 #xd064 #xd090 #xd446 +#xf037 #xe065 #xd1f3 #xd208 #xd277 #xd302 +#xf09b #xe00b #xd164 #xd193 #xd215 #xd418 +#xf01b #xe078 #xd1de #xd291 #xd2f6 #xd34f +#xf05a #xe068 #xd104 #xd289 #xd3ba #xd3c2 +#xf0a3 #xe132 #xd158 #xd1b1 #xd1f4 #xd349 +#xf0f9 #xe027 #xd15b #xd2c0 #xd412 #xd555 +#. Crate 1 +#xf031 #xe040 #xd045 #xd1e0 #xd1fb #xd566 +#xf055 #xe012 #xd33d #xd499 #xd537 #xd538 +#xf0ea #xe001 #xd45e #xd467 #xd48e #xd4b2 +#xf093 #xe01c #xd25a #xd307 #xd351 #xd387 +#xf00e #xe063 #xd281 #xd2b0 #xd31d #xd343 +#xf039 #xe04e #xd230 #xd23d #xd27a #xd3ae +#xf021 #xe041 #xd094 #xd358 #xd497 #xd0fc +#xf062 #xe008 #xd13b #xd2a4 #xd320 #xd12c +#xf088 #xe04b #xd0d4 #xd116 #xd141 #xd438 +#xf124 #xe070 #xd3ff #xd456 #xd45c #xd49a +#xf079 #xe026 #xd223 #xd454 #xd461 #xd4ae +#xf0e5 #xe030 #xd077 #xd434 #xd447 #xd49d +#xf015 #xe00a #xd262 #xd341 #xd34c #xd38a +#xf123 #xe00c #xd429 #xd43f #xd474 #xd483 +#xf0f1 #xe038 #xd484 #xd4af #xd4c2 #xd4d0 +#xf126 #xe032 #xd3ce #xd458 #xd46e #xd49b +#. Crate 2 +#xf0c4 #xe14e #xd348 #xd3fd #xd018 #xd1ba +#xf0b3 #xe14d #xd14a #xd13c #xd38f #xd1e8 +#xf223 #xe14c #xd04c #xd204 #xd352 #xd0e1 +#xf0c9 #xe13c #xd49e #xd48f #xd009 #xd440 +#xf106 #xe13d #xd462 #xd55b #xd366 #xd486 +#xf095 #xe136 #xd1c2 #xd4b1 #xd3c5 #xd137 +#xf0be #x3c9f #xd031 #xd022 #xd12a #xd097 +#xf06b #xe14f #xd095 #xd540 #xd0fb #xd2b5 +#xf102 #xe090 #xd0c9 #xd21b #xd157 #xd4f5 +#xf11f #xe139 #xd507 #xd051 #xd357 #xd2c2 +#xf12e #xe137 #xd29e #xd263 #xd148 #xd1b7 +#xf04c #xe138 #xd128 #xd2e5 #xd33c #xd260 +#xf017 #xe134 #xd548 #xd466 #xd43e #xd559 +#xf12b #xe13a #xd53b #xd2ab #xd1bd #xd1e6 +#xf097 #xe13e #xd405 #xd05f #xd473 #xd0b1 +#xf013 #xe14b #xd33a #xd125 #xd18a #xd0e2 +#. Crate 3 +#xf141 #xe061 #xd569 #xd3b1 #xd308 #xd181 +#xf0b9 #xe005 #xd153 #xd2f3 #xd079 #xd4c6 +#xf057 #xe123 #xd1e4 #xd13f #xd33b #xd327 +#xf133 #xe12f #xd004 #xd521 #xd2de #xd2b7 +#xf128 #xe0ad #xd03d #xd551 #xd34a #xd4d9 +#xf089 #xe059 #xd224 #xd1c3 #xd3b7 #xd16d +#xf072 #xe0b8 #xd233 #xd28d #xd28b #xd39c +#xf125 #xe0cc #xd1d0 #xd1c5 #xd32f #xd56b +#xf0da #xe093 #xd543 #xd171 #xd155 #xd131 +#xf071 #xe0d8 #xd03b #xd1f2 #xd05d #xd023 +#xf06c #xe103 #xd140 #xd0ea #xd007 #xd154 +#xf0c1 #xe00e #xd4fa #xd1a1 #xd3d5 #xd383 +#xf063 #xe079 #xd12e #xd092 #xd221 #xd382 +#xf077 #xe048 #xd549 #xd55f #xd2ef #xd066 +#xf012 #xe047 #xd286 #xd54a #xd372 #xd3e5 +#xf08e #xe0e9 #xd042 #xd0d5 #xd1cf #xd468 +#. Crate 4 +#xf0e0 #xe04c #xd317 #xd256 #xd0b9 #xd1ce +#xf03d #xe050 #xd39e #xd24f #xd2fd #xd1c9 +#xf0ac #xe007 #xd052 #xd026 #xd046 #xd062 +#xf132 #xe02f #xd01e #xd176 #xd044 #xd30d +#xf07b #xe01f #xd402 #xd439 #xd53c #xd56a +#xf127 #xe013 #xd565 #xd56d #xd512 #xd50e +#xf048 #xe08a #xd43d #xd40f #xd4b4 #xd4be +#xf0db #xe08d #xd39d #xd326 #xd173 #xd306 +#xf0d6 #xe094 #xd25b #xd241 #xd261 #xd50f +#xf00c #xe08b #xd3d1 #xd1a3 #xd1a4 #xd03e +#xf0e7 #xe06a #xd084 #xd3be #xd305 #xd099 +#xf0de #xe0b0 #xd01b #xd2ed #xd041 #xd311 +#xf032 #xe091 #xd09a #xd448 #xd4b3 #xd057 +#xf158 #xe0b4 #xd0ad #xd572 #xd460 #xd54f +#xf135 #xe0b7 #xd0ae #xd0e8 #xd0e6 #xd2fa +#xf0c8 #xe044 #xd220 #xd570 #xd2a2 #xd517 +#. Crate 5 +#xf01e #xe02b #xd3e1 #xd207 #xd1a7 #xd18e +#xf054 #xe08c #xd4e8 #xd385 #xd369 #xd1ec +#xf09a #xe088 #xd2cf #xd360 #xd381 #xd395 +#xf07d #xe086 #xd174 #xd1db #xd1eb #xd535 +#xf0e3 #xe05b #xd2f1 #xd481 #xd0d0 #xd496 +#xf203 #xe0b5 #xd04a #xd0a0 #xd53f #xd1b0 +#xf107 #xe031 #xd354 #xd1f8 #xd443 #xd2d6 +#xf080 #xe077 #xd24b #xd35e #xd1e3 #xd1b9 +#xf075 #xe0d3 #xd199 #xd0ab #xd0be #xd11b +#xf0a7 #xe05f #xd21c #xd38b #xd42b #xd444 +#xf13e #xe082 #xd138 #xd541 #xd280 #xd4e9 +#xf204 #xe07f #xd275 #xd1e1 #xd334 #xd30b +#xf137 #xe067 #xd544 #xd070 #xd013 #xd07d +#xf0a6 #xe0fc #xd13e #xd248 #xd2ac #xd113 +#xf044 #xe0fa #xd30f #xd323 #xd32e #xd513 +#xf10f #xe0fd #xd130 #xd078 #xd020 #xd550 +#. Crate 6 +#xf12f #xe089 #xd3e8 #xd24e #xd347 #xd3bd +#xf087 #xe06d #xd1d1 #xd421 #xd367 #xd568 +#xf145 #xe083 #xd04f #xd07c #xd0f2 #xd059 +#xf258 #xe07b #xd0ce #xd12f #xd083 #xd005 +#xf14c #xe037 #xd0b0 #xd122 #xd012 #xd00f +#xf062 #xe02a #xd082 #xd0e5 #xd0eb #xd11f +#xf148 #xe029 #xd061 #xd014 #xd0f9 #xd118 +#xf04e #xe05d #xd408 #xd430 #xd48c #xd502 +#xf0ed #xe045 #xd3c3 #xd3d8 #xd4d1 #xd4ea +#xf141 #xe025 #xd129 #xd055 #xd0b8 #xd272 +#xf094 #xe022 #xd4d6 #xd1d7 #xd01a #xd379 +#xf0e2 #xe019 #xd0c7 #xd237 #xd37c #xd239 +#xf224 #xe06c #xd0e9 #xd086 #xd45a #xd05c +#xf068 #xe104 #xd371 #xd542 #xd435 #xd49c +#xf12d #xe105 #xd1a6 #xd033 #xd21e #xd374 +#xf108 #xe0d0 #xd426 #xd26d #xd18d #xd41b +#. Crate 7 +#xf09f #xe03b #xd071 #xd0c3 #xd0e3 #xd32d +#xf0cb #xe0fb #xd074 #xd0aa #xd2f8 #xd4e1 +#xf0a5 #xe0c9 #xd288 #xd293 #xd3b0 #xd47b +#xf116 #xe0c8 #xd0f6 #xd103 #xd10d #xd11d +#xf075 #xe0c1 #xd30a #xd4a6 #xd4da #xd4f8 +#xf06a #xe087 #xd4a3 #xd4dd #xd1d9 #xd503 +#xf08a #xe10c #xd4ca #xd4d8 #xd4e6 #xd4ed +#xf11a #xe109 #xd4df #xd4ef #xd4ff #xd516 +#xf0b7 #xe0ba #xd02e #xd0dd #xd10b #xd139 +#xf0a9 #xe0a7 #xd292 #xd2a0 #xd31f #xd3bc +#xf096 #xe0b1 #xd4bf #xd4cc #xd504 #xd519 +#xf02a #xe034 #xd021 #xd098 #xd09c #xd0f4 +#xf11d #xe0c0 #xd0c6 #xd14b #xd2d5 #xd350 +#xf066 #xe115 #xd060 #xd105 #xd13d #xd072 +#xf0bf #xe0a5 #xd02a #xd032 #xd127 #xd135 +#xf02c #xe064 #xd107 #xd00d #xd279 #xd310 +#. Crate 8 +#xf0cf #xe114 #xd246 #xd240 #xd0e4 #xd29c +#xf115 #xe06b #xd232 #xd29b #xd2af #xd4f7 +#xf025 #xe073 #xd0a5 #xd151 #xd363 #xd24a +#xf05b #xe036 #xd22d #xd4a4 #xd1ae #xd510 +#xf067 #xe116 #xd1fa #xd33f #xd38e #xd3a1 +#xf050 #xe117 #xd12d #xd2b1 #xd47d #xd4a9 +#xf076 #xe0af #xd31a #xd31e #xd35a #xd4a8 +#xf022 #xe03a #xd02d #xd303 #xd101 #xd120 +#xf0bc #xe043 #xd034 #xd10e #xd111 #xd119 +#xf0d5 #xe052 #xd02b #xd02f #xd06d #xd10f +#xf0b0 #xe015 #xd09d #xd47a #xd290 #xd4e7 +#xf090 #xe017 #xd06a #xd0fe #xd10a #xd123 +#xf09e #xe02e #xd169 #xd200 #xd202 #xd203 +#xf0af #xe03d #xd167 #xd1b3 #xd1e9 #xd1f0 +#xf010 #xe010 #xd13a #xd295 #xd575 #xd55a +#xf007 #xe102 #xd4ce #xd198 #xd335 #xd344 +#. Crate 9 +#xf0fe #xe062 #xd273 #xd2b3 #xd2b8 #xd025 +#xf0cc #xe0b2 #xd479 #xd4c9 #xd4e2 #xd4f2 +#xf0ec #xe003 #xd145 #xd22b #xd339 #xd37d +#xf027 #xe106 #xd28a #xd2bd #xd39b #xd3bb +#xf0d3 #xe108 #xd38c #xd3c0 #xd450 #xd530 +#xf052 #xe0be #xd2c9 #xd355 #xd373 #xd3b2 +#xf00f #xe0cb #xd001 #xd2da #xd304 #xd390 +#xf043 #xe107 #xd2f9 #xd0db #xd0f5 #xd253 +#xf0ab #xe0fe #xd0d9 #xd108 #xd126 #xd14d +#xf093 #xe0bb #xd296 #xd0cd #xd0fd #xd205 +#xf117 #xe141 #xd15d #xd196 #xd1ab #xd249 +#xf118 #xe006 #xd236 #xd32c #xd33e #xd3a7 +#xf101 #xe0bd #xd038 #xd2a1 #xd3af #xd4d7 +#xf011 #xe0ca #xd036 #xd257 #xd365 #xd2ec +#xf033 #xe053 #xd227 #xd22e #xd25e #xd284 +#xf03b #xe060 #xd228 #xd24d #xd26b #xd2a8 +#. Crate 10 +#xf064 #xe0bc #xd18c #xd1a8 #xd384 #xd1bf +#xf008 #xe0bf #xd1ea #xd243 #xd27b #xd36f +#xf0bb #xe0a0 #xd16b #xd1e2 #xd3a8 #xd436 +#xf0b1 #xe10b #xd100 #xd1f5 #xd1f6 #xd393 +#xf0d1 #xe046 #xd23c #xd396 #xd3e9 #xd42f +#xf01d #xe04d #xd285 #xd36c #xd17f #xd250 +#xf099 #xe121 #xd254 #xd315 #xd22a #xd23f +#xf009 #xe118 #xd2f0 #xd25f #xd356 #xd23a +#xf036 #xe119 #xd22f #xd234 #xd2c5 #xd318 +#xf08d #xe0a3 #xd3aa #xd2ea #xd37a #xd2be +#xf03c #xe0aa #xd2ca #xd29a #xd2db #xd39a +#xf004 #xe0ac #xd190 #xd1a0 #xd27f #xd573 +#xf047 #xe0a1 #xd235 #xd333 #xd36b #xd3a5 +#xf002 #xe0a2 #xd297 #xd2c3 #xd22c #xd300 +#xf10d #xe0a8 #xd093 #xd3fb #xd4aa #xd4b6 +#xf10e #xe0a6 #xd09f #xd1b4 #xd42c #xd556 +#. Crate 11 +#xf155 #xe0ab #xd31c #xd55d #xd52e #xd560 +#xf07a #xe0b3 #xd43b #xd475 #xd0ff #xd3f6 +#xf0c7 #xe0d6 #xd211 #xd37f #xd4cd #xd44e +#xf0a4 #xe074 #xd2fe #xd353 #xd0a8 #xd03c +#xf040 #xe07e #xd1e7 #xd029 #xd18b #xd1b2 +#xf0f6 #xe08f #xd15c #xd36d #xd553 #xd2e2 +#xf104 #xe002 #xd0e0 #xd21f #xd0b3 #xd4fd +#xf0b8 #xe071 #xd2cb #xd330 #xd56f #xd244 +#xf159 #xe0f3 #xd2a9 #xd313 #xd2dd #xd040 +#xf042 #xe0f6 #xd534 #xd2dc #xd346 #xd1cc +#xf092 #xe111 #xd51c #xd455 #xd3f7 #xd41d +#xf0f4 #xe110 #xd1dd #xd501 #xd0d2 #xd0d3 +#xf134 #xe0ef #xd539 #xd0f0 #xd314 #xd28f +#xf0c0 #xe0f4 #xd212 #xd238 #xd3ac #xd0c2 +#xf191 #xe0ed #xd4cf #xd403 #xd552 #xd362 +#xf156 #xe0ee #xd476 #xd51b #xd3c8 #xd0d7 +#. Crate 12 +#xf06d #xe113 #xd1a2 #xd3de #xd4b8 #xd4c7 +#xf129 #xe0dc #xd3d9 #xd3f1 #xd419 #xd46c +#xf131 #xe10f #xd08f #xd121 #xd3e4 #xd2f4 +#xf0d0 #xe10e #xd053 #xd2d2 #xd480 #xd4c3 +#xf12a #xe0db #xd45f #xd485 #xd4b0 #xd514 +#xf0b2 #xe0e1 #xd3d7 #xd48b #xd4c1 #xd4c5 +#xf02d #xe10d #xd35b #xd46b #xd4e0 #xd522 +#xf119 #xe0df #xd471 #xd47e #xd2f7 #xd528 +#xf0c2 #xe039 #xd3d2 #xd3f3 #xd452 #xd4d3 +#xf0f8 #xe0d7 #xd2bf #xd110 #xd142 #xd1a5 +#xf028 #xe100 #xd3ad #xd48a #xd48d #xd490 +#xf02b #xe0e8 #xd469 #xd4b7 #xd4d5 #xd509 +#xf060 #xe10a #xd172 #xd251 #xd364 #xd370 +#xf0f3 #xe0f9 #xd252 #xd209 #xd342 #xd102 +#xf03f #xe0dd #xd3e0 #xd4a1 #xd52b #xd52d +#xf098 #xe0c4 #xd3d6 #xd3ec #xd3f0 #xd525 +#. Crate 13 +#xf120 #xe0c5 #xd11e #xd4ec #xd147 #xd52c +#xf04a #xe0f2 #xd3d0 #xd3f2 #xd4d4 #xd51d +#xf0c6 #xe0c3 #xd1c8 #xd3ed #xd401 #xd472 +#xf0df #xe016 #xd229 #xd2a7 #xd340 #xd380 +#xf018 #xe0c6 #xd325 #xd26e #xd301 #xd312 +#xf0ce #xe0f8 #xd47f #xd523 #xd492 #xd493 +#xf14e #xe0e6 #xd2eb #xd321 #xd328 #xd12b +#xf0ca #xe0d2 #xd3b3 #xd42a #xd42e #xd431 +#xf083 #xe0b9 #xd1a9 #xd416 #xd424 #xd50b +#xf06e #xe101 #xd2bb #xd2e3 #xd392 #xd4f9 +#xf014 #xe0d9 #xd0f8 #xd29d #xd2e4 #xd322 +#xf091 #xe0eb #xd3c9 #xd3dc #xd441 #xd4c4 +#xf0dd #xe11d #xd258 #xd267 #xd574 #xd4f1 +#xf14f #xe11c #xd389 #xd37e #xd2e0 #xd2d7 +#xf0e1 #xe11a #xd4e5 #xd547 #xd3e6 #xd217 +#xf122 #xe0ea #xd42d #xd437 #xd4ba #xd50a +#. Crate 14 +#xf059 #xe11b #xd20a #xd3c6 #xd442 #xd4f6 +#xf0b6 #xe0e5 #xd186 #xd28c #xd2c8 #xd35c +#xf05c #xe01e #xd1ed #xd36e #xd425 #xd465 +#xf111 #xe018 #xd27c #xd2ee #xd34e #xd482 +#xf046 #xe0cf #xd067 #xd0c8 #xd491 #xd4a7 +#xf04f #xe0e4 #xd182 #xd1ad #xd1ca #xd222 +#xf0aa #xe112 #xd184 #xd1df #xd1e5 #xd338 +#xf03a #xe0e7 #xd266 #xd1af #xd2e1 #xd35f +#xf0fb #xe0d1 #xd1d8 #xd1fc #xd40c #xd46d +#xf0b5 #xe0ce #xd3cc #xd494 #xd495 #xd4e4 +#xf001 #xe066 #xd0f7 #xd433 #xd44a #xd44b +#xf112 #xe072 #xd3e7 #xd3f9 #xd0ee #xd52a +#xf0d4 #xe13b #xd404 #xd428 #xd4bb #xd4fc +#xf0c3 #xe11f #xd146 #xd15e #xd16c #xd331 +#xf03e #xe049 #xd3e3 #xd445 #xd44c #xd2e7 +#xf026 #xe12c #xd0df #xd185 #xd3a0 #xd3b6 +#. Crate 15 +#xf07f #xe0de #xd1be #xd1d4 #xd40d #xd423 +#xf061 #xe11e #xd0a1 #xd413 #xd536 #xd53a +#xf00b #xe129 #xd27e #xd2fc #xd3a3 #xd563 +#xf034 #xe07a #xd2fb #xd3a6 #xd26f #xd375 +#xf02e #xe03f #xd15a #xd17b #xd19a #xd345 +#xf0d9 #xe12b #xd109 #xd17a #xd1fe #xd269 +#xf05e #xe125 #xd149 #xd1da #xd283 #xd3a4 +#xf0ef #xe127 #xd2bc #xd191 #xd1d5 #xd25d +#xf0d8 #xe126 #xd160 #xd197 #xd1b5 #xd1fd +#xf0dc #xe021 #xd192 #xd1f9 #xd274 #xd2c7 +#xf08b #xe056 #xd150 #xd1d2 #xd21a #xd2f5 +#xf146 #xe054 #xd16a #xd16f #xd17e #xd219 +#xf0f5 #xe01b #xd3f5 #xd3fa #xd43c #xd470 +#xf0d2 #xe09e #xd47c #xd4a0 #xd0ca #xd52f +#xf0a1 #xe0d5 #xd134 #xd161 #xd18f #xd213 +#xf110 #x0283 #xd163 #xd19b #xd039 #xd1cb +#. Crate 16 +#xf144 #xe069 #xd50d #xd533 #xd2d4 #xd56e +#xf04d #xe085 #xd07f #xd20c #xd3da #xd564 +#xf10b #xe051 #xd567 #xd1f7 #xd0b2 #xd409 +#xf078 #xe009 #xd2f2 #xd43a #xd027 #xd4fb +#xf0cd #xe020 #xd1c1 #xd003 #xd218 #xd324 +#xf0e8 #xe02c #xd156 #xd056 #xd2c6 #xd091 +#xf0ee #xe042 #xd32b #xd20f #xd410 #xd37b +#xf08c #xe09d #xd117 #xd17c #xd048 #xd417 +#xf239 #xe14a #xd0a2 #xd4ad #xd336 #xd0bc +#xf09c #xe098 #xd518 #xd0b5 #xd0d8 #xd558 +#xf006 #xe05a #xd0fa #xd049 #xd206 #xd34d +#xf0a2 #xe097 #xd168 #xd166 #xd080 #xd047 +#xf130 #xe08e #xd420 #xd562 #xd45d #xd557 +#xf14b #xe084 #xd180 #xd268 #xd4f4 #xd1c0 +#xf0ae #xe096 #xd1c4 #xd0a4 #xd3f4 #xd54d +#xf0bd #xe080 #xd3fc #xd397 #xd41a #xd55e +#. Crate 17 +#xf082 #xe099 #xd011 #xd01f #xd1f1 #xd529 +#xf029 #xe149 #xd04b #xd1aa #xd527 #xd0c5 +#xf154 #xe147 #xd2b2 #xd08a #xd54c #xd231 +#xf0f2 #xe01a #xd453 #xd487 #xd32a #xd511 +#xf02f #xe00d #xd19d #xd1bb #xd225 #xd265 +#xf08f #xe0e3 #xd299 #xd214 #xd298 #xd0a7 +#xf096 #xe0e2 #xd05a #xd0ba #xd0a3 #xd0de +#xf022 #xe144 #xd144 #xd114 #xd0b4 #xd54b +#xf151 #xe140 #xd07b #xd069 #xd054 #xd27d +#xf150 #xe131 #xd4ee #xd2d9 #xd489 #xd2ba +#xf01a #xe145 #xd096 #xd0d1 #xd0bb #xd0a6 +#xf0e6 #xe130 #xd035 #xd089 #xd0f3 #xd255 +#xf086 #xe12e #xd515 #xd50c #xd4c0 #xd2b6 +#xf00d #xe12a #xd194 #xd459 #xd4cb #xd451 +#xf103 #xe011 #xd177 #xd411 #xd414 #xd415 +#xf019 #xe095 #xd1d6 #xd2b9 #xd259 #xd132 +#. Crate 18 +#xf045 #xe09f #xd2ce #xd0e7 #xd41c #xd386 +#xf065 #xe033 #xd2a6 #xd08c #xd133 #xd4dc +#xf084 #xe0f5 #xd3e2 #xd2cd #xd3b4 #xd524 +#xf073 #xe122 #xd53d #xd3c1 #xd4bd #xd2aa +#xf074 #xe028 #xd49f #xd06f #xd00e #xd2d3 +#xf05f #xe0da #xd063 #xd4b9 #xd106 #xd085 +#xf0ad #xe0f1 #xd028 #xd05e #xd319 #xd09b +#xf053 #xe05e #xd3eb #xd2ae #xd068 #xd076 +#xf01f #xe0a9 #xd3df #xd00c #xd4ab #xd006 +#xf14a #xe148 #xd0d6 #xd391 #xd0ec #xd015 +#xf00a #xe05c #xd2ff #xd422 #xd16e #xd526 +#xf0ba #xe0d4 #xd31b #xd06c #xd112 #xd329 +#xf020 #xe124 #xd02c #xd464 #xd0af #xd40b +#xf085 #xe13f #xd1d3 #xd0ed #xd30c #xd002 +#xf07e #xe076 #xd51a #xd3c7 #xd3b8 #xd115 +#xf051 #xe055 #xd19c #xd010 #xd3f8 #xd478 +#. End of Title diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..2359e66 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,30 @@ +CFLAGS=-O0 -Wall -g -DSWAP_BYTES +LDLIBS=-lm -lgsl -lgslcblas + +all: test test-vector test-likelihood fit test-charge + +Makefile.dep: + -$(CC) -MM *.c > Makefile.dep + +-include Makefile.dep + +calculate_limits: calculate_limits.c + +solid_angle.o: solid_angle.c + +test: test.o solid_angle.o optics.o muon.o vector.o quantum_efficiency.o pdg.o scattering.o misc.o mt19937ar.o sno_charge.o + +test-vector: test-vector.o vector.o mt19937ar.o + +test-likelihood: test-likelihood.o muon.o random.o optics.o quantum_efficiency.o mt19937ar.o pdg.o vector.o solid_angle.o scattering.o + +test-charge: test-charge.o sno_charge.o misc.o + +test-zebra: test-zebra.o zebra.o pack2b.o + +fit: fit.o zebra.o likelihood.o pmt.o vector.o misc.o muon.o optics.o quantum_efficiency.o solid_angle.o pdg.o scattering.o zdab_utils.o pack2b.o sno_charge.o db.o dqxx.o dict.o siphash.o + +clean: + rm -f *.o calculate_limits test Makefile.dep + +.PHONY: all clean diff --git a/src/Record_Info.h b/src/Record_Info.h new file mode 100644 index 0000000..91e060f --- /dev/null +++ b/src/Record_Info.h @@ -0,0 +1,1041 @@ +// +// File: Record_Info.h +// +// Description: SNO datastream record definitions +// +// Revisions: 02/21/03 - PH Combined varioius versions of this file so now the exact +// same file is used by the builder, SHaRC, xsnoed and QSNO. +// 03/03/03 - PH Changed PmtEventRecord definition so it is now +// swapped like a set of 32-bit integers. +// 07/13/04 - PH Added new NCD run mask bits +// +// Notes: For historical reasons, the structures used by SHaRC can be different +// from the ones written to the data stream, so be careful which one you +// are using! +// +#ifndef __RECORD_INFO_H__ +#define __RECORD_INFO_H__ + +#include + +/* version numbers... + * as of Feb 1997 (from UW) + */ +#define DAQ_CODE_VERSION 0 +#define RUN_RECORD_VERSION 0 +#define PMT_RECORD_VERSION 0 +#define TRIG_RECORD_VERSION 0 +#define PTK_RECORD_VERSIONS 0x50544B30 // 'PTK0' +#define DAQ_RECORD_VERSIONS 0x44415130 // 'DAQ0' + +#define WORD_SIZE(x) (sizeof(x)/sizeof(uint32_t)) + +// ------------------------------------------------------------------------------------- +// generic information for every header +// - preceeds ALL dispatcher records, and all records sent by SHaRC +// - not written to ZDAB files +// +typedef struct GenericRecordHeader { + uint32_t RecordID; + uint32_t RecordLength; // length of record to follow, + // NOT INCLUDING generic record header! + uint32_t RecordVersion; +} aGenericRecordHeader; + +#define HEADERSIZE sizeof( aGenericRecordHeader ) // 12 uint8_ts generic header. + +// ------------------------------------------------------------------------------------- +// SHaRC header for all manipulator records +// + +// local time structure +typedef struct { + uint8_t year; // last 2 digits of year + uint8_t month; // month of year (1->12) + uint8_t day; // day of month (1->31) + uint8_t daylightSavings; // 0 = standard time, 1 = daylight savings time + char timeZone; // hours from GMT (-11->11) (signed uint8_t!) + uint8_t hour; // hour of day (0->23) + uint8_t minute; // minute of hour (0->59) + uint8_t second; // second of minute (0->59) + uint32_t microsecond; // millionths of a second (0->999999) +} SDateTime; + +// header for all manipulator banks +typedef struct { + uint32_t instanceNumber; + uint32_t gtid_ref; // reference GTID for this event + SDateTime time; +} SManipHeader; + +// ------------------------------------------------------------------------------------- +// MAST record +// +#define MAST_RECORD 0x4d415354 // 'MAST' + +// MAST bank structure +typedef struct MastRecord { + float currentVersion; // current SNOMAN version + float originalVersion; // original SNOMAN version +} SBankMAST; + +// ------------------------------------------------------------------------------------- +// RHDR record +// +#define RHDR_RECORD 0x52484452 // 'RHDR' (as written to ZDAB file) +#define RUN_RECORD 0x52554E20 // 'RUN ' (as dispatched and sent by SHaRC) + +// RHDR bank structure +typedef struct RunRecord { + uint32_t Date; + uint32_t Time; + uint32_t DAQCodeVersion; + uint32_t RunNumber; + uint32_t CalibrationTrialNumber; + uint32_t SourceMask; // which sources in? + uint32_t RunMask; // run conditions +#ifdef __MWERKS__ + uint32_t GTCrateMask; // this run's GT crate mask +#else + uint32_t GTCrateMsk; // accomodate misspelling of this for backward compatibility +#endif + uint32_t FirstGTID; // first GTID of this run + uint32_t ValidGTID; // first valid GTID (after hardware changes have been made) + uint32_t Spares[8]; // spares as per nick's suggestion (Thanks Nick!) +} SBankRHDR, aRunRecord; + +// SourceMask... +#define NO_SRC 0x00000UL +#define ROTATING_SRC 0x00001UL +#define LASER_SRC 0x00002UL +#define SONO_SRC 0x00004UL +#define N16_SRC 0x00008UL +#define N17_SRC 0x00010UL +#define NAI_SRC 0x00020UL +#define LI8_SRC 0x00040UL +#define PT_SRC 0x00080UL +#define CF_HI_SRC 0x00100UL +#define CF_LO_SRC 0x00200UL +#define U_SRC 0x00400UL +#define TH_SRC 0x00800UL +#define P_LI7_SRC 0x01000UL +#define WATER_SAMPLER 0x02000UL +#define PROP_COUNTER_SRC 0x04000UL +#define SINGLE_NCD_SRC 0x08000UL +#define SELF_CALIB_SRC 0x10000UL +#define Y88_SRC 0x20000UL + +// RunMask... +#define NEUTRINO_RUN 0x0001UL +#define SOURCE_RUN 0x0002UL +#define CALIB_RUN 0x0004UL +#define NCD_RUN 0x0008UL +#define SALT_RUN 0x0010UL +#define POISON_RUN 0x0020UL +#define PARTIAL_FILL_RUN 0x0040UL +#define AIR_FILL_RUN 0x0080UL +#define D2O_RUN 0x0100UL +#define H2O_RUN 0x0200UL +#define DCR_ACTIVITY_RUN 0x0400UL +#define TRANSITION_RUN 0x0800UL +#define SOURCE_MOVING_RUN 0x1000UL +#define COMP_COILS_RUN 0x2000UL +#define ECA_RUN 0x4000UL +#define DIAGNOSTIC_RUN 0x8000UL +#define SUPERNOVA_RUN 0x10000UL +#define MAINTENANCE_RUN 0x20000UL +#define PCA_RUN 0x40000UL +#define EXPERIMENTAL_RUN 0x80000UL +#define D2O_CIRC_RUN 0x100000UL +#define BUBBLERS_RUN 0x200000UL +#define PMT_OFF_RUN 0x01000000UL +#define NCD_OFF_RUN 0x02000000UL +#define NCD_ECA_RUN 0x04000000UL + +// ------------------------------------------------------------------------------------- +// TRIG record +// +#define TRIG_RECORD 0x54524947 // 'TRIG' + +// TRIG bank structure +typedef struct TriggerInfo { + uint32_t TriggerMask; // which triggers were set? + uint32_t n100lo; // trigger Threshold settings + uint32_t n100med; // these are longs cuz Josh is a weenie. + uint32_t n100hi; + uint32_t n20; + uint32_t n20lb; + uint32_t esumlo; + uint32_t esumhi; + uint32_t owln; + uint32_t owlelo; + uint32_t owlehi; + uint32_t n100lo_zero; // trigger Threshold zeroes + uint32_t n100med_zero; + uint32_t n100hi_zero; + uint32_t n20_zero; + uint32_t n20lb_zero; + uint32_t esumlo_zero; + uint32_t esumhi_zero; + uint32_t owln_zero; + uint32_t owlelo_zero; + uint32_t owlehi_zero; + uint32_t PulserRate; // MTC local pulser + uint32_t ControlRegister; // MTC control register status + uint32_t reg_LockoutWidth; // min. time btwn global triggers + uint32_t reg_Prescale; // how many nhit_100_lo triggers to take + uint32_t GTID; // to keep track of where I am in the world +} SBankTRIG, aTriggerInfo, *aTriggerInfoPtr; + +// TriggerMask... +#define TRIG_NHIT_100_LO 0x00000001 +#define TRIG_NHIT_100_MED 0x00000002 +#define TRIG_NHIT_100_HI 0x00000004 +#define TRIG_NHIT_20 0x00000008 +#define TRIG_NHIT_20_LB 0x00000010 +#define TRIG_ESUM_LO 0x00000020 +#define TRIG_ESUM_HI 0x00000040 +#define TRIG_OWLN 0x00000080 +#define TRIG_OWLE_LO 0x00000100 +#define TRIG_OWLE_HI 0x00000200 +#define TRIG_PULSE_GT 0x00000400 +#define TRIG_PRESCALE 0x00000800 +#define TRIG_PEDESTAL 0x00001000 +#define TRIG_PONG 0x00002000 +#define TRIG_SYNC 0x00004000 +#define TRIG_EXT_ASYNC 0x00008000 +#define TRIG_HYDROPHONE 0x00010000 +#define TRIG_EXT3 0x00020000 +#define TRIG_EXT4 0x00040000 +#define TRIG_EXT5 0x00080000 +#define TRIG_EXT6 0x00100000 +#define TRIG_NCD_SHAPER 0x00200000 +#define TRIG_EXT8 0x00400000 +#define TRIG_SPECIAL_RAW 0x00800000 +#define TRIG_NCD_MUX 0x01000000 +#define TRIG_SOFT_GT 0x02000000 + +// ------------------------------------------------------------------------------------- +// EPED record +// +#define EPED_RECORD 0x45504544 // 'EPED' + +// EPED bank structure (as seen by SNOMAN) +typedef struct EpedRecord { + uint32_t ped_width; + uint32_t ped_delay_coarse; + uint32_t ped_delay_fine; + uint32_t qinj_dacsetting; + uint32_t halfCrateID; + uint32_t CalibrationType; + uint32_t GTID; + uint32_t Flag; +} SBankEPED; + +// EPED record as sent by SHaRC +// (be very careful here! for backward compatibility this is also +// defined as EPEDRecord as used by SHaRC. Not to be confused with EpedRecord.) +typedef struct EPEDRecord { + uint32_t Time; // ptk used instead of aDate_Time + uint16_t CalibrationType; + uint8_t halfCrateID; // which 1/2 crate is enabled for pedestals + uint8_t reg_PedestalWidth; // width of pedestal pulse for Qinj + uint8_t reg_Ped_GTDel_Coarse; + uint8_t reg_Ped_GTDel_Fine; // pedestal delay for T slopes + int16_t Qinj_dacsetting; // DAC setting for Qinj + uint32_t MTCD_csr; + uint32_t GTID; // GT Id validity range + uint32_t Flag; // start/stop flag + uint32_t RunNumber; // current run number + uint32_t Spares[5]; +} SHaRC_BankEPED; + +// CalibrationType... +#define EPED_Q_SLOPE_RUN 1 +#define EPED_T_SLOPE_RUN 2 +#define EPED_PED_RUN 3 +#define EPED_SLOWPED_RUN 4 + +// Bit mask in halfCrateID... +#define EPED_FIRST_HALF (uint8_t) 0 +#define EPED_SECOND_HALF (uint8_t) 0x80U + +// Flag... +#define EPED_START_CAL 1ul // start of cali run +#define EPED_CHANGE_CAL 2ul // change of same +#define EPED_STOP_CAL 3ul // stop of same, crate +#define EPED_END_CAL 4ul // end of run, all crates + +// ------------------------------------------------------------------------------------- +// VTHR record +// +#define VTHR_RECORD 0x56544852 // 'VTHR' + +// VTHR bank structure +typedef struct VThresholdRecord { + uint32_t GTID; // GTID + uint32_t ncrates; // number of crates = 19 for SNODAQ + uint32_t null2; // these are longs cuz Josh is a weenie. + uint32_t null3; + uint32_t null4; + uint32_t null5; + uint32_t null6; + uint32_t null7; + uint32_t null8; + uint32_t null9; + unsigned char theData[19*16*32]; +} SBankVTHR; + +// ------------------------------------------------------------------------------------- +// CAST record +// +#define CAST_RECORD 0x43415354 // 'CAST' +#define CLST_RECORD 0x434C5354 // 'CLST' - obsolete + +#define kMaxManipulatorRopes 6 + +// manipulator rope structure +typedef struct ManipRopeStatus { + uint32_t ropeID; // EManipulatorRopeID + float length; + float targetLength; + float velocity; + float tension; + float encoderError; + float spares[2]; +} aManipRopeStatus; + +// CAST bank structure +typedef struct ManipStatus { + uint32_t sourceID; + uint32_t status; + uint32_t numRopes; + float position[3]; // x, y, z position + float destination[3]; + float positionError; + float sourceOffset[3];// PH 2018-06-20 (was obsoletePosErr) + float orientation; // source orientation (0=unknown, 1=north...) + float spare; + uint32_t tail; + aManipRopeStatus ropeStatus[kMaxManipulatorRopes]; + float spare2[23]; +} SBankCAST; + +// SHaRC CAST bank structure +typedef struct { + uint32_t sourceID; + uint32_t status; + uint32_t numRopes; + float position[3]; // x, y, z position + float destination[3]; + float positionError; + float obsoletePosErr[3]; + float orientation; // source orientation (0=unknown, 1=north...) + float spare; + uint32_t tail; + aManipRopeStatus ropeStatus[4]; +} SHaRC_BankCAST; + +// status... +enum EManipulatorStatus { + kStoppedNone = 1, + kStoppedLowTension, + kStoppedHighTension, + kStoppedEndpoint, + kStoppedStuck, + kStoppedNetForce, + kStoppedAxisError, + kMovingDirect, + kMovingIdle, + kMovingAbort +}; + +// ropeID... +enum EManipulatorRopeID { + NorthRope = 1, + SouthRope, + EastRope, + WestRope, + CentralRope1, + CentralRope2, + CentralRope3, + GuideTubeRope1, + GuideTubeRope2, + GuideTubeRope3, + GuideTubeRope4, + GuideTubeRope5, + GuideTubeRope6, + GasUmbilical, + LaserUmbilical, + RotatingUmbilical +}; + +// ------------------------------------------------------------------------------------- +// CAAC record +// +#define CAAC_RECORD 0x43414143 // 'CAAC' +#define CLAC_RECORD 0x434C4143 // 'CLAC' - obsolete + +// CAAC bank structure +typedef struct AVStatus { + float position[3]; // x, y, z + float rotation[3]; // roll, pitch, yaw + float ropeLength[7]; // seven sense rope lengths + float spare[3]; +} SBankCAAC; + +// ------------------------------------------------------------------------------------- +// SOSA record +// +#define SOSA_RECORD 0x534F5341 // 'SOSA' + +// SOSA bank structure +typedef struct AcceleratorStatus { + uint32_t sourceID; + uint32_t acceleratorOn; + float targetVoltage; + float targetCurrent; + float anodeVoltage; + float anodeCurrent; + float getterVoltage; + float getterCurrent; + float direction[3]; + float spare; +} SBankSOSA; + +// ------------------------------------------------------------------------------------- +// SOSG record +// +#define SOSG_RECORD 0x534F5347 // 'SOSG' + +// SOSG bank structure +typedef struct GasStatus { + uint32_t sourceID; + uint32_t dtGeneratorOn; + float targetVerticalPosition; + float pressure1; + float pressure2; + float pressure3; + float pressure4; + float pressure5; + float pressure6; + float vacuum1; + float vacuum2; + float carbonDioxideFlowRate; + float heliumFlowRate; + float oxygenFlowRate; + float fastNeutronFlux; + float neutronRadiationMonitor; + float pmtVoltage; + float wireVoltage; + float direction[3]; + float spare[2]; +} SBankSOSG; + +// ------------------------------------------------------------------------------------- +// SOSL record +// +#define SOSL_RECORD 0x534F534C // 'SOSL' + +// SOSL bank structure +typedef struct LaserStatus { + uint32_t sourceID; + uint32_t status; + uint32_t dyeCellNumber; + uint32_t filterWheel1Position; + uint32_t filterWheel2Position; + uint32_t pmtVoltage; + float pressure1; + float pressure2; + float nitrogenFlowRate; + float direction[3]; + float spare; +} SBankSOSL; + +// ------------------------------------------------------------------------------------- +// SOSR record +// +#define SOSR_RECORD 0x534F5352 // 'SOSR' + +// SOSR bank structure +typedef struct RotatingStatus { + uint32_t sourceID; + float direction[3]; +} SBankSOSR; + + +// ------------------------------------------------------------------------------------- +// TASK record +// +#define TASK_RECORD 0x5441534B // 'TASK' + +// task record -- Task running record +typedef struct TASKRecord { + uint32_t Time; // ptk used instead of aDate_Time + uint32_t TasksRunning; //true if any task is running, false if none running. + uint32_t GTID; + uint32_t RunNumber; + uint32_t Spares[5]; +} SBankTASK; + +// ------------------------------------------------------------------------------------- +// ZDAB record (event record) +// +#define ZDAB_RECORD 0x5a444142 // 'ZDAB' (as written to ZDAB file) +#define PMT_RECORD 0x504d5420 // 'PMT ' (as dispatched and sent by SHaRC) + +/* + * pmt record -- variable-length record containing npmt*3 LW of FEC data. + * note: Generic Header length indicates only length of the pmt header, and + * DOES NOT include the hits! + * + * Also includes the following info, from ref_packer_zdab_pmt.f + * + * -> BEWARE: HERE, MSB is 32 ! ! ! ! <- + * Also, word number below is SNOMAN WORD NUMBER ONLY! + * + * o Event Header Record (one per event trigger): + * Number + * Name WORD LSB Pos. of Bits Description + * RECORD_TYPE 1 26 7 Record type (e.g. PMT, NCD, etc). + * MC_FLAG 1 25 1 0=Real event, 1= MC event. + * VER_NUM 1 17 8 ZDAB_PMT format number number. + * DATA_TYPE 1 1 16 Run Type (see id_run_types.doc). + * RUN_NUMBER 2 1 32 Run number. + * EV_NUMBER 3 1 32 Event number in this Run. + * DAQ_STATUS 4 17 16 DAQ status flags. + * NHITS 4 1 16 Number of fired PMT's. + * PCK_TYPE 5 29 4 MC packing type: + * 0= PMT info only + * 1= 0 plus source bank info + * 2= 1 plus jitter/cerenkov history + * CAL_TYPE 5 25 4 MC Calibration type: + * 0= simple calibration constants + * 1= full calibration constants + * + * ---- extended PmtEventRecord format (PH 02/25/99) ---- + * + * SUB_FIELD 5 24 1 0= No sub fields + * 1= Sub field to follow + * FIELD_LEN 5 1 23 Offset in 4-uint8_t words to first sub field + * (May be zero if no sub fields) + * + */ + +// put flags here, shifted to correct position. See above. +#define PMT_EVR_RECTYPE ( 0xA << 9 ) // see SNOMAN Docs for these +#define PMT_EVR_NOT_MC ( 0x0UL << 8 ) +#define PMT_EVR_ZDAB_VER ( 23UL << 0 ) +#define PMT_EVR_DATA_TYPE 0xB +#define PMT_EVR_DAQ_STAT 0xA +#define PMT_EVR_PCK_TYPE ( 0x00UL << 28 ) +#define PMT_MC_PCK_TYPE ( 0x01UL << 28 ) +#define PMT_JITTER_PCK_TYPE ( 0x02UL << 28 ) +#define PMT_EVR_CAL_TYPE ( 0x01UL << 24 ) + +#define PCK_TYPE_MASK ( 0x0fUL << 28 ) +#define CAL_TYPE_MASK ( 0x0fUL << 24 ) + +#ifdef SWAP_BYTES + +// FEC data as read out in 96-bit structure +typedef struct FECReadoutData { + // word 1 (starts from LSB): + unsigned GTID1 :16; // lower 16 bits + unsigned ChannelID :5; + unsigned CrateID :5; + unsigned BoardID :4; + unsigned CGT_ES16 :1; + unsigned CGT_ES24 :1; + + // word 2: + unsigned Qlx :11; + unsigned SignQlx :1; + unsigned CellID :4; + unsigned Qhs :11; + unsigned SignQhs :1; + unsigned MissedCount :1; + unsigned NC_CC :1; + unsigned LGI_Select :1; + unsigned Cmos_ES16 :1; + + // word 3 : + unsigned Qhl :11; + unsigned SignQhl :1; + unsigned GTID2 :4; // bits 17-20 + unsigned TAC :11; + unsigned SignTAC :1; + unsigned GTID3 :4; // bits 21-24 + +} aFECReadoutData, *aFECReadoutDataPtr; + +// Master Trigger Card data +typedef struct MTCReadoutData { + // word 0 + uint32_t Bc10_1 :32; + // word 1 + uint32_t Bc10_2 :21; + uint32_t Bc50_1 :11; + // word 2 + uint32_t Bc50_2 :32; + // word 3 + uint32_t BcGT :24; // LSB + unsigned Nhit_100_Lo :1; + unsigned Nhit_100_Med :1; + unsigned Nhit_100_Hi :1; + unsigned Nhit_20 :1; + unsigned Nhit_20_LB :1; + unsigned ESum_Lo :1; + unsigned ESum_Hi :1; + unsigned Owln :1; // MSB + + // word 4 + unsigned Owle_Lo :1; + unsigned Owle_Hi :1; + unsigned Pulse_GT :1; + unsigned Prescale :1; + unsigned Pedestal :1; + unsigned Pong :1; + unsigned Sync :1; + unsigned Ext_Async :1; + unsigned Hydrophone :1; + unsigned Ext_3 :1; + unsigned Ext_4 :1; + unsigned Ext_5 :1; + unsigned Ext_6 :1; + unsigned NCD_Shaper :1; + unsigned Ext_8 :1; + unsigned Special_Raw :1; + unsigned NCD_Mux :1; + unsigned Soft_GT :1; + unsigned Miss_Trig :1; + unsigned Peak :10; + unsigned Diff_1 :3; + + // word 5 + unsigned Diff_2 :7; + unsigned Int :10; + unsigned TestGT :1; + unsigned Test50 :1; + unsigned Test10 :1; + unsigned TestMem1 :1; + unsigned TestMem2 :1; + unsigned SynClr16 :1; + unsigned SynClr16_wo_TC16 :1; + unsigned SynClr24 :1; + unsigned SynClr24_wo_TC24 :1; + unsigned FIFOsNotAllEmpty :1; + unsigned FIFOsNotAllFull :1; + unsigned FIFOsAllFull :1; + unsigned Unused1 :1; + unsigned Unused2 :1; + unsigned Unused3 :1; + +} aMTCReadoutData, *aMTCReadoutDataPtr; + +#else // SWAP_BYTES + +// FEC data as read out in 96-bit structure +typedef struct FECReadoutData { + // word 1 (starts from MSB): + unsigned CGT_ES24 :1; + unsigned CGT_ES16 :1; + unsigned BoardID :4; + unsigned CrateID :5; + unsigned ChannelID :5; + unsigned GTID1 :16; // lower 16 bits + // word 2: + unsigned Cmos_ES16 :1; + unsigned LGI_Select :1; + unsigned NC_CC :1; + unsigned MissedCount :1; + unsigned SignQhs :1; + unsigned Qhs :11; + unsigned CellID :4; + unsigned SignQlx :1; + unsigned Qlx :11; + // word 3 : + unsigned GTID3 :4; // bits 21-24 + unsigned SignTAC :1; + unsigned TAC :11; + unsigned GTID2 :4; // bits 17-20 + unsigned SignQhl :1; + unsigned Qhl :11; +} aFECReadoutData, *aFECReadoutDataPtr; + +// Master Trigger Card data +typedef struct MTCReadoutData { + // word 0 + uint32_t Bc10_1 :32; + // word 1 + uint32_t Bc50_1 :11; + uint32_t Bc10_2 :21; + // word 2 + uint32_t Bc50_2 :32; + // word 3 + unsigned Owln :1; // MSB + unsigned ESum_Hi :1; + unsigned ESum_Lo :1; + unsigned Nhit_20_LB :1; + unsigned Nhit_20 :1; + unsigned Nhit_100_Hi :1; + unsigned Nhit_100_Med :1; + unsigned Nhit_100_Lo :1; + uint32_t BcGT :24; // LSB + // word 4 + unsigned Diff_1 :3; + unsigned Peak :10; + unsigned Miss_Trig :1; + unsigned Soft_GT :1; + unsigned NCD_Mux :1; + unsigned Special_Raw :1; + unsigned Ext_8 :1; + unsigned NCD_Shaper :1; + unsigned Ext_6 :1; + unsigned Ext_5 :1; + unsigned Ext_4 :1; + unsigned Ext_3 :1; + unsigned Hydrophone :1; + unsigned Ext_Async :1; + unsigned Sync :1; + unsigned Pong :1; + unsigned Pedestal :1; + unsigned Prescale :1; + unsigned Pulse_GT :1; + unsigned Owle_Hi :1; + unsigned Owle_Lo :1; + // word 5 + unsigned Unused3 :1; + unsigned Unused2 :1; + unsigned Unused1 :1; + unsigned FIFOsAllFull :1; + unsigned FIFOsNotAllFull :1; + unsigned FIFOsNotAllEmpty :1; + unsigned SynClr24_wo_TC24 :1; + unsigned SynClr24 :1; + unsigned SynClr16_wo_TC16 :1; + unsigned SynClr16 :1; + unsigned TestMem2 :1; + unsigned TestMem1 :1; + unsigned Test10 :1; + unsigned Test50 :1; + unsigned TestGT :1; + unsigned Int :10; + unsigned Diff_2 :7; +} aMTCReadoutData, *aMTCReadoutDataPtr; + +#endif // SWAP_BYTES + +// ZDAB bank structure +typedef struct PmtEventRecord { +#ifdef SWAP_BYTES + uint16_t DataType; + uint16_t PmtEventRecordInfo; +#else + uint16_t PmtEventRecordInfo; + uint16_t DataType; +#endif + uint32_t RunNumber; + uint32_t EvNumber; +#ifdef SWAP_BYTES + uint16_t NPmtHit; + uint16_t DaqStatus; // Now used to store sub-run number - PH +#else + uint16_t DaqStatus; // Now used to store sub-run number - PH + uint16_t NPmtHit; +#endif + uint32_t CalPckType; // lower 24 bits are now used for extended PmtEventRecord flags + aMTCReadoutData TriggerCardData; // 6 LW of MTC data + // FECReadoutData follows directly. +} SBankZDAB, aPmtEventRecord; + +// MCHeader - monte carlo event data if CAL_TYPE = 1 or 2 (one per event) +typedef struct MCHeader { + uint16_t mcVersion; // SNOMAN MC version number + uint16_t nVertices; // number of source vertices + uint32_t mcEvNumber; // MC event number + uint32_t julianDate; // Julian Date (01/01/75 = 1) + uint32_t sec; // universal time seconds + uint32_t nsec; // universal time nanoseconds + uint16_t Seed1; // first random number seed + uint16_t Seed2; // second random number seed + uint32_t randNum; // random number used +} aMCHeader; + +// MCData - monte carlo data (one per source vertex + hanging tracks) +typedef struct MCData { + uint32_t intType; // interaction type + uint16_t xPos; // vertex X position (32768 = 1000.0 cm) + uint16_t yPos; // vertex Y position + uint16_t zPos; // vertex X position + uint8_t nTracks; // number of tracks for this vertex + uint8_t vClass; // vertex class, (Pre)Source=(1)0 + uint32_t time0; // first word of double prec time + uint32_t time1; // second word of double prec time + uint16_t pType; // particle type + uint16_t pEnergy0; // first word of 32-bit energy (note: NOT on 32-bit boundary!) + uint16_t pEnergy1; // second word of 32-bit energy + uint16_t xDir; // track direction x-cosine (32768 = 1.0) + uint16_t yDir; // track direction x-cosine + uint16_t zDir; // track direction x-cosine +} aMCData; + +// MCJitter - jitter/cherenkov history if CAL_TYPE = 2 (one per PMT) +typedef struct MCJitter { + uint32_t jitterData; +} aMCJitter; + +/* ................... extended PmtEventRecord format (PH 02/25/99) ................... */ + +#define SUB_NOT_LAST ( 0x00800000UL ) // bit set indicates another sub-field follows +#define SUB_LENGTH_MASK ( 0x007fffffUL ) // mask for offset to next sub-field +#define SUB_TYPE_BITNUM 24 // bit position of sub-field type + +/* sub-field ID numbers */ +#define SUB_TYPE_CALIBRATED 8UL // calibrated sub-field type +#define SUB_TYPE_MONTE_CARLO 9UL // monte carlo sub-field +#define SUB_TYPE_FIT 10UL // fitted event sub-field +#define SUB_TYPE_HIT_DATA 11UL // extra floating-point hit data +#define SUB_TYPE_EVENT_DATA 12UL // extra floating-point event data +#define SUB_TYPE_PACKED_TSLH 13UL // packed time since last hit +#define SUB_TYPE_CAL_FLAGS 14UL // calibrated data flags (one 32 bit word) +#define SUB_TYPE_HCA_QUEENS 15UL // Queen's HCA calibration +#define SUB_TYPE_NCD 16UL // NCD data record +#define SUB_TYPE_CAEN 32UL // SNO+ CAEN data +#define SUB_TYPE_TUBII 33UL // SNO+ TUBII trigger word + +/* sub-field header */ +typedef struct SubFieldHeader { + uint32_t flags; // bits 0-22 = size of this sub-field in 4-uint8_t words (including header) + // bit 23 = 0-no more sub-fields, 1=another sub-field follows + // bits 24-31 = ID number for this sub-field +} aSubFieldHeader; + +/* sub-field ID number 8 - calibrated PMT data */ +/* -9999 in any of these fields means that no calibration was available. */ +/* Order and number of these correspond exactly to hits in original PmtEventRecord. */ +typedef struct CalibratedPMT { + float tac; + float qhs; + float qhl; + float qlx; +} aCalibratedPMT; + +/* sub-field ID number 9 - monte carlo header */ +typedef struct MCHeader MonteCarloHeader; + +/* vertex structure for monte-carlo data */ +typedef struct MonteCarloVertex { + float x,y,z; // vertex location in cm + float u,v,w; // track direction cosines + double time; // event time + float energy; // energy of particle for outgoing track + uint32_t int_code; // vertex interaction code + uint16_t flags; // special vertex flags (upper 8 bits reserved for display) + uint16_t particle; // outgoing track particle ID + int32_t parent; // index of parent vertex in list (-ve if no parent) +} aMonteCarloVertex; + +/* sub-field ID number 10 - fitted event data */ +typedef struct FittedEvent { + float x,y,z; // fitted event position in cm + float u,v,w; // fitted event direction cosines + float time; // fitted event time + float quality; // quality of fit + uint16_t npmts; // number of PMT's fit + uint16_t spare; // extra fit-dependent data + char name[32]; // fitter identification string (NULL terminated) +} aFittedEvent; + +/* sub-field ID number 11 - extra floating point hit data */ +#define DATA_NAME_LEN 24 + +typedef struct ExtraHitData { + char name[DATA_NAME_LEN]; // null-terminated data name (see Note 1) + // -- followed by NPmtHit float values in the same order as PMT hits +} aExtraHitData; + +// Note 1) The extra hit/event data name may have an optional format specifier. +// The format specifier is standard C printf style for a floating point number +// (ie. "%.2f"), and must immediately follow the null terminator of the name. + +/* sub-field ID number 12 - extra floating point event data */ +typedef struct ExtraEventData { + char name[DATA_NAME_LEN]; // null-terminated data name (see Note 1) + float value; // data value +} aExtraEventData; + +/* sub-field ID number 13 - packed TSLH */ + +/* sub-field ID number 14 - calibration flags (one 32-bit word) */ +#define CAL_FLAG_QSLOPE 0x0001 // flag for charge slopes applied + +/* sub-field ID number 15 - Queen's HCA calibration */ + +/* sub-field ID number 16 - NCD data record (see NcdDataTypes.h) */ + +/* sub-field ID nubmer 32 - CAEN trigger sum data */ +#define UNPK_CAEN_MAGIC(a) ( (*(a) >> 28) & 0x0000000f ) +#define UNPK_CAEN_WORD_COUNT(a) ( *(a) & 0x0fffffff ) +#define UNPK_CAEN_CHANNEL_MASK(a) ( *((a)+1) & 0x000000ff ) +#define UNPK_CAEN_PATTERN(a) ( (*((a)+1) >> 8) & 0x0000ffff ) +#define UNPK_CAEN_PACK_FLAG(a) ( (*((a)+1) >> 24) & 0x00000001 ) +#define UNPK_CAEN_BOARD_ID(a) ( *((a)+1) >> 25 ) +#define UNPK_CAEN_SYNC16(a) ( (*((a)+1) >> 15) & 0x00000001 ) +#define UNPK_CAEN_SYNC24(a) ( (*((a)+1) >> 16) & 0x00000001 ) +#define UNPK_CAEN_EVENT_COUNT(a) ( *((a)+2) & 0x00ffffff ) +#define UNPK_CAEN_TRIGGER_TIME(a) ( *((a)+3) ) + +/* sub-field ID number 33 - TUBii record */ +typedef struct TubiiRecord { + uint32_t TrigWord; + uint32_t GTID; +} aTubiiRecord; + +/* .............................. End extended format .............................. */ + +/* + * unpacking "routines" by definition! Looks awful, but is fast... + * "a" in the following is a pointer to 3 longwords as read out from + * the FEC32. from SNODAQ distribution + */ +#define UNPK_MISSED_COUNT(a) ( (*((a)+1) >> 28) & 0x1 ) +#define UNPK_NC_CC(a) ( (*((a)+1) >> 29) & 0x1 ) +#define UNPK_LGI_SELECT(a) ( (*((a)+1) >> 30) & 0x1 ) +#define UNPK_CMOS_ES_16(a) ( (*((a)+1) >> 31) & 0x1 ) +#define UNPK_CGT_ES_16(a) ( (*(a) >> 30) & 0x1 ) +#define UNPK_CGT_ES_24(a) ( (*(a) >> 31) & 0x1 ) +#define UNPK_QLX(a) ( ( *((a)+1) & 0x00000fff) ^ 0x00000800 ) +#define UNPK_QHS(a) ( ( (*((a)+1) >> 16) & 0x00000fff) ^ 0x00000800 ) +#define UNPK_QHL(a) ( ( *((a)+2) & 0x00000fff) ^ 0x00000800 ) +#define UNPK_TAC(a) ( ( (*((a)+2) >> 16) & 0x00000fff) ^ 0x00000800 ) + +#define UNPK_CELL_ID(a) ( (*((a)+1) >> 12) & 0x0000000F ) +#define UNPK_CHANNEL_ID(a) ( (*(a) >> 16) & 0x0000001F ) +#define UNPK_BOARD_ID(a) ( (*(a) >> 26) & 0x0000000F ) +#define UNPK_CRATE_ID(a) ( (*(a) >> 21) & 0x0000001F ) +#define UNPK_FEC_GT24_ID(a) ( ( * (a) & 0x0000FFFF ) | \ + ( (*((a)+2) << 4) & 0x000F0000 ) | \ + ( (*((a)+2) >> 8) & 0x00F00000 ) ) +#define UNPK_FEC_GT16_ID(a) ( *(a) & 0x0000FFFF ) +#define UNPK_FEC_GT8_ID(a) ( ( (*((a)+2) >> 24) & 0x000000F0 ) | \ + ( (*((a)+2) >> 12) & 0x0000000F ) + +#define UNPK_FEC_GT_ID(a) ( ( * (a) & 0x0000FFFF ) | \ + ( (*((a)+2) << 4) & 0x000F0000 ) | \ + ( (*((a)+2) >> 8) & 0x00F00000 ) ) + +// unpacking trigger words by definitions... +// unpacking "routines" by definition! Looks awful, but is fast... +// "a" in the following is a pointer to 6 longwords as read out from the MTC. +#define UNPK_MTC_BC50_1(a) ( (*((a)+1) >> 21) & 0x7FF ) +#define UNPK_MTC_BC50_2(a) ( *((a)+2) ) +#define UNPK_MTC_BC10_1(a) ( *( a ) ) +#define UNPK_MTC_BC10_2(a) ( *((a)+1) & 0x1FFFFF ) +#define UNPK_MTC_GT_ID(a) ( *((a)+3) & 0x00FFFFFF ) +#define UNPK_MTC_DIFF(a) (((*((a)+4) >> 29) & 0x007) | ((*((a)+5) << 3) & 0x3F8)) +#define UNPK_MTC_INT(a) ( (*((a)+5) >> 7) & 0x3FF ) +#define UNPK_MTC_PEAK(a) ( (*((a)+4) >> 19) & 0x3FF ) +#define UNPK_NHIT_100_LO(a) ( *((a)+3) & 0x01000000 ) +#define UNPK_NHIT_100_MED(a) ( *((a)+3) & 0x02000000 ) +#define UNPK_NHIT_100_HI(a) ( *((a)+3) & 0x04000000 ) +#define UNPK_NHIT_20(a) ( *((a)+3) & 0x08000000 ) +#define UNPK_NHIT_20_LB(a) ( *((a)+3) & 0x10000000 ) +#define UNPK_ESUM_LO(a) ( *((a)+3) & 0x20000000 ) +#define UNPK_ESUM_HI(a) ( *((a)+3) & 0x40000000 ) +#define UNPK_OWLN(a) ( *((a)+3) & 0x80000000 ) +#define UNPK_OWLE_LO(a) ( *((a)+4) & 0x00000001 ) +#define UNPK_OWLE_HI(a) ( *((a)+4) & 0x00000002 ) +#define UNPK_PULSE_GT(a) ( *((a)+4) & 0x00000004 ) +#define UNPK_PRESCALE(a) ( *((a)+4) & 0x00000008 ) +#define UNPK_PONG(a) ( *((a)+4) & 0x00000010 ) +#define UNPK_SYNC(a) ( *((a)+4) & 0x00000020 ) +#define UNPK_EXT_ASYNC(a) ( *((a)+4) & 0x00000040 ) +#define UNPK_EXT_2(a) ( *((a)+4) & 0x00000080 ) +#define UNPK_EXT_3(a) ( *((a)+4) & 0x00000100 ) +#define UNPK_EXT_4(a) ( *((a)+4) & 0x00000200 ) +#define UNPK_EXT_5(a) ( *((a)+4) & 0x00000400 ) +#define UNPK_EXT_6(a) ( *((a)+4) & 0x00000800 ) +#define UNPK_EXT_7(a) ( *((a)+4) & 0x00001000 ) +#define UNPK_EXT_8(a) ( *((a)+4) & 0x00002000 ) +#define UNPK_SPECIAL_RAW(a) ( *((a)+4) & 0x00004000 ) +#define UNPK_NCD(a) ( *((a)+4) & 0x00008000 ) +#define UNPK_SOFT_GT(a) ( *((a)+4) & 0x00010000 ) +#define UNPK_MISS_TRIG(a) ( *((a)+4) & 0x00020000 ) + +// unpack Trigger Error Mask... +#define UNPK_TESTGT(a) ( *((a)+5) & 0x00020000 ) +#define UNPK_TEST50(a) ( *((a)+5) & 0x00040000 ) +#define UNPK_TEST10(a) ( *((a)+5) & 0x00080000 ) +#define UNPK_TESTMEM1(a) ( *((a)+5) & 0x00100000 ) +#define UNPK_TESTMEM2(a) ( *((a)+5) & 0x00200000 ) +#define UNPK_SYNCLR16(a) ( *((a)+5) & 0x00400000 ) +#define UNPK_SYNCLR16_WO_TC16(a) ( *((a)+5) & 0x00800000 ) +#define UNPK_SYNCLR24(a) ( *((a)+5) & 0x01000000 ) +#define UNPK_SYNCLR24_WO_TC24(a) ( *((a)+5) & 0x02000000 ) +#define UNPK_SOME_FIFOS_EMPTY(a) ( *((a)+5) & 0x04000000 ) +#define UNPK_SOME_FIFOS_FULL(a) ( *((a)+5) & 0x08000000 ) +#define UNPK_ALL_FIFOS_FULL(a) ( *((a)+5) & 0x10000000 ) + +// unpack the Trigger Word (lowest 27 bits are significant) +#define UNPK_MTC_TRIGGER(a) ( ( ( *((a)+3) >> 5 ) & 0x7F80000 ) | ( *((a)+4) & 0x7FFFF ) ) +// unpack the Trigger Error bits (lowest 14 bits signficant) +#define UNPK_MTC_ERROR(a) ( ( *((a)+5) >> 17 ) & 0x3FFF ) + + +// ------------------------------------------------------------------------------------- + +// other records, not defined in this file +#define CRON_RECORD 0x43524F4E // 'CRON' +#define VRLY_RECORD 0x56524C59 // 'VRLY' +#define MSEI_RECORD 0x4D534549 // 'MSEI' + +#ifdef __MWERKS__ +// vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv +// extra code for SHaRC version only + +typedef struct MTCReadoutWords { + uint32_t Word[6]; +} aMTCReadoutWords, *aMTCReadoutWordsPtr; + +typedef struct FECReadoutWords { + uint32_t Word[3]; +} aFECReadoutWords, *aFECReadoutWordsPtr; + +// (be very careful here! for backward compatibility this is also +// defined as EpedRecord as used by everyone else. Not to be confused with EPEDRecord.) +typedef struct EPEDRecord SHaRC_BankEPED; + +// SHaRC uses short forms of trigger bit definitions +#define NHIT_100_LO TRIG_NHIT_100_LO +#define NHIT_100_MED TRIG_NHIT_100_MED +#define NHIT_100_HI TRIG_NHIT_100_HI +#define NHIT_20 TRIG_NHIT_20 +#define NHIT_20_LB TRIG_NHIT_20_LB +#define ESUM_LO TRIG_ESUM_LO +#define ESUM_HI TRIG_ESUM_HI +#define OWLN TRIG_OWLN +#define OWLE_LO TRIG_OWLE_LO +#define OWLE_HI TRIG_OWLE_HI +#define PULSE_GT TRIG_PULSE_GT +#define PRESCALE TRIG_PRESCALE +#define PEDESTAL TRIG_PEDESTAL +#define PONG TRIG_PONG +#define SYNC TRIG_SYNC +#define EXT_ASYNC TRIG_EXT_ASYNC +#define HYDROPHONE TRIG_HYDROPHONE +#define EXT3 TRIG_EXT3 +#define EXT4 TRIG_EXT4 +#define EXT5 TRIG_EXT5 +#define EXT6 TRIG_EXT6 +#define EXT7 TRIG_EXT7 +#define EXT8 TRIG_EXT8 +#define SPECIAL_RAW TRIG_SPECIAL_RAW +#define NCD TRIG_NCD_MUX +#define SOFT_GT TRIG_SOFT_GT + +// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +#endif // __MWERKS__ + + +#endif // __RECORD_INFO_H__ diff --git a/src/calculate_limits.c b/src/calculate_limits.c new file mode 100644 index 0000000..6dd37f0 --- /dev/null +++ b/src/calculate_limits.c @@ -0,0 +1,318 @@ +#include +#include +#include /* For M_PI */ + +/* Mass of dark matter particle (MeV). */ +double mass = 1000.0; + +/* Decay length of mediator V (in mm). */ +double decay_length = 1000e9; + +/* Cross section for dark matter interaction (in mm^2). */ +double dm_cross_section = 1e-30; + +/* Approximate dark matter density in MeV/mm^3. From Tom Caldwell's thesis. */ +double dm_density = 400e3; + +/* Approximate dark matter velocity in mm/s. The true distribution is expected + * to be a Maxwell Boltzmann distribution which is modulated annually by the + * earth's rotation around the sun, but we just assume a single constant + * velocity here. From Tom Caldwell's thesis page 26. */ +double dm_velocity = 244e6; + +/* Number density of scatterers in the Earth. + * + * FIXME: Currently just set to the number density of atoms in water. Need to + * update this for rock, and in fact this will change near the detector since + * there is water outside the AV. */ +double number_density = 30e18; /* In 1/mm^3 */ + +/* From Google maps. Probably not very accurate, but should be good enough for + * this calculation. */ +double latitude = 46.471857; +double longitude = -81.186755; + +/* Radius of the earth in mm. */ +double radius_earth = 6.371e9; + +/* Depth of the SNO detector in mm. Don't be fooled by all the digits. I just + * converted 6800 feet -> mm. */ +double sno_depth = 2072640; + +/* Fiducial volume in mm. */ +double radius_fiducial = 5000; + +/* Cartesian coordinates of SNO in earth frame. They need to be global since + * they are used in some functions. */ +double x_sno[3]; + +double epsabs = 1e-1; +double epsrel = 1e-1; + +double deg2rad(double deg) +{ + return deg*M_PI/180.0; +} + +double rad2deg(double rad) +{ + return rad*180.0/M_PI; +} + +/* Convert spherical coordinates to cartesian coordinates. + * + * See https://en.wikipedia.org/wiki/Spherical_coordinate_system. */ +void sphere2cartesian(double r, double theta, double phi, double *x, double *y, double *z) +{ + *x = r*sin(theta)*cos(phi); + *y = r*sin(theta)*sin(phi); + *z = r*cos(theta); +} + +/* Convert cartesian coordinates to spherical coordinates. + * + * See https://en.wikipedia.org/wiki/Spherical_coordinate_system. */ +void cartesian2sphere(double x, double y, double z, double *r, double *theta, double *phi) +{ + *r = sqrt(x*x + y*y + z*z); + *theta = acos(z/(*r)); + *phi = atan2(y,x); +} + +void cross(double *a, double *b, double *c) +{ + c[0] = a[1]*b[2] - a[2]*b[1]; + c[1] = a[2]*b[0] - a[0]*b[2]; + c[2] = a[0]*b[1] - a[1]*b[0]; +} + +double dot(double *a, double *b) +{ + return a[0]*b[0] + a[1]*b[1] + a[2]*b[2]; +} + +double norm(double *a) +{ + return sqrt(dot(a,a)); +} + +void normalize(double *a) +{ + double n = norm(a); + a[0] /= n; + a[1] /= n; + a[2] /= n; +} + +/* Rotate a vector x around the vector dir by an angle theta. */ +void rotate(double *result, double *x, double *dir, double theta) +{ + double a = dot(dir,x); + double b[3]; + + double sin_theta = sin(theta); + double cos_theta = cos(theta); + + /* Make sure the direction vector is normalized. */ + normalize(dir); + + cross(x,dir,b); + + result[0] = x[0]*cos_theta + dir[0]*a*(1-cos_theta) + b[0]*sin_theta; + result[1] = x[1]*cos_theta + dir[1]*a*(1-cos_theta) + b[1]*sin_theta; + result[2] = x[2]*cos_theta + dir[2]*a*(1-cos_theta) + b[2]*sin_theta; +} + +/* Rotate a vector in earth centered coordinates to SNO coordinates (doesn't do + * the translation). */ +void rotate_earth_to_sno(double *x_earth, double *x_sno) +{ + double dir[3]; + double z[3] = {0,0,1}; + + cross(x_sno, z, dir); + + /* Normalize. */ + normalize(dir); + + double theta = acos(dot(x_sno,z)/norm(x_sno)); + + rotate(x_sno, x_earth, dir, theta); +} + +/* Integral over phi. */ +double f3(double phi, void *params) +{ + double result, error; + gsl_function F; + double *data = (double *) params; + data[5] = phi; + double x[3]; + double r[3]; + double distance; + + /* Compute cartesian position in local SNO coordinates. */ + sphere2cartesian(data[3], data[4], data[5], &x[0], &x[1], &x[2]); + + /* Cartesian coordinates of gamma production offset in earth centered + * coordinates .*/ + double *gamma_offset = data+6; + + /* Vector distance between integration in local coordinates and gamma + * production point .*/ + r[0] = x_sno[0] + x[0] - gamma_offset[0]; + r[1] = x_sno[1] + x[1] - gamma_offset[1]; + r[2] = x_sno[2] + x[2] - gamma_offset[2]; + + distance = norm(r); + + return exp(-distance/decay_length)/(4*M_PI*distance*distance*decay_length)*data[3]*data[3]*sin(data[4]); +} + +/* Integral over theta. */ +double f2(double theta, void *params) +{ + double result, error; + gsl_function F; + double *data = (double *) params; + data[4] = theta; + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f3; + F.params = params; + + gsl_integration_qags(&F, 0, 2*M_PI, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + return result; +} + +/* Integral over r. */ +double f1(double r, void *params) +{ + double result, error; + gsl_function F; + double *data = (double *) params; + data[3] = r; + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f2; + F.params = params; + + gsl_integration_qags(&F, 0, M_PI, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + return result; +} + +double f4_earth(double phi_earth, void *params) +{ + double result, error; + gsl_function F; + double *data = (double *) params; + data[2] = phi_earth; + double gamma_offset[3]; + + /* Compute the cartesian coordinates of the gamma production point in the + * earth centered coordinates. */ + sphere2cartesian(data[0], data[1], data[2], &data[6], &data[7], &data[8]); + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f1; + F.params = params; + + gsl_integration_qags(&F, 0, radius_fiducial, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + /* For now we assume the event rate is constant throughout the earth, so we + * are implicitly assuming that the cross section is pretty small. */ + double flux = dm_velocity*dm_density/mass; + + return dm_cross_section*number_density*flux*result*data[0]*data[0]*sin(data[1]); +} + +double f3_earth(double theta_earth, void *params) +{ + double result, error; + gsl_function F; + double *data = (double *) params; + data[1] = theta_earth; + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f4_earth; + F.params = params; + + gsl_integration_qags(&F, 0, 2*M_PI, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + return result; +} + +double f2_earth(double r_earth, void *params) +{ + double result, error; + double data[9]; + gsl_function F; + data[0] = r_earth; + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f3_earth; + F.params = (void *) data; + + gsl_integration_qags(&F, 0, M_PI, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + return result; +} + +/* Returns the event rate in SNO for a self-destructing dark matter particle + * with a mass of dm_mass, a dark photon decay length of gamma_length, and a + * cross section of cs (in mm^2). */ +double get_event_rate(double dm_mass, double gamma_length, double cs) +{ + double result, error; + gsl_function F; + + gsl_integration_workspace *w = gsl_integration_workspace_alloc(1000); + + F.function = &f2_earth; + F.params = NULL; + + /* For now we just use global variables. */ + mass = dm_mass; + decay_length = gamma_length; + dm_cross_section = cs; + + gsl_integration_qags(&F, 0, radius_earth, epsabs, epsrel, 1000, w, &result, &error); + + gsl_integration_workspace_free(w); + + return result; +} + +int main(int argc, char **argv) +{ + /* Spherical angles for the SNO detector in the earth frame which has z + * along the north and south poles and the x axis passing through Greenwich. + * Should double check this. */ + double sno_theta = deg2rad(latitude + 90.0); + double sno_phi = deg2rad(longitude); + + sphere2cartesian(radius_earth - sno_depth, sno_theta, sno_phi, x_sno, x_sno+1, x_sno+2); + + /* Calculate the event rate for a standard DM candidate with a mass of 1 + * GeV, and a mediator decay length of 1 m. */ + printf("event rate = %.18e Hz\n", get_event_rate(1000, 1000e9, 1e-30)); + + return 0; +} diff --git a/src/db.c b/src/db.c new file mode 100644 index 0000000..9160cbf --- /dev/null +++ b/src/db.c @@ -0,0 +1,256 @@ +#include "db.h" +#include /* for fopen(), etc. */ +#include /* for strerror(), etc. */ +#include /* for strncmp(), etc. */ +#include /* for uint32_t */ +#include /* for atoi() */ +#include "dict.h" + +char db_err[256]; + +static uint64_t dbHash(const void *key) +{ + return dictGenHashFunction(key,8); +} + +static int dbKeyCompare(void *privdata, const void *key1, const void *key2) +{ + return memcmp(key1,key2,8) == 0; +} + +static void dbFree(void *privdata, void *val) +{ + free(val); +} + +static dictType titleDB = { + dbHash, + NULL, + NULL, + dbKeyCompare, + dbFree, + dbFree +}; + +/* Add a bank to the database. + * + * Returns 0 on success, -1 on error. */ +int add_bank(dict *db, const char name[4], uint32_t id, dbval *data) +{ + uint32_t *buf = malloc(sizeof(uint32_t)*2); + + memcpy(buf,name,4); + buf[1] = id; + + if (dictAdd(db, buf, data) != DICT_OK) { + sprintf(db_err, "failed to add bank to database!\n"); + goto err; + } + + return 0; + +err: + free(buf); + return -1; +} + +/* Get a bank from the database. + * + * Returns a pointer to the first value in the bank, or NULL if the bank + * doesn't exist. */ +dbval *get_bank(dict *db, const char name[4], uint32_t id) +{ + uint32_t buf[2]; + + memcpy(buf,name,4); + buf[1] = id; + + return dictFetchValue(db, buf); +} + +/* Function to iterate over the fields in a title bank text file. Works sort of + * like strtok(). Example: + * + * char *item = iter_field(line); + * while (item) { + * // do something with item + * item = iter_field(NULL); + * } + */ +static char *iter_field(char *str) +{ + static char *ptr; + static char buf[81]; + + if (!str) str = ptr; + + ptr = buf; + + while (*str != '\x0' && ptr < (buf + 81)) { + if (ptr == (buf + 2) && buf[0] == '#' && buf[1] == '.') { + ptr = buf; + while (*str != '\x0' && *str++ != '#'); + continue; + } + + if (*str == ' ' || *str == '\n') { + str++; + if (ptr == buf) continue; + break; + } + + *ptr++ = *str++; + } + + if (ptr == buf) return NULL; + + *ptr = '\x0'; + ptr = str; + return buf; +} + +/* Create a new database. */ +dict *db_init(void) +{ + dict *db = dictCreate(&titleDB, NULL); + return db; +} + +/* Free a database. */ +void db_free(dict *db) +{ + dictRelease(db); +} + +/* Load a title bank file into the database `db`. + * + * Returns 0 on success, -1 on error. */ +int load_file(dict *db, const char *filename) +{ + int i, index; + char *item, *s; + char line[256]; + char idh[4]; + uint32_t idn; + int mul; + int64_t value; + double float_value; + dbval *buf; + int buf_size; + + buf_size = 10; + + buf = malloc(buf_size*sizeof(dbval)); + + if (!buf) { + strcpy(db_err,strerror(errno)); + return -1; + } + + FILE *f = fopen(filename, "r"); + + if (!f) { + sprintf(db_err, "unable to open file '%s': %s", filename, strerror(errno)); + return -1; + } + + index = 0; + while (fgets(line, sizeof(line), f)) { + if (!strncmp(line,"*---",4)) { + /* Comment. */ + continue; + } else if (!strncmp(line,"*.--",4)) { + /* Comment. */ + continue; + } else if (!strncmp(line, "*LOG",4)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*PRI",4)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*US",3)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*KI",3)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*ANYWAY",7)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*FIN",4)) { + /* Control line which we don't care about. */ + continue; + } else if (!strncmp(line, "*DO",3)) { + if (index > 0) { + /* Save previous bank. */ + buf = realloc(buf,sizeof(dbval)*index); + + if (add_bank(db, idh, idn, buf) == DICT_ERR) { + sprintf(db_err, "bank '%.4s' already exists in the database", idh); + goto err; + } + + buf_size = 10; + + buf = malloc(buf_size*sizeof(dbval)); + + index = 0; + } + + item = iter_field(line); + item = iter_field(NULL); + strncpy(idh,item,4); + item = iter_field(NULL); + idn = atoi(item); + + continue; + } + + item = iter_field(line); + mul = 1; + while (item) { + if ((s = strchr(item,'*'))) { + *s = '\0'; + mul = atoi(item); + item = s+1; + } + + if (buf_size < (index+1)*sizeof(dbval)) { + buf_size *= 2; + buf = realloc(buf, buf_size*sizeof(dbval)); + } + + if (!strncmp(item,"#x",2)) { + /* Hexadecimal input. */ + value = strtol(item+2,NULL,16); + for (i = 0; i < mul; i++) buf[index++].u32 = value; + } else if (strchr(item,'E') || strchr(item,'.')) { + /* Floating point input. */ + float_value = strtod(item,NULL); + for (i = 0; i < mul; i++) buf[index++].f = float_value; + } else { + /* Assume it's an integer. */ + value = strtol(item,NULL,10); + for (i = 0; i < mul; i++) buf[index++].u32 = value; + } + item = iter_field(NULL); + } + } + + buf = realloc(buf,sizeof(dbval)*index); + + if (add_bank(db, idh, idn, buf) == DICT_ERR) { + sprintf(db_err, "bank '%.4s' already exists in the database", idh); + goto err; + } + + fclose(f); + + return 0; + +err: + + if (buf) free(buf); + fclose(f); + return -1; +} diff --git a/src/db.h b/src/db.h new file mode 100644 index 0000000..fcc76fa --- /dev/null +++ b/src/db.h @@ -0,0 +1,40 @@ +#ifndef DB_H +#define DB_H + +/* This is a library for importing title banks from SNOMAN files. Each bank is + * stored in a dictionary with the bank name and id as the key. For example, to + * load the DQXX files: + * + * dbval *dbval; + * + * db_init(); + * load_file("DQXX_0000010000.dat"); + * dbval = get_bank("DQCH",1); + * db_free(); + * + * The return value of get_bank() is a pointer to the bank values. It's up to + * the caller to know the exact offsets for each value in the bank. Typically, + * SNO database title banks have a database header of 20 words and 10 unused + * words at the beginning of the bank. + * + * Note: Currently only 32 bit unsigned integers and 32 bit floating point + * numbers are supported. I don't think that any of the SNOMAN files have + * doubles. */ + +#include /* for uint32_t */ +#include "dict.h" + +typedef union dbval { + uint32_t u32; + float f; +} dbval; + +extern char db_err[256]; + +dict *db_init(void); +void db_free(dict *db); +int add_bank(dict *db, const char name[4], uint32_t id, dbval *data); +dbval *get_bank(dict *db, const char name[4], uint32_t id); +int load_file(dict *db, const char *filename); + +#endif diff --git a/src/dict.c b/src/dict.c new file mode 100644 index 0000000..42d9459 --- /dev/null +++ b/src/dict.c @@ -0,0 +1,1219 @@ +/* Hash Tables Implementation. + * + * This file implements in memory hash tables with insert/del/replace/find/ + * get-random-element operations. Hash tables will auto resize if needed + * tables of power of two in size are used, collisions are handled by + * chaining. See the source code for more information... :) + * + * Copyright (c) 2006-2012, Salvatore Sanfilippo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Redis nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include "fmacros.h" + +#include +#include +#include +#include +#include +#include +#include + +#include "dict.h" +#include + +/* Using dictEnableResize() / dictDisableResize() we make possible to + * enable/disable resizing of the hash table as needed. This is very important + * for Redis, as we use copy-on-write and don't want to move too much memory + * around when there is a child performing saving operations. + * + * Note that even when dict_can_resize is set to 0, not all resizes are + * prevented: a hash table is still allowed to grow if the ratio between + * the number of elements and the buckets > dict_force_resize_ratio. */ +static int dict_can_resize = 1; +static unsigned int dict_force_resize_ratio = 5; + +/* -------------------------- private prototypes ---------------------------- */ + +static int _dictExpandIfNeeded(dict *ht); +static unsigned long _dictNextPower(unsigned long size); +static long _dictKeyIndex(dict *ht, const void *key, uint64_t hash, dictEntry **existing); +static int _dictInit(dict *ht, dictType *type, void *privDataPtr); + +/* -------------------------- hash functions -------------------------------- */ + +static uint8_t dict_hash_function_seed[16]; + +void dictSetHashFunctionSeed(uint8_t *seed) { + memcpy(dict_hash_function_seed,seed,sizeof(dict_hash_function_seed)); +} + +uint8_t *dictGetHashFunctionSeed(void) { + return dict_hash_function_seed; +} + +/* The default hashing function uses SipHash implementation + * in siphash.c. */ + +uint64_t siphash(const uint8_t *in, const size_t inlen, const uint8_t *k); +uint64_t siphash_nocase(const uint8_t *in, const size_t inlen, const uint8_t *k); + +uint64_t dictGenHashFunction(const void *key, int len) { + return siphash(key,len,dict_hash_function_seed); +} + +uint64_t dictGenCaseHashFunction(const unsigned char *buf, int len) { + return siphash_nocase(buf,len,dict_hash_function_seed); +} + +/* ----------------------------- API implementation ------------------------- */ + +/* Reset a hash table already initialized with ht_init(). + * NOTE: This function should only be called by ht_destroy(). */ +static void _dictReset(dictht *ht) +{ + ht->table = NULL; + ht->size = 0; + ht->sizemask = 0; + ht->used = 0; +} + +/* Create a new hash table */ +dict *dictCreate(dictType *type, + void *privDataPtr) +{ + dict *d = malloc(sizeof(*d)); + + _dictInit(d,type,privDataPtr); + return d; +} + +/* Initialize the hash table */ +int _dictInit(dict *d, dictType *type, + void *privDataPtr) +{ + _dictReset(&d->ht[0]); + _dictReset(&d->ht[1]); + d->type = type; + d->privdata = privDataPtr; + d->rehashidx = -1; + d->iterators = 0; + return DICT_OK; +} + +/* Resize the table to the minimal size that contains all the elements, + * but with the invariant of a USED/BUCKETS ratio near to <= 1 */ +int dictResize(dict *d) +{ + int minimal; + + if (!dict_can_resize || dictIsRehashing(d)) return DICT_ERR; + minimal = d->ht[0].used; + if (minimal < DICT_HT_INITIAL_SIZE) + minimal = DICT_HT_INITIAL_SIZE; + return dictExpand(d, minimal); +} + +/* Expand or create the hash table */ +int dictExpand(dict *d, unsigned long size) +{ + /* the size is invalid if it is smaller than the number of + * elements already inside the hash table */ + if (dictIsRehashing(d) || d->ht[0].used > size) + return DICT_ERR; + + dictht n; /* the new hash table */ + unsigned long realsize = _dictNextPower(size); + + /* Rehashing to the same table size is not useful. */ + if (realsize == d->ht[0].size) return DICT_ERR; + + /* Allocate the new hash table and initialize all pointers to NULL */ + n.size = realsize; + n.sizemask = realsize-1; + n.table = calloc(realsize*sizeof(dictEntry*),1); + n.used = 0; + + /* Is this the first initialization? If so it's not really a rehashing + * we just set the first hash table so that it can accept keys. */ + if (d->ht[0].table == NULL) { + d->ht[0] = n; + return DICT_OK; + } + + /* Prepare a second hash table for incremental rehashing */ + d->ht[1] = n; + d->rehashidx = 0; + return DICT_OK; +} + +/* Performs N steps of incremental rehashing. Returns 1 if there are still + * keys to move from the old to the new hash table, otherwise 0 is returned. + * + * Note that a rehashing step consists in moving a bucket (that may have more + * than one key as we use chaining) from the old to the new hash table, however + * since part of the hash table may be composed of empty spaces, it is not + * guaranteed that this function will rehash even a single bucket, since it + * will visit at max N*10 empty buckets in total, otherwise the amount of + * work it does would be unbound and the function may block for a long time. */ +int dictRehash(dict *d, int n) { + int empty_visits = n*10; /* Max number of empty buckets to visit. */ + if (!dictIsRehashing(d)) return 0; + + while(n-- && d->ht[0].used != 0) { + dictEntry *de, *nextde; + + /* Note that rehashidx can't overflow as we are sure there are more + * elements because ht[0].used != 0 */ + assert(d->ht[0].size > (unsigned long)d->rehashidx); + while(d->ht[0].table[d->rehashidx] == NULL) { + d->rehashidx++; + if (--empty_visits == 0) return 1; + } + de = d->ht[0].table[d->rehashidx]; + /* Move all the keys in this bucket from the old to the new hash HT */ + while(de) { + uint64_t h; + + nextde = de->next; + /* Get the index in the new hash table */ + h = dictHashKey(d, de->key) & d->ht[1].sizemask; + de->next = d->ht[1].table[h]; + d->ht[1].table[h] = de; + d->ht[0].used--; + d->ht[1].used++; + de = nextde; + } + d->ht[0].table[d->rehashidx] = NULL; + d->rehashidx++; + } + + /* Check if we already rehashed the whole table... */ + if (d->ht[0].used == 0) { + free(d->ht[0].table); + d->ht[0] = d->ht[1]; + _dictReset(&d->ht[1]); + d->rehashidx = -1; + return 0; + } + + /* More to rehash... */ + return 1; +} + +long long timeInMilliseconds(void) { + struct timeval tv; + + gettimeofday(&tv,NULL); + return (((long long)tv.tv_sec)*1000)+(tv.tv_usec/1000); +} + +/* Rehash for an amount of time between ms milliseconds and ms+1 milliseconds */ +int dictRehashMilliseconds(dict *d, int ms) { + long long start = timeInMilliseconds(); + int rehashes = 0; + + while(dictRehash(d,100)) { + rehashes += 100; + if (timeInMilliseconds()-start > ms) break; + } + return rehashes; +} + +/* This function performs just a step of rehashing, and only if there are + * no safe iterators bound to our hash table. When we have iterators in the + * middle of a rehashing we can't mess with the two hash tables otherwise + * some element can be missed or duplicated. + * + * This function is called by common lookup or update operations in the + * dictionary so that the hash table automatically migrates from H1 to H2 + * while it is actively used. */ +static void _dictRehashStep(dict *d) { + if (d->iterators == 0) dictRehash(d,1); +} + +/* Add an element to the target hash table */ +int dictAdd(dict *d, void *key, void *val) +{ + dictEntry *entry = dictAddRaw(d,key,NULL); + + if (!entry) return DICT_ERR; + dictSetVal(d, entry, val); + return DICT_OK; +} + +/* Low level add or find: + * This function adds the entry but instead of setting a value returns the + * dictEntry structure to the user, that will make sure to fill the value + * field as he wishes. + * + * This function is also directly exposed to the user API to be called + * mainly in order to store non-pointers inside the hash value, example: + * + * entry = dictAddRaw(dict,mykey,NULL); + * if (entry != NULL) dictSetSignedIntegerVal(entry,1000); + * + * Return values: + * + * If key already exists NULL is returned, and "*existing" is populated + * with the existing entry if existing is not NULL. + * + * If key was added, the hash entry is returned to be manipulated by the caller. + */ +dictEntry *dictAddRaw(dict *d, void *key, dictEntry **existing) +{ + long index; + dictEntry *entry; + dictht *ht; + + if (dictIsRehashing(d)) _dictRehashStep(d); + + /* Get the index of the new element, or -1 if + * the element already exists. */ + if ((index = _dictKeyIndex(d, key, dictHashKey(d,key), existing)) == -1) + return NULL; + + /* Allocate the memory and store the new entry. + * Insert the element in top, with the assumption that in a database + * system it is more likely that recently added entries are accessed + * more frequently. */ + ht = dictIsRehashing(d) ? &d->ht[1] : &d->ht[0]; + entry = malloc(sizeof(*entry)); + entry->next = ht->table[index]; + ht->table[index] = entry; + ht->used++; + + /* Set the hash entry fields. */ + dictSetKey(d, entry, key); + return entry; +} + +/* Add or Overwrite: + * Add an element, discarding the old value if the key already exists. + * Return 1 if the key was added from scratch, 0 if there was already an + * element with such key and dictReplace() just performed a value update + * operation. */ +int dictReplace(dict *d, void *key, void *val) +{ + dictEntry *entry, *existing, auxentry; + + /* Try to add the element. If the key + * does not exists dictAdd will succeed. */ + entry = dictAddRaw(d,key,&existing); + if (entry) { + dictSetVal(d, entry, val); + return 1; + } + + /* Set the new value and free the old one. Note that it is important + * to do that in this order, as the value may just be exactly the same + * as the previous one. In this context, think to reference counting, + * you want to increment (set), and then decrement (free), and not the + * reverse. */ + auxentry = *existing; + dictSetVal(d, existing, val); + dictFreeVal(d, &auxentry); + return 0; +} + +/* Add or Find: + * dictAddOrFind() is simply a version of dictAddRaw() that always + * returns the hash entry of the specified key, even if the key already + * exists and can't be added (in that case the entry of the already + * existing key is returned.) + * + * See dictAddRaw() for more information. */ +dictEntry *dictAddOrFind(dict *d, void *key) { + dictEntry *entry, *existing; + entry = dictAddRaw(d,key,&existing); + return entry ? entry : existing; +} + +/* Search and remove an element. This is an helper function for + * dictDelete() and dictUnlink(), please check the top comment + * of those functions. */ +static dictEntry *dictGenericDelete(dict *d, const void *key, int nofree) { + uint64_t h, idx; + dictEntry *he, *prevHe; + int table; + + if (d->ht[0].used == 0 && d->ht[1].used == 0) return NULL; + + if (dictIsRehashing(d)) _dictRehashStep(d); + h = dictHashKey(d, key); + + for (table = 0; table <= 1; table++) { + idx = h & d->ht[table].sizemask; + he = d->ht[table].table[idx]; + prevHe = NULL; + while(he) { + if (key==he->key || dictCompareKeys(d, key, he->key)) { + /* Unlink the element from the list */ + if (prevHe) + prevHe->next = he->next; + else + d->ht[table].table[idx] = he->next; + if (!nofree) { + dictFreeKey(d, he); + dictFreeVal(d, he); + free(he); + } + d->ht[table].used--; + return he; + } + prevHe = he; + he = he->next; + } + if (!dictIsRehashing(d)) break; + } + return NULL; /* not found */ +} + +/* Remove an element, returning DICT_OK on success or DICT_ERR if the + * element was not found. */ +int dictDelete(dict *ht, const void *key) { + return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; +} + +/* Remove an element from the table, but without actually releasing + * the key, value and dictionary entry. The dictionary entry is returned + * if the element was found (and unlinked from the table), and the user + * should later call `dictFreeUnlinkedEntry()` with it in order to release it. + * Otherwise if the key is not found, NULL is returned. + * + * This function is useful when we want to remove something from the hash + * table but want to use its value before actually deleting the entry. + * Without this function the pattern would require two lookups: + * + * entry = dictFind(...); + * // Do something with entry + * dictDelete(dictionary,entry); + * + * Thanks to this function it is possible to avoid this, and use + * instead: + * + * entry = dictUnlink(dictionary,entry); + * // Do something with entry + * dictFreeUnlinkedEntry(entry); // <- This does not need to lookup again. + */ +dictEntry *dictUnlink(dict *ht, const void *key) { + return dictGenericDelete(ht,key,1); +} + +/* You need to call this function to really free the entry after a call + * to dictUnlink(). It's safe to call this function with 'he' = NULL. */ +void dictFreeUnlinkedEntry(dict *d, dictEntry *he) { + if (he == NULL) return; + dictFreeKey(d, he); + dictFreeVal(d, he); + free(he); +} + +/* Destroy an entire dictionary */ +int _dictClear(dict *d, dictht *ht, void(callback)(void *)) { + unsigned long i; + + /* Free all the elements */ + for (i = 0; i < ht->size && ht->used > 0; i++) { + dictEntry *he, *nextHe; + + if (callback && (i & 65535) == 0) callback(d->privdata); + + if ((he = ht->table[i]) == NULL) continue; + while(he) { + nextHe = he->next; + dictFreeKey(d, he); + dictFreeVal(d, he); + free(he); + ht->used--; + he = nextHe; + } + } + /* Free the table and the allocated cache structure */ + free(ht->table); + /* Re-initialize the table */ + _dictReset(ht); + return DICT_OK; /* never fails */ +} + +/* Clear & Release the hash table */ +void dictRelease(dict *d) +{ + _dictClear(d,&d->ht[0],NULL); + _dictClear(d,&d->ht[1],NULL); + free(d); +} + +dictEntry *dictFind(dict *d, const void *key) +{ + dictEntry *he; + uint64_t h, idx, table; + + if (d->ht[0].used + d->ht[1].used == 0) return NULL; /* dict is empty */ + if (dictIsRehashing(d)) _dictRehashStep(d); + h = dictHashKey(d, key); + for (table = 0; table <= 1; table++) { + idx = h & d->ht[table].sizemask; + he = d->ht[table].table[idx]; + while(he) { + if (key==he->key || dictCompareKeys(d, key, he->key)) + return he; + he = he->next; + } + if (!dictIsRehashing(d)) return NULL; + } + return NULL; +} + +void *dictFetchValue(dict *d, const void *key) { + dictEntry *he; + + he = dictFind(d,key); + return he ? dictGetVal(he) : NULL; +} + +/* A fingerprint is a 64 bit number that represents the state of the dictionary + * at a given time, it's just a few dict properties xored together. + * When an unsafe iterator is initialized, we get the dict fingerprint, and check + * the fingerprint again when the iterator is released. + * If the two fingerprints are different it means that the user of the iterator + * performed forbidden operations against the dictionary while iterating. */ +long long dictFingerprint(dict *d) { + long long integers[6], hash = 0; + int j; + + integers[0] = (long) d->ht[0].table; + integers[1] = d->ht[0].size; + integers[2] = d->ht[0].used; + integers[3] = (long) d->ht[1].table; + integers[4] = d->ht[1].size; + integers[5] = d->ht[1].used; + + /* We hash N integers by summing every successive integer with the integer + * hashing of the previous sum. Basically: + * + * Result = hash(hash(hash(int1)+int2)+int3) ... + * + * This way the same set of integers in a different order will (likely) hash + * to a different number. */ + for (j = 0; j < 6; j++) { + hash += integers[j]; + /* For the hashing step we use Tomas Wang's 64 bit integer hash. */ + hash = (~hash) + (hash << 21); // hash = (hash << 21) - hash - 1; + hash = hash ^ (hash >> 24); + hash = (hash + (hash << 3)) + (hash << 8); // hash * 265 + hash = hash ^ (hash >> 14); + hash = (hash + (hash << 2)) + (hash << 4); // hash * 21 + hash = hash ^ (hash >> 28); + hash = hash + (hash << 31); + } + return hash; +} + +dictIterator *dictGetIterator(dict *d) +{ + dictIterator *iter = malloc(sizeof(*iter)); + + iter->d = d; + iter->table = 0; + iter->index = -1; + iter->safe = 0; + iter->entry = NULL; + iter->nextEntry = NULL; + return iter; +} + +dictIterator *dictGetSafeIterator(dict *d) { + dictIterator *i = dictGetIterator(d); + + i->safe = 1; + return i; +} + +dictEntry *dictNext(dictIterator *iter) +{ + while (1) { + if (iter->entry == NULL) { + dictht *ht = &iter->d->ht[iter->table]; + if (iter->index == -1 && iter->table == 0) { + if (iter->safe) + iter->d->iterators++; + else + iter->fingerprint = dictFingerprint(iter->d); + } + iter->index++; + if (iter->index >= (long) ht->size) { + if (dictIsRehashing(iter->d) && iter->table == 0) { + iter->table++; + iter->index = 0; + ht = &iter->d->ht[1]; + } else { + break; + } + } + iter->entry = ht->table[iter->index]; + } else { + iter->entry = iter->nextEntry; + } + if (iter->entry) { + /* We need to save the 'next' here, the iterator user + * may delete the entry we are returning. */ + iter->nextEntry = iter->entry->next; + return iter->entry; + } + } + return NULL; +} + +void dictReleaseIterator(dictIterator *iter) +{ + if (!(iter->index == -1 && iter->table == 0)) { + if (iter->safe) + iter->d->iterators--; + else + assert(iter->fingerprint == dictFingerprint(iter->d)); + } + free(iter); +} + +/* Return a random entry from the hash table. Useful to + * implement randomized algorithms */ +dictEntry *dictGetRandomKey(dict *d) +{ + dictEntry *he, *orighe; + unsigned long h; + int listlen, listele; + + if (dictSize(d) == 0) return NULL; + if (dictIsRehashing(d)) _dictRehashStep(d); + if (dictIsRehashing(d)) { + do { + /* We are sure there are no elements in indexes from 0 + * to rehashidx-1 */ + h = d->rehashidx + (random() % (d->ht[0].size + + d->ht[1].size - + d->rehashidx)); + he = (h >= d->ht[0].size) ? d->ht[1].table[h - d->ht[0].size] : + d->ht[0].table[h]; + } while(he == NULL); + } else { + do { + h = random() & d->ht[0].sizemask; + he = d->ht[0].table[h]; + } while(he == NULL); + } + + /* Now we found a non empty bucket, but it is a linked + * list and we need to get a random element from the list. + * The only sane way to do so is counting the elements and + * select a random index. */ + listlen = 0; + orighe = he; + while(he) { + he = he->next; + listlen++; + } + listele = random() % listlen; + he = orighe; + while(listele--) he = he->next; + return he; +} + +/* This function samples the dictionary to return a few keys from random + * locations. + * + * It does not guarantee to return all the keys specified in 'count', nor + * it does guarantee to return non-duplicated elements, however it will make + * some effort to do both things. + * + * Returned pointers to hash table entries are stored into 'des' that + * points to an array of dictEntry pointers. The array must have room for + * at least 'count' elements, that is the argument we pass to the function + * to tell how many random elements we need. + * + * The function returns the number of items stored into 'des', that may + * be less than 'count' if the hash table has less than 'count' elements + * inside, or if not enough elements were found in a reasonable amount of + * steps. + * + * Note that this function is not suitable when you need a good distribution + * of the returned items, but only when you need to "sample" a given number + * of continuous elements to run some kind of algorithm or to produce + * statistics. However the function is much faster than dictGetRandomKey() + * at producing N elements. */ +unsigned int dictGetSomeKeys(dict *d, dictEntry **des, unsigned int count) { + unsigned long j; /* internal hash table id, 0 or 1. */ + unsigned long tables; /* 1 or 2 tables? */ + unsigned long stored = 0, maxsizemask; + unsigned long maxsteps; + + if (dictSize(d) < count) count = dictSize(d); + maxsteps = count*10; + + /* Try to do a rehashing work proportional to 'count'. */ + for (j = 0; j < count; j++) { + if (dictIsRehashing(d)) + _dictRehashStep(d); + else + break; + } + + tables = dictIsRehashing(d) ? 2 : 1; + maxsizemask = d->ht[0].sizemask; + if (tables > 1 && maxsizemask < d->ht[1].sizemask) + maxsizemask = d->ht[1].sizemask; + + /* Pick a random point inside the larger table. */ + unsigned long i = random() & maxsizemask; + unsigned long emptylen = 0; /* Continuous empty entries so far. */ + while(stored < count && maxsteps--) { + for (j = 0; j < tables; j++) { + /* Invariant of the dict.c rehashing: up to the indexes already + * visited in ht[0] during the rehashing, there are no populated + * buckets, so we can skip ht[0] for indexes between 0 and idx-1. */ + if (tables == 2 && j == 0 && i < (unsigned long) d->rehashidx) { + /* Moreover, if we are currently out of range in the second + * table, there will be no elements in both tables up to + * the current rehashing index, so we jump if possible. + * (this happens when going from big to small table). */ + if (i >= d->ht[1].size) i = d->rehashidx; + continue; + } + if (i >= d->ht[j].size) continue; /* Out of range for this table. */ + dictEntry *he = d->ht[j].table[i]; + + /* Count contiguous empty buckets, and jump to other + * locations if they reach 'count' (with a minimum of 5). */ + if (he == NULL) { + emptylen++; + if (emptylen >= 5 && emptylen > count) { + i = random() & maxsizemask; + emptylen = 0; + } + } else { + emptylen = 0; + while (he) { + /* Collect all the elements of the buckets found non + * empty while iterating. */ + *des = he; + des++; + he = he->next; + stored++; + if (stored == count) return stored; + } + } + } + i = (i+1) & maxsizemask; + } + return stored; +} + +/* Function to reverse bits. Algorithm from: + * http://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel */ +static unsigned long rev(unsigned long v) { + unsigned long s = 8 * sizeof(v); // bit size; must be power of 2 + unsigned long mask = ~0; + while ((s >>= 1) > 0) { + mask ^= (mask << s); + v = ((v >> s) & mask) | ((v << s) & ~mask); + } + return v; +} + +/* dictScan() is used to iterate over the elements of a dictionary. + * + * Iterating works the following way: + * + * 1) Initially you call the function using a cursor (v) value of 0. + * 2) The function performs one step of the iteration, and returns the + * new cursor value you must use in the next call. + * 3) When the returned cursor is 0, the iteration is complete. + * + * The function guarantees all elements present in the + * dictionary get returned between the start and end of the iteration. + * However it is possible some elements get returned multiple times. + * + * For every element returned, the callback argument 'fn' is + * called with 'privdata' as first argument and the dictionary entry + * 'de' as second argument. + * + * HOW IT WORKS. + * + * The iteration algorithm was designed by Pieter Noordhuis. + * The main idea is to increment a cursor starting from the higher order + * bits. That is, instead of incrementing the cursor normally, the bits + * of the cursor are reversed, then the cursor is incremented, and finally + * the bits are reversed again. + * + * This strategy is needed because the hash table may be resized between + * iteration calls. + * + * dict.c hash tables are always power of two in size, and they + * use chaining, so the position of an element in a given table is given + * by computing the bitwise AND between Hash(key) and SIZE-1 + * (where SIZE-1 is always the mask that is equivalent to taking the rest + * of the division between the Hash of the key and SIZE). + * + * For example if the current hash table size is 16, the mask is + * (in binary) 1111. The position of a key in the hash table will always be + * the last four bits of the hash output, and so forth. + * + * WHAT HAPPENS IF THE TABLE CHANGES IN SIZE? + * + * If the hash table grows, elements can go anywhere in one multiple of + * the old bucket: for example let's say we already iterated with + * a 4 bit cursor 1100 (the mask is 1111 because hash table size = 16). + * + * If the hash table will be resized to 64 elements, then the new mask will + * be 111111. The new buckets you obtain by substituting in ??1100 + * with either 0 or 1 can be targeted only by keys we already visited + * when scanning the bucket 1100 in the smaller hash table. + * + * By iterating the higher bits first, because of the inverted counter, the + * cursor does not need to restart if the table size gets bigger. It will + * continue iterating using cursors without '1100' at the end, and also + * without any other combination of the final 4 bits already explored. + * + * Similarly when the table size shrinks over time, for example going from + * 16 to 8, if a combination of the lower three bits (the mask for size 8 + * is 111) were already completely explored, it would not be visited again + * because we are sure we tried, for example, both 0111 and 1111 (all the + * variations of the higher bit) so we don't need to test it again. + * + * WAIT... YOU HAVE *TWO* TABLES DURING REHASHING! + * + * Yes, this is true, but we always iterate the smaller table first, then + * we test all the expansions of the current cursor into the larger + * table. For example if the current cursor is 101 and we also have a + * larger table of size 16, we also test (0)101 and (1)101 inside the larger + * table. This reduces the problem back to having only one table, where + * the larger one, if it exists, is just an expansion of the smaller one. + * + * LIMITATIONS + * + * This iterator is completely stateless, and this is a huge advantage, + * including no additional memory used. + * + * The disadvantages resulting from this design are: + * + * 1) It is possible we return elements more than once. However this is usually + * easy to deal with in the application level. + * 2) The iterator must return multiple elements per call, as it needs to always + * return all the keys chained in a given bucket, and all the expansions, so + * we are sure we don't miss keys moving during rehashing. + * 3) The reverse cursor is somewhat hard to understand at first, but this + * comment is supposed to help. + */ +unsigned long dictScan(dict *d, + unsigned long v, + dictScanFunction *fn, + dictScanBucketFunction* bucketfn, + void *privdata) +{ + dictht *t0, *t1; + const dictEntry *de, *next; + unsigned long m0, m1; + + if (dictSize(d) == 0) return 0; + + if (!dictIsRehashing(d)) { + t0 = &(d->ht[0]); + m0 = t0->sizemask; + + /* Emit entries at cursor */ + if (bucketfn) bucketfn(privdata, &t0->table[v & m0]); + de = t0->table[v & m0]; + while (de) { + next = de->next; + fn(privdata, de); + de = next; + } + + /* Set unmasked bits so incrementing the reversed cursor + * operates on the masked bits */ + v |= ~m0; + + /* Increment the reverse cursor */ + v = rev(v); + v++; + v = rev(v); + + } else { + t0 = &d->ht[0]; + t1 = &d->ht[1]; + + /* Make sure t0 is the smaller and t1 is the bigger table */ + if (t0->size > t1->size) { + t0 = &d->ht[1]; + t1 = &d->ht[0]; + } + + m0 = t0->sizemask; + m1 = t1->sizemask; + + /* Emit entries at cursor */ + if (bucketfn) bucketfn(privdata, &t0->table[v & m0]); + de = t0->table[v & m0]; + while (de) { + next = de->next; + fn(privdata, de); + de = next; + } + + /* Iterate over indices in larger table that are the expansion + * of the index pointed to by the cursor in the smaller table */ + do { + /* Emit entries at cursor */ + if (bucketfn) bucketfn(privdata, &t1->table[v & m1]); + de = t1->table[v & m1]; + while (de) { + next = de->next; + fn(privdata, de); + de = next; + } + + /* Increment the reverse cursor not covered by the smaller mask.*/ + v |= ~m1; + v = rev(v); + v++; + v = rev(v); + + /* Continue while bits covered by mask difference is non-zero */ + } while (v & (m0 ^ m1)); + } + + return v; +} + +/* ------------------------- private functions ------------------------------ */ + +/* Expand the hash table if needed */ +static int _dictExpandIfNeeded(dict *d) +{ + /* Incremental rehashing already in progress. Return. */ + if (dictIsRehashing(d)) return DICT_OK; + + /* If the hash table is empty expand it to the initial size. */ + if (d->ht[0].size == 0) return dictExpand(d, DICT_HT_INITIAL_SIZE); + + /* If we reached the 1:1 ratio, and we are allowed to resize the hash + * table (global setting) or we should avoid it but the ratio between + * elements/buckets is over the "safe" threshold, we resize doubling + * the number of buckets. */ + if (d->ht[0].used >= d->ht[0].size && + (dict_can_resize || + d->ht[0].used/d->ht[0].size > dict_force_resize_ratio)) + { + return dictExpand(d, d->ht[0].used*2); + } + return DICT_OK; +} + +/* Our hash table capability is a power of two */ +static unsigned long _dictNextPower(unsigned long size) +{ + unsigned long i = DICT_HT_INITIAL_SIZE; + + if (size >= LONG_MAX) return LONG_MAX + 1LU; + while(1) { + if (i >= size) + return i; + i *= 2; + } +} + +/* Returns the index of a free slot that can be populated with + * a hash entry for the given 'key'. + * If the key already exists, -1 is returned + * and the optional output parameter may be filled. + * + * Note that if we are in the process of rehashing the hash table, the + * index is always returned in the context of the second (new) hash table. */ +static long _dictKeyIndex(dict *d, const void *key, uint64_t hash, dictEntry **existing) +{ + unsigned long idx, table; + dictEntry *he; + if (existing) *existing = NULL; + + /* Expand the hash table if needed */ + if (_dictExpandIfNeeded(d) == DICT_ERR) + return -1; + for (table = 0; table <= 1; table++) { + idx = hash & d->ht[table].sizemask; + /* Search if this slot does not already contain the given key */ + he = d->ht[table].table[idx]; + while(he) { + if (key==he->key || dictCompareKeys(d, key, he->key)) { + if (existing) *existing = he; + return -1; + } + he = he->next; + } + if (!dictIsRehashing(d)) break; + } + return idx; +} + +void dictEmpty(dict *d, void(callback)(void*)) { + _dictClear(d,&d->ht[0],callback); + _dictClear(d,&d->ht[1],callback); + d->rehashidx = -1; + d->iterators = 0; +} + +void dictEnableResize(void) { + dict_can_resize = 1; +} + +void dictDisableResize(void) { + dict_can_resize = 0; +} + +uint64_t dictGetHash(dict *d, const void *key) { + return dictHashKey(d, key); +} + +/* Finds the dictEntry reference by using pointer and pre-calculated hash. + * oldkey is a dead pointer and should not be accessed. + * the hash value should be provided using dictGetHash. + * no string / key comparison is performed. + * return value is the reference to the dictEntry if found, or NULL if not found. */ +dictEntry **dictFindEntryRefByPtrAndHash(dict *d, const void *oldptr, uint64_t hash) { + dictEntry *he, **heref; + unsigned long idx, table; + + if (d->ht[0].used + d->ht[1].used == 0) return NULL; /* dict is empty */ + for (table = 0; table <= 1; table++) { + idx = hash & d->ht[table].sizemask; + heref = &d->ht[table].table[idx]; + he = *heref; + while(he) { + if (oldptr==he->key) + return heref; + heref = &he->next; + he = *heref; + } + if (!dictIsRehashing(d)) return NULL; + } + return NULL; +} + +/* ------------------------------- Debugging ---------------------------------*/ + +#define DICT_STATS_VECTLEN 50 +size_t _dictGetStatsHt(char *buf, size_t bufsize, dictht *ht, int tableid) { + unsigned long i, slots = 0, chainlen, maxchainlen = 0; + unsigned long totchainlen = 0; + unsigned long clvector[DICT_STATS_VECTLEN]; + size_t l = 0; + + if (ht->used == 0) { + return snprintf(buf,bufsize, + "No stats available for empty dictionaries\n"); + } + + /* Compute stats. */ + for (i = 0; i < DICT_STATS_VECTLEN; i++) clvector[i] = 0; + for (i = 0; i < ht->size; i++) { + dictEntry *he; + + if (ht->table[i] == NULL) { + clvector[0]++; + continue; + } + slots++; + /* For each hash entry on this slot... */ + chainlen = 0; + he = ht->table[i]; + while(he) { + chainlen++; + he = he->next; + } + clvector[(chainlen < DICT_STATS_VECTLEN) ? chainlen : (DICT_STATS_VECTLEN-1)]++; + if (chainlen > maxchainlen) maxchainlen = chainlen; + totchainlen += chainlen; + } + + /* Generate human readable stats. */ + l += snprintf(buf+l,bufsize-l, + "Hash table %d stats (%s):\n" + " table size: %ld\n" + " number of elements: %ld\n" + " different slots: %ld\n" + " max chain length: %ld\n" + " avg chain length (counted): %.02f\n" + " avg chain length (computed): %.02f\n" + " Chain length distribution:\n", + tableid, (tableid == 0) ? "main hash table" : "rehashing target", + ht->size, ht->used, slots, maxchainlen, + (float)totchainlen/slots, (float)ht->used/slots); + + for (i = 0; i < DICT_STATS_VECTLEN-1; i++) { + if (clvector[i] == 0) continue; + if (l >= bufsize) break; + l += snprintf(buf+l,bufsize-l, + " %s%ld: %ld (%.02f%%)\n", + (i == DICT_STATS_VECTLEN-1)?">= ":"", + i, clvector[i], ((float)clvector[i]/ht->size)*100); + } + + /* Unlike snprintf(), teturn the number of characters actually written. */ + if (bufsize) buf[bufsize-1] = '\0'; + return strlen(buf); +} + +void dictGetStats(char *buf, size_t bufsize, dict *d) { + size_t l; + char *orig_buf = buf; + size_t orig_bufsize = bufsize; + + l = _dictGetStatsHt(buf,bufsize,&d->ht[0],0); + buf += l; + bufsize -= l; + if (dictIsRehashing(d) && bufsize > 0) { + _dictGetStatsHt(buf,bufsize,&d->ht[1],1); + } + /* Make sure there is a NULL term at the end. */ + if (orig_bufsize) orig_buf[orig_bufsize-1] = '\0'; +} + +/* ------------------------------- Benchmark ---------------------------------*/ + +#ifdef DICT_BENCHMARK_MAIN + +#include "sds.h" + +uint64_t hashCallback(const void *key) { + return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); +} + +int compareCallback(void *privdata, const void *key1, const void *key2) { + int l1,l2; + DICT_NOTUSED(privdata); + + l1 = sdslen((sds)key1); + l2 = sdslen((sds)key2); + if (l1 != l2) return 0; + return memcmp(key1, key2, l1) == 0; +} + +void freeCallback(void *privdata, void *val) { + DICT_NOTUSED(privdata); + + sdsfree(val); +} + +dictType BenchmarkDictType = { + hashCallback, + NULL, + NULL, + compareCallback, + freeCallback, + NULL +}; + +#define start_benchmark() start = timeInMilliseconds() +#define end_benchmark(msg) do { \ + elapsed = timeInMilliseconds()-start; \ + printf(msg ": %ld items in %lld ms\n", count, elapsed); \ +} while(0); + +/* dict-benchmark [count] */ +int main(int argc, char **argv) { + long j; + long long start, elapsed; + dict *dict = dictCreate(&BenchmarkDictType,NULL); + long count = 0; + + if (argc == 2) { + count = strtol(argv[1],NULL,10); + } else { + count = 5000000; + } + + start_benchmark(); + for (j = 0; j < count; j++) { + int retval = dictAdd(dict,sdsfromlonglong(j),(void*)j); + assert(retval == DICT_OK); + } + end_benchmark("Inserting"); + assert((long)dictSize(dict) == count); + + /* Wait for rehashing. */ + while (dictIsRehashing(dict)) { + dictRehashMilliseconds(dict,100); + } + + start_benchmark(); + for (j = 0; j < count; j++) { + sds key = sdsfromlonglong(j); + dictEntry *de = dictFind(dict,key); + assert(de != NULL); + sdsfree(key); + } + end_benchmark("Linear access of existing elements"); + + start_benchmark(); + for (j = 0; j < count; j++) { + sds key = sdsfromlonglong(j); + dictEntry *de = dictFind(dict,key); + assert(de != NULL); + sdsfree(key); + } + end_benchmark("Linear access of existing elements (2nd round)"); + + start_benchmark(); + for (j = 0; j < count; j++) { + sds key = sdsfromlonglong(rand() % count); + dictEntry *de = dictFind(dict,key); + assert(de != NULL); + sdsfree(key); + } + end_benchmark("Random access of existing elements"); + + start_benchmark(); + for (j = 0; j < count; j++) { + sds key = sdsfromlonglong(rand() % count); + key[0] = 'X'; + dictEntry *de = dictFind(dict,key); + assert(de == NULL); + sdsfree(key); + } + end_benchmark("Accessing missing"); + + start_benchmark(); + for (j = 0; j < count; j++) { + sds key = sdsfromlonglong(j); + int retval = dictDelete(dict,key); + assert(retval == DICT_OK); + key[0] += 17; /* Change first number to letter. */ + retval = dictAdd(dict,key,(void*)j); + assert(retval == DICT_OK); + } + end_benchmark("Removing and adding"); +} +#endif diff --git a/src/dict.h b/src/dict.h new file mode 100644 index 0000000..826df20 --- /dev/null +++ b/src/dict.h @@ -0,0 +1,190 @@ +/* Hash Tables Implementation. + * + * This file implements in-memory hash tables with insert/del/replace/find/ + * get-random-element operations. Hash tables will auto-resize if needed + * tables of power of two in size are used, collisions are handled by + * chaining. See the source code for more information... :) + * + * Copyright (c) 2006-2012, Salvatore Sanfilippo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Redis nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include +#include + +#ifndef __DICT_H +#define __DICT_H + +#define DICT_OK 0 +#define DICT_ERR 1 + +/* Unused arguments generate annoying warnings... */ +#define DICT_NOTUSED(V) ((void) V) + +typedef struct dictEntry { + void *key; + union { + void *val; + uint64_t u64; + int64_t s64; + double d; + } v; + struct dictEntry *next; +} dictEntry; + +typedef struct dictType { + uint64_t (*hashFunction)(const void *key); + void *(*keyDup)(void *privdata, const void *key); + void *(*valDup)(void *privdata, const void *obj); + int (*keyCompare)(void *privdata, const void *key1, const void *key2); + void (*keyDestructor)(void *privdata, void *key); + void (*valDestructor)(void *privdata, void *obj); +} dictType; + +/* This is our hash table structure. Every dictionary has two of this as we + * implement incremental rehashing, for the old to the new table. */ +typedef struct dictht { + dictEntry **table; + unsigned long size; + unsigned long sizemask; + unsigned long used; +} dictht; + +typedef struct dict { + dictType *type; + void *privdata; + dictht ht[2]; + long rehashidx; /* rehashing not in progress if rehashidx == -1 */ + unsigned long iterators; /* number of iterators currently running */ +} dict; + +/* If safe is set to 1 this is a safe iterator, that means, you can call + * dictAdd, dictFind, and other functions against the dictionary even while + * iterating. Otherwise it is a non safe iterator, and only dictNext() + * should be called while iterating. */ +typedef struct dictIterator { + dict *d; + long index; + int table, safe; + dictEntry *entry, *nextEntry; + /* unsafe iterator fingerprint for misuse detection. */ + long long fingerprint; +} dictIterator; + +typedef void (dictScanFunction)(void *privdata, const dictEntry *de); +typedef void (dictScanBucketFunction)(void *privdata, dictEntry **bucketref); + +/* This is the initial size of every hash table */ +#define DICT_HT_INITIAL_SIZE 4 + +/* ------------------------------- Macros ------------------------------------*/ +#define dictFreeVal(d, entry) \ + if ((d)->type->valDestructor) \ + (d)->type->valDestructor((d)->privdata, (entry)->v.val) + +#define dictSetVal(d, entry, _val_) do { \ + if ((d)->type->valDup) \ + (entry)->v.val = (d)->type->valDup((d)->privdata, _val_); \ + else \ + (entry)->v.val = (_val_); \ +} while(0) + +#define dictSetSignedIntegerVal(entry, _val_) \ + do { (entry)->v.s64 = _val_; } while(0) + +#define dictSetUnsignedIntegerVal(entry, _val_) \ + do { (entry)->v.u64 = _val_; } while(0) + +#define dictSetDoubleVal(entry, _val_) \ + do { (entry)->v.d = _val_; } while(0) + +#define dictFreeKey(d, entry) \ + if ((d)->type->keyDestructor) \ + (d)->type->keyDestructor((d)->privdata, (entry)->key) + +#define dictSetKey(d, entry, _key_) do { \ + if ((d)->type->keyDup) \ + (entry)->key = (d)->type->keyDup((d)->privdata, _key_); \ + else \ + (entry)->key = (_key_); \ +} while(0) + +#define dictCompareKeys(d, key1, key2) \ + (((d)->type->keyCompare) ? \ + (d)->type->keyCompare((d)->privdata, key1, key2) : \ + (key1) == (key2)) + +#define dictHashKey(d, key) (d)->type->hashFunction(key) +#define dictGetKey(he) ((he)->key) +#define dictGetVal(he) ((he)->v.val) +#define dictGetSignedIntegerVal(he) ((he)->v.s64) +#define dictGetUnsignedIntegerVal(he) ((he)->v.u64) +#define dictGetDoubleVal(he) ((he)->v.d) +#define dictSlots(d) ((d)->ht[0].size+(d)->ht[1].size) +#define dictSize(d) ((d)->ht[0].used+(d)->ht[1].used) +#define dictIsRehashing(d) ((d)->rehashidx != -1) + +/* API */ +dict *dictCreate(dictType *type, void *privDataPtr); +int dictExpand(dict *d, unsigned long size); +int dictAdd(dict *d, void *key, void *val); +dictEntry *dictAddRaw(dict *d, void *key, dictEntry **existing); +dictEntry *dictAddOrFind(dict *d, void *key); +int dictReplace(dict *d, void *key, void *val); +int dictDelete(dict *d, const void *key); +dictEntry *dictUnlink(dict *ht, const void *key); +void dictFreeUnlinkedEntry(dict *d, dictEntry *he); +void dictRelease(dict *d); +dictEntry * dictFind(dict *d, const void *key); +void *dictFetchValue(dict *d, const void *key); +int dictResize(dict *d); +dictIterator *dictGetIterator(dict *d); +dictIterator *dictGetSafeIterator(dict *d); +dictEntry *dictNext(dictIterator *iter); +void dictReleaseIterator(dictIterator *iter); +dictEntry *dictGetRandomKey(dict *d); +unsigned int dictGetSomeKeys(dict *d, dictEntry **des, unsigned int count); +void dictGetStats(char *buf, size_t bufsize, dict *d); +uint64_t dictGenHashFunction(const void *key, int len); +uint64_t dictGenCaseHashFunction(const unsigned char *buf, int len); +void dictEmpty(dict *d, void(callback)(void*)); +void dictEnableResize(void); +void dictDisableResize(void); +int dictRehash(dict *d, int n); +int dictRehashMilliseconds(dict *d, int ms); +void dictSetHashFunctionSeed(uint8_t *seed); +uint8_t *dictGetHashFunctionSeed(void); +unsigned long dictScan(dict *d, unsigned long v, dictScanFunction *fn, dictScanBucketFunction *bucketfn, void *privdata); +uint64_t dictGetHash(dict *d, const void *key); +dictEntry **dictFindEntryRefByPtrAndHash(dict *d, const void *oldptr, uint64_t hash); + +/* Hash table types */ +extern dictType dictTypeHeapStringCopyKey; +extern dictType dictTypeHeapStrings; +extern dictType dictTypeHeapStringCopyKeyValue; + +#endif /* __DICT_H */ diff --git a/src/dqxx.c b/src/dqxx.c new file mode 100644 index 0000000..07b6037 --- /dev/null +++ b/src/dqxx.c @@ -0,0 +1,67 @@ +#include "dqxx.h" +#include "db.h" +#include /* for uint32_t */ +#include "event.h" +#include /* for sprintf() */ + +char dqxx_err[256]; + +/* Flag PMTs which are not operational based on the DQCH and DQCR banks. + * + * Returns 0 on success or -1 on error. */ +int dqxx_init(dict *db, event *ev) +{ + int i, j, k, id; + uint32_t *dqch, *dqcr, dqch_word, dqcr_word; + + for (i = 0; i < 19; i++) { + dqch = (uint32_t *) get_bank(db, "DQCH", i); + dqcr = (uint32_t *) get_bank(db, "DQCR", i); + + if (!dqch) { + sprintf(dqxx_err, "failed to load DQCH for crate %i\n", i); + return -1; + } + + if (!dqcr) { + sprintf(dqxx_err, "failed to load DQCR for crate %i\n", i); + return -1; + } + + for (j = 0; j < 16; j++) { + dqcr_word = dqcr[30+KDQCR_TABLE+j]; + + for (k = 0; k < 32; k++) { + id = i*512 + j*32 + k; + dqch_word = dqch[30+KDQCH_TABLE+32*j+k]; + + + if (dqch_word & KDQCH_B_PMT_CABLE) + ev->pmt_hits[id].flags |= 0x2; + else if (dqch_word & KDQCH_B_PMTIC_RESISTOR) + ev->pmt_hits[id].flags |= 0x2; + else if (dqch_word & KDQCH_B_SEQUENCER) + ev->pmt_hits[id].flags |= 0x2; + else if (dqch_word & KDQCH_B_750OHM) + ev->pmt_hits[id].flags |= 0x2; + else if (dqch_word & KDQCH_B_NOT_OP) + ev->pmt_hits[id].flags |= 0x2; + + if (dqcr_word & KDQCR_B_CRATE) + ev->pmt_hits[id].flags |= 0x2; + else if (dqcr_word & KDQCR_B_MB) + ev->pmt_hits[id].flags |= 0x2; + else if (dqcr_word & KDQCR_B_PMTIC) + ev->pmt_hits[id].flags |= 0x2; + else if (dqcr_word & KDQCR_B_DAQ) + ev->pmt_hits[id].flags |= 0x2; + else if (dqcr_word & KDQCR_B_GT) + ev->pmt_hits[id].flags |= 0x2; + else if (dqcr_word & (1 << (12 + k/8))) + ev->pmt_hits[id].flags |= 0x2; + } + } + } + + return 0; +} diff --git a/src/dqxx.h b/src/dqxx.h new file mode 100644 index 0000000..f5ebe1b --- /dev/null +++ b/src/dqxx.h @@ -0,0 +1,68 @@ +#ifndef DQXX_H +#define DQXX_H + +#include "event.h" +#include "dict.h" + +extern char dqxx_err[256]; + +/* bits used in the DQCH title bank. */ + +#define KDQCH_TABLE 10 + +/* PMT cable in (0), out or unknown tube type (1) */ +#define KDQCH_B_PMT_CABLE 0x1 +/* PMTIC channel resistor present (0), not present (1) */ +#define KDQCH_B_PMTIC_RESISTOR 0x2 +/* Channel sequencer enabled (0), disabled (1) */ +#define KDQCH_B_SEQUENCER 0x4 +/* 100ns trigger enabled (0), disabled (1) */ +#define KDQCH_B_100NS 0x8 +/* 20ns trigger enabled (0), disabled (1) */ +#define KDQCH_B_20NS 0x10 +/* 750 Ohm terminator OK (0), blown (1) */ +#define KDQCH_B_750OHM 0x20 +/* Qinj OK (0), malfunctioning i.e. Large/Small/Bad (1) */ +#define KDQCH_B_QINJ 0x40 +/* 100 ns trigger OK (0), dead (1) */ +#define KDQCH_B_N100 0x80 +/* 20 ns trigger OK (0), dead (1) */ +#define KDQCH_B_N20 0x100 +/* operational (0), not operational (1) */ +#define KDQCH_B_NOT_OP 0x200 +/* logical OR of bits 0-9 */ +#define KDQCH_B_BAD 0x400 +/* Bits 16-24 represent the voltage threshold, and bits 24-32 represent the + * voltage threshold zero. */ + +/* bits used in the DQCR title bank. */ + +#define KDQCR_TABLE 10 + +/* Crate present (0), not present (1) */ +#define KDQCR_B_CRATE 0x1 +/* MB present (0), not present (1) */ +#define KDQCR_B_MB 0x2 +/* PMTIC present (0), not present (1) */ +#define KDQCR_B_PMTIC 0x4 +/* DAQ readout (eCPU) online (0), offline (1) */ +#define KDQCR_B_DAQ 0x8 +/* Daughter cards all present (0), 4 bit mask of present DC. + * Channel i associated with DC at bit DC + i/8. */ +#define KDQCR_B_DC 0x10 +/* OR of bits 0-7, 2-15. + * This is deemed to mean 'slot operation', as it is an OR of crate, slot, db, + * etc. operational. */ +#define KDQCR_B_SLOT_OP 0x100 +/* GT mask for crate, i.e. is this crate receiving global triggers. */ +#define KDQCR_B_GT 0x200 +/* Crate on-line (i.e. is being read out by ECPU). */ +#define KDQCR_B_CR_ONLINE 0x400 +/* or of bit 0 (SNO crate present) and bits 16-31 (HV bits). */ +#define KDQCR_B_CR_HV 0x800 +/* HV relays all on (0), 4 bit mask of relays on. */ +#define KDQCR_B_RELAY 0x1000 + +int dqxx_init(dict *db, event *ev); + +#endif diff --git a/src/event.h b/src/event.h new file mode 100644 index 0000000..ecb498d --- /dev/null +++ b/src/event.h @@ -0,0 +1,23 @@ +#ifndef EVENT_H +#define EVENT_H + +#include + +/* Struct to hold all data from a single event used for fitting. */ + +typedef struct pmt_hit { + int hit; + float t; + float qhl; + float qhs; + float qlx; + int flags; +} pmt_hit; + +typedef struct event { + int run; + uint32_t gtid; + pmt_hit pmt_hits[10000]; +} event; + +#endif diff --git a/src/fit.c b/src/fit.c new file mode 100644 index 0000000..b6e441a --- /dev/null +++ b/src/fit.c @@ -0,0 +1,205 @@ +#include "likelihood.h" +#include +#include "zebra.h" +#include "Record_Info.h" +#include "event.h" +#include "zdab_utils.h" +#include +#include +#include "scattering.h" +#include "pmt.h" +#include "sno_charge.h" +#include "db.h" +#include "dqxx.h" + +#define EV_RECORD 0x45562020 // 'EV ' (as written to ZDAB file) + +double nll(const gsl_vector *v, void *params) +{ + double T, theta, phi, t0; + double pos[3], dir[3]; + + T = gsl_vector_get(v,0); + + /* FIXME: should use a minimization algorithm with bounds. */ + if (T < 0) return 1e9; + + pos[0] = gsl_vector_get(v,1); + pos[1] = gsl_vector_get(v,2); + pos[2] = gsl_vector_get(v,3); + + theta = gsl_vector_get(v,4); + phi = gsl_vector_get(v,5); + dir[0] = sin(theta)*cos(phi); + dir[1] = sin(theta)*sin(phi); + dir[2] = cos(theta); + + t0 = gsl_vector_get(v,6); + + return nll_muon((event *) params, T, pos, dir, t0); +} + +int main(int argc, char **argv) +{ + int i; + zebraFile *f; + bank b; + int rv; + PMTBank bpmt; + EVBank bev; + event ev = {0}; + int crate, card, channel; + int id; + + if (argc < 2) { + fprintf(stderr, "usage: fit [filename]\n"); + return 1; + } + + f = zebra_open(argv[1]); + + if (!f) { + fprintf(stderr, "%s\n", zebra_err); + return 1; + } + + load_pmt_info(); + + for (i = 0; i < 10000; i++) { + ev.pmt_hits[i].hit = 0; + ev.pmt_hits[i].flags = 0; + } + + ev.run = -1; + + const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex2; + gsl_multimin_fminimizer *s = NULL; + gsl_vector *ss, *x; + gsl_multimin_function minex_func; + + size_t iter = 0; + int status; + double size; + + /* Starting point */ + x = gsl_vector_alloc(7); + + ss = gsl_vector_alloc(7); + + minex_func.n = 7; + minex_func.f = nll; + minex_func.params = &ev; + + init_interpolation(); + init_charge(); + dict *db = db_init(); + + if (load_file(db, "DQXX_0000010000.dat")) { + fprintf(stderr, "failed to load DQXX_0000010000.dat: %s\n", db_err); + exit(1); + } + + if (dqxx_init(db, &ev)) { + fprintf(stderr, "failed to initialize DQXX bank: %s\n", dqxx_err); + exit(1); + } + + while (1) { + rv = next_bank(f, &b); + + if (rv == -1) { + fprintf(stderr, "error getting bank: %s\n", zebra_err); + goto err; + } else if (rv == 1) { + /* EOF */ + break; + } + + if (b.name == PMT_RECORD) { + unpack_pmt(b.data, &bpmt); + card = bpmt.pin/1024; + crate = (bpmt.pin % 1024)/32; + channel = bpmt.pin % 32; + id = crate*512 + card*32 + channel; + ev.pmt_hits[id].hit = 1; + ev.pmt_hits[id].t = bpmt.pt; + ev.pmt_hits[id].qhl = bpmt.phl; + ev.pmt_hits[id].qhs = bpmt.phs; + ev.pmt_hits[id].qlx = bpmt.plx; + //ev.pmt_hits[id].flags |= bpmt.pn & KPF_DIS; + } else if (b.name == EV_RECORD) { + unpack_ev(b.data, &bev); + if (ev.run != -1) { + if (ev.run != bev.run || ev.gtid != bev.gtr_id) { + /* New event, so we need to fit the old event. */ + iter = 0; + + gsl_vector_set(x,0,1000.0); + gsl_vector_set(x,1,100.0); + gsl_vector_set(x,2,100.0); + gsl_vector_set(x,3,100.0); + gsl_vector_set(x,4,1.57); + gsl_vector_set(x,5,0.0); + gsl_vector_set(x,6,120.0); + + gsl_vector_set(ss,0,10.0); + gsl_vector_set(ss,1,10.0); + gsl_vector_set(ss,2,10.0); + gsl_vector_set(ss,3,10.0); + gsl_vector_set(ss,4,0.1); + gsl_vector_set(ss,5,0.1); + gsl_vector_set(ss,6,1.0); + + s = gsl_multimin_fminimizer_alloc(T, 7); + gsl_multimin_fminimizer_set(s, &minex_func, x, ss); + + do { + iter++; + status = gsl_multimin_fminimizer_iterate(s); + + if (status) break; + + size = gsl_multimin_fminimizer_size(s); + status = gsl_multimin_test_size(size,1e-2); + + if (status == GSL_SUCCESS) { + printf("converged to minimum at\n"); + } + + printf("%5zu %.2g %.2g %.2g %.2g %.2g %.2g %.2g f() = %7.3e size = %.3f\n", + iter, + gsl_vector_get(s->x,0), + gsl_vector_get(s->x,1), + gsl_vector_get(s->x,2), + gsl_vector_get(s->x,3), + gsl_vector_get(s->x,4), + gsl_vector_get(s->x,5), + gsl_vector_get(s->x,6), + s->fval, + size); + } while (status == GSL_CONTINUE && iter < 1000); + + gsl_multimin_fminimizer_free(s); + } + } + ev.run = bev.run; + ev.gtid = bev.gtr_id; + } + } + + free_interpolation(); + + db_free(db); + + gsl_vector_free(x); + gsl_vector_free(ss); + + zebra_close(f); + + return 0; + +err: + + zebra_close(f); + return 1; +} diff --git a/src/fmacros.h b/src/fmacros.h new file mode 100644 index 0000000..6e56c75 --- /dev/null +++ b/src/fmacros.h @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2009-2012, Salvatore Sanfilippo + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of Redis nor the names of its contributors may be used + * to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef _REDIS_FMACRO_H +#define _REDIS_FMACRO_H + +#define _BSD_SOURCE + +#if defined(__linux__) +#define _GNU_SOURCE +#define _DEFAULT_SOURCE +#endif + +#if defined(_AIX) +#define _ALL_SOURCE +#endif + +#if defined(__linux__) || defined(__OpenBSD__) +#define _XOPEN_SOURCE 700 +/* + * On NetBSD, _XOPEN_SOURCE undefines _NETBSD_SOURCE and + * thus hides inet_aton etc. + */ +#elif !defined(__NetBSD__) +#define _XOPEN_SOURCE +#endif + +#if defined(__sun) +#define _POSIX_C_SOURCE 199506L +#endif + +#define _LARGEFILE_SOURCE +#define _FILE_OFFSET_BITS 64 + +#endif diff --git a/src/likelihood.c b/src/likelihood.c new file mode 100644 index 0000000..98a4ad7 --- /dev/null +++ b/src/likelihood.c @@ -0,0 +1,274 @@ +#include "likelihood.h" +#include /* for size_t */ +#include "pmt.h" +#include +#include "muon.h" +#include "misc.h" +#include +#include "sno.h" +#include "vector.h" +#include "event.h" +#include "optics.h" +#include "sno_charge.h" +#include "pdg.h" + +double F(double t, double mu_noise, double mu_indirect, double *mu_direct, size_t n, double *ts, double tmean, double sigma) +{ + /* Returns the CDF for the time distribution of photons at time `t`. */ + size_t i; + double p, mu_total; + + p = mu_noise*t/GTVALID + mu_indirect*(pow(sigma,2)*norm(tmean,t,sigma) + (t-tmean)*norm_cdf(t,tmean,sigma))/(GTVALID-tmean); + + mu_total = mu_noise + mu_indirect; + for (i = 0; i < n; i++) { + p += mu_direct[i]*norm_cdf(t,ts[i],sigma); + mu_total += mu_direct[i]; + } + + return p/mu_total; +} + +double f(double t, double mu_noise, double mu_indirect, double *mu_direct, size_t n, double *ts, double tmean, double sigma) +{ + /* Returns the probability that a photon is detected at time `t`. + * + * The probability distribution is the sum of three different components: + * dark noise, indirect light, and direct light. The dark noise is assumed + * to be constant in time. The direct light is assumed to be a delta + * function around the times `ts`, where each element of `ts` comes from a + * different particle. This assumption is probably valid for particles + * like muons which don't scatter much, and the hope is that it is *good + * enough* for electrons too. The probability distribution for indirect + * light is assumed to be a step function past some time `tmean`. + * + * The probability returned is calculated by taking the sum of these three + * components and convolving it with a gaussian with standard deviation + * `sigma` which should typically be the PMT transit time spread. */ + size_t i; + double p, mu_total; + + p = mu_noise/GTVALID + mu_indirect*norm_cdf(t,tmean,sigma)/(GTVALID-tmean); + + mu_total = mu_noise + mu_indirect; + for (i = 0; i < n; i++) { + p += mu_direct[i]*norm(t,ts[i],sigma); + mu_total += mu_direct[i]; + } + + return p/mu_total; +} + +double log_pt(double t, size_t n, double mu_noise, double mu_indirect, double *mu_direct, size_t n2, double *ts, double tmean, double sigma) +{ + /* Returns the first order statistic for observing a PMT hit at time `t` + * given `n` hits. + * + * The first order statistic is computed from the probability distribution + * above. It's not obvious whether one should take the first order + * statistic before or after convolving with the PMT transit time spread. + * Since at least some of the transit time spread in SNO comes from the + * different transit times across the face of the PMT, it seems better to + * convolve first which is what we do here. In addition, the problem is not + * analytically tractable if you do things the other way around. */ + return log(n) + (n-1)*log1p(-F(t,mu_noise,mu_indirect,mu_direct,n2,ts,tmean,sigma)) + log(f(t,mu_noise,mu_indirect,mu_direct,n2,ts,tmean,sigma)); +} + +static double gsl_muon_time(double x, void *params) +{ + double *params2 = (double *) params; + double T0 = params2[0]; + double pos0[3], dir[3], pos[3], pmt_dir[3]; + int i; + double t; + i = (int) params2[1]; + pos0[0] = params2[2]; + pos0[1] = params2[3]; + pos0[2] = params2[4]; + dir[0] = params2[5]; + dir[1] = params2[6]; + dir[2] = params2[7]; + + pos[0] = pos0[0] + dir[0]*x; + pos[1] = pos0[1] + dir[1]*x; + pos[2] = pos0[2] + dir[2]*x; + + SUB(pmt_dir,pmts[i].pos,pos); + + double distance = NORM(pmt_dir); + + /* FIXME: I just calculate delta assuming 400 nm light. */ + double wavelength0 = 400.0; + double n = get_index(HEAVY_WATER_DENSITY, wavelength0, 10.0); + + t = x/SPEED_OF_LIGHT + distance*n/SPEED_OF_LIGHT; + + return t*get_expected_charge(x, get_T(T0, x, HEAVY_WATER_DENSITY), pos, dir, pmts[i].pos, pmts[i].normal, PMT_RADIUS); +} + +static double gsl_muon_charge(double x, void *params) +{ + double *params2 = (double *) params; + double T0 = params2[0]; + double pos0[3], dir[3], pos[3]; + int i; + i = (int) params2[1]; + pos0[0] = params2[2]; + pos0[1] = params2[3]; + pos0[2] = params2[4]; + dir[0] = params2[5]; + dir[1] = params2[6]; + dir[2] = params2[7]; + + pos[0] = pos0[0] + dir[0]*x; + pos[1] = pos0[1] + dir[1]*x; + pos[2] = pos0[2] + dir[2]*x; + + return get_expected_charge(x, get_T(T0, x, HEAVY_WATER_DENSITY), pos, dir, pmts[i].pos, pmts[i].normal, PMT_RADIUS); +} + +double nll_muon(event *ev, double T, double *pos, double *dir, double t0) +{ + size_t i, j; + double params[8]; + double total_charge; + double logp[MAX_PE], nll, range, pmt_dir[3], R, x, cos_theta, theta, theta_cerenkov; + double tmean = 0.0; + int npmt = 0; + + double mu_direct[MAX_PMTS]; + double ts[MAX_PMTS]; + double mu[MAX_PMTS]; + double mu_noise, mu_indirect; + + gsl_integration_cquad_workspace *w = gsl_integration_cquad_workspace_alloc(100); + double result, error; + + size_t nevals; + + gsl_function F; + F.params = ¶ms; + + range = get_range(T, HEAVY_WATER_DENSITY); + + total_charge = 0.0; + npmt = 0; + for (i = 0; i < MAX_PMTS; i++) { + if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; + + params[0] = T; + params[1] = i; + params[2] = pos[0]; + params[3] = pos[1]; + params[4] = pos[2]; + params[5] = dir[0]; + params[6] = dir[1]; + params[7] = dir[2]; + + /* First, we try to compute the distance along the track where the + * PMT is at the Cerenkov angle. The reason for this is because for + * heavy particles like muons which don't scatter much, the probability + * distribution for getting a photon hit along the track looks kind of + * like a delta function, i.e. the PMT is only hit over a very narrow + * window when the angle between the track direction and the PMT is + * *very* close to the Cerenkov angle (it's not a perfect delta + * function since there is some width due to dispersion). In this case, + * it's possible that the numerical integration completely skips over + * the delta function and so predicts an expected charge of 0. To fix + * this, we compute the integral in two steps, one up to the point + * along the track where the PMT is at the Cerenkov angle and another + * from that point to the end of the track. Since the integration + * routine always samples points near the beginning and end of the + * integral, this allows the routine to correctly compute that the + * integral is non zero. */ + + SUB(pmt_dir,pmts[i].pos,pos); + /* Compute the distance to the PMT. */ + R = NORM(pmt_dir); + normalize(pmt_dir); + + /* Calculate the cosine of the angle between the track direction and the + * vector to the PMT. */ + cos_theta = DOT(dir,pmt_dir); + /* Compute the angle between the track direction and the PMT. */ + theta = acos(cos_theta); + /* Compute the Cerenkov angle. Note that this isn't entirely correct + * since we aren't including the factor of beta, but since the point is + * just to split up the integral, we only need to find a point along + * the track close enough such that the integral isn't completely zero. + */ + theta_cerenkov = acos(1/get_index(WATER_DENSITY,400.0,10.0)); + + /* Now, we compute the distance along the track where the PMT is at the + * Cerenkov angle. */ + x = R*sin(theta_cerenkov-theta)/sin(theta_cerenkov); + + if (x > 0 && x < range) { + /* Split up the integral at the point where the PMT is at the + * Cerenkov angle. */ + F.function = &gsl_muon_charge; + gsl_integration_cquad(&F, 0, x, 0, 1e-2, w, &result, &error, &nevals); + mu_direct[i] = result; + gsl_integration_cquad(&F, x, range, 0, 1e-2, w, &result, &error, &nevals); + mu_direct[i] += result; + + F.function = &gsl_muon_time; + gsl_integration_cquad(&F, 0, x, 0, 1e-2, w, &result, &error, &nevals); + ts[i] = result; + gsl_integration_cquad(&F, x, range, 0, 1e-2, w, &result, &error, &nevals); + ts[i] += result; + } else { + F.function = &gsl_muon_charge; + gsl_integration_cquad(&F, 0, range, 0, 1e-2, w, &result, &error, &nevals); + mu_direct[i] = result; + + F.function = &gsl_muon_time; + gsl_integration_cquad(&F, 0, range, 0, 1e-2, w, &result, &error, &nevals); + ts[i] = result; + } + + total_charge += mu_direct[i]; + + if (mu_direct[i] > 0.001) { + ts[i] /= mu_direct[i]; + ts[i] += t0; + tmean += ts[i]; + npmt += 1; + } else { + ts[i] = 0.0; + } + } + + tmean /= npmt; + + gsl_integration_cquad_workspace_free(w); + + mu_noise = DARK_RATE*GTVALID*1e-9; + mu_indirect = total_charge/CHARGE_FRACTION; + + for (i = 0; i < MAX_PMTS; i++) { + if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; + mu[i] = mu_direct[i] + mu_indirect + mu_noise; + } + + nll = 0; + for (i = 0; i < MAX_PMTS; i++) { + if (ev->pmt_hits[i].flags || (pmts[i].pmt_type != PMT_NORMAL && pmts[i].pmt_type != PMT_OWL)) continue; + + if (ev->pmt_hits[i].hit) { + logp[0] = -INFINITY; + for (j = 1; j < MAX_PE; j++) { + logp[j] = log(pq(ev->pmt_hits[i].qhs,j)) - mu[i] + j*log(mu[i]) - gsl_sf_lnfact(j) + log_pt(ev->pmt_hits[i].t, j, mu_noise, mu_indirect, &mu_direct[i], 1, &ts[i], tmean, 1.5); + } + nll -= logsumexp(logp, sizeof(logp)/sizeof(double)); + } else { + logp[0] = -mu[i]; + for (j = 1; j < MAX_PE; j++) { + logp[j] = log(get_pmiss(j)) - mu[i] + j*log(mu[i]) - gsl_sf_lnfact(j); + } + nll -= logsumexp(logp, sizeof(logp)/sizeof(double)); + } + } + + return nll; +} diff --git a/src/likelihood.h b/src/likelihood.h new file mode 100644 index 0000000..ebfeb97 --- /dev/null +++ b/src/likelihood.h @@ -0,0 +1,16 @@ +#ifndef LIKELIHOOD_H +#define LIKELIHOOD_H + +#include "event.h" + +#define MAX_PE 100 +#define CHARGE_FRACTION 150000.0 +#define DARK_RATE 500.0 +/* Single PE transit time spread (ns). */ +#define PMT_TTS 1.5 +/* Event window (ns) */ +#define GTVALID 400.0 + +double nll_muon(event *ev, double T, double *pos, double *dir, double t0); + +#endif diff --git a/src/misc.c b/src/misc.c new file mode 100644 index 0000000..74c729e --- /dev/null +++ b/src/misc.c @@ -0,0 +1,42 @@ +#include "misc.h" +#include +#include /* for size_t */ + +double logsumexp(double *a, size_t n) +{ + /* Returns the log of the sum of the exponentials of the array `a`. + * + * This function is designed to reduce underflow when the exponentials of + * `a` are very small, for example when computing probabilities. */ + size_t i; + double amax, sum; + + amax = a[0]; + for (i = 0; i < n; i++) { + if (a[i] > amax) amax = a[i]; + } + + sum = 0.0; + + for (i = 0; i < n; i++) { + sum += exp(a[i]-amax); + } + + sum = log(sum); + + return amax + sum; +} + +double norm(double x, double mu, double sigma) +{ + /* Returns the PDF for a gaussian random variable with mean `mu` and + * standard deviation `sigma`. */ + return exp(-pow(x-mu,2)/(2*pow(sigma,2)))/(sqrt(2*M_PI)*sigma); +} + +double norm_cdf(double x, double mu, double sigma) +{ + /* Returns the CDF for a gaussian random variable with mean `mu` and + * standard deviation `sigma`. */ + return erfc(-(x-mu)/(sqrt(2)*sigma))/2.0; +} diff --git a/src/misc.h b/src/misc.h new file mode 100644 index 0000000..bd114aa --- /dev/null +++ b/src/misc.h @@ -0,0 +1,10 @@ +#ifndef MISC_H +#define MISC_H + +#include /* for size_t */ + +double logsumexp(double *a, size_t n); +double norm(double x, double mu, double sigma); +double norm_cdf(double x, double mu, double sigma); + +#endif diff --git a/src/mt19937ar.c b/src/mt19937ar.c new file mode 100755 index 0000000..0dda925 --- /dev/null +++ b/src/mt19937ar.c @@ -0,0 +1,170 @@ +/* + A C-program for MT19937, with initialization improved 2002/1/26. + Coded by Takuji Nishimura and Makoto Matsumoto. + + Before using, initialize the state by using init_genrand(seed) + or init_by_array(init_key, key_length). + + Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + Any feedback is very welcome. + http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html + email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space) +*/ + +/* Period parameters */ +#define N 624 +#define M 397 +#define MATRIX_A 0x9908b0dfUL /* constant vector a */ +#define UPPER_MASK 0x80000000UL /* most significant w-r bits */ +#define LOWER_MASK 0x7fffffffUL /* least significant r bits */ + +static unsigned long mt[N]; /* the array for the state vector */ +static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */ + +/* initializes mt[N] with a seed */ +void init_genrand(unsigned long s) +{ + mt[0]= s & 0xffffffffUL; + for (mti=1; mti> 30)) + mti); + /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */ + /* In the previous versions, MSBs of the seed affect */ + /* only MSBs of the array mt[]. */ + /* 2002/01/09 modified by Makoto Matsumoto */ + mt[mti] &= 0xffffffffUL; + /* for >32 bit machines */ + } +} + +/* initialize by an array with array-length */ +/* init_key is the array for initializing keys */ +/* key_length is its length */ +/* slight change for C++, 2004/2/26 */ +void init_by_array(unsigned long init_key[], int key_length) +{ + int i, j, k; + init_genrand(19650218UL); + i=1; j=0; + k = (N>key_length ? N : key_length); + for (; k; k--) { + mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL)) + + init_key[j] + j; /* non linear */ + mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ + i++; j++; + if (i>=N) { mt[0] = mt[N-1]; i=1; } + if (j>=key_length) j=0; + } + for (k=N-1; k; k--) { + mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL)) + - i; /* non linear */ + mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */ + i++; + if (i>=N) { mt[0] = mt[N-1]; i=1; } + } + + mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ +} + +/* generates a random number on [0,0xffffffff]-interval */ +unsigned long genrand_int32(void) +{ + unsigned long y; + static unsigned long mag01[2]={0x0UL, MATRIX_A}; + /* mag01[x] = x * MATRIX_A for x=0,1 */ + + if (mti >= N) { /* generate N words at one time */ + int kk; + + if (mti == N+1) /* if init_genrand() has not been called, */ + init_genrand(5489UL); /* a default initial seed is used */ + + for (kk=0;kk> 1) ^ mag01[y & 0x1UL]; + } + for (;kk> 1) ^ mag01[y & 0x1UL]; + } + y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK); + mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL]; + + mti = 0; + } + + y = mt[mti++]; + + /* Tempering */ + y ^= (y >> 11); + y ^= (y << 7) & 0x9d2c5680UL; + y ^= (y << 15) & 0xefc60000UL; + y ^= (y >> 18); + + return y; +} + +/* generates a random number on [0,0x7fffffff]-interval */ +long genrand_int31(void) +{ + return (long)(genrand_int32()>>1); +} + +/* generates a random number on [0,1]-real-interval */ +double genrand_real1(void) +{ + return genrand_int32()*(1.0/4294967295.0); + /* divided by 2^32-1 */ +} + +/* generates a random number on [0,1)-real-interval */ +double genrand_real2(void) +{ + return genrand_int32()*(1.0/4294967296.0); + /* divided by 2^32 */ +} + +/* generates a random number on (0,1)-real-interval */ +double genrand_real3(void) +{ + return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0); + /* divided by 2^32 */ +} + +/* generates a random number on [0,1) with 53-bit resolution*/ +double genrand_res53(void) +{ + unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; + return(a*67108864.0+b)*(1.0/9007199254740992.0); +} +/* These real versions are due to Isaku Wada, 2002/01/09 added */ diff --git a/src/mt19937ar.h b/src/mt19937ar.h new file mode 100644 index 0000000..d544847 --- /dev/null +++ b/src/mt19937ar.h @@ -0,0 +1,30 @@ +#ifndef MT19937AR_H +#define MT19937AR_H + +void init_genrand(unsigned long s); + +/* initialize by an array with array-length */ +/* init_key is the array for initializing keys */ +/* key_length is its length */ +/* slight change for C++, 2004/2/26 */ +void init_by_array(unsigned long init_key[], int key_length); + +/* generates a random number on [0,0xffffffff]-interval */ +unsigned long genrand_int32(void); + +/* generates a random number on [0,0x7fffffff]-interval */ +long genrand_int31(void); + +/* generates a random number on [0,1]-real-interval */ +double genrand_real1(void); + +/* generates a random number on [0,1)-real-interval */ +double genrand_real2(void); + +/* generates a random number on (0,1)-real-interval */ +double genrand_real3(void); + +/* generates a random number on [0,1) with 53-bit resolution*/ +double genrand_res53(void) ; + +#endif diff --git a/src/muE_water_liquid.txt b/src/muE_water_liquid.txt new file mode 100644 index 0000000..9cc2a0d --- /dev/null +++ b/src/muE_water_liquid.txt @@ -0,0 +1,157 @@ + Incident particle is a Muon with M = 105.65839 MeV + Index = 276: water (liquid) (H\sub{2}O) + Absorber with = 0.55509, density = 1.000 + Sternheimer coef: a k=m_s x_0 x_1 I[eV] Cbar delta0 + 0.0912 3.4773 0.2400 2.8004 79.7 3.5017 0.00 + (Restricted energy loss for Tcut = 0.05 MeV + Table written with (1X, 1P9E10.3,0PF8.4,f8.5,1pE10.3) post-Born included in pair prod + *** Results below 10 MeV are not dependable *** + T p Ionization brems pair photonuc Radloss dE/dx CSDA Range delta beta dE/dx_R + [MeV] [MeV/c] -----------------------[MeV cm^2/g]------------------------ [g/cm^2] [MeV cm^2/g] + 1.000E+00 1.457E+01 3.048E+00 0.000E+00 0.000E+00 5.009E-05 5.009E-05 6.097E+00 1.863E-03 0.0000 0.13661 4.999E+01 + 1.200E+00 1.597E+01 4.314E+01 0.000E+00 0.000E+00 5.018E-05 5.018E-05 4.314E+01 6.183E-03 0.0000 0.14944 4.314E+01 + 1.400E+00 1.726E+01 3.808E+01 0.000E+00 0.000E+00 5.028E-05 5.028E-05 3.808E+01 1.113E-02 0.0000 0.16119 3.808E+01 + 1.700E+00 1.903E+01 3.252E+01 0.000E+00 0.000E+00 5.042E-05 5.042E-05 3.252E+01 1.968E-02 0.0000 0.17725 3.252E+01 + 2.000E+00 2.066E+01 2.849E+01 0.000E+00 0.000E+00 5.056E-05 5.056E-05 2.849E+01 2.956E-02 0.0000 0.19186 2.849E+01 + 2.500E+00 2.312E+01 2.376E+01 0.000E+00 0.000E+00 5.080E-05 5.080E-05 2.376E+01 4.887E-02 0.0000 0.21376 2.376E+01 + 3.000E+00 2.536E+01 2.049E+01 0.000E+00 0.000E+00 5.103E-05 5.103E-05 2.049E+01 7.161E-02 0.0000 0.23336 2.026E+01 + 3.500E+00 2.742E+01 1.808E+01 0.000E+00 0.000E+00 5.126E-05 5.126E-05 1.808E+01 9.765E-02 0.0000 0.25120 1.768E+01 + 4.000E+00 2.935E+01 1.623E+01 0.000E+00 0.000E+00 5.150E-05 5.150E-05 1.623E+01 1.269E-01 0.0000 0.26763 1.573E+01 + 4.500E+00 3.116E+01 1.476E+01 0.000E+00 0.000E+00 5.173E-05 5.173E-05 1.476E+01 1.592E-01 0.0000 0.28290 1.420E+01 + 5.000E+00 3.289E+01 1.357E+01 0.000E+00 0.000E+00 5.197E-05 5.197E-05 1.357E+01 1.946E-01 0.0000 0.29720 1.296E+01 + 5.500E+00 3.453E+01 1.258E+01 0.000E+00 0.000E+00 5.220E-05 5.220E-05 1.258E+01 2.329E-01 0.0000 0.31066 1.194E+01 + 6.000E+00 3.611E+01 1.174E+01 0.000E+00 0.000E+00 5.244E-05 5.244E-05 1.174E+01 2.741E-01 0.0000 0.32339 1.109E+01 + 7.000E+00 3.909E+01 1.040E+01 0.000E+00 0.000E+00 5.291E-05 5.291E-05 1.040E+01 3.648E-01 0.0000 0.34700 9.731E+00 + 8.000E+00 4.189E+01 9.372E+00 0.000E+00 0.000E+00 5.338E-05 5.338E-05 9.372E+00 4.663E-01 0.0000 0.36854 8.704E+00 + 9.000E+00 4.453E+01 8.561E+00 0.000E+00 0.000E+00 5.385E-05 5.385E-05 8.561E+00 5.781E-01 0.0000 0.38836 7.899E+00 + 1.000E+01 4.704E+01 7.902E+00 0.000E+00 0.000E+00 5.432E-05 5.432E-05 7.902E+00 6.998E-01 0.0000 0.40675 7.251E+00 + 1.200E+01 5.177E+01 6.897E+00 0.000E+00 0.000E+00 5.526E-05 5.526E-05 6.897E+00 9.715E-01 0.0000 0.43998 6.270E+00 + 1.400E+01 5.616E+01 6.166E+00 0.000E+00 0.000E+00 5.620E-05 5.620E-05 6.166E+00 1.279E+00 0.0000 0.46937 5.562E+00 + 1.700E+01 6.230E+01 5.378E+00 0.000E+00 0.000E+00 5.760E-05 5.760E-05 5.378E+00 1.802E+00 0.0000 0.50792 4.806E+00 + 2.000E+01 6.802E+01 4.817E+00 0.000E+00 0.000E+00 5.901E-05 5.901E-05 4.817E+00 2.392E+00 0.0000 0.54129 4.274E+00 + 2.500E+01 7.686E+01 4.172E+00 0.000E+00 0.000E+00 6.136E-05 6.136E-05 4.172E+00 3.513E+00 0.0000 0.58827 3.666E+00 + 3.000E+01 8.509E+01 3.738E+00 0.000E+00 0.000E+00 6.371E-05 6.371E-05 3.738E+00 4.782E+00 0.0000 0.62720 3.259E+00 + 3.500E+01 9.285E+01 3.426E+00 0.000E+00 0.000E+00 6.606E-05 6.606E-05 3.426E+00 6.182E+00 0.0000 0.66011 2.969E+00 + 4.000E+01 1.003E+02 3.192E+00 0.000E+00 0.000E+00 6.841E-05 6.841E-05 3.192E+00 7.696E+00 0.0000 0.68834 2.751E+00 + 4.500E+01 1.074E+02 3.011E+00 0.000E+00 0.000E+00 7.075E-05 7.075E-05 3.011E+00 9.310E+00 0.0000 0.71286 2.583E+00 + 5.000E+01 1.143E+02 2.867E+00 2.619E-07 0.000E+00 7.310E-05 7.336E-05 2.867E+00 1.101E+01 0.0000 0.73434 2.449E+00 + 5.500E+01 1.210E+02 2.750E+00 8.442E-07 0.000E+00 7.545E-05 7.630E-05 2.750E+00 1.279E+01 0.0000 0.75332 2.340E+00 + 6.000E+01 1.276E+02 2.654E+00 1.444E-06 0.000E+00 7.780E-05 7.924E-05 2.654E+00 1.465E+01 0.0000 0.77019 2.251E+00 + 7.000E+01 1.403E+02 2.506E+00 2.695E-06 0.000E+00 8.250E-05 8.519E-05 2.506E+00 1.853E+01 0.0000 0.79887 2.112E+00 + 8.000E+01 1.527E+02 2.398E+00 4.010E-06 0.000E+00 8.719E-05 9.120E-05 2.398E+00 2.261E+01 0.0000 0.82227 2.010E+00 + 9.000E+01 1.647E+02 2.317E+00 5.386E-06 0.000E+00 9.189E-05 9.727E-05 2.317E+00 2.686E+01 0.0000 0.84166 1.933E+00 + 1.000E+02 1.764E+02 2.256E+00 6.819E-06 0.000E+00 9.658E-05 1.034E-04 2.256E+00 3.124E+01 0.0000 0.85794 1.873E+00 + 1.200E+02 1.994E+02 2.165E+00 9.849E-06 0.000E+00 1.060E-04 1.158E-04 2.165E+00 4.030E+01 0.0506 0.88361 1.782E+00 + 1.400E+02 2.218E+02 2.103E+00 1.308E-05 0.000E+00 1.154E-04 1.284E-04 2.104E+00 4.968E+01 0.1214 0.90278 1.719E+00 + 1.700E+02 2.546E+02 2.047E+00 1.826E-05 0.000E+00 1.295E-04 1.477E-04 2.047E+00 6.415E+01 0.2228 0.92363 1.656E+00 + 2.000E+02 2.868E+02 2.015E+00 2.382E-05 0.000E+00 1.435E-04 1.674E-04 2.015E+00 7.894E+01 0.3187 0.93835 1.616E+00 + 2.500E+02 3.396E+02 1.989E+00 3.381E-05 0.000E+00 1.670E-04 2.008E-04 1.989E+00 1.039E+02 0.4674 0.95485 1.575E+00 + 3.000E+02 3.917E+02 1.981E+00 4.459E-05 0.000E+00 1.905E-04 2.351E-04 1.981E+00 1.291E+02 0.6043 0.96548 1.553E+00 + 3.173E+02 4.096E+02 1.981E+00 5.607E-05 0.000E+00 2.140E-04 2.701E-04 1.982E+00 Minimum ionization + 3.500E+02 4.432E+02 1.982E+00 5.607E-05 0.000E+00 2.140E-04 2.701E-04 1.982E+00 1.544E+02 0.7310 0.97274 1.539E+00 + 4.000E+02 4.945E+02 1.987E+00 6.817E-05 0.000E+00 2.375E-04 3.056E-04 1.988E+00 1.796E+02 0.8490 0.97793 1.531E+00 + 4.500E+02 5.455E+02 1.995E+00 8.083E-05 0.000E+00 2.610E-04 3.418E-04 1.996E+00 2.047E+02 0.9596 0.98176 1.526E+00 + 5.000E+02 5.964E+02 2.005E+00 9.400E-05 0.000E+00 2.844E-04 3.784E-04 2.005E+00 2.297E+02 1.0636 0.98467 1.523E+00 + 5.500E+02 6.471E+02 2.015E+00 1.076E-04 0.000E+00 3.079E-04 4.156E-04 2.015E+00 2.545E+02 1.1618 0.98693 1.521E+00 + 6.000E+02 6.977E+02 2.025E+00 1.217E-04 0.000E+00 3.314E-04 4.531E-04 2.025E+00 2.793E+02 1.2549 0.98873 1.521E+00 + 7.000E+02 7.987E+02 2.045E+00 1.510E-04 0.000E+00 3.784E-04 5.294E-04 2.045E+00 3.284E+02 1.4278 0.99136 1.521E+00 + 8.000E+02 8.995E+02 2.064E+00 1.817E-04 0.000E+00 4.253E-04 6.071E-04 2.064E+00 3.771E+02 1.5856 0.99317 1.522E+00 + 9.000E+02 1.000E+03 2.081E+00 2.137E-04 0.000E+00 4.723E-04 6.860E-04 2.082E+00 4.253E+02 1.7309 0.99447 1.523E+00 + 1.000E+03 1.101E+03 2.098E+00 2.468E-04 7.059E-06 5.193E-04 7.731E-04 2.099E+00 4.732E+02 1.8656 0.99542 1.525E+00 + 1.200E+03 1.301E+03 2.128E+00 3.160E-04 5.280E-05 6.132E-04 9.820E-04 2.129E+00 5.678E+02 2.1090 0.99672 1.529E+00 + 1.400E+03 1.502E+03 2.154E+00 3.886E-04 1.049E-04 7.071E-04 1.201E-03 2.156E+00 6.611E+02 2.3244 0.99753 1.532E+00 + 1.700E+03 1.803E+03 2.188E+00 5.031E-04 1.929E-04 8.480E-04 1.544E-03 2.189E+00 7.992E+02 2.6078 0.99829 1.537E+00 + 2.000E+03 2.103E+03 2.216E+00 6.233E-04 2.913E-04 9.922E-04 1.907E-03 2.218E+00 9.353E+02 2.8548 0.99874 1.541E+00 + 2.500E+03 2.604E+03 2.255E+00 8.340E-04 4.742E-04 1.245E-03 2.553E-03 2.258E+00 1.159E+03 3.2073 0.99918 1.545E+00 + 3.000E+03 3.104E+03 2.287E+00 1.056E-03 6.769E-04 1.500E-03 3.232E-03 2.290E+00 1.378E+03 3.5060 0.99942 1.549E+00 + 3.500E+03 3.604E+03 2.313E+00 1.286E-03 8.961E-04 1.757E-03 3.940E-03 2.317E+00 1.595E+03 3.7654 0.99957 1.552E+00 + 4.000E+03 4.104E+03 2.336E+00 1.525E-03 1.130E-03 2.017E-03 4.672E-03 2.341E+00 1.810E+03 3.9949 0.99967 1.554E+00 + 4.500E+03 4.604E+03 2.356E+00 1.771E-03 1.376E-03 2.279E-03 5.425E-03 2.361E+00 2.023E+03 4.2007 0.99974 1.556E+00 + 5.000E+03 5.105E+03 2.373E+00 2.023E-03 1.636E-03 2.537E-03 6.196E-03 2.379E+00 2.234E+03 4.3873 0.99979 1.558E+00 + 5.500E+03 5.605E+03 2.389E+00 2.286E-03 1.917E-03 2.774E-03 6.977E-03 2.396E+00 2.443E+03 4.5581 0.99982 1.559E+00 + 6.000E+03 6.105E+03 2.403E+00 2.555E-03 2.209E-03 3.010E-03 7.774E-03 2.410E+00 2.651E+03 4.7155 0.99985 1.560E+00 + 7.000E+03 7.105E+03 2.427E+00 3.106E-03 2.821E-03 3.480E-03 9.407E-03 2.437E+00 3.064E+03 4.9978 0.99989 1.562E+00 + 8.000E+03 8.105E+03 2.448E+00 3.675E-03 3.466E-03 3.947E-03 1.109E-02 2.459E+00 3.472E+03 5.2454 0.99992 1.563E+00 + 9.000E+03 9.105E+03 2.466E+00 4.259E-03 4.139E-03 4.411E-03 1.281E-02 2.479E+00 3.877E+03 5.4661 0.99993 1.564E+00 + 1.000E+04 1.011E+04 2.482E+00 4.857E-03 4.840E-03 4.871E-03 1.457E-02 2.497E+00 4.279E+03 5.6651 0.99995 1.565E+00 + 1.200E+04 1.211E+04 2.509E+00 6.103E-03 6.349E-03 5.765E-03 1.822E-02 2.527E+00 5.075E+03 6.0129 0.99996 1.566E+00 + 1.400E+04 1.411E+04 2.531E+00 7.392E-03 7.942E-03 6.649E-03 2.198E-02 2.553E+00 5.862E+03 6.3097 0.99997 1.566E+00 + 1.700E+04 1.711E+04 2.559E+00 9.393E-03 1.046E-02 7.957E-03 2.781E-02 2.587E+00 7.030E+03 6.6868 0.99998 1.567E+00 + 2.000E+04 2.011E+04 2.581E+00 1.146E-02 1.312E-02 9.249E-03 3.383E-02 2.615E+00 8.183E+03 7.0048 0.99999 1.568E+00 + 2.500E+04 2.511E+04 2.611E+00 1.506E-02 1.788E-02 1.140E-02 4.434E-02 2.656E+00 1.008E+04 7.4442 0.99999 1.568E+00 + 3.000E+04 3.011E+04 2.635E+00 1.879E-02 2.291E-02 1.352E-02 5.523E-02 2.690E+00 1.195E+04 7.8051 0.99999 1.568E+00 + 3.500E+04 3.511E+04 2.655E+00 2.263E-02 2.816E-02 1.563E-02 6.642E-02 2.721E+00 1.380E+04 8.1112 1.00000 1.568E+00 + 4.000E+04 4.011E+04 2.671E+00 2.657E-02 3.361E-02 1.771E-02 7.789E-02 2.749E+00 1.563E+04 8.3769 1.00000 1.568E+00 + 4.500E+04 4.511E+04 2.686E+00 3.059E-02 3.922E-02 1.978E-02 8.959E-02 2.776E+00 1.744E+04 8.6116 1.00000 1.568E+00 + 5.000E+04 5.011E+04 2.699E+00 3.469E-02 4.498E-02 2.183E-02 1.015E-01 2.801E+00 1.923E+04 8.8217 1.00000 1.568E+00 + 5.500E+04 5.511E+04 2.711E+00 3.884E-02 5.079E-02 2.392E-02 1.135E-01 2.824E+00 2.101E+04 9.0119 1.00000 1.568E+00 + 6.000E+04 6.011E+04 2.721E+00 4.305E-02 5.671E-02 2.600E-02 1.258E-01 2.847E+00 2.277E+04 9.1856 1.00000 1.568E+00 + 7.000E+04 7.011E+04 2.739E+00 5.162E-02 6.885E-02 3.014E-02 1.506E-01 2.890E+00 2.626E+04 9.4934 1.00000 1.568E+00 + 8.000E+04 8.011E+04 2.755E+00 6.039E-02 8.135E-02 3.426E-02 1.760E-01 2.931E+00 2.969E+04 9.7601 1.00000 1.568E+00 + 9.000E+04 9.011E+04 2.769E+00 6.932E-02 9.416E-02 3.835E-02 2.018E-01 2.971E+00 3.308E+04 9.9954 1.00000 1.568E+00 + 1.000E+05 1.001E+05 2.781E+00 7.839E-02 1.073E-01 4.243E-02 2.281E-01 3.009E+00 3.642E+04 10.2058 1.00000 1.568E+00 + 1.200E+05 1.201E+05 2.802E+00 9.681E-02 1.337E-01 5.071E-02 2.813E-01 3.084E+00 4.299E+04 10.5701 1.00000 1.568E+00 + 1.400E+05 1.401E+05 2.820E+00 1.156E-01 1.610E-01 5.897E-02 3.356E-01 3.156E+00 4.940E+04 10.8782 1.00000 1.568E+00 + 1.700E+05 1.701E+05 2.842E+00 1.446E-01 2.031E-01 7.130E-02 4.189E-01 3.261E+00 5.875E+04 11.2662 1.00000 1.568E+00 + 2.000E+05 2.001E+05 2.861E+00 1.741E-01 2.464E-01 8.359E-02 5.041E-01 3.365E+00 6.780E+04 11.5911 1.00000 1.568E+00 + 2.500E+05 2.501E+05 2.886E+00 2.239E-01 3.179E-01 1.044E-01 6.462E-01 3.533E+00 8.230E+04 12.0372 1.00000 1.568E+00 + 3.000E+05 3.001E+05 2.907E+00 2.748E-01 3.913E-01 1.252E-01 7.913E-01 3.698E+00 9.614E+04 12.4017 1.00000 1.568E+00 + 3.500E+05 3.501E+05 2.925E+00 3.266E-01 4.661E-01 1.461E-01 9.388E-01 3.863E+00 1.094E+05 12.7099 1.00000 1.568E+00 + 4.000E+05 4.001E+05 2.940E+00 3.792E-01 5.423E-01 1.669E-01 1.088E+00 4.028E+00 1.220E+05 12.9768 1.00000 1.568E+00 + 4.500E+05 4.501E+05 2.953E+00 4.325E-01 6.195E-01 1.877E-01 1.240E+00 4.193E+00 1.342E+05 13.2124 1.00000 1.568E+00 + 5.000E+05 5.001E+05 2.965E+00 4.865E-01 6.978E-01 2.085E-01 1.393E+00 4.358E+00 1.459E+05 13.4230 1.00000 1.568E+00 + 5.500E+05 5.501E+05 2.976E+00 5.401E-01 7.751E-01 2.298E-01 1.545E+00 4.521E+00 1.572E+05 13.6136 1.00000 1.568E+00 + 6.000E+05 6.001E+05 2.986E+00 5.941E-01 8.531E-01 2.512E-01 1.698E+00 4.684E+00 1.680E+05 13.7876 1.00000 1.568E+00 + 7.000E+05 7.001E+05 3.004E+00 7.033E-01 1.011E+00 2.941E-01 2.008E+00 5.012E+00 1.887E+05 14.0959 1.00000 1.568E+00 + 8.000E+05 8.001E+05 3.019E+00 8.139E-01 1.171E+00 3.371E-01 2.322E+00 5.341E+00 2.080E+05 14.3629 1.00000 1.568E+00 + 9.000E+05 9.001E+05 3.033E+00 9.257E-01 1.332E+00 3.803E-01 2.638E+00 5.671E+00 2.262E+05 14.5984 1.00000 1.568E+00 + 1.000E+06 1.000E+06 3.045E+00 1.039E+00 1.496E+00 4.235E-01 2.958E+00 6.003E+00 2.433E+05 14.8091 1.00000 1.568E+00 + 1.029E+06 1.029E+06 3.048E+00 1.071E+00 1.542E+00 4.362E-01 3.049E+00 6.097E+00 Muon critical energy + 1.200E+06 1.200E+06 3.066E+00 1.263E+00 1.817E+00 5.118E-01 3.592E+00 6.659E+00 2.749E+05 15.1737 1.00000 1.568E+00 + 1.400E+06 1.400E+06 3.084E+00 1.491E+00 2.142E+00 6.006E-01 4.233E+00 7.318E+00 3.036E+05 15.4820 1.00000 1.568E+00 + 1.700E+06 1.700E+06 3.107E+00 1.836E+00 2.634E+00 7.346E-01 5.206E+00 8.313E+00 3.420E+05 15.8703 1.00000 1.568E+00 + 2.000E+06 2.000E+06 3.127E+00 2.186E+00 3.132E+00 8.696E-01 6.188E+00 9.315E+00 3.761E+05 16.1953 1.00000 1.568E+00 + 2.500E+06 2.500E+06 3.153E+00 2.766E+00 3.953E+00 1.100E+00 7.819E+00 1.097E+01 4.255E+05 16.6416 1.00000 1.568E+00 + 3.000E+06 3.000E+06 3.175E+00 3.352E+00 4.781E+00 1.332E+00 9.465E+00 1.264E+01 4.679E+05 17.0062 1.00000 1.568E+00 + 3.500E+06 3.500E+06 3.194E+00 3.942E+00 5.614E+00 1.567E+00 1.112E+01 1.432E+01 5.051E+05 17.3145 1.00000 1.568E+00 + 4.000E+06 4.000E+06 3.210E+00 4.537E+00 6.452E+00 1.803E+00 1.279E+01 1.600E+01 5.381E+05 17.5815 1.00000 1.568E+00 + 4.500E+06 4.500E+06 3.225E+00 5.136E+00 7.295E+00 2.041E+00 1.447E+01 1.770E+01 5.678E+05 17.8171 1.00000 1.568E+00 + 5.000E+06 5.000E+06 3.238E+00 5.738E+00 8.141E+00 2.280E+00 1.616E+01 1.940E+01 5.947E+05 18.0278 1.00000 1.568E+00 + 5.500E+06 5.500E+06 3.249E+00 6.334E+00 8.977E+00 2.524E+00 1.783E+01 2.108E+01 6.195E+05 18.2184 1.00000 1.568E+00 + 6.000E+06 6.000E+06 3.260E+00 6.932E+00 9.816E+00 2.769E+00 1.952E+01 2.278E+01 6.423E+05 18.3925 1.00000 1.568E+00 + 7.000E+06 7.000E+06 3.280E+00 8.132E+00 1.150E+01 3.264E+00 2.289E+01 2.617E+01 6.832E+05 18.7008 1.00000 1.568E+00 + 8.000E+06 8.000E+06 3.296E+00 9.338E+00 1.318E+01 3.764E+00 2.629E+01 2.958E+01 7.191E+05 18.9678 1.00000 1.568E+00 + 9.000E+06 9.000E+06 3.311E+00 1.055E+01 1.488E+01 4.267E+00 2.969E+01 3.301E+01 7.511E+05 19.2034 1.00000 1.568E+00 + 1.000E+07 1.000E+07 3.325E+00 1.177E+01 1.658E+01 4.773E+00 3.312E+01 3.644E+01 7.799E+05 19.4141 1.00000 1.568E+00 + 1.200E+07 1.200E+07 3.348E+00 1.418E+01 1.995E+01 5.808E+00 3.994E+01 4.329E+01 8.302E+05 19.7787 1.00000 1.568E+00 + 1.400E+07 1.400E+07 3.368E+00 1.661E+01 2.333E+01 6.854E+00 4.680E+01 5.017E+01 8.731E+05 20.0870 1.00000 1.568E+00 + 1.700E+07 1.700E+07 3.393E+00 2.027E+01 2.842E+01 8.443E+00 5.713E+01 6.053E+01 9.275E+05 20.4753 1.00000 1.568E+00 + 2.000E+07 2.000E+07 3.414E+00 2.394E+01 3.352E+01 1.005E+01 6.752E+01 7.093E+01 9.732E+05 20.8004 1.00000 1.568E+00 + 2.500E+07 2.500E+07 3.444E+00 3.004E+01 4.199E+01 1.280E+01 8.483E+01 8.828E+01 1.036E+06 21.2467 1.00000 1.568E+00 + 3.000E+07 3.000E+07 3.468E+00 3.615E+01 5.048E+01 1.560E+01 1.022E+02 1.057E+02 1.088E+06 21.6113 1.00000 1.568E+00 + 3.500E+07 3.500E+07 3.489E+00 4.228E+01 5.897E+01 1.843E+01 1.197E+02 1.232E+02 1.132E+06 21.9196 1.00000 1.568E+00 + 4.000E+07 4.000E+07 3.507E+00 4.842E+01 6.748E+01 2.130E+01 1.372E+02 1.407E+02 1.170E+06 22.1867 1.00000 1.568E+00 + 4.500E+07 4.500E+07 3.523E+00 5.458E+01 7.600E+01 2.419E+01 1.548E+02 1.583E+02 1.203E+06 22.4222 1.00000 1.568E+00 + 5.000E+07 5.000E+07 3.537E+00 6.075E+01 8.453E+01 2.710E+01 1.724E+02 1.759E+02 1.233E+06 22.6329 1.00000 1.568E+00 + 5.500E+07 5.500E+07 3.551E+00 6.689E+01 9.303E+01 3.007E+01 1.900E+02 1.935E+02 1.260E+06 22.8236 1.00000 1.568E+00 + 6.000E+07 6.000E+07 3.563E+00 7.303E+01 1.015E+02 3.306E+01 2.076E+02 2.112E+02 1.285E+06 22.9976 1.00000 1.568E+00 + 7.000E+07 7.000E+07 3.584E+00 8.534E+01 1.185E+02 3.909E+01 2.430E+02 2.466E+02 1.329E+06 23.3059 1.00000 1.568E+00 + 8.000E+07 8.000E+07 3.603E+00 9.766E+01 1.356E+02 4.520E+01 2.784E+02 2.820E+02 1.367E+06 23.5730 1.00000 1.568E+00 + 9.000E+07 9.000E+07 3.619E+00 1.100E+02 1.526E+02 5.137E+01 3.140E+02 3.176E+02 1.400E+06 23.8085 1.00000 1.568E+00 + 1.000E+08 1.000E+08 3.634E+00 1.223E+02 1.697E+02 5.759E+01 3.496E+02 3.532E+02 1.430E+06 24.0192 1.00000 1.568E+00 + 1.200E+08 1.200E+08 3.660E+00 1.468E+02 2.036E+02 6.911E+01 4.195E+02 4.232E+02 1.482E+06 24.3839 1.00000 1.568E+00 + 1.400E+08 1.400E+08 3.682E+00 1.713E+02 2.375E+02 8.063E+01 4.894E+02 4.931E+02 1.525E+06 24.6922 1.00000 1.568E+00 + 1.700E+08 1.700E+08 3.710E+00 2.080E+02 2.884E+02 9.790E+01 5.943E+02 5.980E+02 1.580E+06 25.0805 1.00000 1.568E+00 + 2.000E+08 2.000E+08 3.734E+00 2.447E+02 3.393E+02 1.152E+02 6.992E+02 7.029E+02 1.627E+06 25.4055 1.00000 1.568E+00 + 2.500E+08 2.500E+08 3.767E+00 3.059E+02 4.242E+02 1.440E+02 8.740E+02 8.778E+02 1.690E+06 25.8518 1.00000 1.568E+00 + 3.000E+08 3.000E+08 3.794E+00 3.670E+02 5.090E+02 1.728E+02 1.049E+03 1.053E+03 1.742E+06 26.2165 1.00000 1.568E+00 + 3.500E+08 3.500E+08 3.817E+00 4.282E+02 5.938E+02 2.016E+02 1.224E+03 1.227E+03 1.786E+06 26.5248 1.00000 1.568E+00 + 4.000E+08 4.000E+08 3.838E+00 4.894E+02 6.786E+02 2.304E+02 1.398E+03 1.402E+03 1.824E+06 26.7918 1.00000 1.568E+00 + 4.500E+08 4.500E+08 3.855E+00 5.506E+02 7.635E+02 2.592E+02 1.573E+03 1.577E+03 1.858E+06 27.0274 1.00000 1.568E+00 + 5.000E+08 5.000E+08 3.872E+00 6.117E+02 8.483E+02 2.880E+02 1.748E+03 1.752E+03 1.888E+06 27.2381 1.00000 1.568E+00 + 5.500E+08 5.500E+08 3.886E+00 6.729E+02 9.331E+02 3.167E+02 1.923E+03 1.927E+03 1.915E+06 27.4287 1.00000 1.568E+00 + 6.000E+08 6.000E+08 3.900E+00 7.341E+02 1.018E+03 3.455E+02 2.098E+03 2.101E+03 1.940E+06 27.6028 1.00000 1.568E+00 + 7.000E+08 7.000E+08 3.924E+00 8.564E+02 1.188E+03 4.031E+02 2.447E+03 2.451E+03 1.984E+06 27.9111 1.00000 1.568E+00 + 8.000E+08 8.000E+08 3.944E+00 9.788E+02 1.357E+03 4.607E+02 2.797E+03 2.801E+03 2.022E+06 28.1781 1.00000 1.568E+00 + 9.000E+08 9.000E+08 3.963E+00 1.101E+03 1.527E+03 5.183E+02 3.146E+03 3.150E+03 2.056E+06 28.4137 1.00000 1.568E+00 + 1.000E+09 1.000E+09 3.980E+00 1.223E+03 1.697E+03 5.759E+02 3.496E+03 3.500E+03 2.086E+06 28.6244 1.00000 1.568E+00 diff --git a/src/muon.c b/src/muon.c new file mode 100644 index 0000000..4b46769 --- /dev/null +++ b/src/muon.c @@ -0,0 +1,260 @@ +#include +#include +#include +#include +#include +#include +#include +#include "optics.h" +#include "quantum_efficiency.h" +#include "solid_angle.h" +#include "pdg.h" +#include "vector.h" +#include "muon.h" +#include "sno.h" +#include "scattering.h" + +static int initialized = 0; + +static double *x, *dEdx, *csda_range; +static size_t size; + +static gsl_interp_accel *acc_dEdx; +static gsl_spline *spline_dEdx; + +static gsl_interp_accel *acc_range; +static gsl_spline *spline_range; + +static const double MUON_CRITICAL_ENERGY = 1.029e6; + +static int init() +{ + int i, j; + char line[256]; + char *str; + double value; + int n; + + FILE *f = fopen("muE_water_liquid.txt", "r"); + + if (!f) { + fprintf(stderr, "failed to open muE_water_liquid.txt: %s", strerror(errno)); + return -1; + } + + i = 0; + n = 0; + /* For the first pass, we just count how many values there are. */ + while (fgets(line, sizeof(line), f)) { + size_t len = strlen(line); + if (len && (line[len-1] != '\n')) { + fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); + goto err; + } + + i += 1; + + /* Skip the first 10 lines since it's just a header. */ + if (i <= 10) continue; + + if (!len) continue; + else if (line[0] == '#') continue; + else if (strstr(line, "Minimum ionization")) continue; + else if (strstr(line, "Muon critical energy")) continue; + + str = strtok(line," \n"); + + while (str) { + value = strtod(str, NULL); + str = strtok(NULL," \n"); + } + + n += 1; + } + + x = malloc(sizeof(double)*n); + dEdx = malloc(sizeof(double)*n); + csda_range = malloc(sizeof(double)*n); + size = n; + + i = 0; + n = 0; + /* Now, we actually store the values. */ + rewind(f); + while (fgets(line, sizeof(line), f)) { + size_t len = strlen(line); + if (len && (line[len-1] != '\n')) { + fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); + goto err; + } + + i += 1; + + /* Skip the first 10 lines since it's just a header. */ + if (i <= 10) continue; + + if (!len) continue; + else if (line[0] == '#') continue; + else if (strstr(line, "Minimum ionization")) continue; + else if (strstr(line, "Muon critical energy")) continue; + + str = strtok(line," \n"); + + j = 0; + while (str) { + value = strtod(str, NULL); + switch (j) { + case 0: + x[n] = value; + break; + case 7: + dEdx[n] = value; + break; + case 8: + csda_range[n] = value; + break; + } + j += 1; + str = strtok(NULL," \n"); + } + + n += 1; + } + + fclose(f); + + acc_dEdx = gsl_interp_accel_alloc(); + spline_dEdx = gsl_spline_alloc(gsl_interp_linear, size); + gsl_spline_init(spline_dEdx, x, dEdx, size); + + acc_range = gsl_interp_accel_alloc(); + spline_range = gsl_spline_alloc(gsl_interp_linear, size); + gsl_spline_init(spline_range, x, csda_range, size); + + initialized = 1; + + return 0; + +err: + fclose(f); + + return -1; +} + +double get_range(double T, double rho) +{ + /* Returns the approximate range a muon with kinetic energy `T` will travel + * in water before losing all of its energy. This range is interpolated + * based on data from the PDG which uses the continuous slowing down + * approximation. + * + * `T` should be in MeV, and `rho` should be in g/cm^3. + * + * Return value is in cm. + * + * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ + if (!initialized) { + if (init()) { + exit(1); + } + } + + return gsl_spline_eval(spline_range, T, acc_range)/rho; +} + +double get_T(double T0, double x, double rho) +{ + /* Returns the approximate kinetic energy of a muon in water after + * travelling `x` cm with an initial kinetic energy `T`. + * + * `T` should be in MeV, `x` in cm, and `rho` in g/cm^3. + * + * Return value is in MeV. + * + * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ + double a, b, range, T; + + if (!initialized) { + if (init()) { + exit(1); + } + } + + range = get_range(T0, rho); + + /* This comes from Equation 33.42 in the PDG Passage of Particles Through + * Matter article. */ + b = log(1 + T0/MUON_CRITICAL_ENERGY)/range; + /* Now we compute the ionization energy loss from the known range and b. */ + a = b*T0/(exp(b*range)-1.0); + + /* Compute the kinetic energy after travelling a distance `x` in the + * continuous slowing down approximation. */ + T = -a/b + (T0+a/b)*exp(-b*x); + + if (T < 0) return 0; + + return T; +} + +double get_dEdx(double T, double rho) +{ + /* Returns the approximate dE/dx for a muon in water with kinetic energy + * `T`. + * + * `T` should be in MeV and `rho` in g/cm^3. + * + * Return value is in MeV/cm. + * + * See http://pdg.lbl.gov/2018/AtomicNuclearProperties/adndt.pdf. */ + if (!initialized) { + if (init()) { + exit(1); + } + } + + return gsl_spline_eval(spline_dEdx, T, acc_dEdx)/rho; +} + +double get_expected_charge(double x, double T, double *pos, double *dir, double *pmt_pos, double *pmt_normal, double r) +{ + double pmt_dir[3], cos_theta, n, wavelength0, omega, theta0, E, p, beta, z, rho, R; + + z = 1.0; + + SUB(pmt_dir,pmt_pos,pos); + normalize(pmt_dir); + + if (DOT(pmt_dir,pmt_normal) > 0) return 0; + + /* Calculate the cosine of the angle between the track direction and the + * vector to the PMT. */ + cos_theta = DOT(dir,pmt_dir); + + /* Calculate total energy */ + E = T + MUON_MASS; + p = sqrt(E*E - MUON_MASS*MUON_MASS); + beta = p/E; + + omega = get_solid_angle_approx(pos,pmt_pos,pmt_normal,r); + + R = NORM(pos); + + if (R <= AV_RADIUS) { + rho = HEAVY_WATER_DENSITY; + } else { + rho = WATER_DENSITY; + } + + /* FIXME: I just calculate delta assuming 400 nm light. */ + wavelength0 = 400.0; + n = get_index(rho, wavelength0, 10.0); + + if (beta < 1/n) return 0; + + /* FIXME: is this formula valid for muons? */ + theta0 = get_scattering_rms(x,p,beta,z,rho); + + /* FIXME: add angular response and scattering/absorption. */ + return 2*omega*2*M_PI*FINE_STRUCTURE_CONSTANT*z*z*(1-(1/(beta*beta*n*n)))*get_probability(beta, cos_theta, theta0)/(sqrt(2*M_PI)*theta0); +} diff --git a/src/muon.h b/src/muon.h new file mode 100644 index 0000000..a592591 --- /dev/null +++ b/src/muon.h @@ -0,0 +1,11 @@ +#ifndef MUON_H +#define MUON_H + +#define EULER_CONSTANT 0.57721 + +double get_range(double T, double rho); +double get_T(double T0, double x, double rho); +double get_dEdx(double T, double rho); +double get_expected_charge(double x, double T, double *pos, double *dir, double *pmt_pos, double *pmt_normal, double r); + +#endif diff --git a/src/optics.c b/src/optics.c new file mode 100644 index 0000000..23e043d --- /dev/null +++ b/src/optics.c @@ -0,0 +1,33 @@ +#include +#include "optics.h" + +/* From Table 4 in the paper. */ +static double A0 = 0.243905091; +static double A1 = 9.53518094e-3; +static double A2 = -3.64358110e-3; +static double A3 = 2.65666426e-4; +static double A4 = 1.59189325e-3; +static double A5 = 2.45733798e-3; +static double A6 = 0.897478251; +static double A7 = -1.63066183e-2; +static double UV = 0.2292020; +static double IR = 5.432937; + +double get_index(double p, double wavelength, double T) +{ + /* Returns the index of refraction of pure water for a given density, + * wavelength, and temperature. The density should be in units of g/cm^3, + * the wavelength in nm, and the temperature in Celsius. + * + * See "Refractive Index of Water and Steam as a function of Wavelength, + * Temperature, and Density" by Schiebener et al. 1990. */ + /* normalize the temperature and pressure */ + wavelength = wavelength/589.0; + T = (T+273.15)/273.15; + + /* first we compute the right hand side of Equation 7 */ + double c = A0 + A1*p + A2*T + A3*pow(wavelength,2)*T + A4/pow(wavelength,2) + A5/(pow(wavelength,2)-pow(UV,2)) + A6/(pow(wavelength,2)-pow(IR,2)) + A7*pow(p,2); + c *= p; + + return sqrt((2*c+1)/(1-c)); +} diff --git a/src/optics.h b/src/optics.h new file mode 100644 index 0000000..5e39ea1 --- /dev/null +++ b/src/optics.h @@ -0,0 +1,6 @@ +#ifndef OPTICS_H +#define OPTICS_H + +double get_index(double p, double wavelength, double T); + +#endif diff --git a/src/pack2b.c b/src/pack2b.c new file mode 100644 index 0000000..25e154d --- /dev/null +++ b/src/pack2b.c @@ -0,0 +1,319 @@ +#include +#include +#include +#include +#include +#include +#include "pack2b.h" + +/* +** pack754() -- pack a floating point number into IEEE-754 format +*/ +uint64_t pack754(long double f, unsigned bits, unsigned expbits) +{ + long double fnorm; + int shift; + long long sign, exp, significand; + unsigned significandbits = bits - expbits - 1; // -1 for sign bit + + if (f == 0.0) return 0; // get this special case out of the way + + // check sign and begin normalization + if (f < 0) { sign = 1; fnorm = -f; } + else { sign = 0; fnorm = f; } + + // get the normalized form of f and track the exponent + shift = 0; + while(fnorm >= 2.0) { fnorm /= 2.0; shift++; } + while(fnorm < 1.0) { fnorm *= 2.0; shift--; } + fnorm = fnorm - 1.0; + + // calculate the binary form (non-float) of the significand data + significand = fnorm * ((1LL<>significandbits)&((1LL< 0) { result *= 2.0; shift--; } + while(shift < 0) { result /= 2.0; shift++; } + + // sign it + result *= (i>>(bits-1))&1? -1.0: 1.0; + + return result; +} + +/* +** packi16() -- store a 16-bit int into a char buffer (like htons()) +*/ +void packi16(uint8_t *buf, int16_t i) +{ + uint16_t i2 = i; + + *buf++ = i2>>8; *buf++ = i2; +} + +/* +** packi32() -- store a 32-bit int into a char buffer (like htonl()) +*/ +void packi32(uint8_t *buf, int32_t i) +{ + uint32_t i2 = i; + + *buf++ = i2>>24; *buf++ = i2>>16; + *buf++ = i2>>8; *buf++ = i2; +} + +/* +** packi64() -- store a 64-bit int into a char buffer (like htonl()) +*/ +void packi64(uint8_t *buf, int64_t i) +{ + uint64_t i2 = i; + + *buf++ = i2>>56; *buf++ = i2>>48; + *buf++ = i2>>40; *buf++ = i2>>32; + *buf++ = i2>>24; *buf++ = i2>>16; + *buf++ = i2>>8; *buf++ = i2; +} + +/* +** unpacki16() -- unpack a 16-bit int from a char buffer (like ntohs()) +*/ +int16_t unpacki16(uint8_t *buf) +{ + uint16_t i2 = ((uint16_t)buf[0]<<8) | buf[1]; + int16_t i; + + // change unsigned numbers to signed + if (i2 <= 0x7fffu) { i = i2; } + //else { i = -(int16_t)((uint16_t)0xffff - i2 + (uint16_t)1u); } + else { i = -1 - (uint16_t)(0xffffu - i2); } + + return i; +} + +/* +** unpacki32() -- unpack a 32-bit int from a char buffer (like ntohl()) +*/ +int32_t unpacki32(uint8_t *buf) +{ + uint32_t i2 = ((uint32_t)buf[0]<<24) | ((uint32_t)buf[1]<<16) | + ((uint32_t)buf[2]<<8) | buf[3]; + int32_t i; + + // change unsigned numbers to signed + if (i2 <= 0x7fffffffu) { i = i2; } + else { i = -1 - (int32_t)(0xffffffffu - i2); } + + return i; +} + +/* +** unpacki64() -- unpack a 64-bit int from a char buffer (like ntohl()) +*/ +int64_t unpacki64(uint8_t *buf) +{ + uint64_t i2 = ((uint64_t)buf[0]<<56) | ((uint64_t)buf[1]<<48) | + ((uint64_t)buf[2]<<40) | ((uint64_t)buf[3]<<32) | + ((uint64_t)buf[4]<<24) | ((uint64_t)buf[5]<<16) | + ((uint64_t)buf[6]<<8) | buf[7]; + int64_t i; + + // change unsigned numbers to signed + if (i2 <= 0x7fffffffffffffffu) { i = i2; } + else { i = -1 -(int64_t)(0xffffffffffffffffu - i2); } + + return i; +} + +/* +** pack() -- store data dictated by the format string in the buffer +** +** c - 8-bit signed int h - 16-bit signed int +** l - 32-bit signed int f - 32-bit float +** L - 64-bit signed int F - 64-bit float +** s - string (16-bit length is automatically prepended) +*/ +int32_t pack(uint8_t *buf, char *format, ...) +{ + va_list ap; + int16_t h; + int32_t l; + int64_t L; + int8_t c; + float32_t f; + float64_t F; + char *s; + int32_t size = 0, len; + + va_start(ap, format); + + for(; *format != '\0'; format++) { + switch(*format) { + case 'h': // 16-bit + size += 2; + h = (int16_t)va_arg(ap, int); // promoted + packi16(buf, h); + buf += 2; + break; + + case 'l': // 32-bit + size += 4; + l = va_arg(ap, int32_t); + packi32(buf, l); + buf += 4; + break; + + case 'L': // 64-bit + size += 8; + L = va_arg(ap, int64_t); + packi64(buf, L); + buf += 8; + break; + + case 'c': // 8-bit + size += 1; + c = (int8_t)va_arg(ap, int); // promoted + *buf++ = (c>>0)&0xff; + break; + + case 'f': // float + size += 4; + f = (float32_t)va_arg(ap, double); // promoted + l = pack754_32(f); // convert to IEEE 754 + packi32(buf, l); + buf += 4; + break; + + case 'F': // float-64 + size += 8; + F = (float64_t)va_arg(ap, float64_t); + L = pack754_64(F); // convert to IEEE 754 + packi64(buf, L); + buf += 8; + break; + + case 's': // string + s = va_arg(ap, char*); + len = strlen(s); + size += len + 2; + packi16(buf, len); + buf += 2; + memcpy(buf, s, len); + buf += len; + break; + } + } + + va_end(ap); + + return size; +} + +/* +** unpack() -- unpack data dictated by the format string into the buffer +*/ +void unpack(uint8_t *buf, char *format, ...) +{ + va_list ap; + int16_t *h; + int32_t *l; + int64_t *L; + int32_t pf; + int64_t pF; + int8_t *c; + float32_t *f; + float64_t *F; + char *s; + int32_t len, count, maxstrlen=0; + + va_start(ap, format); + + for(; *format != '\0'; format++) { + switch(*format) { + case 'h': // 16-bit + h = va_arg(ap, int16_t*); + *h = unpacki16(buf); + buf += 2; + break; + + case 'l': // 32-bit + l = va_arg(ap, int32_t*); + *l = unpacki32(buf); + buf += 4; + break; + + case 'L': // 64-bit + L = va_arg(ap, int64_t*); + *L = unpacki64(buf); + buf += 8; + break; + + case 'c': // 8-bit + c = va_arg(ap, int8_t*); + if (*buf <= 0x7f) { *c = *buf;} + else { *c = -1 - (uint8_t)(0xffu - *buf); } + buf++; + break; + + case 'f': // float + f = va_arg(ap, float32_t*); + pf = unpacki32(buf); + buf += 4; + *f = unpack754_32(pf); + break; + + case 'F': // float-64 + F = va_arg(ap, float64_t*); + pF = unpacki64(buf); + buf += 8; + *F = unpack754_64(pF); + break; + + case 's': // string + s = va_arg(ap, char*); + len = unpacki16(buf); + buf += 2; + if (maxstrlen > 0 && len > maxstrlen) count = maxstrlen - 1; + else count = len; + memcpy(s, buf, count); + s[count] = '\0'; + buf += len; + break; + + default: + if (isdigit(*format)) { // track max str len + maxstrlen = maxstrlen * 10 + (*format-'0'); + } + } + + if (!isdigit(*format)) maxstrlen = 0; + } + + va_end(ap); +} diff --git a/src/pack2b.h b/src/pack2b.h new file mode 100644 index 0000000..b63807a --- /dev/null +++ b/src/pack2b.h @@ -0,0 +1,27 @@ +#ifndef PACK2B_H +#define PACK2B_H + +#include + +// various bits for floating point types--varies for different architectures +typedef float float32_t; +typedef double float64_t; + +// macros for packing floats and doubles: +#define pack754_32(f) (pack754((f), 32, 8)) +#define pack754_64(f) (pack754((f), 64, 11)) +#define unpack754_32(i) (unpack754((i), 32, 8)) +#define unpack754_64(i) (unpack754((i), 64, 11)) + +uint64_t pack754(long double f, unsigned bits, unsigned expbits); +long double unpack754(uint64_t i, unsigned bits, unsigned expbits); +void packi16(uint8_t *buf, int16_t i); +void packi32(uint8_t *buf, int32_t i); +void packi64(uint8_t *buf, int64_t i); +int16_t unpacki16(uint8_t *buf); +int32_t unpacki32(uint8_t *buf); +int64_t unpacki64(uint8_t *buf); +int32_t pack(uint8_t *buf, char *format, ...); +void unpack(uint8_t *buf, char *format, ...); + +#endif diff --git a/src/pdg.c b/src/pdg.c new file mode 100644 index 0000000..d6a2161 --- /dev/null +++ b/src/pdg.c @@ -0,0 +1,23 @@ +#include "pdg.h" +#include "math.h" + +double get_scattering_rms(double x, double p, double beta, double z, double rho) +{ + /* Returns the RMS width of the scattering angle for a particle deflected + * by many small-angle scatters after a distance `x`. `p` is the momentum + * of the particle in MeV, `beta` is the speed of the particle in units of + * the speed of light, `z` is the charge of the particle in units of the + * electron charge, and `rho` is the density of the water in units of + * g/cm^3. + * + * `x` should be in cm. + * + * Note: I'm not sure if this will work for particles other than electrons + * since the radiation length is only discussed in terms of an + * electromagnetic shower induced by electrons (see Section 33.4.2). + * + * See Equation 33.15 in + * http://pdg.lbl.gov/2018/reviews/rpp2018-rev-passage-particles-matter.pdf. */ + if (x == 0.0) return 0.0; + return (13.6/(beta*p))*z*sqrt(x*rho/RADIATION_LENGTH)*(1+0.038*log((x*z*z)/(RADIATION_LENGTH*beta*beta/rho))); +} diff --git a/src/pdg.h b/src/pdg.h new file mode 100644 index 0000000..ff62f7a --- /dev/null +++ b/src/pdg.h @@ -0,0 +1,12 @@ +#ifndef PDG_H +#define PDG_H + +#define SPEED_OF_LIGHT 29.9792458 /* cm/ns */ +/* From http://pdg.lbl.gov/2017/AtomicNuclearProperties/HTML/water_liquid.html */ +#define RADIATION_LENGTH 36.08 /* g/cm^2 */ +#define MUON_MASS 105.6583745 /* MeV */ +#define FINE_STRUCTURE_CONSTANT 7.297352566417e-3 + +double get_scattering_rms(double x, double p, double beta, double z, double rho); + +#endif diff --git a/src/pmt.c b/src/pmt.c new file mode 100644 index 0000000..d36e302 --- /dev/null +++ b/src/pmt.c @@ -0,0 +1,82 @@ +#include "pmt.h" +#include +#include +#include +#include +#include "vector.h" + +static int initialized = 0; + +pmt pmts[MAX_PMTS]; + +int load_pmt_info() +{ + int i, j; + char line[256]; + char *str; + double value; + int n; + + FILE *f = fopen("pmt.txt", "r"); + + if (!f) { + fprintf(stderr, "failed to open pmt.txt: %s", strerror(errno)); + return -1; + } + + i = 0; + n = 0; + /* For the first pass, we just count how many values there are. */ + while (fgets(line, sizeof(line), f)) { + size_t len = strlen(line); + if (len && (line[len-1] != '\n')) { + fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); + goto err; + } + + i += 1; + + if (!len) continue; + else if (line[0] == '#') continue; + + str = strtok(line," \n"); + + j = 0; + while (str) { + value = strtod(str, NULL); + switch (j) { + case 0: + case 1: + case 2: + pmts[n].pos[j] = value/10.0; + break; + case 3: + case 4: + case 5: + pmts[n].normal[j-3] = value; + break; + case 6: + pmts[n].pmt_type = value; + break; + } + j += 1; + str = strtok(NULL," \n"); + } + + normalize(pmts[n].normal); + + n += 1; + } + + fclose(f); + + initialized = 1; + + return 0; + +err: + fclose(f); + + return -1; +} + diff --git a/src/pmt.h b/src/pmt.h new file mode 100644 index 0000000..fb29f4c --- /dev/null +++ b/src/pmt.h @@ -0,0 +1,32 @@ +#ifndef PMT_H +#define PMT_H + +#define MAX_PMTS 10000 +/* PMT radius (cm). */ +/* FIXME: should be radius of concentrator. */ +#define PMT_RADIUS 10.16 + +/* PMT types from snoman.ratdb. */ +#define PMT_NORMAL 1 +#define PMT_OWL 2 +#define PMT_LG 3 +#define PMT_BUTT 4 +#define PMT_NECK 5 +#define PMT_CALIBRATION 5 +#define PMT_SPARE 10 +#define PMT_INVALID 11 + +typedef struct pmt { + /* PMT position (cm). */ + double pos[3]; + /* PMT normal vector (points from the center of the PMT towards the + * photocathode). */ + double normal[3]; + int pmt_type; +} pmt; + +extern pmt pmts[MAX_PMTS]; + +int load_pmt_info(); + +#endif diff --git a/src/pmt.txt b/src/pmt.txt new file mode 100644 index 0000000..d3b2d7d --- /dev/null +++ b/src/pmt.txt @@ -0,0 +1,9729 @@ +# Format: x, y, z, u, v, w, pmt_type + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 5467.54 63.44 -6406.27 -0.68 -0.07 0.73 1 + 5615.16 266.80 -6251.09 -0.68 -0.07 0.73 1 + 5762.73 469.91 -6095.92 -0.68 -0.07 0.73 1 + 5910.50 673.23 -5940.54 -0.68 -0.07 0.73 1 + 6058.07 876.34 -5785.37 -0.68 -0.07 0.73 1 + 5402.51 349.82 -6438.44 -0.68 -0.07 0.73 1 + 5550.13 553.18 -6283.26 -0.68 -0.07 0.73 1 + 5697.85 756.25 -6127.89 -0.68 -0.07 0.73 1 + 5845.48 959.61 -5972.71 -0.68 -0.07 0.73 1 + 5337.49 636.20 -6470.62 -0.68 -0.07 0.73 1 + 5485.21 839.27 -6315.25 -0.68 -0.07 0.73 1 + 5632.83 1042.63 -6160.06 -0.68 -0.07 0.73 1 + 5272.76 922.26 -6502.76 -0.68 -0.07 0.73 1 + 5420.38 1125.62 -6347.57 -0.68 -0.07 0.73 1 + 6773.45 1974.38 -4600.32 -0.79 -0.17 0.59 1 + 6668.18 1782.97 -4799.28 -0.79 -0.17 0.59 1 + 6563.03 1591.96 -4998.31 -0.79 -0.17 0.59 1 + 6457.81 1400.72 -5197.09 -0.79 -0.17 0.59 1 + 6352.75 1209.37 -5396.18 -0.79 -0.17 0.59 1 + 6847.82 1688.88 -4584.72 -0.79 -0.17 0.59 1 + 6742.59 1497.64 -4783.50 -0.79 -0.17 0.59 1 + 6637.45 1306.63 -4982.53 -0.79 -0.17 0.59 1 + 6532.44 1115.46 -5181.44 -0.79 -0.17 0.59 1 + 6922.23 1403.55 -4568.94 -0.79 -0.17 0.59 1 + 6817.22 1212.37 -4767.84 -0.79 -0.17 0.59 1 + 6712.07 1021.37 -4966.88 -0.79 -0.17 0.59 1 + 6996.86 1118.29 -4553.29 -0.79 -0.17 0.59 1 + 6891.71 927.28 -4752.32 -0.79 -0.17 0.59 1 + 6115.15 1365.98 -5628.27 -0.69 -0.23 0.68 1 + 6023.81 1646.85 -5628.40 -0.69 -0.23 0.68 1 + 5932.61 1927.55 -5628.40 -0.69 -0.23 0.68 1 + 5841.32 2208.59 -5628.35 -0.69 -0.23 0.68 1 + 5750.12 2489.29 -5628.35 -0.69 -0.23 0.68 1 + 5902.83 1452.25 -5814.70 -0.69 -0.23 0.68 1 + 5811.49 1733.12 -5814.83 -0.69 -0.23 0.68 1 + 5720.34 2013.99 -5814.65 -0.69 -0.23 0.68 1 + 5629.00 2294.86 -5814.78 -0.69 -0.23 0.68 1 + 5690.51 1538.52 -6001.12 -0.69 -0.23 0.68 1 + 5599.35 1819.39 -6000.94 -0.69 -0.23 0.68 1 + 5508.02 2100.26 -6001.07 -0.69 -0.23 0.68 1 + 5478.58 1624.86 -6187.36 -0.69 -0.23 0.68 1 + 5387.24 1905.73 -6187.49 -0.69 -0.23 0.68 1 + 6253.24 1566.14 -5409.95 -0.75 -0.24 0.62 1 + 6175.90 2317.15 -5209.20 -0.75 -0.24 0.62 1 + 6267.10 2036.45 -5209.20 -0.75 -0.24 0.62 1 + 6358.44 1755.58 -5209.07 -0.75 -0.24 0.62 1 + 6372.46 2225.80 -5008.63 -0.75 -0.24 0.62 1 + 6463.79 1944.92 -5008.50 -0.75 -0.24 0.62 1 + 6568.80 2134.37 -4807.94 -0.75 -0.24 0.62 1 + 5850.34 2755.55 -5396.23 -0.74 -0.32 0.59 1 + 6047.76 2662.56 -5197.20 -0.74 -0.32 0.59 1 + 6245.25 2569.82 -4998.42 -0.74 -0.32 0.59 1 + 6442.71 2477.01 -4799.21 -0.74 -0.32 0.59 1 + 6640.34 2384.10 -4600.30 -0.74 -0.32 0.59 1 + 5940.44 2937.14 -5181.60 -0.74 -0.32 0.59 1 + 6137.77 2844.50 -4982.52 -0.74 -0.32 0.59 1 + 6335.40 2751.59 -4783.61 -0.74 -0.32 0.59 1 + 6532.68 2658.78 -4584.71 -0.74 -0.32 0.59 1 + 6030.46 3119.08 -4966.93 -0.74 -0.32 0.59 1 + 6227.87 3026.10 -4767.90 -0.74 -0.32 0.59 1 + 6425.16 2933.29 -4569.00 -0.74 -0.32 0.59 1 + 6120.43 3300.85 -4752.44 -0.74 -0.32 0.59 1 + 6317.84 3207.87 -4553.41 -0.74 -0.32 0.59 1 + 7849.25 103.68 -3052.74 -0.92 -0.08 0.39 1 + 7816.30 396.81 -3069.96 -0.92 -0.08 0.39 1 + 7783.67 689.72 -3087.01 -0.92 -0.08 0.39 1 + 7750.72 982.60 -3104.18 -0.92 -0.08 0.39 1 + 7717.99 1275.71 -3121.51 -0.92 -0.08 0.39 1 + 7735.95 225.74 -3296.76 -0.92 -0.08 0.39 1 + 7703.00 518.62 -3313.94 -0.92 -0.08 0.39 1 + 7670.37 811.53 -3330.98 -0.92 -0.08 0.39 1 + 7637.65 1104.39 -3348.26 -0.92 -0.08 0.39 1 + 7622.65 347.55 -3540.74 -0.92 -0.08 0.39 1 + 7589.93 640.41 -3558.01 -0.92 -0.08 0.39 1 + 7557.31 933.32 -3575.05 -0.92 -0.08 0.39 1 + 7509.59 469.34 -3784.81 -0.92 -0.08 0.39 1 + 7476.96 762.25 -3801.85 -0.92 -0.08 0.39 1 + 7852.14 1121.07 -2812.54 -0.95 -0.08 0.30 1 + 8065.33 576.59 -2294.47 -0.95 -0.08 0.30 1 + 7974.13 702.12 -2545.53 -0.95 -0.08 0.30 1 + 7882.83 827.61 -2796.82 -0.95 -0.08 0.30 1 + 8005.05 408.90 -2529.96 -0.95 -0.08 0.30 1 + 7913.75 534.39 -2781.25 -0.95 -0.08 0.30 1 + 7944.53 241.22 -2765.36 -0.95 -0.08 0.30 1 + 7807.98 1444.85 -2808.23 -0.95 -0.16 0.27 1 + 7899.28 1319.36 -2556.93 -0.95 -0.16 0.27 1 + 7990.48 1193.83 -2305.87 -0.95 -0.16 0.27 1 + 8081.78 1068.09 -2054.53 -0.95 -0.16 0.27 1 + 8172.99 942.56 -1803.47 -0.95 -0.16 0.27 1 + 7847.57 1609.96 -2566.46 -0.95 -0.16 0.27 1 + 7938.86 1484.47 -2315.17 -0.95 -0.16 0.27 1 + 8030.07 1358.69 -2064.06 -0.95 -0.16 0.27 1 + 8121.37 1233.21 -1812.77 -0.95 -0.16 0.27 1 + 7887.15 1775.07 -2324.70 -0.95 -0.16 0.27 1 + 7978.36 1649.29 -2073.59 -0.95 -0.16 0.27 1 + 8069.66 1523.81 -1822.30 -0.95 -0.16 0.27 1 + 7926.88 1939.88 -2083.21 -0.95 -0.16 0.27 1 + 8018.18 1814.39 -1831.92 -0.95 -0.16 0.27 1 + 7570.16 1605.03 -3324.93 -0.87 -0.20 0.46 1 + 7422.32 1714.12 -3556.17 -0.87 -0.20 0.46 1 + 7274.81 1823.10 -3787.44 -0.87 -0.20 0.46 1 + 7126.90 1932.01 -4018.85 -0.87 -0.20 0.46 1 + 6979.25 2041.16 -4250.23 -0.87 -0.20 0.46 1 + 7492.68 1427.54 -3547.75 -0.87 -0.20 0.46 1 + 7344.91 1536.28 -3779.04 -0.87 -0.20 0.46 1 + 7197.26 1645.43 -4010.43 -0.87 -0.20 0.46 1 + 7049.55 1754.35 -4241.54 -0.87 -0.20 0.46 1 + 7415.27 1249.69 -3770.62 -0.87 -0.20 0.46 1 + 7267.42 1358.78 -4001.86 -0.87 -0.20 0.46 1 + 7119.71 1467.70 -4232.98 -0.87 -0.20 0.46 1 + 7337.92 1072.03 -3993.31 -0.87 -0.20 0.46 1 + 7190.07 1181.11 -4224.56 -0.87 -0.20 0.46 1 + 7200.45 2805.23 -3332.78 -0.86 -0.28 0.42 1 + 7325.21 2069.62 -3564.34 -0.86 -0.28 0.42 1 + 7234.01 2350.32 -3564.34 -0.86 -0.28 0.42 1 + 7142.66 2631.18 -3564.46 -0.86 -0.28 0.42 1 + 7176.48 2176.52 -3795.99 -0.86 -0.28 0.42 1 + 7085.14 2457.38 -3796.11 -0.86 -0.28 0.42 1 + 7027.56 2283.35 -4027.50 -0.86 -0.28 0.42 1 + 7258.37 2979.33 -3062.35 -0.89 -0.29 0.35 1 + 7349.71 2698.47 -3062.23 -0.89 -0.29 0.35 1 + 7440.92 2417.77 -3062.23 -0.89 -0.29 0.35 1 + 7532.20 2136.72 -3062.28 -0.89 -0.29 0.35 1 + 7623.40 1856.03 -3062.28 -0.89 -0.29 0.35 1 + 7388.03 2866.21 -2822.21 -0.89 -0.29 0.35 1 + 7479.38 2585.34 -2822.09 -0.89 -0.29 0.35 1 + 7570.52 2304.46 -2822.26 -0.89 -0.29 0.35 1 + 7661.86 2023.60 -2822.14 -0.89 -0.29 0.35 1 + 7517.70 2753.08 -2582.07 -0.89 -0.29 0.35 1 + 7608.83 2472.20 -2582.24 -0.89 -0.29 0.35 1 + 7700.18 2191.33 -2582.12 -0.89 -0.29 0.35 1 + 7647.35 2640.01 -2342.37 -0.89 -0.29 0.35 1 + 7738.70 2359.14 -2342.25 -0.89 -0.29 0.35 1 + 6846.14 2450.88 -4250.21 -0.82 -0.35 0.46 1 + 6901.44 2626.06 -4018.78 -0.82 -0.35 0.46 1 + 6957.02 2800.96 -3787.53 -0.82 -0.35 0.46 1 + 7012.25 2975.96 -3556.27 -0.82 -0.35 0.46 1 + 7067.75 3151.21 -3324.98 -0.82 -0.35 0.46 1 + 6734.42 2724.25 -4241.54 -0.82 -0.35 0.46 1 + 6789.65 2899.25 -4010.27 -0.82 -0.35 0.46 1 + 6845.23 3074.15 -3779.03 -0.82 -0.35 0.46 1 + 6900.67 3249.21 -3547.91 -0.82 -0.35 0.46 1 + 6622.63 2997.44 -4233.03 -0.82 -0.35 0.46 1 + 6678.07 3172.50 -4001.91 -0.82 -0.35 0.46 1 + 6733.65 3347.40 -3770.67 -0.82 -0.35 0.46 1 + 6511.05 3270.69 -4224.67 -0.82 -0.35 0.46 1 + 6566.63 3445.59 -3993.42 -0.82 -0.35 0.46 1 + 7166.05 4041.46 -1803.52 -0.86 -0.43 0.27 1 + 7166.15 3886.09 -2054.70 -0.86 -0.43 0.27 1 + 7166.15 3730.93 -2305.76 -0.86 -0.43 0.27 1 + 7166.11 3575.61 -2557.15 -0.86 -0.43 0.27 1 + 7166.11 3420.45 -2808.21 -0.86 -0.43 0.27 1 + 7295.12 3775.89 -1812.97 -0.86 -0.43 0.27 1 + 7295.23 3620.52 -2064.15 -0.86 -0.43 0.27 1 + 7295.08 3465.41 -2315.42 -0.86 -0.43 0.27 1 + 7295.19 3310.04 -2566.60 -0.86 -0.43 0.27 1 + 7424.20 3510.32 -1822.42 -0.86 -0.43 0.27 1 + 7424.06 3355.20 -2073.69 -0.86 -0.43 0.27 1 + 7424.16 3199.84 -2324.87 -0.86 -0.43 0.27 1 + 7553.21 3245.14 -1832.05 -0.86 -0.43 0.27 1 + 7553.31 3089.78 -2083.23 -0.86 -0.43 0.27 1 + 6993.87 3504.46 -3121.41 -0.79 -0.48 0.39 1 + 6848.10 3760.75 -3104.13 -0.79 -0.48 0.39 1 + 6702.62 4016.99 -3087.07 -0.79 -0.48 0.39 1 + 6556.70 4273.32 -3070.00 -0.79 -0.48 0.39 1 + 6411.11 4529.76 -3052.82 -0.79 -0.48 0.39 1 + 6828.27 3595.75 -3348.13 -0.79 -0.48 0.39 1 + 6682.46 3851.88 -3331.17 -0.79 -0.48 0.39 1 + 6536.87 4108.32 -3313.99 -0.79 -0.48 0.39 1 + 6391.20 4364.41 -3296.83 -0.79 -0.48 0.39 1 + 6662.63 3686.88 -3575.17 -0.79 -0.48 0.39 1 + 6516.86 3943.17 -3557.89 -0.79 -0.48 0.39 1 + 6371.19 4199.26 -3540.73 -0.79 -0.48 0.39 1 + 6497.13 3777.97 -3802.00 -0.79 -0.48 0.39 1 + 6351.36 4034.26 -3784.72 -0.79 -0.48 0.39 1 + 7011.46 4174.06 -2059.09 -0.82 -0.49 0.30 1 + 6863.91 3963.72 -2796.85 -0.82 -0.49 0.30 1 + 6863.91 4118.88 -2545.78 -0.82 -0.49 0.30 1 + 6863.80 4274.25 -2294.60 -0.82 -0.49 0.30 1 + 6716.57 4219.17 -2781.18 -0.82 -0.49 0.30 1 + 6716.47 4374.54 -2530.00 -0.82 -0.49 0.30 1 + 6569.05 4474.47 -2765.43 -0.82 -0.49 0.30 1 + 5941.06 3821.79 -4522.73 -0.73 -0.45 0.51 1 + 6078.67 3562.40 -4553.93 -0.73 -0.45 0.51 1 + 6000.23 3992.84 -4289.40 -0.73 -0.45 0.51 1 + 6137.89 3733.65 -4320.90 -0.73 -0.45 0.51 1 + 6275.51 3474.26 -4352.10 -0.73 -0.45 0.51 1 + 6196.82 3904.94 -4087.66 -0.73 -0.45 0.51 1 + 6334.44 3645.55 -4118.86 -0.73 -0.45 0.51 1 + 6411.13 4756.23 -2686.35 -0.79 -0.56 0.25 1 + 6556.76 4656.92 -2449.21 -0.79 -0.56 0.25 1 + 6702.53 4557.62 -2212.48 -0.79 -0.56 0.25 1 + 6848.02 4458.36 -1975.54 -0.79 -0.56 0.25 1 + 6993.83 4359.20 -1738.49 -0.79 -0.56 0.25 1 + 6391.21 4900.55 -2429.33 -0.79 -0.56 0.25 1 + 6536.70 4801.29 -2192.39 -0.79 -0.56 0.25 1 + 6682.47 4701.98 -1955.66 -0.79 -0.56 0.25 1 + 6828.14 4602.87 -1718.82 -0.79 -0.56 0.25 1 + 6371.14 5044.92 -2172.51 -0.79 -0.56 0.25 1 + 6516.81 4945.81 -1935.66 -0.79 -0.56 0.25 1 + 6662.59 4846.50 -1698.94 -0.79 -0.56 0.25 1 + 6351.26 5189.44 -1915.79 -0.79 -0.56 0.25 1 + 6497.03 5090.13 -1679.06 -0.79 -0.56 0.25 1 + 5585.96 4916.74 -3929.72 -0.71 -0.55 0.44 1 + 6135.03 4539.32 -3521.60 -0.71 -0.55 0.44 1 + 5945.90 4608.20 -3737.65 -0.71 -0.55 0.44 1 + 5756.78 4677.08 -3953.71 -0.71 -0.55 0.44 1 + 6116.59 4368.59 -3761.85 -0.71 -0.55 0.44 1 + 5927.46 4437.47 -3977.91 -0.71 -0.55 0.44 1 + 6098.11 4197.66 -4001.81 -0.71 -0.55 0.44 1 + 6153.50 5041.70 -2745.32 -0.71 -0.64 0.29 1 + 5756.66 5628.08 -2415.20 -0.71 -0.64 0.29 1 + 5945.78 5404.04 -2450.21 -0.71 -0.64 0.29 1 + 6134.90 5179.99 -2485.21 -0.71 -0.64 0.29 1 + 5927.50 5542.43 -2189.99 -0.71 -0.64 0.29 1 + 6116.62 5318.38 -2224.99 -0.71 -0.64 0.29 1 + 6098.01 5456.67 -1964.88 -0.71 -0.64 0.29 1 + 5337.02 6056.30 -2378.51 -0.64 -0.73 0.22 1 + 5325.71 6293.78 -1634.22 -0.64 -0.73 0.22 1 + 5403.75 6150.12 -1880.12 -0.64 -0.73 0.22 1 + 5481.78 6006.46 -2126.01 -0.64 -0.73 0.22 1 + 5548.60 6100.16 -1627.82 -0.64 -0.73 0.22 1 + 5626.64 5956.50 -1873.72 -0.64 -0.73 0.22 1 + 5771.25 5906.46 -1621.16 -0.64 -0.73 0.22 1 + 6722.66 840.77 5012.27 -0.81 -0.17 -0.55 1 + 6575.03 1044.13 5167.46 -0.81 -0.17 -0.55 1 + 6871.60 919.77 4769.69 -0.81 -0.17 -0.55 1 + 6723.88 1122.84 4925.06 -0.81 -0.17 -0.55 1 + 6576.25 1326.20 5080.24 -0.81 -0.17 -0.55 1 + 7020.44 998.49 4527.28 -0.81 -0.17 -0.55 1 + 6872.82 1201.85 4682.47 -0.81 -0.17 -0.55 1 + 8314.83 805.75 -1018.60 -0.99 -0.10 0.06 1 + 8344.14 977.66 -257.10 -0.99 -0.10 0.06 1 + 8344.14 822.50 -508.16 -0.99 -0.10 0.06 1 + 8344.13 667.10 -759.32 -0.99 -0.10 0.06 1 + 8373.70 683.94 -249.11 -0.99 -0.10 0.06 1 + 8373.69 528.54 -500.27 -0.99 -0.10 0.06 1 + 8403.01 390.23 -241.13 -0.99 -0.10 0.06 1 + 8294.32 1462.97 51.38 -0.99 -0.10 -0.03 1 + 8324.96 1169.27 57.22 -0.99 -0.10 -0.03 1 + 8355.85 875.79 63.17 -0.99 -0.10 -0.03 1 + 8386.47 582.00 69.24 -0.99 -0.10 -0.03 1 + 8417.36 288.28 75.09 -0.99 -0.10 -0.03 1 + 8302.12 1320.41 309.78 -0.99 -0.10 -0.03 1 + 8332.75 1026.84 315.96 -0.99 -0.10 -0.03 1 + 8363.64 733.13 321.81 -0.99 -0.10 -0.03 1 + 8394.28 439.67 327.74 -0.99 -0.10 -0.03 1 + 8309.91 1177.98 568.52 -0.99 -0.10 -0.03 1 + 8340.54 884.28 574.36 -0.99 -0.10 -0.03 1 + 8371.18 590.81 580.30 -0.99 -0.10 -0.03 1 + 8317.71 1035.65 827.02 -0.99 -0.10 -0.03 1 + 8348.35 741.95 832.86 -0.99 -0.10 -0.03 1 + 8265.28 972.48 -1295.27 -0.98 -0.17 0.10 1 + 8265.29 1127.88 -1044.10 -0.98 -0.17 0.10 1 + 8265.29 1283.04 -793.04 -0.98 -0.17 0.10 1 + 8265.28 1438.35 -541.64 -0.98 -0.17 0.10 1 + 8265.28 1593.51 -290.58 -0.98 -0.17 0.10 1 + 8214.19 1263.40 -1301.47 -0.98 -0.17 0.10 1 + 8214.20 1418.79 -1050.31 -0.98 -0.17 0.10 1 + 8214.19 1573.86 -799.01 -0.98 -0.17 0.10 1 + 8214.20 1729.26 -547.85 -0.98 -0.17 0.10 1 + 8163.11 1554.31 -1307.68 -0.98 -0.17 0.10 1 + 8163.10 1709.38 -1056.38 -0.98 -0.17 0.10 1 + 8163.11 1864.78 -805.22 -0.98 -0.17 0.10 1 + 8112.26 1844.88 -1313.74 -0.98 -0.17 0.10 1 + 8112.27 2000.28 -1062.58 -0.98 -0.17 0.10 1 + 7982.35 2367.17 1272.50 -0.97 -0.23 -0.10 1 + 8041.80 2229.28 1018.02 -0.97 -0.23 -0.10 1 + 8101.36 2091.79 763.65 -0.97 -0.23 -0.10 1 + 8160.72 1954.03 509.38 -0.97 -0.23 -0.10 1 + 8220.40 1816.21 254.96 -0.97 -0.23 -0.10 1 + 8051.07 2079.83 1272.46 -0.97 -0.23 -0.10 1 + 8110.42 1942.06 1018.18 -0.97 -0.23 -0.10 1 + 8169.99 1804.58 763.81 -0.97 -0.23 -0.10 1 + 8229.58 1666.89 509.59 -0.97 -0.23 -0.10 1 + 8119.69 1792.62 1272.62 -0.97 -0.23 -0.10 1 + 8179.28 1654.93 1018.40 -0.97 -0.23 -0.10 1 + 8238.85 1517.45 764.03 -0.97 -0.23 -0.10 1 + 8188.55 1505.48 1272.83 -0.97 -0.23 -0.10 1 + 8248.11 1368.00 1018.47 -0.97 -0.23 -0.10 1 + 7684.52 2652.26 -1812.71 -0.93 -0.30 0.19 1 + 7684.50 2496.81 -2063.94 -0.93 -0.30 0.19 1 + 7775.77 2837.19 -1059.21 -0.93 -0.30 0.19 1 + 7775.76 2681.73 -1310.43 -0.93 -0.30 0.19 1 + 7775.86 2526.69 -1561.54 -0.93 -0.30 0.19 1 + 7775.75 2371.36 -1812.57 -0.93 -0.30 0.19 1 + 7775.71 2216.11 -2063.94 -0.93 -0.30 0.19 1 + 7867.00 2556.29 -1059.06 -0.93 -0.30 0.19 1 + 7866.96 2401.04 -1310.43 -0.93 -0.30 0.19 1 + 7867.09 2245.79 -1561.40 -0.93 -0.30 0.19 1 + 7867.05 2090.54 -1812.77 -0.93 -0.30 0.19 1 + 7958.30 2275.46 -1059.26 -0.93 -0.30 0.19 1 + 7958.19 2120.13 -1310.29 -0.93 -0.30 0.19 1 + 7958.39 1964.96 -1561.60 -0.93 -0.30 0.19 1 + 8172.96 2034.61 -36.42 -0.95 -0.31 0.02 1 + 8081.73 2315.51 -36.57 -0.95 -0.31 0.02 1 + 7990.52 2596.21 -36.56 -0.95 -0.31 0.02 1 + 7899.20 2877.24 -36.51 -0.95 -0.31 0.02 1 + 7807.99 3157.93 -36.51 -0.95 -0.31 0.02 1 + 8121.29 2173.08 -292.22 -0.95 -0.31 0.02 1 + 8030.05 2453.98 -292.37 -0.95 -0.31 0.02 1 + 7938.76 2734.81 -292.17 -0.95 -0.31 0.02 1 + 7847.52 3015.71 -292.31 -0.95 -0.31 0.02 1 + 8069.61 2311.55 -548.02 -0.95 -0.31 0.02 1 + 7978.32 2592.37 -547.82 -0.95 -0.31 0.02 1 + 7887.08 2873.28 -547.97 -0.95 -0.31 0.02 1 + 8018.12 2450.02 -803.42 -0.95 -0.31 0.02 1 + 7926.88 2730.92 -803.57 -0.95 -0.31 0.02 1 + 8125.84 2174.58 255.10 -0.95 -0.31 -0.06 1 + 7882.83 2871.77 510.40 -0.95 -0.31 -0.06 1 + 7974.04 2591.07 510.40 -0.95 -0.31 -0.06 1 + 8065.27 2310.17 510.55 -0.95 -0.31 -0.06 1 + 7913.79 2726.60 765.71 -0.95 -0.31 -0.06 1 + 8005.02 2445.70 765.85 -0.95 -0.31 -0.06 1 + 7944.51 2581.36 1020.95 -0.95 -0.31 -0.06 1 + 7718.03 3362.40 254.90 -0.92 -0.38 -0.10 1 + 7750.74 3215.90 509.26 -0.92 -0.38 -0.10 1 + 7783.66 3069.68 763.54 -0.92 -0.38 -0.10 1 + 7816.28 2923.31 1018.10 -0.92 -0.38 -0.10 1 + 7849.22 2776.88 1272.52 -0.92 -0.38 -0.10 1 + 7637.71 3488.62 509.41 -0.92 -0.38 -0.10 1 + 7670.30 3342.45 763.83 -0.92 -0.38 -0.10 1 + 7703.25 3196.03 1018.25 -0.92 -0.38 -0.10 1 + 7735.93 3049.73 1272.46 -0.92 -0.38 -0.10 1 + 7557.27 3615.17 763.97 -0.92 -0.38 -0.10 1 + 7589.98 3468.67 1018.34 -0.92 -0.38 -0.10 1 + 7622.66 3322.37 1272.55 -0.92 -0.38 -0.10 1 + 7476.92 3741.59 1018.34 -0.92 -0.38 -0.10 1 + 7509.63 3595.09 1272.70 -0.92 -0.38 -0.10 1 + 7623.35 3569.09 -290.55 -0.89 -0.44 0.10 1 + 7532.16 3694.62 -541.87 -0.89 -0.44 0.10 1 + 7440.96 3820.15 -792.93 -0.89 -0.44 0.10 1 + 7349.61 3945.87 -1044.27 -0.89 -0.44 0.10 1 + 7258.41 4071.40 -1295.33 -0.89 -0.44 0.10 1 + 7661.75 3429.32 -547.97 -0.89 -0.44 0.10 1 + 7570.57 3554.85 -799.29 -0.89 -0.44 0.10 1 + 7479.20 3680.58 -1050.37 -0.89 -0.44 0.10 1 + 7388.02 3806.10 -1301.69 -0.89 -0.44 0.10 1 + 7700.16 3289.55 -805.40 -0.89 -0.44 0.10 1 + 7608.80 3415.28 -1056.48 -0.89 -0.44 0.10 1 + 7517.61 3540.81 -1307.80 -0.89 -0.44 0.10 1 + 7738.59 3150.15 -1062.58 -0.89 -0.44 0.10 1 + 7647.40 3275.67 -1313.90 -0.89 -0.44 0.10 1 + 7474.16 3858.74 -265.15 -0.86 -0.50 0.06 1 + 7142.71 4364.79 -759.48 -0.86 -0.50 0.06 1 + 7233.92 4239.26 -508.41 -0.86 -0.50 0.06 1 + 7325.11 4113.74 -257.10 -0.86 -0.50 0.06 1 + 7085.22 4494.22 -500.34 -0.86 -0.50 0.06 1 + 7176.41 4368.69 -249.02 -0.86 -0.50 0.06 1 + 7027.53 4623.48 -241.20 -0.86 -0.50 0.06 1 + 6979.24 4714.38 75.01 -0.87 -0.50 -0.03 1 + 7126.94 4458.53 69.20 -0.87 -0.50 -0.03 1 + 7274.71 4203.03 63.12 -0.87 -0.50 -0.03 1 + 7422.26 3947.39 57.29 -0.87 -0.50 -0.03 1 + 7570.16 3691.70 51.48 -0.87 -0.50 -0.03 1 + 7049.53 4578.34 327.67 -0.87 -0.50 -0.03 1 + 7197.08 4322.70 321.84 -0.87 -0.50 -0.03 1 + 7344.85 4067.20 315.76 -0.87 -0.50 -0.03 1 + 7492.59 3811.71 309.94 -0.87 -0.50 -0.03 1 + 7119.67 4442.51 580.32 -0.87 -0.50 -0.03 1 + 7267.42 4187.02 574.50 -0.87 -0.50 -0.03 1 + 7415.19 3931.52 568.42 -0.87 -0.50 -0.03 1 + 7190.01 4306.83 832.97 -0.87 -0.50 -0.03 1 + 7337.78 4051.33 826.90 -0.87 -0.50 -0.03 1 + 7067.81 4383.14 -1331.50 -0.82 -0.57 0.11 1 + 7012.32 4511.64 -1071.42 -0.82 -0.57 0.11 1 + 6957.04 4640.28 -811.59 -0.82 -0.57 0.11 1 + 6901.39 4768.97 -551.53 -0.82 -0.57 0.11 1 + 6846.10 4897.62 -291.44 -0.82 -0.57 0.11 1 + 6900.79 4626.29 -1319.55 -0.82 -0.57 0.11 1 + 6845.16 4754.97 -1059.74 -0.82 -0.57 0.11 1 + 6789.86 4883.62 -799.66 -0.82 -0.57 0.11 1 + 6734.39 5012.10 -539.83 -0.82 -0.57 0.11 1 + 6733.63 4869.62 -1307.88 -0.82 -0.57 0.11 1 + 6678.14 4998.11 -1047.80 -0.82 -0.57 0.11 1 + 6622.66 5126.60 -787.97 -0.82 -0.57 0.11 1 + 6566.63 5112.75 -1296.18 -0.82 -0.57 0.11 1 + 6511.14 5241.25 -1036.10 -0.82 -0.57 0.11 1 + 6352.70 5367.41 1331.50 -0.79 -0.60 -0.11 1 + 6457.76 5274.93 1071.42 -0.79 -0.60 -0.11 1 + 6563.02 5182.60 811.59 -0.79 -0.60 -0.11 1 + 6668.22 5089.91 551.53 -0.79 -0.60 -0.11 1 + 6773.49 4997.56 291.44 -0.79 -0.60 -0.11 1 + 6532.33 5133.43 1319.55 -0.79 -0.60 -0.11 1 + 6637.52 5040.75 1059.74 -0.79 -0.60 -0.11 1 + 6742.79 4948.41 799.66 -0.79 -0.60 -0.11 1 + 6847.84 4855.94 539.83 -0.79 -0.60 -0.11 1 + 6712.10 4899.25 1307.88 -0.79 -0.60 -0.11 1 + 6817.15 4806.77 1047.80 -0.79 -0.60 -0.11 1 + 6922.21 4714.30 787.97 -0.79 -0.60 -0.11 1 + 6891.72 4665.29 1296.18 -0.79 -0.60 -0.11 1 + 6996.78 4572.81 1036.10 -0.79 -0.60 -0.11 1 + 7877.55 1339.11 2640.25 -0.95 -0.10 -0.29 1 + 8007.98 584.51 2485.19 -0.95 -0.10 -0.29 1 + 7986.67 876.93 2450.18 -0.95 -0.10 -0.29 1 + 7965.37 1169.36 2415.16 -0.95 -0.10 -0.29 1 + 8074.49 707.43 2225.04 -0.95 -0.10 -0.29 1 + 8053.19 999.85 2190.02 -0.95 -0.10 -0.29 1 + 8140.77 830.08 1964.84 -0.95 -0.10 -0.29 1 + 8188.77 1163.34 1395.69 -0.98 -0.11 -0.17 1 + 8248.33 1011.18 1149.73 -0.98 -0.11 -0.17 1 + 8158.94 1021.60 1653.03 -0.98 -0.11 -0.17 1 + 8218.73 869.71 1407.12 -0.98 -0.11 -0.17 1 + 8278.29 717.55 1161.16 -0.98 -0.11 -0.17 1 + 8188.81 728.27 1664.63 -0.98 -0.11 -0.17 1 + 8248.37 576.11 1418.68 -0.98 -0.11 -0.17 1 + 7852.84 628.75 2993.56 -0.91 -0.14 -0.40 1 + 7761.54 503.27 3244.86 -0.91 -0.14 -0.40 1 + 7825.03 920.42 2955.75 -0.91 -0.14 -0.40 1 + 7733.83 794.64 3206.86 -0.91 -0.14 -0.40 1 + 7642.53 669.15 3458.15 -0.91 -0.14 -0.40 1 + 7797.32 1211.79 2917.75 -0.91 -0.14 -0.40 1 + 7706.02 1086.30 3169.04 -0.91 -0.14 -0.40 1 + 7614.81 960.52 3420.15 -0.91 -0.14 -0.40 1 + 7523.51 835.04 3671.44 -0.91 -0.14 -0.40 1 + 7769.51 1503.45 2879.93 -0.91 -0.14 -0.40 1 + 7678.30 1377.67 3131.04 -0.91 -0.14 -0.40 1 + 7587.00 1252.19 3382.33 -0.91 -0.14 -0.40 1 + 7495.80 1126.66 3633.39 -0.91 -0.14 -0.40 1 + 7404.50 1000.92 3884.74 -0.91 -0.14 -0.40 1 + 7650.49 1669.34 3093.22 -0.91 -0.14 -0.40 1 + 7559.29 1543.56 3344.33 -0.91 -0.14 -0.40 1 + 7467.99 1418.07 3595.63 -0.91 -0.14 -0.40 1 + 7376.78 1292.54 3846.69 -0.91 -0.14 -0.40 1 + 7531.48 1835.23 3306.52 -0.91 -0.14 -0.40 1 + 7440.27 1709.45 3557.63 -0.91 -0.14 -0.40 1 + 7348.97 1583.96 3808.92 -0.91 -0.14 -0.40 1 + 7941.73 2248.91 1640.88 -0.95 -0.21 -0.22 1 + 7965.34 1637.17 2126.19 -0.95 -0.21 -0.22 1 + 7986.65 1799.25 1880.30 -0.95 -0.21 -0.22 1 + 8007.96 1961.34 1634.40 -0.95 -0.21 -0.22 1 + 8053.20 1511.63 1873.67 -0.95 -0.21 -0.22 1 + 8074.51 1673.71 1627.78 -0.95 -0.21 -0.22 1 + 8140.74 1386.14 1621.30 -0.95 -0.21 -0.22 1 + 7761.61 2677.09 1901.15 -0.91 -0.29 -0.30 1 + 7852.85 2396.19 1901.29 -0.91 -0.29 -0.30 1 + 7642.56 2793.64 2145.11 -0.91 -0.29 -0.30 1 + 7733.85 2512.82 2144.91 -0.91 -0.29 -0.30 1 + 7825.09 2231.91 2145.05 -0.91 -0.29 -0.30 1 + 7523.57 2910.27 2388.73 -0.91 -0.29 -0.30 1 + 7614.81 2629.36 2388.87 -0.91 -0.29 -0.30 1 + 7706.10 2348.54 2388.67 -0.91 -0.29 -0.30 1 + 7797.34 2067.63 2388.81 -0.91 -0.29 -0.30 1 + 7404.52 3026.81 2632.69 -0.91 -0.29 -0.30 1 + 7495.81 2745.99 2632.49 -0.91 -0.29 -0.30 1 + 7587.05 2465.09 2632.63 -0.91 -0.29 -0.30 1 + 7678.25 2184.39 2632.63 -0.91 -0.29 -0.30 1 + 7769.58 1903.36 2632.57 -0.91 -0.29 -0.30 1 + 7376.77 2862.54 2876.45 -0.91 -0.29 -0.30 1 + 7468.06 2581.71 2876.25 -0.91 -0.29 -0.30 1 + 7559.30 2300.81 2876.39 -0.91 -0.29 -0.30 1 + 7650.50 2020.11 2876.39 -0.91 -0.29 -0.30 1 + 7349.01 2698.26 3120.21 -0.91 -0.29 -0.30 1 + 7440.30 2417.43 3120.01 -0.91 -0.29 -0.30 1 + 7531.54 2136.53 3120.15 -0.91 -0.29 -0.30 1 + 7409.12 3204.29 2378.51 -0.90 -0.39 -0.22 1 + 7631.48 3120.14 1634.22 -0.90 -0.39 -0.22 1 + 7518.97 3238.75 1880.12 -0.90 -0.39 -0.22 1 + 7406.46 3357.37 2126.01 -0.90 -0.39 -0.22 1 + 7516.21 3391.96 1627.82 -0.90 -0.39 -0.22 1 + 7403.70 3510.57 1873.72 -0.90 -0.39 -0.22 1 + 7400.79 3663.57 1621.16 -0.90 -0.39 -0.22 1 + 6575.04 4155.06 3244.69 -0.81 -0.42 -0.40 1 + 6722.77 4106.95 2993.51 -0.81 -0.42 -0.40 1 + 6576.35 3950.72 3458.04 -0.81 -0.42 -0.40 1 + 6723.93 3902.92 3206.77 -0.81 -0.42 -0.40 1 + 6871.65 3854.81 2955.59 -0.81 -0.42 -0.40 1 + 6577.51 3746.69 3671.30 -0.81 -0.42 -0.40 1 + 6725.23 3698.58 3420.12 -0.81 -0.42 -0.40 1 + 6872.81 3650.78 3168.85 -0.81 -0.42 -0.40 1 + 7020.53 3602.67 2917.67 -0.81 -0.42 -0.40 1 + 6578.82 3542.35 3884.65 -0.81 -0.42 -0.40 1 + 6726.39 3494.55 3633.38 -0.81 -0.42 -0.40 1 + 6874.12 3446.44 3382.20 -0.81 -0.42 -0.40 1 + 7021.69 3398.49 3131.14 -0.81 -0.42 -0.40 1 + 7169.42 3350.53 2879.75 -0.81 -0.42 -0.40 1 + 6727.70 3290.21 3846.73 -0.81 -0.42 -0.40 1 + 6875.27 3242.41 3595.46 -0.81 -0.42 -0.40 1 + 7023.00 3194.30 3344.28 -0.81 -0.42 -0.40 1 + 7170.57 3146.35 3093.22 -0.81 -0.42 -0.40 1 + 6876.58 3038.07 3808.81 -0.81 -0.42 -0.40 1 + 7024.15 2990.27 3557.54 -0.81 -0.42 -0.40 1 + 7171.88 2942.16 3306.36 -0.81 -0.42 -0.40 1 + 6696.49 4294.35 2745.32 -0.83 -0.47 -0.29 1 + 7131.54 3735.72 2415.20 -0.83 -0.47 -0.29 1 + 6976.90 3984.82 2450.21 -0.83 -0.47 -0.29 1 + 6822.26 4233.92 2485.21 -0.83 -0.47 -0.29 1 + 7102.87 3924.66 2189.99 -0.83 -0.47 -0.29 1 + 6948.23 4173.76 2224.99 -0.83 -0.47 -0.29 1 + 7074.00 4113.33 1964.88 -0.83 -0.47 -0.29 1 + 7052.81 4224.21 1664.71 -0.85 -0.49 -0.17 1 + 7011.68 4382.14 1418.62 -0.85 -0.49 -0.17 1 + 7201.22 3969.18 1653.03 -0.85 -0.49 -0.17 1 + 7160.24 4127.31 1407.19 -0.85 -0.49 -0.17 1 + 7119.11 4285.25 1161.10 -0.85 -0.49 -0.17 1 + 7308.60 3872.21 1395.85 -0.85 -0.49 -0.17 1 + 7267.47 4030.14 1149.76 -0.85 -0.49 -0.17 1 + 6504.60 4627.58 2686.35 -0.77 -0.58 -0.25 1 + 6455.15 4796.77 2449.21 -0.77 -0.58 -0.25 1 + 6405.75 4966.10 2212.48 -0.77 -0.58 -0.25 1 + 6356.31 5135.14 1975.54 -0.77 -0.58 -0.25 1 + 6307.07 5304.46 1738.49 -0.77 -0.58 -0.25 1 + 6635.70 4564.04 2429.33 -0.77 -0.58 -0.25 1 + 6586.25 4733.08 2192.39 -0.77 -0.58 -0.25 1 + 6536.85 4902.40 1955.66 -0.77 -0.58 -0.25 1 + 6487.61 5071.57 1718.82 -0.77 -0.58 -0.25 1 + 6766.80 4500.34 2172.51 -0.77 -0.58 -0.25 1 + 6717.56 4669.51 1935.66 -0.77 -0.58 -0.25 1 + 6668.16 4838.83 1698.94 -0.77 -0.58 -0.25 1 + 6898.10 4436.77 1915.79 -0.77 -0.58 -0.25 1 + 6848.70 4606.10 1679.06 -0.77 -0.58 -0.25 1 + 2264.14 6702.32 4557.89 9999.00 9999.00 9999.00 3 + 4176.42 73.25 7305.86 9999.00 9999.00 9999.00 3 + 4120.94 246.84 -7341.35 -0.55 -0.03 0.83 1 + 4359.93 169.35 -7186.08 -0.55 -0.03 0.83 1 + 4598.71 91.76 -7030.91 -0.55 -0.03 0.83 1 + 4837.75 14.03 -6875.55 -0.55 -0.03 0.83 1 + 5076.52 -63.55 -6720.39 -0.55 -0.03 0.83 1 + 4292.34 454.78 -7220.26 -0.55 -0.03 0.83 1 + 4531.33 377.29 -7064.99 -0.55 -0.03 0.83 1 + 4770.16 299.47 -6909.74 -0.55 -0.03 0.83 1 + 5009.15 221.98 -6754.47 -0.55 -0.03 0.83 1 + 4463.74 662.73 -7099.17 -0.55 -0.03 0.83 1 + 4702.56 584.91 -6943.92 -0.55 -0.03 0.83 1 + 4941.55 507.41 -6788.65 -0.55 -0.03 0.83 1 + 4635.09 870.30 -6978.32 -0.55 -0.03 0.83 1 + 4874.08 792.80 -6823.05 -0.55 -0.03 0.83 1 + 3421.95 1732.80 -7498.41 -0.45 -0.14 0.88 1 + 3513.36 1451.95 -7498.37 -0.45 -0.14 0.88 1 + 3604.56 1171.25 -7498.37 -0.45 -0.14 0.88 1 + 3695.82 890.20 -7498.39 -0.45 -0.14 0.88 1 + 3787.02 609.50 -7498.39 -0.45 -0.14 0.88 1 + 3682.48 1662.19 -7378.32 -0.45 -0.14 0.88 1 + 3773.88 1381.34 -7378.29 -0.45 -0.14 0.88 1 + 3864.94 1100.44 -7378.34 -0.45 -0.14 0.88 1 + 3956.34 819.59 -7378.30 -0.45 -0.14 0.88 1 + 3943.00 1591.58 -7258.24 -0.45 -0.14 0.88 1 + 4034.06 1310.67 -7258.29 -0.45 -0.14 0.88 1 + 4125.47 1029.83 -7258.25 -0.45 -0.14 0.88 1 + 4203.24 1520.93 -7138.49 -0.45 -0.14 0.88 1 + 4294.64 1240.08 -7138.45 -0.45 -0.14 0.88 1 + 4623.21 2123.35 -6614.58 -0.58 -0.19 0.79 1 + 4475.55 1919.92 -6769.79 -0.58 -0.19 0.79 1 + 4327.81 1716.83 -6924.96 -0.58 -0.19 0.79 1 + 4861.95 2045.67 -6459.28 -0.58 -0.19 0.79 1 + 4714.50 1842.31 -6614.63 -0.58 -0.19 0.79 1 + 4566.75 1639.22 -6769.80 -0.58 -0.19 0.79 1 + 4419.09 1435.79 -6925.01 -0.58 -0.19 0.79 1 + 5100.90 1968.06 -6304.12 -0.58 -0.19 0.79 1 + 4953.24 1764.63 -6459.34 -0.58 -0.19 0.79 1 + 4805.70 1561.61 -6614.63 -0.58 -0.19 0.79 1 + 4658.09 1358.35 -6769.67 -0.58 -0.19 0.79 1 + 4510.30 1155.09 -6925.02 -0.58 -0.19 0.79 1 + 5192.23 1687.19 -6303.99 -0.58 -0.19 0.79 1 + 5044.44 1483.93 -6459.34 -0.58 -0.19 0.79 1 + 4897.04 1280.74 -6614.50 -0.58 -0.19 0.79 1 + 4749.24 1077.48 -6769.85 -0.58 -0.19 0.79 1 + 5283.39 1406.32 -6304.17 -0.58 -0.19 0.79 1 + 5135.77 1203.06 -6459.21 -0.58 -0.19 0.79 1 + 4988.19 999.87 -6614.68 -0.58 -0.19 0.79 1 + 5979.55 2408.58 -5409.89 -0.75 -0.24 0.62 1 + 6070.75 2127.88 -5409.89 -0.75 -0.24 0.62 1 + 6162.09 1847.01 -5409.76 -0.75 -0.24 0.62 1 + 5416.16 2851.93 -5785.33 -0.59 -0.34 0.73 1 + 5177.24 2929.45 -5940.69 -0.59 -0.34 0.73 1 + 4938.46 3007.04 -6095.86 -0.59 -0.34 0.73 1 + 4699.39 3084.76 -6251.17 -0.59 -0.34 0.73 1 + 4460.62 3162.35 -6406.34 -0.59 -0.34 0.73 1 + 5292.97 2659.65 -5972.76 -0.59 -0.34 0.73 1 + 5054.04 2737.17 -6128.12 -0.59 -0.34 0.73 1 + 4815.12 2814.96 -6283.24 -0.59 -0.34 0.73 1 + 4576.20 2892.48 -6438.60 -0.59 -0.34 0.73 1 + 5169.77 2467.37 -6160.19 -0.59 -0.34 0.73 1 + 4930.85 2545.16 -6315.31 -0.59 -0.34 0.73 1 + 4691.93 2622.68 -6470.67 -0.59 -0.34 0.73 1 + 5046.72 2275.50 -6347.53 -0.59 -0.34 0.73 1 + 4807.80 2353.02 -6502.89 -0.59 -0.34 0.73 1 + 4069.56 3035.35 -6720.39 -0.46 -0.30 0.83 1 + 3922.01 2832.00 -6875.67 -0.46 -0.30 0.83 1 + 3774.44 2628.89 -7030.84 -0.46 -0.30 0.83 1 + 3626.64 2425.56 -7186.19 -0.46 -0.30 0.83 1 + 3479.07 2222.45 -7341.36 -0.46 -0.30 0.83 1 + 4182.79 2764.62 -6754.57 -0.46 -0.30 0.83 1 + 4035.24 2561.28 -6909.85 -0.46 -0.30 0.83 1 + 3887.42 2358.18 -7065.09 -0.46 -0.30 0.83 1 + 3739.87 2154.84 -7220.37 -0.46 -0.30 0.83 1 + 4296.02 2493.90 -6788.74 -0.46 -0.30 0.83 1 + 4148.20 2290.80 -6943.98 -0.46 -0.30 0.83 1 + 4000.65 2087.46 -7099.26 -0.46 -0.30 0.83 1 + 4409.05 2223.53 -6823.09 -0.46 -0.30 0.83 1 + 4261.50 2020.19 -6978.37 -0.46 -0.30 0.83 1 + 5066.47 4092.89 -5340.40 -0.65 -0.43 0.63 1 + 5195.62 3831.02 -5385.68 -0.65 -0.43 0.63 1 + 5324.61 3569.42 -5431.26 -0.65 -0.43 0.63 1 + 5453.61 3307.74 -5476.50 -0.65 -0.43 0.63 1 + 5582.91 3046.01 -5521.93 -0.65 -0.43 0.63 1 + 5290.95 4006.96 -5168.62 -0.65 -0.43 0.63 1 + 5419.95 3745.28 -5213.86 -0.65 -0.43 0.63 1 + 5548.95 3483.68 -5259.44 -0.65 -0.43 0.63 1 + 5678.10 3222.15 -5304.83 -0.65 -0.43 0.63 1 + 5515.29 3921.22 -4996.80 -0.65 -0.43 0.63 1 + 5644.44 3659.69 -5042.19 -0.65 -0.43 0.63 1 + 5773.44 3398.09 -5087.77 -0.65 -0.43 0.63 1 + 5739.77 3835.63 -4825.13 -0.65 -0.43 0.63 1 + 5868.77 3574.03 -4870.72 -0.65 -0.43 0.63 1 + 5295.76 3150.94 -5731.47 -0.59 -0.42 0.70 1 + 4689.37 3567.66 -5994.02 -0.59 -0.42 0.70 1 + 4928.14 3490.07 -5838.86 -0.59 -0.42 0.70 1 + 5167.06 3412.55 -5683.50 -0.59 -0.42 0.70 1 + 4799.73 3751.62 -5791.08 -0.59 -0.42 0.70 1 + 5038.66 3674.10 -5635.72 -0.59 -0.42 0.70 1 + 4909.96 3935.45 -5587.98 -0.59 -0.42 0.70 1 + 5103.11 4368.92 -5068.73 -0.64 -0.53 0.55 1 + 5481.79 4587.86 -4421.44 -0.64 -0.53 0.55 1 + 5403.76 4432.18 -4659.90 -0.64 -0.53 0.55 1 + 5325.73 4276.49 -4898.35 -0.64 -0.53 0.55 1 + 5626.66 4339.68 -4489.72 -0.64 -0.53 0.55 1 + 5548.63 4184.00 -4728.17 -0.64 -0.53 0.55 1 + 5771.24 4091.57 -4557.80 -0.64 -0.53 0.55 1 + 4267.66 3473.32 -6376.67 -0.52 -0.47 0.71 1 + 4380.23 3656.42 -6174.10 -0.52 -0.47 0.71 1 + 4492.80 3839.60 -5971.89 -0.52 -0.47 0.71 1 + 4605.22 4022.91 -5769.28 -0.52 -0.47 0.71 1 + 4717.94 4206.15 -5566.87 -0.52 -0.47 0.71 1 + 4128.48 3725.51 -6311.96 -0.52 -0.47 0.71 1 + 4240.76 3908.76 -6109.54 -0.52 -0.47 0.71 1 + 4705.71 4709.28 -5167.47 -0.56 -0.61 0.55 1 + 4944.64 4631.76 -5012.11 -0.56 -0.61 0.55 1 + 4540.90 4938.36 -5080.12 -0.56 -0.61 0.55 1 + 4779.82 4860.57 -4925.00 -0.56 -0.61 0.55 1 + 5018.74 4783.05 -4769.63 -0.56 -0.61 0.55 1 + 4376.08 5167.17 -4993.00 -0.56 -0.61 0.55 1 + 4615.00 5089.65 -4837.64 -0.56 -0.61 0.55 1 + 4853.92 5011.86 -4682.52 -0.56 -0.61 0.55 1 + 5092.85 4934.34 -4527.16 -0.56 -0.61 0.55 1 + 4211.26 5396.25 -4905.65 -0.56 -0.61 0.55 1 + 4450.18 5318.46 -4750.53 -0.56 -0.61 0.55 1 + 4689.10 5240.94 -4595.16 -0.56 -0.61 0.55 1 + 4927.88 5163.36 -4440.00 -0.56 -0.61 0.55 1 + 5166.95 5085.64 -4284.68 -0.56 -0.61 0.55 1 + 4285.36 5547.54 -4663.17 -0.56 -0.61 0.55 1 + 4524.29 5469.76 -4508.05 -0.56 -0.61 0.55 1 + 4763.21 5392.24 -4352.69 -0.56 -0.61 0.55 1 + 5001.98 5314.65 -4197.52 -0.56 -0.61 0.55 1 + 4359.47 5698.84 -4420.69 -0.56 -0.61 0.55 1 + 4598.39 5621.05 -4265.57 -0.56 -0.61 0.55 1 + 4837.31 5543.53 -4110.21 -0.56 -0.61 0.55 1 + 7474.14 1962.79 -3332.83 -0.86 -0.28 0.42 1 + 7382.94 2243.48 -3332.83 -0.86 -0.28 0.42 1 + 7291.59 2524.35 -3332.95 -0.86 -0.28 0.42 1 + 7011.42 3708.42 -2812.60 -0.82 -0.49 0.30 1 + 7011.42 3863.58 -2561.54 -0.82 -0.49 0.30 1 + 7011.32 4018.95 -2310.36 -0.82 -0.49 0.30 1 + 5585.92 5713.54 -2640.54 -0.71 -0.64 0.29 1 + 5775.26 5489.80 -2675.31 -0.71 -0.64 0.29 1 + 5964.38 5265.75 -2710.32 -0.71 -0.64 0.29 1 + 5983.51 4969.24 -3244.69 -0.65 -0.64 0.40 1 + 5983.40 5124.61 -2993.51 -0.65 -0.64 0.40 1 + 5789.57 5033.64 -3458.04 -0.65 -0.64 0.40 1 + 5789.72 5188.75 -3206.77 -0.65 -0.64 0.40 1 + 5789.61 5344.12 -2955.59 -0.65 -0.64 0.40 1 + 5595.89 5097.78 -3671.30 -0.65 -0.64 0.40 1 + 5595.78 5253.14 -3420.12 -0.65 -0.64 0.40 1 + 5595.93 5408.26 -3168.85 -0.65 -0.64 0.40 1 + 5595.82 5563.62 -2917.67 -0.65 -0.64 0.40 1 + 5401.95 5162.17 -3884.65 -0.65 -0.64 0.40 1 + 5402.09 5317.29 -3633.38 -0.65 -0.64 0.40 1 + 5401.99 5472.65 -3382.20 -0.65 -0.64 0.40 1 + 5401.99 5627.82 -3131.14 -0.65 -0.64 0.40 1 + 5402.03 5783.13 -2879.75 -0.65 -0.64 0.40 1 + 5208.16 5381.68 -3846.73 -0.65 -0.64 0.40 1 + 5208.30 5536.80 -3595.46 -0.65 -0.64 0.40 1 + 5208.20 5692.16 -3344.28 -0.65 -0.64 0.40 1 + 5208.20 5847.32 -3093.22 -0.65 -0.64 0.40 1 + 5014.37 5601.19 -3808.81 -0.65 -0.64 0.40 1 + 5014.51 5756.30 -3557.54 -0.65 -0.64 0.40 1 + 5014.41 5911.67 -3306.36 -0.65 -0.64 0.40 1 + 5103.06 6487.49 -1640.88 -0.64 -0.73 0.22 1 + 5181.09 6343.82 -1886.78 -0.64 -0.73 0.22 1 + 5259.13 6200.16 -2132.67 -0.64 -0.73 0.22 1 + 4168.41 6239.63 -3749.05 -0.53 -0.72 0.45 1 + 4220.58 6060.35 -3977.78 -0.53 -0.72 0.45 1 + 4355.02 6245.42 -3520.31 -0.53 -0.72 0.45 1 + 4407.19 6066.14 -3749.05 -0.53 -0.72 0.45 1 + 4459.35 5886.87 -3977.78 -0.53 -0.72 0.45 1 + 4593.79 6071.94 -3520.31 -0.53 -0.72 0.45 1 + 4646.24 5892.44 -3749.10 -0.53 -0.72 0.45 1 + 4944.55 6554.45 -1901.15 -0.56 -0.77 0.30 1 + 4705.59 6728.03 -1901.29 -0.56 -0.77 0.30 1 + 5018.61 6405.21 -2145.11 -0.56 -0.77 0.30 1 + 4779.74 6578.82 -2144.91 -0.56 -0.77 0.30 1 + 4540.78 6752.39 -2145.05 -0.56 -0.77 0.30 1 + 5092.76 6256.00 -2388.73 -0.56 -0.77 0.30 1 + 4853.79 6429.58 -2388.87 -0.56 -0.77 0.30 1 + 4614.93 6603.18 -2388.67 -0.56 -0.77 0.30 1 + 4375.96 6776.76 -2388.81 -0.56 -0.77 0.30 1 + 5166.81 6106.77 -2632.69 -0.56 -0.77 0.30 1 + 4927.94 6280.37 -2632.49 -0.56 -0.77 0.30 1 + 4688.98 6453.95 -2632.63 -0.56 -0.77 0.30 1 + 4450.21 6627.43 -2632.63 -0.56 -0.77 0.30 1 + 4211.15 6801.13 -2632.57 -0.56 -0.77 0.30 1 + 5002.00 6131.13 -2876.45 -0.56 -0.77 0.30 1 + 4763.13 6304.74 -2876.25 -0.56 -0.77 0.30 1 + 4524.17 6478.31 -2876.39 -0.56 -0.77 0.30 1 + 4285.39 6651.79 -2876.39 -0.56 -0.77 0.30 1 + 4837.18 6155.50 -3120.21 -0.56 -0.77 0.30 1 + 4598.31 6329.10 -3120.01 -0.56 -0.77 0.30 1 + 4359.35 6502.68 -3120.15 -0.56 -0.77 0.30 1 + 4592.99 6858.07 -1640.88 -0.50 -0.84 0.22 1 + 4018.48 7069.57 -2126.19 -0.50 -0.84 0.22 1 + 4179.22 7039.74 -1880.30 -0.50 -0.84 0.22 1 + 4339.96 7009.92 -1634.40 -0.50 -0.84 0.22 1 + 3926.24 7191.92 -1873.67 -0.50 -0.84 0.22 1 + 4086.98 7162.10 -1627.78 -0.50 -0.84 0.22 1 + 3833.94 7313.96 -1621.30 -0.50 -0.84 0.22 1 + 7160.19 775.27 4353.23 -0.83 -0.05 -0.55 1 + 6822.16 329.27 4898.49 -0.83 -0.05 -0.55 1 + 6976.81 409.36 4660.03 -0.83 -0.05 -0.55 1 + 7131.46 489.44 4421.57 -0.83 -0.05 -0.55 1 + 6948.22 123.58 4728.17 -0.83 -0.05 -0.55 1 + 7102.87 203.66 4489.71 -0.83 -0.05 -0.55 1 + 7073.94 -82.20 4557.89 -0.83 -0.05 -0.55 1 + 4176.42 73.25 7305.86 -0.53 -0.05 -0.84 1 + 4709.73 513.71 6942.72 -0.53 -0.05 -0.84 1 + 4470.96 436.13 7097.88 -0.53 -0.05 -0.84 1 + 4231.97 358.63 7253.15 -0.53 -0.05 -0.84 1 + 4526.57 721.32 7045.47 -0.53 -0.05 -0.84 1 + 4287.58 643.83 7200.74 -0.53 -0.05 -0.84 1 + 4343.29 928.89 7148.01 -0.53 -0.05 -0.84 1 + 5180.98 403.27 6628.25 -0.58 -0.11 -0.80 1 + 4997.25 609.50 6732.87 -0.58 -0.11 -0.80 1 + 4813.85 815.69 6837.61 -0.58 -0.11 -0.80 1 + 4630.17 1022.15 6942.15 -0.58 -0.11 -0.80 1 + 4446.56 1228.43 7046.98 -0.58 -0.11 -0.80 1 + 5222.62 687.16 6558.72 -0.58 -0.11 -0.80 1 + 5039.15 893.53 6663.16 -0.58 -0.11 -0.80 1 + 4855.54 1099.81 6768.00 -0.58 -0.11 -0.80 1 + 4672.03 1305.94 6872.52 -0.58 -0.11 -0.80 1 + 5264.53 971.19 6489.01 -0.58 -0.11 -0.80 1 + 5080.79 1177.41 6593.63 -0.58 -0.11 -0.80 1 + 4897.27 1383.55 6698.15 -0.58 -0.11 -0.80 1 + 5306.38 1254.98 6419.38 -0.58 -0.11 -0.80 1 + 5122.65 1461.21 6524.00 -0.58 -0.11 -0.80 1 + 6725.10 1404.92 4837.84 -0.81 -0.17 -0.55 1 + 6577.48 1608.28 4993.03 -0.81 -0.17 -0.55 1 + 7169.38 1077.50 4284.69 -0.81 -0.17 -0.55 1 + 7021.66 1280.57 4440.06 -0.81 -0.17 -0.55 1 + 6874.04 1483.93 4595.25 -0.81 -0.17 -0.55 1 + 6726.47 1687.04 4750.42 -0.81 -0.17 -0.55 1 + 6578.70 1890.36 4905.81 -0.81 -0.17 -0.55 1 + 7170.60 1359.58 4197.48 -0.81 -0.17 -0.55 1 + 7022.88 1562.64 4352.85 -0.81 -0.17 -0.55 1 + 6875.26 1766.00 4508.03 -0.81 -0.17 -0.55 1 + 6727.69 1969.12 4663.20 -0.81 -0.17 -0.55 1 + 7171.82 1641.65 4110.26 -0.81 -0.17 -0.55 1 + 7024.10 1844.72 4265.63 -0.81 -0.17 -0.55 1 + 6876.48 2048.08 4420.82 -0.81 -0.17 -0.55 1 + 6381.21 968.93 5400.24 -0.74 -0.17 -0.65 1 + 6227.16 1734.31 5372.37 -0.74 -0.17 -0.65 1 + 6220.09 1451.11 5455.66 -0.74 -0.17 -0.65 1 + 6213.02 1167.91 5538.96 -0.74 -0.17 -0.65 1 + 6051.94 1650.07 5594.74 -0.74 -0.17 -0.65 1 + 6044.87 1366.88 5678.03 -0.74 -0.17 -0.65 1 + 5876.67 1565.86 5816.75 -0.74 -0.17 -0.65 1 + 7222.36 2036.22 3749.05 -0.85 -0.28 -0.45 1 + 7067.98 2141.24 3977.78 -0.85 -0.28 -0.45 1 + 7285.53 2211.91 3520.31 -0.85 -0.28 -0.45 1 + 7131.16 2316.92 3749.05 -0.85 -0.28 -0.45 1 + 6976.78 2421.94 3977.78 -0.85 -0.28 -0.45 1 + 7194.33 2492.61 3520.31 -0.85 -0.28 -0.45 1 + 7039.83 2597.95 3749.10 -0.85 -0.28 -0.45 1 + 6248.41 2291.97 5150.17 -0.70 -0.30 -0.65 1 + 5712.79 2707.16 5539.04 -0.70 -0.30 -0.65 1 + 5884.97 2482.20 5455.75 -0.70 -0.30 -0.65 1 + 6057.16 2257.23 5372.46 -0.70 -0.30 -0.65 1 + 5693.87 2447.26 5677.99 -0.70 -0.30 -0.65 1 + 5866.05 2222.30 5594.70 -0.70 -0.30 -0.65 1 + 5674.62 2187.47 5816.83 -0.70 -0.30 -0.65 1 + 5932.93 3020.15 5167.48 -0.76 -0.34 -0.55 1 + 5933.04 3271.33 5012.12 -0.76 -0.34 -0.55 1 + 6099.87 2792.60 5080.13 -0.76 -0.34 -0.55 1 + 6099.72 3043.87 4925.01 -0.76 -0.34 -0.55 1 + 6099.83 3295.06 4769.64 -0.76 -0.34 -0.55 1 + 6266.55 2565.14 4993.01 -0.76 -0.34 -0.55 1 + 6266.66 2816.33 4837.65 -0.76 -0.34 -0.55 1 + 6266.51 3067.60 4682.53 -0.76 -0.34 -0.55 1 + 6266.62 3318.78 4527.16 -0.76 -0.34 -0.55 1 + 6433.49 2337.60 4905.66 -0.76 -0.34 -0.55 1 + 6433.34 2588.87 4750.53 -0.76 -0.34 -0.55 1 + 6433.45 2840.05 4595.17 -0.76 -0.34 -0.55 1 + 6433.45 3091.12 4440.00 -0.76 -0.34 -0.55 1 + 6433.41 3342.50 4284.68 -0.76 -0.34 -0.55 1 + 6600.28 2361.32 4663.18 -0.76 -0.34 -0.55 1 + 6600.13 2612.59 4508.06 -0.76 -0.34 -0.55 1 + 6600.24 2863.78 4352.69 -0.76 -0.34 -0.55 1 + 6600.24 3114.84 4197.53 -0.76 -0.34 -0.55 1 + 6767.07 2385.05 4420.70 -0.76 -0.34 -0.55 1 + 6766.92 2636.32 4265.58 -0.76 -0.34 -0.55 1 + 6767.03 2887.50 4110.21 -0.76 -0.34 -0.55 1 + 4319.32 1619.81 7047.03 -0.54 -0.25 -0.80 1 + 4346.66 1894.69 6942.15 -0.54 -0.25 -0.80 1 + 4373.87 2169.45 6837.67 -0.54 -0.25 -0.80 1 + 4401.15 2444.10 6732.86 -0.54 -0.25 -0.80 1 + 4428.63 2719.01 6628.20 -0.54 -0.25 -0.80 1 + 4547.30 1689.60 6872.56 -0.54 -0.25 -0.80 1 + 4574.58 1964.25 6767.75 -0.54 -0.25 -0.80 1 + 4601.78 2239.01 6663.27 -0.54 -0.25 -0.80 1 + 4629.20 2513.69 6558.68 -0.54 -0.25 -0.80 1 + 4775.21 1759.16 6698.16 -0.54 -0.25 -0.80 1 + 4802.63 2033.84 6593.56 -0.54 -0.25 -0.80 1 + 4829.83 2308.60 6489.09 -0.54 -0.25 -0.80 1 + 5003.26 1828.75 6523.97 -0.54 -0.25 -0.80 1 + 5030.46 2103.52 6419.49 -0.54 -0.25 -0.80 1 + 4622.10 2985.46 6376.68 -0.61 -0.35 -0.71 1 + 4831.03 3035.94 6174.12 -0.61 -0.35 -0.71 1 + 5458.21 3187.25 5566.88 -0.61 -0.35 -0.71 1 + 4818.94 2775.17 6311.97 -0.61 -0.35 -0.71 1 + 5027.91 2825.32 6109.56 -0.61 -0.35 -0.71 1 + 5237.02 2875.90 5907.15 -0.61 -0.35 -0.71 1 + 5445.84 2926.26 5704.78 -0.61 -0.35 -0.71 1 + 5015.83 2564.55 6247.41 -0.61 -0.35 -0.71 1 + 5224.75 2615.03 6044.85 -0.61 -0.35 -0.71 1 + 5433.58 2665.39 5842.48 -0.61 -0.35 -0.71 1 + 5212.56 2354.14 6182.90 -0.61 -0.35 -0.71 1 + 5421.49 2404.62 5980.33 -0.61 -0.35 -0.71 1 + 5732.03 3503.28 5068.74 -0.70 -0.45 -0.55 1 + 6057.28 3795.76 4421.44 -0.70 -0.45 -0.55 1 + 5885.10 3769.66 4659.90 -0.70 -0.45 -0.55 1 + 5712.92 3743.56 4898.36 -0.70 -0.45 -0.55 1 + 5866.02 4010.24 4489.72 -0.70 -0.45 -0.55 1 + 5693.84 3984.14 4728.18 -0.70 -0.45 -0.55 1 + 5674.72 4224.42 4557.80 -0.70 -0.45 -0.55 1 + 4842.14 3357.38 5994.03 -0.58 -0.43 -0.70 1 + 4842.13 3608.44 5838.87 -0.58 -0.43 -0.70 1 + 4842.24 3859.63 5683.50 -0.58 -0.43 -0.70 1 + 5051.20 3405.50 5791.09 -0.58 -0.43 -0.70 1 + 5051.31 3656.68 5635.73 -0.58 -0.43 -0.70 1 + 5260.09 3453.52 5587.99 -0.58 -0.43 -0.70 1 + 5458.19 3553.72 5340.41 -0.61 -0.48 -0.63 1 + 5249.04 3757.47 5385.69 -0.61 -0.48 -0.63 1 + 5040.11 3961.00 5431.27 -0.61 -0.48 -0.63 1 + 4831.11 4164.54 5476.50 -0.61 -0.48 -0.63 1 + 4622.14 4368.39 5521.93 -0.61 -0.48 -0.63 1 + 5445.83 3793.78 5168.63 -0.61 -0.48 -0.63 1 + 5236.83 3997.32 5213.86 -0.61 -0.48 -0.63 1 + 5027.90 4200.85 5259.45 -0.61 -0.48 -0.63 1 + 4819.08 4404.49 5304.83 -0.61 -0.48 -0.63 1 + 5433.62 4033.63 4996.81 -0.61 -0.48 -0.63 1 + 5224.80 4237.27 5042.19 -0.61 -0.48 -0.63 1 + 5015.87 4440.79 5087.78 -0.61 -0.48 -0.63 1 + 5421.59 4273.58 4825.14 -0.61 -0.48 -0.63 1 + 5212.66 4477.10 4870.72 -0.61 -0.48 -0.63 1 + 5470.63 4469.28 4522.73 -0.65 -0.56 -0.51 1 + 5266.46 4680.32 4553.93 -0.65 -0.56 -0.51 1 + 5651.59 4472.71 4289.40 -0.65 -0.56 -0.51 1 + 5447.62 4683.72 4320.90 -0.65 -0.56 -0.51 1 + 5243.45 4894.76 4352.10 -0.65 -0.56 -0.51 1 + 5628.74 4686.84 4087.66 -0.65 -0.56 -0.51 1 + 5424.57 4897.88 4118.86 -0.65 -0.56 -0.51 1 + 7593.33 3088.42 -1561.49 -0.93 -0.30 0.19 1 + 7593.31 2932.96 -1812.71 -0.93 -0.30 0.19 1 + 7593.18 2777.84 -2063.88 -0.93 -0.30 0.19 1 + 7684.43 2962.76 -1310.37 -0.93 -0.30 0.19 1 + 7684.65 2807.39 -1561.54 -0.93 -0.30 0.19 1 + 5941.19 5754.30 -1395.85 -0.73 -0.66 0.17 1 + 6000.23 5622.21 -1653.03 -0.73 -0.66 0.17 1 + 6078.68 5666.38 -1149.76 -0.73 -0.66 0.17 1 + 6137.96 5534.37 -1407.19 -0.73 -0.66 0.17 1 + 6196.91 5402.25 -1664.71 -0.73 -0.66 0.17 1 + 6275.45 5446.45 -1161.10 -0.73 -0.66 0.17 1 + 6334.40 5314.33 -1418.62 -0.73 -0.66 0.17 1 + 6640.35 5180.81 -75.01 -0.74 -0.67 0.03 1 + 6442.67 5400.35 -69.20 -0.74 -0.67 0.03 1 + 6245.34 5619.84 -63.12 -0.74 -0.67 0.03 1 + 6047.81 5839.17 -57.29 -0.74 -0.67 0.03 1 + 5850.34 6058.85 -51.48 -0.74 -0.67 0.03 1 + 6532.70 5289.70 -327.67 -0.74 -0.67 0.03 1 + 6335.16 5509.03 -321.84 -0.74 -0.67 0.03 1 + 6137.83 5728.52 -315.76 -0.74 -0.67 0.03 1 + 5940.51 5947.99 -309.94 -0.74 -0.67 0.03 1 + 6425.19 5398.39 -580.32 -0.74 -0.67 0.03 1 + 6227.87 5617.86 -574.50 -0.74 -0.67 0.03 1 + 6030.53 5837.34 -568.42 -0.74 -0.67 0.03 1 + 6317.89 5507.21 -832.97 -0.74 -0.67 0.03 1 + 6120.56 5726.70 -826.90 -0.74 -0.67 0.03 1 + 5979.54 5915.92 265.15 -0.75 -0.66 -0.06 1 + 6358.40 5444.32 759.48 -0.75 -0.66 -0.06 1 + 6267.19 5569.85 508.41 -0.75 -0.66 -0.06 1 + 6175.99 5695.37 257.10 -0.75 -0.66 -0.06 1 + 6463.72 5349.65 500.34 -0.75 -0.66 -0.06 1 + 6372.52 5475.16 249.02 -0.75 -0.66 -0.06 1 + 6568.83 5254.83 241.20 -0.75 -0.66 -0.06 1 + 5750.17 6147.32 290.55 -0.69 -0.71 -0.10 1 + 5841.37 6021.81 541.87 -0.69 -0.71 -0.10 1 + 5932.57 5896.27 792.93 -0.69 -0.71 -0.10 1 + 6023.91 5770.55 1044.27 -0.69 -0.71 -0.10 1 + 6115.11 5645.02 1295.33 -0.69 -0.71 -0.10 1 + 5629.10 6227.04 547.97 -0.69 -0.71 -0.10 1 + 5720.30 6101.53 799.29 -0.69 -0.71 -0.10 1 + 5811.65 5975.78 1050.37 -0.69 -0.71 -0.10 1 + 5902.85 5850.27 1301.69 -0.69 -0.71 -0.10 1 + 5508.04 6306.76 805.40 -0.69 -0.71 -0.10 1 + 5599.39 6181.02 1056.48 -0.69 -0.71 -0.10 1 + 5690.59 6055.50 1307.80 -0.69 -0.71 -0.10 1 + 5387.34 6386.39 1062.58 -0.69 -0.71 -0.10 1 + 5478.54 6260.88 1313.90 -0.69 -0.71 -0.10 1 + 5582.85 6301.24 -254.90 -0.65 -0.76 0.10 1 + 5453.63 6377.62 -509.26 -0.65 -0.76 0.10 1 + 5324.74 6454.11 -763.54 -0.65 -0.76 0.10 1 + 5195.61 6530.36 -1018.10 -0.65 -0.76 0.10 1 + 5066.53 6606.94 -1272.52 -0.65 -0.76 0.10 1 + 5678.07 6185.85 -509.41 -0.65 -0.76 0.10 1 + 5549.13 6262.01 -763.83 -0.65 -0.76 0.10 1 + 4460.62 7144.22 36.42 -0.59 -0.81 -0.02 1 + 4699.58 6970.65 36.57 -0.59 -0.81 -0.02 1 + 4938.36 6797.16 36.56 -0.59 -0.81 -0.02 1 + 5177.42 6623.46 36.51 -0.59 -0.81 -0.02 1 + 5416.19 6449.98 36.51 -0.59 -0.81 -0.02 1 + 4576.35 7052.29 292.22 -0.59 -0.81 -0.02 1 + 4815.31 6878.71 292.37 -0.59 -0.81 -0.02 1 + 5054.18 6705.11 292.17 -0.59 -0.81 -0.02 1 + 5293.14 6531.53 292.31 -0.59 -0.81 -0.02 1 + 4692.07 6960.35 548.02 -0.59 -0.81 -0.02 1 + 4930.94 6786.75 547.82 -0.59 -0.81 -0.02 1 + 5169.90 6613.17 547.97 -0.59 -0.81 -0.02 1 + 4807.85 6868.59 803.42 -0.59 -0.81 -0.02 1 + 5046.81 6695.01 803.57 -0.59 -0.81 -0.02 1 + 6402.26 3793.20 3929.72 -0.74 -0.50 -0.44 1 + 6212.98 4432.03 3521.60 -0.74 -0.50 -0.44 1 + 6220.05 4230.87 3737.65 -0.74 -0.50 -0.44 1 + 6227.12 4029.72 3953.71 -0.74 -0.50 -0.44 1 + 6044.90 4467.25 3761.85 -0.74 -0.50 -0.44 1 + 6051.97 4266.10 3977.91 -0.74 -0.50 -0.44 1 + 5876.63 4502.50 4001.81 -0.74 -0.50 -0.44 1 + 5494.17 5568.63 3121.41 -0.70 -0.61 -0.39 1 + 5692.87 5350.80 3104.13 -0.70 -0.61 -0.39 1 + 5891.61 5133.25 3087.07 -0.70 -0.61 -0.39 1 + 6090.31 4915.26 3070.00 -0.70 -0.61 -0.39 1 + 6289.21 4697.55 3052.82 -0.70 -0.61 -0.39 1 + 5529.81 5382.93 3348.13 -0.70 -0.61 -0.39 1 + 5728.35 5165.10 3331.17 -0.70 -0.61 -0.39 1 + 5927.25 4947.39 3313.99 -0.70 -0.61 -0.39 1 + 6125.79 4729.71 3296.83 -0.70 -0.61 -0.39 1 + 5565.30 5197.23 3575.17 -0.70 -0.61 -0.39 1 + 5764.00 4979.39 3557.89 -0.70 -0.61 -0.39 1 + 5962.54 4761.72 3540.73 -0.70 -0.61 -0.39 1 + 5600.78 5011.68 3802.00 -0.70 -0.61 -0.39 1 + 5799.48 4793.85 3784.72 -0.70 -0.61 -0.39 1 + 6136.44 5378.44 2059.09 -0.72 -0.63 -0.30 1 + 5890.79 5303.10 2796.85 -0.72 -0.63 -0.30 1 + 6038.36 5255.15 2545.78 -0.72 -0.63 -0.30 1 + 6186.09 5207.04 2294.60 -0.72 -0.63 -0.30 1 + 6088.21 5084.04 2781.18 -0.72 -0.63 -0.30 1 + 6235.94 5035.93 2530.00 -0.72 -0.63 -0.30 1 + 6285.43 4864.85 2765.43 -0.72 -0.63 -0.30 1 + 6058.09 5566.43 1803.52 -0.68 -0.69 -0.27 1 + 5910.36 5614.54 2054.70 -0.68 -0.69 -0.27 1 + 5762.79 5662.49 2305.76 -0.68 -0.69 -0.27 1 + 5615.07 5710.45 2557.15 -0.68 -0.69 -0.27 1 + 5467.50 5758.40 2808.21 -0.68 -0.69 -0.27 1 + 5845.41 5771.26 1812.97 -0.68 -0.69 -0.27 1 + 5697.68 5819.37 2064.15 -0.68 -0.69 -0.27 1 + 5550.11 5867.17 2315.42 -0.68 -0.69 -0.27 1 + 5402.38 5915.28 2566.60 -0.68 -0.69 -0.27 1 + 5632.72 5976.09 1822.42 -0.68 -0.69 -0.27 1 + 5485.15 6023.88 2073.69 -0.68 -0.69 -0.27 1 + 5337.42 6072.00 2324.87 -0.68 -0.69 -0.27 1 + 5420.39 6180.73 1832.05 -0.68 -0.69 -0.27 1 + 5272.66 6228.84 2083.23 -0.68 -0.69 -0.27 1 + 4446.50 5753.71 4250.21 -0.58 -0.67 -0.46 1 + 4630.20 5752.16 4018.78 -0.58 -0.67 -0.46 1 + 4813.71 5750.98 3787.53 -0.58 -0.67 -0.46 1 + 4997.21 5749.43 3556.27 -0.58 -0.67 -0.46 1 + 5181.03 5748.06 3324.98 -0.58 -0.67 -0.46 1 + 4671.97 5562.98 4241.54 -0.58 -0.67 -0.46 1 + 4855.47 5561.43 4010.27 -0.58 -0.67 -0.46 1 + 5038.98 5560.24 3779.03 -0.58 -0.67 -0.46 1 + 5222.61 5558.87 3547.91 -0.58 -0.67 -0.46 1 + 4897.24 5372.24 4233.03 -0.58 -0.67 -0.46 1 + 5080.87 5370.87 4001.91 -0.58 -0.67 -0.46 1 + 5264.38 5369.68 3770.67 -0.58 -0.67 -0.46 1 + 5122.64 5181.68 4224.67 -0.58 -0.67 -0.46 1 + 5306.15 5180.49 3993.42 -0.58 -0.67 -0.46 1 + 4893.00 5981.18 3332.78 -0.53 -0.73 -0.42 1 + 4231.94 6327.15 3564.34 -0.53 -0.73 -0.42 1 + 4470.72 6153.67 3564.34 -0.53 -0.73 -0.42 1 + 4709.61 5980.00 3564.46 -0.53 -0.73 -0.42 1 + 4287.65 6152.67 3795.99 -0.53 -0.73 -0.42 1 + 4526.54 5979.00 3796.11 -0.53 -0.73 -0.42 1 + 4343.23 5978.02 4027.50 -0.53 -0.73 -0.42 1 + 5076.48 5982.46 3062.35 -0.55 -0.76 -0.35 1 + 4837.58 6156.13 3062.23 -0.55 -0.76 -0.35 1 + 4598.81 6329.61 3062.23 -0.55 -0.76 -0.35 1 + 4359.73 6503.27 3062.28 -0.55 -0.76 -0.35 1 + 4120.95 6676.75 3062.28 -0.55 -0.76 -0.35 1 + 5008.96 6140.73 2822.21 -0.55 -0.76 -0.35 1 + 4770.06 6314.40 2822.09 -0.55 -0.76 -0.35 1 + 4531.10 6487.88 2822.26 -0.55 -0.76 -0.35 1 + 4292.21 6661.55 2822.14 -0.55 -0.76 -0.35 1 + 4941.43 6299.01 2582.07 -0.55 -0.76 -0.35 1 + 4702.47 6472.49 2582.24 -0.55 -0.76 -0.35 1 + 4463.58 6646.16 2582.12 -0.55 -0.76 -0.35 1 + 4873.96 6457.26 2342.37 -0.55 -0.76 -0.35 1 + 4635.07 6630.93 2342.25 -0.55 -0.76 -0.35 1 + 4327.82 6961.83 1561.47 -0.58 -0.79 -0.19 1 + 4475.60 6913.69 1310.22 -0.58 -0.79 -0.19 1 + 4623.06 6865.73 1059.02 -0.58 -0.79 -0.19 1 + 4419.01 6836.14 1812.53 -0.58 -0.79 -0.19 1 + 4566.90 6788.17 1561.43 -0.58 -0.79 -0.19 1 + 4714.37 6740.21 1310.22 -0.58 -0.79 -0.19 1 + 4862.14 6692.07 1058.97 -0.58 -0.79 -0.19 1 + 4510.32 6710.61 2063.74 -0.58 -0.79 -0.19 1 + 4658.09 6662.47 1812.49 -0.58 -0.79 -0.19 1 + 4805.68 6614.69 1561.43 -0.58 -0.79 -0.19 1 + 4953.26 6566.54 1310.34 -0.58 -0.79 -0.19 1 + 5100.92 6518.59 1058.97 -0.58 -0.79 -0.19 1 + 4749.21 6536.94 2063.86 -0.58 -0.79 -0.19 1 + 4896.87 6488.99 1812.49 -0.58 -0.79 -0.19 1 + 5044.57 6441.02 1561.55 -0.58 -0.79 -0.19 1 + 5192.23 6393.07 1310.17 -0.58 -0.79 -0.19 1 + 4988.18 6363.47 2063.69 -0.58 -0.79 -0.19 1 + 5135.76 6315.32 1812.61 -0.58 -0.79 -0.19 1 + 5283.54 6267.54 1561.38 -0.58 -0.79 -0.19 1 + 2107.80 6753.11 -4557.89 9999.00 9999.00 9999.00 3 + 3145.09 7796.16 -69.24 9999.00 9999.00 9999.00 3 + 5771.24 4091.57 -4557.80 9999.00 9999.00 9999.00 3 + 2002.06 3509.43 7378.30 9999.00 9999.00 9999.00 3 + 3598.30 314.49 -7608.69 -0.36 -0.03 0.93 1 + 3329.72 384.35 -7709.78 -0.36 -0.03 0.93 1 + 3061.40 454.08 -7811.08 -0.36 -0.03 0.93 1 + 2792.68 523.73 -7912.22 -0.36 -0.03 0.93 1 + 2524.17 593.61 -8013.56 -0.36 -0.03 0.93 1 + 3410.66 101.20 -7689.08 -0.36 -0.03 0.93 1 + 3142.14 170.71 -7790.18 -0.36 -0.03 0.93 1 + 2873.63 240.59 -7891.51 -0.36 -0.03 0.93 1 + 2605.25 310.30 -7992.57 -0.36 -0.03 0.93 1 + 3223.08 -112.44 -7769.47 -0.36 -0.03 0.93 1 + 2954.51 -42.58 -7870.56 -0.36 -0.03 0.93 1 + 2686.13 27.13 -7971.62 -0.36 -0.03 0.93 1 + 3035.65 -325.87 -7849.82 -0.36 -0.03 0.93 1 + 2767.08 -256.01 -7950.91 -0.36 -0.03 0.93 1 + 1919.91 468.60 -8192.58 -0.15 -0.05 0.99 1 + 1828.50 749.45 -8192.61 -0.15 -0.05 0.99 1 + 1725.16 250.09 -8232.62 -0.15 -0.05 0.99 1 + 1634.10 531.00 -8232.57 -0.15 -0.05 0.99 1 + 1542.70 811.84 -8232.61 -0.15 -0.05 0.99 1 + 1530.76 31.64 -8272.58 -0.15 -0.05 0.99 1 + 1439.36 312.49 -8272.62 -0.15 -0.05 0.99 1 + 1348.30 593.39 -8272.57 -0.15 -0.05 0.99 1 + 1256.89 874.24 -8272.61 -0.15 -0.05 0.99 1 + 1336.02 -186.86 -8312.63 -0.15 -0.05 0.99 1 + 1244.96 94.04 -8312.58 -0.15 -0.05 0.99 1 + 1153.55 374.89 -8312.62 -0.15 -0.05 0.99 1 + 1062.35 655.59 -8312.61 -0.15 -0.05 0.99 1 + 971.09 936.64 -8312.60 -0.15 -0.05 0.99 1 + 1050.21 -124.47 -8352.63 -0.15 -0.05 0.99 1 + 959.15 156.44 -8352.58 -0.15 -0.05 0.99 1 + 867.75 437.28 -8352.61 -0.15 -0.05 0.99 1 + 776.55 717.98 -8352.61 -0.15 -0.05 0.99 1 + 764.41 -62.07 -8392.62 -0.15 -0.05 0.99 1 + 673.35 218.83 -8392.57 -0.15 -0.05 0.99 1 + 581.94 499.68 -8392.61 -0.15 -0.05 0.99 1 + 3492.61 669.10 -7627.40 -0.37 -0.12 0.92 1 + 3401.41 949.80 -7627.40 -0.37 -0.12 0.92 1 + 3310.00 1230.64 -7627.44 -0.37 -0.12 0.92 1 + 3218.94 1511.55 -7627.39 -0.37 -0.12 0.92 1 + 3223.20 736.78 -7727.54 -0.37 -0.12 0.92 1 + 3132.00 1017.48 -7727.54 -0.37 -0.12 0.92 1 + 3040.60 1298.33 -7727.57 -0.37 -0.12 0.92 1 + 2953.85 804.49 -7827.92 -0.37 -0.12 0.92 1 + 2862.45 1085.34 -7827.96 -0.37 -0.12 0.92 1 + 2684.45 872.18 -7928.06 -0.37 -0.12 0.92 1 + 2391.06 1003.34 -8013.55 -0.31 -0.18 0.93 1 + 2567.26 1217.79 -7912.20 -0.31 -0.18 0.93 1 + 2743.56 1431.92 -7811.11 -0.31 -0.18 0.93 1 + 2919.61 1646.17 -7709.81 -0.31 -0.18 0.93 1 + 3095.86 1860.65 -7608.71 -0.31 -0.18 0.93 1 + 2290.12 1280.20 -7992.57 -0.31 -0.18 0.93 1 + 2466.17 1494.46 -7891.27 -0.31 -0.18 0.93 1 + 2642.47 1708.58 -7790.18 -0.31 -0.18 0.93 1 + 2818.58 1922.85 -7689.12 -0.31 -0.18 0.93 1 + 2189.03 1556.87 -7971.63 -0.31 -0.18 0.93 1 + 2365.14 1771.14 -7870.58 -0.31 -0.18 0.93 1 + 2541.44 1985.26 -7769.49 -0.31 -0.18 0.93 1 + 2088.00 1833.55 -7950.94 -0.31 -0.18 0.93 1 + 2264.31 2047.67 -7849.85 -0.31 -0.18 0.93 1 + 4579.14 3383.83 -6197.12 -0.59 -0.42 0.70 1 + 4817.92 3306.25 -6041.96 -0.59 -0.42 0.70 1 + 5056.84 3228.72 -5886.59 -0.59 -0.42 0.70 1 + 5336.77 4835.98 -4353.36 -0.64 -0.53 0.55 1 + 5259.17 4680.29 -4591.82 -0.64 -0.53 0.55 1 + 5181.14 4524.61 -4830.27 -0.64 -0.53 0.55 1 + 1160.77 1173.76 -8251.94 -0.19 -0.16 0.97 1 + 1445.46 1111.47 -8205.13 -0.19 -0.16 0.97 1 + 1730.15 1048.81 -8158.10 -0.19 -0.16 0.97 1 + 2014.85 986.15 -8111.06 -0.19 -0.16 0.97 1 + 1349.12 1389.26 -8179.09 -0.19 -0.16 0.97 1 + 1633.82 1326.60 -8132.05 -0.19 -0.16 0.97 1 + 1918.51 1263.94 -8085.01 -0.19 -0.16 0.97 1 + 1537.68 1604.62 -8106.21 -0.19 -0.16 0.97 1 + 1822.38 1541.96 -8059.17 -0.19 -0.16 0.97 1 + 1726.04 1819.75 -8033.13 -0.19 -0.16 0.97 1 + 3335.67 2514.09 -7305.88 -0.40 -0.35 0.84 1 + 3483.25 2717.20 -7150.71 -0.40 -0.35 0.84 1 + 3630.80 2920.54 -6995.43 -0.40 -0.35 0.84 1 + 3778.61 3123.65 -6840.19 -0.40 -0.35 0.84 1 + 3213.02 2777.47 -7253.20 -0.40 -0.35 0.84 1 + 3360.59 2980.59 -7098.03 -0.40 -0.35 0.84 1 + 3508.14 3183.93 -6942.75 -0.40 -0.35 0.84 1 + 3090.43 3040.97 -7200.73 -0.40 -0.35 0.84 1 + 3237.98 3244.31 -7045.45 -0.40 -0.35 0.84 1 + 2967.78 3304.35 -7148.05 -0.40 -0.35 0.84 1 + 4353.48 4092.00 -5907.13 -0.52 -0.47 0.71 1 + 4465.91 4275.04 -5704.77 -0.52 -0.47 0.71 1 + 3989.02 3977.85 -6247.40 -0.52 -0.47 0.71 1 + 4101.59 4160.95 -6044.83 -0.52 -0.47 0.71 1 + 4214.02 4343.99 -5842.46 -0.52 -0.47 0.71 1 + 3849.70 4229.98 -6182.88 -0.52 -0.47 0.71 1 + 3962.27 4413.08 -5980.31 -0.52 -0.47 0.71 1 + 3141.63 2252.78 -7482.91 -0.33 -0.32 0.89 1 + 3021.21 2517.31 -7430.40 -0.33 -0.32 0.89 1 + 2900.88 2781.73 -7378.23 -0.33 -0.32 0.89 1 + 2780.21 3046.27 -7325.79 -0.33 -0.32 0.89 1 + 2659.86 3310.91 -7273.50 -0.33 -0.32 0.89 1 + 2863.59 2307.54 -7565.70 -0.33 -0.32 0.89 1 + 2742.95 2571.85 -7513.38 -0.33 -0.32 0.89 1 + 2622.59 2836.49 -7461.09 -0.33 -0.32 0.89 1 + 2502.19 3100.79 -7408.70 -0.33 -0.32 0.89 1 + 2585.33 2362.08 -7648.68 -0.33 -0.32 0.89 1 + 2464.91 2626.61 -7596.17 -0.33 -0.32 0.89 1 + 2344.51 2890.91 -7543.78 -0.33 -0.32 0.89 1 + 2307.31 2416.61 -7731.58 -0.33 -0.32 0.89 1 + 2186.89 2681.13 -7679.07 -0.33 -0.32 0.89 1 + 2875.28 3607.37 -7047.02 -0.41 -0.43 0.80 1 + 3145.16 3548.43 -6942.14 -0.41 -0.43 0.80 1 + 3414.88 3489.40 -6837.66 -0.41 -0.43 0.80 1 + 3684.52 3430.47 -6732.85 -0.41 -0.43 0.80 1 + 3954.46 3371.65 -6628.19 -0.41 -0.43 0.80 1 + 3012.11 3802.62 -6872.54 -0.41 -0.43 0.80 1 + 3281.74 3743.70 -6767.74 -0.41 -0.43 0.80 1 + 3551.47 3684.66 -6663.26 -0.41 -0.43 0.80 1 + 3821.17 3625.85 -6558.66 -0.41 -0.43 0.80 1 + 3148.69 3997.89 -6698.14 -0.41 -0.43 0.80 1 + 3418.40 3939.08 -6593.55 -0.41 -0.43 0.80 1 + 3688.12 3880.05 -6489.07 -0.41 -0.43 0.80 1 + 3285.35 4193.27 -6523.95 -0.41 -0.43 0.80 1 + 3555.07 4134.24 -6419.47 -0.41 -0.43 0.80 1 + 4593.05 4534.65 -5400.18 -0.50 -0.58 0.65 1 + 4432.30 4767.93 -5316.89 -0.50 -0.58 0.65 1 + 4271.56 5001.20 -5233.60 -0.50 -0.58 0.65 1 + 4110.67 5234.33 -5150.16 -0.50 -0.58 0.65 1 + 4340.02 4596.63 -5539.02 -0.50 -0.58 0.65 1 + 4179.28 4829.90 -5455.73 -0.50 -0.58 0.65 1 + 4018.53 5063.17 -5372.44 -0.50 -0.58 0.65 1 + 4086.99 4658.95 -5677.97 -0.50 -0.58 0.65 1 + 3926.25 4892.22 -5594.68 -0.50 -0.58 0.65 1 + 3833.97 4720.92 -5816.81 -0.50 -0.58 0.65 1 + 3222.91 4871.24 -6020.06 -0.40 -0.56 0.73 1 + 3096.81 4697.46 -6222.77 -0.40 -0.56 0.73 1 + 3492.88 4807.53 -5918.78 -0.40 -0.56 0.73 1 + 3366.78 4634.09 -6121.60 -0.40 -0.56 0.73 1 + 3240.67 4460.31 -6324.31 -0.40 -0.56 0.73 1 + 3636.75 4570.65 -6020.08 -0.40 -0.56 0.73 1 + 3510.64 4396.87 -6222.79 -0.40 -0.56 0.73 1 + 3707.77 5527.19 -5149.97 -0.39 -0.65 0.65 1 + 3436.46 5607.91 -5233.63 -0.39 -0.65 0.65 1 + 3164.94 5688.70 -5316.93 -0.39 -0.65 0.65 1 + 2893.42 5769.48 -5400.22 -0.39 -0.65 0.65 1 + 3573.73 5386.46 -5372.35 -0.39 -0.65 0.65 1 + 3302.21 5467.24 -5455.65 -0.39 -0.65 0.65 1 + 3030.69 5548.03 -5538.94 -0.39 -0.65 0.65 1 + 3439.48 5245.84 -5594.72 -0.39 -0.65 0.65 1 + 3167.95 5326.63 -5678.01 -0.39 -0.65 0.65 1 + 3305.22 5105.18 -5816.73 -0.39 -0.65 0.65 1 + 2877.04 6133.81 -5012.26 -0.41 -0.72 0.55 1 + 3024.83 5930.58 -5167.45 -0.41 -0.72 0.55 1 + 2998.20 6251.05 -4769.68 -0.41 -0.72 0.55 1 + 3145.69 6047.81 -4925.05 -0.41 -0.72 0.55 1 + 3293.48 5844.57 -5080.23 -0.41 -0.72 0.55 1 + 3119.06 6368.28 -4527.28 -0.41 -0.72 0.55 1 + 3266.85 6165.04 -4682.46 -0.41 -0.72 0.55 1 + 3414.34 5961.80 -4837.83 -0.41 -0.72 0.55 1 + 3562.13 5758.56 -4993.01 -0.41 -0.72 0.55 1 + 3240.23 6485.51 -4284.69 -0.41 -0.72 0.55 1 + 3387.71 6282.27 -4440.06 -0.41 -0.72 0.55 1 + 3535.50 6079.03 -4595.24 -0.41 -0.72 0.55 1 + 3683.07 5875.92 -4750.41 -0.41 -0.72 0.55 1 + 3830.78 5672.55 -4905.80 -0.41 -0.72 0.55 1 + 3508.88 6399.51 -4197.47 -0.41 -0.72 0.55 1 + 3656.36 6196.26 -4352.84 -0.41 -0.72 0.55 1 + 3804.15 5993.03 -4508.03 -0.41 -0.72 0.55 1 + 3951.72 5789.91 -4663.19 -0.41 -0.72 0.55 1 + 3777.53 6313.50 -4110.26 -0.41 -0.72 0.55 1 + 3925.01 6110.26 -4265.63 -0.41 -0.72 0.55 1 + 4072.80 5907.02 -4420.81 -0.41 -0.72 0.55 1 + 1984.55 4802.79 -6628.24 -0.29 -0.52 0.80 1 + 2123.90 4564.32 -6732.86 -0.29 -0.52 0.80 1 + 2263.33 4326.19 -6837.60 -0.29 -0.52 0.80 1 + 2402.92 4087.70 -6942.13 -0.29 -0.52 0.80 1 + 2542.37 3849.33 -7046.97 -0.29 -0.52 0.80 1 + 2267.41 4754.67 -6558.71 -0.29 -0.52 0.80 1 + 2406.98 4516.41 -6663.14 -0.29 -0.52 0.80 1 + 2546.43 4278.04 -6767.98 -0.29 -0.52 0.80 1 + 2685.77 4039.81 -6872.50 -0.29 -0.52 0.80 1 + 2550.48 4706.75 -6488.99 -0.29 -0.52 0.80 1 + 2689.84 4468.28 -6593.61 -0.29 -0.52 0.80 1 + 2829.18 4230.05 -6698.13 -0.29 -0.52 0.80 1 + 2833.33 4658.86 -6419.36 -0.29 -0.52 0.80 1 + 2972.68 4420.39 -6523.98 -0.29 -0.52 0.80 1 + 2326.95 3552.87 -7273.46 -0.21 -0.41 0.89 1 + 2037.98 3585.54 -7325.79 -0.21 -0.41 0.89 1 + 1749.32 3618.51 -7378.15 -0.21 -0.41 0.89 1 + 1460.60 3651.16 -7430.40 -0.21 -0.41 0.89 1 + 1171.72 3683.92 -7482.95 -0.21 -0.41 0.89 1 + 2175.85 3337.98 -7408.66 -0.21 -0.41 0.89 1 + 1887.12 3370.62 -7460.90 -0.21 -0.41 0.89 1 + 1598.46 3403.60 -7513.26 -0.21 -0.41 0.89 1 + 1309.82 3436.34 -7565.73 -0.21 -0.41 0.89 1 + 2024.99 3123.06 -7543.77 -0.21 -0.41 0.89 1 + 1736.35 3155.81 -7596.23 -0.21 -0.41 0.89 1 + 1447.69 3188.79 -7648.59 -0.21 -0.41 0.89 1 + 1874.22 2908.25 -7679.09 -0.21 -0.41 0.89 1 + 1585.56 2941.23 -7731.45 -0.21 -0.41 0.89 1 + 2542.31 5786.86 -5566.84 -0.29 -0.64 0.71 1 + 2402.86 5622.97 -5769.33 -0.29 -0.64 0.71 1 + 2263.36 5459.51 -5971.75 -0.29 -0.64 0.71 1 + 2124.00 5295.75 -6174.04 -0.29 -0.64 0.71 1 + 1984.64 5132.04 -6376.68 -0.29 -0.64 0.71 1 + 2685.72 5568.44 -5704.73 -0.29 -0.64 0.71 1 + 2546.36 5404.68 -5907.02 -0.29 -0.64 0.71 1 + 2406.86 5241.22 -6109.44 -0.29 -0.64 0.71 1 + 2267.59 5077.64 -6311.88 -0.29 -0.64 0.71 1 + 2829.22 5350.15 -5842.42 -0.29 -0.64 0.71 1 + 2689.95 5186.57 -6044.86 -0.29 -0.64 0.71 1 + 2550.45 5023.12 -6247.28 -0.29 -0.64 0.71 1 + 2972.81 5132.05 -5980.26 -0.29 -0.64 0.71 1 + 2833.32 4968.59 -6182.68 -0.29 -0.64 0.71 1 + 1803.19 4558.93 -6840.16 -0.21 -0.49 0.84 1 + 1655.61 4355.82 -6995.33 -0.21 -0.49 0.84 1 + 1508.06 4152.47 -7150.60 -0.21 -0.49 0.84 1 + 1360.25 3949.38 -7305.85 -0.21 -0.49 0.84 1 + 1943.95 4320.48 -6942.71 -0.21 -0.49 0.84 1 + 1796.38 4117.36 -7097.87 -0.21 -0.49 0.84 1 + 1648.82 3914.02 -7253.14 -0.21 -0.49 0.84 1 + 2084.81 4082.13 -7045.46 -0.21 -0.49 0.84 1 + 1937.25 3878.78 -7200.73 -0.21 -0.49 0.84 1 + 2225.58 3843.68 -7148.00 -0.21 -0.49 0.84 1 + 8125.85 744.27 -2059.07 -0.95 -0.08 0.30 1 + 8034.64 869.80 -2310.13 -0.95 -0.08 0.30 1 + 7943.34 995.29 -2561.43 -0.95 -0.08 0.30 1 + 6153.50 4710.25 -3281.64 -0.71 -0.55 0.44 1 + 5964.38 4779.13 -3497.69 -0.71 -0.55 0.44 1 + 5775.26 4848.01 -3713.75 -0.71 -0.55 0.44 1 + 4110.91 6947.11 -2378.56 -0.50 -0.84 0.22 1 + 4271.52 6917.71 -2132.67 -0.50 -0.84 0.22 1 + 4432.25 6887.89 -1886.77 -0.50 -0.84 0.22 1 + 3024.65 7274.19 -2993.56 -0.41 -0.82 0.40 1 + 2877.09 7226.14 -3244.86 -0.41 -0.82 0.40 1 + 3293.45 7157.61 -2955.75 -0.41 -0.82 0.40 1 + 3145.64 7109.74 -3206.86 -0.41 -0.82 0.40 1 + 2998.08 7061.69 -3458.15 -0.41 -0.82 0.40 1 + 3561.99 7041.22 -2917.75 -0.41 -0.82 0.40 1 + 3414.44 6993.16 -3169.04 -0.41 -0.82 0.40 1 + 3266.63 6945.29 -3420.15 -0.41 -0.82 0.40 1 + 3119.07 6897.24 -3671.44 -0.41 -0.82 0.40 1 + 3830.79 6924.64 -2879.93 -0.41 -0.82 0.40 1 + 3682.98 6876.76 -3131.04 -0.41 -0.82 0.40 1 + 3535.43 6828.71 -3382.33 -0.41 -0.82 0.40 1 + 3387.85 6780.76 -3633.39 -0.41 -0.82 0.40 1 + 3240.06 6732.78 -3884.74 -0.41 -0.82 0.40 1 + 3951.78 6760.18 -3093.22 -0.41 -0.82 0.40 1 + 3803.97 6712.31 -3344.33 -0.41 -0.82 0.40 1 + 3656.42 6664.26 -3595.63 -0.41 -0.82 0.40 1 + 3508.84 6616.31 -3846.69 -0.41 -0.82 0.40 1 + 4072.77 6595.73 -3306.52 -0.41 -0.82 0.40 1 + 3924.96 6547.86 -3557.63 -0.41 -0.82 0.40 1 + 3777.41 6499.81 -3808.92 -0.41 -0.82 0.40 1 + 2893.38 7410.29 -2745.39 -0.39 -0.87 0.29 1 + 3164.91 7299.66 -2710.37 -0.39 -0.87 0.29 1 + 3436.44 7189.02 -2675.36 -0.39 -0.87 0.29 1 + 3707.88 7078.18 -2640.25 -0.39 -0.87 0.29 1 + 3030.52 7435.41 -2485.19 -0.39 -0.87 0.29 1 + 3302.04 7324.78 -2450.18 -0.39 -0.87 0.29 1 + 3573.57 7214.15 -2415.16 -0.39 -0.87 0.29 1 + 3167.97 7460.69 -2225.04 -0.39 -0.87 0.29 1 + 3439.50 7350.06 -2190.02 -0.39 -0.87 0.29 1 + 3305.10 7485.82 -1964.84 -0.39 -0.87 0.29 1 + 6289.24 629.64 5566.85 -0.70 -0.07 -0.71 1 + 5692.91 383.57 6174.05 -0.70 -0.07 -0.71 1 + 5494.15 301.61 6376.69 -0.70 -0.07 -0.71 1 + 6125.83 833.52 5704.74 -0.70 -0.07 -0.71 1 + 5927.02 751.59 5907.03 -0.70 -0.07 -0.71 1 + 5728.46 669.43 6109.45 -0.70 -0.07 -0.71 1 + 5529.85 587.53 6311.90 -0.70 -0.07 -0.71 1 + 5962.57 1037.46 5842.43 -0.70 -0.07 -0.71 1 + 5763.96 955.55 6044.87 -0.70 -0.07 -0.71 1 + 5565.40 873.39 6247.30 -0.70 -0.07 -0.71 1 + 5799.51 1241.42 5980.28 -0.70 -0.07 -0.71 1 + 5600.95 1159.26 6182.70 -0.70 -0.07 -0.71 1 + 6402.43 1818.29 5149.98 -0.74 -0.17 -0.65 1 + 6395.36 1535.32 5233.65 -0.74 -0.17 -0.65 1 + 6388.29 1252.13 5316.94 -0.74 -0.17 -0.65 1 + 5628.75 1559.86 6020.09 -0.65 -0.21 -0.73 1 + 5424.51 1493.63 6222.80 -0.65 -0.21 -0.73 1 + 5651.59 1836.31 5918.80 -0.65 -0.21 -0.73 1 + 5447.67 1769.97 6121.62 -0.65 -0.21 -0.73 1 + 5243.42 1703.74 6324.34 -0.65 -0.21 -0.73 1 + 5470.75 2046.34 6020.10 -0.65 -0.21 -0.73 1 + 5266.51 1980.11 6222.81 -0.65 -0.21 -0.73 1 + 5732.04 2966.96 5400.20 -0.70 -0.30 -0.65 1 + 5904.22 2741.99 5316.91 -0.70 -0.30 -0.65 1 + 6076.40 2517.03 5233.62 -0.70 -0.30 -0.65 1 + 3113.35 2291.72 7482.91 -0.41 -0.21 -0.89 1 + 3327.72 2095.45 7430.41 -0.41 -0.21 -0.89 1 + 3756.31 1702.79 7325.80 -0.41 -0.21 -0.89 1 + 3970.80 1506.55 7273.51 -0.41 -0.21 -0.89 1 + 3079.50 2010.37 7565.70 -0.41 -0.21 -0.89 1 + 3293.60 1813.95 7513.38 -0.41 -0.21 -0.89 1 + 3508.10 1617.71 7461.09 -0.41 -0.21 -0.89 1 + 3722.25 1421.53 7408.70 -0.41 -0.21 -0.89 1 + 3045.39 1728.87 7648.68 -0.41 -0.21 -0.89 1 + 3259.75 1532.60 7596.17 -0.41 -0.21 -0.89 1 + 3473.91 1336.42 7543.78 -0.41 -0.21 -0.89 1 + 3011.33 1447.61 7731.58 -0.41 -0.21 -0.89 1 + 3225.70 1251.34 7679.08 -0.41 -0.21 -0.89 1 + 4138.42 2628.41 6840.20 -0.46 -0.27 -0.85 1 + 3634.41 2197.47 7253.20 -0.46 -0.27 -0.85 1 + 3873.19 2275.05 7098.04 -0.46 -0.27 -0.85 1 + 4112.17 2352.55 6942.76 -0.46 -0.27 -0.85 1 + 3847.13 1999.46 7200.74 -0.46 -0.27 -0.85 1 + 4086.11 2076.95 7045.46 -0.46 -0.27 -0.85 1 + 4059.72 1801.42 7148.06 -0.46 -0.27 -0.85 1 + 6248.44 3581.16 4353.36 -0.70 -0.45 -0.55 1 + 6076.40 3555.48 4591.82 -0.70 -0.45 -0.55 1 + 5904.22 3529.38 4830.28 -0.70 -0.45 -0.55 1 + 4633.25 3309.35 6197.13 -0.58 -0.43 -0.70 1 + 4633.25 3560.42 6041.96 -0.58 -0.43 -0.70 1 + 4144.35 2932.40 6720.40 -0.43 -0.35 -0.83 1 + 3905.37 2854.91 6875.68 -0.43 -0.35 -0.83 1 + 3666.59 2777.32 7030.85 -0.43 -0.35 -0.83 1 + 3427.55 2699.59 7186.20 -0.43 -0.35 -0.83 1 + 3188.77 2622.01 7341.36 -0.43 -0.35 -0.83 1 + 3921.87 3123.74 6754.58 -0.43 -0.35 -0.83 1 + 3682.89 3046.25 6909.86 -0.43 -0.35 -0.83 1 + 3444.05 2968.43 7065.09 -0.43 -0.35 -0.83 1 + 3205.07 2890.94 7220.37 -0.43 -0.35 -0.83 1 + 3699.39 3315.09 6788.75 -0.43 -0.35 -0.83 1 + 3460.55 3237.27 6943.99 -0.43 -0.35 -0.83 1 + 3221.57 3159.77 7099.27 -0.43 -0.35 -0.83 1 + 3477.19 3506.14 6823.10 -0.43 -0.35 -0.83 1 + 3238.20 3428.64 6978.37 -0.43 -0.35 -0.83 1 + 4386.04 4269.77 5785.33 -0.50 -0.45 -0.73 1 + 4385.98 3516.13 6251.18 -0.50 -0.45 -0.73 1 + 4385.98 3265.07 6406.35 -0.50 -0.45 -0.73 1 + 4165.10 4212.02 5972.76 -0.50 -0.45 -0.73 1 + 4165.00 3960.84 6128.13 -0.50 -0.45 -0.73 1 + 4165.14 3709.57 6283.25 -0.50 -0.45 -0.73 1 + 4165.04 3458.39 6438.61 -0.50 -0.45 -0.73 1 + 3944.16 4154.27 6160.19 -0.50 -0.45 -0.73 1 + 3944.31 3903.01 6315.31 -0.50 -0.45 -0.73 1 + 3944.21 3651.82 6470.68 -0.50 -0.45 -0.73 1 + 3723.66 4096.54 6347.53 -0.50 -0.45 -0.73 1 + 3723.55 3845.35 6502.90 -0.50 -0.45 -0.73 1 + 4428.54 4712.49 5396.23 -0.54 -0.61 -0.59 1 + 4401.11 4928.98 5197.20 -0.54 -0.61 -0.59 1 + 4373.94 5145.47 4998.42 -0.54 -0.61 -0.59 1 + 4346.69 5361.95 4799.21 -0.54 -0.61 -0.59 1 + 4319.39 5578.61 4600.30 -0.54 -0.61 -0.59 1 + 4629.09 4742.07 5181.60 -0.54 -0.61 -0.59 1 + 4601.96 4958.37 4982.52 -0.54 -0.61 -0.59 1 + 4574.67 5175.04 4783.61 -0.54 -0.61 -0.59 1 + 4547.36 5391.34 4584.71 -0.54 -0.61 -0.59 1 + 4829.94 4771.46 4966.93 -0.54 -0.61 -0.59 1 + 4802.51 4987.94 4767.90 -0.54 -0.61 -0.59 1 + 4775.21 5204.25 4569.00 -0.54 -0.61 -0.59 1 + 5030.61 4800.86 4752.44 -0.54 -0.61 -0.59 1 + 5003.18 5017.34 4553.41 -0.54 -0.61 -0.59 1 + 3188.81 5393.74 5628.27 -0.43 -0.59 -0.68 1 + 3427.71 5220.08 5628.40 -0.43 -0.59 -0.68 1 + 3666.49 5046.60 5628.40 -0.43 -0.59 -0.68 1 + 3905.57 4872.93 5628.35 -0.43 -0.59 -0.68 1 + 4144.34 4699.45 5628.35 -0.43 -0.59 -0.68 1 + 3205.25 5165.15 5814.70 -0.43 -0.59 -0.68 1 + 3444.15 4991.49 5814.83 -0.43 -0.59 -0.68 1 + 3683.11 4818.00 5814.65 -0.43 -0.59 -0.68 1 + 3922.01 4644.34 5814.78 -0.43 -0.59 -0.68 1 + 3221.69 4936.55 6001.12 -0.43 -0.59 -0.68 1 + 3460.65 4763.07 6000.94 -0.43 -0.59 -0.68 1 + 3699.55 4589.41 6001.07 -0.43 -0.59 -0.68 1 + 3238.32 4708.31 6187.36 -0.43 -0.59 -0.68 1 + 3477.22 4534.66 6187.49 -0.43 -0.59 -0.68 1 + 3421.85 5463.22 5409.95 -0.46 -0.63 -0.62 1 + 4112.20 5157.59 5209.20 -0.46 -0.63 -0.62 1 + 3873.43 5331.07 5209.20 -0.46 -0.63 -0.62 1 + 3634.53 5504.73 5209.07 -0.46 -0.63 -0.62 1 + 4086.06 5372.76 5008.63 -0.46 -0.63 -0.62 1 + 3847.16 5546.42 5008.50 -0.46 -0.63 -0.62 1 + 4059.78 5587.75 4807.94 -0.46 -0.63 -0.62 1 + 3970.86 5831.82 4600.32 -0.41 -0.70 -0.59 1 + 3756.29 5790.85 4799.28 -0.41 -0.70 -0.59 1 + 3542.14 5749.87 4998.31 -0.41 -0.70 -0.59 1 + 3327.74 5708.90 5197.09 -0.41 -0.70 -0.59 1 + 3113.30 5668.11 5396.18 -0.41 -0.70 -0.59 1 + 3722.31 5990.77 4584.72 -0.41 -0.70 -0.59 1 + 3507.91 5949.80 4783.50 -0.41 -0.70 -0.59 1 + 3293.77 5908.82 4982.53 -0.41 -0.70 -0.59 1 + 3079.50 5868.02 5181.44 -0.41 -0.70 -0.59 1 + 3473.94 6149.72 4568.94 -0.41 -0.70 -0.59 1 + 3259.67 6108.92 4767.84 -0.41 -0.70 -0.59 1 + 3045.53 6067.94 4966.88 -0.41 -0.70 -0.59 1 + 3225.70 6308.84 4553.29 -0.41 -0.70 -0.59 1 + 3011.56 6267.87 4752.32 -0.41 -0.70 -0.59 1 + 8314.83 1271.38 -265.07 -0.99 -0.10 0.06 1 + 8314.83 1116.21 -516.14 -0.99 -0.10 0.06 1 + 8314.82 960.81 -767.30 -0.99 -0.10 0.06 1 + 7852.11 3017.01 255.16 -0.95 -0.31 -0.06 1 + 7943.31 2736.31 255.16 -0.95 -0.31 -0.06 1 + 8034.55 2455.41 255.30 -0.95 -0.31 -0.06 1 + 7200.40 4235.53 -1018.61 -0.86 -0.50 0.06 1 + 7291.61 4110.00 -767.55 -0.86 -0.50 0.06 1 + 7382.80 3984.47 -516.23 -0.86 -0.50 0.06 1 + 6253.28 5539.13 1018.61 -0.75 -0.66 -0.06 1 + 6162.08 5664.67 767.55 -0.75 -0.66 -0.06 1 + 6070.88 5790.18 516.23 -0.75 -0.66 -0.06 1 + 5420.05 6338.59 -1018.25 -0.65 -0.76 0.10 1 + 5291.02 6414.87 -1272.46 -0.65 -0.76 0.10 1 + 5773.57 6070.24 -763.97 -0.65 -0.76 0.10 1 + 5644.35 6146.61 -1018.34 -0.65 -0.76 0.10 1 + 5515.31 6222.90 -1272.55 -0.65 -0.76 0.10 1 + 5868.98 5954.75 -1018.34 -0.65 -0.76 0.10 1 + 5739.76 6031.13 -1272.70 -0.65 -0.76 0.10 1 + 5295.80 6535.49 -255.16 -0.59 -0.81 0.06 1 + 5057.02 6708.97 -255.16 -0.59 -0.81 0.06 1 + 4818.06 6882.55 -255.30 -0.59 -0.81 0.06 1 + 4579.19 7056.15 -255.10 -0.59 -0.81 0.06 1 + 5167.16 6609.59 -510.40 -0.59 -0.81 0.06 1 + 4928.38 6783.07 -510.40 -0.59 -0.81 0.06 1 + 4689.42 6956.64 -510.55 -0.59 -0.81 0.06 1 + 5038.66 6683.89 -765.71 -0.59 -0.81 0.06 1 + 4799.70 6857.46 -765.85 -0.59 -0.81 0.06 1 + 4910.02 6757.98 -1020.95 -0.59 -0.81 0.06 1 + 4718.01 6860.16 -1272.50 -0.52 -0.85 0.10 1 + 4605.24 6959.31 -1018.02 -0.52 -0.85 0.10 1 + 4492.89 7058.45 -763.65 -0.52 -0.85 0.10 1 + 4380.21 7157.47 -509.38 -0.52 -0.85 0.10 1 + 4267.58 7256.82 -254.96 -0.52 -0.85 0.10 1 + 4465.97 7014.31 -1272.46 -0.52 -0.85 0.10 1 + 4353.29 7113.33 -1018.18 -0.52 -0.85 0.10 1 + 4240.94 7212.47 -763.81 -0.52 -0.85 0.10 1 + 4128.40 7311.69 -509.59 -0.52 -0.85 0.10 1 + 4214.02 7168.33 -1272.62 -0.52 -0.85 0.10 1 + 4101.49 7267.55 -1018.40 -0.52 -0.85 0.10 1 + 3989.14 7366.69 -764.03 -0.52 -0.85 0.10 1 + 3962.22 7322.55 -1272.83 -0.52 -0.85 0.10 1 + 3849.87 7421.68 -1018.47 -0.52 -0.85 0.10 1 + 3479.01 7560.23 1295.27 -0.46 -0.88 -0.10 1 + 3626.80 7512.22 1044.10 -0.46 -0.88 -0.10 1 + 3774.37 7464.27 793.04 -0.46 -0.88 -0.10 1 + 3922.08 7416.28 541.64 -0.46 -0.88 -0.10 1 + 4069.65 7368.33 290.58 -0.46 -0.88 -0.10 1 + 3739.90 7421.75 1301.47 -0.46 -0.88 -0.10 1 + 3887.69 7373.74 1050.31 -0.46 -0.88 -0.10 1 + 4035.17 7325.81 799.01 -0.46 -0.88 -0.10 1 + 4182.97 7277.80 547.85 -0.46 -0.88 -0.10 1 + 4000.79 7283.27 1307.68 -0.46 -0.88 -0.10 1 + 4148.26 7235.34 1056.38 -0.46 -0.88 -0.10 1 + 4296.06 7187.33 805.22 -0.46 -0.88 -0.10 1 + 4261.42 7145.12 1313.74 -0.46 -0.88 -0.10 1 + 4409.22 7097.11 1062.58 -0.46 -0.88 -0.10 1 + 3335.75 7658.88 1018.60 -0.40 -0.91 -0.06 1 + 3508.31 7633.63 257.10 -0.40 -0.91 -0.06 1 + 3360.74 7681.58 508.16 -0.40 -0.91 -0.06 1 + 3212.94 7729.59 759.32 -0.40 -0.91 -0.06 1 + 3238.10 7752.51 249.11 -0.40 -0.91 -0.06 1 + 3090.30 7800.52 500.27 -0.40 -0.91 -0.06 1 + 2967.82 7871.14 241.13 -0.40 -0.91 -0.06 1 + 8314.83 -1271.39 265.07 -0.99 0.10 -0.06 1 + 8314.83 -1116.23 516.14 -0.99 0.10 -0.06 1 + 8314.82 -960.83 767.30 -0.99 0.10 -0.06 1 + 7409.21 694.56 3929.47 -0.90 -0.03 -0.45 1 + 7521.86 527.48 3713.79 -0.90 -0.03 -0.45 1 + 7634.37 360.59 3497.75 -0.90 -0.03 -0.45 1 + 7877.44 1762.91 2378.56 -0.95 -0.21 -0.22 1 + 7899.11 1924.74 2132.67 -0.95 -0.21 -0.22 1 + 7920.42 2086.83 1886.77 -0.95 -0.21 -0.22 1 + 7746.90 2848.53 1640.88 -0.90 -0.39 -0.22 1 + 7634.39 2967.14 1886.78 -0.90 -0.39 -0.22 1 + 7521.87 3085.75 2132.67 -0.90 -0.39 -0.22 1 + 7160.05 3546.93 2640.54 -0.83 -0.47 -0.29 1 + 7005.77 3796.15 2675.31 -0.83 -0.47 -0.29 1 + 6851.13 4045.25 2710.32 -0.83 -0.47 -0.29 1 + 6381.25 4396.78 3281.64 -0.74 -0.50 -0.44 1 + 6388.32 4195.63 3497.69 -0.74 -0.50 -0.44 1 + 6395.39 3994.47 3713.75 -0.74 -0.50 -0.44 1 + 5693.57 5522.29 2812.60 -0.72 -0.63 -0.30 1 + 5841.14 5474.34 2561.54 -0.72 -0.63 -0.30 1 + 5988.87 5426.23 2310.36 -0.72 -0.63 -0.30 1 + 4176.36 6501.80 3332.83 -0.53 -0.73 -0.42 1 + 4415.14 6328.32 3332.83 -0.53 -0.73 -0.42 1 + 4654.03 6154.65 3332.95 -0.53 -0.73 -0.42 1 + 3865.79 6703.68 3324.93 -0.46 -0.76 -0.46 1 + 3923.85 6529.36 3556.17 -0.46 -0.76 -0.46 1 + 3981.92 6355.39 3787.44 -0.46 -0.76 -0.46 1 + 4039.79 6181.07 4018.85 -0.46 -0.76 -0.46 1 + 4097.97 6006.91 4250.23 -0.46 -0.76 -0.46 1 + 3673.04 6684.83 3547.75 -0.46 -0.76 -0.46 1 + 3730.79 6510.69 3779.04 -0.46 -0.76 -0.46 1 + 3788.97 6336.54 4010.43 -0.46 -0.76 -0.46 1 + 3846.92 6162.41 4241.54 -0.46 -0.76 -0.46 1 + 3479.97 6666.17 3770.62 -0.46 -0.76 -0.46 1 + 3538.03 6491.85 4001.86 -0.46 -0.76 -0.46 1 + 3595.98 6317.71 4232.98 -0.46 -0.76 -0.46 1 + 3287.10 6647.51 3993.31 -0.46 -0.76 -0.46 1 + 3345.16 6473.19 4224.56 -0.46 -0.76 -0.46 1 + 3786.93 6979.36 2808.23 -0.45 -0.85 -0.27 1 + 3695.80 7104.96 2556.93 -0.45 -0.85 -0.27 1 + 3604.60 7230.49 2305.87 -0.45 -0.85 -0.27 1 + 3513.23 7356.18 2054.53 -0.45 -0.85 -0.27 1 + 3422.03 7481.71 1803.47 -0.45 -0.85 -0.27 1 + 3956.20 6965.98 2566.46 -0.45 -0.85 -0.27 1 + 3865.07 7091.59 2315.17 -0.45 -0.85 -0.27 1 + 3773.63 7217.20 2064.06 -0.45 -0.85 -0.27 1 + 3682.50 7342.80 1812.77 -0.45 -0.85 -0.27 1 + 4125.47 6952.60 2324.70 -0.45 -0.85 -0.27 1 + 4034.03 7078.21 2073.59 -0.45 -0.85 -0.27 1 + 3942.89 7203.82 1822.30 -0.45 -0.85 -0.27 1 + 4294.48 6939.46 2083.21 -0.45 -0.85 -0.27 1 + 4203.35 7065.07 1831.92 -0.45 -0.85 -0.27 1 + 3492.65 7121.40 2812.54 -0.37 -0.88 -0.30 1 + 3040.70 7492.41 2294.47 -0.37 -0.88 -0.30 1 + 3131.91 7366.88 2545.53 -0.37 -0.88 -0.30 1 + 3223.04 7241.27 2796.82 -0.37 -0.88 -0.30 1 + 2862.59 7486.90 2529.96 -0.37 -0.88 -0.30 1 + 2953.72 7361.29 2781.25 -0.37 -0.88 -0.30 1 + 2684.42 7481.16 2765.36 -0.37 -0.88 -0.30 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 2037.98 3585.54 -7325.79 9999.00 9999.00 9999.00 3 + 6047.81 5839.17 -57.29 9999.00 9999.00 9999.00 3 + 5674.72 4224.42 4557.80 9999.00 9999.00 9999.00 3 + 7807.99 3157.93 -36.51 9999.00 9999.00 9999.00 3 + 8417.36 288.28 75.09 9999.00 9999.00 9999.00 3 + 7073.94 -82.20 4557.89 9999.00 9999.00 9999.00 3 + 1838.04 2094.54 -7911.51 -0.20 -0.28 0.94 1 + 2000.95 2318.98 -7810.12 -0.20 -0.28 0.94 1 + 1549.63 2132.88 -7962.04 -0.20 -0.28 0.94 1 + 1712.69 2357.18 -7860.95 -0.20 -0.28 0.94 1 + 1875.60 2581.62 -7759.56 -0.20 -0.28 0.94 1 + 1424.23 2395.17 -7911.57 -0.20 -0.28 0.94 1 + 1587.14 2619.61 -7810.18 -0.20 -0.28 0.94 1 + 315.20 2220.96 -8111.06 -0.09 -0.23 0.97 1 + 462.78 1969.56 -8158.10 -0.09 -0.23 0.97 1 + 610.35 1718.17 -8205.13 -0.09 -0.23 0.97 1 + 757.93 1466.71 -8251.93 -0.09 -0.23 0.97 1 + 609.19 2215.36 -8084.97 -0.09 -0.23 0.97 1 + 756.76 1963.97 -8132.01 -0.09 -0.23 0.97 1 + 904.34 1712.57 -8179.05 -0.09 -0.23 0.97 1 + 903.32 2209.62 -8059.18 -0.09 -0.23 0.97 1 + 1050.90 1958.23 -8106.22 -0.09 -0.23 0.97 1 + 1197.31 2204.03 -8033.09 -0.09 -0.23 0.97 1 + 2578.18 6203.37 -5068.76 -0.30 -0.77 0.55 1 + 2702.13 6325.69 -4830.30 -0.30 -0.77 0.55 1 + 2826.09 6448.02 -4591.84 -0.30 -0.77 0.55 1 + 2949.95 6570.17 -4353.23 -0.30 -0.77 0.55 1 + 2421.33 6386.51 -4898.49 -0.30 -0.77 0.55 1 + 2545.28 6508.84 -4660.03 -0.30 -0.77 0.55 1 + 2669.23 6631.17 -4421.57 -0.30 -0.77 0.55 1 + 2264.65 6569.97 -4728.17 -0.30 -0.77 0.55 1 + 2388.60 6692.30 -4489.71 -0.30 -0.77 0.55 1 + 2107.80 6753.11 -4557.89 -0.30 -0.77 0.55 1 + 1360.27 6010.30 -5731.41 -0.21 -0.69 0.70 1 + 1507.84 5807.19 -5886.58 -0.21 -0.69 0.70 1 + 1655.63 5603.95 -6041.76 -0.21 -0.69 0.70 1 + 1803.11 5400.71 -6197.13 -0.21 -0.69 0.70 1 + 1648.66 5968.75 -5683.54 -0.21 -0.69 0.70 1 + 1796.23 5765.63 -5838.70 -0.21 -0.69 0.70 1 + 1944.02 5562.40 -5993.89 -0.21 -0.69 0.70 1 + 1937.14 5927.37 -5635.82 -0.21 -0.69 0.70 1 + 2084.93 5724.14 -5791.00 -0.21 -0.69 0.70 1 + 2225.54 5885.82 -5587.94 -0.21 -0.69 0.70 1 + 1171.72 6250.86 -5522.01 -0.21 -0.75 0.63 1 + 1460.51 6208.82 -5476.57 -0.21 -0.75 0.63 1 + 1749.17 6167.09 -5431.27 -0.21 -0.75 0.63 1 + 2038.05 6125.18 -5385.63 -0.21 -0.75 0.63 1 + 2326.93 6083.33 -5340.34 -0.21 -0.75 0.63 1 + 1309.71 6395.82 -5304.98 -0.21 -0.75 0.63 1 + 1598.37 6354.03 -5259.32 -0.21 -0.75 0.63 1 + 1887.25 6312.18 -5214.04 -0.21 -0.75 0.63 1 + 2175.82 6270.27 -5168.58 -0.21 -0.75 0.63 1 + 1447.57 6541.03 -5087.73 -0.21 -0.75 0.63 1 + 1736.36 6498.99 -5042.29 -0.21 -0.75 0.63 1 + 2024.93 6457.08 -4996.83 -0.21 -0.75 0.63 1 + 1585.34 6686.11 -4870.68 -0.21 -0.75 0.63 1 + 1874.13 6644.08 -4825.24 -0.21 -0.75 0.63 1 + 812.83 3519.36 -7608.69 -0.08 -0.35 0.93 1 + 663.40 3285.52 -7709.78 -0.08 -0.35 0.93 1 + 514.17 3051.88 -7811.08 -0.08 -0.35 0.93 1 + 364.88 2817.84 -7912.22 -0.08 -0.35 0.93 1 + 215.44 2584.06 -8013.56 -0.08 -0.35 0.93 1 + 957.70 3275.00 -7689.08 -0.08 -0.35 0.93 1 + 808.61 3041.10 -7790.18 -0.08 -0.35 0.93 1 + 659.18 2807.32 -7891.51 -0.08 -0.35 0.93 1 + 509.95 2573.62 -7992.57 -0.08 -0.35 0.93 1 + 1102.92 3030.59 -7769.47 -0.08 -0.35 0.93 1 + 953.48 2796.74 -7870.56 -0.08 -0.35 0.93 1 + 804.25 2563.05 -7971.62 -0.08 -0.35 0.93 1 + 1247.98 2786.37 -7849.82 -0.08 -0.35 0.93 1 + 1098.55 2552.53 -7950.91 -0.08 -0.35 0.93 1 + 1038.67 3995.52 -7341.35 -0.14 -0.53 0.83 1 + 1186.23 4198.87 -7186.08 -0.14 -0.53 0.83 1 + 1333.80 4401.99 -7030.91 -0.14 -0.53 0.83 1 + 1481.60 4605.31 -6875.55 -0.14 -0.53 0.83 1 + 1629.17 4808.43 -6720.39 -0.14 -0.53 0.83 1 + 893.87 4222.79 -7220.26 -0.14 -0.53 0.83 1 + 1041.43 4426.14 -7064.99 -0.14 -0.53 0.83 1 + 1189.24 4629.23 -6909.74 -0.14 -0.53 0.83 1 + 1336.80 4832.58 -6754.47 -0.14 -0.53 0.83 1 + 749.07 4450.06 -7099.17 -0.14 -0.53 0.83 1 + 896.88 4653.15 -6943.92 -0.14 -0.53 0.83 1 + 1044.44 4856.50 -6788.65 -0.14 -0.53 0.83 1 + 604.61 4677.17 -6978.32 -0.14 -0.53 0.83 1 + 752.17 4880.52 -6823.05 -0.14 -0.53 0.83 1 + 2950.15 6831.94 -3929.47 -0.30 -0.84 0.45 1 + 2826.06 6990.70 -3713.79 -0.30 -0.84 0.45 1 + 2702.10 7149.28 -3497.75 -0.30 -0.84 0.45 1 + 2578.14 7307.86 -3281.70 -0.30 -0.84 0.45 1 + 2669.36 6920.23 -3953.81 -0.30 -0.84 0.45 1 + 2545.40 7078.80 -3737.76 -0.30 -0.84 0.45 1 + 2421.45 7237.38 -3521.71 -0.30 -0.84 0.45 1 + 2388.56 7008.62 -3977.91 -0.30 -0.84 0.45 1 + 2264.60 7167.20 -3761.86 -0.30 -0.84 0.45 1 + 2107.90 7096.72 -4001.88 -0.30 -0.84 0.45 1 + 1984.55 7998.61 -1738.54 -0.29 -0.92 0.25 1 + 2123.90 7890.61 -1975.50 -0.29 -0.92 0.25 1 + 2263.33 7782.94 -2212.33 -0.29 -0.92 0.25 1 + 2402.92 7674.87 -2449.23 -0.29 -0.92 0.25 1 + 2542.37 7567.10 -2686.29 -0.29 -0.92 0.25 1 + 2267.41 7916.39 -1718.80 -0.29 -0.92 0.25 1 + 2406.98 7808.42 -1955.48 -0.29 -0.92 0.25 1 + 2546.43 7700.65 -2192.54 -0.29 -0.92 0.25 1 + 2685.77 7592.76 -2429.26 -0.29 -0.92 0.25 1 + 2550.48 7834.20 -1698.78 -0.29 -0.92 0.25 1 + 2689.84 7726.20 -1935.74 -0.29 -0.92 0.25 1 + 2829.18 7618.31 -2172.47 -0.29 -0.92 0.25 1 + 2833.33 7752.08 -1678.81 -0.29 -0.92 0.25 1 + 2972.68 7644.09 -1915.77 -0.29 -0.92 0.25 1 + 1509.64 7150.89 -4118.86 -0.20 -0.83 0.51 1 + 1364.98 7041.91 -4352.20 -0.20 -0.83 0.51 1 + 1798.86 7100.30 -4087.45 -0.20 -0.83 0.51 1 + 1654.20 6991.31 -4320.78 -0.20 -0.83 0.51 1 + 1509.68 6882.03 -4553.98 -0.20 -0.83 0.51 1 + 1943.25 6940.41 -4289.41 -0.20 -0.83 0.51 1 + 1798.90 6831.43 -4522.56 -0.20 -0.83 0.51 1 + 2326.95 7497.12 -3052.74 -0.21 -0.90 0.39 1 + 2037.98 7556.36 -3069.96 -0.21 -0.90 0.39 1 + 1749.32 7615.85 -3087.01 -0.21 -0.90 0.39 1 + 1460.60 7675.01 -3104.18 -0.21 -0.90 0.39 1 + 1171.72 7734.46 -3121.51 -0.21 -0.90 0.39 1 + 2175.85 7427.08 -3296.76 -0.21 -0.90 0.39 1 + 1887.12 7486.25 -3313.94 -0.21 -0.90 0.39 1 + 1598.46 7545.73 -3330.98 -0.21 -0.90 0.39 1 + 1309.82 7605.11 -3348.26 -0.21 -0.90 0.39 1 + 2024.99 7356.97 -3540.74 -0.21 -0.90 0.39 1 + 1736.35 7416.35 -3558.01 -0.21 -0.90 0.39 1 + 1447.69 7475.84 -3575.05 -0.21 -0.90 0.39 1 + 1874.22 7287.08 -3784.81 -0.21 -0.90 0.39 1 + 1585.56 7346.56 -3801.85 -0.21 -0.90 0.39 1 + 1803.19 7958.13 -2059.07 -0.21 -0.93 0.30 1 + 1655.61 7910.18 -2310.13 -0.21 -0.93 0.30 1 + 1508.06 7862.13 -2561.43 -0.21 -0.93 0.30 1 + 1360.25 7814.25 -2812.54 -0.21 -0.93 0.30 1 + 1943.95 7848.76 -2294.47 -0.21 -0.93 0.30 1 + 1796.38 7800.81 -2545.53 -0.21 -0.93 0.30 1 + 1648.82 7752.76 -2796.82 -0.21 -0.93 0.30 1 + 2084.81 7739.61 -2529.96 -0.21 -0.93 0.30 1 + 1937.25 7691.56 -2781.25 -0.21 -0.93 0.30 1 + 2225.58 7630.24 -2765.36 -0.21 -0.93 0.30 1 + 6696.45 535.05 5068.77 -0.83 -0.05 -0.55 1 + 6851.10 615.13 4830.31 -0.83 -0.05 -0.55 1 + 7005.74 695.21 4591.85 -0.83 -0.05 -0.55 1 + 2209.67 -386.53 8111.06 -0.25 -0.01 -0.97 1 + 2016.18 -168.50 8158.10 -0.25 -0.01 -0.97 1 + 1822.69 49.54 8205.13 -0.25 -0.01 -0.97 1 + 1629.14 267.60 8251.93 -0.25 -0.01 -0.97 1 + 2295.19 -105.21 8084.97 -0.25 -0.01 -0.97 1 + 2101.70 112.83 8132.01 -0.25 -0.01 -0.97 1 + 1908.21 330.87 8179.05 -0.25 -0.01 -0.97 1 + 2380.63 176.30 8059.18 -0.25 -0.01 -0.97 1 + 2187.14 394.34 8106.22 -0.25 -0.01 -0.97 1 + 2466.15 457.63 8033.09 -0.25 -0.01 -0.97 1 + 4893.02 306.15 6840.17 -0.53 -0.05 -0.84 1 + 4654.24 228.56 6995.34 -0.53 -0.05 -0.84 1 + 4415.25 151.07 7150.61 -0.53 -0.05 -0.84 1 + 4098.05 1115.16 7273.47 -0.46 -0.07 -0.89 1 + 4039.82 830.25 7325.80 -0.46 -0.07 -0.89 1 + 3981.98 545.53 7378.16 -0.46 -0.07 -0.89 1 + 3923.81 260.85 7430.41 -0.46 -0.07 -0.89 1 + 3865.70 -24.02 7482.95 -0.46 -0.07 -0.89 1 + 3846.98 1037.87 7408.66 -0.46 -0.07 -0.89 1 + 3788.81 753.18 7460.91 -0.46 -0.07 -0.89 1 + 3730.97 468.47 7513.27 -0.46 -0.07 -0.89 1 + 3672.92 183.83 7565.73 -0.46 -0.07 -0.89 1 + 3595.97 960.80 7543.77 -0.46 -0.07 -0.89 1 + 3537.92 676.17 7596.23 -0.46 -0.07 -0.89 1 + 3480.08 391.46 7648.59 -0.46 -0.07 -0.89 1 + 3345.08 883.79 7679.09 -0.46 -0.07 -0.89 1 + 3287.24 599.08 7731.45 -0.46 -0.07 -0.89 1 + 2560.02 1100.83 7911.51 -0.33 -0.11 -0.94 1 + 2823.82 1186.41 7810.12 -0.33 -0.11 -0.94 1 + 2507.36 814.69 7962.04 -0.33 -0.11 -0.94 1 + 2771.07 900.46 7860.95 -0.33 -0.11 -0.94 1 + 3034.87 986.04 7759.56 -0.33 -0.11 -0.94 1 + 2718.06 614.38 7911.57 -0.33 -0.11 -0.94 1 + 2981.86 699.96 7810.18 -0.33 -0.11 -0.94 1 + 3421.83 2395.51 7305.88 -0.46 -0.27 -0.85 1 + 3660.60 2473.09 7150.72 -0.46 -0.27 -0.85 1 + 3899.58 2550.59 6995.44 -0.46 -0.27 -0.85 1 + 1475.01 741.24 8251.94 -0.21 -0.14 -0.97 1 + 1503.75 1031.25 8205.13 -0.21 -0.14 -0.97 1 + 1532.13 1321.37 8158.10 -0.21 -0.14 -0.97 1 + 1560.51 1611.49 8111.06 -0.21 -0.14 -0.97 1 + 1738.18 853.79 8179.09 -0.21 -0.14 -0.97 1 + 1766.56 1143.91 8132.05 -0.21 -0.14 -0.97 1 + 1794.94 1434.03 8085.01 -0.21 -0.14 -0.97 1 + 2001.26 966.57 8106.21 -0.21 -0.14 -0.97 1 + 2029.64 1256.69 8059.17 -0.21 -0.14 -0.97 1 + 2264.07 1079.23 8033.13 -0.21 -0.14 -0.97 1 + 1693.12 1963.99 8013.55 -0.27 -0.24 -0.93 1 + 1951.52 2065.28 7912.20 -0.27 -0.24 -0.93 1 + 2209.65 2166.79 7811.11 -0.27 -0.24 -0.93 1 + 2467.82 2268.02 7709.81 -0.27 -0.24 -0.93 1 + 2726.27 2369.36 7608.71 -0.27 -0.24 -0.93 1 + 1925.24 1782.43 7992.57 -0.27 -0.24 -0.93 1 + 2183.41 1883.65 7891.27 -0.27 -0.24 -0.93 1 + 2441.53 1985.16 7790.18 -0.27 -0.24 -0.93 1 + 2699.74 2086.43 7689.12 -0.27 -0.24 -0.93 1 + 2157.12 1600.79 7971.63 -0.27 -0.24 -0.93 1 + 2415.33 1702.06 7870.58 -0.27 -0.24 -0.93 1 + 2673.45 1803.57 7769.49 -0.27 -0.24 -0.93 1 + 2389.04 1419.21 7950.94 -0.27 -0.24 -0.93 1 + 2647.17 1520.72 7849.85 -0.27 -0.24 -0.93 1 + 1127.26 798.05 8301.46 -0.11 -0.15 -0.98 1 + 888.48 971.52 8301.46 -0.11 -0.15 -0.98 1 + 649.39 1145.17 8301.48 -0.11 -0.15 -0.98 1 + 410.61 1318.64 8301.48 -0.11 -0.15 -0.98 1 + 1155.57 1088.07 8253.93 -0.11 -0.15 -0.98 1 + 916.56 1261.47 8253.98 -0.11 -0.15 -0.98 1 + 677.70 1435.19 8253.94 -0.11 -0.15 -0.98 1 + 1183.68 1378.07 8206.69 -0.11 -0.15 -0.98 1 + 944.82 1551.78 8206.66 -0.11 -0.15 -0.98 1 + 1211.99 1668.09 8159.16 -0.11 -0.15 -0.98 1 + 1715.64 3114.89 7627.40 -0.23 -0.32 -0.92 1 + 1954.41 2941.42 7627.40 -0.23 -0.32 -0.92 1 + 2193.27 2767.70 7627.44 -0.23 -0.32 -0.92 1 + 2432.28 2594.30 7627.39 -0.23 -0.32 -0.92 1 + 1696.76 2837.76 7727.54 -0.23 -0.32 -0.92 1 + 1935.53 2664.28 7727.54 -0.23 -0.32 -0.92 1 + 2174.39 2490.56 7727.57 -0.23 -0.32 -0.92 1 + 1677.92 2560.67 7827.92 -0.23 -0.32 -0.92 1 + 1916.77 2386.96 7827.96 -0.23 -0.32 -0.92 1 + 1659.04 2283.54 7928.06 -0.23 -0.32 -0.92 1 + 2705.44 2719.00 7498.41 -0.28 -0.38 -0.88 1 + 2466.58 2892.72 7498.37 -0.28 -0.38 -0.88 1 + 2227.80 3066.19 7498.37 -0.28 -0.38 -0.88 1 + 1988.71 3239.84 7498.39 -0.28 -0.38 -0.88 1 + 1749.93 3413.31 7498.39 -0.28 -0.38 -0.88 1 + 2718.79 2988.59 7378.32 -0.28 -0.38 -0.88 1 + 2479.93 3162.31 7378.29 -0.28 -0.38 -0.88 1 + 2240.92 3335.71 7378.34 -0.28 -0.38 -0.88 1 + 2002.06 3509.43 7378.30 -0.28 -0.38 -0.88 1 + 2732.14 3258.18 7258.24 -0.28 -0.38 -0.88 1 + 2493.13 3431.59 7258.29 -0.28 -0.38 -0.88 1 + 2254.27 3605.30 7258.25 -0.28 -0.38 -0.88 1 + 2745.37 3527.51 7138.49 -0.28 -0.38 -0.88 1 + 2506.52 3701.23 7138.45 -0.28 -0.38 -0.88 1 + 2492.18 4435.28 6614.57 -0.36 -0.49 -0.79 1 + 2731.24 4512.79 6459.24 -0.36 -0.49 -0.79 1 + 2969.97 4590.45 6303.92 -0.36 -0.49 -0.79 1 + 2492.19 4184.09 6769.64 -0.36 -0.49 -0.79 1 + 2731.28 4261.64 6614.56 -0.36 -0.49 -0.79 1 + 2970.01 4339.31 6459.24 -0.36 -0.49 -0.79 1 + 3209.07 4416.81 6303.91 -0.36 -0.49 -0.79 1 + 2492.23 3932.94 6924.95 -0.36 -0.49 -0.79 1 + 2731.28 4010.45 6769.62 -0.36 -0.49 -0.79 1 + 2970.05 4088.16 6614.55 -0.36 -0.49 -0.79 1 + 3208.87 4165.59 6459.27 -0.36 -0.49 -0.79 1 + 3447.84 4243.33 6303.91 -0.36 -0.49 -0.79 1 + 2731.08 3759.23 6924.99 -0.36 -0.49 -0.79 1 + 2970.06 3836.97 6769.62 -0.36 -0.49 -0.79 1 + 3208.91 3914.45 6614.59 -0.36 -0.49 -0.79 1 + 3447.88 3992.19 6459.22 -0.36 -0.49 -0.79 1 + 2970.10 3585.82 6924.94 -0.36 -0.49 -0.79 1 + 3208.92 3663.25 6769.66 -0.36 -0.49 -0.79 1 + 3447.93 3741.04 6614.54 -0.36 -0.49 -0.79 1 + 4138.48 4942.59 5409.89 -0.46 -0.63 -0.62 1 + 3899.70 5116.07 5409.89 -0.46 -0.63 -0.62 1 + 3660.80 5289.73 5409.76 -0.46 -0.63 -0.62 1 + 1749.90 5180.33 6406.28 -0.28 -0.62 -0.73 1 + 1988.93 5257.88 6251.10 -0.28 -0.62 -0.73 1 + 2705.50 5490.76 5785.37 -0.28 -0.62 -0.73 1 + 2002.17 5029.99 6438.45 -0.28 -0.62 -0.73 1 + 2241.20 5107.54 6283.27 -0.28 -0.62 -0.73 1 + 2479.98 5185.28 6127.90 -0.28 -0.62 -0.73 1 + 2719.00 5262.83 5972.71 -0.28 -0.62 -0.73 1 + 2254.44 4879.65 6470.62 -0.28 -0.62 -0.73 1 + 2493.22 4957.38 6315.25 -0.28 -0.62 -0.73 1 + 2732.25 5034.94 6160.06 -0.28 -0.62 -0.73 1 + 2506.50 4729.69 6502.76 -0.28 -0.62 -0.73 1 + 2745.53 4807.24 6347.57 -0.28 -0.62 -0.73 1 + 1508.21 3842.95 7341.35 -0.20 -0.52 -0.83 1 + 1508.36 4094.20 7186.08 -0.20 -0.52 -0.83 1 + 1508.36 4345.26 7030.91 -0.20 -0.52 -0.83 1 + 1508.30 4596.63 6875.56 -0.20 -0.52 -0.83 1 + 1508.30 4847.69 6720.40 -0.20 -0.52 -0.83 1 + 1758.94 3941.71 7220.26 -0.20 -0.52 -0.83 1 + 1759.09 4192.95 7065.00 -0.20 -0.52 -0.83 1 + 1758.88 4444.13 6909.74 -0.20 -0.52 -0.83 1 + 1759.03 4695.38 6754.48 -0.20 -0.52 -0.83 1 + 2009.67 4040.46 7099.18 -0.20 -0.52 -0.83 1 + 2009.46 4291.64 6943.93 -0.20 -0.52 -0.83 1 + 2009.61 4542.89 6788.66 -0.20 -0.52 -0.83 1 + 2260.03 4139.28 6978.32 -0.20 -0.52 -0.83 1 + 2260.18 4390.53 6823.05 -0.20 -0.52 -0.83 1 + 1411.04 3324.99 7608.69 -0.14 -0.33 -0.93 1 + 1394.49 3047.97 7709.78 -0.14 -0.33 -0.93 1 + 1377.89 2771.24 7811.08 -0.14 -0.33 -0.93 1 + 1361.10 2494.15 7912.22 -0.14 -0.33 -0.93 1 + 1344.58 2217.18 8013.56 -0.14 -0.33 -0.93 1 + 1150.21 3212.45 7689.08 -0.14 -0.33 -0.93 1 + 1133.34 2935.59 7790.18 -0.14 -0.33 -0.93 1 + 1116.82 2658.62 7891.51 -0.14 -0.33 -0.93 1 + 1100.19 2381.85 7992.57 -0.14 -0.33 -0.93 1 + 889.06 3100.07 7769.47 -0.14 -0.33 -0.93 1 + 872.51 2823.05 7870.56 -0.14 -0.33 -0.93 1 + 855.88 2546.27 7971.62 -0.14 -0.33 -0.93 1 + 628.15 2987.76 7849.82 -0.14 -0.33 -0.93 1 + 611.60 2710.75 7950.91 -0.14 -0.33 -0.93 1 + 2718.14 6801.61 4087.44 -0.33 -0.79 -0.51 1 + 2981.87 6672.55 4118.86 -0.33 -0.79 -0.51 1 + 2507.35 6757.13 4289.41 -0.33 -0.79 -0.51 1 + 2771.11 6628.42 4320.78 -0.33 -0.79 -0.51 1 + 3034.84 6499.35 4352.20 -0.33 -0.79 -0.51 1 + 2560.07 6584.12 4522.57 -0.33 -0.79 -0.51 1 + 2823.80 6455.05 4553.98 -0.33 -0.79 -0.51 1 + 2726.23 5745.77 5522.01 -0.27 -0.73 -0.63 1 + 2467.88 5881.51 5476.58 -0.27 -0.73 -0.63 1 + 2209.82 6017.42 5431.27 -0.27 -0.73 -0.63 1 + 1951.48 6153.31 5385.64 -0.27 -0.73 -0.63 1 + 1693.17 6289.25 5340.35 -0.27 -0.73 -0.63 1 + 2699.79 5944.16 5304.98 -0.27 -0.73 -0.63 1 + 2441.70 6080.02 5259.32 -0.27 -0.73 -0.63 1 + 2183.39 6215.96 5214.04 -0.27 -0.73 -0.63 1 + 1925.30 6351.67 5168.59 -0.27 -0.73 -0.63 1 + 2673.61 6142.67 5087.73 -0.27 -0.73 -0.63 1 + 2415.27 6278.41 5042.29 -0.27 -0.73 -0.63 1 + 2157.17 6414.12 4996.84 -0.27 -0.73 -0.63 1 + 2647.43 6341.02 4870.68 -0.27 -0.73 -0.63 1 + 2389.09 6476.77 4825.24 -0.27 -0.73 -0.63 1 + 1954.49 5506.84 6041.77 -0.23 -0.68 -0.70 1 + 1715.71 5429.10 6197.14 -0.23 -0.68 -0.70 1 + 2174.55 5797.88 5683.54 -0.23 -0.68 -0.70 1 + 1935.77 5720.29 5838.71 -0.23 -0.68 -0.70 1 + 1696.75 5642.74 5993.90 -0.23 -0.68 -0.70 1 + 1916.84 5933.97 5635.83 -0.23 -0.68 -0.70 1 + 1677.82 5856.42 5791.01 -0.23 -0.68 -0.70 1 + 1659.10 6069.86 5587.95 -0.23 -0.68 -0.70 1 + 1560.46 6534.05 5068.77 -0.21 -0.81 -0.55 1 + 1532.08 6705.88 4830.31 -0.21 -0.81 -0.55 1 + 1503.70 6877.70 4591.85 -0.21 -0.81 -0.55 1 + 1475.29 7049.33 4353.23 -0.21 -0.81 -0.55 1 + 1795.00 6590.02 4898.49 -0.21 -0.81 -0.55 1 + 1766.63 6761.85 4660.03 -0.21 -0.81 -0.55 1 + 1738.25 6933.67 4421.57 -0.21 -0.81 -0.55 1 + 2029.59 6646.35 4728.17 -0.21 -0.81 -0.55 1 + 2001.21 6818.18 4489.71 -0.21 -0.81 -0.55 1 + 2264.14 6702.32 4557.89 -0.21 -0.81 -0.55 1 + 1050.45 1982.07 8111.06 -0.06 -0.24 -0.97 1 + 783.29 1865.43 8158.10 -0.06 -0.24 -0.97 1 + 516.13 1748.78 8205.13 -0.06 -0.24 -0.97 1 + 248.94 1632.09 8251.93 -0.06 -0.24 -0.97 1 + 809.32 2150.34 8084.97 -0.06 -0.24 -0.97 1 + 542.16 2033.70 8132.01 -0.06 -0.24 -0.97 1 + 275.00 1917.05 8179.05 -0.06 -0.24 -0.97 1 + 567.99 2318.58 8059.18 -0.06 -0.24 -0.97 1 + 300.83 2201.94 8106.22 -0.06 -0.24 -0.97 1 + 326.86 2486.85 8033.09 -0.06 -0.24 -0.97 1 + 1220.87 4748.13 6840.17 -0.12 -0.52 -0.84 1 + 1220.87 4497.07 6995.34 -0.12 -0.52 -0.84 1 + 1220.72 4245.82 7150.61 -0.12 -0.52 -0.84 1 + 1220.93 3994.64 7305.86 -0.12 -0.52 -0.84 1 + 966.83 4637.96 6942.72 -0.12 -0.52 -0.84 1 + 966.83 4386.90 7097.88 -0.12 -0.52 -0.84 1 + 966.68 4135.65 7253.15 -0.12 -0.52 -0.84 1 + 712.77 4527.92 7045.47 -0.12 -0.52 -0.84 1 + 712.62 4276.68 7200.74 -0.12 -0.52 -0.84 1 + 458.73 4417.75 7148.01 -0.12 -0.52 -0.84 1 + 3598.30 -314.49 7608.69 -0.36 0.03 -0.93 1 + 3329.72 -384.35 7709.78 -0.36 0.03 -0.93 1 + 3061.40 -454.08 7811.08 -0.36 0.03 -0.93 1 + 2792.68 -523.73 7912.22 -0.36 0.03 -0.93 1 + 2524.17 -593.61 8013.56 -0.36 0.03 -0.93 1 + 3410.66 -101.20 7689.08 -0.36 0.03 -0.93 1 + 3142.14 -170.71 7790.18 -0.36 0.03 -0.93 1 + 2873.63 -240.59 7891.51 -0.36 0.03 -0.93 1 + 2605.25 -310.30 7992.57 -0.36 0.03 -0.93 1 + 3223.08 112.44 7769.47 -0.36 0.03 -0.93 1 + 2954.51 42.58 7870.56 -0.36 0.03 -0.93 1 + 2686.13 -27.13 7971.62 -0.36 0.03 -0.93 1 + 3035.65 325.87 7849.82 -0.36 0.03 -0.93 1 + 2767.08 256.01 7950.91 -0.36 0.03 -0.93 1 + 3096.82 7666.63 -1418.68 -0.40 -0.90 0.17 1 + 3223.13 7562.97 -1664.63 -0.40 -0.90 0.17 1 + 3240.58 7651.38 -1161.16 -0.40 -0.90 0.17 1 + 3366.89 7547.72 -1407.12 -0.40 -0.90 0.17 1 + 3492.87 7443.91 -1653.03 -0.40 -0.90 0.17 1 + 3510.58 7532.14 -1149.73 -0.40 -0.90 0.17 1 + 3636.89 7428.48 -1395.69 -0.40 -0.90 0.17 1 + 3954.47 7436.28 -51.38 -0.41 -0.91 0.03 1 + 3684.61 7556.18 -57.22 -0.41 -0.91 0.03 1 + 3415.04 7676.25 -63.17 -0.41 -0.91 0.03 1 + 3145.09 7796.16 -69.24 -0.41 -0.91 0.03 1 + 2875.30 7916.30 -75.09 -0.41 -0.91 0.03 1 + 3821.29 7487.75 -309.78 -0.41 -0.91 0.03 1 + 3551.56 7607.60 -315.96 -0.41 -0.91 0.03 1 + 3281.77 7727.73 -321.81 -0.41 -0.91 0.03 1 + 3012.14 7847.56 -327.74 -0.41 -0.91 0.03 1 + 3688.25 7539.17 -568.52 -0.41 -0.91 0.03 1 + 3418.39 7659.06 -574.36 -0.41 -0.91 0.03 1 + 3148.75 7778.89 -580.30 -0.41 -0.91 0.03 1 + 3555.30 7590.58 -827.02 -0.41 -0.91 0.03 1 + 3285.44 7710.47 -832.86 -0.41 -0.91 0.03 1 + 3778.59 7515.00 265.07 -0.40 -0.91 -0.06 1 + 3631.02 7562.94 516.14 -0.40 -0.91 -0.06 1 + 3483.22 7610.96 767.30 -0.40 -0.91 -0.06 1 + 2659.92 7986.28 291.38 -0.33 -0.94 -0.11 1 + 2780.28 7914.69 551.57 -0.33 -0.94 -0.11 1 + 2900.84 7843.31 811.41 -0.33 -0.94 -0.11 1 + 3021.11 7771.75 1071.37 -0.33 -0.94 -0.11 1 + 3141.54 7700.41 1331.54 -0.33 -0.94 -0.11 1 + 2502.24 8013.24 539.77 -0.33 -0.94 -0.11 1 + 2622.51 7941.68 799.72 -0.33 -0.94 -0.11 1 + 2743.07 7870.29 1059.57 -0.33 -0.94 -0.11 1 + 2863.41 7798.97 1319.51 -0.33 -0.94 -0.11 1 + 2344.46 8040.22 787.92 -0.33 -0.94 -0.11 1 + 2464.80 7968.90 1047.87 -0.33 -0.94 -0.11 1 + 2585.36 7897.52 1307.71 -0.33 -0.94 -0.11 1 + 2186.75 8067.44 1036.07 -0.33 -0.94 -0.11 1 + 2307.32 7996.06 1295.92 -0.33 -0.94 -0.11 1 + 2542.31 8024.49 -291.38 -0.29 -0.95 0.11 1 + 2402.86 8037.33 -551.57 -0.29 -0.95 0.11 1 + 2263.36 8050.44 -811.41 -0.29 -0.95 0.11 1 + 2124.00 8063.24 -1071.37 -0.29 -0.95 0.11 1 + 1984.64 8076.31 -1331.54 -0.29 -0.95 0.11 1 + 2685.72 7953.62 -539.77 -0.29 -0.95 0.11 1 + 2546.36 7966.42 -799.72 -0.29 -0.95 0.11 1 + 2406.86 7979.53 -1059.57 -0.29 -0.95 0.11 1 + 2267.59 7992.57 -1319.51 -0.29 -0.95 0.11 1 + 2829.22 7882.71 -787.92 -0.29 -0.95 0.11 1 + 2689.95 7895.74 -1047.87 -0.29 -0.95 0.11 1 + 2550.45 7908.86 -1307.71 -0.29 -0.95 0.11 1 + 2972.81 7812.04 -1036.07 -0.29 -0.95 0.11 1 + 2833.32 7825.15 -1295.92 -0.29 -0.95 0.11 1 + 1360.27 8300.75 -265.07 -0.21 -0.97 0.06 1 + 1507.84 8252.80 -516.14 -0.21 -0.97 0.06 1 + 1655.63 8204.77 -767.30 -0.21 -0.97 0.06 1 + 1803.11 8156.86 -1018.60 -0.21 -0.97 0.06 1 + 1648.66 8237.86 -257.10 -0.21 -0.97 0.06 1 + 1796.23 8189.91 -508.16 -0.21 -0.97 0.06 1 + 1944.02 8141.89 -759.32 -0.21 -0.97 0.06 1 + 1937.14 8175.21 -249.11 -0.21 -0.97 0.06 1 + 2084.93 8127.18 -500.27 -0.21 -0.97 0.06 1 + 2225.54 8112.32 -241.13 -0.21 -0.97 0.06 1 + 7941.71 461.85 2745.39 -0.95 -0.10 -0.29 1 + 7920.40 754.28 2710.37 -0.95 -0.10 -0.29 1 + 7899.09 1046.70 2675.36 -0.95 -0.10 -0.29 1 + 2524.16 7433.05 3052.74 -0.36 -0.85 -0.39 1 + 2792.76 7311.12 3069.96 -0.36 -0.85 -0.39 1 + 3061.25 7189.58 3087.01 -0.36 -0.85 -0.39 1 + 3329.62 7067.73 3104.18 -0.36 -0.85 -0.39 1 + 3598.27 6946.04 3121.51 -0.36 -0.85 -0.39 1 + 2605.23 7287.58 3296.76 -0.36 -0.85 -0.39 1 + 2873.60 7165.73 3313.94 -0.36 -0.85 -0.39 1 + 3142.09 7044.19 3330.98 -0.36 -0.85 -0.39 1 + 3410.51 6922.57 3348.26 -0.36 -0.85 -0.39 1 + 2686.07 7142.18 3540.74 -0.36 -0.85 -0.39 1 + 2954.49 7020.56 3558.01 -0.36 -0.85 -0.39 1 + 3222.98 6899.02 3575.05 -0.36 -0.85 -0.39 1 + 2766.96 6997.01 3784.81 -0.36 -0.85 -0.39 1 + 3035.46 6875.47 3801.85 -0.36 -0.85 -0.39 1 + 3218.87 7498.15 2059.07 -0.37 -0.88 -0.30 1 + 3310.08 7372.62 2310.13 -0.37 -0.88 -0.30 1 + 3401.21 7247.01 2561.43 -0.37 -0.88 -0.30 1 + 3095.94 7637.50 1738.54 -0.31 -0.92 -0.25 1 + 2919.72 7632.04 1975.50 -0.31 -0.92 -0.25 1 + 2743.63 7626.89 2212.33 -0.31 -0.92 -0.25 1 + 2567.18 7621.51 2449.23 -0.31 -0.92 -0.25 1 + 2391.02 7616.28 2686.29 -0.31 -0.92 -0.25 1 + 2818.78 7737.24 1718.80 -0.31 -0.92 -0.25 1 + 2642.39 7731.93 1955.48 -0.31 -0.92 -0.25 1 + 2466.23 7726.71 2192.54 -0.31 -0.92 -0.25 1 + 2290.09 7721.32 2429.26 -0.31 -0.92 -0.25 1 + 2541.45 7837.13 1698.78 -0.31 -0.92 -0.25 1 + 2365.23 7831.67 1935.74 -0.31 -0.92 -0.25 1 + 2189.08 7826.29 2172.47 -0.31 -0.92 -0.25 1 + 2264.36 7936.95 1678.81 -0.31 -0.92 -0.25 1 + 2088.14 7931.49 1915.77 -0.31 -0.92 -0.25 1 + 1629.00 7261.22 3929.47 -0.25 -0.86 -0.44 1 + 1822.71 7316.72 3713.79 -0.25 -0.86 -0.44 1 + 2016.20 7372.15 3497.75 -0.25 -0.86 -0.44 1 + 2209.69 7427.58 3281.70 -0.25 -0.86 -0.44 1 + 1908.05 7167.60 3953.81 -0.25 -0.86 -0.44 1 + 2101.55 7223.03 3737.76 -0.25 -0.86 -0.44 1 + 2295.04 7278.46 3521.71 -0.25 -0.86 -0.44 1 + 2187.18 7074.06 3977.91 -0.25 -0.86 -0.44 1 + 2380.68 7129.49 3761.86 -0.25 -0.86 -0.44 1 + 2466.02 6980.37 4001.88 -0.25 -0.86 -0.44 1 + -2032.00 2098.00 -8729.00 9999.00 9999.00 9999.00 2 + 5151.00 2196.00 -7301.00 9999.00 9999.00 9999.00 2 + -3964.00 4708.00 -6840.00 9999.00 9999.00 9999.00 2 + 3253.00 5225.00 -6840.00 9999.00 9999.00 9999.00 2 + -497.00 5577.00 -7301.00 9999.00 9999.00 9999.00 2 + 1367.00 2581.00 -8729.00 9999.00 9999.00 9999.00 2 + -6942.00 3693.00 -4785.00 9999.00 9999.00 9999.00 2 + -5187.00 6332.00 -4258.00 9999.00 9999.00 9999.00 2 + 6493.00 4579.00 -4691.00 9999.00 9999.00 9999.00 2 + -424.00 594.00 13340.00 9999.00 9999.00 9999.00 5 + 4419.00 6890.00 -4258.00 9999.00 9999.00 9999.00 2 + 1367.00 7743.00 -4785.00 9999.00 9999.00 9999.00 2 + -7035.00 5706.00 -1615.00 9999.00 9999.00 9999.00 2 + 8429.00 3262.00 -1724.00 9999.00 9999.00 9999.00 2 + -4161.00 8054.00 -1595.00 9999.00 9999.00 9999.00 2 + 6374.00 6446.00 -1595.00 9999.00 9999.00 9999.00 2 + -497.00 9025.00 -1724.00 9999.00 9999.00 9999.00 2 + 3253.00 8454.00 -1615.00 9999.00 9999.00 9999.00 2 + -5707.00 7009.00 1724.00 9999.00 9999.00 9999.00 2 + 7601.00 4928.00 1615.00 9999.00 9999.00 9999.00 2 + 5657.00 5461.00 4785.00 9999.00 9999.00 9999.00 2 + -2338.00 8751.00 1615.00 9999.00 9999.00 9999.00 2 + 4902.00 7593.00 1724.00 9999.00 9999.00 9999.00 2 + -475.00 8172.00 4258.00 9999.00 9999.00 9999.00 2 + 1367.00 8962.00 1595.00 9999.00 9999.00 9999.00 2 + -6361.00 4761.00 4691.00 9999.00 9999.00 9999.00 2 + -3681.00 4220.00 7301.00 9999.00 9999.00 9999.00 2 + -3445.00 7068.00 4785.00 9999.00 9999.00 9999.00 2 + -440.00 6139.00 6840.00 9999.00 9999.00 9999.00 2 + 2876.00 4805.00 7301.00 9999.00 9999.00 9999.00 2 + -411.00 2892.00 8729.00 9999.00 9999.00 9999.00 2 + 2562.00 7521.00 4691.00 9999.00 9999.00 9999.00 2 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 1629.23 5219.54 -6406.27 -0.14 -0.66 0.73 1 + 1481.43 5422.78 -6251.09 -0.14 -0.66 0.73 1 + 1333.86 5625.90 -6095.92 -0.14 -0.66 0.73 1 + 1186.16 5829.26 -5940.54 -0.14 -0.66 0.73 1 + 1038.59 6032.37 -5785.37 -0.14 -0.66 0.73 1 + 1336.77 5246.20 -6438.44 -0.14 -0.66 0.73 1 + 1188.97 5449.44 -6283.26 -0.14 -0.66 0.73 1 + 1041.49 5652.68 -6127.89 -0.14 -0.66 0.73 1 + 893.70 5855.91 -5972.71 -0.14 -0.66 0.73 1 + 1044.31 5272.85 -6470.62 -0.14 -0.66 0.73 1 + 896.82 5476.09 -6315.25 -0.14 -0.66 0.73 1 + 749.03 5679.33 -6160.06 -0.14 -0.66 0.73 1 + 752.24 5299.69 -6502.76 -0.14 -0.66 0.73 1 + 604.45 5502.93 -6347.57 -0.14 -0.66 0.73 1 + 215.36 7052.05 -4600.32 -0.08 -0.81 0.59 1 + 364.87 6892.78 -4799.28 -0.08 -0.81 0.59 1 + 514.04 6733.76 -4998.31 -0.08 -0.81 0.59 1 + 663.40 6574.59 -5197.09 -0.08 -0.81 0.59 1 + 812.92 6415.54 -5396.18 -0.08 -0.81 0.59 1 + 509.87 7034.55 -4584.72 -0.08 -0.81 0.59 1 + 659.24 6875.38 -4783.50 -0.08 -0.81 0.59 1 + 808.40 6716.36 -4982.53 -0.08 -0.81 0.59 1 + 957.76 6557.41 -5181.44 -0.08 -0.81 0.59 1 + 804.23 7017.15 -4568.94 -0.08 -0.81 0.59 1 + 953.60 6858.20 -4767.84 -0.08 -0.81 0.59 1 + 1102.76 6699.18 -4966.88 -0.08 -0.81 0.59 1 + 1098.59 6999.97 -4553.29 -0.08 -0.81 0.59 1 + 1247.75 6840.95 -4752.32 -0.08 -0.81 0.59 1 + 147.61 1970.74 -8192.58 0.00 -0.16 0.99 1 + -147.74 1970.60 -8192.61 0.00 -0.16 0.99 1 + 295.24 1718.00 -8232.62 0.00 -0.16 0.99 1 + -0.05 1718.21 -8232.57 0.00 -0.16 0.99 1 + -295.40 1718.06 -8232.61 0.00 -0.16 0.99 1 + 442.93 1465.61 -8272.58 0.00 -0.16 0.99 1 + 147.58 1465.47 -8272.62 0.00 -0.16 0.99 1 + -147.71 1465.67 -8272.57 0.00 -0.16 0.99 1 + -443.06 1465.53 -8272.61 0.00 -0.16 0.99 1 + 590.56 1212.88 -8312.63 0.00 -0.16 0.99 1 + 295.27 1213.08 -8312.58 0.00 -0.16 0.99 1 + -0.08 1212.94 -8312.62 0.00 -0.16 0.99 1 + -295.22 1212.94 -8312.61 0.00 -0.16 0.99 1 + -590.72 1212.99 -8312.60 0.00 -0.16 0.99 1 + 442.90 960.35 -8352.63 0.00 -0.16 0.99 1 + 147.61 960.55 -8352.58 0.00 -0.16 0.99 1 + -147.74 960.40 -8352.61 0.00 -0.16 0.99 1 + -442.88 960.40 -8352.61 0.00 -0.16 0.99 1 + 295.24 707.81 -8392.62 0.00 -0.16 0.99 1 + -0.05 708.01 -8392.57 0.00 -0.16 0.99 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 442.92 3528.43 -7627.40 -0.00 -0.39 0.92 1 + 147.77 3528.43 -7627.40 -0.00 -0.39 0.92 1 + -147.58 3528.29 -7627.44 -0.00 -0.39 0.92 1 + -442.87 3528.49 -7627.39 -0.00 -0.39 0.92 1 + 295.29 3293.12 -7727.54 -0.00 -0.39 0.92 1 + 0.15 3293.12 -7727.54 -0.00 -0.39 0.92 1 + -295.20 3292.98 -7727.57 -0.00 -0.39 0.92 1 + 147.67 3057.88 -7827.92 -0.00 -0.39 0.92 1 + -147.68 3057.73 -7827.96 -0.00 -0.39 0.92 1 + 0.04 2822.57 -7928.06 -0.00 -0.39 0.92 1 + -590.56 3789.93 -7498.41 0.00 -0.47 0.88 1 + -295.21 3790.07 -7498.37 0.00 -0.47 0.88 1 + -0.06 3790.07 -7498.37 0.00 -0.47 0.88 1 + 295.43 3790.02 -7498.39 0.00 -0.47 0.88 1 + -295.40 707.87 -8392.61 0.00 -0.16 0.99 1 + -442.90 4015.89 -7378.32 0.00 -0.47 0.88 1 + -147.55 4016.03 -7378.29 0.00 -0.47 0.88 1 + 147.75 4015.83 -7378.34 0.00 -0.47 0.88 1 + 443.09 4015.97 -7378.30 0.00 -0.47 0.88 1 + -295.23 4241.84 -7258.24 0.00 -0.47 0.88 1 + 0.06 4241.64 -7258.29 0.00 -0.47 0.88 1 + 295.41 4241.78 -7258.25 0.00 -0.47 0.88 1 + -147.63 4467.51 -7138.49 0.00 -0.47 0.88 1 + 147.72 4467.65 -7138.45 0.00 -0.47 0.88 1 + -590.79 5053.09 -6614.58 0.00 -0.61 0.79 1 + -442.94 4849.79 -6769.79 0.00 -0.61 0.79 1 + -295.45 4646.52 -6924.96 0.00 -0.61 0.79 1 + -443.13 5256.13 -6459.28 0.00 -0.61 0.79 1 + -295.29 5053.06 -6614.63 0.00 -0.61 0.79 1 + -147.80 4849.79 -6769.80 0.00 -0.61 0.79 1 + 0.04 4646.49 -6925.01 0.00 -0.61 0.79 1 + -295.48 5459.40 -6304.12 0.00 -0.61 0.79 1 + -147.64 5256.11 -6459.34 0.00 -0.61 0.79 1 + -0.15 5053.06 -6614.63 0.00 -0.61 0.79 1 + 147.55 4849.86 -6769.67 0.00 -0.61 0.79 1 + 295.19 4646.49 -6925.02 0.00 -0.61 0.79 1 + -0.13 5459.48 -6303.99 0.00 -0.61 0.79 1 + 147.51 5256.11 -6459.34 0.00 -0.61 0.79 1 + 295.20 5053.13 -6614.50 0.00 -0.61 0.79 1 + 442.84 4849.76 -6769.85 0.00 -0.61 0.79 1 + 295.16 5459.38 -6304.17 0.00 -0.61 0.79 1 + 442.86 5256.18 -6459.21 0.00 -0.61 0.79 1 + 590.49 5053.03 -6614.68 0.00 -0.61 0.79 1 + 590.56 6237.96 -5628.27 -0.00 -0.73 0.68 1 + 295.21 6237.89 -5628.40 -0.00 -0.73 0.68 1 + 0.06 6237.89 -5628.40 -0.00 -0.73 0.68 1 + -295.43 6237.92 -5628.35 -0.00 -0.73 0.68 1 + -590.58 6237.92 -5628.35 -0.00 -0.73 0.68 1 + 442.90 6062.69 -5814.70 -0.00 -0.73 0.68 1 + 147.55 6062.62 -5814.83 -0.00 -0.73 0.68 1 + -147.75 6062.72 -5814.65 -0.00 -0.73 0.68 1 + -443.09 6062.65 -5814.78 -0.00 -0.73 0.68 1 + 295.23 5887.42 -6001.12 -0.00 -0.73 0.68 1 + -0.06 5887.52 -6000.94 -0.00 -0.73 0.68 1 + -295.41 5887.45 -6001.07 -0.00 -0.73 0.68 1 + 147.63 5712.54 -6187.36 -0.00 -0.73 0.68 1 + -147.72 5712.47 -6187.49 -0.00 -0.73 0.68 1 + -442.92 6431.18 -5409.89 0.00 -0.78 0.62 1 + -147.77 6431.18 -5409.89 0.00 -0.78 0.62 1 + 147.58 6431.25 -5409.76 0.00 -0.78 0.62 1 + 442.87 6431.15 -5409.95 0.00 -0.78 0.62 1 + -295.29 6589.66 -5209.20 0.00 -0.78 0.62 1 + -0.15 6589.66 -5209.20 0.00 -0.78 0.62 1 + 295.20 6589.74 -5209.07 0.00 -0.78 0.62 1 + -147.67 6748.37 -5008.63 0.00 -0.78 0.62 1 + 147.68 6748.44 -5008.50 0.00 -0.78 0.62 1 + -0.04 6906.86 -4807.94 0.00 -0.78 0.62 1 + -812.83 6415.51 -5396.23 0.08 -0.81 0.59 1 + -663.40 6574.53 -5197.20 0.08 -0.81 0.59 1 + -514.17 6733.70 -4998.42 0.08 -0.81 0.59 1 + -364.88 6892.82 -4799.21 0.08 -0.81 0.59 1 + -215.44 7052.06 -4600.30 0.08 -0.81 0.59 1 + -957.70 6557.32 -5181.60 0.08 -0.81 0.59 1 + -808.61 6716.37 -4982.52 0.08 -0.81 0.59 1 + -659.18 6875.61 -4783.61 0.08 -0.81 0.59 1 + -509.95 7034.56 -4584.71 0.08 -0.81 0.59 1 + -1102.92 6699.15 -4966.93 0.08 -0.81 0.59 1 + -953.48 6858.17 -4767.90 0.08 -0.81 0.59 1 + -804.25 7017.12 -4569.00 0.08 -0.81 0.59 1 + -1247.98 6840.89 -4752.44 0.08 -0.81 0.59 1 + -1098.55 6999.91 -4553.41 0.08 -0.81 0.59 1 + 1038.67 7872.31 -2808.23 -0.14 -0.95 0.27 1 + 1186.23 7920.36 -2556.93 -0.14 -0.95 0.27 1 + 1333.80 7968.31 -2305.87 -0.14 -0.95 0.27 1 + 1481.60 8016.29 -2054.53 -0.14 -0.95 0.27 1 + 1629.17 8064.24 -1803.47 -0.14 -0.95 0.27 1 + 893.87 7960.98 -2566.46 -0.14 -0.95 0.27 1 + 1041.43 8009.03 -2315.17 -0.14 -0.95 0.27 1 + 1189.24 8056.91 -2064.06 -0.14 -0.95 0.27 1 + 1336.80 8104.96 -1812.77 -0.14 -0.95 0.27 1 + 749.07 8049.65 -2324.70 -0.14 -0.95 0.27 1 + 896.88 8097.53 -2073.59 -0.14 -0.95 0.27 1 + 1044.44 8145.58 -1822.30 -0.14 -0.95 0.27 1 + 604.61 8138.36 -2083.21 -0.14 -0.95 0.27 1 + 752.17 8186.41 -1831.92 -0.14 -0.95 0.27 1 + 812.83 7695.63 -3324.93 -0.08 -0.88 0.46 1 + 663.40 7588.73 -3556.17 -0.08 -0.88 0.46 1 + 514.17 7482.12 -3787.44 -0.08 -0.88 0.46 1 + 364.88 7375.10 -4018.85 -0.08 -0.88 0.46 1 + 215.44 7268.41 -4250.23 -0.08 -0.88 0.46 1 + 957.70 7567.09 -3547.75 -0.08 -0.88 0.46 1 + 808.61 7460.15 -3779.04 -0.08 -0.88 0.46 1 + 659.18 7353.46 -4010.43 -0.08 -0.88 0.46 1 + 509.95 7246.64 -4241.54 -0.08 -0.88 0.46 1 + 1102.92 7438.51 -3770.62 -0.08 -0.88 0.46 1 + 953.48 7331.61 -4001.86 -0.08 -0.88 0.46 1 + 804.25 7224.79 -4232.98 -0.08 -0.88 0.46 1 + 1247.98 7310.05 -3993.31 -0.08 -0.88 0.46 1 + 1098.55 7203.15 -4224.56 -0.08 -0.88 0.46 1 + 442.92 7714.86 -3332.83 -0.00 -0.91 0.42 1 + 147.77 7714.86 -3332.83 -0.00 -0.91 0.42 1 + -147.58 7714.78 -3332.95 -0.00 -0.91 0.42 1 + -442.87 7714.90 -3332.78 -0.00 -0.91 0.42 1 + 295.29 7606.24 -3564.34 -0.00 -0.91 0.42 1 + 0.15 7606.24 -3564.34 -0.00 -0.91 0.42 1 + -295.20 7606.15 -3564.46 -0.00 -0.91 0.42 1 + 147.67 7497.82 -3795.99 -0.00 -0.91 0.42 1 + -147.68 7497.74 -3796.11 -0.00 -0.91 0.42 1 + 0.04 7389.19 -4027.50 -0.00 -0.91 0.42 1 + -590.56 7823.78 -3062.35 0.00 -0.94 0.35 1 + -295.21 7823.86 -3062.23 0.00 -0.94 0.35 1 + -0.06 7823.86 -3062.23 0.00 -0.94 0.35 1 + 295.43 7823.83 -3062.28 0.00 -0.94 0.35 1 + 590.58 7823.83 -3062.28 0.00 -0.94 0.35 1 + -442.90 7912.14 -2822.21 0.00 -0.94 0.35 1 + -147.55 7912.22 -2822.09 0.00 -0.94 0.35 1 + 147.75 7912.10 -2822.26 0.00 -0.94 0.35 1 + 443.09 7912.19 -2822.14 0.00 -0.94 0.35 1 + -295.23 8000.50 -2582.07 0.00 -0.94 0.35 1 + 0.06 8000.38 -2582.24 0.00 -0.94 0.35 1 + 295.41 8000.47 -2582.12 0.00 -0.94 0.35 1 + -147.63 8088.87 -2342.37 0.00 -0.94 0.35 1 + 147.72 8088.95 -2342.25 0.00 -0.94 0.35 1 + -215.36 7268.43 -4250.21 0.08 -0.88 0.46 1 + -364.87 7375.15 -4018.78 0.08 -0.88 0.46 1 + -514.04 7482.06 -3787.53 0.08 -0.88 0.46 1 + -663.40 7588.67 -3556.27 0.08 -0.88 0.46 1 + -812.92 7695.60 -3324.98 0.08 -0.88 0.46 1 + -509.87 7246.65 -4241.54 0.08 -0.88 0.46 1 + -659.24 7353.26 -4010.27 0.08 -0.88 0.46 1 + -808.40 7460.16 -3779.03 0.08 -0.88 0.46 1 + -957.76 7566.98 -3547.91 0.08 -0.88 0.46 1 + -804.23 7224.75 -4233.03 0.08 -0.88 0.46 1 + -953.60 7331.57 -4001.91 0.08 -0.88 0.46 1 + -1102.76 7438.48 -3770.67 0.08 -0.88 0.46 1 + -1098.59 7203.07 -4224.67 0.08 -0.88 0.46 1 + -1247.75 7309.97 -3993.42 0.08 -0.88 0.46 1 + 1344.66 6176.00 5566.85 -0.14 -0.69 -0.71 1 + 1394.41 5532.80 6174.05 -0.14 -0.69 -0.71 1 + 1410.94 5318.44 6376.69 -0.14 -0.69 -0.71 1 + 1100.26 6083.59 5704.74 -0.14 -0.69 -0.71 1 + 1116.75 5869.19 5907.03 -0.14 -0.69 -0.71 1 + 1133.52 5654.95 6109.45 -0.14 -0.69 -0.71 1 + 1150.05 5440.75 6311.90 -0.14 -0.69 -0.71 1 + 855.85 5991.34 5842.43 -0.14 -0.69 -0.71 1 + 872.38 5777.13 6044.87 -0.14 -0.69 -0.71 1 + 889.16 5562.90 6247.30 -0.14 -0.69 -0.71 1 + 611.49 5899.28 5980.28 -0.14 -0.69 -0.71 1 + 628.26 5685.05 6182.70 -0.14 -0.69 -0.71 1 + 205.79 4242.07 7273.47 -0.07 -0.46 -0.89 1 + 458.77 4098.65 7325.80 -0.07 -0.46 -0.89 1 + 711.68 3955.66 7378.16 -0.07 -0.46 -0.89 1 + 964.45 3812.36 7430.41 -0.07 -0.46 -0.89 1 + 1217.42 3669.07 7482.95 -0.07 -0.46 -0.89 1 + 201.72 3979.41 7408.66 -0.07 -0.46 -0.89 1 + 454.49 3836.11 7460.91 -0.07 -0.46 -0.89 1 + 707.40 3693.12 7513.27 -0.07 -0.46 -0.89 1 + 960.17 3549.95 7565.73 -0.07 -0.46 -0.89 1 + 197.44 3716.87 7543.77 -0.07 -0.46 -0.89 1 + 450.21 3573.70 7596.23 -0.07 -0.46 -0.89 1 + 703.12 3430.71 7648.59 -0.07 -0.46 -0.89 1 + 193.16 3454.46 7679.09 -0.07 -0.46 -0.89 1 + 446.07 3311.47 7731.45 -0.07 -0.46 -0.89 1 + 1217.48 5052.02 6628.25 -0.07 -0.59 -0.80 1 + 964.57 4941.01 6732.87 -0.07 -0.59 -0.80 1 + 711.80 4830.30 6837.61 -0.07 -0.59 -0.80 1 + 458.68 4719.41 6942.15 -0.07 -0.59 -0.80 1 + 205.76 4608.53 7046.98 -0.07 -0.59 -0.80 1 + 960.35 5179.35 6558.72 -0.07 -0.59 -0.80 1 + 707.39 5068.63 6663.16 -0.07 -0.59 -0.80 1 + 454.47 4957.75 6768.00 -0.07 -0.59 -0.80 1 + 201.71 4846.92 6872.52 -0.07 -0.59 -0.80 1 + 703.18 5306.97 6489.01 -0.07 -0.59 -0.80 1 + 450.27 5195.96 6593.63 -0.07 -0.59 -0.80 1 + 197.51 5085.12 6698.15 -0.07 -0.59 -0.80 1 + 446.20 5434.48 6419.38 -0.07 -0.59 -0.80 1 + 193.29 5323.46 6524.00 -0.07 -0.59 -0.80 1 + 1277.80 6653.44 5012.27 -0.09 -0.83 -0.55 1 + 1038.77 6575.89 5167.46 -0.09 -0.83 -0.55 1 + 1248.68 6819.51 4769.69 -0.09 -0.83 -0.55 1 + 1009.90 6741.77 4925.06 -0.09 -0.83 -0.55 1 + 770.87 6664.22 5080.24 -0.09 -0.83 -0.55 1 + 1219.81 6985.39 4527.28 -0.09 -0.83 -0.55 1 + 980.78 6907.84 4682.47 -0.09 -0.83 -0.55 1 + 742.00 6830.10 4837.84 -0.09 -0.83 -0.55 1 + 502.98 6752.55 4993.03 -0.09 -0.83 -0.55 1 + 1190.69 7151.46 4284.69 -0.09 -0.83 -0.55 1 + 951.91 7073.72 4440.06 -0.09 -0.83 -0.55 1 + 712.89 6996.17 4595.25 -0.09 -0.83 -0.55 1 + 474.11 6918.58 4750.42 -0.09 -0.83 -0.55 1 + 235.08 6840.87 4905.81 -0.09 -0.83 -0.55 1 + 922.80 7239.79 4197.48 -0.09 -0.83 -0.55 1 + 684.02 7162.05 4352.85 -0.09 -0.83 -0.55 1 + 444.99 7084.50 4508.03 -0.09 -0.83 -0.55 1 + 206.22 7006.91 4663.20 -0.09 -0.83 -0.55 1 + 654.90 7328.12 4110.26 -0.09 -0.83 -0.55 1 + 416.12 7250.38 4265.63 -0.09 -0.83 -0.55 1 + 177.10 7172.82 4420.82 -0.09 -0.83 -0.55 1 + 249.16 6650.96 5149.98 -0.06 -0.76 -0.65 1 + 516.09 6556.80 5233.65 -0.06 -0.76 -0.65 1 + 783.24 6462.56 5316.94 -0.06 -0.76 -0.65 1 + 1050.39 6368.32 5400.24 -0.06 -0.76 -0.65 1 + 274.87 6458.32 5372.37 -0.06 -0.76 -0.65 1 + 542.02 6364.08 5455.66 -0.06 -0.76 -0.65 1 + 809.17 6269.84 5538.96 -0.06 -0.76 -0.65 1 + 300.83 6265.65 5594.74 -0.06 -0.76 -0.65 1 + 567.99 6171.41 5678.03 -0.06 -0.76 -0.65 1 + 326.77 6072.93 5816.75 -0.06 -0.76 -0.65 1 + -255.85 2774.88 7911.51 0.00 -0.34 -0.94 1 + -255.73 3052.22 7810.12 0.00 -0.34 -0.94 1 + 0.01 2636.38 7962.04 0.00 -0.34 -0.94 1 + -0.07 2913.69 7860.95 0.00 -0.34 -0.94 1 + 0.05 3191.02 7759.56 0.00 -0.34 -0.94 1 + 255.63 2774.87 7911.57 0.00 -0.34 -0.94 1 + 255.76 3052.20 7810.18 0.00 -0.34 -0.94 1 + 255.85 5835.29 6020.09 -0.00 -0.69 -0.73 1 + 255.73 5620.57 6222.80 -0.00 -0.69 -0.73 1 + -0.01 5942.44 5918.80 -0.00 -0.69 -0.73 1 + 0.07 5727.99 6121.62 -0.00 -0.69 -0.73 1 + -0.05 5513.28 6324.34 -0.00 -0.69 -0.73 1 + -255.63 5835.35 6020.10 -0.00 -0.69 -0.73 1 + -255.76 5620.64 6222.81 -0.00 -0.69 -0.73 1 + 295.25 7498.11 3749.05 -0.00 -0.89 -0.45 1 + 147.67 7383.74 3977.78 -0.00 -0.89 -0.45 1 + 147.69 7612.48 3520.31 -0.00 -0.89 -0.45 1 + 0.11 7498.11 3749.05 -0.00 -0.89 -0.45 1 + -147.47 7383.74 3977.78 -0.00 -0.89 -0.45 1 + -147.46 7612.48 3520.31 -0.00 -0.89 -0.45 1 + -295.39 7498.10 3749.10 -0.00 -0.89 -0.45 1 + -1050.45 6368.34 5400.20 0.06 -0.76 -0.65 1 + -783.29 6462.58 5316.91 0.06 -0.76 -0.65 1 + -516.13 6556.81 5233.62 0.06 -0.76 -0.65 1 + -248.94 6650.86 5150.17 0.06 -0.76 -0.65 1 + -809.32 6269.75 5539.04 0.06 -0.76 -0.65 1 + -542.16 6363.99 5455.75 0.06 -0.76 -0.65 1 + -275.00 6458.23 5372.46 0.06 -0.76 -0.65 1 + -567.99 6171.44 5677.99 0.06 -0.76 -0.65 1 + -300.83 6265.68 5594.70 0.06 -0.76 -0.65 1 + -326.86 6072.85 5816.83 0.06 -0.76 -0.65 1 + -1038.95 6575.84 5167.48 0.09 -0.83 -0.55 1 + -1277.81 6653.56 5012.12 0.09 -0.83 -0.55 1 + -770.96 6664.29 5080.13 0.09 -0.83 -0.55 1 + -1009.98 6741.80 4925.01 0.09 -0.83 -0.55 1 + -1248.84 6819.52 4769.64 0.09 -0.83 -0.55 1 + -503.13 6752.53 4993.01 0.09 -0.83 -0.55 1 + -741.99 6830.25 4837.65 0.09 -0.83 -0.55 1 + -981.00 6907.76 4682.53 0.09 -0.83 -0.55 1 + -1219.86 6985.48 4527.16 0.09 -0.83 -0.55 1 + -235.14 6840.98 4905.66 0.09 -0.83 -0.55 1 + -474.15 6918.49 4750.53 0.09 -0.83 -0.55 1 + -713.01 6996.21 4595.17 0.09 -0.83 -0.55 1 + -951.79 7073.79 4440.00 0.09 -0.83 -0.55 1 + -1190.88 7151.43 4284.68 0.09 -0.83 -0.55 1 + -206.16 7006.94 4663.18 0.09 -0.83 -0.55 1 + -445.18 7084.45 4508.06 0.09 -0.83 -0.55 1 + -684.03 7162.17 4352.69 0.09 -0.83 -0.55 1 + -922.81 7239.75 4197.53 0.09 -0.83 -0.55 1 + -177.19 7172.90 4420.70 0.09 -0.83 -0.55 1 + -416.20 7250.40 4265.58 0.09 -0.83 -0.55 1 + -655.06 7328.12 4110.21 0.09 -0.83 -0.55 1 + -205.79 4608.46 7047.03 0.07 -0.59 -0.80 1 + -458.77 4719.41 6942.15 0.07 -0.59 -0.80 1 + -711.68 4830.19 6837.67 0.07 -0.59 -0.80 1 + -964.45 4941.01 6732.86 0.07 -0.59 -0.80 1 + -1217.42 5052.09 6628.20 0.07 -0.59 -0.80 1 + -201.72 4846.85 6872.56 0.07 -0.59 -0.80 1 + -454.49 4957.67 6767.75 0.07 -0.59 -0.80 1 + -707.40 5068.45 6663.27 0.07 -0.59 -0.80 1 + -960.17 5179.40 6558.68 0.07 -0.59 -0.80 1 + -197.44 5085.11 6698.16 0.07 -0.59 -0.80 1 + -450.21 5196.06 6593.56 0.07 -0.59 -0.80 1 + -703.12 5306.84 6489.09 0.07 -0.59 -0.80 1 + -193.16 5323.50 6523.97 0.07 -0.59 -0.80 1 + -446.07 5434.28 6419.49 0.07 -0.59 -0.80 1 + 1171.72 8340.45 51.38 -0.21 -0.98 -0.03 1 + 1460.51 8278.83 57.22 -0.21 -0.98 -0.03 1 + 1749.17 8217.52 63.17 -0.21 -0.98 -0.03 1 + 2038.05 8155.86 69.24 -0.21 -0.98 -0.03 1 + 2326.93 8094.47 75.09 -0.21 -0.98 -0.03 1 + 1309.71 8303.81 309.78 -0.21 -0.98 -0.03 1 + 1598.37 8242.23 315.96 -0.21 -0.98 -0.03 1 + 1887.25 8180.84 321.81 -0.21 -0.98 -0.03 1 + 2175.82 8119.30 327.74 -0.21 -0.98 -0.03 1 + 1447.57 8267.21 568.52 -0.21 -0.98 -0.03 1 + 1736.36 8205.58 574.36 -0.21 -0.98 -0.03 1 + 2024.93 8144.04 580.30 -0.21 -0.98 -0.03 1 + 1585.34 8230.65 827.02 -0.21 -0.98 -0.03 1 + 1874.13 8169.02 832.86 -0.21 -0.98 -0.03 1 + 1629.23 8161.26 -1295.27 -0.14 -0.98 0.10 1 + 1481.43 8209.29 -1044.10 -0.14 -0.98 0.10 1 + 1333.86 8257.24 -793.04 -0.14 -0.98 0.10 1 + 1186.16 8305.22 -541.64 -0.14 -0.98 0.10 1 + 1038.59 8353.17 -290.58 -0.14 -0.98 0.10 1 + 1336.77 8202.57 -1301.47 -0.14 -0.98 0.10 1 + 1188.97 8250.60 -1050.31 -0.14 -0.98 0.10 1 + 1041.49 8298.51 -799.01 -0.14 -0.98 0.10 1 + 893.70 8346.54 -547.85 -0.14 -0.98 0.10 1 + 1044.31 8243.88 -1307.68 -0.14 -0.98 0.10 1 + 896.82 8291.79 -1056.38 -0.14 -0.98 0.10 1 + 749.03 8339.82 -805.22 -0.14 -0.98 0.10 1 + 752.24 8285.32 -1313.74 -0.14 -0.98 0.10 1 + 604.45 8333.34 -1062.58 -0.14 -0.98 0.10 1 + 215.36 8323.16 1272.50 -0.08 -0.99 -0.10 1 + 364.87 8337.09 1018.02 -0.08 -0.99 -0.10 1 + 514.04 8351.25 763.65 -0.08 -0.99 -0.10 1 + 663.40 8365.13 509.38 -0.08 -0.99 -0.10 1 + 812.92 8379.31 254.96 -0.08 -0.99 -0.10 1 + 509.87 8299.72 1272.46 -0.08 -0.99 -0.10 1 + 659.24 8313.60 1018.18 -0.08 -0.99 -0.10 1 + 808.40 8327.76 763.81 -0.08 -0.99 -0.10 1 + 957.76 8341.89 509.59 -0.08 -0.99 -0.10 1 + 804.23 8276.23 1272.62 -0.08 -0.99 -0.10 1 + 953.60 8290.36 1018.40 -0.08 -0.99 -0.10 1 + 1102.76 8304.52 764.03 -0.08 -0.99 -0.10 1 + 1098.59 8252.99 1272.83 -0.08 -0.99 -0.10 1 + 1247.75 8267.16 1018.47 -0.08 -0.99 -0.10 1 + -590.79 8176.05 -1561.49 0.00 -0.98 0.19 1 + -442.94 8128.00 -1812.71 0.00 -0.98 0.19 1 + -295.45 8079.94 -2063.88 0.00 -0.98 0.19 1 + -443.13 8223.87 -1310.37 0.00 -0.98 0.19 1 + -295.29 8176.07 -1561.54 0.00 -0.98 0.19 1 + -147.80 8128.00 -1812.71 0.00 -0.98 0.19 1 + 0.04 8079.95 -2063.94 0.00 -0.98 0.19 1 + -295.48 8271.93 -1059.21 0.00 -0.98 0.19 1 + -147.64 8223.88 -1310.43 0.00 -0.98 0.19 1 + -0.15 8176.07 -1561.54 0.00 -0.98 0.19 1 + 147.55 8127.97 -1812.57 0.00 -0.98 0.19 1 + 295.19 8079.95 -2063.94 0.00 -0.98 0.19 1 + -0.13 8271.90 -1059.06 0.00 -0.98 0.19 1 + 147.51 8223.88 -1310.43 0.00 -0.98 0.19 1 + 295.20 8176.03 -1561.40 0.00 -0.98 0.19 1 + 442.84 8128.01 -1812.77 0.00 -0.98 0.19 1 + 295.16 8271.94 -1059.26 0.00 -0.98 0.19 1 + 442.86 8223.85 -1310.29 0.00 -0.98 0.19 1 + 590.49 8176.08 -1561.60 0.00 -0.98 0.19 1 + 590.56 8401.67 -36.42 -0.00 -1.00 0.02 1 + 295.21 8401.71 -36.57 -0.00 -1.00 0.02 1 + 0.06 8401.71 -36.56 -0.00 -1.00 0.02 1 + -295.43 8401.69 -36.51 -0.00 -1.00 0.02 1 + -590.58 8401.69 -36.51 -0.00 -1.00 0.02 1 + 442.90 8395.32 -292.22 -0.00 -1.00 0.02 1 + 147.55 8395.35 -292.37 -0.00 -1.00 0.02 1 + -147.75 8395.31 -292.17 -0.00 -1.00 0.02 1 + -443.09 8395.34 -292.31 -0.00 -1.00 0.02 1 + 295.23 8388.96 -548.02 -0.00 -1.00 0.02 1 + -0.06 8388.92 -547.82 -0.00 -1.00 0.02 1 + -295.41 8388.95 -547.97 -0.00 -1.00 0.02 1 + 147.63 8382.78 -803.42 -0.00 -1.00 0.02 1 + -147.72 8382.81 -803.57 -0.00 -1.00 0.02 1 + -442.92 8400.10 255.16 0.00 -1.00 -0.06 1 + -147.77 8400.10 255.16 0.00 -1.00 -0.06 1 + 147.58 8400.07 255.30 0.00 -1.00 -0.06 1 + 442.87 8400.12 255.10 0.00 -1.00 -0.06 1 + -295.29 8384.44 510.40 0.00 -1.00 -0.06 1 + -0.15 8384.44 510.40 0.00 -1.00 -0.06 1 + 295.20 8384.41 510.55 0.00 -1.00 -0.06 1 + -147.67 8369.02 765.71 0.00 -1.00 -0.06 1 + 147.68 8368.99 765.85 0.00 -1.00 -0.06 1 + -0.04 8353.36 1020.95 0.00 -1.00 -0.06 1 + -812.83 8379.32 254.90 0.08 -0.99 -0.10 1 + -663.40 8365.16 509.26 0.08 -0.99 -0.10 1 + -514.17 8351.28 763.54 0.08 -0.99 -0.10 1 + -364.88 8337.07 1018.10 0.08 -0.99 -0.10 1 + -215.44 8323.16 1272.52 0.08 -0.99 -0.10 1 + -957.70 8341.93 509.41 0.08 -0.99 -0.10 1 + -808.61 8327.76 763.83 0.08 -0.99 -0.10 1 + -659.18 8313.85 1018.25 0.08 -0.99 -0.10 1 + -509.95 8299.72 1272.46 0.08 -0.99 -0.10 1 + -1102.92 8304.54 763.97 0.08 -0.99 -0.10 1 + -953.48 8290.38 1018.34 0.08 -0.99 -0.10 1 + -804.25 8276.25 1272.55 0.08 -0.99 -0.10 1 + -1247.98 8267.19 1018.34 0.08 -0.99 -0.10 1 + -1098.55 8253.02 1272.70 0.08 -0.99 -0.10 1 + 2014.87 7695.74 2745.39 -0.19 -0.94 -0.29 1 + 1730.17 7765.84 2710.37 -0.19 -0.94 -0.29 1 + 1445.47 7835.94 2675.36 -0.19 -0.94 -0.29 1 + 1160.72 7905.81 2640.25 -0.19 -0.94 -0.29 1 + 1918.70 7796.67 2485.19 -0.19 -0.94 -0.29 1 + 1634.00 7866.77 2450.18 -0.19 -0.94 -0.29 1 + 1349.30 7936.87 2415.16 -0.19 -0.94 -0.29 1 + 1822.34 7897.91 2225.04 -0.19 -0.94 -0.29 1 + 1537.65 7968.01 2190.02 -0.19 -0.94 -0.29 1 + 1726.17 7998.84 1964.84 -0.19 -0.94 -0.29 1 + 1424.05 8147.48 1395.69 -0.20 -0.96 -0.17 1 + 1587.17 8157.09 1149.73 -0.20 -0.96 -0.17 1 + 1549.64 8075.31 1653.03 -0.20 -0.96 -0.17 1 + 1712.57 8085.24 1407.12 -0.20 -0.96 -0.17 1 + 1875.69 8094.85 1161.16 -0.20 -0.96 -0.17 1 + 1837.85 8013.07 1664.63 -0.20 -0.96 -0.17 1 + 2000.96 8022.69 1418.68 -0.20 -0.96 -0.17 1 + 1828.68 7662.79 2993.56 -0.15 -0.91 -0.40 1 + 1919.81 7537.19 3244.86 -0.15 -0.91 -0.40 1 + 1542.69 7726.48 2955.75 -0.15 -0.91 -0.40 1 + 1634.13 7600.87 3206.86 -0.15 -0.91 -0.40 1 + 1725.26 7475.26 3458.15 -0.15 -0.91 -0.40 1 + 1257.01 7790.16 2917.75 -0.15 -0.91 -0.40 1 + 1348.15 7664.55 3169.04 -0.15 -0.91 -0.40 1 + 1439.59 7538.94 3420.15 -0.15 -0.91 -0.40 1 + 1530.72 7413.33 3671.44 -0.15 -0.91 -0.40 1 + 971.03 7853.84 2879.93 -0.15 -0.91 -0.40 1 + 1062.47 7728.23 3131.04 -0.15 -0.91 -0.40 1 + 1153.60 7602.62 3382.33 -0.15 -0.91 -0.40 1 + 1244.81 7477.09 3633.39 -0.15 -0.91 -0.40 1 + 1336.17 7351.41 3884.74 -0.15 -0.91 -0.40 1 + 776.48 7791.91 3093.22 -0.15 -0.91 -0.40 1 + 867.92 7666.30 3344.33 -0.15 -0.91 -0.40 1 + 959.05 7540.70 3595.63 -0.15 -0.91 -0.40 1 + 1050.26 7415.17 3846.69 -0.15 -0.91 -0.40 1 + 581.94 7729.99 3306.52 -0.15 -0.91 -0.40 1 + 673.38 7604.38 3557.63 -0.15 -0.91 -0.40 1 + 764.51 7478.77 3808.92 -0.15 -0.91 -0.40 1 + 757.62 8036.67 2378.56 -0.09 -0.97 -0.22 1 + 610.41 8107.28 2132.67 -0.09 -0.97 -0.22 1 + 462.84 8177.63 1886.77 -0.09 -0.97 -0.22 1 + 315.27 8247.98 1640.88 -0.09 -0.97 -0.22 1 + 904.37 8081.40 2126.19 -0.09 -0.97 -0.22 1 + 756.81 8151.75 1880.30 -0.09 -0.97 -0.22 1 + 609.24 8222.11 1634.40 -0.09 -0.97 -0.22 1 + 1050.92 8126.17 1873.67 -0.09 -0.97 -0.22 1 + 903.35 8196.52 1627.78 -0.09 -0.97 -0.22 1 + 1197.32 8170.65 1621.30 -0.09 -0.97 -0.22 1 + -147.61 8209.00 1901.15 -0.00 -0.95 -0.30 1 + 147.74 8208.96 1901.29 -0.00 -0.95 -0.30 1 + -295.24 8131.79 2145.11 -0.00 -0.95 -0.30 1 + 0.05 8131.84 2144.91 -0.00 -0.95 -0.30 1 + 295.40 8131.80 2145.05 -0.00 -0.95 -0.30 1 + -442.93 8054.66 2388.73 -0.00 -0.95 -0.30 1 + -147.58 8054.63 2388.87 -0.00 -0.95 -0.30 1 + 147.71 8054.68 2388.67 -0.00 -0.95 -0.30 1 + 443.06 8054.64 2388.81 -0.00 -0.95 -0.30 1 + -590.56 7977.46 2632.69 -0.00 -0.95 -0.30 1 + -295.27 7977.50 2632.49 -0.00 -0.95 -0.30 1 + 0.08 7977.47 2632.63 -0.00 -0.95 -0.30 1 + 295.22 7977.47 2632.63 -0.00 -0.95 -0.30 1 + 590.72 7977.48 2632.57 -0.00 -0.95 -0.30 1 + -442.90 7900.30 2876.45 -0.00 -0.95 -0.30 1 + -147.61 7900.34 2876.25 -0.00 -0.95 -0.30 1 + 147.74 7900.31 2876.39 -0.00 -0.95 -0.30 1 + 442.88 7900.31 2876.39 -0.00 -0.95 -0.30 1 + -295.24 7823.14 3120.21 -0.00 -0.95 -0.30 1 + 0.05 7823.18 3120.01 -0.00 -0.95 -0.30 1 + 295.40 7823.15 3120.15 -0.00 -0.95 -0.30 1 + -315.20 8247.98 1640.88 0.09 -0.97 -0.22 1 + -462.78 8177.63 1886.78 0.09 -0.97 -0.22 1 + -610.35 8107.28 2132.67 0.09 -0.97 -0.22 1 + -757.93 8036.68 2378.51 0.09 -0.97 -0.22 1 + -609.19 8222.15 1634.22 0.09 -0.97 -0.22 1 + -756.76 8151.80 1880.12 0.09 -0.97 -0.22 1 + -904.34 8081.44 2126.01 0.09 -0.97 -0.22 1 + -903.32 8196.51 1627.82 0.09 -0.97 -0.22 1 + -1050.90 8126.16 1873.72 0.09 -0.97 -0.22 1 + -1197.31 8170.68 1621.16 0.09 -0.97 -0.22 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -3145.16 7796.14 -69.20 9999.00 9999.00 9999.00 3 + -2107.90 6753.14 -4557.80 9999.00 9999.00 9999.00 3 + -2264.07 6702.41 4557.80 9999.00 9999.00 9999.00 3 + 0.06 8401.71 -36.56 9999.00 9999.00 9999.00 3 + -1038.67 6032.37 -5785.33 0.14 -0.66 0.73 1 + -1186.23 5829.10 -5940.69 0.14 -0.66 0.73 1 + -1333.80 5625.98 -6095.86 0.14 -0.66 0.73 1 + -1481.60 5422.63 -6251.17 0.14 -0.66 0.73 1 + -1629.17 5219.52 -6406.34 0.14 -0.66 0.73 1 + -893.87 5855.79 -5972.76 0.14 -0.66 0.73 1 + -1041.43 5652.51 -6128.12 0.14 -0.66 0.73 1 + -1189.24 5449.32 -6283.24 0.14 -0.66 0.73 1 + -1336.80 5246.05 -6438.60 0.14 -0.66 0.73 1 + -749.07 5679.20 -6160.19 0.14 -0.66 0.73 1 + -896.88 5476.01 -6315.31 0.14 -0.66 0.73 1 + -1044.44 5272.74 -6470.67 0.14 -0.66 0.73 1 + -604.61 5502.88 -6347.53 0.14 -0.66 0.73 1 + -752.17 5299.61 -6502.89 0.14 -0.66 0.73 1 + -1629.23 4808.36 -6720.39 0.14 -0.53 0.83 1 + -1481.43 4605.19 -6875.67 0.14 -0.53 0.83 1 + -1333.86 4402.07 -7030.84 0.14 -0.53 0.83 1 + -1186.16 4198.68 -7186.19 0.14 -0.53 0.83 1 + -1038.59 3995.56 -7341.36 0.14 -0.53 0.83 1 + -1336.77 4832.39 -6754.57 0.14 -0.53 0.83 1 + -1188.97 4629.22 -6909.85 0.14 -0.53 0.83 1 + -1041.49 4425.88 -7065.09 0.14 -0.53 0.83 1 + -893.70 4222.71 -7220.37 0.14 -0.53 0.83 1 + -1044.31 4856.42 -6788.74 0.14 -0.53 0.83 1 + -896.82 4653.07 -6943.98 0.14 -0.53 0.83 1 + -749.03 4449.90 -7099.26 0.14 -0.53 0.83 1 + -752.24 4880.37 -6823.09 0.14 -0.53 0.83 1 + -604.45 4677.20 -6978.37 0.14 -0.53 0.83 1 + -215.36 2584.08 -8013.55 0.08 -0.35 0.93 1 + -364.87 2817.92 -7912.20 0.08 -0.35 0.93 1 + -514.04 3051.77 -7811.11 0.08 -0.35 0.93 1 + -663.40 3285.41 -7709.81 0.08 -0.35 0.93 1 + -812.92 3519.31 -7608.71 0.08 -0.35 0.93 1 + -509.87 2573.63 -7992.57 0.08 -0.35 0.93 1 + -659.24 2807.27 -7891.27 0.08 -0.35 0.93 1 + -808.40 3041.12 -7790.18 0.08 -0.35 0.93 1 + -957.76 3274.82 -7689.12 0.08 -0.35 0.93 1 + -804.23 2562.98 -7971.63 0.08 -0.35 0.93 1 + -953.60 2796.68 -7870.58 0.08 -0.35 0.93 1 + -1102.76 3030.53 -7769.49 0.08 -0.35 0.93 1 + -1098.59 2552.40 -7950.94 0.08 -0.35 0.93 1 + -1247.75 2786.24 -7849.85 0.08 -0.35 0.93 1 + -2326.95 6083.27 -5340.40 0.21 -0.75 0.63 1 + -2037.98 6125.17 -5385.68 0.21 -0.75 0.63 1 + -1749.32 6167.02 -5431.26 0.21 -0.75 0.63 1 + -1460.60 6208.84 -5476.50 0.21 -0.75 0.63 1 + -1171.72 6250.93 -5521.93 0.21 -0.75 0.63 1 + -2175.85 6270.21 -5168.62 0.21 -0.75 0.63 1 + -1887.12 6312.04 -5213.86 0.21 -0.75 0.63 1 + -1598.46 6353.88 -5259.44 0.21 -0.75 0.63 1 + -1309.82 6395.89 -5304.83 0.21 -0.75 0.63 1 + -2024.99 6457.08 -4996.80 0.21 -0.75 0.63 1 + -1736.35 6499.08 -5042.19 0.21 -0.75 0.63 1 + -1447.69 6540.93 -5087.77 0.21 -0.75 0.63 1 + -1874.22 6644.12 -4825.13 0.21 -0.75 0.63 1 + -1585.56 6685.97 -4870.72 0.21 -0.75 0.63 1 + -1803.19 5400.68 -6197.12 0.21 -0.69 0.70 1 + -1655.61 5603.80 -6041.96 0.21 -0.69 0.70 1 + -1508.06 5807.07 -5886.59 0.21 -0.69 0.70 1 + -1360.25 6010.26 -5731.47 0.21 -0.69 0.70 1 + -1943.95 5562.32 -5994.02 0.21 -0.69 0.70 1 + -1796.38 5765.43 -5838.86 0.21 -0.69 0.70 1 + -1648.82 5968.70 -5683.50 0.21 -0.69 0.70 1 + -2084.81 5724.13 -5791.08 0.21 -0.69 0.70 1 + -1937.25 5927.40 -5635.72 0.21 -0.69 0.70 1 + -2225.58 5885.76 -5587.98 0.21 -0.69 0.70 1 + -2950.15 6569.96 -4353.36 0.30 -0.77 0.55 1 + -2826.06 6448.06 -4591.82 0.30 -0.77 0.55 1 + -2702.10 6325.74 -4830.27 0.30 -0.77 0.55 1 + -2578.14 6203.41 -5068.73 0.30 -0.77 0.55 1 + -2669.36 6631.21 -4421.44 0.30 -0.77 0.55 1 + -2545.40 6508.89 -4659.90 0.30 -0.77 0.55 1 + -2421.45 6386.57 -4898.35 0.30 -0.77 0.55 1 + -2388.56 6692.30 -4489.72 0.30 -0.77 0.55 1 + -2264.60 6569.98 -4728.17 0.30 -0.77 0.55 1 + -2107.90 6753.14 -4557.80 0.30 -0.77 0.55 1 + -757.62 1466.66 -8251.94 0.09 -0.23 0.97 1 + -610.41 1718.17 -8205.13 0.09 -0.23 0.97 1 + -462.84 1969.57 -8158.10 0.09 -0.23 0.97 1 + -315.27 2220.96 -8111.06 0.09 -0.23 0.97 1 + -904.37 1712.39 -8179.09 0.09 -0.23 0.97 1 + -756.81 1963.79 -8132.05 0.09 -0.23 0.97 1 + -609.24 2215.19 -8085.01 0.09 -0.23 0.97 1 + -1050.92 1958.27 -8106.21 0.09 -0.23 0.97 1 + -903.35 2209.67 -8059.17 0.09 -0.23 0.97 1 + -1197.32 2203.89 -8033.13 0.09 -0.23 0.97 1 + -1360.27 3949.31 -7305.88 0.21 -0.49 0.84 1 + -1507.84 4152.42 -7150.71 0.21 -0.49 0.84 1 + -1655.63 4355.59 -6995.43 0.21 -0.49 0.84 1 + -1803.11 4558.94 -6840.19 0.21 -0.49 0.84 1 + -1648.66 3914.04 -7253.20 0.21 -0.49 0.84 1 + -1796.23 4117.16 -7098.03 0.21 -0.49 0.84 1 + -1944.02 4320.33 -6942.75 0.21 -0.49 0.84 1 + -1937.14 3878.88 -7200.73 0.21 -0.49 0.84 1 + -2084.93 4082.05 -7045.45 0.21 -0.49 0.84 1 + -2225.54 3843.62 -7148.05 0.21 -0.49 0.84 1 + -1629.23 8064.19 -1803.52 0.14 -0.95 0.27 1 + -1481.43 8016.28 -2054.70 0.14 -0.95 0.27 1 + -1333.86 7968.33 -2305.76 0.14 -0.95 0.27 1 + -1186.16 7920.30 -2557.15 0.14 -0.95 0.27 1 + -1038.59 7872.35 -2808.21 0.14 -0.95 0.27 1 + -1336.77 8104.89 -1812.97 0.14 -0.95 0.27 1 + -1188.97 8056.97 -2064.15 0.14 -0.95 0.27 1 + -1041.49 8008.90 -2315.42 0.14 -0.95 0.27 1 + -893.70 7960.99 -2566.60 0.14 -0.95 0.27 1 + -1044.31 8145.58 -1822.42 0.14 -0.95 0.27 1 + -896.82 8097.51 -2073.69 0.14 -0.95 0.27 1 + -749.03 8049.60 -2324.87 0.14 -0.95 0.27 1 + -752.24 8186.33 -1832.05 0.14 -0.95 0.27 1 + -604.45 8138.42 -2083.23 0.14 -0.95 0.27 1 + -1171.72 7734.50 -3121.41 0.21 -0.90 0.39 1 + -1460.51 7675.06 -3104.13 0.21 -0.90 0.39 1 + -1749.17 7615.88 -3087.07 0.21 -0.90 0.39 1 + -2038.05 7556.32 -3070.00 0.21 -0.90 0.39 1 + -2326.93 7497.10 -3052.82 0.21 -0.90 0.39 1 + -1309.71 7605.21 -3348.13 0.21 -0.90 0.39 1 + -1598.37 7545.69 -3331.17 0.21 -0.90 0.39 1 + -1887.25 7486.47 -3313.99 0.21 -0.90 0.39 1 + -2175.82 7427.07 -3296.83 0.21 -0.90 0.39 1 + -1447.57 7475.84 -3575.17 0.21 -0.90 0.39 1 + -1736.36 7416.40 -3557.89 0.21 -0.90 0.39 1 + -2024.93 7357.00 -3540.73 0.21 -0.90 0.39 1 + -1585.34 7346.59 -3802.00 0.21 -0.90 0.39 1 + -1874.13 7287.15 -3784.72 0.21 -0.90 0.39 1 + -1360.27 7814.22 -2812.60 0.21 -0.93 0.30 1 + -1507.84 7862.17 -2561.54 0.21 -0.93 0.30 1 + -1655.63 7910.08 -2310.36 0.21 -0.93 0.30 1 + -1803.11 7958.15 -2059.09 0.21 -0.93 0.30 1 + -1648.66 7752.81 -2796.85 0.21 -0.93 0.30 1 + -1796.23 7800.76 -2545.78 0.21 -0.93 0.30 1 + -1944.02 7848.67 -2294.60 0.21 -0.93 0.30 1 + -1937.14 7691.63 -2781.18 0.21 -0.93 0.30 1 + -2084.93 7739.54 -2530.00 0.21 -0.93 0.30 1 + -2225.54 7630.23 -2765.43 0.21 -0.93 0.30 1 + -1798.86 6831.27 -4522.73 0.20 -0.83 0.51 1 + -1509.64 6882.00 -4553.93 0.20 -0.83 0.51 1 + -1943.25 6940.41 -4289.40 0.20 -0.83 0.51 1 + -1654.20 6991.24 -4320.90 0.20 -0.83 0.51 1 + -1364.98 7041.96 -4352.10 0.20 -0.83 0.51 1 + -1798.90 7100.22 -4087.66 0.20 -0.83 0.51 1 + -1509.68 7150.94 -4118.86 0.20 -0.83 0.51 1 + -2542.31 7567.10 -2686.35 0.29 -0.92 0.25 1 + -2402.86 7674.91 -2449.21 0.29 -0.92 0.25 1 + -2263.36 7782.86 -2212.48 0.29 -0.92 0.25 1 + -2124.00 7890.56 -1975.54 0.29 -0.92 0.25 1 + -1984.64 7998.59 -1738.49 0.29 -0.92 0.25 1 + -2685.72 7592.75 -2429.33 0.29 -0.92 0.25 1 + -2546.36 7700.44 -2192.39 0.29 -0.92 0.25 1 + -2406.86 7808.39 -1955.66 0.29 -0.92 0.25 1 + -2267.59 7916.31 -1718.82 0.29 -0.92 0.25 1 + -2829.22 7618.28 -2172.51 0.29 -0.92 0.25 1 + -2689.95 7726.19 -1935.66 0.29 -0.92 0.25 1 + -2550.45 7834.14 -1698.94 0.29 -0.92 0.25 1 + -2972.81 7644.03 -1915.79 0.29 -0.92 0.25 1 + -2833.32 7751.98 -1679.06 0.29 -0.92 0.25 1 + -2578.18 7307.87 -3281.64 0.30 -0.84 0.44 1 + -2702.13 7149.29 -3497.69 0.30 -0.84 0.44 1 + -2826.09 6990.71 -3713.75 0.30 -0.84 0.44 1 + -2949.95 6831.91 -3929.72 0.30 -0.84 0.44 1 + -2421.33 7237.48 -3521.60 0.30 -0.84 0.44 1 + -2545.28 7078.90 -3737.65 0.30 -0.84 0.44 1 + -2669.23 6920.32 -3953.71 0.30 -0.84 0.44 1 + -2264.65 7167.18 -3761.85 0.30 -0.84 0.44 1 + -2388.60 7008.60 -3977.91 0.30 -0.84 0.44 1 + -2107.80 7096.79 -4001.81 0.30 -0.84 0.44 1 + -1217.48 3669.14 7482.91 0.07 -0.46 -0.89 1 + -964.57 3812.36 7430.41 0.07 -0.46 -0.89 1 + -711.80 3955.55 7378.23 0.07 -0.46 -0.89 1 + -458.68 4098.64 7325.80 0.07 -0.46 -0.89 1 + -205.76 4242.00 7273.51 0.07 -0.46 -0.89 1 + -960.35 3550.01 7565.70 0.07 -0.46 -0.89 1 + -707.39 3692.93 7513.38 0.07 -0.46 -0.89 1 + -454.47 3836.29 7461.09 0.07 -0.46 -0.89 1 + -201.71 3979.34 7408.70 0.07 -0.46 -0.89 1 + -703.18 3430.58 7648.68 0.07 -0.46 -0.89 1 + -450.27 3573.80 7596.17 0.07 -0.46 -0.89 1 + -197.51 3716.85 7543.78 0.07 -0.46 -0.89 1 + -446.20 3311.27 7731.58 0.07 -0.46 -0.89 1 + -193.29 3454.50 7679.08 0.07 -0.46 -0.89 1 + -1411.04 5318.44 6376.68 0.14 -0.69 -0.71 1 + -1394.49 5532.74 6174.12 0.14 -0.69 -0.71 1 + -1344.58 6175.99 5566.88 0.14 -0.69 -0.71 1 + -1150.21 5440.66 6311.97 0.14 -0.69 -0.71 1 + -1133.34 5654.90 6109.56 0.14 -0.69 -0.71 1 + -1116.82 5869.41 5907.15 0.14 -0.69 -0.71 1 + -1100.19 6083.57 5704.78 0.14 -0.69 -0.71 1 + -889.06 5562.83 6247.41 0.14 -0.69 -0.71 1 + -872.51 5777.13 6044.85 0.14 -0.69 -0.71 1 + -855.88 5991.30 5842.48 0.14 -0.69 -0.71 1 + -628.15 5684.92 6182.90 0.14 -0.69 -0.71 1 + -611.60 5899.22 5980.33 0.14 -0.69 -0.71 1 + -1220.87 3994.59 7305.88 0.12 -0.52 -0.85 1 + -1220.87 4245.66 7150.72 0.12 -0.52 -0.85 1 + -1220.72 4496.89 6995.44 0.12 -0.52 -0.85 1 + -1220.93 4748.09 6840.20 0.12 -0.52 -0.85 1 + -966.83 4135.58 7253.20 0.12 -0.52 -0.85 1 + -966.83 4386.64 7098.04 0.12 -0.52 -0.85 1 + -966.68 4637.88 6942.76 0.12 -0.52 -0.85 1 + -712.77 4276.70 7200.74 0.12 -0.52 -0.85 1 + -712.62 4527.93 7045.46 0.12 -0.52 -0.85 1 + -458.73 4417.68 7148.06 0.12 -0.52 -0.85 1 + -249.16 1631.87 8251.94 0.06 -0.24 -0.97 1 + -516.09 1748.82 8205.13 0.06 -0.24 -0.97 1 + -783.24 1865.47 8158.10 0.06 -0.24 -0.97 1 + -1050.39 1982.11 8111.06 0.06 -0.24 -0.97 1 + -274.87 1916.93 8179.09 0.06 -0.24 -0.97 1 + -542.02 2033.58 8132.05 0.06 -0.24 -0.97 1 + -809.17 2150.23 8085.01 0.06 -0.24 -0.97 1 + -300.83 2201.99 8106.21 0.06 -0.24 -0.97 1 + -567.99 2318.64 8059.17 0.06 -0.24 -0.97 1 + -326.77 2486.75 8033.13 0.06 -0.24 -0.97 1 + -1475.01 7049.27 4353.36 0.21 -0.81 -0.55 1 + -1503.75 6877.71 4591.82 0.21 -0.81 -0.55 1 + -1532.13 6705.89 4830.28 0.21 -0.81 -0.55 1 + -1560.51 6534.07 5068.74 0.21 -0.81 -0.55 1 + -1738.18 6933.78 4421.44 0.21 -0.81 -0.55 1 + -1766.56 6761.96 4659.90 0.21 -0.81 -0.55 1 + -1794.94 6590.14 4898.36 0.21 -0.81 -0.55 1 + -2001.26 6818.16 4489.72 0.21 -0.81 -0.55 1 + -2029.64 6646.33 4728.18 0.21 -0.81 -0.55 1 + -2264.07 6702.41 4557.80 0.21 -0.81 -0.55 1 + -1715.64 5429.13 6197.13 0.23 -0.68 -0.70 1 + -1954.41 5506.71 6041.96 0.23 -0.68 -0.70 1 + -1696.76 5642.63 5994.03 0.23 -0.68 -0.70 1 + -1935.53 5720.22 5838.87 0.23 -0.68 -0.70 1 + -2174.39 5797.94 5683.50 0.23 -0.68 -0.70 1 + -1677.92 5856.34 5791.09 0.23 -0.68 -0.70 1 + -1916.77 5934.06 5635.73 0.23 -0.68 -0.70 1 + -1659.04 6069.84 5587.99 0.23 -0.68 -0.70 1 + -1693.12 6289.22 5340.41 0.27 -0.73 -0.63 1 + -1951.52 6153.27 5385.69 0.27 -0.73 -0.63 1 + -2209.65 6017.45 5431.27 0.27 -0.73 -0.63 1 + -2467.82 5881.58 5476.50 0.27 -0.73 -0.63 1 + -2726.27 5745.83 5521.93 0.27 -0.73 -0.63 1 + -1925.24 6351.65 5168.63 0.27 -0.73 -0.63 1 + -2183.41 6215.77 5213.86 0.27 -0.73 -0.63 1 + -2441.53 6079.96 5259.45 0.27 -0.73 -0.63 1 + -2699.74 5944.28 5304.83 0.27 -0.73 -0.63 1 + -2157.12 6414.15 4996.81 0.27 -0.73 -0.63 1 + -2415.33 6278.47 5042.19 0.27 -0.73 -0.63 1 + -2673.45 6142.66 5087.78 0.27 -0.73 -0.63 1 + -2389.04 6476.85 4825.14 0.27 -0.73 -0.63 1 + -2647.17 6341.04 4870.72 0.27 -0.73 -0.63 1 + -1344.66 2217.15 8013.55 0.14 -0.33 -0.93 1 + -1361.15 2494.21 7912.20 0.14 -0.33 -0.93 1 + -1377.92 2771.07 7811.11 0.14 -0.33 -0.93 1 + -1394.41 3047.88 7709.81 0.14 -0.33 -0.93 1 + -1410.94 3325.00 7608.71 0.14 -0.33 -0.93 1 + -1100.26 2381.81 7992.57 0.14 -0.33 -0.93 1 + -1116.75 2658.62 7891.27 0.14 -0.33 -0.93 1 + -1133.52 2935.48 7790.18 0.14 -0.33 -0.93 1 + -1150.05 3212.34 7689.12 0.14 -0.33 -0.93 1 + -855.85 2546.21 7971.63 0.14 -0.33 -0.93 1 + -872.38 2823.07 7870.58 0.14 -0.33 -0.93 1 + -889.16 3099.93 7769.49 0.14 -0.33 -0.93 1 + -611.49 2710.66 7950.94 0.14 -0.33 -0.93 1 + -628.26 2987.52 7849.85 0.14 -0.33 -0.93 1 + -2560.02 6583.97 4522.73 0.33 -0.79 -0.51 1 + -2823.82 6455.01 4553.93 0.33 -0.79 -0.51 1 + -2507.36 6757.14 4289.40 0.33 -0.79 -0.51 1 + -2771.07 6628.36 4320.90 0.33 -0.79 -0.51 1 + -3034.87 6499.40 4352.10 0.33 -0.79 -0.51 1 + -2718.06 6801.57 4087.66 0.33 -0.79 -0.51 1 + -2981.86 6672.61 4118.86 0.33 -0.79 -0.51 1 + -1508.21 4847.67 6720.40 0.20 -0.52 -0.83 1 + -1508.36 4596.43 6875.68 0.20 -0.52 -0.83 1 + -1508.36 4345.37 7030.85 0.20 -0.52 -0.83 1 + -1508.30 4094.00 7186.20 0.20 -0.52 -0.83 1 + -1508.30 3842.94 7341.36 0.20 -0.52 -0.83 1 + -1758.94 4695.21 6754.58 0.20 -0.52 -0.83 1 + -1759.09 4443.97 6909.86 0.20 -0.52 -0.83 1 + -1758.88 4192.77 7065.09 0.20 -0.52 -0.83 1 + -1759.03 3941.54 7220.37 0.20 -0.52 -0.83 1 + -2009.67 4542.74 6788.75 0.20 -0.52 -0.83 1 + -2009.46 4291.54 6943.99 0.20 -0.52 -0.83 1 + -2009.61 4040.31 7099.27 0.20 -0.52 -0.83 1 + -2260.03 4390.45 6823.10 0.20 -0.52 -0.83 1 + -2260.18 4139.21 6978.37 0.20 -0.52 -0.83 1 + -2705.44 5490.80 5785.33 0.28 -0.62 -0.73 1 + -1988.71 5257.86 6251.18 0.28 -0.62 -0.73 1 + -1749.93 5180.27 6406.35 0.28 -0.62 -0.73 1 + -2718.79 5262.83 5972.76 0.28 -0.62 -0.73 1 + -2479.93 5185.11 6128.13 0.28 -0.62 -0.73 1 + -2240.92 5107.61 6283.25 0.28 -0.62 -0.73 1 + -2002.06 5029.88 6438.61 0.28 -0.62 -0.73 1 + -2732.14 5034.86 6160.19 0.28 -0.62 -0.73 1 + -2493.13 4957.35 6315.31 0.28 -0.62 -0.73 1 + -2254.27 4879.63 6470.68 0.28 -0.62 -0.73 1 + -2745.37 4807.30 6347.53 0.28 -0.62 -0.73 1 + -2506.52 4729.58 6502.90 0.28 -0.62 -0.73 1 + -410.64 1318.69 8301.46 0.11 -0.15 -0.98 1 + -649.42 1145.21 8301.46 0.11 -0.15 -0.98 1 + -888.45 971.48 8301.48 0.11 -0.15 -0.98 1 + -1127.22 798.00 8301.48 0.11 -0.15 -0.98 1 + -677.72 1435.24 8253.93 0.11 -0.15 -0.98 1 + -916.50 1261.51 8253.98 0.11 -0.15 -0.98 1 + -944.84 1551.59 8206.69 0.11 -0.15 -0.98 1 + -1183.87 1378.11 8206.66 0.11 -0.15 -0.98 1 + -1211.92 1668.14 8159.16 0.11 -0.15 -0.98 1 + -2479.98 3162.03 7378.34 0.28 -0.38 -0.88 1 + -2719.00 2988.54 7378.30 0.28 -0.38 -0.88 1 + -2254.44 3605.25 7258.24 0.28 -0.38 -0.88 1 + -2493.22 3431.52 7258.29 0.28 -0.38 -0.88 1 + -2732.25 3258.04 7258.25 0.28 -0.38 -0.88 1 + -2506.50 3701.06 7138.49 0.28 -0.38 -0.88 1 + -2745.53 3527.58 7138.45 0.28 -0.38 -0.88 1 + -2726.23 2369.46 7608.69 0.27 -0.24 -0.93 1 + -2467.88 2268.11 7709.78 0.27 -0.24 -0.93 1 + -2209.82 2166.81 7811.08 0.27 -0.24 -0.93 1 + -1951.48 2065.21 7912.22 0.27 -0.24 -0.93 1 + -1693.17 1963.92 8013.56 0.27 -0.24 -0.93 1 + -2699.79 2086.62 7689.08 0.27 -0.24 -0.93 1 + -2441.70 1985.02 7790.18 0.27 -0.24 -0.93 1 + -2183.39 1883.72 7891.51 0.27 -0.24 -0.93 1 + -1925.30 1782.37 7992.57 0.27 -0.24 -0.93 1 + -2673.61 1803.53 7769.47 0.27 -0.24 -0.93 1 + -2415.27 1702.18 7870.56 0.27 -0.24 -0.93 1 + -2157.17 1600.83 7971.62 0.27 -0.24 -0.93 1 + -2647.43 1520.69 7849.82 0.27 -0.24 -0.93 1 + -2389.09 1419.34 7950.91 0.27 -0.24 -0.93 1 + -1629.00 267.32 8251.94 0.25 -0.01 -0.97 1 + -1822.71 49.59 8205.13 0.25 -0.01 -0.97 1 + -2016.20 -168.44 8158.10 0.25 -0.01 -0.97 1 + -1038.67 8353.14 -290.55 0.14 -0.98 0.10 1 + -1186.23 8305.21 -541.87 0.14 -0.98 0.10 1 + -1333.80 8257.26 -792.93 0.14 -0.98 0.10 1 + -1481.60 8209.23 -1044.27 0.14 -0.98 0.10 1 + -1629.17 8161.28 -1295.33 0.14 -0.98 0.10 1 + -893.87 8346.48 -547.97 0.14 -0.98 0.10 1 + -1041.43 8298.54 -799.29 0.14 -0.98 0.10 1 + -1189.24 8250.50 -1050.37 0.14 -0.98 0.10 1 + -1336.80 8202.57 -1301.69 0.14 -0.98 0.10 1 + -749.07 8339.81 -805.40 0.14 -0.98 0.10 1 + -896.88 8291.77 -1056.48 0.14 -0.98 0.10 1 + -1044.44 8243.84 -1307.80 0.14 -0.98 0.10 1 + -604.61 8333.28 -1062.58 0.14 -0.98 0.10 1 + -752.17 8285.35 -1313.90 0.14 -0.98 0.10 1 + -1803.19 8156.84 -1018.61 0.21 -0.97 0.06 1 + -1655.61 8204.79 -767.55 0.21 -0.97 0.06 1 + -1508.06 8252.72 -516.23 0.21 -0.97 0.06 1 + -1360.25 8300.76 -265.15 0.21 -0.97 0.06 1 + -1943.95 8141.92 -759.48 0.21 -0.97 0.06 1 + -1796.38 8189.87 -508.41 0.21 -0.97 0.06 1 + -1648.82 8237.80 -257.10 0.21 -0.97 0.06 1 + -2084.81 8127.23 -500.34 0.21 -0.97 0.06 1 + -1937.25 8175.17 -249.02 0.21 -0.97 0.06 1 + -2225.58 8112.31 -241.20 0.21 -0.97 0.06 1 + -2326.95 8094.47 75.01 0.21 -0.98 -0.03 1 + -2037.98 8155.88 69.20 0.21 -0.98 -0.03 1 + -1749.32 8217.46 63.12 0.21 -0.98 -0.03 1 + -1460.60 8278.79 57.29 0.21 -0.98 -0.03 1 + -1171.72 8340.45 51.48 0.21 -0.98 -0.03 1 + -2175.85 8119.29 327.67 0.21 -0.98 -0.03 1 + -1887.12 8180.61 321.84 0.21 -0.98 -0.03 1 + -1598.46 8242.19 315.76 0.21 -0.98 -0.03 1 + -1309.82 8303.76 309.94 0.21 -0.98 -0.03 1 + -2024.99 8144.02 580.32 0.21 -0.98 -0.03 1 + -1736.35 8205.59 574.50 0.21 -0.98 -0.03 1 + -1447.69 8267.17 568.42 0.21 -0.98 -0.03 1 + -1874.22 8168.99 832.97 0.21 -0.98 -0.03 1 + -1585.56 8230.57 826.90 0.21 -0.98 -0.03 1 + -1984.55 8076.35 -1331.50 0.29 -0.95 0.11 1 + -2123.90 8063.28 -1071.42 0.29 -0.95 0.11 1 + -2263.33 8050.46 -811.59 0.29 -0.95 0.11 1 + -2402.92 8037.30 -551.53 0.29 -0.95 0.11 1 + -2542.37 8024.47 -291.44 0.29 -0.95 0.11 1 + -2267.41 7992.64 -1319.55 0.29 -0.95 0.11 1 + -2406.98 7979.49 -1059.74 0.29 -0.95 0.11 1 + -2546.43 7966.66 -799.66 0.29 -0.95 0.11 1 + -2685.77 7953.61 -539.83 0.29 -0.95 0.11 1 + -2550.48 7908.85 -1307.88 0.29 -0.95 0.11 1 + -2689.84 7895.78 -1047.80 0.29 -0.95 0.11 1 + -2829.18 7882.73 -787.97 0.29 -0.95 0.11 1 + -2833.33 7825.16 -1296.18 0.29 -0.95 0.11 1 + -2972.68 7812.09 -1036.10 0.29 -0.95 0.11 1 + -3141.63 7700.39 1331.50 0.33 -0.94 -0.11 1 + -3021.21 7771.73 1071.42 0.33 -0.94 -0.11 1 + -2900.88 7843.31 811.59 0.33 -0.94 -0.11 1 + -2780.21 7914.71 551.53 0.33 -0.94 -0.11 1 + -2659.86 7986.30 291.44 0.33 -0.94 -0.11 1 + -2863.59 7798.92 1319.55 0.33 -0.94 -0.11 1 + -2742.95 7870.33 1059.74 0.33 -0.94 -0.11 1 + -2622.59 7941.91 799.66 0.33 -0.94 -0.11 1 + -2502.19 8013.25 539.83 0.33 -0.94 -0.11 1 + -2585.33 7897.53 1307.88 0.33 -0.94 -0.11 1 + -2464.91 7968.87 1047.80 0.33 -0.94 -0.11 1 + -2344.51 8040.21 787.97 0.33 -0.94 -0.11 1 + -2307.31 7996.07 1296.18 0.33 -0.94 -0.11 1 + -2186.89 8067.40 1036.10 0.33 -0.94 -0.11 1 + -3096.81 7666.59 -1418.62 0.40 -0.90 0.17 1 + -3240.67 7651.35 -1161.10 0.40 -0.90 0.17 1 + -3222.91 7563.00 -1664.71 0.40 -0.90 0.17 1 + -3366.78 7547.76 -1407.19 0.40 -0.90 0.17 1 + -3510.64 7532.17 -1149.76 0.40 -0.90 0.17 1 + -3492.88 7443.91 -1653.03 0.40 -0.90 0.17 1 + -3636.75 7428.58 -1395.85 0.40 -0.90 0.17 1 + -2875.28 7916.30 -75.01 0.41 -0.91 0.03 1 + -3145.16 7796.14 -69.20 0.41 -0.91 0.03 1 + -3414.88 7676.29 -63.12 0.41 -0.91 0.03 1 + -3684.52 7556.20 -57.29 0.41 -0.91 0.03 1 + -3954.46 7436.28 -51.48 0.41 -0.91 0.03 1 + -3012.11 7847.57 -327.67 0.41 -0.91 0.03 1 + -3281.74 7727.48 -321.84 0.41 -0.91 0.03 1 + -3551.47 7607.63 -315.76 0.41 -0.91 0.03 1 + -3821.17 7487.78 -309.94 0.41 -0.91 0.03 1 + -3148.69 7778.91 -580.32 0.41 -0.91 0.03 1 + -3418.40 7659.06 -574.50 0.41 -0.91 0.03 1 + -3688.12 7539.21 -568.42 0.41 -0.91 0.03 1 + -3285.35 7710.49 -832.97 0.41 -0.91 0.03 1 + -3555.07 7590.64 -826.90 0.41 -0.91 0.03 1 + -3335.67 7658.91 1018.61 0.40 -0.91 -0.06 1 + -3483.25 7610.96 767.55 0.40 -0.91 -0.06 1 + -3630.80 7563.01 516.23 0.40 -0.91 -0.06 1 + -3778.61 7514.99 265.15 0.40 -0.91 -0.06 1 + -3213.02 7729.58 759.48 0.40 -0.91 -0.06 1 + -3360.59 7681.63 508.41 0.40 -0.91 -0.06 1 + -3508.14 7633.68 257.10 0.40 -0.91 -0.06 1 + -3090.43 7800.49 500.34 0.40 -0.91 -0.06 1 + -3237.98 7752.54 249.02 0.40 -0.91 -0.06 1 + -2967.78 7871.15 241.20 0.40 -0.91 -0.06 1 + -1919.91 7537.23 3244.69 0.15 -0.91 -0.40 1 + -1828.50 7662.86 2993.51 0.15 -0.91 -0.40 1 + -1725.16 7475.33 3458.04 0.15 -0.91 -0.40 1 + -1634.10 7600.91 3206.77 0.15 -0.91 -0.40 1 + -1542.70 7726.54 2955.59 0.15 -0.91 -0.40 1 + -1530.76 7413.38 3671.30 0.15 -0.91 -0.40 1 + -1439.36 7539.01 3420.12 0.15 -0.91 -0.40 1 + -1348.30 7664.59 3168.85 0.15 -0.91 -0.40 1 + -1256.89 7790.22 2917.67 0.15 -0.91 -0.40 1 + -1336.02 7351.48 3884.65 0.15 -0.91 -0.40 1 + -1244.96 7477.06 3633.38 0.15 -0.91 -0.40 1 + -1153.55 7602.69 3382.20 0.15 -0.91 -0.40 1 + -1062.35 7728.22 3131.14 0.15 -0.91 -0.40 1 + -971.09 7853.90 2879.75 0.15 -0.91 -0.40 1 + -1050.21 7415.16 3846.73 0.15 -0.91 -0.40 1 + -959.15 7540.74 3595.46 0.15 -0.91 -0.40 1 + -867.75 7666.37 3344.28 0.15 -0.91 -0.40 1 + -776.55 7791.90 3093.22 0.15 -0.91 -0.40 1 + -764.41 7478.84 3808.81 0.15 -0.91 -0.40 1 + -673.35 7604.42 3557.54 0.15 -0.91 -0.40 1 + -581.94 7730.05 3306.36 0.15 -0.91 -0.40 1 + -1160.77 7905.68 2640.54 0.19 -0.94 -0.29 1 + -1445.46 7835.96 2675.31 0.19 -0.94 -0.29 1 + -1730.15 7765.86 2710.32 0.19 -0.94 -0.29 1 + -2014.85 7695.77 2745.32 0.19 -0.94 -0.29 1 + -1349.12 7936.90 2415.20 0.19 -0.94 -0.29 1 + -1633.82 7866.80 2450.21 0.19 -0.94 -0.29 1 + -1918.51 7796.70 2485.21 0.19 -0.94 -0.29 1 + -1537.68 7968.02 2189.99 0.19 -0.94 -0.29 1 + -1822.38 7897.92 2224.99 0.19 -0.94 -0.29 1 + -1726.04 7998.86 1964.88 0.19 -0.94 -0.29 1 + -1838.04 8012.97 1664.71 0.20 -0.96 -0.17 1 + -2000.95 8022.65 1418.62 0.20 -0.96 -0.17 1 + -1549.63 8075.31 1653.03 0.20 -0.96 -0.17 1 + -1712.69 8085.20 1407.19 0.20 -0.96 -0.17 1 + -1875.60 8094.88 1161.10 0.20 -0.96 -0.17 1 + -1424.23 8147.47 1395.85 0.20 -0.96 -0.17 1 + -1587.14 8157.15 1149.76 0.20 -0.96 -0.17 1 + -2209.67 7427.61 3281.64 0.25 -0.86 -0.44 1 + -2016.18 7372.18 3497.69 0.25 -0.86 -0.44 1 + -1822.69 7316.74 3713.75 0.25 -0.86 -0.44 1 + -1629.14 7261.08 3929.72 0.25 -0.86 -0.44 1 + -2295.19 7278.47 3521.60 0.25 -0.86 -0.44 1 + -2101.70 7223.04 3737.65 0.25 -0.86 -0.44 1 + -1908.21 7167.60 3953.71 0.25 -0.86 -0.44 1 + -2380.63 7129.51 3761.85 0.25 -0.86 -0.44 1 + -2187.14 7074.07 3977.91 0.25 -0.86 -0.44 1 + -2466.15 6980.36 4001.81 0.25 -0.86 -0.44 1 + -2391.06 7616.24 2686.35 0.31 -0.92 -0.25 1 + -2567.26 7621.50 2449.21 0.31 -0.92 -0.25 1 + -2743.56 7626.84 2212.48 0.31 -0.92 -0.25 1 + -2919.61 7632.05 1975.54 0.31 -0.92 -0.25 1 + -3095.86 7637.54 1738.49 0.31 -0.92 -0.25 1 + -2290.12 7721.29 2429.33 0.31 -0.92 -0.25 1 + -2466.17 7726.50 2192.39 0.31 -0.92 -0.25 1 + -2642.47 7731.84 1955.66 0.31 -0.92 -0.25 1 + -2818.58 7737.28 1718.82 0.31 -0.92 -0.25 1 + -2189.03 7826.29 2172.51 0.31 -0.92 -0.25 1 + -2365.14 7831.73 1935.66 0.31 -0.92 -0.25 1 + -2541.44 7837.07 1698.94 0.31 -0.92 -0.25 1 + -2088.00 7931.52 1915.79 0.31 -0.92 -0.25 1 + -2264.31 7936.86 1679.06 0.31 -0.92 -0.25 1 + -3598.30 6946.07 3121.41 0.36 -0.85 -0.39 1 + -3329.72 7067.73 3104.13 0.36 -0.85 -0.39 1 + -3061.40 7189.52 3087.07 0.36 -0.85 -0.39 1 + -2792.68 7311.13 3070.00 0.36 -0.85 -0.39 1 + -2524.17 7433.02 3052.82 0.36 -0.85 -0.39 1 + -3410.66 6922.58 3348.13 0.36 -0.85 -0.39 1 + -3142.14 7044.10 3331.17 0.36 -0.85 -0.39 1 + -2873.63 7165.98 3313.99 0.36 -0.85 -0.39 1 + -2605.25 7287.54 3296.83 0.36 -0.85 -0.39 1 + -3223.08 6898.95 3575.17 0.36 -0.85 -0.39 1 + -2954.51 7020.61 3557.89 0.36 -0.85 -0.39 1 + -2686.13 7142.17 3540.73 0.36 -0.85 -0.39 1 + -3035.65 6875.36 3802.00 0.36 -0.85 -0.39 1 + -2767.08 6997.02 3784.72 0.36 -0.85 -0.39 1 + -3492.61 7121.39 2812.60 0.37 -0.88 -0.30 1 + -3401.41 7246.92 2561.54 0.37 -0.88 -0.30 1 + -3310.00 7372.55 2310.36 0.37 -0.88 -0.30 1 + -3218.94 7498.12 2059.09 0.37 -0.88 -0.30 1 + -3223.20 7241.22 2796.85 0.37 -0.88 -0.30 1 + -3132.00 7366.75 2545.78 0.37 -0.88 -0.30 1 + -3040.60 7492.38 2294.60 0.37 -0.88 -0.30 1 + -2953.85 7361.29 2781.18 0.37 -0.88 -0.30 1 + -2862.45 7486.92 2530.00 0.37 -0.88 -0.30 1 + -2684.45 7481.12 2765.43 0.37 -0.88 -0.30 1 + -4176.36 73.30 7305.88 9999.00 9999.00 9999.00 3 + -7074.00 -82.10 4557.80 9999.00 9999.00 9999.00 3 + -5771.25 4091.46 -4557.89 9999.00 9999.00 9999.00 3 + -5674.62 4224.46 4557.89 9999.00 9999.00 9999.00 3 + -6047.76 5839.25 -57.22 9999.00 9999.00 9999.00 3 + -2038.05 3585.48 -7325.79 9999.00 9999.00 9999.00 3 + -2002.17 3509.24 7378.32 9999.00 9999.00 9999.00 3 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -1984.55 5132.10 -6376.67 0.29 -0.64 0.71 1 + -2123.90 5295.74 -6174.10 0.29 -0.64 0.71 1 + -2263.33 5459.41 -5971.89 0.29 -0.64 0.71 1 + -2402.92 5622.98 -5769.28 0.29 -0.64 0.71 1 + -2542.37 5786.80 -5566.87 0.29 -0.64 0.71 1 + -2267.41 5077.67 -6311.96 0.29 -0.64 0.71 1 + -2406.98 5241.08 -6109.54 0.29 -0.64 0.71 1 + -2546.43 5404.90 -5907.13 0.29 -0.64 0.71 1 + -2685.77 5568.39 -5704.77 0.29 -0.64 0.71 1 + -2550.48 5023.01 -6247.40 0.29 -0.64 0.71 1 + -2689.84 5186.65 -6044.83 0.29 -0.64 0.71 1 + -2829.18 5350.13 -5842.46 0.29 -0.64 0.71 1 + -2833.33 4968.42 -6182.88 0.29 -0.64 0.71 1 + -2972.68 5132.06 -5980.31 0.29 -0.64 0.71 1 + -1171.72 3684.02 -7482.91 0.21 -0.41 0.89 1 + -1460.51 3651.23 -7430.40 0.21 -0.41 0.89 1 + -1749.17 3618.49 -7378.23 0.21 -0.41 0.89 1 + -2038.05 3585.48 -7325.79 0.21 -0.41 0.89 1 + -2326.93 3552.80 -7273.50 0.21 -0.41 0.89 1 + -1309.71 3436.50 -7565.70 0.21 -0.41 0.89 1 + -1598.37 3403.44 -7513.38 0.21 -0.41 0.89 1 + -1887.25 3370.76 -7461.09 0.21 -0.41 0.89 1 + -2175.82 3337.92 -7408.70 0.21 -0.41 0.89 1 + -1447.57 3188.71 -7648.68 0.21 -0.41 0.89 1 + -1736.36 3155.93 -7596.17 0.21 -0.41 0.89 1 + -2024.93 3123.09 -7543.78 0.21 -0.41 0.89 1 + -1585.34 2941.15 -7731.58 0.21 -0.41 0.89 1 + -1874.13 2908.36 -7679.07 0.21 -0.41 0.89 1 + -2542.31 3849.29 -7047.02 0.29 -0.52 0.80 1 + -2402.86 4087.74 -6942.14 0.29 -0.52 0.80 1 + -2263.36 4326.03 -6837.66 0.29 -0.52 0.80 1 + -2124.00 4564.26 -6732.85 0.29 -0.52 0.80 1 + -1984.64 4802.82 -6628.19 0.29 -0.52 0.80 1 + -2685.72 4039.76 -6872.54 0.29 -0.52 0.80 1 + -2546.36 4277.99 -6767.74 0.29 -0.52 0.80 1 + -2406.86 4516.27 -6663.26 0.29 -0.52 0.80 1 + -2267.59 4754.60 -6558.66 0.29 -0.52 0.80 1 + -2829.22 4230.00 -6698.14 0.29 -0.52 0.80 1 + -2689.95 4468.33 -6593.55 0.29 -0.52 0.80 1 + -2550.45 4706.61 -6489.07 0.29 -0.52 0.80 1 + -2972.81 4420.34 -6523.95 0.29 -0.52 0.80 1 + -2833.32 4658.62 -6419.47 0.29 -0.52 0.80 1 + -3024.65 5930.64 -5167.47 0.41 -0.72 0.55 1 + -2877.09 6133.92 -5012.11 0.41 -0.72 0.55 1 + -3293.45 5844.68 -5080.12 0.41 -0.72 0.55 1 + -3145.64 6047.87 -4925.00 0.41 -0.72 0.55 1 + -2998.08 6251.15 -4769.63 0.41 -0.72 0.55 1 + -3561.99 5758.64 -4993.00 0.41 -0.72 0.55 1 + -3414.44 5961.91 -4837.64 0.41 -0.72 0.55 1 + -3266.63 6165.10 -4682.52 0.41 -0.72 0.55 1 + -3119.07 6368.37 -4527.16 0.41 -0.72 0.55 1 + -3830.79 5672.67 -4905.65 0.41 -0.72 0.55 1 + -3682.98 5875.87 -4750.53 0.41 -0.72 0.55 1 + -3535.43 6079.14 -4595.16 0.41 -0.72 0.55 1 + -3387.85 6282.25 -4440.00 0.41 -0.72 0.55 1 + -3240.06 6485.60 -4284.68 0.41 -0.72 0.55 1 + -3951.78 5789.90 -4663.17 0.41 -0.72 0.55 1 + -3803.97 5993.09 -4508.05 0.41 -0.72 0.55 1 + -3656.42 6196.37 -4352.69 0.41 -0.72 0.55 1 + -3508.84 6399.48 -4197.52 0.41 -0.72 0.55 1 + -4072.77 5907.13 -4420.69 0.41 -0.72 0.55 1 + -3924.96 6110.32 -4265.57 0.41 -0.72 0.55 1 + -3777.41 6313.60 -4110.21 0.41 -0.72 0.55 1 + -2893.38 5769.53 -5400.18 0.39 -0.65 0.65 1 + -3164.91 5688.74 -5316.89 0.39 -0.65 0.65 1 + -3436.44 5607.94 -5233.60 0.39 -0.65 0.65 1 + -3707.88 5526.97 -5150.16 0.39 -0.65 0.65 1 + -3030.52 5548.04 -5539.02 0.39 -0.65 0.65 1 + -3302.04 5467.25 -5455.73 0.39 -0.65 0.65 1 + -3573.57 5386.46 -5372.44 0.39 -0.65 0.65 1 + -3167.97 5326.66 -5677.97 0.39 -0.65 0.65 1 + -3439.50 5245.86 -5594.68 0.39 -0.65 0.65 1 + -3305.10 5105.17 -5816.81 0.39 -0.65 0.65 1 + -1424.05 2395.32 -7911.51 0.20 -0.28 0.94 1 + -1587.17 2619.61 -7810.12 0.20 -0.28 0.94 1 + -1549.64 2132.87 -7962.04 0.20 -0.28 0.94 1 + -1712.57 2357.27 -7860.95 0.20 -0.28 0.94 1 + -1875.69 2581.56 -7759.56 0.20 -0.28 0.94 1 + -1837.85 2094.66 -7911.57 0.20 -0.28 0.94 1 + -2000.96 2318.95 -7810.18 0.20 -0.28 0.94 1 + -3636.89 4570.47 -6020.06 0.40 -0.56 0.73 1 + -3510.58 4396.84 -6222.77 0.40 -0.56 0.73 1 + -3492.87 4807.54 -5918.78 0.40 -0.56 0.73 1 + -3366.89 4634.01 -6121.60 0.40 -0.56 0.73 1 + -3240.58 4460.38 -6324.31 0.40 -0.56 0.73 1 + -3223.13 4871.16 -6020.08 0.40 -0.56 0.73 1 + -3096.82 4697.53 -6222.79 0.40 -0.56 0.73 1 + -3778.59 3123.71 -6840.16 0.40 -0.35 0.84 1 + -3631.02 2920.60 -6995.33 0.40 -0.35 0.84 1 + -3483.22 2717.42 -7150.60 0.40 -0.35 0.84 1 + -2014.87 986.08 -8111.06 0.19 -0.16 0.97 1 + -1730.17 1048.75 -8158.10 0.19 -0.16 0.97 1 + -1445.47 1111.42 -8205.13 0.19 -0.16 0.97 1 + -1160.72 1174.07 -8251.93 0.19 -0.16 0.97 1 + -1918.70 1263.95 -8084.97 0.19 -0.16 0.97 1 + -1634.00 1326.62 -8132.01 0.19 -0.16 0.97 1 + -1349.30 1389.29 -8179.05 0.19 -0.16 0.97 1 + -1822.34 1541.92 -8059.18 0.19 -0.16 0.97 1 + -1537.65 1604.58 -8106.22 0.19 -0.16 0.97 1 + -1726.17 1819.78 -8033.09 0.19 -0.16 0.97 1 + -1828.68 749.37 -8192.58 0.15 -0.05 0.99 1 + -1919.81 468.44 -8192.61 0.15 -0.05 0.99 1 + -1542.69 811.68 -8232.62 0.15 -0.05 0.99 1 + -1634.13 530.90 -8232.57 0.15 -0.05 0.99 1 + -1725.26 249.97 -8232.61 0.15 -0.05 0.99 1 + -1257.01 874.15 -8272.58 0.15 -0.05 0.99 1 + -1348.15 593.21 -8272.62 0.15 -0.05 0.99 1 + -1439.59 312.43 -8272.57 0.15 -0.05 0.99 1 + -1530.72 31.50 -8272.61 0.15 -0.05 0.99 1 + -971.03 936.46 -8312.63 0.15 -0.05 0.99 1 + -1062.47 655.68 -8312.58 0.15 -0.05 0.99 1 + -1153.60 374.74 -8312.62 0.15 -0.05 0.99 1 + -1244.81 94.04 -8312.61 0.15 -0.05 0.99 1 + -1336.17 -186.97 -8312.60 0.15 -0.05 0.99 1 + -776.48 717.99 -8352.63 0.15 -0.05 0.99 1 + -867.92 437.21 -8352.58 0.15 -0.05 0.99 1 + -959.05 156.27 -8352.61 0.15 -0.05 0.99 1 + -1050.26 -124.43 -8352.61 0.15 -0.05 0.99 1 + -581.94 499.52 -8392.62 0.15 -0.05 0.99 1 + -673.38 218.74 -8392.57 0.15 -0.05 0.99 1 + -764.51 -62.20 -8392.61 0.15 -0.05 0.99 1 + -3707.77 7078.10 -2640.54 0.39 -0.87 0.29 1 + -3436.46 7189.04 -2675.31 0.39 -0.87 0.29 1 + -3164.94 7299.67 -2710.32 0.39 -0.87 0.29 1 + -2893.42 7410.30 -2745.32 0.39 -0.87 0.29 1 + -3573.73 7214.07 -2415.20 0.39 -0.87 0.29 1 + -3302.21 7324.70 -2450.21 0.39 -0.87 0.29 1 + -3030.69 7435.33 -2485.21 0.39 -0.87 0.29 1 + -3439.48 7350.08 -2189.99 0.39 -0.87 0.29 1 + -3167.95 7460.71 -2224.99 0.39 -0.87 0.29 1 + -3305.22 7485.75 -1964.88 0.39 -0.87 0.29 1 + -2877.04 7226.23 -3244.69 0.41 -0.82 0.40 1 + -3024.83 7274.14 -2993.51 0.41 -0.82 0.40 1 + -2998.20 7061.68 -3458.04 0.41 -0.82 0.40 1 + -3145.69 7109.76 -3206.77 0.41 -0.82 0.40 1 + -3293.48 7157.67 -2955.59 0.41 -0.82 0.40 1 + -3119.06 6897.30 -3671.30 0.41 -0.82 0.40 1 + -3266.85 6945.21 -3420.12 0.41 -0.82 0.40 1 + -3414.34 6993.28 -3168.85 0.41 -0.82 0.40 1 + -3562.13 7041.19 -2917.67 0.41 -0.82 0.40 1 + -3240.23 6732.75 -3884.65 0.41 -0.82 0.40 1 + -3387.71 6780.82 -3633.38 0.41 -0.82 0.40 1 + -3535.50 6828.73 -3382.20 0.41 -0.82 0.40 1 + -3683.07 6876.68 -3131.14 0.41 -0.82 0.40 1 + -3830.78 6924.72 -2879.75 0.41 -0.82 0.40 1 + -3508.88 6616.28 -3846.73 0.41 -0.82 0.40 1 + -3656.36 6664.35 -3595.46 0.41 -0.82 0.40 1 + -3804.15 6712.26 -3344.28 0.41 -0.82 0.40 1 + -3951.72 6760.21 -3093.22 0.41 -0.82 0.40 1 + -3777.53 6499.80 -3808.81 0.41 -0.82 0.40 1 + -3925.01 6547.87 -3557.54 0.41 -0.82 0.40 1 + -4072.80 6595.79 -3306.36 0.41 -0.82 0.40 1 + -4593.05 6858.03 -1640.88 0.50 -0.84 0.22 1 + -4432.30 6887.85 -1886.78 0.50 -0.84 0.22 1 + -4271.56 6917.68 -2132.67 0.50 -0.84 0.22 1 + -4110.67 6947.30 -2378.51 0.50 -0.84 0.22 1 + -4340.02 7009.93 -1634.22 0.50 -0.84 0.22 1 + -4179.28 7039.75 -1880.12 0.50 -0.84 0.22 1 + -4018.53 7069.58 -2126.01 0.50 -0.84 0.22 1 + -4086.99 7162.08 -1627.82 0.50 -0.84 0.22 1 + -3926.25 7191.90 -1873.72 0.50 -0.84 0.22 1 + -3833.97 7313.98 -1621.16 0.50 -0.84 0.22 1 + -3113.35 5668.03 5396.23 0.41 -0.70 -0.59 1 + -3327.72 5708.85 5197.20 0.41 -0.70 -0.59 1 + -3542.00 5749.90 4998.42 0.41 -0.70 -0.59 1 + -3756.31 5790.89 4799.21 0.41 -0.70 -0.59 1 + -3970.80 5831.88 4600.30 0.41 -0.70 -0.59 1 + -3079.50 5867.91 5181.60 0.41 -0.70 -0.59 1 + -3293.60 5908.95 4982.52 0.41 -0.70 -0.59 1 + -3508.10 5949.95 4783.61 0.41 -0.70 -0.59 1 + -3722.25 5990.82 4584.71 0.41 -0.70 -0.59 1 + -3045.39 6068.01 4966.93 0.41 -0.70 -0.59 1 + -3259.75 6108.83 4767.90 0.41 -0.70 -0.59 1 + -3473.91 6149.70 4569.00 0.41 -0.70 -0.59 1 + -3011.33 6267.95 4752.44 0.41 -0.70 -0.59 1 + -3225.70 6308.76 4553.41 0.41 -0.70 -0.59 1 + -2432.29 2594.22 7627.40 0.23 -0.32 -0.92 1 + -2193.51 2767.70 7627.40 0.23 -0.32 -0.92 1 + -1954.49 2941.18 7627.44 0.23 -0.32 -0.92 1 + -1715.71 3114.91 7627.39 0.23 -0.32 -0.92 1 + -2174.55 2490.63 7727.54 0.23 -0.32 -0.92 1 + -1935.77 2664.11 7727.54 0.23 -0.32 -0.92 1 + -1696.75 2837.59 7727.57 0.23 -0.32 -0.92 1 + -1916.84 2387.08 7827.92 0.23 -0.32 -0.92 1 + -1677.82 2560.57 7827.96 0.23 -0.32 -0.92 1 + -1659.10 2283.49 7928.06 0.23 -0.32 -0.92 1 + -1749.90 3413.23 7498.41 0.28 -0.38 -0.88 1 + -1988.93 3239.75 7498.37 0.28 -0.38 -0.88 1 + -2227.70 3066.27 7498.37 0.28 -0.38 -0.88 1 + -2466.73 2892.54 7498.39 0.28 -0.38 -0.88 1 + -2705.50 2719.06 7498.39 0.28 -0.38 -0.88 1 + -2002.17 3509.24 7378.32 0.28 -0.38 -0.88 1 + -2241.20 3335.76 7378.29 0.28 -0.38 -0.88 1 + -3448.09 3740.78 6614.57 0.36 -0.49 -0.79 1 + -3447.93 3992.08 6459.24 0.36 -0.49 -0.79 1 + -3448.03 4243.13 6303.92 0.36 -0.49 -0.79 1 + -3209.19 3663.16 6769.64 0.36 -0.49 -0.79 1 + -3209.06 3914.51 6614.56 0.36 -0.49 -0.79 1 + -3209.16 4165.56 6459.24 0.36 -0.49 -0.79 1 + -3209.00 4416.86 6303.91 0.36 -0.49 -0.79 1 + -2970.32 3585.59 6924.95 0.36 -0.49 -0.79 1 + -2970.16 3836.89 6769.62 0.36 -0.49 -0.79 1 + -2970.29 4087.99 6614.55 0.36 -0.49 -0.79 1 + -2970.13 4339.04 6459.27 0.36 -0.49 -0.79 1 + -2970.22 4590.34 6303.91 0.36 -0.49 -0.79 1 + -2731.30 3759.07 6924.99 0.36 -0.49 -0.79 1 + -2731.39 4010.37 6769.62 0.36 -0.49 -0.79 1 + -2731.26 4261.47 6614.59 0.36 -0.49 -0.79 1 + -2731.35 4512.77 6459.22 0.36 -0.49 -0.79 1 + -2492.52 3932.80 6924.94 0.36 -0.49 -0.79 1 + -2492.36 4183.86 6769.66 0.36 -0.49 -0.79 1 + -2492.49 4435.20 6614.54 0.36 -0.49 -0.79 1 + -4144.35 4699.50 5628.27 0.43 -0.59 -0.68 1 + -3905.37 4873.04 5628.40 0.43 -0.59 -0.68 1 + -3666.59 5046.52 5628.40 0.43 -0.59 -0.68 1 + -3427.55 5220.23 5628.35 0.43 -0.59 -0.68 1 + -3188.77 5393.71 5628.35 0.43 -0.59 -0.68 1 + -3921.87 4644.49 5814.70 0.43 -0.59 -0.68 1 + -3682.89 4818.03 5814.83 0.43 -0.59 -0.68 1 + -3444.05 4991.68 5814.65 0.43 -0.59 -0.68 1 + -3205.07 5165.23 5814.78 0.43 -0.59 -0.68 1 + -3699.39 4589.49 6001.12 0.43 -0.59 -0.68 1 + -3460.55 4763.14 6000.94 0.43 -0.59 -0.68 1 + -3221.57 4936.68 6001.07 0.43 -0.59 -0.68 1 + -3477.19 4534.77 6187.36 0.43 -0.59 -0.68 1 + -3238.20 4708.31 6187.49 0.43 -0.59 -0.68 1 + -3421.83 5463.27 5409.89 0.46 -0.63 -0.62 1 + -3660.60 5289.79 5409.89 0.46 -0.63 -0.62 1 + -3899.58 5116.25 5409.76 0.46 -0.63 -0.62 1 + -4138.42 4942.60 5409.95 0.46 -0.63 -0.62 1 + -3634.41 5504.72 5209.20 0.46 -0.63 -0.62 1 + -3873.19 5331.24 5209.20 0.46 -0.63 -0.62 1 + -4112.17 5157.70 5209.07 0.46 -0.63 -0.62 1 + -3847.13 5546.35 5008.63 0.46 -0.63 -0.62 1 + -4086.11 5372.81 5008.50 0.46 -0.63 -0.62 1 + -4059.72 5587.80 4807.94 0.46 -0.63 -0.62 1 + -4319.32 5578.65 4600.32 0.54 -0.61 -0.59 1 + -4346.66 5361.92 4799.28 0.54 -0.61 -0.59 1 + -4373.87 5145.59 4998.31 0.54 -0.61 -0.59 1 + -4401.15 4929.02 5197.09 0.54 -0.61 -0.59 1 + -4428.63 4712.46 5396.18 0.54 -0.61 -0.59 1 + -4547.30 5391.39 4584.72 0.54 -0.61 -0.59 1 + -4574.58 5174.82 4783.50 0.54 -0.61 -0.59 1 + -4601.78 4958.49 4982.53 0.54 -0.61 -0.59 1 + -4629.20 4742.10 5181.44 0.54 -0.61 -0.59 1 + -4775.21 5204.29 4568.94 0.54 -0.61 -0.59 1 + -4802.63 4987.90 4767.84 0.54 -0.61 -0.59 1 + -4829.83 4771.57 4966.88 0.54 -0.61 -0.59 1 + -5003.26 5017.37 4553.29 0.54 -0.61 -0.59 1 + -5030.46 4801.04 4752.32 0.54 -0.61 -0.59 1 + -4386.04 3265.06 6406.28 0.50 -0.45 -0.73 1 + -4385.93 3516.35 6251.10 0.50 -0.45 -0.73 1 + -4385.98 4269.82 5785.37 0.50 -0.45 -0.73 1 + -4165.10 3458.52 6438.45 0.50 -0.45 -0.73 1 + -4165.00 3709.82 6283.27 0.50 -0.45 -0.73 1 + -4165.14 3960.93 6127.90 0.50 -0.45 -0.73 1 + -4165.04 4212.23 5972.71 0.50 -0.45 -0.73 1 + -3944.16 3651.99 6470.62 0.50 -0.45 -0.73 1 + -3944.31 3903.11 6315.25 0.50 -0.45 -0.73 1 + -3944.21 4154.40 6160.06 0.50 -0.45 -0.73 1 + -3723.66 3845.37 6502.76 0.50 -0.45 -0.73 1 + -3723.55 4096.67 6347.57 0.50 -0.45 -0.73 1 + -3188.81 2621.93 7341.35 0.43 -0.35 -0.83 1 + -3427.71 2699.71 7186.08 0.43 -0.35 -0.83 1 + -3666.49 2777.29 7030.91 0.43 -0.35 -0.83 1 + -3905.57 2854.91 6875.56 0.43 -0.35 -0.83 1 + -4144.34 2932.49 6720.40 0.43 -0.35 -0.83 1 + -3205.25 2890.90 7220.26 0.43 -0.35 -0.83 1 + -3444.15 2968.68 7065.00 0.43 -0.35 -0.83 1 + -3683.11 3046.10 6909.74 0.43 -0.35 -0.83 1 + -3922.01 3123.88 6754.48 0.43 -0.35 -0.83 1 + -3221.69 3159.88 7099.18 0.43 -0.35 -0.83 1 + -3460.65 3237.30 6943.93 0.43 -0.35 -0.83 1 + -3699.55 3315.08 6788.66 0.43 -0.35 -0.83 1 + -3238.32 3428.52 6978.32 0.43 -0.35 -0.83 1 + -3477.22 3506.30 6823.05 0.43 -0.35 -0.83 1 + -5237.02 3997.37 5214.04 0.61 -0.48 -0.63 1 + -5445.84 3793.84 5168.59 0.61 -0.48 -0.63 1 + -5015.83 4440.95 5087.73 0.61 -0.48 -0.63 1 + -5224.75 4237.19 5042.29 0.61 -0.48 -0.63 1 + -5433.58 4033.67 4996.84 0.61 -0.48 -0.63 1 + -5212.56 4477.34 4870.68 0.61 -0.48 -0.63 1 + -5421.49 4273.59 4825.24 0.61 -0.48 -0.63 1 + -4633.35 3560.53 6041.77 0.58 -0.43 -0.70 1 + -4633.20 3309.42 6197.14 0.58 -0.43 -0.70 1 + -4842.14 3859.76 5683.54 0.58 -0.43 -0.70 1 + -4842.13 3608.69 5838.71 0.58 -0.43 -0.70 1 + -4842.24 3357.40 5993.90 0.58 -0.43 -0.70 1 + -5051.20 3656.72 5635.83 0.58 -0.43 -0.70 1 + -5051.31 3405.43 5791.01 0.58 -0.43 -0.70 1 + -5260.09 3453.59 5587.95 0.58 -0.43 -0.70 1 + -5732.04 3503.22 5068.77 0.70 -0.45 -0.55 1 + -5904.22 3529.33 4830.31 0.70 -0.45 -0.55 1 + -6076.40 3555.44 4591.85 0.70 -0.45 -0.55 1 + -1560.46 1611.53 8111.06 0.21 -0.14 -0.97 1 + -1532.08 1321.40 8158.10 0.21 -0.14 -0.97 1 + -1503.70 1031.28 8205.13 0.21 -0.14 -0.97 1 + -1475.29 741.10 8251.93 0.21 -0.14 -0.97 1 + -1795.00 1434.20 8084.97 0.21 -0.14 -0.97 1 + -1766.63 1144.08 8132.01 0.21 -0.14 -0.97 1 + -1738.25 853.95 8179.05 0.21 -0.14 -0.97 1 + -2029.59 1256.68 8059.18 0.21 -0.14 -0.97 1 + -2001.21 966.55 8106.22 0.21 -0.14 -0.97 1 + -2264.14 1079.35 8033.09 0.21 -0.14 -0.97 1 + -4138.48 2628.36 6840.17 0.46 -0.27 -0.84 1 + -3899.70 2550.78 6995.34 0.46 -0.27 -0.84 1 + -3660.80 2473.00 7150.61 0.46 -0.27 -0.84 1 + -3421.85 2395.58 7305.86 0.46 -0.27 -0.84 1 + -4112.20 2352.71 6942.72 0.46 -0.27 -0.84 1 + -3873.43 2275.13 7097.88 0.46 -0.27 -0.84 1 + -3634.53 2197.35 7253.15 0.46 -0.27 -0.84 1 + -4086.06 2077.09 7045.47 0.46 -0.27 -0.84 1 + -3847.16 1999.31 7200.74 0.46 -0.27 -0.84 1 + -4059.78 1801.44 7148.01 0.46 -0.27 -0.84 1 + -3970.86 1506.59 7273.47 0.41 -0.21 -0.89 1 + -3756.29 1702.87 7325.80 0.41 -0.21 -0.89 1 + -3327.74 2095.34 7430.41 0.41 -0.21 -0.89 1 + -3113.30 2291.64 7482.95 0.41 -0.21 -0.89 1 + -3722.31 1421.56 7408.66 0.41 -0.21 -0.89 1 + -3507.91 1617.68 7460.91 0.41 -0.21 -0.89 1 + -3293.77 1814.02 7513.27 0.41 -0.21 -0.89 1 + -3079.50 2010.17 7565.73 0.41 -0.21 -0.89 1 + -3473.94 1336.36 7543.77 0.41 -0.21 -0.89 1 + -3259.67 1532.51 7596.23 0.41 -0.21 -0.89 1 + -3045.53 1728.86 7648.59 0.41 -0.21 -0.89 1 + -3225.70 1251.20 7679.09 0.41 -0.21 -0.89 1 + -3011.56 1447.54 7731.45 0.41 -0.21 -0.89 1 + -6248.44 2292.22 5149.98 0.70 -0.30 -0.65 1 + -6076.40 2516.99 5233.65 0.70 -0.30 -0.65 1 + -5904.22 2741.95 5316.94 0.70 -0.30 -0.65 1 + -2718.14 614.17 7911.51 0.33 -0.11 -0.94 1 + -2981.87 699.99 7810.12 0.33 -0.11 -0.94 1 + -2507.35 814.70 7962.04 0.33 -0.11 -0.94 1 + -2771.11 900.32 7860.95 0.33 -0.11 -0.94 1 + -3034.84 986.15 7759.56 0.33 -0.11 -0.94 1 + -2560.07 1100.61 7911.57 0.33 -0.11 -0.94 1 + -2823.80 1186.43 7810.18 0.33 -0.11 -0.94 1 + -6381.25 968.88 5400.20 0.74 -0.17 -0.65 1 + -6388.32 1252.09 5316.91 0.74 -0.17 -0.65 1 + -6395.39 1535.30 5233.62 0.74 -0.17 -0.65 1 + -3865.79 -24.05 7482.91 0.46 -0.07 -0.89 1 + -3923.85 260.74 7430.41 0.46 -0.07 -0.89 1 + -3981.92 545.38 7378.23 0.46 -0.07 -0.89 1 + -4039.79 830.32 7325.80 0.46 -0.07 -0.89 1 + -4097.97 1115.16 7273.51 0.46 -0.07 -0.89 1 + -3673.04 183.68 7565.70 0.46 -0.07 -0.89 1 + -3730.79 468.42 7513.38 0.46 -0.07 -0.89 1 + -3788.97 753.26 7461.09 0.46 -0.07 -0.89 1 + -3846.92 1037.85 7408.70 0.46 -0.07 -0.89 1 + -3479.97 391.36 7648.68 0.46 -0.07 -0.89 1 + -3538.03 676.15 7596.17 0.46 -0.07 -0.89 1 + -3595.98 960.74 7543.78 0.46 -0.07 -0.89 1 + -3287.10 598.89 7731.58 0.46 -0.07 -0.89 1 + -3345.16 883.68 7679.08 0.46 -0.07 -0.89 1 + -4176.36 73.30 7305.88 0.53 -0.05 -0.85 1 + -4415.14 150.88 7150.72 0.53 -0.05 -0.85 1 + -4654.03 228.65 6995.44 0.53 -0.05 -0.85 1 + -2209.69 -386.47 8111.06 0.25 -0.01 -0.97 1 + -1908.05 330.96 8179.09 0.25 -0.01 -0.97 1 + -2101.55 112.93 8132.05 0.25 -0.01 -0.97 1 + -2295.04 -105.10 8085.01 0.25 -0.01 -0.97 1 + -2187.18 394.35 8106.21 0.25 -0.01 -0.97 1 + -2380.68 176.32 8059.17 0.25 -0.01 -0.97 1 + -2466.02 457.69 8033.13 0.25 -0.01 -0.97 1 + -7160.05 775.53 4353.36 0.83 -0.05 -0.55 1 + -7005.77 695.18 4591.82 0.83 -0.05 -0.55 1 + -6851.13 615.09 4830.28 0.83 -0.05 -0.55 1 + -4069.56 7368.35 290.55 0.46 -0.88 -0.10 1 + -3922.01 7416.30 541.87 0.46 -0.88 -0.10 1 + -3774.44 7464.25 792.93 0.46 -0.88 -0.10 1 + -3626.64 7512.27 1044.27 0.46 -0.88 -0.10 1 + -3479.07 7560.22 1295.33 0.46 -0.88 -0.10 1 + -4182.79 7277.85 547.97 0.46 -0.88 -0.10 1 + -4035.24 7325.80 799.29 0.46 -0.88 -0.10 1 + -3887.42 7373.82 1050.37 0.46 -0.88 -0.10 1 + -3739.87 7421.77 1301.69 0.46 -0.88 -0.10 1 + -4296.02 7187.35 805.40 0.46 -0.88 -0.10 1 + -4148.20 7235.36 1056.48 0.46 -0.88 -0.10 1 + -4000.65 7283.31 1307.80 0.46 -0.88 -0.10 1 + -4409.05 7097.16 1062.58 0.46 -0.88 -0.10 1 + -4261.50 7145.11 1313.90 0.46 -0.88 -0.10 1 + -4267.66 7256.78 -254.90 0.52 -0.85 0.10 1 + -4380.23 7157.49 -509.26 0.52 -0.85 0.10 1 + -4492.80 7058.55 -763.54 0.52 -0.85 0.10 1 + -4605.22 6959.30 -1018.10 0.52 -0.85 0.10 1 + -4717.94 6860.21 -1272.52 0.52 -0.85 0.10 1 + -4128.48 7311.69 -509.41 0.52 -0.85 0.10 1 + -4240.76 7212.59 -763.83 0.52 -0.85 0.10 1 + -4353.48 7113.50 -1018.25 0.52 -0.85 0.10 1 + -4465.91 7014.35 -1272.46 0.52 -0.85 0.10 1 + -3989.02 7366.79 -763.97 0.52 -0.85 0.10 1 + -4101.59 7267.50 -1018.34 0.52 -0.85 0.10 1 + -4214.02 7168.35 -1272.55 0.52 -0.85 0.10 1 + -3849.70 7421.84 -1018.34 0.52 -0.85 0.10 1 + -3962.27 7322.55 -1272.70 0.52 -0.85 0.10 1 + -4579.14 7056.17 -255.16 0.59 -0.81 0.06 1 + -4817.92 6882.69 -255.16 0.59 -0.81 0.06 1 + -5056.84 6709.06 -255.30 0.59 -0.81 0.06 1 + -5295.76 6535.53 -255.10 0.59 -0.81 0.06 1 + -4689.37 6956.72 -510.40 0.59 -0.81 0.06 1 + -4928.14 6783.24 -510.40 0.59 -0.81 0.06 1 + -5167.06 6609.61 -510.55 0.59 -0.81 0.06 1 + -4799.73 6857.48 -765.71 0.59 -0.81 0.06 1 + -5038.66 6683.85 -765.85 0.59 -0.81 0.06 1 + -4909.96 6758.03 -1020.95 0.59 -0.81 0.06 1 + -5979.55 5915.91 265.07 0.75 -0.66 -0.06 1 + -6070.75 5790.38 516.14 0.75 -0.66 -0.06 1 + -6162.09 5664.65 767.30 0.75 -0.66 -0.06 1 + -7200.45 4235.47 -1018.60 0.86 -0.50 0.06 1 + -7142.66 4364.86 -759.32 0.86 -0.50 0.06 1 + -7085.14 4494.33 -500.27 0.86 -0.50 0.06 1 + -8125.85 2174.55 255.16 0.95 -0.31 -0.06 1 + -8034.64 2455.24 255.16 0.95 -0.31 -0.06 1 + -7943.34 2736.13 255.30 0.95 -0.31 -0.06 1 + -8314.83 805.67 -1018.61 0.99 -0.10 0.06 1 + -8314.83 960.84 -767.55 0.99 -0.10 0.06 1 + -8314.82 1115.99 -516.23 0.99 -0.10 0.06 1 + -3421.95 7481.71 1803.52 0.45 -0.85 -0.27 1 + -3513.36 7356.08 2054.70 0.45 -0.85 -0.27 1 + -3604.56 7230.55 2305.76 0.45 -0.85 -0.27 1 + -3695.82 7104.87 2557.15 0.45 -0.85 -0.27 1 + -3787.02 6979.34 2808.21 0.45 -0.85 -0.27 1 + -3682.48 7342.72 1812.97 0.45 -0.85 -0.27 1 + -3773.88 7217.09 2064.15 0.45 -0.85 -0.27 1 + -3864.94 7091.52 2315.42 0.45 -0.85 -0.27 1 + -3956.34 6965.89 2566.60 0.45 -0.85 -0.27 1 + -3943.00 7203.74 1822.42 0.45 -0.85 -0.27 1 + -4034.06 7078.16 2073.69 0.45 -0.85 -0.27 1 + -4125.47 6952.54 2324.87 0.45 -0.85 -0.27 1 + -4203.24 7065.04 1832.05 0.45 -0.85 -0.27 1 + -4294.64 6939.41 2083.23 0.45 -0.85 -0.27 1 + -4098.05 6006.87 4250.21 0.46 -0.76 -0.46 1 + -4039.82 6181.10 4018.78 0.46 -0.76 -0.46 1 + -3981.98 6355.26 3787.53 0.46 -0.76 -0.46 1 + -3923.81 6529.31 3556.27 0.46 -0.76 -0.46 1 + -3865.70 6703.70 3324.98 0.46 -0.76 -0.46 1 + -3846.98 6162.37 4241.54 0.46 -0.76 -0.46 1 + -3788.81 6336.41 4010.27 0.46 -0.76 -0.46 1 + -3730.97 6510.57 3779.03 0.46 -0.76 -0.46 1 + -3672.92 6684.79 3547.91 0.46 -0.76 -0.46 1 + -3595.97 6317.67 4233.03 0.46 -0.76 -0.46 1 + -3537.92 6491.89 4001.91 0.46 -0.76 -0.46 1 + -3480.08 6666.05 3770.67 0.46 -0.76 -0.46 1 + -3345.08 6473.15 4224.67 0.46 -0.76 -0.46 1 + -3287.24 6647.31 3993.42 0.46 -0.76 -0.46 1 + -4893.02 5981.12 3332.83 0.53 -0.73 -0.42 1 + -4654.24 6154.61 3332.83 0.53 -0.73 -0.42 1 + -4415.25 6328.14 3332.95 0.53 -0.73 -0.42 1 + -4176.42 6501.80 3332.78 0.53 -0.73 -0.42 1 + -4709.73 5980.02 3564.34 0.53 -0.73 -0.42 1 + -4470.96 6153.50 3564.34 0.53 -0.73 -0.42 1 + -4231.97 6327.03 3564.46 0.53 -0.73 -0.42 1 + -4526.57 5979.08 3795.99 0.53 -0.73 -0.42 1 + -4287.58 6152.61 3796.11 0.53 -0.73 -0.42 1 + -4343.29 5977.97 4027.50 0.53 -0.73 -0.42 1 + -4120.94 6676.70 3062.35 0.55 -0.76 -0.35 1 + -4359.93 6503.16 3062.23 0.55 -0.76 -0.35 1 + -4598.71 6329.68 3062.23 0.55 -0.76 -0.35 1 + -4837.75 6155.97 3062.28 0.55 -0.76 -0.35 1 + -5076.52 5982.48 3062.28 0.55 -0.76 -0.35 1 + -4292.34 6661.39 2822.21 0.55 -0.76 -0.35 1 + -4531.33 6487.86 2822.09 0.55 -0.76 -0.35 1 + -4770.16 6314.19 2822.26 0.55 -0.76 -0.35 1 + -5009.15 6140.66 2822.14 0.55 -0.76 -0.35 1 + -4463.74 6646.08 2582.07 0.55 -0.76 -0.35 1 + -4702.56 6472.42 2582.24 0.55 -0.76 -0.35 1 + -4941.55 6298.88 2582.12 0.55 -0.76 -0.35 1 + -4635.09 6630.81 2342.37 0.55 -0.76 -0.35 1 + -4874.08 6457.28 2342.25 0.55 -0.76 -0.35 1 + -5180.98 5748.14 3324.93 0.58 -0.67 -0.46 1 + -4997.25 5749.49 3556.17 0.58 -0.67 -0.46 1 + -4813.85 5750.96 3787.44 0.58 -0.67 -0.46 1 + -4630.17 5752.12 4018.85 0.58 -0.67 -0.46 1 + -4446.56 5753.65 4250.23 0.58 -0.67 -0.46 1 + -5222.62 5558.99 3547.75 0.58 -0.67 -0.46 1 + -5039.15 5560.11 3779.04 0.58 -0.67 -0.46 1 + -4855.54 5561.63 4010.43 0.58 -0.67 -0.46 1 + -4672.03 5562.93 4241.54 0.58 -0.67 -0.46 1 + -5264.53 5369.61 3770.62 0.58 -0.67 -0.46 1 + -5080.79 5370.96 4001.86 0.58 -0.67 -0.46 1 + -4897.27 5372.26 4232.98 0.58 -0.67 -0.46 1 + -5306.38 5180.42 3993.31 0.58 -0.67 -0.46 1 + -5122.65 5181.77 4224.56 0.58 -0.67 -0.46 1 + -6136.48 5378.39 2059.07 0.72 -0.63 -0.30 1 + -5988.91 5426.34 2310.13 0.72 -0.63 -0.30 1 + -5841.29 5474.19 2561.43 0.72 -0.63 -0.30 1 + -6402.43 3793.12 3929.47 0.74 -0.50 -0.45 1 + -6395.36 3994.50 3713.79 0.74 -0.50 -0.45 1 + -6388.29 4195.65 3497.75 0.74 -0.50 -0.45 1 + -6696.45 4294.37 2745.39 0.83 -0.47 -0.29 1 + -6851.10 4045.27 2710.37 0.83 -0.47 -0.29 1 + -7005.74 3796.17 2675.36 0.83 -0.47 -0.29 1 + -7409.21 3204.01 2378.56 0.90 -0.39 -0.22 1 + -7521.86 3085.83 2132.67 0.90 -0.39 -0.22 1 + -7634.37 2967.23 1886.77 0.90 -0.39 -0.22 1 + -7941.71 2249.00 1640.88 0.95 -0.21 -0.22 1 + -7920.40 2086.91 1886.78 0.95 -0.21 -0.22 1 + -7899.09 1924.82 2132.67 0.95 -0.21 -0.22 1 + -7877.44 1339.04 2640.54 0.95 -0.10 -0.29 1 + -7899.11 1046.74 2675.31 0.95 -0.10 -0.29 1 + -7920.42 754.32 2710.32 0.95 -0.10 -0.29 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -4110.91 5234.29 -5149.97 0.50 -0.58 0.65 1 + -4271.52 5001.21 -5233.63 0.50 -0.58 0.65 1 + -4432.25 4767.94 -5316.93 0.50 -0.58 0.65 1 + -4592.99 4534.67 -5400.22 0.50 -0.58 0.65 1 + -4018.48 5063.32 -5372.35 0.50 -0.58 0.65 1 + -4179.22 4830.06 -5455.65 0.50 -0.58 0.65 1 + -4339.96 4596.79 -5538.94 0.50 -0.58 0.65 1 + -3926.24 4892.19 -5594.72 0.50 -0.58 0.65 1 + -4086.98 4658.92 -5678.01 0.50 -0.58 0.65 1 + -3833.94 4721.04 -5816.73 0.50 -0.58 0.65 1 + -4944.55 4631.67 -5012.26 0.56 -0.61 0.55 1 + -4705.59 4709.43 -5167.45 0.56 -0.61 0.55 1 + -5018.61 4783.14 -4769.68 0.56 -0.61 0.55 1 + -4779.74 4860.60 -4925.05 0.56 -0.61 0.55 1 + -4540.78 4938.35 -5080.23 0.56 -0.61 0.55 1 + -5092.76 4934.31 -4527.28 0.56 -0.61 0.55 1 + -4853.79 5012.06 -4682.46 0.56 -0.61 0.55 1 + -4614.93 5089.52 -4837.83 0.56 -0.61 0.55 1 + -4375.96 5167.27 -4993.01 0.56 -0.61 0.55 1 + -5166.81 5085.77 -4284.69 0.56 -0.61 0.55 1 + -4927.94 5163.23 -4440.06 0.56 -0.61 0.55 1 + -4688.98 5240.98 -4595.24 0.56 -0.61 0.55 1 + -4450.21 5318.57 -4750.41 0.56 -0.61 0.55 1 + -4211.15 5396.20 -4905.80 0.56 -0.61 0.55 1 + -5002.00 5314.69 -4197.47 0.56 -0.61 0.55 1 + -4763.13 5392.15 -4352.84 0.56 -0.61 0.55 1 + -4524.17 5469.91 -4508.03 0.56 -0.61 0.55 1 + -4285.39 5547.49 -4663.19 0.56 -0.61 0.55 1 + -4837.18 5543.62 -4110.26 0.56 -0.61 0.55 1 + -4598.31 5621.07 -4265.63 0.56 -0.61 0.55 1 + -4359.35 5698.83 -4420.81 0.56 -0.61 0.55 1 + -3954.47 3371.56 -6628.24 0.41 -0.43 0.80 1 + -3684.61 3430.40 -6732.86 0.41 -0.43 0.80 1 + -3415.04 3489.42 -6837.60 0.41 -0.43 0.80 1 + -3145.09 3548.48 -6942.13 0.41 -0.43 0.80 1 + -2875.30 3607.44 -7046.97 0.41 -0.43 0.80 1 + -3821.29 3625.70 -6558.71 0.41 -0.43 0.80 1 + -3551.56 3684.82 -6663.14 0.41 -0.43 0.80 1 + -3281.77 3743.78 -6767.98 0.41 -0.43 0.80 1 + -3012.14 3802.68 -6872.50 0.41 -0.43 0.80 1 + -3688.25 3880.12 -6488.99 0.41 -0.43 0.80 1 + -3418.39 3938.96 -6593.61 0.41 -0.43 0.80 1 + -3148.75 3997.86 -6698.13 0.41 -0.43 0.80 1 + -3555.30 4134.32 -6419.36 0.41 -0.43 0.80 1 + -3285.44 4193.16 -6523.98 0.41 -0.43 0.80 1 + -2659.92 3310.95 -7273.46 0.33 -0.33 0.89 1 + -2780.28 3046.22 -7325.79 0.33 -0.33 0.89 1 + -2900.84 2781.88 -7378.15 0.33 -0.33 0.89 1 + -3021.11 2517.37 -7430.40 0.33 -0.33 0.89 1 + -3141.54 2252.76 -7482.95 0.33 -0.33 0.89 1 + -2502.24 3100.84 -7408.66 0.33 -0.33 0.89 1 + -2622.51 2836.33 -7460.90 0.33 -0.33 0.89 1 + -2743.07 2571.99 -7513.26 0.33 -0.33 0.89 1 + -2863.41 2307.60 -7565.73 0.33 -0.33 0.89 1 + -2344.46 2890.95 -7543.77 0.33 -0.33 0.89 1 + -2464.80 2626.56 -7596.23 0.33 -0.33 0.89 1 + -2585.36 2362.22 -7648.59 0.33 -0.33 0.89 1 + -2186.75 2681.18 -7679.09 0.33 -0.33 0.89 1 + -2307.32 2416.84 -7731.45 0.33 -0.33 0.89 1 + -4718.01 4206.11 -5566.84 0.52 -0.47 0.71 1 + -4605.24 4022.84 -5769.33 0.52 -0.47 0.71 1 + -4492.89 3839.66 -5971.75 0.52 -0.47 0.71 1 + -4380.21 3656.52 -6174.04 0.52 -0.47 0.71 1 + -4267.58 3473.39 -6376.68 0.52 -0.47 0.71 1 + -4465.97 4275.01 -5704.73 0.52 -0.47 0.71 1 + -4353.29 4091.87 -5907.02 0.52 -0.47 0.71 1 + -4240.94 3908.69 -6109.44 0.52 -0.47 0.71 1 + -4128.40 3725.68 -6311.88 0.52 -0.47 0.71 1 + -4214.02 4344.04 -5842.42 0.52 -0.47 0.71 1 + -4101.49 4161.03 -6044.86 0.52 -0.47 0.71 1 + -3989.14 3977.85 -6247.28 0.52 -0.47 0.71 1 + -3962.22 4413.20 -5980.26 0.52 -0.47 0.71 1 + -3849.87 4230.02 -6182.68 0.52 -0.47 0.71 1 + -3335.75 2514.09 -7305.85 0.40 -0.35 0.84 1 + -3508.31 3183.91 -6942.71 0.40 -0.35 0.84 1 + -3360.74 2980.79 -7097.87 0.40 -0.35 0.84 1 + -3212.94 2777.62 -7253.14 0.40 -0.35 0.84 1 + -3238.10 3244.21 -7045.46 0.40 -0.35 0.84 1 + -3090.30 3041.04 -7200.73 0.40 -0.35 0.84 1 + -2967.82 3304.40 -7148.00 0.40 -0.35 0.84 1 + -5103.06 4368.94 -5068.76 0.64 -0.53 0.55 1 + -5181.09 4524.63 -4830.30 0.64 -0.53 0.55 1 + -5259.13 4680.31 -4591.84 0.64 -0.53 0.55 1 + -5337.02 4835.86 -4353.23 0.64 -0.53 0.55 1 + -5325.71 4276.36 -4898.49 0.64 -0.53 0.55 1 + -5403.75 4432.04 -4660.03 0.64 -0.53 0.55 1 + -5481.78 4587.73 -4421.57 0.64 -0.53 0.55 1 + -5548.60 4184.04 -4728.17 0.64 -0.53 0.55 1 + -5626.64 4339.72 -4489.71 0.64 -0.53 0.55 1 + -5771.25 4091.46 -4557.89 0.64 -0.53 0.55 1 + -5295.80 3150.97 -5731.41 0.59 -0.42 0.70 1 + -5057.02 3228.56 -5886.58 0.59 -0.42 0.70 1 + -4818.06 3306.31 -6041.76 0.59 -0.42 0.70 1 + -3095.94 1860.58 -7608.69 0.31 -0.18 0.93 1 + -2919.72 1646.20 -7709.78 0.31 -0.18 0.93 1 + -2743.63 1432.08 -7811.08 0.31 -0.18 0.93 1 + -2567.18 1217.77 -7912.22 0.31 -0.18 0.93 1 + -2391.02 1003.41 -8013.56 0.31 -0.18 0.93 1 + -2818.78 1922.85 -7689.08 0.31 -0.18 0.93 1 + -2642.39 1708.78 -7790.18 0.31 -0.18 0.93 1 + -2466.23 1494.42 -7891.51 0.31 -0.18 0.93 1 + -2290.09 1280.27 -7992.57 0.31 -0.18 0.93 1 + -2541.45 1985.43 -7769.47 0.31 -0.18 0.93 1 + -2365.23 1771.05 -7870.56 0.31 -0.18 0.93 1 + -2189.08 1556.90 -7971.62 0.31 -0.18 0.93 1 + -2264.36 2047.93 -7849.82 0.31 -0.18 0.93 1 + -2088.14 1833.55 -7950.91 0.31 -0.18 0.93 1 + -3479.01 2222.51 -7341.35 0.46 -0.30 0.83 1 + -3626.80 2425.68 -7186.08 0.46 -0.30 0.83 1 + -3774.37 2628.80 -7030.91 0.46 -0.30 0.83 1 + -3922.08 2832.19 -6875.55 0.46 -0.30 0.83 1 + -4069.65 3035.31 -6720.39 0.46 -0.30 0.83 1 + -3739.90 2155.03 -7220.26 0.46 -0.30 0.83 1 + -3887.69 2358.20 -7064.99 0.46 -0.30 0.83 1 + -4035.17 2561.54 -6909.74 0.46 -0.30 0.83 1 + -4182.97 2764.71 -6754.47 0.46 -0.30 0.83 1 + -4000.79 2087.54 -7099.17 0.46 -0.30 0.83 1 + -4148.26 2290.88 -6943.92 0.46 -0.30 0.83 1 + -4296.06 2494.05 -6788.65 0.46 -0.30 0.83 1 + -4261.42 2020.34 -6978.32 0.46 -0.30 0.83 1 + -4409.22 2223.51 -6823.05 0.46 -0.30 0.83 1 + -3218.87 1511.57 -7627.40 0.37 -0.12 0.92 1 + -3310.08 1230.88 -7627.40 0.37 -0.12 0.92 1 + -3401.21 949.94 -7627.44 0.37 -0.12 0.92 1 + -3492.65 669.16 -7627.39 0.37 -0.12 0.92 1 + -3040.70 1298.46 -7727.54 0.37 -0.12 0.92 1 + -3131.91 1017.76 -7727.54 0.37 -0.12 0.92 1 + -3223.04 736.83 -7727.57 0.37 -0.12 0.92 1 + -2862.59 1085.37 -7827.92 0.37 -0.12 0.92 1 + -2953.72 804.43 -7827.96 0.37 -0.12 0.92 1 + -2684.42 872.25 -7928.06 0.37 -0.12 0.92 1 + -4988.34 999.61 -6614.58 0.58 -0.19 0.79 1 + -4749.30 1077.39 -6769.79 0.58 -0.19 0.79 1 + -4510.40 1154.85 -6924.96 0.58 -0.19 0.79 1 + -5135.82 1202.78 -6459.28 0.58 -0.19 0.79 1 + -4897.00 1280.63 -6614.63 0.58 -0.19 0.79 1 + -6253.28 1566.10 -5409.89 0.75 -0.24 0.62 1 + -6162.08 1846.80 -5409.89 0.75 -0.24 0.62 1 + -6070.88 2127.71 -5409.76 0.75 -0.24 0.62 1 + -4646.14 5892.54 -3749.05 0.53 -0.72 0.45 1 + -4459.52 5886.75 -3977.78 0.53 -0.72 0.45 1 + -4593.98 6071.80 -3520.31 0.53 -0.72 0.45 1 + -4407.36 6066.02 -3749.05 0.53 -0.72 0.45 1 + -4220.74 6060.23 -3977.78 0.53 -0.72 0.45 1 + -4355.21 6245.28 -3520.31 0.53 -0.72 0.45 1 + -4168.29 6239.70 -3749.10 0.53 -0.72 0.45 1 + -4705.71 6727.98 -1901.15 0.56 -0.77 0.30 1 + -4944.64 6554.35 -1901.29 0.56 -0.77 0.30 1 + -4540.90 6752.29 -2145.11 0.56 -0.77 0.30 1 + -4779.82 6578.76 -2144.91 0.56 -0.77 0.30 1 + -5018.74 6405.13 -2145.05 0.56 -0.77 0.30 1 + -4376.08 6776.70 -2388.73 0.56 -0.77 0.30 1 + -4615.00 6603.07 -2388.87 0.56 -0.77 0.30 1 + -4853.92 6429.54 -2388.67 0.56 -0.77 0.30 1 + -5092.85 6255.91 -2388.81 0.56 -0.77 0.30 1 + -4211.26 6801.02 -2632.69 0.56 -0.77 0.30 1 + -4450.18 6627.48 -2632.49 0.56 -0.77 0.30 1 + -4689.10 6453.86 -2632.63 0.56 -0.77 0.30 1 + -4927.88 6280.38 -2632.63 0.56 -0.77 0.30 1 + -5166.95 6106.70 -2632.57 0.56 -0.77 0.30 1 + -4285.36 6651.80 -2876.45 0.56 -0.77 0.30 1 + -4524.29 6478.27 -2876.25 0.56 -0.77 0.30 1 + -4763.21 6304.64 -2876.39 0.56 -0.77 0.30 1 + -5001.98 6131.16 -2876.39 0.56 -0.77 0.30 1 + -4359.47 6502.58 -3120.21 0.56 -0.77 0.30 1 + -4598.39 6329.05 -3120.01 0.56 -0.77 0.30 1 + -4837.31 6155.42 -3120.15 0.56 -0.77 0.30 1 + -5336.77 6056.48 -2378.56 0.64 -0.73 0.22 1 + -5259.17 6200.13 -2132.67 0.64 -0.73 0.22 1 + -5181.14 6343.79 -1886.77 0.64 -0.73 0.22 1 + -5103.11 6487.45 -1640.88 0.64 -0.73 0.22 1 + -5481.79 6006.41 -2126.19 0.64 -0.73 0.22 1 + -5403.76 6150.07 -1880.30 0.64 -0.73 0.22 1 + -5325.73 6293.72 -1634.40 0.64 -0.73 0.22 1 + -5626.66 5956.49 -1873.67 0.64 -0.73 0.22 1 + -5548.63 6100.15 -1627.78 0.64 -0.73 0.22 1 + -5771.24 5906.42 -1621.30 0.64 -0.73 0.22 1 + -5983.51 5124.45 -2993.56 0.65 -0.64 0.40 1 + -5983.40 4969.27 -3244.86 0.65 -0.64 0.40 1 + -5789.57 5344.07 -2955.75 0.65 -0.64 0.40 1 + -5789.72 5188.70 -3206.86 0.65 -0.64 0.40 1 + -5789.61 5033.52 -3458.15 0.65 -0.64 0.40 1 + -5595.89 5563.51 -2917.75 0.65 -0.64 0.40 1 + -5595.78 5408.32 -3169.04 0.65 -0.64 0.40 1 + -5595.93 5252.95 -3420.15 0.65 -0.64 0.40 1 + -5595.82 5097.77 -3671.44 0.65 -0.64 0.40 1 + -5401.95 5783.12 -2879.93 0.65 -0.64 0.40 1 + -5402.09 5627.75 -3131.04 0.65 -0.64 0.40 1 + -5401.99 5472.57 -3382.33 0.65 -0.64 0.40 1 + -5401.99 5317.40 -3633.39 0.65 -0.64 0.40 1 + -5402.03 5162.02 -3884.74 0.65 -0.64 0.40 1 + -5208.16 5847.37 -3093.22 0.65 -0.64 0.40 1 + -5208.30 5692.00 -3344.33 0.65 -0.64 0.40 1 + -5208.20 5536.82 -3595.63 0.65 -0.64 0.40 1 + -5208.20 5381.65 -3846.69 0.65 -0.64 0.40 1 + -5014.37 5911.62 -3306.52 0.65 -0.64 0.40 1 + -5014.51 5756.25 -3557.63 0.65 -0.64 0.40 1 + -5014.41 5601.07 -3808.92 0.65 -0.64 0.40 1 + -6153.50 5041.67 -2745.39 0.71 -0.64 0.29 1 + -5964.38 5265.72 -2710.37 0.71 -0.64 0.29 1 + -5775.26 5489.77 -2675.36 0.71 -0.64 0.29 1 + -5585.92 4916.93 -3929.47 0.71 -0.55 0.45 1 + -5775.26 4847.98 -3713.79 0.71 -0.55 0.45 1 + -5964.38 4779.09 -3497.75 0.71 -0.55 0.45 1 + -7011.42 4174.13 -2059.07 0.82 -0.49 0.30 1 + -7011.42 4018.96 -2310.13 0.82 -0.49 0.30 1 + -7011.32 3863.78 -2561.43 0.82 -0.49 0.30 1 + -5628.75 4686.93 4087.44 0.65 -0.56 -0.51 1 + -5424.51 4897.86 4118.86 0.65 -0.56 -0.51 1 + -5651.59 4472.71 4289.41 0.65 -0.56 -0.51 1 + -5447.67 4683.78 4320.78 0.65 -0.56 -0.51 1 + -5243.42 4894.71 4352.20 0.65 -0.56 -0.51 1 + -5470.75 4469.38 4522.57 0.65 -0.56 -0.51 1 + -5266.51 4680.31 4553.98 0.65 -0.56 -0.51 1 + -4622.10 4368.34 5522.01 0.61 -0.48 -0.63 1 + -4831.03 4164.58 5476.58 0.61 -0.48 -0.63 1 + -5040.03 3961.15 5431.27 0.61 -0.48 -0.63 1 + -5249.10 3757.45 5385.64 0.61 -0.48 -0.63 1 + -5458.21 3553.79 5340.35 0.61 -0.48 -0.63 1 + -4818.94 4404.50 5304.98 0.61 -0.48 -0.63 1 + -5027.91 4201.03 5259.32 0.61 -0.48 -0.63 1 + -6248.41 3581.45 4353.23 0.70 -0.45 -0.55 1 + -5712.79 3743.58 4898.49 0.70 -0.45 -0.55 1 + -5884.97 3769.69 4660.03 0.70 -0.45 -0.55 1 + -6057.16 3795.80 4421.57 0.70 -0.45 -0.55 1 + -5693.87 3984.09 4728.17 0.70 -0.45 -0.55 1 + -5866.05 4010.20 4489.71 0.70 -0.45 -0.55 1 + -5674.62 4224.46 4557.89 0.70 -0.45 -0.55 1 + -5458.19 3187.33 5566.85 0.61 -0.35 -0.71 1 + -4831.11 3035.89 6174.05 0.61 -0.35 -0.71 1 + -4622.14 2985.36 6376.69 0.61 -0.35 -0.71 1 + -5445.83 2926.33 5704.74 0.61 -0.35 -0.71 1 + -5236.83 2875.76 5907.03 0.61 -0.35 -0.71 1 + -5027.90 2825.51 6109.45 0.61 -0.35 -0.71 1 + -4819.08 2775.04 6311.90 0.61 -0.35 -0.71 1 + -5433.62 2665.39 5842.43 0.61 -0.35 -0.71 1 + -5224.80 2614.91 6044.87 0.61 -0.35 -0.71 1 + -5015.87 2564.66 6247.30 0.61 -0.35 -0.71 1 + -5421.59 2404.53 5980.28 0.61 -0.35 -0.71 1 + -5212.66 2354.29 6182.70 0.61 -0.35 -0.71 1 + -4428.54 2719.04 6628.25 0.54 -0.25 -0.80 1 + -4401.11 2444.21 6732.87 0.54 -0.25 -0.80 1 + -4373.94 2169.60 6837.61 0.54 -0.25 -0.80 1 + -4346.69 1894.61 6942.15 0.54 -0.25 -0.80 1 + -4319.39 1619.81 7046.98 0.54 -0.25 -0.80 1 + -4629.09 2513.85 6558.72 0.54 -0.25 -0.80 1 + -4601.96 2239.06 6663.16 0.54 -0.25 -0.80 1 + -4574.67 1964.25 6768.00 0.54 -0.25 -0.80 1 + -4547.36 1689.62 6872.52 0.54 -0.25 -0.80 1 + -4829.94 2308.70 6489.01 0.54 -0.25 -0.80 1 + -4802.51 2033.87 6593.63 0.54 -0.25 -0.80 1 + -4775.21 1759.23 6698.15 0.54 -0.25 -0.80 1 + -5030.61 2103.70 6419.38 0.54 -0.25 -0.80 1 + -5003.18 1828.87 6524.00 0.54 -0.25 -0.80 1 + -5932.93 3271.28 5012.27 0.76 -0.34 -0.55 1 + -5933.04 3019.99 5167.46 0.76 -0.34 -0.55 1 + -6099.87 3294.91 4769.69 0.76 -0.34 -0.55 1 + -6099.72 3043.80 4925.06 0.76 -0.34 -0.55 1 + -6099.83 2792.50 5080.24 0.76 -0.34 -0.55 1 + -6266.55 3318.72 4527.28 0.76 -0.34 -0.55 1 + -6266.66 3067.42 4682.47 0.76 -0.34 -0.55 1 + -6266.51 2816.31 4837.84 0.76 -0.34 -0.55 1 + -6266.62 2565.01 4993.03 0.76 -0.34 -0.55 1 + -6433.49 3342.34 4284.69 0.76 -0.34 -0.55 1 + -6433.34 3091.23 4440.06 0.76 -0.34 -0.55 1 + -6433.45 2839.93 4595.25 0.76 -0.34 -0.55 1 + -6433.45 2588.87 4750.42 0.76 -0.34 -0.55 1 + -6433.41 2337.52 4905.81 0.76 -0.34 -0.55 1 + -6600.28 3114.85 4197.48 0.76 -0.34 -0.55 1 + -6600.13 2863.74 4352.85 0.76 -0.34 -0.55 1 + -6600.24 2612.44 4508.03 0.76 -0.34 -0.55 1 + -6600.24 2361.38 4663.20 0.76 -0.34 -0.55 1 + -6767.07 2887.36 4110.26 0.76 -0.34 -0.55 1 + -6766.92 2636.25 4265.63 0.76 -0.34 -0.55 1 + -6767.03 2384.96 4420.82 0.76 -0.34 -0.55 1 + -5732.03 2966.90 5400.24 0.70 -0.30 -0.65 1 + -6057.28 2257.15 5372.37 0.70 -0.30 -0.65 1 + -5885.10 2482.10 5455.66 0.70 -0.30 -0.65 1 + -5712.92 2707.06 5538.96 0.70 -0.30 -0.65 1 + -5693.84 2447.25 5678.03 0.70 -0.30 -0.65 1 + -5674.72 2187.41 5816.75 0.70 -0.30 -0.65 1 + -5266.46 1980.06 6222.80 0.65 -0.21 -0.73 1 + -5243.45 1703.64 6324.34 0.65 -0.21 -0.73 1 + -5470.63 2046.53 6020.09 0.65 -0.21 -0.73 1 + -5447.62 1770.11 6121.62 0.65 -0.21 -0.73 1 + -5424.57 1493.63 6222.81 0.65 -0.21 -0.73 1 + -5651.59 1836.30 5918.80 0.65 -0.21 -0.73 1 + -5628.74 1560.10 6020.10 0.65 -0.21 -0.73 1 + -6402.26 1818.47 5150.17 0.74 -0.17 -0.65 1 + -6212.98 1167.75 5539.04 0.74 -0.17 -0.65 1 + -6220.05 1450.95 5455.75 0.74 -0.17 -0.65 1 + -6227.12 1734.16 5372.46 0.74 -0.17 -0.65 1 + -6044.90 1366.89 5677.99 0.74 -0.17 -0.65 1 + -6051.97 1650.10 5594.70 0.74 -0.17 -0.65 1 + -5876.63 1565.75 5816.83 0.74 -0.17 -0.65 1 + -6575.04 1043.94 5167.48 0.81 -0.17 -0.55 1 + -6722.77 840.79 5012.12 0.81 -0.17 -0.55 1 + -6576.35 1326.15 5080.13 0.81 -0.17 -0.55 1 + -6723.93 1122.78 4925.01 0.81 -0.17 -0.55 1 + -6871.65 919.63 4769.64 0.81 -0.17 -0.55 1 + -6577.51 1608.14 4993.01 0.81 -0.17 -0.55 1 + -6725.23 1404.99 4837.65 0.81 -0.17 -0.55 1 + -6872.81 1201.63 4682.53 0.81 -0.17 -0.55 1 + -7020.53 998.48 4527.16 0.81 -0.17 -0.55 1 + -6578.82 1890.35 4905.66 0.81 -0.17 -0.55 1 + -6726.39 1686.98 4750.53 0.81 -0.17 -0.55 1 + -6874.12 1483.83 4595.17 0.81 -0.17 -0.55 1 + -7021.69 1280.72 4440.00 0.81 -0.17 -0.55 1 + -7169.42 1077.32 4284.68 0.81 -0.17 -0.55 1 + -4446.50 1228.38 7047.03 0.58 -0.11 -0.80 1 + -4630.20 1022.07 6942.15 0.58 -0.11 -0.80 1 + -4813.71 815.77 6837.67 0.58 -0.11 -0.80 1 + -4997.21 609.61 6732.86 0.58 -0.11 -0.80 1 + -5181.03 403.35 6628.20 0.58 -0.11 -0.80 1 + -4671.97 1305.92 6872.56 0.58 -0.11 -0.80 1 + -4855.47 1099.76 6767.75 0.58 -0.11 -0.80 1 + -5038.98 893.46 6663.27 0.58 -0.11 -0.80 1 + -5222.61 687.35 6558.68 0.58 -0.11 -0.80 1 + -4897.24 1383.61 6698.16 0.58 -0.11 -0.80 1 + -5080.87 1177.50 6593.56 0.58 -0.11 -0.80 1 + -5264.38 971.20 6489.09 0.58 -0.11 -0.80 1 + -5122.64 1461.35 6523.97 0.58 -0.11 -0.80 1 + -5306.15 1255.05 6419.49 0.58 -0.11 -0.80 1 + -5494.17 301.51 6376.68 0.70 -0.07 -0.71 1 + -5692.87 383.48 6174.12 0.70 -0.07 -0.71 1 + -6289.21 629.71 5566.88 0.70 -0.07 -0.71 1 + -5529.81 587.34 6311.97 0.70 -0.07 -0.71 1 + -5728.35 669.59 6109.56 0.70 -0.07 -0.71 1 + -5927.25 751.59 5907.15 0.70 -0.07 -0.71 1 + -6125.79 833.59 5704.78 0.70 -0.07 -0.71 1 + -5565.30 873.46 6247.41 0.70 -0.07 -0.71 1 + -5764.00 955.42 6044.85 0.70 -0.07 -0.71 1 + -5962.54 1037.42 5842.48 0.70 -0.07 -0.71 1 + -5600.78 1159.32 6182.90 0.70 -0.07 -0.71 1 + -5799.48 1241.29 5980.33 0.70 -0.07 -0.71 1 + -4893.00 306.08 6840.20 0.53 -0.05 -0.85 1 + -4231.94 358.47 7253.20 0.53 -0.05 -0.85 1 + -4470.72 436.05 7098.04 0.53 -0.05 -0.85 1 + -4709.61 513.82 6942.76 0.53 -0.05 -0.85 1 + -4287.65 643.69 7200.74 0.53 -0.05 -0.85 1 + -4526.54 721.47 7045.46 0.53 -0.05 -0.85 1 + -4343.23 928.87 7148.06 0.53 -0.05 -0.85 1 + -5416.16 6449.98 36.42 0.59 -0.81 -0.02 1 + -5177.24 6623.61 36.57 0.59 -0.81 -0.02 1 + -4938.46 6797.09 36.56 0.59 -0.81 -0.02 1 + -4699.39 6970.77 36.51 0.59 -0.81 -0.02 1 + -4460.62 7144.25 36.51 0.59 -0.81 -0.02 1 + -5292.97 6531.63 292.22 0.59 -0.81 -0.02 1 + -5054.04 6705.26 292.37 0.59 -0.81 -0.02 1 + -4815.12 6878.79 292.17 0.59 -0.81 -0.02 1 + -4576.20 7052.42 292.31 0.59 -0.81 -0.02 1 + -5169.77 6613.28 548.02 0.59 -0.81 -0.02 1 + -4930.85 6786.82 547.82 0.59 -0.81 -0.02 1 + -4691.93 6960.44 547.97 0.59 -0.81 -0.02 1 + -5046.72 6695.04 803.42 0.59 -0.81 -0.02 1 + -4807.80 6868.67 803.57 0.59 -0.81 -0.02 1 + -5066.47 6607.00 -1272.50 0.65 -0.76 0.10 1 + -5195.62 6530.38 -1018.02 0.65 -0.76 0.10 1 + -5324.61 6454.16 -763.65 0.65 -0.76 0.10 1 + -5453.61 6377.60 -509.38 0.65 -0.76 0.10 1 + -5582.91 6301.18 -254.96 0.65 -0.76 0.10 1 + -5290.95 6414.92 -1272.46 0.65 -0.76 0.10 1 + -5419.95 6338.36 -1018.18 0.65 -0.76 0.10 1 + -5548.95 6262.14 -763.81 0.65 -0.76 0.10 1 + -5678.10 6185.77 -509.59 0.65 -0.76 0.10 1 + -5515.29 6222.90 -1272.62 0.65 -0.76 0.10 1 + -5644.44 6146.53 -1018.40 0.65 -0.76 0.10 1 + -5773.44 6070.32 -764.03 0.65 -0.76 0.10 1 + -5739.77 6031.08 -1272.83 0.65 -0.76 0.10 1 + -5868.77 5954.86 -1018.47 0.65 -0.76 0.10 1 + -6115.15 5644.97 1295.27 0.69 -0.71 -0.10 1 + -6023.81 5770.70 1044.10 0.69 -0.71 -0.10 1 + -5932.61 5896.22 793.04 0.69 -0.71 -0.10 1 + -5841.32 6021.86 541.64 0.69 -0.71 -0.10 1 + -5750.12 6147.39 290.58 0.69 -0.71 -0.10 1 + -5902.83 5850.30 1301.47 0.69 -0.71 -0.10 1 + -5811.49 5976.02 1050.31 0.69 -0.71 -0.10 1 + -5720.34 6101.47 799.01 0.69 -0.71 -0.10 1 + -5629.00 6227.19 547.85 0.69 -0.71 -0.10 1 + -5690.51 6055.62 1307.68 0.69 -0.71 -0.10 1 + -5599.35 6181.07 1056.38 0.69 -0.71 -0.10 1 + -5508.02 6306.79 805.22 0.69 -0.71 -0.10 1 + -5478.58 6260.81 1313.74 0.69 -0.71 -0.10 1 + -5387.24 6386.54 1062.58 0.69 -0.71 -0.10 1 + -5941.06 5754.41 -1395.69 0.73 -0.66 0.17 1 + -6078.67 5666.31 -1149.73 0.73 -0.66 0.17 1 + -6000.23 5622.21 -1653.03 0.73 -0.66 0.17 1 + -6137.89 5534.47 -1407.12 0.73 -0.66 0.17 1 + -6275.51 5446.38 -1161.16 0.73 -0.66 0.17 1 + -6196.82 5402.45 -1664.63 0.73 -0.66 0.17 1 + -6334.44 5314.36 -1418.68 0.73 -0.66 0.17 1 + -5850.34 6058.85 -51.38 0.74 -0.67 0.03 1 + -6047.76 5839.25 -57.22 0.74 -0.67 0.03 1 + -6245.25 5619.98 -63.17 0.74 -0.67 0.03 1 + -6442.71 5400.30 -69.24 0.74 -0.67 0.03 1 + -6640.34 5180.84 -75.09 0.74 -0.67 0.03 1 + -5940.44 5948.10 -309.78 0.74 -0.67 0.03 1 + -6137.77 5728.61 -315.96 0.74 -0.67 0.03 1 + -6335.40 5509.15 -321.81 0.74 -0.67 0.03 1 + -6532.68 5289.74 -327.74 0.74 -0.67 0.03 1 + -6030.46 5837.45 -568.52 0.74 -0.67 0.03 1 + -6227.87 5617.85 -574.36 0.74 -0.67 0.03 1 + -6425.16 5398.45 -580.30 0.74 -0.67 0.03 1 + -6120.43 5726.90 -827.02 0.74 -0.67 0.03 1 + -6317.84 5507.29 -832.86 0.74 -0.67 0.03 1 + -6253.24 5539.21 1018.60 0.75 -0.66 -0.06 1 + -6175.90 5695.52 257.10 0.75 -0.66 -0.06 1 + -6267.10 5569.99 508.16 0.75 -0.66 -0.06 1 + -6358.44 5444.26 759.32 0.75 -0.66 -0.06 1 + -6372.46 5475.27 249.11 0.75 -0.66 -0.06 1 + -6463.79 5349.54 500.27 0.75 -0.66 -0.06 1 + -6568.80 5254.88 241.13 0.75 -0.66 -0.06 1 + -6846.14 4897.58 -291.38 0.82 -0.57 0.11 1 + -6901.44 4768.92 -551.57 0.82 -0.57 0.11 1 + -6957.02 4640.31 -811.41 0.82 -0.57 0.11 1 + -7012.25 4511.72 -1071.37 0.82 -0.57 0.11 1 + -7067.75 4383.22 -1331.54 0.82 -0.57 0.11 1 + -6734.42 5012.07 -539.77 0.82 -0.57 0.11 1 + -6789.65 4883.49 -799.72 0.82 -0.57 0.11 1 + -6845.23 4754.87 -1059.57 0.82 -0.57 0.11 1 + -6900.67 4626.44 -1319.51 0.82 -0.57 0.11 1 + -6622.63 5126.64 -787.92 0.82 -0.57 0.11 1 + -6678.07 4998.21 -1047.87 0.82 -0.57 0.11 1 + -6733.65 4869.59 -1307.71 0.82 -0.57 0.11 1 + -6511.05 5241.36 -1036.07 0.82 -0.57 0.11 1 + -6566.63 5112.74 -1295.92 0.82 -0.57 0.11 1 + -7027.56 4623.46 -241.13 0.86 -0.50 0.06 1 + -7291.59 4110.02 -767.30 0.86 -0.50 0.06 1 + -7234.01 4239.14 -508.16 0.86 -0.50 0.06 1 + -7176.48 4368.61 -249.11 0.86 -0.50 0.06 1 + -7382.94 3984.30 -516.14 0.86 -0.50 0.06 1 + -7325.21 4113.61 -257.10 0.86 -0.50 0.06 1 + -7474.14 3858.77 -265.07 0.86 -0.50 0.06 1 + -5283.74 6267.32 1561.47 0.58 -0.79 -0.19 1 + -5192.29 6392.98 1310.22 0.58 -0.79 -0.19 1 + -5101.12 6518.41 1059.02 0.58 -0.79 -0.19 1 + -5136.01 6315.20 1812.53 0.58 -0.79 -0.19 1 + -5044.69 6441.03 1561.43 0.58 -0.79 -0.19 1 + -4953.52 6566.46 1310.22 0.58 -0.79 -0.19 1 + -4862.07 6692.12 1058.97 0.58 -0.79 -0.19 1 + -4988.41 6363.25 2063.74 0.58 -0.79 -0.19 1 + -4896.97 6488.92 1812.49 0.58 -0.79 -0.19 1 + -4805.92 6614.51 1561.43 0.58 -0.79 -0.19 1 + -4714.52 6740.00 1310.34 0.58 -0.79 -0.19 1 + -4623.30 6865.61 1058.97 0.58 -0.79 -0.19 1 + -4749.42 6536.79 2063.86 0.58 -0.79 -0.19 1 + -4658.20 6662.40 1812.49 0.58 -0.79 -0.19 1 + -4566.93 6788.05 1561.55 0.58 -0.79 -0.19 1 + -4475.70 6913.66 1310.17 0.58 -0.79 -0.19 1 + -4510.60 6710.45 2063.69 0.58 -0.79 -0.19 1 + -4419.20 6835.93 1812.61 0.58 -0.79 -0.19 1 + -4328.10 6961.71 1561.38 0.58 -0.79 -0.19 1 + -5467.54 5758.33 2808.23 0.68 -0.69 -0.27 1 + -5615.16 5710.47 2556.93 0.68 -0.69 -0.27 1 + -5762.73 5662.52 2305.87 0.68 -0.69 -0.27 1 + -5910.50 5614.47 2054.53 0.68 -0.69 -0.27 1 + -6058.07 5566.52 1803.47 0.68 -0.69 -0.27 1 + -5402.51 5915.17 2566.46 0.68 -0.69 -0.27 1 + -5550.13 5867.32 2315.17 0.68 -0.69 -0.27 1 + -5697.85 5819.17 2064.06 0.68 -0.69 -0.27 1 + -5845.48 5771.31 1812.77 0.68 -0.69 -0.27 1 + -5337.49 6072.02 2324.70 0.68 -0.69 -0.27 1 + -5485.21 6023.87 2073.59 0.68 -0.69 -0.27 1 + -5632.83 5976.02 1822.30 0.68 -0.69 -0.27 1 + -5272.76 6228.70 2083.21 0.68 -0.69 -0.27 1 + -5420.38 6180.84 1831.92 0.68 -0.69 -0.27 1 + -6289.24 4697.57 3052.74 0.70 -0.61 -0.39 1 + -6090.28 4915.34 3069.96 0.70 -0.61 -0.39 1 + -5891.72 5133.13 3087.01 0.70 -0.61 -0.39 1 + -5692.91 5350.70 3104.18 0.70 -0.61 -0.39 1 + -5494.15 5568.60 3121.51 0.70 -0.61 -0.39 1 + -6125.83 4729.72 3296.76 0.70 -0.61 -0.39 1 + -5927.02 4947.29 3313.94 0.70 -0.61 -0.39 1 + -5728.46 5165.08 3330.98 0.70 -0.61 -0.39 1 + -5529.85 5382.78 3348.26 0.70 -0.61 -0.39 1 + -5962.57 4761.66 3540.74 0.70 -0.61 -0.39 1 + -5763.96 4979.36 3558.01 0.70 -0.61 -0.39 1 + -5565.40 5197.16 3575.05 0.70 -0.61 -0.39 1 + -5799.51 4793.74 3784.81 0.70 -0.61 -0.39 1 + -5600.95 5011.53 3801.85 0.70 -0.61 -0.39 1 + -5693.57 5522.34 2812.54 0.72 -0.63 -0.30 1 + -6186.08 5207.16 2294.47 0.72 -0.63 -0.30 1 + -6038.51 5255.11 2545.53 0.72 -0.63 -0.30 1 + -5890.89 5302.97 2796.82 0.72 -0.63 -0.30 1 + -6235.88 5036.07 2529.96 0.72 -0.63 -0.30 1 + -6088.26 5083.92 2781.25 0.72 -0.63 -0.30 1 + -6285.47 4864.85 2765.36 0.72 -0.63 -0.30 1 + -6381.21 4396.80 3281.70 0.74 -0.50 -0.45 1 + -6227.16 4029.58 3953.81 0.74 -0.50 -0.45 1 + -6220.09 4230.74 3737.76 0.74 -0.50 -0.45 1 + -6213.02 4431.89 3521.71 0.74 -0.50 -0.45 1 + -6051.94 4266.15 3977.91 0.74 -0.50 -0.45 1 + -6044.87 4467.30 3761.86 0.74 -0.50 -0.45 1 + -5876.67 4502.38 4001.88 0.74 -0.50 -0.45 1 + -7706.10 1086.19 3168.85 0.91 -0.14 -0.40 1 + -7797.34 1211.94 2917.67 0.91 -0.14 -0.40 1 + -7404.52 1001.11 3884.65 0.91 -0.14 -0.40 1 + -7495.81 1126.52 3633.38 0.91 -0.14 -0.40 1 + -7587.05 1252.27 3382.20 0.91 -0.14 -0.40 1 + -7678.25 1377.80 3131.14 0.91 -0.14 -0.40 1 + -7769.58 1503.43 2879.75 0.91 -0.14 -0.40 1 + -7376.77 1292.60 3846.73 0.91 -0.14 -0.40 1 + -7468.06 1418.01 3595.46 0.91 -0.14 -0.40 1 + -7559.30 1543.77 3344.28 0.91 -0.14 -0.40 1 + -7650.50 1669.30 3093.22 0.91 -0.14 -0.40 1 + -7349.01 1584.10 3808.81 0.91 -0.14 -0.40 1 + -7440.30 1709.51 3557.54 0.91 -0.14 -0.40 1 + -7531.54 1835.26 3306.36 0.91 -0.14 -0.40 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -4579.19 3383.77 -6197.13 0.59 -0.42 0.70 1 + -5167.16 3412.41 -5683.54 0.59 -0.42 0.70 1 + -4928.38 3489.99 -5838.70 0.59 -0.42 0.70 1 + -4689.42 3567.75 -5993.89 0.59 -0.42 0.70 1 + -5038.66 3673.99 -5635.82 0.59 -0.42 0.70 1 + -4799.70 3751.74 -5791.00 0.59 -0.42 0.70 1 + -4910.02 3935.43 -5587.94 0.59 -0.42 0.70 1 + -5582.85 3045.98 -5522.01 0.65 -0.43 0.63 1 + -5453.63 3307.65 -5476.57 0.65 -0.43 0.63 1 + -5324.74 3569.29 -5431.27 0.65 -0.43 0.63 1 + -5195.61 3831.08 -5385.63 0.65 -0.43 0.63 1 + -5066.53 4092.89 -5340.34 0.65 -0.43 0.63 1 + -5678.07 3222.02 -5304.98 0.65 -0.43 0.63 1 + -5549.13 3483.64 -5259.32 0.65 -0.43 0.63 1 + -5420.05 3745.45 -5214.04 0.65 -0.43 0.63 1 + -5291.02 4006.94 -5168.58 0.65 -0.43 0.63 1 + -5773.57 3398.01 -5087.73 0.65 -0.43 0.63 1 + -5644.35 3659.67 -5042.29 0.65 -0.43 0.63 1 + -5515.31 3921.17 -4996.83 0.65 -0.43 0.63 1 + -5868.98 3573.87 -4870.68 0.65 -0.43 0.63 1 + -5739.76 3835.54 -4825.24 0.65 -0.43 0.63 1 + -4460.62 3162.41 -6406.27 0.59 -0.34 0.73 1 + -4699.58 3084.65 -6251.09 0.59 -0.34 0.73 1 + -4938.36 3007.07 -6095.92 0.59 -0.34 0.73 1 + -5177.42 2929.44 -5940.54 0.59 -0.34 0.73 1 + -5416.19 2851.86 -5785.37 0.59 -0.34 0.73 1 + -4576.35 2892.50 -6438.44 0.59 -0.34 0.73 1 + -4815.31 2814.74 -6283.26 0.59 -0.34 0.73 1 + -5054.18 2737.28 -6127.89 0.59 -0.34 0.73 1 + -5293.14 2659.53 -5972.71 0.59 -0.34 0.73 1 + -4692.07 2622.59 -6470.62 0.59 -0.34 0.73 1 + -4930.94 2545.13 -6315.25 0.59 -0.34 0.73 1 + -5169.90 2467.37 -6160.06 0.59 -0.34 0.73 1 + -4807.85 2353.11 -6502.76 0.59 -0.34 0.73 1 + -5046.81 2275.36 -6347.57 0.59 -0.34 0.73 1 + -6640.35 2384.02 -4600.32 0.74 -0.32 0.59 1 + -6442.67 2477.00 -4799.28 0.74 -0.32 0.59 1 + -6245.34 2569.72 -4998.31 0.74 -0.32 0.59 1 + -6047.81 2662.59 -5197.09 0.74 -0.32 0.59 1 + -5850.34 2755.64 -5396.18 0.74 -0.32 0.59 1 + -6532.70 2658.71 -4584.72 0.74 -0.32 0.59 1 + -6335.16 2751.58 -4783.50 0.74 -0.32 0.59 1 + -6137.83 2844.30 -4982.53 0.74 -0.32 0.59 1 + -5940.51 2937.23 -5181.44 0.74 -0.32 0.59 1 + -6425.19 2933.28 -4568.94 0.74 -0.32 0.59 1 + -6227.87 3026.22 -4767.84 0.74 -0.32 0.59 1 + -6030.53 3118.94 -4966.88 0.74 -0.32 0.59 1 + -6317.89 3207.93 -4553.29 0.74 -0.32 0.59 1 + -6120.56 3300.65 -4752.32 0.74 -0.32 0.59 1 + -3786.93 609.49 -7498.41 0.45 -0.14 0.88 1 + -3695.80 890.43 -7498.37 0.45 -0.14 0.88 1 + -3604.60 1171.13 -7498.37 0.45 -0.14 0.88 1 + -3513.23 1452.14 -7498.39 0.45 -0.14 0.88 1 + -3422.03 1732.84 -7498.39 0.45 -0.14 0.88 1 + -3956.20 819.75 -7378.32 0.45 -0.14 0.88 1 + -3865.07 1100.69 -7378.29 0.45 -0.14 0.88 1 + -3773.63 1381.46 -7378.34 0.45 -0.14 0.88 1 + -3682.50 1662.40 -7378.30 0.45 -0.14 0.88 1 + -4125.47 1030.01 -7258.24 0.45 -0.14 0.88 1 + -4034.03 1310.78 -7258.29 0.45 -0.14 0.88 1 + -3942.89 1591.72 -7258.25 0.45 -0.14 0.88 1 + -4294.48 1240.12 -7138.49 0.45 -0.14 0.88 1 + -4203.35 1521.06 -7138.45 0.45 -0.14 0.88 1 + -4658.10 1358.09 -6769.80 0.58 -0.19 0.79 1 + -4419.06 1435.87 -6925.01 0.58 -0.19 0.79 1 + -5283.51 1406.02 -6304.12 0.58 -0.19 0.79 1 + -5044.48 1483.81 -6459.34 0.58 -0.19 0.79 1 + -4805.79 1561.33 -6614.63 0.58 -0.19 0.79 1 + -4566.90 1639.01 -6769.67 0.58 -0.19 0.79 1 + -4327.86 1716.57 -6925.02 0.58 -0.19 0.79 1 + -5192.31 1686.94 -6303.99 0.58 -0.19 0.79 1 + -4953.27 1764.50 -6459.34 0.58 -0.19 0.79 1 + -4714.59 1842.25 -6614.50 0.58 -0.19 0.79 1 + -4475.55 1919.81 -6769.85 0.58 -0.19 0.79 1 + -5100.97 1967.74 -6304.17 0.58 -0.19 0.79 1 + -4862.07 2045.42 -6459.21 0.58 -0.19 0.79 1 + -4623.25 2123.05 -6614.68 0.58 -0.19 0.79 1 + -5750.17 2489.28 -5628.27 0.69 -0.23 0.68 1 + -5841.37 2208.37 -5628.40 0.69 -0.23 0.68 1 + -5932.57 1927.67 -5628.40 0.69 -0.23 0.68 1 + -6023.91 1646.64 -5628.35 0.69 -0.23 0.68 1 + -6115.11 1365.94 -5628.35 0.69 -0.23 0.68 1 + -5629.10 2294.69 -5814.70 0.69 -0.23 0.68 1 + -5720.30 2013.77 -5814.83 0.69 -0.23 0.68 1 + -5811.65 1732.96 -5814.65 0.69 -0.23 0.68 1 + -5902.85 1452.05 -5814.78 0.69 -0.23 0.68 1 + -5508.04 2100.09 -6001.12 0.69 -0.23 0.68 1 + -5599.39 1819.28 -6000.94 0.69 -0.23 0.68 1 + -5690.59 1538.37 -6001.07 0.69 -0.23 0.68 1 + -5387.34 1905.67 -6187.36 0.69 -0.23 0.68 1 + -5478.54 1624.75 -6187.49 0.69 -0.23 0.68 1 + -5979.54 2408.52 -5409.95 0.75 -0.24 0.62 1 + -6358.40 1755.48 -5209.20 0.75 -0.24 0.62 1 + -6267.19 2036.17 -5209.20 0.75 -0.24 0.62 1 + -6175.99 2317.09 -5209.07 0.75 -0.24 0.62 1 + -6463.72 1944.92 -5008.63 0.75 -0.24 0.62 1 + -6372.52 2225.83 -5008.50 0.75 -0.24 0.62 1 + -6568.83 2134.29 -4807.94 0.75 -0.24 0.62 1 + -6352.70 1209.45 -5396.23 0.79 -0.17 0.59 1 + -6457.76 1400.71 -5197.20 0.79 -0.17 0.59 1 + -6563.02 1591.82 -4998.42 0.79 -0.17 0.59 1 + -6668.22 1782.98 -4799.21 0.79 -0.17 0.59 1 + -6773.49 1974.31 -4600.30 0.79 -0.17 0.59 1 + -6532.33 1115.50 -5181.60 0.79 -0.17 0.59 1 + -6637.52 1306.43 -4982.52 0.79 -0.17 0.59 1 + -6742.79 1497.76 -4783.61 0.79 -0.17 0.59 1 + -6847.84 1688.81 -4584.71 0.79 -0.17 0.59 1 + -6712.10 1021.21 -4966.93 0.79 -0.17 0.59 1 + -6817.15 1212.48 -4767.90 0.79 -0.17 0.59 1 + -6922.21 1403.52 -4569.00 0.79 -0.17 0.59 1 + -6891.72 927.05 -4752.44 0.79 -0.17 0.59 1 + -6996.78 1118.31 -4553.41 0.79 -0.17 0.59 1 + -5076.48 -63.63 -6720.39 0.55 -0.03 0.83 1 + -4837.58 14.15 -6875.67 0.55 -0.03 0.83 1 + -4598.81 91.73 -7030.84 0.55 -0.03 0.83 1 + -4359.73 169.35 -7186.19 0.55 -0.03 0.83 1 + -4120.95 246.93 -7341.36 0.55 -0.03 0.83 1 + -5008.96 221.95 -6754.57 0.55 -0.03 0.83 1 + -4770.06 299.72 -6909.85 0.55 -0.03 0.83 1 + -4531.10 377.15 -7065.09 0.55 -0.03 0.83 1 + -4292.21 454.92 -7220.37 0.55 -0.03 0.83 1 + -4941.43 507.52 -6788.74 0.55 -0.03 0.83 1 + -4702.47 584.94 -6943.98 0.55 -0.03 0.83 1 + -4463.58 662.72 -7099.26 0.55 -0.03 0.83 1 + -4873.96 792.68 -6823.09 0.55 -0.03 0.83 1 + -4635.07 870.46 -6978.37 0.55 -0.03 0.83 1 + -5585.96 5713.67 -2640.25 0.71 -0.64 0.29 1 + -6135.03 5179.85 -2485.19 0.71 -0.64 0.29 1 + -5945.90 5403.90 -2450.18 0.71 -0.64 0.29 1 + -5756.78 5627.96 -2415.16 0.71 -0.64 0.29 1 + -6116.59 5318.39 -2225.04 0.71 -0.64 0.29 1 + -5927.46 5542.44 -2190.02 0.71 -0.64 0.29 1 + -6098.11 5456.58 -1964.84 0.71 -0.64 0.29 1 + -6153.50 4710.21 -3281.70 0.71 -0.55 0.45 1 + -5756.66 4677.17 -3953.81 0.71 -0.55 0.45 1 + -5945.78 4608.29 -3737.76 0.71 -0.55 0.45 1 + -6134.90 4539.40 -3521.71 0.71 -0.55 0.45 1 + -5927.50 4437.43 -3977.91 0.71 -0.55 0.45 1 + -6116.62 4368.54 -3761.86 0.71 -0.55 0.45 1 + -6098.01 4197.74 -4001.88 0.71 -0.55 0.45 1 + -6993.87 4359.12 -1738.54 0.79 -0.56 0.25 1 + -6848.10 4458.28 -1975.50 0.79 -0.56 0.25 1 + -6702.62 4557.61 -2212.33 0.79 -0.56 0.25 1 + -6556.70 4656.98 -2449.23 0.79 -0.56 0.25 1 + -6411.11 4756.29 -2686.29 0.79 -0.56 0.25 1 + -6828.27 4602.72 -1718.80 0.79 -0.56 0.25 1 + -6682.46 4702.11 -1955.48 0.79 -0.56 0.25 1 + -6536.87 4801.42 -2192.54 0.79 -0.56 0.25 1 + -6391.20 4900.60 -2429.26 0.79 -0.56 0.25 1 + -6662.63 4846.55 -1698.78 0.79 -0.56 0.25 1 + -6516.86 4945.71 -1935.74 0.79 -0.56 0.25 1 + -6371.19 5044.89 -2172.47 0.79 -0.56 0.25 1 + -6497.13 5090.17 -1678.81 0.79 -0.56 0.25 1 + -6351.36 5189.33 -1915.77 0.79 -0.56 0.25 1 + -6000.23 3992.84 -4289.41 0.73 -0.45 0.51 1 + -6196.91 3904.92 -4087.45 0.73 -0.45 0.51 1 + -5941.19 3821.88 -4522.56 0.73 -0.45 0.51 1 + -6137.96 3733.67 -4320.78 0.73 -0.45 0.51 1 + -6334.40 3645.49 -4118.86 0.73 -0.45 0.51 1 + -6078.68 3562.45 -4553.98 0.73 -0.45 0.51 1 + -6275.45 3474.24 -4352.20 0.73 -0.45 0.51 1 + -6411.13 4529.79 -3052.74 0.79 -0.48 0.39 1 + -6556.76 4273.27 -3069.96 0.79 -0.48 0.39 1 + -6702.53 4017.13 -3087.01 0.79 -0.48 0.39 1 + -6848.02 3760.82 -3104.18 0.79 -0.48 0.39 1 + -6993.83 3504.45 -3121.51 0.79 -0.48 0.39 1 + -6391.21 4364.45 -3296.76 0.79 -0.48 0.39 1 + -6536.70 4108.13 -3313.94 0.79 -0.48 0.39 1 + -6682.47 3851.99 -3330.98 0.79 -0.48 0.39 1 + -6828.14 3595.82 -3348.26 0.79 -0.48 0.39 1 + -6371.14 4199.30 -3540.74 0.79 -0.48 0.39 1 + -6516.81 3943.14 -3558.01 0.79 -0.48 0.39 1 + -6662.59 3687.00 -3575.05 0.79 -0.48 0.39 1 + -6351.26 4034.31 -3784.81 0.79 -0.48 0.39 1 + -6497.03 3778.17 -3801.85 0.79 -0.48 0.39 1 + -7011.46 3708.41 -2812.54 0.82 -0.49 0.30 1 + -6863.91 4274.21 -2294.47 0.82 -0.49 0.30 1 + -6863.91 4119.04 -2545.53 0.82 -0.49 0.30 1 + -6863.80 3963.86 -2796.82 0.82 -0.49 0.30 1 + -6716.57 4374.44 -2529.96 0.82 -0.49 0.30 1 + -6716.47 4219.25 -2781.25 0.82 -0.49 0.30 1 + -6569.05 4474.52 -2765.36 0.82 -0.49 0.30 1 + -7166.05 3420.51 -2808.23 0.86 -0.43 0.27 1 + -7166.15 3575.70 -2556.93 0.86 -0.43 0.27 1 + -7166.15 3730.86 -2305.87 0.86 -0.43 0.27 1 + -7166.11 3886.25 -2054.53 0.86 -0.43 0.27 1 + -7166.11 4041.42 -1803.47 0.86 -0.43 0.27 1 + -7295.12 3310.20 -2566.46 0.86 -0.43 0.27 1 + -7295.23 3465.39 -2315.17 0.86 -0.43 0.27 1 + -7295.08 3620.76 -2064.06 0.86 -0.43 0.27 1 + -7295.19 3775.94 -1812.77 0.86 -0.43 0.27 1 + -7424.20 3199.89 -2324.70 0.86 -0.43 0.27 1 + -7424.06 3355.26 -2073.59 0.86 -0.43 0.27 1 + -7424.16 3510.44 -1822.30 0.86 -0.43 0.27 1 + -7553.21 3089.92 -2083.21 0.86 -0.43 0.27 1 + -7553.31 3245.10 -1831.92 0.86 -0.43 0.27 1 + -7067.81 3151.13 -3324.93 0.82 -0.35 0.46 1 + -7012.32 2975.97 -3556.17 0.82 -0.35 0.46 1 + -6957.04 2801.10 -3787.44 0.82 -0.35 0.46 1 + -6901.39 2626.05 -4018.85 0.82 -0.35 0.46 1 + -6846.10 2450.96 -4250.23 0.82 -0.35 0.46 1 + -6900.79 3249.18 -3547.75 0.82 -0.35 0.46 1 + -6845.16 3074.35 -3779.04 0.82 -0.35 0.46 1 + -6789.86 2899.26 -4010.43 0.82 -0.35 0.46 1 + -6734.39 2724.32 -4241.54 0.82 -0.35 0.46 1 + -6733.63 3347.56 -3770.62 0.82 -0.35 0.46 1 + -6678.14 3172.40 -4001.86 0.82 -0.35 0.46 1 + -6622.66 2997.47 -4232.98 0.82 -0.35 0.46 1 + -6566.63 3445.83 -3993.31 0.82 -0.35 0.46 1 + -6511.14 3270.67 -4224.56 0.82 -0.35 0.46 1 + -7200.40 2805.26 -3332.83 0.86 -0.28 0.42 1 + -7291.61 2524.57 -3332.83 0.86 -0.28 0.42 1 + -7382.80 2243.65 -3332.95 0.86 -0.28 0.42 1 + -7474.16 1962.84 -3332.78 0.86 -0.28 0.42 1 + -7142.71 2631.29 -3564.34 0.86 -0.28 0.42 1 + -7233.92 2350.60 -3564.34 0.86 -0.28 0.42 1 + -7325.11 2069.68 -3564.46 0.86 -0.28 0.42 1 + -7085.22 2457.39 -3795.99 0.86 -0.28 0.42 1 + -7176.41 2176.47 -3796.11 0.86 -0.28 0.42 1 + -7027.53 2283.42 -4027.50 0.86 -0.28 0.42 1 + -7623.35 1856.03 -3062.35 0.89 -0.29 0.35 1 + -7532.16 2136.95 -3062.23 0.89 -0.29 0.35 1 + -7440.96 2417.65 -3062.23 0.89 -0.29 0.35 1 + -7349.61 2698.67 -3062.28 0.89 -0.29 0.35 1 + -7258.41 2979.37 -3062.28 0.89 -0.29 0.35 1 + -7661.75 2023.77 -2822.21 0.89 -0.29 0.35 1 + -7570.57 2304.69 -2822.09 0.89 -0.29 0.35 1 + -7479.20 2585.49 -2822.26 0.89 -0.29 0.35 1 + -7388.02 2866.41 -2822.14 0.89 -0.29 0.35 1 + -7700.16 2191.51 -2582.07 0.89 -0.29 0.35 1 + -7608.80 2472.31 -2582.24 0.89 -0.29 0.35 1 + -7517.61 2753.23 -2582.12 0.89 -0.29 0.35 1 + -7738.59 2359.20 -2342.37 0.89 -0.29 0.35 1 + -7647.40 2640.12 -2342.25 0.89 -0.29 0.35 1 + -6979.24 2041.25 -4250.21 0.87 -0.20 0.46 1 + -7126.94 1932.03 -4018.78 0.87 -0.20 0.46 1 + -7274.71 1823.21 -3787.53 0.87 -0.20 0.46 1 + -7422.26 1714.09 -3556.27 0.87 -0.20 0.46 1 + -7570.16 1604.94 -3324.98 0.87 -0.20 0.46 1 + -7049.53 1754.42 -4241.54 0.87 -0.20 0.46 1 + -7197.08 1645.31 -4010.27 0.87 -0.20 0.46 1 + -7344.85 1536.49 -3779.03 0.87 -0.20 0.46 1 + -7492.59 1427.44 -3547.91 0.87 -0.20 0.46 1 + -7119.67 1467.70 -4233.03 0.87 -0.20 0.46 1 + -7267.42 1358.66 -4001.91 0.87 -0.20 0.46 1 + -7415.19 1249.83 -3770.67 0.87 -0.20 0.46 1 + -7190.01 1181.05 -4224.67 0.87 -0.20 0.46 1 + -7337.78 1072.22 -3993.42 0.87 -0.20 0.46 1 + -8172.96 942.49 -1803.52 0.95 -0.16 0.27 1 + -8081.73 1068.24 -2054.70 0.95 -0.16 0.27 1 + -7990.52 1193.77 -2305.76 0.95 -0.16 0.27 1 + -7899.20 1319.40 -2557.15 0.95 -0.16 0.27 1 + -7807.99 1444.93 -2808.21 0.95 -0.16 0.27 1 + -8121.29 1233.21 -1812.97 0.95 -0.16 0.27 1 + -8030.05 1358.96 -2064.15 0.95 -0.16 0.27 1 + -7938.76 1484.37 -2315.42 0.95 -0.16 0.27 1 + -7847.52 1610.13 -2566.60 0.95 -0.16 0.27 1 + -8069.61 1523.93 -1822.42 0.95 -0.16 0.27 1 + -7978.32 1649.34 -2073.69 0.95 -0.16 0.27 1 + -7887.08 1775.09 -2324.87 0.95 -0.16 0.27 1 + -8018.12 1814.29 -1832.05 0.95 -0.16 0.27 1 + -7926.88 1940.05 -2083.23 0.95 -0.16 0.27 1 + -8125.84 744.34 -2059.09 0.95 -0.08 0.30 1 + -7882.83 827.78 -2796.85 0.95 -0.08 0.30 1 + -7974.04 702.25 -2545.78 0.95 -0.08 0.30 1 + -8065.27 576.50 -2294.60 0.95 -0.08 0.30 1 + -7913.79 534.51 -2781.18 0.95 -0.08 0.30 1 + -8005.02 408.76 -2530.00 0.95 -0.08 0.30 1 + -7944.51 241.26 -2765.43 0.95 -0.08 0.30 1 + -7039.88 2597.85 3749.05 0.85 -0.28 -0.45 1 + -6976.72 2422.15 3977.78 0.85 -0.28 -0.45 1 + -7194.26 2492.85 3520.31 0.85 -0.28 -0.45 1 + -7131.09 2317.15 3749.05 0.85 -0.28 -0.45 1 + -7067.92 2141.45 3977.78 0.85 -0.28 -0.45 1 + -7285.46 2212.15 3520.31 0.85 -0.28 -0.45 1 + -7222.39 2036.11 3749.10 0.85 -0.28 -0.45 1 + -6696.49 535.00 5068.74 0.83 -0.05 -0.55 1 + -7131.54 489.55 4421.44 0.83 -0.05 -0.55 1 + -6976.90 409.46 4659.90 0.83 -0.05 -0.55 1 + -6822.26 329.37 4898.36 0.83 -0.05 -0.55 1 + -7102.87 203.62 4489.72 0.83 -0.05 -0.55 1 + -6948.23 123.52 4728.18 0.83 -0.05 -0.55 1 + -7074.00 -82.10 4557.80 0.83 -0.05 -0.55 1 + -5890.79 129.96 5994.03 0.72 0.01 -0.70 1 + -6038.36 -73.16 5838.87 0.72 0.01 -0.70 1 + -6186.09 -276.30 5683.50 0.72 0.01 -0.70 1 + -6088.21 213.92 5791.09 0.72 0.01 -0.70 1 + -6235.94 10.77 5635.73 0.72 0.01 -0.70 1 + -6285.43 297.85 5587.99 0.72 0.01 -0.70 1 + -6773.45 4997.63 291.38 0.79 -0.60 -0.11 1 + -6668.18 5089.98 551.57 0.79 -0.60 -0.11 1 + -6563.03 5182.58 811.41 0.79 -0.60 -0.11 1 + -6457.81 5274.85 1071.37 0.79 -0.60 -0.11 1 + -6352.75 5367.35 1331.54 0.79 -0.60 -0.11 1 + -6847.82 4856.00 539.77 0.79 -0.60 -0.11 1 + -6742.59 4948.27 799.72 0.79 -0.60 -0.11 1 + -6637.45 5040.87 1059.57 0.79 -0.60 -0.11 1 + -6532.44 5133.28 1319.51 0.79 -0.60 -0.11 1 + -6922.23 4714.28 787.92 0.79 -0.60 -0.11 1 + -6817.22 4806.69 1047.87 0.79 -0.60 -0.11 1 + -6712.07 4899.30 1307.71 0.79 -0.60 -0.11 1 + -6996.86 4572.71 1036.07 0.79 -0.60 -0.11 1 + -6891.71 4665.31 1295.92 0.79 -0.60 -0.11 1 + -7570.16 3691.72 51.38 0.87 -0.50 -0.03 1 + -7422.32 3947.33 57.22 0.87 -0.50 -0.03 1 + -7274.81 4202.91 63.17 0.87 -0.50 -0.03 1 + -7126.90 4458.60 69.24 0.87 -0.50 -0.03 1 + -6979.25 4714.37 75.09 0.87 -0.50 -0.03 1 + -7492.68 3811.63 309.78 0.87 -0.50 -0.03 1 + -7344.91 4067.13 315.96 0.87 -0.50 -0.03 1 + -7197.26 4322.90 321.81 0.87 -0.50 -0.03 1 + -7049.55 4578.33 327.74 0.87 -0.50 -0.03 1 + -7415.27 3931.44 568.52 0.87 -0.50 -0.03 1 + -7267.42 4187.05 574.36 0.87 -0.50 -0.03 1 + -7119.71 4442.48 580.30 0.87 -0.50 -0.03 1 + -7337.92 4051.17 827.02 0.87 -0.50 -0.03 1 + -7190.07 4306.78 832.86 0.87 -0.50 -0.03 1 + -7258.37 4071.45 -1295.27 0.89 -0.44 0.10 1 + -7349.71 3945.74 -1044.10 0.89 -0.44 0.10 1 + -7440.92 3820.21 -793.04 0.89 -0.44 0.10 1 + -7532.20 3694.57 -541.64 0.89 -0.44 0.10 1 + -7623.40 3569.04 -290.58 0.89 -0.44 0.10 1 + -7388.03 3806.08 -1301.47 0.89 -0.44 0.10 1 + -7479.38 3680.36 -1050.31 0.89 -0.44 0.10 1 + -7570.52 3554.90 -799.01 0.89 -0.44 0.10 1 + -7661.86 3429.19 -547.85 0.89 -0.44 0.10 1 + -7517.70 3540.70 -1307.68 0.89 -0.44 0.10 1 + -7608.83 3415.24 -1056.38 0.89 -0.44 0.10 1 + -7700.18 3289.52 -805.22 0.89 -0.44 0.10 1 + -7647.35 3275.73 -1313.74 0.89 -0.44 0.10 1 + -7738.70 3150.02 -1062.58 0.89 -0.44 0.10 1 + -7849.25 2776.83 1272.50 0.92 -0.38 -0.10 1 + -7816.30 2923.33 1018.02 0.92 -0.38 -0.10 1 + -7783.67 3069.57 763.65 0.92 -0.38 -0.10 1 + -7750.72 3215.91 509.38 0.92 -0.38 -0.10 1 + -7717.99 3362.49 254.96 0.92 -0.38 -0.10 1 + -7735.95 3049.68 1272.46 0.92 -0.38 -0.10 1 + -7703.00 3196.03 1018.18 0.92 -0.38 -0.10 1 + -7670.37 3342.26 763.81 0.92 -0.38 -0.10 1 + -7637.65 3488.68 509.59 0.92 -0.38 -0.10 1 + -7622.65 3322.38 1272.62 0.92 -0.38 -0.10 1 + -7589.93 3468.80 1018.40 0.92 -0.38 -0.10 1 + -7557.31 3615.04 764.03 0.92 -0.38 -0.10 1 + -7509.59 3595.15 1272.83 0.92 -0.38 -0.10 1 + -7476.96 3741.39 1018.47 0.92 -0.38 -0.10 1 + -7593.44 3088.15 -1561.60 0.93 -0.30 0.19 1 + -7684.50 2962.50 -1310.29 0.93 -0.30 0.19 1 + -7775.88 2836.89 -1059.26 0.93 -0.30 0.19 1 + -7593.36 2932.87 -1812.77 0.93 -0.30 0.19 1 + -7684.65 2807.29 -1561.40 0.93 -0.30 0.19 1 + -7775.80 2681.61 -1310.43 0.93 -0.30 0.19 1 + -7867.08 2556.04 -1059.06 0.93 -0.30 0.19 1 + -7593.27 2777.59 -2063.94 0.93 -0.30 0.19 1 + -7684.56 2652.01 -1812.57 0.93 -0.30 0.19 1 + -7775.95 2526.41 -1561.54 0.93 -0.30 0.19 1 + -7867.00 2400.92 -1310.43 0.93 -0.30 0.19 1 + -7958.38 2275.16 -1059.21 0.93 -0.30 0.19 1 + -7684.48 2496.89 -2063.94 0.93 -0.30 0.19 1 + -7775.86 2371.13 -1812.71 0.93 -0.30 0.19 1 + -7867.15 2245.71 -1561.54 0.93 -0.30 0.19 1 + -7958.30 2119.88 -1310.37 0.93 -0.30 0.19 1 + -7775.78 2215.85 -2063.88 0.93 -0.30 0.19 1 + -7867.07 2090.43 -1812.71 0.93 -0.30 0.19 1 + -7958.45 1964.67 -1561.49 0.93 -0.30 0.19 1 + -7807.98 3157.92 -36.42 0.95 -0.31 0.02 1 + -7899.28 2877.04 -36.57 0.95 -0.31 0.02 1 + -7990.48 2596.34 -36.56 0.95 -0.31 0.02 1 + -8081.78 2315.30 -36.51 0.95 -0.31 0.02 1 + -8172.99 2034.60 -36.51 0.95 -0.31 0.02 1 + -7847.57 3015.52 -292.22 0.95 -0.31 0.02 1 + -7938.86 2734.64 -292.37 0.95 -0.31 0.02 1 + -8030.07 2453.79 -292.17 0.95 -0.31 0.02 1 + -8121.37 2172.90 -292.31 0.95 -0.31 0.02 1 + -7887.15 2873.13 -548.02 0.95 -0.31 0.02 1 + -7978.36 2592.27 -547.82 0.95 -0.31 0.02 1 + -8069.66 2311.39 -547.97 0.95 -0.31 0.02 1 + -7926.88 2730.83 -803.42 0.95 -0.31 0.02 1 + -8018.18 2449.95 -803.57 0.95 -0.31 0.02 1 + -7852.14 3016.98 255.10 0.95 -0.31 -0.06 1 + -8065.33 2310.11 510.40 0.95 -0.31 -0.06 1 + -7974.13 2590.80 510.40 0.95 -0.31 -0.06 1 + -7882.83 2871.69 510.55 0.95 -0.31 -0.06 1 + -8005.05 2445.74 765.71 0.95 -0.31 -0.06 1 + -7913.75 2726.63 765.85 0.95 -0.31 -0.06 1 + -7944.53 2581.30 1020.95 0.95 -0.31 -0.06 1 + -8220.39 1816.31 254.90 0.97 -0.23 -0.10 1 + -8160.74 1954.06 509.26 0.97 -0.23 -0.10 1 + -8101.43 2091.70 763.54 0.97 -0.23 -0.10 1 + -8041.78 2229.29 1018.10 0.97 -0.23 -0.10 1 + -7982.37 2367.11 1272.52 0.97 -0.23 -0.10 1 + -8229.60 1666.99 509.41 0.97 -0.23 -0.10 1 + -8170.05 1804.39 763.83 0.97 -0.23 -0.10 1 + -8110.64 1942.22 1018.25 0.97 -0.23 -0.10 1 + -8051.09 2079.78 1272.46 0.97 -0.23 -0.10 1 + -8238.91 1517.32 763.97 0.97 -0.23 -0.10 1 + -8179.26 1655.07 1018.34 0.97 -0.23 -0.10 1 + -8119.71 1792.63 1272.55 0.97 -0.23 -0.10 1 + -8248.21 1367.81 1018.34 0.97 -0.23 -0.10 1 + -8188.57 1505.56 1272.70 0.97 -0.23 -0.10 1 + -8265.28 1593.44 -290.55 0.98 -0.17 0.10 1 + -8265.29 1438.29 -541.87 0.98 -0.17 0.10 1 + -8265.29 1283.12 -792.93 0.98 -0.17 0.10 1 + -8265.28 1127.72 -1044.27 0.98 -0.17 0.10 1 + -8265.28 972.55 -1295.33 0.98 -0.17 0.10 1 + -8214.19 1729.09 -547.97 0.98 -0.17 0.10 1 + -8214.20 1573.94 -799.29 0.98 -0.17 0.10 1 + -8214.19 1418.52 -1050.37 0.98 -0.17 0.10 1 + -8214.20 1263.37 -1301.69 0.98 -0.17 0.10 1 + -8163.11 1864.74 -805.40 0.98 -0.17 0.10 1 + -8163.10 1709.32 -1056.48 0.98 -0.17 0.10 1 + -8163.11 1554.17 -1307.80 0.98 -0.17 0.10 1 + -8112.26 2000.11 -1062.58 0.98 -0.17 0.10 1 + -8112.27 1844.96 -1313.90 0.98 -0.17 0.10 1 + -6307.00 5304.53 1738.54 0.78 -0.58 -0.25 1 + -6356.27 5135.25 1975.50 0.78 -0.58 -0.25 1 + -6405.78 4966.19 2212.33 0.78 -0.58 -0.25 1 + -6455.19 4796.71 2449.23 0.78 -0.58 -0.25 1 + -6504.65 4627.56 2686.29 0.78 -0.58 -0.25 1 + -6487.51 5071.76 1718.80 0.78 -0.58 -0.25 1 + -6536.97 4902.37 1955.48 0.78 -0.58 -0.25 1 + -6586.43 4733.22 2192.54 0.78 -0.58 -0.25 1 + -6635.74 4564.03 2429.26 0.78 -0.58 -0.25 1 + -6668.21 4838.87 1698.78 0.78 -0.58 -0.25 1 + -6717.47 4669.59 1935.74 0.78 -0.58 -0.25 1 + -6766.79 4500.41 2172.47 0.78 -0.58 -0.25 1 + -6848.77 4606.19 1678.81 0.78 -0.58 -0.25 1 + -6898.03 4436.91 1915.77 0.78 -0.58 -0.25 1 + -7160.19 3546.94 2640.25 0.83 -0.47 -0.29 1 + -6822.16 4234.10 2485.19 0.83 -0.47 -0.29 1 + -6976.81 3985.00 2450.18 0.83 -0.47 -0.29 1 + -7131.46 3735.90 2415.16 0.83 -0.47 -0.29 1 + -6948.22 4173.75 2225.04 0.83 -0.47 -0.29 1 + -7102.87 3924.65 2190.02 0.83 -0.47 -0.29 1 + -7073.94 4113.48 1964.84 0.83 -0.47 -0.29 1 + -7308.66 3872.07 1395.69 0.85 -0.49 -0.17 1 + -7267.41 4030.18 1149.73 0.85 -0.49 -0.17 1 + -7201.22 3969.21 1653.03 0.85 -0.49 -0.17 1 + -7160.31 4127.24 1407.12 0.85 -0.49 -0.17 1 + -7119.05 4285.34 1161.16 0.85 -0.49 -0.17 1 + -7052.97 4224.08 1664.63 0.85 -0.49 -0.17 1 + -7011.71 4382.19 1418.68 0.85 -0.49 -0.17 1 + -6722.66 4107.12 2993.56 0.81 -0.42 -0.40 1 + -6575.03 4154.97 3244.86 0.81 -0.42 -0.40 1 + -6871.60 3854.81 2955.75 0.81 -0.42 -0.40 1 + -6723.88 3902.96 3206.86 0.81 -0.42 -0.40 1 + -6576.25 3950.81 3458.15 0.81 -0.42 -0.40 1 + -7020.44 3602.79 2917.75 0.81 -0.42 -0.40 1 + -6872.82 3650.65 3169.04 0.81 -0.42 -0.40 1 + -6725.10 3698.80 3420.15 0.81 -0.42 -0.40 1 + -6577.48 3746.65 3671.44 0.81 -0.42 -0.40 1 + -7169.38 3350.48 2879.93 0.81 -0.42 -0.40 1 + -7021.66 3398.63 3131.04 0.81 -0.42 -0.40 1 + -6874.04 3446.49 3382.33 0.81 -0.42 -0.40 1 + -6726.47 3494.44 3633.39 0.81 -0.42 -0.40 1 + -6578.70 3542.49 3884.74 0.81 -0.42 -0.40 1 + -7170.60 3146.32 3093.22 0.81 -0.42 -0.40 1 + -7022.88 3194.47 3344.33 0.81 -0.42 -0.40 1 + -6875.26 3242.33 3595.63 0.81 -0.42 -0.40 1 + -6727.69 3290.28 3846.69 0.81 -0.42 -0.40 1 + -7171.82 2942.16 3306.52 0.81 -0.42 -0.40 1 + -7024.10 2990.31 3557.63 0.81 -0.42 -0.40 1 + -6876.48 3038.17 3808.92 0.81 -0.42 -0.40 1 + -7746.88 2848.62 1640.88 0.90 -0.39 -0.22 1 + -7406.41 3357.41 2126.19 0.90 -0.39 -0.22 1 + -7518.92 3238.81 1880.30 0.90 -0.39 -0.22 1 + -7631.43 3120.20 1634.40 0.90 -0.39 -0.22 1 + -7403.70 3510.62 1873.67 0.90 -0.39 -0.22 1 + -7516.21 3392.02 1627.78 0.90 -0.39 -0.22 1 + -7400.76 3663.60 1621.30 0.90 -0.39 -0.22 1 + -7852.84 2396.34 1901.15 0.91 -0.29 -0.30 1 + -7761.54 2677.23 1901.29 0.91 -0.29 -0.30 1 + -7825.03 2232.08 2145.11 0.91 -0.29 -0.30 1 + -7733.83 2512.93 2144.91 0.91 -0.29 -0.30 1 + -7642.53 2793.82 2145.05 0.91 -0.29 -0.30 1 + -7797.32 2067.79 2388.73 0.91 -0.29 -0.30 1 + -7706.02 2348.67 2388.87 0.91 -0.29 -0.30 1 + -7614.81 2629.52 2388.67 0.91 -0.29 -0.30 1 + -7523.51 2910.40 2388.81 0.91 -0.29 -0.30 1 + -7769.51 1903.52 2632.69 0.91 -0.29 -0.30 1 + -7678.30 2184.37 2632.49 0.91 -0.29 -0.30 1 + -7587.00 2465.26 2632.63 0.91 -0.29 -0.30 1 + -7495.80 2745.95 2632.63 0.91 -0.29 -0.30 1 + -7404.50 3026.99 2632.57 0.91 -0.29 -0.30 1 + -7650.49 2020.11 2876.45 0.91 -0.29 -0.30 1 + -7559.29 2300.96 2876.25 0.91 -0.29 -0.30 1 + -7467.99 2581.85 2876.39 0.91 -0.29 -0.30 1 + -7376.78 2862.54 2876.39 0.91 -0.29 -0.30 1 + -7531.48 2136.70 3120.21 0.91 -0.29 -0.30 1 + -7440.27 2417.55 3120.01 0.91 -0.29 -0.30 1 + -7348.97 2698.43 3120.15 0.91 -0.29 -0.30 1 + -7877.55 1762.65 2378.51 0.95 -0.21 -0.22 1 + -8007.98 1961.42 1634.22 0.95 -0.21 -0.22 1 + -7986.67 1799.33 1880.12 0.95 -0.21 -0.22 1 + -7965.37 1637.24 2126.01 0.95 -0.21 -0.22 1 + -8074.49 1673.76 1627.82 0.95 -0.21 -0.22 1 + -8053.19 1511.67 1873.72 0.95 -0.21 -0.22 1 + -8140.77 1386.18 1621.16 0.95 -0.21 -0.22 1 + -7761.61 503.20 3244.69 0.91 -0.14 -0.40 1 + -7852.85 628.95 2993.51 0.91 -0.14 -0.40 1 + -7642.56 669.28 3458.04 0.91 -0.14 -0.40 1 + -7733.85 794.69 3206.77 0.91 -0.14 -0.40 1 + -7825.09 920.45 2955.59 0.91 -0.14 -0.40 1 + -7523.57 835.03 3671.30 0.91 -0.14 -0.40 1 + -7614.81 960.78 3420.12 0.91 -0.14 -0.40 1 + -6058.09 876.26 -5785.33 0.68 -0.07 0.73 1 + -5910.36 673.12 -5940.69 0.68 -0.07 0.73 1 + -5762.79 470.00 -6095.86 0.68 -0.07 0.73 1 + -5615.07 266.60 -6251.17 0.68 -0.07 0.73 1 + -5467.50 63.49 -6406.34 0.68 -0.07 0.73 1 + -5845.41 959.41 -5972.76 0.68 -0.07 0.73 1 + -5697.68 756.26 -6128.12 0.68 -0.07 0.73 1 + -5550.11 552.90 -6283.24 0.68 -0.07 0.73 1 + -5402.38 349.75 -6438.60 0.68 -0.07 0.73 1 + -5632.72 1042.55 -6160.19 0.68 -0.07 0.73 1 + -5485.15 839.19 -6315.31 0.68 -0.07 0.73 1 + -5337.42 636.04 -6470.67 0.68 -0.07 0.73 1 + -5420.39 1125.46 -6347.53 0.68 -0.07 0.73 1 + -5272.66 922.31 -6502.89 0.68 -0.07 0.73 1 + -6504.60 -333.22 -5340.40 0.77 -0.03 0.63 1 + -6455.15 -45.45 -5385.68 0.77 -0.03 0.63 1 + -6405.75 242.01 -5431.26 0.77 -0.03 0.63 1 + -6356.31 529.53 -5476.50 0.77 -0.03 0.63 1 + -6307.07 817.27 -5521.93 0.77 -0.03 0.63 1 + -6635.70 -131.75 -5168.62 0.77 -0.03 0.63 1 + -6586.25 155.77 -5213.86 0.77 -0.03 0.63 1 + -6536.85 443.23 -5259.44 0.77 -0.03 0.63 1 + -6487.61 730.72 -5304.83 0.77 -0.03 0.63 1 + -6766.80 69.47 -4996.80 0.77 -0.03 0.63 1 + -6717.56 356.96 -5042.19 0.77 -0.03 0.63 1 + -6668.16 644.42 -5087.77 0.77 -0.03 0.63 1 + -6898.10 270.66 -4825.13 0.77 -0.03 0.63 1 + -6848.70 558.12 -4870.72 0.77 -0.03 0.63 1 + -6136.44 563.60 -5731.47 0.72 -0.01 0.70 1 + -5890.79 -129.96 -5994.02 0.72 -0.01 0.70 1 + -6038.36 73.16 -5838.86 0.72 -0.01 0.70 1 + -6186.09 276.30 -5683.50 0.72 -0.01 0.70 1 + -6088.21 -213.92 -5791.08 0.72 -0.01 0.70 1 + -6235.94 -10.77 -5635.72 0.72 -0.01 0.70 1 + -6285.43 -297.85 -5587.98 0.72 -0.01 0.70 1 + -6402.26 -1818.47 -5150.16 0.74 0.17 0.65 1 + -6212.98 -1167.75 -5539.02 0.74 0.17 0.65 1 + -6220.05 -1450.95 -5455.73 0.74 0.17 0.65 1 + -6227.12 -1734.16 -5372.44 0.74 0.17 0.65 1 + -6044.90 -1366.89 -5677.97 0.74 0.17 0.65 1 + -6051.97 -1650.10 -5594.68 0.74 0.17 0.65 1 + -5876.63 -1565.75 -5816.81 0.74 0.17 0.65 1 + -6575.04 -1043.94 -5167.47 0.81 0.17 0.55 1 + -6722.77 -840.79 -5012.11 0.81 0.17 0.55 1 + -6576.35 -1326.15 -5080.12 0.81 0.17 0.55 1 + -6723.93 -1122.78 -4925.00 0.81 0.17 0.55 1 + -6871.65 -919.63 -4769.63 0.81 0.17 0.55 1 + -6577.51 -1608.14 -4993.00 0.81 0.17 0.55 1 + -6725.23 -1404.99 -4837.64 0.81 0.17 0.55 1 + -6872.81 -1201.63 -4682.52 0.81 0.17 0.55 1 + -7020.53 -998.48 -4527.16 0.81 0.17 0.55 1 + -6578.82 -1890.35 -4905.65 0.81 0.17 0.55 1 + -6726.39 -1686.98 -4750.53 0.81 0.17 0.55 1 + -6874.12 -1483.83 -4595.16 0.81 0.17 0.55 1 + -7021.69 -1280.72 -4440.00 0.81 0.17 0.55 1 + -7169.42 -1077.32 -4284.68 0.81 0.17 0.55 1 + -6727.70 -1969.19 -4663.17 0.81 0.17 0.55 1 + -6875.27 -1765.83 -4508.05 0.81 0.17 0.55 1 + -7023.00 -1562.68 -4352.69 0.81 0.17 0.55 1 + -7170.57 -1359.56 -4197.52 0.81 0.17 0.55 1 + -6876.58 -2048.04 -4420.69 0.81 0.17 0.55 1 + -7024.15 -1844.67 -4265.57 0.81 0.17 0.55 1 + -7171.88 -1641.52 -4110.21 0.81 0.17 0.55 1 + -4446.50 -1228.38 -7047.02 0.58 0.11 0.80 1 + -4630.20 -1022.07 -6942.14 0.58 0.11 0.80 1 + -4813.71 -815.77 -6837.66 0.58 0.11 0.80 1 + -4997.21 -609.61 -6732.85 0.58 0.11 0.80 1 + -5181.03 -403.35 -6628.19 0.58 0.11 0.80 1 + -4671.97 -1305.92 -6872.54 0.58 0.11 0.80 1 + -4855.47 -1099.76 -6767.74 0.58 0.11 0.80 1 + -5038.98 -893.46 -6663.26 0.58 0.11 0.80 1 + -5222.61 -687.35 -6558.66 0.58 0.11 0.80 1 + -4897.24 -1383.61 -6698.14 0.58 0.11 0.80 1 + -5080.87 -1177.50 -6593.55 0.58 0.11 0.80 1 + -5264.38 -971.20 -6489.07 0.58 0.11 0.80 1 + -5122.64 -1461.35 -6523.95 0.58 0.11 0.80 1 + -5306.15 -1255.05 -6419.47 0.58 0.11 0.80 1 + -5494.17 -301.51 -6376.67 0.70 0.07 0.71 1 + -5692.87 -383.48 -6174.10 0.70 0.07 0.71 1 + -5891.61 -465.51 -5971.89 0.70 0.07 0.71 1 + -6090.31 -547.72 -5769.28 0.70 0.07 0.71 1 + -6289.21 -629.71 -5566.87 0.70 0.07 0.71 1 + -5529.81 -587.34 -6311.96 0.70 0.07 0.71 1 + -5728.35 -669.59 -6109.54 0.70 0.07 0.71 1 + -5927.25 -751.59 -5907.13 0.70 0.07 0.71 1 + -6125.79 -833.59 -5704.77 0.70 0.07 0.71 1 + -5565.30 -873.46 -6247.40 0.70 0.07 0.71 1 + -5764.00 -955.42 -6044.83 0.70 0.07 0.71 1 + -5962.54 -1037.42 -5842.46 0.70 0.07 0.71 1 + -5600.78 -1159.32 -6182.88 0.70 0.07 0.71 1 + -5799.48 -1241.29 -5980.31 0.70 0.07 0.71 1 + -6696.49 -535.00 -5068.73 0.83 0.05 0.55 1 + -7131.54 -489.55 -4421.44 0.83 0.05 0.55 1 + -6976.90 -409.46 -4659.90 0.83 0.05 0.55 1 + -6822.26 -329.37 -4898.35 0.83 0.05 0.55 1 + -7102.87 -203.62 -4489.72 0.83 0.05 0.55 1 + -6948.23 -123.52 -4728.17 0.83 0.05 0.55 1 + -7074.00 82.10 -4557.80 0.83 0.05 0.55 1 + -7718.03 1275.73 -3121.41 0.92 -0.08 0.39 1 + -7750.74 982.70 -3104.13 0.92 -0.08 0.39 1 + -7783.66 689.88 -3087.07 0.92 -0.08 0.39 1 + -7816.28 396.73 -3070.00 0.92 -0.08 0.39 1 + -7849.22 103.69 -3052.82 0.92 -0.08 0.39 1 + -7637.71 1104.53 -3348.13 0.92 -0.08 0.39 1 + -7670.30 811.61 -3331.17 0.92 -0.08 0.39 1 + -7703.25 518.57 -3313.99 0.92 -0.08 0.39 1 + -7735.93 225.76 -3296.83 0.92 -0.08 0.39 1 + -7557.27 933.44 -3575.17 0.92 -0.08 0.39 1 + -7589.98 640.42 -3557.89 0.92 -0.08 0.39 1 + -7622.66 347.61 -3540.73 0.92 -0.08 0.39 1 + -7476.92 762.47 -3802.00 0.92 -0.08 0.39 1 + -7509.63 469.44 -3784.72 0.92 -0.08 0.39 1 + -7852.11 1121.03 -2812.60 0.95 -0.08 0.30 1 + -7943.31 995.50 -2561.54 0.95 -0.08 0.30 1 + -8034.55 869.75 -2310.36 0.95 -0.08 0.30 1 + -7052.81 400.16 -4522.73 0.85 -0.07 0.51 1 + -7011.68 690.90 -4553.93 0.85 -0.07 0.51 1 + -7201.22 296.57 -4289.40 0.85 -0.07 0.51 1 + -7160.24 587.17 -4320.90 0.85 -0.07 0.51 1 + -7119.11 877.91 -4352.10 0.85 -0.07 0.51 1 + -7308.60 483.23 -4087.66 0.85 -0.07 0.51 1 + -7267.47 773.97 -4118.86 0.85 -0.07 0.51 1 + -7982.35 -79.52 -2686.35 0.97 -0.01 0.25 1 + -8041.80 86.43 -2449.21 0.97 -0.01 0.25 1 + -8101.36 252.45 -2212.48 0.97 -0.01 0.25 1 + -8160.72 418.27 -1975.54 0.97 -0.01 0.25 1 + -8220.40 584.20 -1738.49 0.97 -0.01 0.25 1 + -8051.07 -207.99 -2429.33 0.97 -0.01 0.25 1 + -8110.42 -42.16 -2192.39 0.97 -0.01 0.25 1 + -8169.99 123.86 -1955.66 0.97 -0.01 0.25 1 + -8229.58 289.67 -1718.82 0.97 -0.01 0.25 1 + -8119.69 -336.57 -2172.51 0.97 -0.01 0.25 1 + -8179.28 -170.77 -1935.66 0.97 -0.01 0.25 1 + -8238.85 -4.74 -1698.94 0.97 -0.01 0.25 1 + -8188.55 -465.18 -1915.79 0.97 -0.01 0.25 1 + -8248.11 -299.15 -1679.06 0.97 -0.01 0.25 1 + -7409.21 -3204.01 -2378.56 0.90 0.39 0.22 1 + -7521.86 -3085.83 -2132.67 0.90 0.39 0.22 1 + -7634.37 -2967.23 -1886.77 0.90 0.39 0.22 1 + -7746.88 -2848.62 -1640.88 0.90 0.39 0.22 1 + -7406.41 -3357.41 -2126.19 0.90 0.39 0.22 1 + -7518.92 -3238.81 -1880.30 0.90 0.39 0.22 1 + -7631.43 -3120.20 -1634.40 0.90 0.39 0.22 1 + -7403.70 -3510.62 -1873.67 0.90 0.39 0.22 1 + -7516.21 -3392.02 -1627.78 0.90 0.39 0.22 1 + -7400.76 -3663.60 -1621.30 0.90 0.39 0.22 1 + -7039.88 -2597.85 -3749.05 0.85 0.28 0.45 1 + -6976.72 -2422.15 -3977.78 0.85 0.28 0.45 1 + -7194.26 -2492.85 -3520.31 0.85 0.28 0.45 1 + -7131.09 -2317.15 -3749.05 0.85 0.28 0.45 1 + -7067.92 -2141.45 -3977.78 0.85 0.28 0.45 1 + -7285.46 -2212.15 -3520.31 0.85 0.28 0.45 1 + -7222.39 -2036.11 -3749.10 0.85 0.28 0.45 1 + -7852.84 -2396.34 -1901.15 0.91 0.29 0.30 1 + -7761.54 -2677.23 -1901.29 0.91 0.29 0.30 1 + -7825.03 -2232.08 -2145.11 0.91 0.29 0.30 1 + -7733.83 -2512.93 -2144.91 0.91 0.29 0.30 1 + -7642.53 -2793.82 -2145.05 0.91 0.29 0.30 1 + -7797.32 -2067.79 -2388.73 0.91 0.29 0.30 1 + -7706.02 -2348.67 -2388.87 0.91 0.29 0.30 1 + -7614.81 -2629.52 -2388.67 0.91 0.29 0.30 1 + -7523.51 -2910.40 -2388.81 0.91 0.29 0.30 1 + -7769.51 -1903.52 -2632.69 0.91 0.29 0.30 1 + -7678.30 -2184.37 -2632.49 0.91 0.29 0.30 1 + -7587.00 -2465.26 -2632.63 0.91 0.29 0.30 1 + -7495.80 -2745.95 -2632.63 0.91 0.29 0.30 1 + -7404.50 -3026.99 -2632.57 0.91 0.29 0.30 1 + -7650.49 -2020.11 -2876.45 0.91 0.29 0.30 1 + -7559.29 -2300.96 -2876.25 0.91 0.29 0.30 1 + -7467.99 -2581.85 -2876.39 0.91 0.29 0.30 1 + -7376.78 -2862.54 -2876.39 0.91 0.29 0.30 1 + -7531.48 -2136.70 -3120.21 0.91 0.29 0.30 1 + -7440.27 -2417.55 -3120.01 0.91 0.29 0.30 1 + -7348.97 -2698.43 -3120.15 0.91 0.29 0.30 1 + -7941.71 -2249.00 -1640.88 0.95 0.21 0.22 1 + -7920.40 -2086.91 -1886.78 0.95 0.21 0.22 1 + -7899.09 -1924.82 -2132.67 0.95 0.21 0.22 1 + -7877.55 -1762.65 -2378.51 0.95 0.21 0.22 1 + -8007.98 -1961.42 -1634.22 0.95 0.21 0.22 1 + -7986.67 -1799.33 -1880.12 0.95 0.21 0.22 1 + -7965.37 -1637.24 -2126.01 0.95 0.21 0.22 1 + -8074.49 -1673.76 -1627.82 0.95 0.21 0.22 1 + -8053.19 -1511.67 -1873.72 0.95 0.21 0.22 1 + -8140.77 -1386.18 -1621.16 0.95 0.21 0.22 1 + -7761.61 -503.20 -3244.69 0.91 0.14 0.40 1 + -7852.85 -628.95 -2993.51 0.91 0.14 0.40 1 + -7642.56 -669.28 -3458.04 0.91 0.14 0.40 1 + -7733.85 -794.69 -3206.77 0.91 0.14 0.40 1 + -7825.09 -920.45 -2955.59 0.91 0.14 0.40 1 + -7523.57 -835.03 -3671.30 0.91 0.14 0.40 1 + -7614.81 -960.78 -3420.12 0.91 0.14 0.40 1 + -7706.10 -1086.19 -3168.85 0.91 0.14 0.40 1 + -7797.34 -1211.94 -2917.67 0.91 0.14 0.40 1 + -7404.52 -1001.11 -3884.65 0.91 0.14 0.40 1 + -7495.81 -1126.52 -3633.38 0.91 0.14 0.40 1 + -7587.05 -1252.27 -3382.20 0.91 0.14 0.40 1 + -7678.25 -1377.80 -3131.14 0.91 0.14 0.40 1 + -7769.58 -1503.43 -2879.75 0.91 0.14 0.40 1 + -7376.77 -1292.60 -3846.73 0.91 0.14 0.40 1 + -7468.06 -1418.01 -3595.46 0.91 0.14 0.40 1 + -7559.30 -1543.77 -3344.28 0.91 0.14 0.40 1 + -7650.50 -1669.30 -3093.22 0.91 0.14 0.40 1 + -7349.01 -1584.10 -3808.81 0.91 0.14 0.40 1 + -7440.30 -1709.51 -3557.54 0.91 0.14 0.40 1 + -7531.54 -1835.26 -3306.36 0.91 0.14 0.40 1 + -7877.44 -1339.04 -2640.54 0.95 0.10 0.29 1 + -7899.11 -1046.74 -2675.31 0.95 0.10 0.29 1 + -7920.42 -754.32 -2710.32 0.95 0.10 0.29 1 + -7941.73 -461.90 -2745.32 0.95 0.10 0.29 1 + -7965.34 -1169.55 -2415.20 0.95 0.10 0.29 1 + -7986.65 -877.13 -2450.21 0.95 0.10 0.29 1 + -8007.96 -584.71 -2485.21 0.95 0.10 0.29 1 + -8053.20 -999.84 -2189.99 0.95 0.10 0.29 1 + -8074.51 -707.42 -2224.99 0.95 0.10 0.29 1 + -8140.74 -830.23 -1964.88 0.95 0.10 0.29 1 + -7746.90 -193.74 -3281.64 0.90 0.03 0.44 1 + -7634.39 -360.63 -3497.69 0.90 0.03 0.44 1 + -7521.87 -527.52 -3713.75 0.90 0.03 0.44 1 + -7409.12 -694.40 -3929.72 0.90 0.03 0.44 1 + -7631.48 -66.32 -3521.60 0.90 0.03 0.44 1 + -7518.97 -233.21 -3737.65 0.90 0.03 0.44 1 + -7406.46 -400.10 -3953.71 0.90 0.03 0.44 1 + -7516.21 60.97 -3761.85 0.90 0.03 0.44 1 + -7403.70 -105.92 -3977.91 0.90 0.03 0.44 1 + -7400.79 188.39 -4001.81 0.90 0.03 0.44 1 + -6727.70 1969.19 4663.18 0.81 -0.17 -0.55 1 + -6875.27 1765.83 4508.06 0.81 -0.17 -0.55 1 + -7023.00 1562.68 4352.69 0.81 -0.17 -0.55 1 + -7170.57 1359.56 4197.53 0.81 -0.17 -0.55 1 + -6876.58 2048.04 4420.70 0.81 -0.17 -0.55 1 + -7024.15 1844.67 4265.58 0.81 -0.17 -0.55 1 + -7171.88 1641.52 4110.21 0.81 -0.17 -0.55 1 + -6352.70 -1209.45 5396.23 0.79 0.17 -0.59 1 + -6457.76 -1400.71 5197.20 0.79 0.17 -0.59 1 + -6563.02 -1591.82 4998.42 0.79 0.17 -0.59 1 + -6668.22 -1782.98 4799.21 0.79 0.17 -0.59 1 + -6773.49 -1974.31 4600.30 0.79 0.17 -0.59 1 + -6532.33 -1115.50 5181.60 0.79 0.17 -0.59 1 + -6637.52 -1306.43 4982.52 0.79 0.17 -0.59 1 + -8314.83 1271.41 -265.15 0.99 -0.10 0.06 1 + -8344.14 667.19 -759.48 0.99 -0.10 0.06 1 + -8344.14 822.35 -508.41 0.99 -0.10 0.06 1 + -8344.13 977.50 -257.10 0.99 -0.10 0.06 1 + -8373.70 528.69 -500.34 0.99 -0.10 0.06 1 + -8373.69 683.84 -249.02 0.99 -0.10 0.06 1 + -8403.01 390.20 -241.20 0.99 -0.10 0.06 1 + -8417.36 288.27 75.01 0.99 -0.10 -0.03 1 + -8386.48 582.08 69.20 0.99 -0.10 -0.03 1 + -8355.84 875.64 63.12 0.99 -0.10 -0.03 1 + -8324.95 1169.19 57.29 0.99 -0.10 -0.03 1 + -8294.32 1462.98 51.48 0.99 -0.10 -0.03 1 + -8394.28 439.65 327.67 0.99 -0.10 -0.03 1 + -8363.38 733.20 321.84 0.99 -0.10 -0.03 1 + -8332.75 1026.76 315.76 0.99 -0.10 -0.03 1 + -8302.11 1320.30 309.94 0.99 -0.10 -0.03 1 + -8371.18 590.77 580.32 0.99 -0.10 -0.03 1 + -8340.54 884.31 574.50 0.99 -0.10 -0.03 1 + -8309.91 1177.87 568.42 0.99 -0.10 -0.03 1 + -8348.34 741.88 832.97 0.99 -0.10 -0.03 1 + -8317.70 1035.44 826.90 0.99 -0.10 -0.03 1 + -8294.32 608.31 -1331.50 0.99 -0.02 0.11 1 + -8324.96 471.74 -1071.42 0.99 -0.02 0.11 1 + -8355.85 335.17 -811.59 0.99 -0.02 0.11 1 + -8386.47 198.35 -551.53 0.99 -0.02 0.11 1 + -8417.36 61.77 -291.44 0.99 -0.02 0.11 1 + -8302.12 313.43 -1319.55 0.99 -0.02 0.11 1 + -8332.75 176.62 -1059.74 0.99 -0.02 0.11 1 + -8363.64 40.04 -799.66 0.99 -0.02 0.11 1 + -8394.28 -96.51 -539.83 0.99 -0.02 0.11 1 + -8309.91 18.31 -1307.88 0.99 -0.02 0.11 1 + -8340.54 -118.26 -1047.80 0.99 -0.02 0.11 1 + -8371.18 -254.81 -787.97 0.99 -0.02 0.11 1 + -8317.71 -276.55 -1296.18 0.99 -0.02 0.11 1 + -8348.35 -413.12 -1036.10 0.99 -0.02 0.11 1 + -7200.45 -4235.47 1018.60 0.86 0.50 -0.06 1 + -7325.21 -4113.61 257.10 0.86 0.50 -0.06 1 + -7234.01 -4239.14 508.16 0.86 0.50 -0.06 1 + -7142.66 -4364.86 759.32 0.86 0.50 -0.06 1 + -7176.48 -4368.61 249.11 0.86 0.50 -0.06 1 + -7085.14 -4494.33 500.27 0.86 0.50 -0.06 1 + -7027.56 -4623.46 241.13 0.86 0.50 -0.06 1 + -7258.37 -4071.45 1295.27 0.89 0.44 -0.10 1 + -7349.71 -3945.74 1044.10 0.89 0.44 -0.10 1 + -7440.92 -3820.21 793.04 0.89 0.44 -0.10 1 + -7532.20 -3694.57 541.64 0.89 0.44 -0.10 1 + -7623.40 -3569.04 290.58 0.89 0.44 -0.10 1 + -7388.03 -3806.08 1301.47 0.89 0.44 -0.10 1 + -7479.38 -3680.36 1050.31 0.89 0.44 -0.10 1 + -7570.52 -3554.90 799.01 0.89 0.44 -0.10 1 + -7661.86 -3429.19 547.85 0.89 0.44 -0.10 1 + -7517.70 -3540.70 1307.68 0.89 0.44 -0.10 1 + -7608.83 -3415.24 1056.38 0.89 0.44 -0.10 1 + -7700.18 -3289.52 805.22 0.89 0.44 -0.10 1 + -7647.35 -3275.73 1313.74 0.89 0.44 -0.10 1 + -7738.70 -3150.02 1062.58 0.89 0.44 -0.10 1 + -7849.25 -2776.83 -1272.50 0.92 0.38 0.10 1 + -7816.30 -2923.33 -1018.02 0.92 0.38 0.10 1 + -7783.67 -3069.57 -763.65 0.92 0.38 0.10 1 + -7750.72 -3215.91 -509.38 0.92 0.38 0.10 1 + -7717.99 -3362.49 -254.96 0.92 0.38 0.10 1 + -7735.95 -3049.68 -1272.46 0.92 0.38 0.10 1 + -7703.00 -3196.03 -1018.18 0.92 0.38 0.10 1 + -7670.37 -3342.26 -763.81 0.92 0.38 0.10 1 + -7637.65 -3488.68 -509.59 0.92 0.38 0.10 1 + -7622.65 -3322.38 -1272.62 0.92 0.38 0.10 1 + -7589.93 -3468.80 -1018.40 0.92 0.38 0.10 1 + -7557.31 -3615.04 -764.03 0.92 0.38 0.10 1 + -7509.59 -3595.15 -1272.83 0.92 0.38 0.10 1 + -7476.96 -3741.39 -1018.47 0.92 0.38 0.10 1 + -7852.14 -3016.98 -255.10 0.95 0.31 0.06 1 + -8065.33 -2310.11 -510.40 0.95 0.31 0.06 1 + -7974.13 -2590.80 -510.40 0.95 0.31 0.06 1 + -7882.83 -2871.69 -510.55 0.95 0.31 0.06 1 + -8005.05 -2445.74 -765.71 0.95 0.31 0.06 1 + -7913.75 -2726.63 -765.85 0.95 0.31 0.06 1 + -7944.53 -2581.30 -1020.95 0.95 0.31 0.06 1 + -7807.98 -3157.92 36.42 0.95 0.31 -0.02 1 + -7899.28 -2877.04 36.57 0.95 0.31 -0.02 1 + -7990.48 -2596.34 36.56 0.95 0.31 -0.02 1 + -8081.78 -2315.30 36.51 0.95 0.31 -0.02 1 + -8172.99 -2034.60 36.51 0.95 0.31 -0.02 1 + -7847.57 -3015.52 292.22 0.95 0.31 -0.02 1 + -7938.86 -2734.64 292.37 0.95 0.31 -0.02 1 + -8030.07 -2453.79 292.17 0.95 0.31 -0.02 1 + -8121.37 -2172.90 292.31 0.95 0.31 -0.02 1 + -7887.15 -2873.13 548.02 0.95 0.31 -0.02 1 + -7978.36 -2592.27 547.82 0.95 0.31 -0.02 1 + -8069.66 -2311.39 547.97 0.95 0.31 -0.02 1 + -7926.88 -2730.83 803.42 0.95 0.31 -0.02 1 + -8018.18 -2449.95 803.57 0.95 0.31 -0.02 1 + -8220.39 -1816.31 -254.90 0.97 0.23 0.10 1 + -8160.74 -1954.06 -509.26 0.97 0.23 0.10 1 + -8101.43 -2091.70 -763.54 0.97 0.23 0.10 1 + -8041.78 -2229.29 -1018.10 0.97 0.23 0.10 1 + -7982.37 -2367.11 -1272.52 0.97 0.23 0.10 1 + -8229.60 -1666.99 -509.41 0.97 0.23 0.10 1 + -8170.05 -1804.39 -763.83 0.97 0.23 0.10 1 + -8110.64 -1942.22 -1018.25 0.97 0.23 0.10 1 + -8051.09 -2079.78 -1272.46 0.97 0.23 0.10 1 + -8238.91 -1517.32 -763.97 0.97 0.23 0.10 1 + -8179.26 -1655.07 -1018.34 0.97 0.23 0.10 1 + -8119.71 -1792.63 -1272.55 0.97 0.23 0.10 1 + -8248.21 -1367.81 -1018.34 0.97 0.23 0.10 1 + -8188.57 -1505.56 -1272.70 0.97 0.23 0.10 1 + -8265.28 -1593.44 290.55 0.98 0.17 -0.10 1 + -8265.29 -1438.29 541.87 0.98 0.17 -0.10 1 + -8265.29 -1283.12 792.93 0.98 0.17 -0.10 1 + -8265.28 -1127.72 1044.27 0.98 0.17 -0.10 1 + -8265.28 -972.55 1295.33 0.98 0.17 -0.10 1 + -8214.19 -1729.09 547.97 0.98 0.17 -0.10 1 + -8214.20 -1573.94 799.29 0.98 0.17 -0.10 1 + -8214.19 -1418.52 1050.37 0.98 0.17 -0.10 1 + -8214.20 -1263.37 1301.69 0.98 0.17 -0.10 1 + -8163.11 -1864.74 805.40 0.98 0.17 -0.10 1 + -8163.10 -1709.32 1056.48 0.98 0.17 -0.10 1 + -8163.11 -1554.17 1307.80 0.98 0.17 -0.10 1 + -8112.26 -2000.11 1062.58 0.98 0.17 -0.10 1 + -8112.27 -1844.96 1313.90 0.98 0.17 -0.10 1 + -8417.36 -288.27 -75.01 0.99 0.10 0.03 1 + -8386.48 -582.08 -69.20 0.99 0.10 0.03 1 + -8355.84 -875.64 -63.12 0.99 0.10 0.03 1 + -8324.95 -1169.19 -57.29 0.99 0.10 0.03 1 + -8294.32 -1462.98 -51.48 0.99 0.10 0.03 1 + -8394.28 -439.65 -327.67 0.99 0.10 0.03 1 + -8363.38 -733.20 -321.84 0.99 0.10 0.03 1 + -8332.75 -1026.76 -315.76 0.99 0.10 0.03 1 + -8302.11 -1320.30 -309.94 0.99 0.10 0.03 1 + -8371.18 -590.77 -580.32 0.99 0.10 0.03 1 + -8340.54 -884.31 -574.50 0.99 0.10 0.03 1 + -8309.91 -1177.87 -568.42 0.99 0.10 0.03 1 + -8348.34 -741.88 -832.97 0.99 0.10 0.03 1 + -8317.70 -1035.44 -826.90 0.99 0.10 0.03 1 + -8314.83 -1271.41 265.15 0.99 0.10 -0.06 1 + -8344.14 -667.19 759.48 0.99 0.10 -0.06 1 + -8344.14 -822.35 508.41 0.99 0.10 -0.06 1 + -8344.13 -977.50 257.10 0.99 0.10 -0.06 1 + -8373.70 -528.69 500.34 0.99 0.10 -0.06 1 + -8373.69 -683.84 249.02 0.99 0.10 -0.06 1 + -8403.01 -390.20 241.20 0.99 0.10 -0.06 1 + -8294.32 -608.31 1331.50 0.99 0.02 -0.11 1 + -8324.96 -471.74 1071.42 0.99 0.02 -0.11 1 + -8355.85 -335.17 811.59 0.99 0.02 -0.11 1 + -8386.47 -198.35 551.53 0.99 0.02 -0.11 1 + -8417.36 -61.77 291.44 0.99 0.02 -0.11 1 + -8302.12 -313.43 1319.55 0.99 0.02 -0.11 1 + -8332.75 -176.62 1059.74 0.99 0.02 -0.11 1 + -8363.64 -40.04 799.66 0.99 0.02 -0.11 1 + -8394.28 96.51 539.83 0.99 0.02 -0.11 1 + -8309.91 -18.31 1307.88 0.99 0.02 -0.11 1 + -8340.54 118.26 1047.80 0.99 0.02 -0.11 1 + -8371.18 254.81 787.97 0.99 0.02 -0.11 1 + -8317.71 276.55 1296.18 0.99 0.02 -0.11 1 + -8348.35 413.12 1036.10 0.99 0.02 -0.11 1 + -7941.73 461.90 2745.32 0.95 -0.10 -0.29 1 + -7965.34 1169.55 2415.20 0.95 -0.10 -0.29 1 + -7986.65 877.13 2450.21 0.95 -0.10 -0.29 1 + -8007.96 584.71 2485.21 0.95 -0.10 -0.29 1 + -8053.20 999.84 2189.99 0.95 -0.10 -0.29 1 + -8074.51 707.42 2224.99 0.95 -0.10 -0.29 1 + -8140.74 830.23 1964.88 0.95 -0.10 -0.29 1 + -8188.77 728.08 1664.71 0.98 -0.11 -0.17 1 + -8248.33 576.14 1418.62 0.98 -0.11 -0.17 1 + -8158.94 1021.64 1653.03 0.98 -0.11 -0.17 1 + -8218.73 869.61 1407.19 0.98 -0.11 -0.17 1 + -8278.29 717.67 1161.10 0.98 -0.11 -0.17 1 + -8188.81 1163.20 1395.85 0.98 -0.11 -0.17 1 + -8248.37 1011.26 1149.76 0.98 -0.11 -0.17 1 + -7409.12 694.40 3929.72 0.90 -0.03 -0.44 1 + -7631.48 66.32 3521.60 0.90 -0.03 -0.44 1 + -7518.97 233.21 3737.65 0.90 -0.03 -0.44 1 + -7406.46 400.10 3953.71 0.90 -0.03 -0.44 1 + -7516.21 -60.97 3761.85 0.90 -0.03 -0.44 1 + -7403.70 105.92 3977.91 0.90 -0.03 -0.44 1 + -7400.79 -188.39 4001.81 0.90 -0.03 -0.44 1 + -7474.16 -1962.84 3332.78 0.86 0.28 -0.42 1 + -7142.71 -2631.29 3564.34 0.86 0.28 -0.42 1 + -7233.92 -2350.60 3564.34 0.86 0.28 -0.42 1 + -7325.11 -2069.68 3564.46 0.86 0.28 -0.42 1 + -7085.22 -2457.39 3795.99 0.86 0.28 -0.42 1 + -7176.41 -2176.47 3796.11 0.86 0.28 -0.42 1 + -7027.53 -2283.42 4027.50 0.86 0.28 -0.42 1 + -7623.35 -1856.03 3062.35 0.89 0.29 -0.35 1 + -7532.16 -2136.95 3062.23 0.89 0.29 -0.35 1 + -7440.96 -2417.65 3062.23 0.89 0.29 -0.35 1 + -7349.61 -2698.67 3062.28 0.89 0.29 -0.35 1 + -7258.41 -2979.37 3062.28 0.89 0.29 -0.35 1 + -7661.75 -2023.77 2822.21 0.89 0.29 -0.35 1 + -7570.57 -2304.69 2822.09 0.89 0.29 -0.35 1 + -7479.20 -2585.49 2822.26 0.89 0.29 -0.35 1 + -7388.02 -2866.41 2822.14 0.89 0.29 -0.35 1 + -7700.16 -2191.51 2582.07 0.89 0.29 -0.35 1 + -7608.80 -2472.31 2582.24 0.89 0.29 -0.35 1 + -7517.61 -2753.23 2582.12 0.89 0.29 -0.35 1 + -7738.59 -2359.20 2342.37 0.89 0.29 -0.35 1 + -7647.40 -2640.12 2342.25 0.89 0.29 -0.35 1 + -7775.79 -2681.92 1310.22 0.93 0.30 -0.19 1 + -7867.04 -2556.12 1058.97 0.93 0.30 -0.19 1 + -7593.31 -2777.91 2063.74 0.93 0.30 -0.19 1 + -7684.56 -2652.10 1812.49 0.93 0.30 -0.19 1 + -7775.88 -2526.70 1561.43 0.93 0.30 -0.19 1 + -7866.97 -2401.00 1310.34 0.93 0.30 -0.19 1 + -7958.25 -2275.42 1058.97 0.93 0.30 -0.19 1 + -7684.50 -2496.99 2063.86 0.93 0.30 -0.19 1 + -7775.77 -2371.41 1812.49 0.93 0.30 -0.19 1 + -7867.07 -2245.78 1561.55 0.93 0.30 -0.19 1 + -7958.34 -2120.20 1310.17 0.93 0.30 -0.19 1 + -7775.86 -2216.18 2063.69 0.93 0.30 -0.19 1 + -7866.96 -2090.49 1812.61 0.93 0.30 -0.19 1 + -7958.43 -1964.97 1561.38 0.93 0.30 -0.19 1 + -6979.24 -2041.25 4250.21 0.87 0.20 -0.46 1 + -7126.94 -1932.03 4018.78 0.87 0.20 -0.46 1 + -7274.71 -1823.21 3787.53 0.87 0.20 -0.46 1 + -7422.26 -1714.09 3556.27 0.87 0.20 -0.46 1 + -7570.16 -1604.94 3324.98 0.87 0.20 -0.46 1 + -7049.53 -1754.42 4241.54 0.87 0.20 -0.46 1 + -7197.08 -1645.31 4010.27 0.87 0.20 -0.46 1 + -7344.85 -1536.49 3779.03 0.87 0.20 -0.46 1 + -7492.59 -1427.44 3547.91 0.87 0.20 -0.46 1 + -7119.67 -1467.70 4233.03 0.87 0.20 -0.46 1 + -7267.42 -1358.66 4001.91 0.87 0.20 -0.46 1 + -7415.19 -1249.83 3770.67 0.87 0.20 -0.46 1 + -7190.01 -1181.05 4224.67 0.87 0.20 -0.46 1 + -7337.78 -1072.22 3993.42 0.87 0.20 -0.46 1 + -8172.96 -942.49 1803.52 0.95 0.16 -0.27 1 + -8081.73 -1068.24 2054.70 0.95 0.16 -0.27 1 + -7990.52 -1193.77 2305.76 0.95 0.16 -0.27 1 + -7899.20 -1319.40 2557.15 0.95 0.16 -0.27 1 + -7807.99 -1444.93 2808.21 0.95 0.16 -0.27 1 + -8121.29 -1233.21 1812.97 0.95 0.16 -0.27 1 + -8030.05 -1358.96 2064.15 0.95 0.16 -0.27 1 + -7938.76 -1484.37 2315.42 0.95 0.16 -0.27 1 + -7847.52 -1610.13 2566.60 0.95 0.16 -0.27 1 + -8069.61 -1523.93 1822.42 0.95 0.16 -0.27 1 + -7978.32 -1649.34 2073.69 0.95 0.16 -0.27 1 + -7887.08 -1775.09 2324.87 0.95 0.16 -0.27 1 + -8018.12 -1814.29 1832.05 0.95 0.16 -0.27 1 + -7926.88 -1940.05 2083.23 0.95 0.16 -0.27 1 + -7718.03 -1275.73 3121.41 0.92 0.08 -0.39 1 + -7750.74 -982.70 3104.13 0.92 0.08 -0.39 1 + -7783.66 -689.88 3087.07 0.92 0.08 -0.39 1 + -7816.28 -396.73 3070.00 0.92 0.08 -0.39 1 + -7849.22 -103.69 3052.82 0.92 0.08 -0.39 1 + -7637.71 -1104.53 3348.13 0.92 0.08 -0.39 1 + -7670.30 -811.61 3331.17 0.92 0.08 -0.39 1 + -7703.25 -518.57 3313.99 0.92 0.08 -0.39 1 + -7735.93 -225.76 3296.83 0.92 0.08 -0.39 1 + -7557.27 -933.44 3575.17 0.92 0.08 -0.39 1 + -7589.98 -640.42 3557.89 0.92 0.08 -0.39 1 + -7622.66 -347.61 3540.73 0.92 0.08 -0.39 1 + -7476.92 -762.47 3802.00 0.92 0.08 -0.39 1 + -7509.63 -469.44 3784.72 0.92 0.08 -0.39 1 + -8125.84 -744.34 2059.09 0.95 0.08 -0.30 1 + -7882.83 -827.78 2796.85 0.95 0.08 -0.30 1 + -7974.04 -702.25 2545.78 0.95 0.08 -0.30 1 + -8065.27 -576.50 2294.60 0.95 0.08 -0.30 1 + -7913.79 -534.51 2781.18 0.95 0.08 -0.30 1 + -8005.02 -408.76 2530.00 0.95 0.08 -0.30 1 + -7944.51 -241.26 2765.43 0.95 0.08 -0.30 1 + -7982.35 79.52 2686.35 0.97 0.01 -0.25 1 + -8041.80 -86.43 2449.21 0.97 0.01 -0.25 1 + -8101.36 -252.45 2212.48 0.97 0.01 -0.25 1 + -8160.72 -418.27 1975.54 0.97 0.01 -0.25 1 + -8220.40 -584.20 1738.49 0.97 0.01 -0.25 1 + -8051.07 207.99 2429.33 0.97 0.01 -0.25 1 + -8110.42 42.16 2192.39 0.97 0.01 -0.25 1 + -8169.99 -123.86 1955.66 0.97 0.01 -0.25 1 + -8229.58 -289.67 1718.82 0.97 0.01 -0.25 1 + -8119.69 336.57 2172.51 0.97 0.01 -0.25 1 + -8179.28 170.77 1935.66 0.97 0.01 -0.25 1 + -8238.85 4.74 1698.94 0.97 0.01 -0.25 1 + -8188.55 465.18 1915.79 0.97 0.01 -0.25 1 + -8248.11 299.15 1679.06 0.97 0.01 -0.25 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -2524.16 593.70 -8013.55 0.36 -0.03 0.93 1 + -2792.76 523.76 -7912.20 0.36 -0.03 0.93 1 + -3061.25 454.16 -7811.11 0.36 -0.03 0.93 1 + -3329.62 384.31 -7709.81 0.36 -0.03 0.93 1 + -3598.27 314.39 -7608.71 0.36 -0.03 0.93 1 + -2605.23 310.38 -7992.57 0.36 -0.03 0.93 1 + -2873.60 240.52 -7891.27 0.36 -0.03 0.93 1 + -3142.09 170.92 -7790.18 0.36 -0.03 0.93 1 + -3410.51 101.08 -7689.12 0.36 -0.03 0.93 1 + -2686.07 27.13 -7971.63 0.36 -0.03 0.93 1 + -2954.49 -42.71 -7870.58 0.36 -0.03 0.93 1 + -3222.98 -112.31 -7769.49 0.36 -0.03 0.93 1 + -2766.96 -256.10 -7950.94 0.36 -0.03 0.93 1 + -3035.46 -325.69 -7849.85 0.36 -0.03 0.93 1 + -4622.10 -4368.34 -5522.01 0.61 0.48 0.63 1 + -4831.03 -4164.58 -5476.57 0.61 0.48 0.63 1 + -5040.03 -3961.15 -5431.27 0.61 0.48 0.63 1 + -5249.10 -3757.45 -5385.63 0.61 0.48 0.63 1 + -5458.21 -3553.79 -5340.34 0.61 0.48 0.63 1 + -4818.94 -4404.50 -5304.98 0.61 0.48 0.63 1 + -5027.91 -4201.03 -5259.32 0.61 0.48 0.63 1 + -5237.02 -3997.37 -5214.04 0.61 0.48 0.63 1 + -5445.84 -3793.84 -5168.58 0.61 0.48 0.63 1 + -5015.83 -4440.95 -5087.73 0.61 0.48 0.63 1 + -5224.75 -4237.19 -5042.29 0.61 0.48 0.63 1 + -5433.58 -4033.67 -4996.83 0.61 0.48 0.63 1 + -5212.56 -4477.34 -4870.68 0.61 0.48 0.63 1 + -5421.49 -4273.59 -4825.24 0.61 0.48 0.63 1 + -4633.20 -3309.42 -6197.13 0.58 0.43 0.70 1 + -4842.14 -3859.76 -5683.54 0.58 0.43 0.70 1 + -4842.13 -3608.69 -5838.70 0.58 0.43 0.70 1 + -4842.24 -3357.40 -5993.89 0.58 0.43 0.70 1 + -5051.20 -3656.72 -5635.82 0.58 0.43 0.70 1 + -5051.31 -3405.43 -5791.00 0.58 0.43 0.70 1 + -5260.09 -3453.59 -5587.94 0.58 0.43 0.70 1 + -5732.04 -3503.22 -5068.76 0.70 0.45 0.55 1 + -5904.22 -3529.33 -4830.30 0.70 0.45 0.55 1 + -6076.40 -3555.44 -4591.84 0.70 0.45 0.55 1 + -6248.41 -3581.45 -4353.23 0.70 0.45 0.55 1 + -5712.79 -3743.58 -4898.49 0.70 0.45 0.55 1 + -5884.97 -3769.69 -4660.03 0.70 0.45 0.55 1 + -6057.16 -3795.80 -4421.57 0.70 0.45 0.55 1 + -5693.87 -3984.09 -4728.17 0.70 0.45 0.55 1 + -5866.05 -4010.20 -4489.71 0.70 0.45 0.55 1 + -5674.62 -4224.46 -4557.89 0.70 0.45 0.55 1 + -3421.85 -2395.58 -7305.85 0.46 0.27 0.84 1 + -4112.20 -2352.71 -6942.71 0.46 0.27 0.84 1 + -3873.43 -2275.13 -7097.87 0.46 0.27 0.84 1 + -3634.53 -2197.35 -7253.14 0.46 0.27 0.84 1 + -4086.06 -2077.09 -7045.46 0.46 0.27 0.84 1 + -3847.16 -1999.31 -7200.73 0.46 0.27 0.84 1 + -4059.78 -1801.44 -7148.00 0.46 0.27 0.84 1 + -5458.19 -3187.33 -5566.84 0.61 0.35 0.71 1 + -5249.04 -3136.71 -5769.33 0.61 0.35 0.71 1 + -5040.11 -3086.46 -5971.75 0.61 0.35 0.71 1 + -4831.11 -3035.89 -6174.04 0.61 0.35 0.71 1 + -4622.14 -2985.36 -6376.68 0.61 0.35 0.71 1 + -5445.83 -2926.33 -5704.73 0.61 0.35 0.71 1 + -5236.83 -2875.76 -5907.02 0.61 0.35 0.71 1 + -5027.90 -2825.51 -6109.44 0.61 0.35 0.71 1 + -4819.08 -2775.04 -6311.88 0.61 0.35 0.71 1 + -5433.62 -2665.39 -5842.42 0.61 0.35 0.71 1 + -5224.80 -2614.91 -6044.86 0.61 0.35 0.71 1 + -5015.87 -2564.66 -6247.28 0.61 0.35 0.71 1 + -5421.59 -2404.53 -5980.26 0.61 0.35 0.71 1 + -5212.66 -2354.29 -6182.68 0.61 0.35 0.71 1 + -3970.86 -1506.59 -7273.46 0.41 0.21 0.89 1 + -3756.29 -1702.87 -7325.79 0.41 0.21 0.89 1 + -3542.14 -1899.22 -7378.15 0.41 0.21 0.89 1 + -3327.74 -2095.34 -7430.40 0.41 0.21 0.89 1 + -3113.30 -2291.64 -7482.95 0.41 0.21 0.89 1 + -3722.31 -1421.56 -7408.66 0.41 0.21 0.89 1 + -3507.91 -1617.68 -7460.90 0.41 0.21 0.89 1 + -4428.54 -2719.04 -6628.24 0.54 0.25 0.80 1 + -4401.11 -2444.21 -6732.86 0.54 0.25 0.80 1 + -4373.94 -2169.60 -6837.60 0.54 0.25 0.80 1 + -4346.69 -1894.61 -6942.13 0.54 0.25 0.80 1 + -4319.39 -1619.81 -7046.97 0.54 0.25 0.80 1 + -4629.09 -2513.85 -6558.71 0.54 0.25 0.80 1 + -4601.96 -2239.06 -6663.14 0.54 0.25 0.80 1 + -4574.67 -1964.25 -6767.98 0.54 0.25 0.80 1 + -4547.36 -1689.62 -6872.50 0.54 0.25 0.80 1 + -4829.94 -2308.70 -6488.99 0.54 0.25 0.80 1 + -4802.51 -2033.87 -6593.61 0.54 0.25 0.80 1 + -4775.21 -1759.23 -6698.13 0.54 0.25 0.80 1 + -5030.61 -2103.70 -6419.36 0.54 0.25 0.80 1 + -5003.18 -1828.87 -6523.98 0.54 0.25 0.80 1 + -5932.93 -3271.28 -5012.26 0.76 0.34 0.55 1 + -5933.04 -3019.99 -5167.45 0.76 0.34 0.55 1 + -6099.87 -3294.91 -4769.68 0.76 0.34 0.55 1 + -6099.72 -3043.80 -4925.05 0.76 0.34 0.55 1 + -6099.83 -2792.50 -5080.23 0.76 0.34 0.55 1 + -6266.55 -3318.72 -4527.28 0.76 0.34 0.55 1 + -6266.66 -3067.42 -4682.46 0.76 0.34 0.55 1 + -6266.51 -2816.31 -4837.83 0.76 0.34 0.55 1 + -6266.62 -2565.01 -4993.01 0.76 0.34 0.55 1 + -6433.49 -3342.34 -4284.69 0.76 0.34 0.55 1 + -6433.34 -3091.23 -4440.06 0.76 0.34 0.55 1 + -6433.45 -2839.93 -4595.24 0.76 0.34 0.55 1 + -6433.45 -2588.87 -4750.41 0.76 0.34 0.55 1 + -6433.41 -2337.52 -4905.80 0.76 0.34 0.55 1 + -6600.28 -3114.85 -4197.47 0.76 0.34 0.55 1 + -6600.13 -2863.74 -4352.84 0.76 0.34 0.55 1 + -6600.24 -2612.44 -4508.03 0.76 0.34 0.55 1 + -6600.24 -2361.38 -4663.19 0.76 0.34 0.55 1 + -6767.07 -2887.36 -4110.26 0.76 0.34 0.55 1 + -6766.92 -2636.25 -4265.63 0.76 0.34 0.55 1 + -6767.03 -2384.96 -4420.81 0.76 0.34 0.55 1 + -6248.44 -2292.22 -5149.97 0.70 0.30 0.65 1 + -6076.40 -2516.99 -5233.63 0.70 0.30 0.65 1 + -5904.22 -2741.95 -5316.93 0.70 0.30 0.65 1 + -5732.03 -2966.90 -5400.22 0.70 0.30 0.65 1 + -6057.28 -2257.15 -5372.35 0.70 0.30 0.65 1 + -5885.10 -2482.10 -5455.65 0.70 0.30 0.65 1 + -5712.92 -2707.06 -5538.94 0.70 0.30 0.65 1 + -5866.02 -2222.30 -5594.72 0.70 0.30 0.65 1 + -5693.84 -2447.25 -5678.01 0.70 0.30 0.65 1 + -5674.72 -2187.41 -5816.73 0.70 0.30 0.65 1 + -5470.63 -2046.53 -6020.06 0.65 0.21 0.73 1 + -5266.46 -1980.06 -6222.77 0.65 0.21 0.73 1 + -5651.59 -1836.30 -5918.78 0.65 0.21 0.73 1 + -5447.62 -1770.11 -6121.60 0.65 0.21 0.73 1 + -5243.45 -1703.64 -6324.31 0.65 0.21 0.73 1 + -5628.74 -1560.10 -6020.08 0.65 0.21 0.73 1 + -5424.57 -1493.63 -6222.79 0.65 0.21 0.73 1 + -6381.25 -968.88 -5400.18 0.74 0.17 0.65 1 + -6388.32 -1252.09 -5316.89 0.74 0.17 0.65 1 + -6395.39 -1535.30 -5233.60 0.74 0.17 0.65 1 + -3865.79 24.05 -7482.91 0.46 0.07 0.89 1 + -3923.85 -260.74 -7430.40 0.46 0.07 0.89 1 + -3981.92 -545.38 -7378.23 0.46 0.07 0.89 1 + -4039.79 -830.32 -7325.79 0.46 0.07 0.89 1 + -4097.97 -1115.16 -7273.50 0.46 0.07 0.89 1 + -3673.04 -183.68 -7565.70 0.46 0.07 0.89 1 + -3730.79 -468.42 -7513.38 0.46 0.07 0.89 1 + -3788.97 -753.26 -7461.09 0.46 0.07 0.89 1 + -3846.92 -1037.85 -7408.70 0.46 0.07 0.89 1 + -3479.97 -391.36 -7648.68 0.46 0.07 0.89 1 + -3538.03 -676.15 -7596.17 0.46 0.07 0.89 1 + -3595.98 -960.74 -7543.78 0.46 0.07 0.89 1 + -3287.10 -598.89 -7731.58 0.46 0.07 0.89 1 + -3345.16 -883.68 -7679.07 0.46 0.07 0.89 1 + -4893.00 -306.08 -6840.19 0.53 0.05 0.85 1 + -4231.94 -358.47 -7253.20 0.53 0.05 0.85 1 + -4470.72 -436.05 -7098.03 0.53 0.05 0.85 1 + -4709.61 -513.82 -6942.75 0.53 0.05 0.85 1 + -4287.65 -643.69 -7200.73 0.53 0.05 0.85 1 + -4526.54 -721.47 -7045.45 0.53 0.05 0.85 1 + -4343.23 -928.87 -7148.05 0.53 0.05 0.85 1 + -7160.05 -775.53 -4353.36 0.83 0.05 0.55 1 + -7005.77 -695.18 -4591.82 0.83 0.05 0.55 1 + -6851.13 -615.09 -4830.27 0.83 0.05 0.55 1 + -5467.54 -5758.33 -2808.23 0.68 0.69 0.27 1 + -5615.16 -5710.47 -2556.93 0.68 0.69 0.27 1 + -5762.73 -5662.52 -2305.87 0.68 0.69 0.27 1 + -5910.50 -5614.47 -2054.53 0.68 0.69 0.27 1 + -6058.07 -5566.52 -1803.47 0.68 0.69 0.27 1 + -5402.51 -5915.17 -2566.46 0.68 0.69 0.27 1 + -5550.13 -5867.32 -2315.17 0.68 0.69 0.27 1 + -5697.85 -5819.17 -2064.06 0.68 0.69 0.27 1 + -5845.48 -5771.31 -1812.77 0.68 0.69 0.27 1 + -5337.49 -6072.02 -2324.70 0.68 0.69 0.27 1 + -5485.21 -6023.87 -2073.59 0.68 0.69 0.27 1 + -5632.83 -5976.02 -1822.30 0.68 0.69 0.27 1 + -5272.76 -6228.70 -2083.21 0.68 0.69 0.27 1 + -5420.38 -6180.84 -1831.92 0.68 0.69 0.27 1 + -6289.24 -4697.57 -3052.74 0.70 0.61 0.39 1 + -6090.28 -4915.34 -3069.96 0.70 0.61 0.39 1 + -5891.72 -5133.13 -3087.01 0.70 0.61 0.39 1 + -5692.91 -5350.70 -3104.18 0.70 0.61 0.39 1 + -5494.15 -5568.60 -3121.51 0.70 0.61 0.39 1 + -6125.83 -4729.72 -3296.76 0.70 0.61 0.39 1 + -5927.02 -4947.29 -3313.94 0.70 0.61 0.39 1 + -5728.46 -5165.08 -3330.98 0.70 0.61 0.39 1 + -5529.85 -5382.78 -3348.26 0.70 0.61 0.39 1 + -5962.57 -4761.66 -3540.74 0.70 0.61 0.39 1 + -5763.96 -4979.36 -3558.01 0.70 0.61 0.39 1 + -5565.40 -5197.16 -3575.05 0.70 0.61 0.39 1 + -5799.51 -4793.74 -3784.81 0.70 0.61 0.39 1 + -5600.95 -5011.53 -3801.85 0.70 0.61 0.39 1 + -6875.26 -3242.33 -3595.63 0.81 0.42 0.40 1 + -5988.91 -5426.34 -2310.13 0.72 0.63 0.30 1 + -5841.29 -5474.19 -2561.43 0.72 0.63 0.30 1 + -5693.57 -5522.34 -2812.54 0.72 0.63 0.30 1 + -6186.08 -5207.16 -2294.47 0.72 0.63 0.30 1 + -6038.51 -5255.11 -2545.53 0.72 0.63 0.30 1 + -5890.89 -5302.97 -2796.82 0.72 0.63 0.30 1 + -6235.88 -5036.07 -2529.96 0.72 0.63 0.30 1 + -6088.26 -5083.92 -2781.25 0.72 0.63 0.30 1 + -6285.47 -4864.85 -2765.36 0.72 0.63 0.30 1 + -5628.75 -4686.93 -4087.45 0.65 0.56 0.51 1 + -5424.51 -4897.86 -4118.86 0.65 0.56 0.51 1 + -5651.59 -4472.71 -4289.41 0.65 0.56 0.51 1 + -5447.67 -4683.78 -4320.78 0.65 0.56 0.51 1 + -5243.42 -4894.71 -4352.20 0.65 0.56 0.51 1 + -5470.75 -4469.38 -4522.56 0.65 0.56 0.51 1 + -5266.51 -4680.31 -4553.98 0.65 0.56 0.51 1 + -6307.00 -5304.53 -1738.54 0.78 0.58 0.25 1 + -6356.27 -5135.25 -1975.50 0.78 0.58 0.25 1 + -6405.78 -4966.19 -2212.33 0.78 0.58 0.25 1 + -6455.19 -4796.71 -2449.23 0.78 0.58 0.25 1 + -6504.65 -4627.56 -2686.29 0.78 0.58 0.25 1 + -6487.51 -5071.76 -1718.80 0.78 0.58 0.25 1 + -6536.97 -4902.37 -1955.48 0.78 0.58 0.25 1 + -6586.43 -4733.22 -2192.54 0.78 0.58 0.25 1 + -6635.74 -4564.03 -2429.26 0.78 0.58 0.25 1 + -6668.21 -4838.87 -1698.78 0.78 0.58 0.25 1 + -6717.47 -4669.59 -1935.74 0.78 0.58 0.25 1 + -6766.79 -4500.41 -2172.47 0.78 0.58 0.25 1 + -6848.77 -4606.19 -1678.81 0.78 0.58 0.25 1 + -6898.03 -4436.91 -1915.77 0.78 0.58 0.25 1 + -6402.43 -3793.12 -3929.47 0.74 0.50 0.45 1 + -6395.36 -3994.50 -3713.79 0.74 0.50 0.45 1 + -6388.29 -4195.65 -3497.75 0.74 0.50 0.45 1 + -6381.21 -4396.80 -3281.70 0.74 0.50 0.45 1 + -6227.16 -4029.58 -3953.81 0.74 0.50 0.45 1 + -6220.09 -4230.74 -3737.76 0.74 0.50 0.45 1 + -6213.02 -4431.89 -3521.71 0.74 0.50 0.45 1 + -6051.94 -4266.15 -3977.91 0.74 0.50 0.45 1 + -6044.87 -4467.30 -3761.86 0.74 0.50 0.45 1 + -5876.67 -4502.38 -4001.88 0.74 0.50 0.45 1 + -6696.45 -4294.37 -2745.39 0.83 0.47 0.29 1 + -6851.10 -4045.27 -2710.37 0.83 0.47 0.29 1 + -7005.74 -3796.17 -2675.36 0.83 0.47 0.29 1 + -7160.19 -3546.94 -2640.25 0.83 0.47 0.29 1 + -6822.16 -4234.10 -2485.19 0.83 0.47 0.29 1 + -6976.81 -3985.00 -2450.18 0.83 0.47 0.29 1 + -7131.46 -3735.90 -2415.16 0.83 0.47 0.29 1 + -6948.22 -4173.75 -2225.04 0.83 0.47 0.29 1 + -7102.87 -3924.65 -2190.02 0.83 0.47 0.29 1 + -7073.94 -4113.48 -1964.84 0.83 0.47 0.29 1 + -6722.66 -4107.12 -2993.56 0.81 0.42 0.40 1 + -6575.03 -4154.97 -3244.86 0.81 0.42 0.40 1 + -6871.60 -3854.81 -2955.75 0.81 0.42 0.40 1 + -6723.88 -3902.96 -3206.86 0.81 0.42 0.40 1 + -6576.25 -3950.81 -3458.15 0.81 0.42 0.40 1 + -7020.44 -3602.79 -2917.75 0.81 0.42 0.40 1 + -6872.82 -3650.65 -3169.04 0.81 0.42 0.40 1 + -6725.10 -3698.80 -3420.15 0.81 0.42 0.40 1 + -6577.48 -3746.65 -3671.44 0.81 0.42 0.40 1 + -7169.38 -3350.48 -2879.93 0.81 0.42 0.40 1 + -7021.66 -3398.63 -3131.04 0.81 0.42 0.40 1 + -6874.04 -3446.49 -3382.33 0.81 0.42 0.40 1 + -6726.47 -3494.44 -3633.39 0.81 0.42 0.40 1 + -6578.70 -3542.49 -3884.74 0.81 0.42 0.40 1 + -7170.60 -3146.32 -3093.22 0.81 0.42 0.40 1 + -7022.88 -3194.47 -3344.33 0.81 0.42 0.40 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -6727.69 -3290.28 -3846.69 0.81 0.42 0.40 1 + -7171.82 -2942.16 -3306.52 0.81 0.42 0.40 1 + -7024.10 -2990.31 -3557.63 0.81 0.42 0.40 1 + -6876.48 -3038.17 -3808.92 0.81 0.42 0.40 1 + -6196.91 -3904.92 4087.44 0.73 0.45 -0.51 1 + -6334.40 -3645.49 4118.86 0.73 0.45 -0.51 1 + -6000.23 -3992.84 4289.41 0.73 0.45 -0.51 1 + -6137.96 -3733.67 4320.78 0.73 0.45 -0.51 1 + -6275.45 -3474.24 4352.20 0.73 0.45 -0.51 1 + -5941.19 -3821.88 4522.57 0.73 0.45 -0.51 1 + -6078.68 -3562.45 4553.98 0.73 0.45 -0.51 1 + -6640.35 -2384.02 4600.32 0.74 0.32 -0.59 1 + -6442.67 -2477.00 4799.28 0.74 0.32 -0.59 1 + -6245.34 -2569.72 4998.31 0.74 0.32 -0.59 1 + -6047.81 -2662.59 5197.09 0.74 0.32 -0.59 1 + -5850.34 -2755.64 5396.18 0.74 0.32 -0.59 1 + -6532.70 -2658.71 4584.72 0.74 0.32 -0.59 1 + -6335.16 -2751.58 4783.50 0.74 0.32 -0.59 1 + -6137.83 -2844.30 4982.53 0.74 0.32 -0.59 1 + -5940.51 -2937.23 5181.44 0.74 0.32 -0.59 1 + -6425.19 -2933.28 4568.94 0.74 0.32 -0.59 1 + -6227.87 -3026.22 4767.84 0.74 0.32 -0.59 1 + -6030.53 -3118.94 4966.88 0.74 0.32 -0.59 1 + -6317.89 -3207.93 4553.29 0.74 0.32 -0.59 1 + -6120.56 -3300.65 4752.32 0.74 0.32 -0.59 1 + -5841.37 -2208.37 5628.40 0.69 0.23 -0.68 1 + -5932.57 -1927.67 5628.40 0.69 0.23 -0.68 1 + -6023.91 -1646.64 5628.35 0.69 0.23 -0.68 1 + -6115.11 -1365.94 5628.35 0.69 0.23 -0.68 1 + -5629.10 -2294.69 5814.70 0.69 0.23 -0.68 1 + -5720.30 -2013.77 5814.83 0.69 0.23 -0.68 1 + -5811.65 -1732.96 5814.65 0.69 0.23 -0.68 1 + -5902.85 -1452.05 5814.78 0.69 0.23 -0.68 1 + -5508.04 -2100.09 6001.12 0.69 0.23 -0.68 1 + -5599.39 -1819.28 6000.94 0.69 0.23 -0.68 1 + -5690.59 -1538.37 6001.07 0.69 0.23 -0.68 1 + -5387.34 -1905.67 6187.36 0.69 0.23 -0.68 1 + -5478.54 -1624.75 6187.49 0.69 0.23 -0.68 1 + -5979.54 -2408.52 5409.95 0.75 0.24 -0.62 1 + -6358.40 -1755.48 5209.20 0.75 0.24 -0.62 1 + -6267.19 -2036.17 5209.20 0.75 0.24 -0.62 1 + -6175.99 -2317.09 5209.07 0.75 0.24 -0.62 1 + -6463.72 -1944.92 5008.63 0.75 0.24 -0.62 1 + -6372.52 -2225.83 5008.50 0.75 0.24 -0.62 1 + -6568.83 -2134.29 4807.94 0.75 0.24 -0.62 1 + -6742.79 -1497.76 4783.61 0.79 0.17 -0.59 1 + -6847.84 -1688.81 4584.71 0.79 0.17 -0.59 1 + -6712.10 -1021.21 4966.93 0.79 0.17 -0.59 1 + -6817.15 -1212.48 4767.90 0.79 0.17 -0.59 1 + -6922.21 -1403.52 4569.00 0.79 0.17 -0.59 1 + -6891.72 -927.05 4752.44 0.79 0.17 -0.59 1 + -6996.78 -1118.31 4553.41 0.79 0.17 -0.59 1 + -6058.09 -876.26 5785.33 0.68 0.07 -0.73 1 + -5615.07 -266.60 6251.18 0.68 0.07 -0.73 1 + -5467.50 -63.49 6406.35 0.68 0.07 -0.73 1 + -5845.41 -959.41 5972.76 0.68 0.07 -0.73 1 + -5697.68 -756.26 6128.13 0.68 0.07 -0.73 1 + -5550.11 -552.90 6283.25 0.68 0.07 -0.73 1 + -5402.38 -349.75 6438.61 0.68 0.07 -0.73 1 + -5632.72 -1042.55 6160.19 0.68 0.07 -0.73 1 + -5485.15 -839.19 6315.31 0.68 0.07 -0.73 1 + -5337.42 -636.04 6470.68 0.68 0.07 -0.73 1 + -5420.39 -1125.46 6347.53 0.68 0.07 -0.73 1 + -5272.66 -922.31 6502.90 0.68 0.07 -0.73 1 + -5076.48 63.63 6720.40 0.55 0.03 -0.83 1 + -4837.58 -14.15 6875.68 0.55 0.03 -0.83 1 + -4598.81 -91.73 7030.85 0.55 0.03 -0.83 1 + -4359.73 -169.35 7186.20 0.55 0.03 -0.83 1 + -4120.95 -246.93 7341.36 0.55 0.03 -0.83 1 + -5008.96 -221.95 6754.58 0.55 0.03 -0.83 1 + -4770.06 -299.72 6909.86 0.55 0.03 -0.83 1 + -4531.10 -377.15 7065.09 0.55 0.03 -0.83 1 + -4292.21 -454.92 7220.37 0.55 0.03 -0.83 1 + -4941.43 -507.52 6788.75 0.55 0.03 -0.83 1 + -4702.47 -584.94 6943.99 0.55 0.03 -0.83 1 + -4463.58 -662.72 7099.27 0.55 0.03 -0.83 1 + -4873.96 -792.68 6823.10 0.55 0.03 -0.83 1 + -4635.07 -870.46 6978.37 0.55 0.03 -0.83 1 + -7052.81 -400.16 4522.73 0.85 0.07 -0.51 1 + -7011.68 -690.90 4553.93 0.85 0.07 -0.51 1 + -7201.22 -296.57 4289.40 0.85 0.07 -0.51 1 + -7160.24 -587.17 4320.90 0.85 0.07 -0.51 1 + -7119.11 -877.91 4352.10 0.85 0.07 -0.51 1 + -7308.60 -483.23 4087.66 0.85 0.07 -0.51 1 + -7267.47 -773.97 4118.86 0.85 0.07 -0.51 1 + -6504.60 333.22 5340.41 0.77 0.03 -0.63 1 + -6455.15 45.45 5385.69 0.77 0.03 -0.63 1 + -6405.75 -242.01 5431.27 0.77 0.03 -0.63 1 + -6356.31 -529.53 5476.50 0.77 0.03 -0.63 1 + -6307.07 -817.27 5521.93 0.77 0.03 -0.63 1 + -6635.70 131.75 5168.63 0.77 0.03 -0.63 1 + -6586.25 -155.77 5213.86 0.77 0.03 -0.63 1 + -6536.85 -443.23 5259.45 0.77 0.03 -0.63 1 + -6487.61 -730.72 5304.83 0.77 0.03 -0.63 1 + -6766.80 -69.47 4996.81 0.77 0.03 -0.63 1 + -6717.56 -356.96 5042.19 0.77 0.03 -0.63 1 + -6668.16 -644.42 5087.78 0.77 0.03 -0.63 1 + -6898.10 -270.66 4825.14 0.77 0.03 -0.63 1 + -6848.70 -558.12 4870.72 0.77 0.03 -0.63 1 + -5850.34 -6058.85 51.38 0.74 0.67 -0.03 1 + -6047.76 -5839.25 57.22 0.74 0.67 -0.03 1 + -6245.25 -5619.98 63.17 0.74 0.67 -0.03 1 + -6442.71 -5400.30 69.24 0.74 0.67 -0.03 1 + -6640.34 -5180.84 75.09 0.74 0.67 -0.03 1 + -5940.44 -5948.10 309.78 0.74 0.67 -0.03 1 + -6137.77 -5728.61 315.96 0.74 0.67 -0.03 1 + -6335.40 -5509.15 321.81 0.74 0.67 -0.03 1 + -6532.68 -5289.74 327.74 0.74 0.67 -0.03 1 + -6030.46 -5837.45 568.52 0.74 0.67 -0.03 1 + -6227.87 -5617.85 574.36 0.74 0.67 -0.03 1 + -6425.16 -5398.45 580.30 0.74 0.67 -0.03 1 + -6120.43 -5726.90 827.02 0.74 0.67 -0.03 1 + -6317.84 -5507.29 832.86 0.74 0.67 -0.03 1 + -6773.45 -4997.63 -291.38 0.79 0.60 0.11 1 + -6668.18 -5089.98 -551.57 0.79 0.60 0.11 1 + -6563.03 -5182.58 -811.41 0.79 0.60 0.11 1 + -6457.81 -5274.85 -1071.37 0.79 0.60 0.11 1 + -6352.75 -5367.35 -1331.54 0.79 0.60 0.11 1 + -6847.82 -4856.00 -539.77 0.79 0.60 0.11 1 + -6742.59 -4948.27 -799.72 0.79 0.60 0.11 1 + -6637.45 -5040.87 -1059.57 0.79 0.60 0.11 1 + -6532.44 -5133.28 -1319.51 0.79 0.60 0.11 1 + -6922.23 -4714.28 -787.92 0.79 0.60 0.11 1 + -6817.22 -4806.69 -1047.87 0.79 0.60 0.11 1 + -6712.07 -4899.30 -1307.71 0.79 0.60 0.11 1 + -6996.86 -4572.71 -1036.07 0.79 0.60 0.11 1 + -6891.71 -4665.31 -1295.92 0.79 0.60 0.11 1 + -6846.14 -4897.58 291.38 0.82 0.57 -0.11 1 + -6901.44 -4768.92 551.57 0.82 0.57 -0.11 1 + -6957.02 -4640.31 811.41 0.82 0.57 -0.11 1 + -7012.25 -4511.72 1071.37 0.82 0.57 -0.11 1 + -7067.75 -4383.22 1331.54 0.82 0.57 -0.11 1 + -6734.42 -5012.07 539.77 0.82 0.57 -0.11 1 + -6789.65 -4883.49 799.72 0.82 0.57 -0.11 1 + -6845.23 -4754.87 1059.57 0.82 0.57 -0.11 1 + -6900.67 -4626.44 1319.51 0.82 0.57 -0.11 1 + -6622.63 -5126.64 787.92 0.82 0.57 -0.11 1 + -6678.07 -4998.21 1047.87 0.82 0.57 -0.11 1 + -6733.65 -4869.59 1307.71 0.82 0.57 -0.11 1 + -6511.05 -5241.36 1036.07 0.82 0.57 -0.11 1 + -6566.63 -5112.74 1295.92 0.82 0.57 -0.11 1 + -7011.71 -4382.19 -1418.68 0.85 0.49 0.17 1 + -7052.97 -4224.08 -1664.63 0.85 0.49 0.17 1 + -7119.05 -4285.34 -1161.16 0.85 0.49 0.17 1 + -7160.31 -4127.24 -1407.12 0.85 0.49 0.17 1 + -7201.22 -3969.21 -1653.03 0.85 0.49 0.17 1 + -7267.41 -4030.18 -1149.73 0.85 0.49 0.17 1 + -7308.66 -3872.07 -1395.69 0.85 0.49 0.17 1 + -7570.16 -3691.72 -51.38 0.87 0.50 0.03 1 + -7422.32 -3947.33 -57.22 0.87 0.50 0.03 1 + -7274.81 -4202.91 -63.17 0.87 0.50 0.03 1 + -7126.90 -4458.60 -69.24 0.87 0.50 0.03 1 + -6979.25 -4714.37 -75.09 0.87 0.50 0.03 1 + -7492.68 -3811.63 -309.78 0.87 0.50 0.03 1 + -7344.91 -4067.13 -315.96 0.87 0.50 0.03 1 + -7197.26 -4322.90 -321.81 0.87 0.50 0.03 1 + -7049.55 -4578.33 -327.74 0.87 0.50 0.03 1 + -7415.27 -3931.44 -568.52 0.87 0.50 0.03 1 + -7267.42 -4187.05 -574.36 0.87 0.50 0.03 1 + -7119.71 -4442.48 -580.30 0.87 0.50 0.03 1 + -7337.92 -4051.17 -827.02 0.87 0.50 0.03 1 + -7190.07 -4306.78 -832.86 0.87 0.50 0.03 1 + -8188.77 -728.08 -1664.71 0.98 0.11 0.17 1 + -8248.33 -576.14 -1418.62 0.98 0.11 0.17 1 + -8158.94 -1021.64 -1653.03 0.98 0.11 0.17 1 + -8218.73 -869.61 -1407.19 0.98 0.11 0.17 1 + -8278.29 -717.67 -1161.10 0.98 0.11 0.17 1 + -8188.81 -1163.20 -1395.85 0.98 0.11 0.17 1 + -8248.37 -1011.26 -1149.76 0.98 0.11 0.17 1 + -8314.83 -805.67 1018.61 0.99 0.10 -0.06 1 + -8314.83 -960.84 767.55 0.99 0.10 -0.06 1 + -8314.82 -1115.99 516.23 0.99 0.10 -0.06 1 + -5585.96 -5713.67 2640.25 0.71 0.64 -0.29 1 + -6135.03 -5179.85 2485.19 0.71 0.64 -0.29 1 + -5945.90 -5403.90 2450.18 0.71 0.64 -0.29 1 + -5756.78 -5627.96 2415.16 0.71 0.64 -0.29 1 + -6116.59 -5318.39 2225.04 0.71 0.64 -0.29 1 + -5927.46 -5542.44 2190.02 0.71 0.64 -0.29 1 + -6098.11 -5456.58 1964.84 0.71 0.64 -0.29 1 + -5941.06 -5754.41 1395.69 0.73 0.66 -0.17 1 + -6078.67 -5666.31 1149.73 0.73 0.66 -0.17 1 + -6000.23 -5622.21 1653.03 0.73 0.66 -0.17 1 + -6137.89 -5534.47 1407.12 0.73 0.66 -0.17 1 + -6275.51 -5446.38 1161.16 0.73 0.66 -0.17 1 + -6196.82 -5402.45 1664.63 0.73 0.66 -0.17 1 + -6334.44 -5314.36 1418.68 0.73 0.66 -0.17 1 + -6993.87 -4359.12 1738.54 0.79 0.56 -0.25 1 + -6848.10 -4458.28 1975.50 0.79 0.56 -0.25 1 + -6702.62 -4557.61 2212.33 0.79 0.56 -0.25 1 + -6556.70 -4656.98 2449.23 0.79 0.56 -0.25 1 + -6411.11 -4756.29 2686.29 0.79 0.56 -0.25 1 + -6828.27 -4602.72 1718.80 0.79 0.56 -0.25 1 + -6682.46 -4702.11 1955.48 0.79 0.56 -0.25 1 + -6536.87 -4801.42 2192.54 0.79 0.56 -0.25 1 + -6391.20 -4900.60 2429.26 0.79 0.56 -0.25 1 + -6662.63 -4846.55 1698.78 0.79 0.56 -0.25 1 + -6516.86 -4945.71 1935.74 0.79 0.56 -0.25 1 + -6371.19 -5044.89 2172.47 0.79 0.56 -0.25 1 + -6497.13 -5090.17 1678.81 0.79 0.56 -0.25 1 + -6351.36 -5189.33 1915.77 0.79 0.56 -0.25 1 + -6411.13 -4529.79 3052.74 0.79 0.48 -0.39 1 + -6556.76 -4273.27 3069.96 0.79 0.48 -0.39 1 + -6702.53 -4017.13 3087.01 0.79 0.48 -0.39 1 + -6848.02 -3760.82 3104.18 0.79 0.48 -0.39 1 + -6993.83 -3504.45 3121.51 0.79 0.48 -0.39 1 + -6391.21 -4364.45 3296.76 0.79 0.48 -0.39 1 + -6536.70 -4108.13 3313.94 0.79 0.48 -0.39 1 + -6682.47 -3851.99 3330.98 0.79 0.48 -0.39 1 + -6828.14 -3595.82 3348.26 0.79 0.48 -0.39 1 + -6371.14 -4199.30 3540.74 0.79 0.48 -0.39 1 + -6516.81 -3943.14 3558.01 0.79 0.48 -0.39 1 + -6662.59 -3687.00 3575.05 0.79 0.48 -0.39 1 + -6351.26 -4034.31 3784.81 0.79 0.48 -0.39 1 + -6497.03 -3778.17 3801.85 0.79 0.48 -0.39 1 + -7011.46 -3708.41 2812.54 0.82 0.49 -0.30 1 + -6863.91 -4274.21 2294.47 0.82 0.49 -0.30 1 + -6863.91 -4119.04 2545.53 0.82 0.49 -0.30 1 + -6863.80 -3963.86 2796.82 0.82 0.49 -0.30 1 + -6716.57 -4374.44 2529.96 0.82 0.49 -0.30 1 + -6716.47 -4219.25 2781.25 0.82 0.49 -0.30 1 + -6569.05 -4474.52 2765.36 0.82 0.49 -0.30 1 + -7166.05 -3420.51 2808.23 0.86 0.43 -0.27 1 + -7166.15 -3575.70 2556.93 0.86 0.43 -0.27 1 + -7166.15 -3730.86 2305.87 0.86 0.43 -0.27 1 + -7166.11 -3886.25 2054.53 0.86 0.43 -0.27 1 + -7166.11 -4041.42 1803.47 0.86 0.43 -0.27 1 + -7295.12 -3310.20 2566.46 0.86 0.43 -0.27 1 + -7295.23 -3465.39 2315.17 0.86 0.43 -0.27 1 + -7295.08 -3620.76 2064.06 0.86 0.43 -0.27 1 + -7295.19 -3775.94 1812.77 0.86 0.43 -0.27 1 + -7424.20 -3199.89 2324.70 0.86 0.43 -0.27 1 + -7424.06 -3355.26 2073.59 0.86 0.43 -0.27 1 + -7424.16 -3510.44 1822.30 0.86 0.43 -0.27 1 + -7553.21 -3089.92 2083.21 0.86 0.43 -0.27 1 + -7553.31 -3245.10 1831.92 0.86 0.43 -0.27 1 + -7067.81 -3151.13 3324.93 0.82 0.35 -0.46 1 + -7012.32 -2975.97 3556.17 0.82 0.35 -0.46 1 + -6957.04 -2801.10 3787.44 0.82 0.35 -0.46 1 + -6901.39 -2626.05 4018.85 0.82 0.35 -0.46 1 + -6846.10 -2450.96 4250.23 0.82 0.35 -0.46 1 + -6900.79 -3249.18 3547.75 0.82 0.35 -0.46 1 + -6845.16 -3074.35 3779.04 0.82 0.35 -0.46 1 + -6789.86 -2899.26 4010.43 0.82 0.35 -0.46 1 + -6734.39 -2724.32 4241.54 0.82 0.35 -0.46 1 + -6733.63 -3347.56 3770.62 0.82 0.35 -0.46 1 + -6678.14 -3172.40 4001.86 0.82 0.35 -0.46 1 + -6622.66 -2997.47 4232.98 0.82 0.35 -0.46 1 + -6566.63 -3445.83 3993.31 0.82 0.35 -0.46 1 + -6511.14 -3270.67 4224.56 0.82 0.35 -0.46 1 + -7593.33 -3088.42 1561.47 0.93 0.30 -0.19 1 + -7684.58 -2962.62 1310.22 0.93 0.30 -0.19 1 + -7775.70 -2837.14 1059.02 0.93 0.30 -0.19 1 + -7593.22 -2933.13 1812.53 0.93 0.30 -0.19 1 + -7684.67 -2807.39 1561.43 0.93 0.30 -0.19 1 + -7852.11 -1121.03 2812.60 0.95 0.08 -0.30 1 + -7943.31 -995.50 2561.54 0.95 0.08 -0.30 1 + -8034.55 -869.75 2310.36 0.95 0.08 -0.30 1 + -2254.44 -3605.25 -7258.24 9999.00 9999.00 9999.00 3 + -5674.62 -4224.46 -4557.89 9999.00 9999.00 9999.00 3 + -7074.00 82.10 -4557.80 9999.00 9999.00 9999.00 3 + -4176.36 -73.30 -7305.88 9999.00 9999.00 9999.00 3 + -6047.76 -5839.25 57.22 9999.00 9999.00 9999.00 3 + -7807.98 -3157.92 36.42 9999.00 9999.00 9999.00 3 + -8417.36 61.77 -291.44 9999.00 9999.00 9999.00 3 + -7807.98 3157.92 -36.42 9999.00 9999.00 9999.00 3 + 5771.24 -4091.57 4557.80 9999.00 9999.00 9999.00 3 + -5693.57 -46.03 -6197.12 0.72 -0.01 0.70 1 + -5841.14 157.08 -6041.96 0.72 -0.01 0.70 1 + -5988.87 360.23 -5886.59 0.72 -0.01 0.70 1 + -1277.80 -1507.60 -8192.58 0.09 0.13 0.99 1 + -1038.77 -1681.09 -8192.61 0.09 0.13 0.99 1 + -1248.68 -1216.36 -8232.62 0.09 0.13 0.99 1 + -1009.90 -1390.09 -8232.57 0.09 0.13 0.99 1 + -770.87 -1563.57 -8232.61 0.09 0.13 0.99 1 + -1219.81 -925.36 -8272.58 0.09 0.13 0.99 1 + -980.78 -1098.85 -8272.62 0.09 0.13 0.99 1 + -742.00 -1272.58 -8272.57 0.09 0.13 0.99 1 + -502.98 -1446.06 -8272.61 0.09 0.13 0.99 1 + -1190.69 -634.12 -8312.63 0.09 0.13 0.99 1 + -951.91 -807.85 -8312.58 0.09 0.13 0.99 1 + -712.89 -981.34 -8312.62 0.09 0.13 0.99 1 + -474.11 -1154.82 -8312.61 0.09 0.13 0.99 1 + -235.08 -1328.55 -8312.60 0.09 0.13 0.99 1 + -922.80 -516.61 -8352.63 0.09 0.13 0.99 1 + -684.02 -690.34 -8352.58 0.09 0.13 0.99 1 + -444.99 -863.82 -8352.61 0.09 0.13 0.99 1 + -206.22 -1037.30 -8352.61 0.09 0.13 0.99 1 + -654.90 -399.10 -8392.62 0.09 0.13 0.99 1 + -416.12 -572.83 -8392.57 0.09 0.13 0.99 1 + -177.10 -746.31 -8392.61 0.09 0.13 0.99 1 + -2432.29 -2594.22 -7627.40 0.23 0.32 0.92 1 + -2193.51 -2767.70 -7627.40 0.23 0.32 0.92 1 + -1954.49 -2941.18 -7627.44 0.23 0.32 0.92 1 + -1715.71 -3114.91 -7627.39 0.23 0.32 0.92 1 + -2174.55 -2490.63 -7727.54 0.23 0.32 0.92 1 + -1935.77 -2664.11 -7727.54 0.23 0.32 0.92 1 + -1696.75 -2837.59 -7727.57 0.23 0.32 0.92 1 + -1916.84 -2387.08 -7827.92 0.23 0.32 0.92 1 + -1677.82 -2560.57 -7827.96 0.23 0.32 0.92 1 + -1659.10 -2283.49 -7928.06 0.23 0.32 0.92 1 + -1749.90 -3413.23 -7498.41 0.28 0.38 0.88 1 + -1988.93 -3239.75 -7498.37 0.28 0.38 0.88 1 + -2227.70 -3066.27 -7498.37 0.28 0.38 0.88 1 + -2466.73 -2892.54 -7498.39 0.28 0.38 0.88 1 + -2705.50 -2719.06 -7498.39 0.28 0.38 0.88 1 + -2002.17 -3509.24 -7378.32 0.28 0.38 0.88 1 + -2241.20 -3335.76 -7378.29 0.28 0.38 0.88 1 + -2479.98 -3162.03 -7378.34 0.28 0.38 0.88 1 + -2719.00 -2988.54 -7378.30 0.28 0.38 0.88 1 + -2254.44 -3605.25 -7258.24 0.28 0.38 0.88 1 + -2493.22 -3431.52 -7258.29 0.28 0.38 0.88 1 + -2732.25 -3258.04 -7258.25 0.28 0.38 0.88 1 + -2506.50 -3701.06 -7138.49 0.28 0.38 0.88 1 + -2745.53 -3527.58 -7138.45 0.28 0.38 0.88 1 + -2492.18 -4435.28 -6614.58 0.36 0.49 0.79 1 + -2492.29 -4183.90 -6769.79 0.36 0.49 0.79 1 + -2492.13 -3932.76 -6924.96 0.36 0.49 0.79 1 + -2730.98 -4512.76 -6459.28 0.36 0.49 0.79 1 + -2731.22 -4261.57 -6614.63 0.36 0.49 0.79 1 + -2731.06 -4010.42 -6769.80 0.36 0.49 0.79 1 + -2731.18 -3759.05 -6925.01 0.36 0.49 0.79 1 + -2969.91 -4590.42 -6304.12 0.36 0.49 0.79 1 + -2970.02 -4339.05 -6459.34 0.36 0.49 0.79 1 + -2970.00 -4088.09 -6614.63 0.36 0.49 0.79 1 + -2970.05 -3836.88 -6769.67 0.36 0.49 0.79 1 + -2969.95 -3585.57 -6925.02 0.36 0.49 0.79 1 + -3208.89 -4416.88 -6303.99 0.36 0.49 0.79 1 + -3208.80 -4165.57 -6459.34 0.36 0.49 0.79 1 + -3208.98 -3914.54 -6614.50 0.36 0.49 0.79 1 + -3208.89 -3663.23 -6769.85 0.36 0.49 0.79 1 + -3447.73 -4243.23 -6304.17 0.36 0.49 0.79 1 + -3447.78 -3992.02 -6459.21 0.36 0.49 0.79 1 + -3447.82 -3740.89 -6614.68 0.36 0.49 0.79 1 + -4144.35 -4699.50 -5628.27 0.43 0.59 0.68 1 + -3905.37 -4873.04 -5628.40 0.43 0.59 0.68 1 + -3666.59 -5046.52 -5628.40 0.43 0.59 0.68 1 + -3427.55 -5220.23 -5628.35 0.43 0.59 0.68 1 + -3188.77 -5393.71 -5628.35 0.43 0.59 0.68 1 + -3921.87 -4644.49 -5814.70 0.43 0.59 0.68 1 + -3682.89 -4818.03 -5814.83 0.43 0.59 0.68 1 + -3444.05 -4991.68 -5814.65 0.43 0.59 0.68 1 + -3205.07 -5165.23 -5814.78 0.43 0.59 0.68 1 + -3699.39 -4589.49 -6001.12 0.43 0.59 0.68 1 + -3460.55 -4763.14 -6000.94 0.43 0.59 0.68 1 + -3221.57 -4936.68 -6001.07 0.43 0.59 0.68 1 + -3477.19 -4534.77 -6187.36 0.43 0.59 0.68 1 + -3238.20 -4708.31 -6187.49 0.43 0.59 0.68 1 + -3421.83 -5463.27 -5409.89 0.46 0.63 0.62 1 + -3660.60 -5289.79 -5409.89 0.46 0.63 0.62 1 + -3899.58 -5116.25 -5409.76 0.46 0.63 0.62 1 + -4138.42 -4942.60 -5409.95 0.46 0.63 0.62 1 + -3634.41 -5504.72 -5209.20 0.46 0.63 0.62 1 + -3873.19 -5331.24 -5209.20 0.46 0.63 0.62 1 + -4112.17 -5157.70 -5209.07 0.46 0.63 0.62 1 + -3847.13 -5546.35 -5008.63 0.46 0.63 0.62 1 + -4086.11 -5372.81 -5008.50 0.46 0.63 0.62 1 + -4059.72 -5587.80 -4807.94 0.46 0.63 0.62 1 + -4319.32 -5578.65 -4600.32 0.54 0.61 0.59 1 + -4346.66 -5361.92 -4799.28 0.54 0.61 0.59 1 + -4373.87 -5145.59 -4998.31 0.54 0.61 0.59 1 + -4401.15 -4929.02 -5197.09 0.54 0.61 0.59 1 + -4428.63 -4712.46 -5396.18 0.54 0.61 0.59 1 + -4547.30 -5391.39 -4584.72 0.54 0.61 0.59 1 + -4574.58 -5174.82 -4783.50 0.54 0.61 0.59 1 + -4601.78 -4958.49 -4982.53 0.54 0.61 0.59 1 + -4629.20 -4742.10 -5181.44 0.54 0.61 0.59 1 + -4775.21 -5204.29 -4568.94 0.54 0.61 0.59 1 + -4802.63 -4987.90 -4767.84 0.54 0.61 0.59 1 + -4829.83 -4771.57 -4966.88 0.54 0.61 0.59 1 + -5003.26 -5017.37 -4553.29 0.54 0.61 0.59 1 + -5030.46 -4801.04 -4752.32 0.54 0.61 0.59 1 + -4386.04 -3265.06 -6406.27 0.50 0.45 0.73 1 + -4385.93 -3516.35 -6251.09 0.50 0.45 0.73 1 + -4385.94 -3767.41 -6095.92 0.50 0.45 0.73 1 + -4385.98 -4018.76 -5940.54 0.50 0.45 0.73 1 + -4385.98 -4269.82 -5785.37 0.50 0.45 0.73 1 + -4165.10 -3458.52 -6438.44 0.50 0.45 0.73 1 + -4165.00 -3709.82 -6283.26 0.50 0.45 0.73 1 + -4165.14 -3960.93 -6127.89 0.50 0.45 0.73 1 + -4165.04 -4212.23 -5972.71 0.50 0.45 0.73 1 + -3944.16 -3651.99 -6470.62 0.50 0.45 0.73 1 + -3944.31 -3903.11 -6315.25 0.50 0.45 0.73 1 + -3944.21 -4154.40 -6160.06 0.50 0.45 0.73 1 + -3723.66 -3845.37 -6502.76 0.50 0.45 0.73 1 + -3723.55 -4096.67 -6347.57 0.50 0.45 0.73 1 + -3188.81 -2621.93 -7341.35 0.43 0.35 0.83 1 + -3427.71 -2699.71 -7186.08 0.43 0.35 0.83 1 + -3666.49 -2777.29 -7030.91 0.43 0.35 0.83 1 + -3905.57 -2854.91 -6875.55 0.43 0.35 0.83 1 + -4144.34 -2932.49 -6720.39 0.43 0.35 0.83 1 + -3205.25 -2890.90 -7220.26 0.43 0.35 0.83 1 + -3444.15 -2968.68 -7064.99 0.43 0.35 0.83 1 + -3683.11 -3046.10 -6909.74 0.43 0.35 0.83 1 + -3922.01 -3123.88 -6754.47 0.43 0.35 0.83 1 + -3221.69 -3159.88 -7099.17 0.43 0.35 0.83 1 + -3460.65 -3237.30 -6943.92 0.43 0.35 0.83 1 + -3699.55 -3315.08 -6788.65 0.43 0.35 0.83 1 + -3238.32 -3428.52 -6978.32 0.43 0.35 0.83 1 + -3477.22 -3506.30 -6823.05 0.43 0.35 0.83 1 + -2726.23 -2369.46 -7608.69 0.27 0.24 0.93 1 + -2467.88 -2268.11 -7709.78 0.27 0.24 0.93 1 + -2209.82 -2166.81 -7811.08 0.27 0.24 0.93 1 + -1951.48 -2065.21 -7912.22 0.27 0.24 0.93 1 + -1693.17 -1963.92 -8013.56 0.27 0.24 0.93 1 + -2699.79 -2086.62 -7689.08 0.27 0.24 0.93 1 + -2441.70 -1985.02 -7790.18 0.27 0.24 0.93 1 + -2183.39 -1883.72 -7891.51 0.27 0.24 0.93 1 + -1925.30 -1782.37 -7992.57 0.27 0.24 0.93 1 + -2673.61 -1803.53 -7769.47 0.27 0.24 0.93 1 + -2415.27 -1702.18 -7870.56 0.27 0.24 0.93 1 + -2157.17 -1600.83 -7971.62 0.27 0.24 0.93 1 + -2647.43 -1520.69 -7849.82 0.27 0.24 0.93 1 + -2389.09 -1419.34 -7950.91 0.27 0.24 0.93 1 + -4633.25 -4062.89 -5731.41 0.58 0.43 0.70 1 + -4633.25 -3811.83 -5886.58 0.58 0.43 0.70 1 + -4633.35 -3560.53 -6041.76 0.58 0.43 0.70 1 + -1560.46 -1611.53 -8111.06 0.21 0.14 0.97 1 + -1532.08 -1321.40 -8158.10 0.21 0.14 0.97 1 + -1503.70 -1031.28 -8205.13 0.21 0.14 0.97 1 + -1475.29 -741.10 -8251.93 0.21 0.14 0.97 1 + -1795.00 -1434.20 -8084.97 0.21 0.14 0.97 1 + -1766.63 -1144.08 -8132.01 0.21 0.14 0.97 1 + -1738.25 -853.95 -8179.05 0.21 0.14 0.97 1 + -2029.59 -1256.68 -8059.18 0.21 0.14 0.97 1 + -2001.21 -966.55 -8106.22 0.21 0.14 0.97 1 + -2264.14 -1079.35 -8033.09 0.21 0.14 0.97 1 + -4138.48 -2628.36 -6840.16 0.46 0.27 0.84 1 + -3899.70 -2550.78 -6995.33 0.46 0.27 0.84 1 + -3660.80 -2473.00 -7150.60 0.46 0.27 0.84 1 + -3293.77 -1814.02 -7513.26 0.41 0.21 0.89 1 + -3079.50 -2010.17 -7565.73 0.41 0.21 0.89 1 + -3473.94 -1336.36 -7543.77 0.41 0.21 0.89 1 + -3259.67 -1532.51 -7596.23 0.41 0.21 0.89 1 + -3045.53 -1728.86 -7648.59 0.41 0.21 0.89 1 + -3225.70 -1251.20 -7679.09 0.41 0.21 0.89 1 + -3011.56 -1447.54 -7731.45 0.41 0.21 0.89 1 + -2718.14 -614.17 -7911.51 0.33 0.11 0.94 1 + -2981.87 -699.99 -7810.12 0.33 0.11 0.94 1 + -2507.35 -814.70 -7962.04 0.33 0.11 0.94 1 + -2771.11 -900.32 -7860.95 0.33 0.11 0.94 1 + -3034.84 -986.15 -7759.56 0.33 0.11 0.94 1 + -2560.07 -1100.61 -7911.57 0.33 0.11 0.94 1 + -2823.80 -1186.43 -7810.18 0.33 0.11 0.94 1 + -4176.36 -73.30 -7305.88 0.53 0.05 0.85 1 + -4415.14 -150.88 -7150.71 0.53 0.05 0.85 1 + -4654.03 -228.65 -6995.43 0.53 0.05 0.85 1 + -1629.00 -267.32 -8251.94 0.25 0.01 0.97 1 + -1822.71 -49.59 -8205.13 0.25 0.01 0.97 1 + -2016.20 168.44 -8158.10 0.25 0.01 0.97 1 + -2209.69 386.47 -8111.06 0.25 0.01 0.97 1 + -1908.05 -330.96 -8179.09 0.25 0.01 0.97 1 + -2101.55 -112.93 -8132.05 0.25 0.01 0.97 1 + -2295.04 105.10 -8085.01 0.25 0.01 0.97 1 + -2187.18 -394.35 -8106.21 0.25 0.01 0.97 1 + -2380.68 -176.32 -8059.17 0.25 0.01 0.97 1 + -2466.02 -457.69 -8033.13 0.25 0.01 0.97 1 + -4893.02 -5981.12 -3332.83 0.53 0.73 0.42 1 + -4654.24 -6154.61 -3332.83 0.53 0.73 0.42 1 + -4415.25 -6328.14 -3332.95 0.53 0.73 0.42 1 + -4176.42 -6501.80 -3332.78 0.53 0.73 0.42 1 + -4709.73 -5980.02 -3564.34 0.53 0.73 0.42 1 + -4470.96 -6153.50 -3564.34 0.53 0.73 0.42 1 + -4231.97 -6327.03 -3564.46 0.53 0.73 0.42 1 + -4526.57 -5979.08 -3795.99 0.53 0.73 0.42 1 + -4287.58 -6152.61 -3796.11 0.53 0.73 0.42 1 + -4343.29 -5977.97 -4027.50 0.53 0.73 0.42 1 + -4120.94 -6676.70 -3062.35 0.55 0.76 0.35 1 + -4359.93 -6503.16 -3062.23 0.55 0.76 0.35 1 + -4598.71 -6329.68 -3062.23 0.55 0.76 0.35 1 + -4837.75 -6155.97 -3062.28 0.55 0.76 0.35 1 + -5076.52 -5982.48 -3062.28 0.55 0.76 0.35 1 + -4292.34 -6661.39 -2822.21 0.55 0.76 0.35 1 + -4531.33 -6487.86 -2822.09 0.55 0.76 0.35 1 + -4770.16 -6314.19 -2822.26 0.55 0.76 0.35 1 + -5009.15 -6140.66 -2822.14 0.55 0.76 0.35 1 + -4463.74 -6646.08 -2582.07 0.55 0.76 0.35 1 + -4702.56 -6472.42 -2582.24 0.55 0.76 0.35 1 + -4941.55 -6298.88 -2582.12 0.55 0.76 0.35 1 + -4635.09 -6630.81 -2342.37 0.55 0.76 0.35 1 + -4874.08 -6457.28 -2342.25 0.55 0.76 0.35 1 + -5180.98 -5748.14 -3324.93 0.58 0.67 0.46 1 + -4997.25 -5749.49 -3556.17 0.58 0.67 0.46 1 + -4813.85 -5750.96 -3787.44 0.58 0.67 0.46 1 + -4630.17 -5752.12 -4018.85 0.58 0.67 0.46 1 + -4446.56 -5753.65 -4250.23 0.58 0.67 0.46 1 + -5222.62 -5558.99 -3547.75 0.58 0.67 0.46 1 + -5039.15 -5560.11 -3779.04 0.58 0.67 0.46 1 + -4855.54 -5561.63 -4010.43 0.58 0.67 0.46 1 + -4672.03 -5562.93 -4241.54 0.58 0.67 0.46 1 + -5264.53 -5369.61 -3770.62 0.58 0.67 0.46 1 + -5080.79 -5370.96 -4001.86 0.58 0.67 0.46 1 + -4897.27 -5372.26 -4232.98 0.58 0.67 0.46 1 + -5306.38 -5180.42 -3993.31 0.58 0.67 0.46 1 + -5122.65 -5181.77 -4224.56 0.58 0.67 0.46 1 + -3024.65 -5930.64 5167.48 0.41 0.72 -0.55 1 + -2877.09 -6133.92 5012.12 0.41 0.72 -0.55 1 + -3293.45 -5844.68 5080.13 0.41 0.72 -0.55 1 + -3145.64 -6047.87 4925.01 0.41 0.72 -0.55 1 + -2998.08 -6251.15 4769.64 0.41 0.72 -0.55 1 + -3561.99 -5758.64 4993.01 0.41 0.72 -0.55 1 + -3414.44 -5961.91 4837.65 0.41 0.72 -0.55 1 + -3266.63 -6165.10 4682.53 0.41 0.72 -0.55 1 + -3119.07 -6368.37 4527.16 0.41 0.72 -0.55 1 + -3830.79 -5672.67 4905.66 0.41 0.72 -0.55 1 + -3682.98 -5875.87 4750.53 0.41 0.72 -0.55 1 + -3535.43 -6079.14 4595.17 0.41 0.72 -0.55 1 + -3387.85 -6282.25 4440.00 0.41 0.72 -0.55 1 + -3240.06 -6485.60 4284.68 0.41 0.72 -0.55 1 + -3951.78 -5789.90 4663.18 0.41 0.72 -0.55 1 + -3803.97 -5993.09 4508.06 0.41 0.72 -0.55 1 + -3656.42 -6196.37 4352.69 0.41 0.72 -0.55 1 + -3508.84 -6399.48 4197.53 0.41 0.72 -0.55 1 + -4072.77 -5907.13 4420.70 0.41 0.72 -0.55 1 + -3924.96 -6110.32 4265.58 0.41 0.72 -0.55 1 + -3777.41 -6313.60 4110.21 0.41 0.72 -0.55 1 + -4944.55 -4631.67 5012.27 0.56 0.61 -0.55 1 + -4705.59 -4709.43 5167.46 0.56 0.61 -0.55 1 + -5018.61 -4783.14 4769.69 0.56 0.61 -0.55 1 + -4779.74 -4860.60 4925.06 0.56 0.61 -0.55 1 + -4540.78 -4938.35 5080.24 0.56 0.61 -0.55 1 + -5092.76 -4934.31 4527.28 0.56 0.61 -0.55 1 + -4853.79 -5012.06 4682.47 0.56 0.61 -0.55 1 + -4614.93 -5089.52 4837.84 0.56 0.61 -0.55 1 + -4375.96 -5167.27 4993.03 0.56 0.61 -0.55 1 + -5166.81 -5085.77 4284.69 0.56 0.61 -0.55 1 + -4927.94 -5163.23 4440.06 0.56 0.61 -0.55 1 + -4688.98 -5240.98 4595.25 0.56 0.61 -0.55 1 + -4450.21 -5318.57 4750.42 0.56 0.61 -0.55 1 + -4211.15 -5396.20 4905.81 0.56 0.61 -0.55 1 + -5002.00 -5314.69 4197.48 0.56 0.61 -0.55 1 + -4763.13 -5392.15 4352.85 0.56 0.61 -0.55 1 + -4524.17 -5469.91 4508.03 0.56 0.61 -0.55 1 + -4285.39 -5547.49 4663.20 0.56 0.61 -0.55 1 + -4837.18 -5543.62 4110.26 0.56 0.61 -0.55 1 + -4598.31 -5621.07 4265.63 0.56 0.61 -0.55 1 + -4359.35 -5698.83 4420.82 0.56 0.61 -0.55 1 + -5337.02 -4835.86 4353.23 0.64 0.53 -0.55 1 + -5325.71 -4276.36 4898.49 0.64 0.53 -0.55 1 + -5403.75 -4432.04 4660.03 0.64 0.53 -0.55 1 + -5481.78 -4587.73 4421.57 0.64 0.53 -0.55 1 + -5548.60 -4184.04 4728.17 0.64 0.53 -0.55 1 + -5626.64 -4339.72 4489.71 0.64 0.53 -0.55 1 + -5771.25 -4091.46 4557.89 0.64 0.53 -0.55 1 + -4579.19 -3383.77 6197.14 0.59 0.42 -0.70 1 + -5167.16 -3412.41 5683.54 0.59 0.42 -0.70 1 + -4928.38 -3489.99 5838.71 0.59 0.42 -0.70 1 + -4689.42 -3567.75 5993.90 0.59 0.42 -0.70 1 + -5038.66 -3673.99 5635.83 0.59 0.42 -0.70 1 + -4799.70 -3751.74 5791.01 0.59 0.42 -0.70 1 + -4910.02 -3935.43 5587.95 0.59 0.42 -0.70 1 + -5582.85 -3045.98 5522.01 0.65 0.43 -0.63 1 + -5453.63 -3307.65 5476.58 0.65 0.43 -0.63 1 + -5324.74 -3569.29 5431.27 0.65 0.43 -0.63 1 + -5195.61 -3831.08 5385.64 0.65 0.43 -0.63 1 + -5066.53 -4092.89 5340.35 0.65 0.43 -0.63 1 + -5678.07 -3222.02 5304.98 0.65 0.43 -0.63 1 + -5549.13 -3483.64 5259.32 0.65 0.43 -0.63 1 + -5420.05 -3745.45 5214.04 0.65 0.43 -0.63 1 + -5291.02 -4006.94 5168.59 0.65 0.43 -0.63 1 + -5773.57 -3398.01 5087.73 0.65 0.43 -0.63 1 + -5644.35 -3659.67 5042.29 0.65 0.43 -0.63 1 + -5515.31 -3921.17 4996.84 0.65 0.43 -0.63 1 + -5868.98 -3573.87 4870.68 0.65 0.43 -0.63 1 + -5739.76 -3835.54 4825.24 0.65 0.43 -0.63 1 + -3479.01 -2222.51 7341.35 0.46 0.30 -0.83 1 + -3626.80 -2425.68 7186.08 0.46 0.30 -0.83 1 + -3774.37 -2628.80 7030.91 0.46 0.30 -0.83 1 + -3922.08 -2832.19 6875.56 0.46 0.30 -0.83 1 + -4069.65 -3035.31 6720.40 0.46 0.30 -0.83 1 + -3739.90 -2155.03 7220.26 0.46 0.30 -0.83 1 + -3887.69 -2358.20 7065.00 0.46 0.30 -0.83 1 + -4035.17 -2561.54 6909.74 0.46 0.30 -0.83 1 + -4182.97 -2764.71 6754.48 0.46 0.30 -0.83 1 + -4000.79 -2087.54 7099.18 0.46 0.30 -0.83 1 + -4148.26 -2290.88 6943.93 0.46 0.30 -0.83 1 + -4296.06 -2494.05 6788.66 0.46 0.30 -0.83 1 + -4261.42 -2020.34 6978.32 0.46 0.30 -0.83 1 + -4409.22 -2223.51 6823.05 0.46 0.30 -0.83 1 + -4460.62 -3162.41 6406.28 0.59 0.34 -0.73 1 + -4699.58 -3084.65 6251.10 0.59 0.34 -0.73 1 + -5416.19 -2851.86 5785.37 0.59 0.34 -0.73 1 + -4576.35 -2892.50 6438.45 0.59 0.34 -0.73 1 + -4815.31 -2814.74 6283.27 0.59 0.34 -0.73 1 + -5054.18 -2737.28 6127.90 0.59 0.34 -0.73 1 + -5293.14 -2659.53 5972.71 0.59 0.34 -0.73 1 + -4692.07 -2622.59 6470.62 0.59 0.34 -0.73 1 + -4930.94 -2545.13 6315.25 0.59 0.34 -0.73 1 + -5169.90 -2467.37 6160.06 0.59 0.34 -0.73 1 + -4807.85 -2353.11 6502.76 0.59 0.34 -0.73 1 + -5046.81 -2275.36 6347.57 0.59 0.34 -0.73 1 + -3786.93 -609.49 7498.41 0.45 0.14 -0.88 1 + -3695.80 -890.43 7498.37 0.45 0.14 -0.88 1 + -3604.60 -1171.13 7498.37 0.45 0.14 -0.88 1 + -3513.23 -1452.14 7498.39 0.45 0.14 -0.88 1 + -3422.03 -1732.84 7498.39 0.45 0.14 -0.88 1 + -3956.20 -819.75 7378.32 0.45 0.14 -0.88 1 + -3865.07 -1100.69 7378.29 0.45 0.14 -0.88 1 + -3773.63 -1381.46 7378.34 0.45 0.14 -0.88 1 + -3682.50 -1662.40 7378.30 0.45 0.14 -0.88 1 + -4125.47 -1030.01 7258.24 0.45 0.14 -0.88 1 + -4034.03 -1310.78 7258.29 0.45 0.14 -0.88 1 + -3942.89 -1591.72 7258.25 0.45 0.14 -0.88 1 + -4294.48 -1240.12 7138.49 0.45 0.14 -0.88 1 + -4203.35 -1521.06 7138.45 0.45 0.14 -0.88 1 + -4623.22 -2123.35 6614.57 0.58 0.19 -0.79 1 + -4862.18 -2045.54 6459.24 0.58 0.19 -0.79 1 + -5100.97 -1968.05 6303.92 0.58 0.19 -0.79 1 + -4475.58 -1920.13 6769.64 0.58 0.19 -0.79 1 + -4714.59 -1842.34 6614.56 0.58 0.19 -0.79 1 + -4953.38 -1764.84 6459.24 0.58 0.19 -0.79 1 + -5192.34 -1687.03 6303.91 0.58 0.19 -0.79 1 + -4327.99 -1716.92 6924.95 0.58 0.19 -0.79 1 + -4566.94 -1639.11 6769.62 0.58 0.19 -0.79 1 + -4805.79 -1561.64 6614.55 0.58 0.19 -0.79 1 + -5044.51 -1483.91 6459.27 0.58 0.19 -0.79 1 + -5283.54 -1406.34 6303.91 0.58 0.19 -0.79 1 + -4419.12 -1435.98 6924.99 0.58 0.19 -0.79 1 + -4658.15 -1358.41 6769.62 0.58 0.19 -0.79 1 + -4896.92 -1280.70 6614.59 0.58 0.19 -0.79 1 + -5135.95 -1203.13 6459.22 0.58 0.19 -0.79 1 + -4510.56 -1155.21 6924.94 0.58 0.19 -0.79 1 + -4749.28 -1077.48 6769.66 0.58 0.19 -0.79 1 + -4988.36 -999.92 6614.54 0.58 0.19 -0.79 1 + -5693.57 46.03 6197.13 0.72 0.01 -0.70 1 + -5841.14 -157.08 6041.96 0.72 0.01 -0.70 1 + -5283.51 -6267.51 -1561.60 0.58 0.79 0.19 1 + -5192.15 -6392.93 -1310.29 0.58 0.79 0.19 1 + -5100.93 -6518.66 -1059.26 0.58 0.79 0.19 1 + -5135.81 -6315.41 -1812.77 0.58 0.79 0.19 1 + -5044.59 -6441.04 -1561.40 0.58 0.79 0.19 1 + -4953.23 -6566.56 -1310.43 0.58 0.79 0.19 1 + -4862.01 -6692.19 -1059.06 0.58 0.79 0.19 1 + -4988.10 -6363.32 -2063.94 0.58 0.79 0.19 1 + -4896.89 -6488.94 -1812.57 0.58 0.79 0.19 1 + -4805.67 -6614.67 -1561.54 0.58 0.79 0.19 1 + -4714.45 -6740.04 -1310.43 0.58 0.79 0.19 1 + -4623.09 -6865.82 -1059.21 0.58 0.79 0.19 1 + -4749.33 -6536.80 -2063.94 0.58 0.79 0.19 1 + -4657.96 -6662.57 -1812.71 0.58 0.79 0.19 1 + -4566.89 -6788.15 -1561.54 0.58 0.79 0.19 1 + -4475.38 -6913.72 -1310.37 0.58 0.79 0.19 1 + -4510.26 -6710.48 -2063.88 0.58 0.79 0.19 1 + -4419.19 -6836.05 -1812.71 0.58 0.79 0.19 1 + -4327.82 -6961.83 -1561.49 0.58 0.79 0.19 1 + -5295.76 -6535.53 255.10 0.59 0.81 -0.06 1 + -4689.37 -6956.72 510.40 0.59 0.81 -0.06 1 + -4928.14 -6783.24 510.40 0.59 0.81 -0.06 1 + -5167.06 -6609.61 510.55 0.59 0.81 -0.06 1 + -4799.73 -6857.48 765.71 0.59 0.81 -0.06 1 + -5038.66 -6683.85 765.85 0.59 0.81 -0.06 1 + -4909.96 -6758.03 1020.95 0.59 0.81 -0.06 1 + -5066.47 -6607.00 1272.50 0.65 0.76 -0.10 1 + -5195.62 -6530.38 1018.02 0.65 0.76 -0.10 1 + -5324.61 -6454.16 763.65 0.65 0.76 -0.10 1 + -5453.61 -6377.60 509.38 0.65 0.76 -0.10 1 + -5582.91 -6301.18 254.96 0.65 0.76 -0.10 1 + -5290.95 -6414.92 1272.46 0.65 0.76 -0.10 1 + -5419.95 -6338.36 1018.18 0.65 0.76 -0.10 1 + -5548.95 -6262.14 763.81 0.65 0.76 -0.10 1 + -5678.10 -6185.77 509.59 0.65 0.76 -0.10 1 + -5515.29 -6222.90 1272.62 0.65 0.76 -0.10 1 + -5644.44 -6146.53 1018.40 0.65 0.76 -0.10 1 + -5773.44 -6070.32 764.03 0.65 0.76 -0.10 1 + -5739.77 -6031.08 1272.83 0.65 0.76 -0.10 1 + -5868.77 -5954.86 1018.47 0.65 0.76 -0.10 1 + -6115.15 -5644.97 -1295.27 0.69 0.71 0.10 1 + -6023.81 -5770.70 -1044.10 0.69 0.71 0.10 1 + -5932.61 -5896.22 -793.04 0.69 0.71 0.10 1 + -5841.32 -6021.86 -541.64 0.69 0.71 0.10 1 + -5750.12 -6147.39 -290.58 0.69 0.71 0.10 1 + -5902.83 -5850.30 -1301.47 0.69 0.71 0.10 1 + -5811.49 -5976.02 -1050.31 0.69 0.71 0.10 1 + -5720.34 -6101.47 -799.01 0.69 0.71 0.10 1 + -5629.00 -6227.19 -547.85 0.69 0.71 0.10 1 + -5690.51 -6055.62 -1307.68 0.69 0.71 0.10 1 + -5599.35 -6181.07 -1056.38 0.69 0.71 0.10 1 + -5508.02 -6306.79 -805.22 0.69 0.71 0.10 1 + -5478.58 -6260.81 -1313.74 0.69 0.71 0.10 1 + -5387.24 -6386.54 -1062.58 0.69 0.71 0.10 1 + -5979.55 -5915.91 -265.07 0.75 0.66 0.06 1 + -6070.75 -5790.38 -516.14 0.75 0.66 0.06 1 + -6162.09 -5664.65 -767.30 0.75 0.66 0.06 1 + -6253.24 -5539.21 -1018.60 0.75 0.66 0.06 1 + -6175.90 -5695.52 -257.10 0.75 0.66 0.06 1 + -6267.10 -5569.99 -508.16 0.75 0.66 0.06 1 + -6358.44 -5444.26 -759.32 0.75 0.66 0.06 1 + -6372.46 -5475.27 -249.11 0.75 0.66 0.06 1 + -6463.79 -5349.54 -500.27 0.75 0.66 0.06 1 + -6568.80 -5254.88 -241.13 0.75 0.66 0.06 1 + -7474.14 -3858.77 265.07 0.86 0.50 -0.06 1 + -7382.94 -3984.30 516.14 0.86 0.50 -0.06 1 + -7291.59 -4110.02 767.30 0.86 0.50 -0.06 1 + -8125.85 -2174.55 -255.16 0.95 0.31 0.06 1 + -8034.64 -2455.24 -255.16 0.95 0.31 0.06 1 + -7943.34 -2736.13 -255.30 0.95 0.31 0.06 1 + -7746.90 193.74 3281.64 0.90 -0.03 -0.44 1 + -7634.39 360.63 3497.69 0.90 -0.03 -0.44 1 + -7521.87 527.52 3713.75 0.90 -0.03 -0.44 1 + -4705.71 -6727.98 1901.15 0.56 0.77 -0.30 1 + -4944.64 -6554.35 1901.29 0.56 0.77 -0.30 1 + -4540.90 -6752.29 2145.11 0.56 0.77 -0.30 1 + -4779.82 -6578.76 2144.91 0.56 0.77 -0.30 1 + -5018.74 -6405.13 2145.05 0.56 0.77 -0.30 1 + -4376.08 -6776.70 2388.73 0.56 0.77 -0.30 1 + -4615.00 -6603.07 2388.87 0.56 0.77 -0.30 1 + -4853.92 -6429.54 2388.67 0.56 0.77 -0.30 1 + -5092.85 -6255.91 2388.81 0.56 0.77 -0.30 1 + -4211.26 -6801.02 2632.69 0.56 0.77 -0.30 1 + -4450.18 -6627.48 2632.49 0.56 0.77 -0.30 1 + -4689.10 -6453.86 2632.63 0.56 0.77 -0.30 1 + -4927.88 -6280.38 2632.63 0.56 0.77 -0.30 1 + -5166.95 -6106.70 2632.57 0.56 0.77 -0.30 1 + -4285.36 -6651.80 2876.45 0.56 0.77 -0.30 1 + -4524.29 -6478.27 2876.25 0.56 0.77 -0.30 1 + -4763.21 -6304.64 2876.39 0.56 0.77 -0.30 1 + -5001.98 -6131.16 2876.39 0.56 0.77 -0.30 1 + -4359.47 -6502.58 3120.21 0.56 0.77 -0.30 1 + -4598.39 -6329.05 3120.01 0.56 0.77 -0.30 1 + -4837.31 -6155.42 3120.15 0.56 0.77 -0.30 1 + -5336.77 -6056.48 2378.56 0.64 0.73 -0.22 1 + -5259.17 -6200.13 2132.67 0.64 0.73 -0.22 1 + -5181.14 -6343.79 1886.77 0.64 0.73 -0.22 1 + -5103.11 -6487.45 1640.88 0.64 0.73 -0.22 1 + -5481.79 -6006.41 2126.19 0.64 0.73 -0.22 1 + -5403.76 -6150.07 1880.30 0.64 0.73 -0.22 1 + -5325.73 -6293.72 1634.40 0.64 0.73 -0.22 1 + -5626.66 -5956.49 1873.67 0.64 0.73 -0.22 1 + -5548.63 -6100.15 1627.78 0.64 0.73 -0.22 1 + -5771.24 -5906.42 1621.30 0.64 0.73 -0.22 1 + -5983.51 -5124.45 2993.56 0.65 0.64 -0.40 1 + -5983.40 -4969.27 3244.86 0.65 0.64 -0.40 1 + -5789.57 -5344.07 2955.75 0.65 0.64 -0.40 1 + -5789.72 -5188.70 3206.86 0.65 0.64 -0.40 1 + -5789.61 -5033.52 3458.15 0.65 0.64 -0.40 1 + -5595.89 -5563.51 2917.75 0.65 0.64 -0.40 1 + -5595.78 -5408.32 3169.04 0.65 0.64 -0.40 1 + -5595.93 -5252.95 3420.15 0.65 0.64 -0.40 1 + -5595.82 -5097.77 3671.44 0.65 0.64 -0.40 1 + -5401.95 -5783.12 2879.93 0.65 0.64 -0.40 1 + -5402.09 -5627.75 3131.04 0.65 0.64 -0.40 1 + -5401.99 -5472.57 3382.33 0.65 0.64 -0.40 1 + -5401.99 -5317.40 3633.39 0.65 0.64 -0.40 1 + -5402.03 -5162.02 3884.74 0.65 0.64 -0.40 1 + -5208.16 -5847.37 3093.22 0.65 0.64 -0.40 1 + -5208.30 -5692.00 3344.33 0.65 0.64 -0.40 1 + -5208.20 -5536.82 3595.63 0.65 0.64 -0.40 1 + -5208.20 -5381.65 3846.69 0.65 0.64 -0.40 1 + -5014.37 -5911.62 3306.52 0.65 0.64 -0.40 1 + -5014.51 -5756.25 3557.63 0.65 0.64 -0.40 1 + -5014.41 -5601.07 3808.92 0.65 0.64 -0.40 1 + -6153.50 -5041.67 2745.39 0.71 0.64 -0.29 1 + -5964.38 -5265.72 2710.37 0.71 0.64 -0.29 1 + -5775.26 -5489.77 2675.36 0.71 0.64 -0.29 1 + -5585.92 -4916.93 3929.47 0.71 0.55 -0.45 1 + -5775.26 -4847.98 3713.79 0.71 0.55 -0.45 1 + -5964.38 -4779.09 3497.75 0.71 0.55 -0.45 1 + -6153.50 -4710.21 3281.70 0.71 0.55 -0.45 1 + -5756.66 -4677.17 3953.81 0.71 0.55 -0.45 1 + -5945.78 -4608.29 3737.76 0.71 0.55 -0.45 1 + -6134.90 -4539.40 3521.71 0.71 0.55 -0.45 1 + -5927.50 -4437.43 3977.91 0.71 0.55 -0.45 1 + -6116.62 -4368.54 3761.86 0.71 0.55 -0.45 1 + -6098.01 -4197.74 4001.88 0.71 0.55 -0.45 1 + -7011.42 -4174.13 2059.07 0.82 0.49 -0.30 1 + -7011.42 -4018.96 2310.13 0.82 0.49 -0.30 1 + -7011.32 -3863.78 2561.43 0.82 0.49 -0.30 1 + -7200.40 -2805.26 3332.83 0.86 0.28 -0.42 1 + -7291.61 -2524.57 3332.83 0.86 0.28 -0.42 1 + -7382.80 -2243.65 3332.95 0.86 0.28 -0.42 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -2264.07 -6702.41 -4557.80 9999.00 9999.00 9999.00 3 + -3145.16 -7796.14 69.20 9999.00 9999.00 9999.00 3 + -2038.05 -3585.48 7325.80 9999.00 9999.00 9999.00 3 + -2107.90 -6753.14 4557.80 9999.00 9999.00 9999.00 3 + -5771.25 -4091.46 4557.89 9999.00 9999.00 9999.00 3 + -1693.12 -6289.22 -5340.40 0.27 0.73 0.63 1 + -1951.52 -6153.27 -5385.68 0.27 0.73 0.63 1 + -2209.65 -6017.45 -5431.26 0.27 0.73 0.63 1 + -2467.82 -5881.58 -5476.50 0.27 0.73 0.63 1 + -2726.27 -5745.83 -5521.93 0.27 0.73 0.63 1 + -1925.24 -6351.65 -5168.62 0.27 0.73 0.63 1 + -2183.41 -6215.77 -5213.86 0.27 0.73 0.63 1 + -2441.53 -6079.96 -5259.44 0.27 0.73 0.63 1 + -2699.74 -5944.28 -5304.83 0.27 0.73 0.63 1 + -2157.12 -6414.15 -4996.80 0.27 0.73 0.63 1 + -2415.33 -6278.47 -5042.19 0.27 0.73 0.63 1 + -2673.45 -6142.66 -5087.77 0.27 0.73 0.63 1 + -2389.04 -6476.85 -4825.13 0.27 0.73 0.63 1 + -2647.17 -6341.04 -4870.72 0.27 0.73 0.63 1 + -1344.66 -2217.15 -8013.55 0.14 0.33 0.93 1 + -1361.15 -2494.21 -7912.20 0.14 0.33 0.93 1 + -1377.92 -2771.07 -7811.11 0.14 0.33 0.93 1 + -1394.41 -3047.88 -7709.81 0.14 0.33 0.93 1 + -1410.94 -3325.00 -7608.71 0.14 0.33 0.93 1 + -1100.26 -2381.81 -7992.57 0.14 0.33 0.93 1 + -1116.75 -2658.62 -7891.27 0.14 0.33 0.93 1 + -1133.52 -2935.48 -7790.18 0.14 0.33 0.93 1 + -1150.05 -3212.34 -7689.12 0.14 0.33 0.93 1 + -855.85 -2546.21 -7971.63 0.14 0.33 0.93 1 + -872.38 -2823.07 -7870.58 0.14 0.33 0.93 1 + -889.16 -3099.93 -7769.49 0.14 0.33 0.93 1 + -611.49 -2710.66 -7950.94 0.14 0.33 0.93 1 + -628.26 -2987.52 -7849.85 0.14 0.33 0.93 1 + -1508.21 -4847.67 -6720.39 0.20 0.52 0.83 1 + -1508.36 -4596.43 -6875.67 0.20 0.52 0.83 1 + -1508.36 -4345.37 -7030.84 0.20 0.52 0.83 1 + -1508.30 -4094.00 -7186.19 0.20 0.52 0.83 1 + -1508.30 -3842.94 -7341.36 0.20 0.52 0.83 1 + -1758.94 -4695.21 -6754.57 0.20 0.52 0.83 1 + -1759.09 -4443.97 -6909.85 0.20 0.52 0.83 1 + -1758.88 -4192.77 -7065.09 0.20 0.52 0.83 1 + -1759.03 -3941.54 -7220.37 0.20 0.52 0.83 1 + -2009.67 -4542.74 -6788.74 0.20 0.52 0.83 1 + -2009.46 -4291.54 -6943.98 0.20 0.52 0.83 1 + -2009.61 -4040.31 -7099.26 0.20 0.52 0.83 1 + -2260.03 -4390.45 -6823.09 0.20 0.52 0.83 1 + -2260.18 -4139.21 -6978.37 0.20 0.52 0.83 1 + -2705.44 -5490.80 -5785.33 0.28 0.62 0.73 1 + -2466.58 -5413.08 -5940.69 0.28 0.62 0.73 1 + -2227.80 -5335.50 -6095.86 0.28 0.62 0.73 1 + -1988.71 -5257.86 -6251.17 0.28 0.62 0.73 1 + -1749.93 -5180.27 -6406.34 0.28 0.62 0.73 1 + -2718.79 -5262.83 -5972.76 0.28 0.62 0.73 1 + -2479.93 -5185.11 -6128.12 0.28 0.62 0.73 1 + -2240.92 -5107.61 -6283.24 0.28 0.62 0.73 1 + -2002.06 -5029.88 -6438.60 0.28 0.62 0.73 1 + -2732.14 -5034.86 -6160.19 0.28 0.62 0.73 1 + -2493.13 -4957.35 -6315.31 0.28 0.62 0.73 1 + -2254.27 -4879.63 -6470.67 0.28 0.62 0.73 1 + -2745.37 -4807.30 -6347.53 0.28 0.62 0.73 1 + -2506.52 -4729.58 -6502.89 0.28 0.62 0.73 1 + -3113.35 -5668.03 -5396.23 0.41 0.70 0.59 1 + -3327.72 -5708.85 -5197.20 0.41 0.70 0.59 1 + -3542.00 -5749.90 -4998.42 0.41 0.70 0.59 1 + -3756.31 -5790.89 -4799.21 0.41 0.70 0.59 1 + -3970.80 -5831.88 -4600.30 0.41 0.70 0.59 1 + -3079.50 -5867.91 -5181.60 0.41 0.70 0.59 1 + -3293.60 -5908.95 -4982.52 0.41 0.70 0.59 1 + -3508.10 -5949.95 -4783.61 0.41 0.70 0.59 1 + -3722.25 -5990.82 -4584.71 0.41 0.70 0.59 1 + -3045.39 -6068.01 -4966.93 0.41 0.70 0.59 1 + -3259.75 -6108.83 -4767.90 0.41 0.70 0.59 1 + -3473.91 -6149.70 -4569.00 0.41 0.70 0.59 1 + -3011.33 -6267.95 -4752.44 0.41 0.70 0.59 1 + -3225.70 -6308.76 -4553.41 0.41 0.70 0.59 1 + -2391.06 -7616.24 -2686.35 0.31 0.92 0.25 1 + -2567.26 -7621.50 -2449.21 0.31 0.92 0.25 1 + -2743.56 -7626.84 -2212.48 0.31 0.92 0.25 1 + -2919.61 -7632.05 -1975.54 0.31 0.92 0.25 1 + -3095.86 -7637.54 -1738.49 0.31 0.92 0.25 1 + -2290.12 -7721.29 -2429.33 0.31 0.92 0.25 1 + -2466.17 -7726.50 -2192.39 0.31 0.92 0.25 1 + -2642.47 -7731.84 -1955.66 0.31 0.92 0.25 1 + -2818.58 -7737.28 -1718.82 0.31 0.92 0.25 1 + -2189.03 -7826.29 -2172.51 0.31 0.92 0.25 1 + -2365.14 -7831.73 -1935.66 0.31 0.92 0.25 1 + -2541.44 -7837.07 -1698.94 0.31 0.92 0.25 1 + -2088.00 -7931.52 -1915.79 0.31 0.92 0.25 1 + -2264.31 -7936.86 -1679.06 0.31 0.92 0.25 1 + -2560.02 -6583.97 -4522.73 0.33 0.79 0.51 1 + -2823.82 -6455.01 -4553.93 0.33 0.79 0.51 1 + -2507.36 -6757.14 -4289.40 0.33 0.79 0.51 1 + -2771.07 -6628.36 -4320.90 0.33 0.79 0.51 1 + -3034.87 -6499.40 -4352.10 0.33 0.79 0.51 1 + -2718.06 -6801.57 -4087.66 0.33 0.79 0.51 1 + -2981.86 -6672.61 -4118.86 0.33 0.79 0.51 1 + -3598.30 -6946.07 -3121.41 0.36 0.85 0.39 1 + -3329.72 -7067.73 -3104.13 0.36 0.85 0.39 1 + -3061.40 -7189.52 -3087.07 0.36 0.85 0.39 1 + -2792.68 -7311.13 -3070.00 0.36 0.85 0.39 1 + -2524.17 -7433.02 -3052.82 0.36 0.85 0.39 1 + -3410.66 -6922.58 -3348.13 0.36 0.85 0.39 1 + -3142.14 -7044.10 -3331.17 0.36 0.85 0.39 1 + -2873.63 -7165.98 -3313.99 0.36 0.85 0.39 1 + -2605.25 -7287.54 -3296.83 0.36 0.85 0.39 1 + -3223.08 -6898.95 -3575.17 0.36 0.85 0.39 1 + -2954.51 -7020.61 -3557.89 0.36 0.85 0.39 1 + -2686.13 -7142.17 -3540.73 0.36 0.85 0.39 1 + -3035.65 -6875.36 -3802.00 0.36 0.85 0.39 1 + -2767.08 -6997.02 -3784.72 0.36 0.85 0.39 1 + -3492.61 -7121.39 -2812.60 0.37 0.88 0.30 1 + -3401.41 -7246.92 -2561.54 0.37 0.88 0.30 1 + -3310.00 -7372.55 -2310.36 0.37 0.88 0.30 1 + -3218.94 -7498.12 -2059.09 0.37 0.88 0.30 1 + -3223.20 -7241.22 -2796.85 0.37 0.88 0.30 1 + -3132.00 -7366.75 -2545.78 0.37 0.88 0.30 1 + -3040.60 -7492.38 -2294.60 0.37 0.88 0.30 1 + -2953.85 -7361.29 -2781.18 0.37 0.88 0.30 1 + -2862.45 -7486.92 -2530.00 0.37 0.88 0.30 1 + -2684.45 -7481.12 -2765.43 0.37 0.88 0.30 1 + -3421.95 -7481.71 -1803.52 0.45 0.85 0.27 1 + -3513.36 -7356.08 -2054.70 0.45 0.85 0.27 1 + -3604.56 -7230.55 -2305.76 0.45 0.85 0.27 1 + -3695.82 -7104.87 -2557.15 0.45 0.85 0.27 1 + -3787.02 -6979.34 -2808.21 0.45 0.85 0.27 1 + -3682.48 -7342.72 -1812.97 0.45 0.85 0.27 1 + -3773.88 -7217.09 -2064.15 0.45 0.85 0.27 1 + -3864.94 -7091.52 -2315.42 0.45 0.85 0.27 1 + -3956.34 -6965.89 -2566.60 0.45 0.85 0.27 1 + -3943.00 -7203.74 -1822.42 0.45 0.85 0.27 1 + -4034.06 -7078.16 -2073.69 0.45 0.85 0.27 1 + -4125.47 -6952.54 -2324.87 0.45 0.85 0.27 1 + -4203.24 -7065.04 -1832.05 0.45 0.85 0.27 1 + -4294.64 -6939.41 -2083.23 0.45 0.85 0.27 1 + -4098.05 -6006.87 -4250.21 0.46 0.76 0.46 1 + -4039.82 -6181.10 -4018.78 0.46 0.76 0.46 1 + -3981.98 -6355.26 -3787.53 0.46 0.76 0.46 1 + -3923.81 -6529.31 -3556.27 0.46 0.76 0.46 1 + -3865.70 -6703.70 -3324.98 0.46 0.76 0.46 1 + -3846.98 -6162.37 -4241.54 0.46 0.76 0.46 1 + -3788.81 -6336.41 -4010.27 0.46 0.76 0.46 1 + -3730.97 -6510.57 -3779.03 0.46 0.76 0.46 1 + -3672.92 -6684.79 -3547.91 0.46 0.76 0.46 1 + -3595.97 -6317.67 -4233.03 0.46 0.76 0.46 1 + -3537.92 -6491.89 -4001.91 0.46 0.76 0.46 1 + -3480.08 -6666.05 -3770.67 0.46 0.76 0.46 1 + -3345.08 -6473.15 -4224.67 0.46 0.76 0.46 1 + -3287.24 -6647.31 -3993.42 0.46 0.76 0.46 1 + -1803.19 -5400.68 6197.13 0.21 0.69 -0.70 1 + -1655.61 -5603.80 6041.96 0.21 0.69 -0.70 1 + -1943.95 -5562.32 5994.03 0.21 0.69 -0.70 1 + -1796.38 -5765.43 5838.87 0.21 0.69 -0.70 1 + -1648.82 -5968.70 5683.50 0.21 0.69 -0.70 1 + -2084.81 -5724.13 5791.09 0.21 0.69 -0.70 1 + -1937.25 -5927.40 5635.73 0.21 0.69 -0.70 1 + -2225.58 -5885.76 5587.99 0.21 0.69 -0.70 1 + -2950.15 -6569.96 4353.36 0.30 0.77 -0.55 1 + -2826.06 -6448.06 4591.82 0.30 0.77 -0.55 1 + -2702.10 -6325.74 4830.28 0.30 0.77 -0.55 1 + -2578.14 -6203.41 5068.74 0.30 0.77 -0.55 1 + -2669.36 -6631.21 4421.44 0.30 0.77 -0.55 1 + -2545.40 -6508.89 4659.90 0.30 0.77 -0.55 1 + -2421.45 -6386.57 4898.36 0.30 0.77 -0.55 1 + -2388.56 -6692.30 4489.72 0.30 0.77 -0.55 1 + -2264.60 -6569.98 4728.18 0.30 0.77 -0.55 1 + -2107.90 -6753.14 4557.80 0.30 0.77 -0.55 1 + -757.62 -1466.66 8251.94 0.09 0.23 -0.97 1 + -610.41 -1718.17 8205.13 0.09 0.23 -0.97 1 + -462.84 -1969.57 8158.10 0.09 0.23 -0.97 1 + -315.27 -2220.96 8111.06 0.09 0.23 -0.97 1 + -904.37 -1712.39 8179.09 0.09 0.23 -0.97 1 + -756.81 -1963.79 8132.05 0.09 0.23 -0.97 1 + -609.24 -2215.19 8085.01 0.09 0.23 -0.97 1 + -1050.92 -1958.27 8106.21 0.09 0.23 -0.97 1 + -903.35 -2209.67 8059.17 0.09 0.23 -0.97 1 + -1197.32 -2203.89 8033.13 0.09 0.23 -0.97 1 + -1360.27 -3949.31 7305.88 0.21 0.49 -0.85 1 + -1507.84 -4152.42 7150.72 0.21 0.49 -0.85 1 + -1655.63 -4355.59 6995.44 0.21 0.49 -0.85 1 + -1803.11 -4558.94 6840.20 0.21 0.49 -0.85 1 + -1648.66 -3914.04 7253.20 0.21 0.49 -0.85 1 + -1796.23 -4117.16 7098.04 0.21 0.49 -0.85 1 + -1944.02 -4320.33 6942.76 0.21 0.49 -0.85 1 + -1937.14 -3878.88 7200.74 0.21 0.49 -0.85 1 + -2084.93 -4082.05 7045.46 0.21 0.49 -0.85 1 + -2225.54 -3843.62 7148.06 0.21 0.49 -0.85 1 + -1984.55 -5132.10 6376.68 0.29 0.64 -0.71 1 + -2123.90 -5295.74 6174.12 0.29 0.64 -0.71 1 + -2542.37 -5786.80 5566.88 0.29 0.64 -0.71 1 + -2267.41 -5077.67 6311.97 0.29 0.64 -0.71 1 + -2406.98 -5241.08 6109.56 0.29 0.64 -0.71 1 + -2546.43 -5404.90 5907.15 0.29 0.64 -0.71 1 + -2685.77 -5568.39 5704.78 0.29 0.64 -0.71 1 + -2550.48 -5023.01 6247.41 0.29 0.64 -0.71 1 + -2689.84 -5186.65 6044.85 0.29 0.64 -0.71 1 + -2829.18 -5350.13 5842.48 0.29 0.64 -0.71 1 + -2833.33 -4968.42 6182.90 0.29 0.64 -0.71 1 + -2972.68 -5132.06 5980.33 0.29 0.64 -0.71 1 + -1171.72 -3684.02 7482.91 0.21 0.41 -0.89 1 + -1460.51 -3651.23 7430.41 0.21 0.41 -0.89 1 + -1749.17 -3618.49 7378.23 0.21 0.41 -0.89 1 + -2038.05 -3585.48 7325.80 0.21 0.41 -0.89 1 + -2326.93 -3552.80 7273.51 0.21 0.41 -0.89 1 + -1309.71 -3436.50 7565.70 0.21 0.41 -0.89 1 + -1598.37 -3403.44 7513.38 0.21 0.41 -0.89 1 + -1887.25 -3370.76 7461.09 0.21 0.41 -0.89 1 + -2175.82 -3337.92 7408.70 0.21 0.41 -0.89 1 + -1447.57 -3188.71 7648.68 0.21 0.41 -0.89 1 + -1736.36 -3155.93 7596.17 0.21 0.41 -0.89 1 + -2024.93 -3123.09 7543.78 0.21 0.41 -0.89 1 + -1585.34 -2941.15 7731.58 0.21 0.41 -0.89 1 + -1874.13 -2908.36 7679.08 0.21 0.41 -0.89 1 + -2542.31 -3849.29 7047.03 0.29 0.52 -0.80 1 + -2402.86 -4087.74 6942.15 0.29 0.52 -0.80 1 + -2263.36 -4326.03 6837.67 0.29 0.52 -0.80 1 + -2124.00 -4564.26 6732.86 0.29 0.52 -0.80 1 + -1984.64 -4802.82 6628.20 0.29 0.52 -0.80 1 + -2685.72 -4039.76 6872.56 0.29 0.52 -0.80 1 + -2546.36 -4277.99 6767.75 0.29 0.52 -0.80 1 + -2406.86 -4516.27 6663.27 0.29 0.52 -0.80 1 + -2267.59 -4754.60 6558.68 0.29 0.52 -0.80 1 + -2829.22 -4230.00 6698.16 0.29 0.52 -0.80 1 + -2689.95 -4468.33 6593.56 0.29 0.52 -0.80 1 + -2550.45 -4706.61 6489.09 0.29 0.52 -0.80 1 + -2972.81 -4420.34 6523.97 0.29 0.52 -0.80 1 + -2833.32 -4658.62 6419.49 0.29 0.52 -0.80 1 + -2893.38 -5769.53 5400.20 0.39 0.65 -0.65 1 + -3164.91 -5688.74 5316.91 0.39 0.65 -0.65 1 + -3436.44 -5607.94 5233.62 0.39 0.65 -0.65 1 + -3707.88 -5526.97 5150.17 0.39 0.65 -0.65 1 + -3030.52 -5548.04 5539.04 0.39 0.65 -0.65 1 + -3302.04 -5467.25 5455.75 0.39 0.65 -0.65 1 + -3573.57 -5386.46 5372.46 0.39 0.65 -0.65 1 + -3167.97 -5326.66 5677.99 0.39 0.65 -0.65 1 + -3439.50 -5245.86 5594.70 0.39 0.65 -0.65 1 + -3305.10 -5105.17 5816.83 0.39 0.65 -0.65 1 + -1424.05 -2395.32 7911.51 0.20 0.28 -0.94 1 + -1587.17 -2619.61 7810.12 0.20 0.28 -0.94 1 + -1549.64 -2132.87 7962.04 0.20 0.28 -0.94 1 + -1712.57 -2357.27 7860.95 0.20 0.28 -0.94 1 + -1875.69 -2581.56 7759.56 0.20 0.28 -0.94 1 + -1837.85 -2094.66 7911.57 0.20 0.28 -0.94 1 + -2000.96 -2318.95 7810.18 0.20 0.28 -0.94 1 + -3636.89 -4570.47 6020.09 0.40 0.56 -0.73 1 + -3510.58 -4396.84 6222.80 0.40 0.56 -0.73 1 + -3492.87 -4807.54 5918.80 0.40 0.56 -0.73 1 + -3366.89 -4634.01 6121.62 0.40 0.56 -0.73 1 + -3240.58 -4460.38 6324.34 0.40 0.56 -0.73 1 + -3223.13 -4871.16 6020.10 0.40 0.56 -0.73 1 + -3096.82 -4697.53 6222.81 0.40 0.56 -0.73 1 + -4646.14 -5892.54 3749.05 0.53 0.72 -0.45 1 + -4459.52 -5886.75 3977.78 0.53 0.72 -0.45 1 + -4593.98 -6071.80 3520.31 0.53 0.72 -0.45 1 + -4407.36 -6066.02 3749.05 0.53 0.72 -0.45 1 + -4220.74 -6060.23 3977.78 0.53 0.72 -0.45 1 + -4355.21 -6245.28 3520.31 0.53 0.72 -0.45 1 + -4168.29 -6239.70 3749.10 0.53 0.72 -0.45 1 + -4110.91 -5234.29 5149.98 0.50 0.58 -0.65 1 + -4271.52 -5001.21 5233.65 0.50 0.58 -0.65 1 + -4432.25 -4767.94 5316.94 0.50 0.58 -0.65 1 + -4592.99 -4534.67 5400.24 0.50 0.58 -0.65 1 + -4018.48 -5063.32 5372.37 0.50 0.58 -0.65 1 + -4179.22 -4830.06 5455.66 0.50 0.58 -0.65 1 + -4339.96 -4596.79 5538.96 0.50 0.58 -0.65 1 + -3926.24 -4892.19 5594.74 0.50 0.58 -0.65 1 + -4086.98 -4658.92 5678.03 0.50 0.58 -0.65 1 + -3833.94 -4721.04 5816.75 0.50 0.58 -0.65 1 + -3954.47 -3371.56 6628.25 0.41 0.43 -0.80 1 + -3684.61 -3430.40 6732.87 0.41 0.43 -0.80 1 + -3415.04 -3489.42 6837.61 0.41 0.43 -0.80 1 + -3145.09 -3548.48 6942.15 0.41 0.43 -0.80 1 + -2875.30 -3607.44 7046.98 0.41 0.43 -0.80 1 + -3821.29 -3625.70 6558.72 0.41 0.43 -0.80 1 + -3551.56 -3684.82 6663.16 0.41 0.43 -0.80 1 + -3281.77 -3743.78 6768.00 0.41 0.43 -0.80 1 + -3012.14 -3802.68 6872.52 0.41 0.43 -0.80 1 + -3688.25 -3880.12 6489.01 0.41 0.43 -0.80 1 + -3418.39 -3938.96 6593.63 0.41 0.43 -0.80 1 + -3148.75 -3997.86 6698.15 0.41 0.43 -0.80 1 + -3555.30 -4134.32 6419.38 0.41 0.43 -0.80 1 + -3285.44 -4193.16 6524.00 0.41 0.43 -0.80 1 + -2659.92 -3310.95 7273.47 0.33 0.33 -0.89 1 + -2780.28 -3046.22 7325.80 0.33 0.33 -0.89 1 + -2900.84 -2781.88 7378.16 0.33 0.33 -0.89 1 + -3021.11 -2517.37 7430.41 0.33 0.33 -0.89 1 + -3141.54 -2252.76 7482.95 0.33 0.33 -0.89 1 + -2502.24 -3100.84 7408.66 0.33 0.33 -0.89 1 + -2622.51 -2836.33 7460.91 0.33 0.33 -0.89 1 + -2743.07 -2571.99 7513.27 0.33 0.33 -0.89 1 + -2863.41 -2307.60 7565.73 0.33 0.33 -0.89 1 + -2344.46 -2890.95 7543.77 0.33 0.33 -0.89 1 + -2464.80 -2626.56 7596.23 0.33 0.33 -0.89 1 + -2585.36 -2362.22 7648.59 0.33 0.33 -0.89 1 + -2186.75 -2681.18 7679.09 0.33 0.33 -0.89 1 + -2307.32 -2416.84 7731.45 0.33 0.33 -0.89 1 + -4718.01 -4206.11 5566.85 0.52 0.47 -0.71 1 + -4380.21 -3656.52 6174.05 0.52 0.47 -0.71 1 + -4267.58 -3473.39 6376.69 0.52 0.47 -0.71 1 + -4465.97 -4275.01 5704.74 0.52 0.47 -0.71 1 + -4353.29 -4091.87 5907.03 0.52 0.47 -0.71 1 + -4240.94 -3908.69 6109.45 0.52 0.47 -0.71 1 + -4128.40 -3725.68 6311.90 0.52 0.47 -0.71 1 + -4214.02 -4344.04 5842.43 0.52 0.47 -0.71 1 + -4101.49 -4161.03 6044.87 0.52 0.47 -0.71 1 + -3989.14 -3977.85 6247.30 0.52 0.47 -0.71 1 + -3962.22 -4413.20 5980.28 0.52 0.47 -0.71 1 + -3849.87 -4230.02 6182.70 0.52 0.47 -0.71 1 + -3778.59 -3123.71 6840.17 0.40 0.35 -0.84 1 + -3631.02 -2920.60 6995.34 0.40 0.35 -0.84 1 + -3483.22 -2717.42 7150.61 0.40 0.35 -0.84 1 + -3335.75 -2514.09 7305.86 0.40 0.35 -0.84 1 + -3508.31 -3183.91 6942.72 0.40 0.35 -0.84 1 + -3360.74 -2980.79 7097.88 0.40 0.35 -0.84 1 + -3212.94 -2777.62 7253.15 0.40 0.35 -0.84 1 + -3238.10 -3244.21 7045.47 0.40 0.35 -0.84 1 + -3090.30 -3041.04 7200.74 0.40 0.35 -0.84 1 + -2967.82 -3304.40 7148.01 0.40 0.35 -0.84 1 + -2014.87 -986.08 8111.06 0.19 0.16 -0.97 1 + -1730.17 -1048.75 8158.10 0.19 0.16 -0.97 1 + -1445.47 -1111.42 8205.13 0.19 0.16 -0.97 1 + -1160.72 -1174.07 8251.93 0.19 0.16 -0.97 1 + -1918.70 -1263.95 8084.97 0.19 0.16 -0.97 1 + -1634.00 -1326.62 8132.01 0.19 0.16 -0.97 1 + -1349.30 -1389.29 8179.05 0.19 0.16 -0.97 1 + -1822.34 -1541.92 8059.18 0.19 0.16 -0.97 1 + -1537.65 -1604.58 8106.22 0.19 0.16 -0.97 1 + -1726.17 -1819.78 8033.09 0.19 0.16 -0.97 1 + -5103.06 -4368.94 5068.77 0.64 0.53 -0.55 1 + -5181.09 -4524.63 4830.31 0.64 0.53 -0.55 1 + -5259.13 -4680.31 4591.85 0.64 0.53 -0.55 1 + -4818.06 -3306.31 6041.77 0.59 0.42 -0.70 1 + -3095.94 -1860.58 7608.69 0.31 0.18 -0.93 1 + -2919.72 -1646.20 7709.78 0.31 0.18 -0.93 1 + -2743.63 -1432.08 7811.08 0.31 0.18 -0.93 1 + -2567.18 -1217.77 7912.22 0.31 0.18 -0.93 1 + -2391.02 -1003.41 8013.56 0.31 0.18 -0.93 1 + -2818.78 -1922.85 7689.08 0.31 0.18 -0.93 1 + -2642.39 -1708.78 7790.18 0.31 0.18 -0.93 1 + -2466.23 -1494.42 7891.51 0.31 0.18 -0.93 1 + -2290.09 -1280.27 7992.57 0.31 0.18 -0.93 1 + -2541.45 -1985.43 7769.47 0.31 0.18 -0.93 1 + -2365.23 -1771.05 7870.56 0.31 0.18 -0.93 1 + -2189.08 -1556.90 7971.62 0.31 0.18 -0.93 1 + -2264.36 -2047.93 7849.82 0.31 0.18 -0.93 1 + -2088.14 -1833.55 7950.91 0.31 0.18 -0.93 1 + -1381.05 16.96 8301.46 0.18 0.06 -0.98 1 + -1289.84 -263.74 8301.46 0.18 0.06 -0.98 1 + -1198.48 -544.75 8301.48 0.18 0.06 -0.98 1 + -1107.27 -825.45 8301.48 0.18 0.06 -0.98 1 + -1574.43 -201.03 8253.93 0.18 0.06 -0.98 1 + -1482.99 -481.81 8253.98 0.18 0.06 -0.98 1 + -1391.86 -762.75 8253.94 0.18 0.06 -0.98 1 + -1767.63 -419.12 8206.69 0.18 0.06 -0.98 1 + -1676.50 -700.06 8206.66 0.18 0.06 -0.98 1 + -1961.01 -637.12 8159.16 0.18 0.06 -0.98 1 + -3218.87 -1511.57 7627.40 0.37 0.12 -0.92 1 + -3310.08 -1230.88 7627.40 0.37 0.12 -0.92 1 + -3401.21 -949.94 7627.44 0.37 0.12 -0.92 1 + -3492.65 -669.16 7627.39 0.37 0.12 -0.92 1 + -3040.70 -1298.46 7727.54 0.37 0.12 -0.92 1 + -3131.91 -1017.76 7727.54 0.37 0.12 -0.92 1 + -3223.04 -736.83 7727.57 0.37 0.12 -0.92 1 + -2862.59 -1085.37 7827.92 0.37 0.12 -0.92 1 + -2953.72 -804.43 7827.96 0.37 0.12 -0.92 1 + -2684.42 -872.25 7928.06 0.37 0.12 -0.92 1 + -6253.28 -1566.10 5409.89 0.75 0.24 -0.62 1 + -6162.08 -1846.80 5409.89 0.75 0.24 -0.62 1 + -6070.88 -2127.71 5409.76 0.75 0.24 -0.62 1 + -2524.16 -593.70 8013.55 0.36 0.03 -0.93 1 + -2792.76 -523.76 7912.20 0.36 0.03 -0.93 1 + -3061.25 -454.16 7811.11 0.36 0.03 -0.93 1 + -3329.62 -384.31 7709.81 0.36 0.03 -0.93 1 + -3598.27 -314.39 7608.71 0.36 0.03 -0.93 1 + -2605.23 -310.38 7992.57 0.36 0.03 -0.93 1 + -2873.60 -240.52 7891.27 0.36 0.03 -0.93 1 + -3142.09 -170.92 7790.18 0.36 0.03 -0.93 1 + -3410.51 -101.08 7689.12 0.36 0.03 -0.93 1 + -2686.07 -27.13 7971.63 0.36 0.03 -0.93 1 + -2954.49 42.71 7870.58 0.36 0.03 -0.93 1 + -3222.98 112.31 7769.49 0.36 0.03 -0.93 1 + -2766.96 256.10 7950.94 0.36 0.03 -0.93 1 + -3035.46 325.69 7849.85 0.36 0.03 -0.93 1 + -3335.67 -7658.91 -1018.61 0.40 0.91 0.06 1 + -3483.25 -7610.96 -767.55 0.40 0.91 0.06 1 + -3630.80 -7563.01 -516.23 0.40 0.91 0.06 1 + -3778.61 -7514.99 -265.15 0.40 0.91 0.06 1 + -3213.02 -7729.58 -759.48 0.40 0.91 0.06 1 + -3360.59 -7681.63 -508.41 0.40 0.91 0.06 1 + -3508.14 -7633.68 -257.10 0.40 0.91 0.06 1 + -3090.43 -7800.49 -500.34 0.40 0.91 0.06 1 + -3237.98 -7752.54 -249.02 0.40 0.91 0.06 1 + -2967.78 -7871.15 -241.20 0.40 0.91 0.06 1 + -2875.28 -7916.30 75.01 0.41 0.91 -0.03 1 + -3145.16 -7796.14 69.20 0.41 0.91 -0.03 1 + -3414.88 -7676.29 63.12 0.41 0.91 -0.03 1 + -3684.52 -7556.20 57.29 0.41 0.91 -0.03 1 + -3954.46 -7436.28 51.48 0.41 0.91 -0.03 1 + -3012.11 -7847.57 327.67 0.41 0.91 -0.03 1 + -3281.74 -7727.48 321.84 0.41 0.91 -0.03 1 + -3551.47 -7607.63 315.76 0.41 0.91 -0.03 1 + -3821.17 -7487.78 309.94 0.41 0.91 -0.03 1 + -3148.69 -7778.91 580.32 0.41 0.91 -0.03 1 + -3418.40 -7659.06 574.50 0.41 0.91 -0.03 1 + -3688.12 -7539.21 568.42 0.41 0.91 -0.03 1 + -3285.35 -7710.49 832.97 0.41 0.91 -0.03 1 + -3555.07 -7590.64 826.90 0.41 0.91 -0.03 1 + -4069.56 -7368.35 -290.55 0.46 0.88 0.10 1 + -3922.01 -7416.30 -541.87 0.46 0.88 0.10 1 + -3774.44 -7464.25 -792.93 0.46 0.88 0.10 1 + -3626.64 -7512.27 -1044.27 0.46 0.88 0.10 1 + -3479.07 -7560.22 -1295.33 0.46 0.88 0.10 1 + -4182.79 -7277.85 -547.97 0.46 0.88 0.10 1 + -4035.24 -7325.80 -799.29 0.46 0.88 0.10 1 + -3887.42 -7373.82 -1050.37 0.46 0.88 0.10 1 + -3739.87 -7421.77 -1301.69 0.46 0.88 0.10 1 + -4296.02 -7187.35 -805.40 0.46 0.88 0.10 1 + -4148.20 -7235.36 -1056.48 0.46 0.88 0.10 1 + -4000.65 -7283.31 -1307.80 0.46 0.88 0.10 1 + -4409.05 -7097.16 -1062.58 0.46 0.88 0.10 1 + -4261.50 -7145.11 -1313.90 0.46 0.88 0.10 1 + -4267.66 -7256.78 254.90 0.52 0.85 -0.10 1 + -4380.23 -7157.49 509.26 0.52 0.85 -0.10 1 + -4492.80 -7058.55 763.54 0.52 0.85 -0.10 1 + -4605.22 -6959.30 1018.10 0.52 0.85 -0.10 1 + -4717.94 -6860.21 1272.52 0.52 0.85 -0.10 1 + -4128.48 -7311.69 509.41 0.52 0.85 -0.10 1 + -4240.76 -7212.59 763.83 0.52 0.85 -0.10 1 + -4353.48 -7113.50 1018.25 0.52 0.85 -0.10 1 + -4465.91 -7014.35 1272.46 0.52 0.85 -0.10 1 + -3989.02 -7366.79 763.97 0.52 0.85 -0.10 1 + -4101.59 -7267.50 1018.34 0.52 0.85 -0.10 1 + -4214.02 -7168.35 1272.55 0.52 0.85 -0.10 1 + -3849.70 -7421.84 1018.34 0.52 0.85 -0.10 1 + -3962.27 -7322.55 1272.70 0.52 0.85 -0.10 1 + -5416.16 -6449.98 -36.42 0.59 0.81 0.02 1 + -5177.24 -6623.61 -36.57 0.59 0.81 0.02 1 + -4938.46 -6797.09 -36.56 0.59 0.81 0.02 1 + -4699.39 -6970.77 -36.51 0.59 0.81 0.02 1 + -4460.62 -7144.25 -36.51 0.59 0.81 0.02 1 + -5292.97 -6531.63 -292.22 0.59 0.81 0.02 1 + -5054.04 -6705.26 -292.37 0.59 0.81 0.02 1 + -4815.12 -6878.79 -292.17 0.59 0.81 0.02 1 + -4576.20 -7052.42 -292.31 0.59 0.81 0.02 1 + -5169.77 -6613.28 -548.02 0.59 0.81 0.02 1 + -4930.85 -6786.82 -547.82 0.59 0.81 0.02 1 + -4691.93 -6960.44 -547.97 0.59 0.81 0.02 1 + -5046.72 -6695.04 -803.42 0.59 0.81 0.02 1 + -4807.80 -6868.67 -803.57 0.59 0.81 0.02 1 + -4579.14 -7056.17 255.16 0.59 0.81 -0.06 1 + -4817.92 -6882.69 255.16 0.59 0.81 -0.06 1 + -5056.84 -6709.06 255.30 0.59 0.81 -0.06 1 + -2578.18 -7307.87 3281.64 0.30 0.84 -0.44 1 + -2702.13 -7149.29 3497.69 0.30 0.84 -0.44 1 + -2826.09 -6990.71 3713.75 0.30 0.84 -0.44 1 + -2949.95 -6831.91 3929.72 0.30 0.84 -0.44 1 + -2421.33 -7237.48 3521.60 0.30 0.84 -0.44 1 + -2545.28 -7078.90 3737.65 0.30 0.84 -0.44 1 + -2669.23 -6920.32 3953.71 0.30 0.84 -0.44 1 + -2264.65 -7167.18 3761.85 0.30 0.84 -0.44 1 + -2388.60 -7008.60 3977.91 0.30 0.84 -0.44 1 + -2107.80 -7096.79 4001.81 0.30 0.84 -0.44 1 + -3707.77 -7078.10 2640.54 0.39 0.87 -0.29 1 + -3436.46 -7189.04 2675.31 0.39 0.87 -0.29 1 + -3164.94 -7299.67 2710.32 0.39 0.87 -0.29 1 + -2893.42 -7410.30 2745.32 0.39 0.87 -0.29 1 + -3573.73 -7214.07 2415.20 0.39 0.87 -0.29 1 + -3302.21 -7324.70 2450.21 0.39 0.87 -0.29 1 + -3030.69 -7435.33 2485.21 0.39 0.87 -0.29 1 + -3439.48 -7350.08 2189.99 0.39 0.87 -0.29 1 + -3167.95 -7460.71 2224.99 0.39 0.87 -0.29 1 + -3305.22 -7485.75 1964.88 0.39 0.87 -0.29 1 + -3222.91 -7563.00 1664.71 0.40 0.90 -0.17 1 + -3096.81 -7666.59 1418.62 0.40 0.90 -0.17 1 + -3492.88 -7443.91 1653.03 0.40 0.90 -0.17 1 + -3366.78 -7547.76 1407.19 0.40 0.90 -0.17 1 + -3240.67 -7651.35 1161.10 0.40 0.90 -0.17 1 + -3636.75 -7428.58 1395.85 0.40 0.90 -0.17 1 + -3510.64 -7532.17 1149.76 0.40 0.90 -0.17 1 + -2877.04 -7226.23 3244.69 0.41 0.82 -0.40 1 + -3024.83 -7274.14 2993.51 0.41 0.82 -0.40 1 + -2998.20 -7061.68 3458.04 0.41 0.82 -0.40 1 + -3145.69 -7109.76 3206.77 0.41 0.82 -0.40 1 + -3293.48 -7157.67 2955.59 0.41 0.82 -0.40 1 + -3119.06 -6897.30 3671.30 0.41 0.82 -0.40 1 + -3266.85 -6945.21 3420.12 0.41 0.82 -0.40 1 + -3414.34 -6993.28 3168.85 0.41 0.82 -0.40 1 + -3562.13 -7041.19 2917.67 0.41 0.82 -0.40 1 + -3240.23 -6732.75 3884.65 0.41 0.82 -0.40 1 + -3387.71 -6780.82 3633.38 0.41 0.82 -0.40 1 + -3535.50 -6828.73 3382.20 0.41 0.82 -0.40 1 + -3683.07 -6876.68 3131.14 0.41 0.82 -0.40 1 + -3830.78 -6924.72 2879.75 0.41 0.82 -0.40 1 + -3508.88 -6616.28 3846.73 0.41 0.82 -0.40 1 + -3656.36 -6664.35 3595.46 0.41 0.82 -0.40 1 + -3804.15 -6712.26 3344.28 0.41 0.82 -0.40 1 + -3951.72 -6760.21 3093.22 0.41 0.82 -0.40 1 + -3777.53 -6499.80 3808.81 0.41 0.82 -0.40 1 + -3925.01 -6547.87 3557.54 0.41 0.82 -0.40 1 + -4072.80 -6595.79 3306.36 0.41 0.82 -0.40 1 + -4593.05 -6858.03 1640.88 0.50 0.84 -0.22 1 + -4432.30 -6887.85 1886.78 0.50 0.84 -0.22 1 + -4271.56 -6917.68 2132.67 0.50 0.84 -0.22 1 + -4110.67 -6947.30 2378.51 0.50 0.84 -0.22 1 + -4340.02 -7009.93 1634.22 0.50 0.84 -0.22 1 + -4179.28 -7039.75 1880.12 0.50 0.84 -0.22 1 + -4018.53 -7069.58 2126.01 0.50 0.84 -0.22 1 + -4086.99 -7162.08 1627.82 0.50 0.84 -0.22 1 + -3926.25 -7191.90 1873.72 0.50 0.84 -0.22 1 + -3833.97 -7313.98 1621.16 0.50 0.84 -0.22 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -255.85 -2774.88 -7911.51 0.00 0.34 0.94 1 + -255.73 -3052.22 -7810.12 0.00 0.34 0.94 1 + 0.01 -2636.38 -7962.04 0.00 0.34 0.94 1 + -0.07 -2913.69 -7860.95 0.00 0.34 0.94 1 + 0.05 -3191.02 -7759.56 0.00 0.34 0.94 1 + 255.63 -2774.87 -7911.57 0.00 0.34 0.94 1 + 255.76 -3052.20 -7810.18 0.00 0.34 0.94 1 + -1050.45 -6368.34 -5400.18 0.06 0.76 0.65 1 + -783.29 -6462.58 -5316.89 0.06 0.76 0.65 1 + -516.13 -6556.81 -5233.60 0.06 0.76 0.65 1 + -248.94 -6650.86 -5150.16 0.06 0.76 0.65 1 + -809.32 -6269.75 -5539.02 0.06 0.76 0.65 1 + -542.16 -6363.99 -5455.73 0.06 0.76 0.65 1 + -275.00 -6458.23 -5372.44 0.06 0.76 0.65 1 + -567.99 -6171.44 -5677.97 0.06 0.76 0.65 1 + -300.83 -6265.68 -5594.68 0.06 0.76 0.65 1 + -326.86 -6072.85 -5816.81 0.06 0.76 0.65 1 + -1038.95 -6575.84 -5167.47 0.09 0.83 0.55 1 + -1277.81 -6653.56 -5012.11 0.09 0.83 0.55 1 + -770.96 -6664.29 -5080.12 0.09 0.83 0.55 1 + -1009.98 -6741.80 -4925.00 0.09 0.83 0.55 1 + -1248.84 -6819.52 -4769.63 0.09 0.83 0.55 1 + -503.13 -6752.53 -4993.00 0.09 0.83 0.55 1 + -741.99 -6830.25 -4837.64 0.09 0.83 0.55 1 + -981.00 -6907.76 -4682.52 0.09 0.83 0.55 1 + -1219.86 -6985.48 -4527.16 0.09 0.83 0.55 1 + -235.14 -6840.98 -4905.65 0.09 0.83 0.55 1 + -474.15 -6918.49 -4750.53 0.09 0.83 0.55 1 + -713.01 -6996.21 -4595.16 0.09 0.83 0.55 1 + -951.79 -7073.79 -4440.00 0.09 0.83 0.55 1 + -1190.88 -7151.43 -4284.68 0.09 0.83 0.55 1 + -206.16 -7006.94 -4663.17 0.09 0.83 0.55 1 + -445.18 -7084.45 -4508.05 0.09 0.83 0.55 1 + -684.03 -7162.17 -4352.69 0.09 0.83 0.55 1 + -922.81 -7239.75 -4197.52 0.09 0.83 0.55 1 + -177.19 -7172.90 -4420.69 0.09 0.83 0.55 1 + -416.20 -7250.40 -4265.57 0.09 0.83 0.55 1 + -655.06 -7328.12 -4110.21 0.09 0.83 0.55 1 + -205.79 -4608.46 -7047.02 0.07 0.59 0.80 1 + -458.77 -4719.41 -6942.14 0.07 0.59 0.80 1 + -711.68 -4830.19 -6837.66 0.07 0.59 0.80 1 + -964.45 -4941.01 -6732.85 0.07 0.59 0.80 1 + -1217.42 -5052.09 -6628.19 0.07 0.59 0.80 1 + -201.72 -4846.85 -6872.54 0.07 0.59 0.80 1 + -454.49 -4957.67 -6767.74 0.07 0.59 0.80 1 + -707.40 -5068.45 -6663.26 0.07 0.59 0.80 1 + -960.17 -5179.40 -6558.66 0.07 0.59 0.80 1 + -197.44 -5085.11 -6698.14 0.07 0.59 0.80 1 + -450.21 -5196.06 -6593.55 0.07 0.59 0.80 1 + -703.12 -5306.84 -6489.07 0.07 0.59 0.80 1 + -193.16 -5323.50 -6523.95 0.07 0.59 0.80 1 + -446.07 -5434.28 -6419.47 0.07 0.59 0.80 1 + -1217.48 -3669.14 -7482.91 0.07 0.46 0.89 1 + -964.57 -3812.36 -7430.40 0.07 0.46 0.89 1 + -711.80 -3955.55 -7378.23 0.07 0.46 0.89 1 + -458.68 -4098.64 -7325.79 0.07 0.46 0.89 1 + -205.76 -4242.00 -7273.50 0.07 0.46 0.89 1 + -960.35 -3550.01 -7565.70 0.07 0.46 0.89 1 + -707.39 -3692.93 -7513.38 0.07 0.46 0.89 1 + -454.47 -3836.29 -7461.09 0.07 0.46 0.89 1 + -201.71 -3979.34 -7408.70 0.07 0.46 0.89 1 + -703.18 -3430.58 -7648.68 0.07 0.46 0.89 1 + -450.27 -3573.80 -7596.17 0.07 0.46 0.89 1 + -197.51 -3716.85 -7543.78 0.07 0.46 0.89 1 + -446.20 -3311.27 -7731.58 0.07 0.46 0.89 1 + -193.29 -3454.50 -7679.07 0.07 0.46 0.89 1 + -1411.04 -5318.44 -6376.67 0.14 0.69 0.71 1 + -1394.49 -5532.74 -6174.10 0.14 0.69 0.71 1 + -1377.89 -5747.10 -5971.89 0.14 0.69 0.71 1 + -1361.10 -5961.48 -5769.28 0.14 0.69 0.71 1 + -1344.58 -6175.99 -5566.87 0.14 0.69 0.71 1 + -1150.21 -5440.66 -6311.96 0.14 0.69 0.71 1 + -1133.34 -5654.90 -6109.54 0.14 0.69 0.71 1 + -1116.82 -5869.41 -5907.13 0.14 0.69 0.71 1 + -1100.19 -6083.57 -5704.77 0.14 0.69 0.71 1 + -889.06 -5562.83 -6247.40 0.14 0.69 0.71 1 + -872.51 -5777.13 -6044.83 0.14 0.69 0.71 1 + -855.88 -5991.30 -5842.46 0.14 0.69 0.71 1 + -628.15 -5684.92 -6182.88 0.14 0.69 0.71 1 + -611.60 -5899.22 -5980.31 0.14 0.69 0.71 1 + -1220.87 -3994.59 -7305.88 0.12 0.52 0.85 1 + -1220.87 -4245.66 -7150.71 0.12 0.52 0.85 1 + -1220.72 -4496.89 -6995.43 0.12 0.52 0.85 1 + -1220.93 -4748.09 -6840.19 0.12 0.52 0.85 1 + -966.83 -4135.58 -7253.20 0.12 0.52 0.85 1 + -966.83 -4386.64 -7098.03 0.12 0.52 0.85 1 + -966.68 -4637.88 -6942.75 0.12 0.52 0.85 1 + -712.77 -4276.70 -7200.73 0.12 0.52 0.85 1 + -712.62 -4527.93 -7045.45 0.12 0.52 0.85 1 + -458.73 -4417.68 -7148.05 0.12 0.52 0.85 1 + -249.16 -1631.87 -8251.94 0.06 0.24 0.97 1 + -516.09 -1748.82 -8205.13 0.06 0.24 0.97 1 + -783.24 -1865.47 -8158.10 0.06 0.24 0.97 1 + -1050.39 -1982.11 -8111.06 0.06 0.24 0.97 1 + -274.87 -1916.93 -8179.09 0.06 0.24 0.97 1 + -542.02 -2033.58 -8132.05 0.06 0.24 0.97 1 + -809.17 -2150.23 -8085.01 0.06 0.24 0.97 1 + -300.83 -2201.99 -8106.21 0.06 0.24 0.97 1 + -567.99 -2318.64 -8059.17 0.06 0.24 0.97 1 + -326.77 -2486.75 -8033.13 0.06 0.24 0.97 1 + -1475.01 -7049.27 -4353.36 0.21 0.81 0.55 1 + -1503.75 -6877.71 -4591.82 0.21 0.81 0.55 1 + -1532.13 -6705.89 -4830.27 0.21 0.81 0.55 1 + -1560.51 -6534.07 -5068.73 0.21 0.81 0.55 1 + -1738.18 -6933.78 -4421.44 0.21 0.81 0.55 1 + -1766.56 -6761.96 -4659.90 0.21 0.81 0.55 1 + -1794.94 -6590.14 -4898.35 0.21 0.81 0.55 1 + -2001.26 -6818.16 -4489.72 0.21 0.81 0.55 1 + -2029.64 -6646.33 -4728.17 0.21 0.81 0.55 1 + -2264.07 -6702.41 -4557.80 0.21 0.81 0.55 1 + -1715.64 -5429.13 -6197.12 0.23 0.68 0.70 1 + -1954.41 -5506.71 -6041.96 0.23 0.68 0.70 1 + -2193.27 -5584.43 -5886.59 0.23 0.68 0.70 1 + -2432.28 -5661.94 -5731.47 0.23 0.68 0.70 1 + -1696.76 -5642.63 -5994.02 0.23 0.68 0.70 1 + -1935.53 -5720.22 -5838.86 0.23 0.68 0.70 1 + -2174.39 -5797.94 -5683.50 0.23 0.68 0.70 1 + -1677.92 -5856.34 -5791.08 0.23 0.68 0.70 1 + -1916.77 -5934.06 -5635.72 0.23 0.68 0.70 1 + -1659.04 -6069.84 -5587.98 0.23 0.68 0.70 1 + -315.20 -8247.98 -1640.88 0.09 0.97 0.22 1 + -462.78 -8177.63 -1886.78 0.09 0.97 0.22 1 + -610.35 -8107.28 -2132.67 0.09 0.97 0.22 1 + -757.93 -8036.68 -2378.51 0.09 0.97 0.22 1 + -609.19 -8222.15 -1634.22 0.09 0.97 0.22 1 + -756.76 -8151.80 -1880.12 0.09 0.97 0.22 1 + -904.34 -8081.44 -2126.01 0.09 0.97 0.22 1 + -903.32 -8196.51 -1627.82 0.09 0.97 0.22 1 + -1050.90 -8126.16 -1873.72 0.09 0.97 0.22 1 + -1197.31 -8170.68 -1621.16 0.09 0.97 0.22 1 + -1919.91 -7537.23 -3244.69 0.15 0.91 0.40 1 + -1828.50 -7662.86 -2993.51 0.15 0.91 0.40 1 + -1725.16 -7475.33 -3458.04 0.15 0.91 0.40 1 + -1634.10 -7600.91 -3206.77 0.15 0.91 0.40 1 + -1542.70 -7726.54 -2955.59 0.15 0.91 0.40 1 + -1530.76 -7413.38 -3671.30 0.15 0.91 0.40 1 + -1439.36 -7539.01 -3420.12 0.15 0.91 0.40 1 + -1348.30 -7664.59 -3168.85 0.15 0.91 0.40 1 + -1256.89 -7790.22 -2917.67 0.15 0.91 0.40 1 + -1336.02 -7351.48 -3884.65 0.15 0.91 0.40 1 + -1244.96 -7477.06 -3633.38 0.15 0.91 0.40 1 + -1153.55 -7602.69 -3382.20 0.15 0.91 0.40 1 + -1062.35 -7728.22 -3131.14 0.15 0.91 0.40 1 + -971.09 -7853.90 -2879.75 0.15 0.91 0.40 1 + -1050.21 -7415.16 -3846.73 0.15 0.91 0.40 1 + -959.15 -7540.74 -3595.46 0.15 0.91 0.40 1 + -867.75 -7666.37 -3344.28 0.15 0.91 0.40 1 + -776.55 -7791.90 -3093.22 0.15 0.91 0.40 1 + -764.41 -7478.84 -3808.81 0.15 0.91 0.40 1 + -673.35 -7604.42 -3557.54 0.15 0.91 0.40 1 + -581.94 -7730.05 -3306.36 0.15 0.91 0.40 1 + -1160.77 -7905.68 -2640.54 0.19 0.94 0.29 1 + -1445.46 -7835.96 -2675.31 0.19 0.94 0.29 1 + -1730.15 -7765.86 -2710.32 0.19 0.94 0.29 1 + -2014.85 -7695.77 -2745.32 0.19 0.94 0.29 1 + -1349.12 -7936.90 -2415.20 0.19 0.94 0.29 1 + -1633.82 -7866.80 -2450.21 0.19 0.94 0.29 1 + -1918.51 -7796.70 -2485.21 0.19 0.94 0.29 1 + -1537.68 -7968.02 -2189.99 0.19 0.94 0.29 1 + -1822.38 -7897.92 -2224.99 0.19 0.94 0.29 1 + -1726.04 -7998.86 -1964.88 0.19 0.94 0.29 1 + -2209.67 -7427.61 -3281.64 0.25 0.86 0.44 1 + -2016.18 -7372.18 -3497.69 0.25 0.86 0.44 1 + -1822.69 -7316.74 -3713.75 0.25 0.86 0.44 1 + -1629.14 -7261.08 -3929.72 0.25 0.86 0.44 1 + -2295.19 -7278.47 -3521.60 0.25 0.86 0.44 1 + -2101.70 -7223.04 -3737.65 0.25 0.86 0.44 1 + -1908.21 -7167.60 -3953.71 0.25 0.86 0.44 1 + -2380.63 -7129.51 -3761.85 0.25 0.86 0.44 1 + -2187.14 -7074.07 -3977.91 0.25 0.86 0.44 1 + -2466.15 -6980.36 -4001.81 0.25 0.86 0.44 1 + 1107.33 -825.47 8301.46 -0.18 0.06 -0.98 1 + 1198.53 -544.77 8301.46 -0.18 0.06 -0.98 1 + 1289.79 -263.72 8301.48 -0.18 0.06 -0.98 1 + 315.20 -2220.96 8111.06 -0.09 0.23 -0.97 1 + 462.78 -1969.56 8158.10 -0.09 0.23 -0.97 1 + 610.35 -1718.17 8205.13 -0.09 0.23 -0.97 1 + -442.89 -1308.21 8301.46 0.00 0.19 -0.98 1 + -147.75 -1308.21 8301.46 0.00 0.19 -0.98 1 + 147.75 -1308.15 8301.48 0.00 0.19 -0.98 1 + 442.89 -1308.15 8301.48 0.00 0.19 -0.98 1 + -295.33 -1559.49 8253.93 0.00 0.19 -0.98 1 + -0.03 -1559.29 8253.98 0.00 0.19 -0.98 1 + 295.31 -1559.43 8253.94 0.00 0.19 -0.98 1 + -147.61 -1810.63 8206.69 0.00 0.19 -0.98 1 + 147.74 -1810.77 8206.66 0.00 0.19 -0.98 1 + -0.04 -2061.90 8159.16 0.00 0.19 -0.98 1 + 442.92 -3528.43 7627.40 -0.00 0.39 -0.92 1 + 147.77 -3528.43 7627.40 -0.00 0.39 -0.92 1 + -147.58 -3528.29 7627.44 -0.00 0.39 -0.92 1 + -442.87 -3528.49 7627.39 -0.00 0.39 -0.92 1 + 295.29 -3293.12 7727.54 -0.00 0.39 -0.92 1 + 0.15 -3293.12 7727.54 -0.00 0.39 -0.92 1 + -295.20 -3292.98 7727.57 -0.00 0.39 -0.92 1 + 147.67 -3057.88 7827.92 -0.00 0.39 -0.92 1 + -147.68 -3057.73 7827.96 -0.00 0.39 -0.92 1 + 0.04 -2822.57 7928.06 -0.00 0.39 -0.92 1 + 590.79 -5053.10 6614.57 -0.00 0.61 -0.79 1 + 442.94 -5256.31 6459.24 -0.00 0.61 -0.79 1 + 295.45 -5459.47 6303.92 -0.00 0.61 -0.79 1 + 443.13 -4849.88 6769.64 -0.00 0.61 -0.79 1 + 295.29 -5053.15 6614.56 -0.00 0.61 -0.79 1 + 147.80 -5256.31 6459.24 -0.00 0.61 -0.79 1 + -0.04 -5459.53 6303.91 -0.00 0.61 -0.79 1 + 295.48 -4646.72 6924.95 -0.00 0.61 -0.79 1 + 147.64 -4849.93 6769.62 -0.00 0.61 -0.79 1 + 0.15 -5053.15 6614.55 -0.00 0.61 -0.79 1 + -147.55 -5256.17 6459.27 -0.00 0.61 -0.79 1 + -295.19 -5459.53 6303.91 -0.00 0.61 -0.79 1 + 0.13 -4646.58 6924.99 -0.00 0.61 -0.79 1 + -147.51 -4849.93 6769.62 -0.00 0.61 -0.79 1 + -295.20 -5053.01 6614.59 -0.00 0.61 -0.79 1 + -442.84 -5256.37 6459.22 -0.00 0.61 -0.79 1 + -295.16 -4646.78 6924.94 -0.00 0.61 -0.79 1 + -442.86 -4849.79 6769.66 -0.00 0.61 -0.79 1 + -590.49 -5053.21 6614.54 -0.00 0.61 -0.79 1 + -147.75 -6062.72 5814.65 -0.00 0.73 -0.68 1 + -443.09 -6062.65 5814.78 -0.00 0.73 -0.68 1 + 295.23 -5887.42 6001.12 -0.00 0.73 -0.68 1 + -0.06 -5887.52 6000.94 -0.00 0.73 -0.68 1 + -295.41 -5887.45 6001.07 -0.00 0.73 -0.68 1 + 147.63 -5712.54 6187.36 -0.00 0.73 -0.68 1 + -147.72 -5712.47 6187.49 -0.00 0.73 -0.68 1 + -442.92 -6431.18 5409.89 0.00 0.78 -0.62 1 + -147.77 -6431.18 5409.89 0.00 0.78 -0.62 1 + 147.58 -6431.25 5409.76 0.00 0.78 -0.62 1 + 442.87 -6431.15 5409.95 0.00 0.78 -0.62 1 + -295.29 -6589.66 5209.20 0.00 0.78 -0.62 1 + -0.15 -6589.66 5209.20 0.00 0.78 -0.62 1 + 295.20 -6589.74 5209.07 0.00 0.78 -0.62 1 + -147.67 -6748.37 5008.63 0.00 0.78 -0.62 1 + 147.68 -6748.44 5008.50 0.00 0.78 -0.62 1 + -0.04 -6906.86 4807.94 0.00 0.78 -0.62 1 + -812.83 -6415.51 5396.23 0.08 0.81 -0.59 1 + -663.40 -6574.53 5197.20 0.08 0.81 -0.59 1 + -514.17 -6733.70 4998.42 0.08 0.81 -0.59 1 + -364.88 -6892.82 4799.21 0.08 0.81 -0.59 1 + -215.44 -7052.06 4600.30 0.08 0.81 -0.59 1 + -957.70 -6557.32 5181.60 0.08 0.81 -0.59 1 + -808.61 -6716.37 4982.52 0.08 0.81 -0.59 1 + -659.18 -6875.61 4783.61 0.08 0.81 -0.59 1 + -509.95 -7034.56 4584.71 0.08 0.81 -0.59 1 + -1102.92 -6699.15 4966.93 0.08 0.81 -0.59 1 + -953.48 -6858.17 4767.90 0.08 0.81 -0.59 1 + -804.25 -7017.12 4569.00 0.08 0.81 -0.59 1 + -1247.98 -6840.89 4752.44 0.08 0.81 -0.59 1 + -1098.55 -6999.91 4553.41 0.08 0.81 -0.59 1 + -1038.67 -6032.37 5785.33 0.14 0.66 -0.73 1 + -1481.60 -5422.63 6251.18 0.14 0.66 -0.73 1 + -1629.17 -5219.52 6406.35 0.14 0.66 -0.73 1 + -893.87 -5855.79 5972.76 0.14 0.66 -0.73 1 + -1041.43 -5652.51 6128.13 0.14 0.66 -0.73 1 + -1189.24 -5449.32 6283.25 0.14 0.66 -0.73 1 + -1336.80 -5246.05 6438.61 0.14 0.66 -0.73 1 + -749.07 -5679.20 6160.19 0.14 0.66 -0.73 1 + -896.88 -5476.01 6315.31 0.14 0.66 -0.73 1 + -1044.44 -5272.74 6470.68 0.14 0.66 -0.73 1 + -604.61 -5502.88 6347.53 0.14 0.66 -0.73 1 + -752.17 -5299.61 6502.90 0.14 0.66 -0.73 1 + -1629.23 -4808.36 6720.40 0.14 0.53 -0.83 1 + -1481.43 -4605.19 6875.68 0.14 0.53 -0.83 1 + -1333.86 -4402.07 7030.85 0.14 0.53 -0.83 1 + -1186.16 -4198.68 7186.20 0.14 0.53 -0.83 1 + -1038.59 -3995.56 7341.36 0.14 0.53 -0.83 1 + -1336.77 -4832.39 6754.58 0.14 0.53 -0.83 1 + -1188.97 -4629.22 6909.86 0.14 0.53 -0.83 1 + -1041.49 -4425.88 7065.09 0.14 0.53 -0.83 1 + -893.70 -4222.71 7220.37 0.14 0.53 -0.83 1 + -1044.31 -4856.42 6788.75 0.14 0.53 -0.83 1 + -896.82 -4653.07 6943.99 0.14 0.53 -0.83 1 + -749.03 -4449.90 7099.27 0.14 0.53 -0.83 1 + -752.24 -4880.37 6823.10 0.14 0.53 -0.83 1 + -604.45 -4677.20 6978.37 0.14 0.53 -0.83 1 + -215.36 -2584.08 8013.55 0.08 0.35 -0.93 1 + -364.87 -2817.92 7912.20 0.08 0.35 -0.93 1 + -514.04 -3051.77 7811.11 0.08 0.35 -0.93 1 + -663.40 -3285.41 7709.81 0.08 0.35 -0.93 1 + -812.92 -3519.31 7608.71 0.08 0.35 -0.93 1 + -509.87 -2573.63 7992.57 0.08 0.35 -0.93 1 + -659.24 -2807.27 7891.27 0.08 0.35 -0.93 1 + -808.40 -3041.12 7790.18 0.08 0.35 -0.93 1 + -957.76 -3274.82 7689.12 0.08 0.35 -0.93 1 + -804.23 -2562.98 7971.63 0.08 0.35 -0.93 1 + -953.60 -2796.68 7870.58 0.08 0.35 -0.93 1 + -1102.76 -3030.53 7769.49 0.08 0.35 -0.93 1 + -1098.59 -2552.40 7950.94 0.08 0.35 -0.93 1 + -1247.75 -2786.24 7849.85 0.08 0.35 -0.93 1 + -1798.86 -6831.27 4522.73 0.20 0.83 -0.51 1 + -1509.64 -6882.00 4553.93 0.20 0.83 -0.51 1 + -1943.25 -6940.41 4289.40 0.20 0.83 -0.51 1 + -1654.20 -6991.24 4320.90 0.20 0.83 -0.51 1 + -1364.98 -7041.96 4352.10 0.20 0.83 -0.51 1 + -1798.90 -7100.22 4087.66 0.20 0.83 -0.51 1 + -1509.68 -7150.94 4118.86 0.20 0.83 -0.51 1 + -2326.95 -6083.27 5340.41 0.21 0.75 -0.63 1 + -2037.98 -6125.17 5385.69 0.21 0.75 -0.63 1 + -1749.32 -6167.02 5431.27 0.21 0.75 -0.63 1 + -1460.60 -6208.84 5476.50 0.21 0.75 -0.63 1 + -1171.72 -6250.93 5521.93 0.21 0.75 -0.63 1 + -2175.85 -6270.21 5168.63 0.21 0.75 -0.63 1 + -1887.12 -6312.04 5213.86 0.21 0.75 -0.63 1 + -1598.46 -6353.88 5259.45 0.21 0.75 -0.63 1 + -1309.82 -6395.89 5304.83 0.21 0.75 -0.63 1 + -2024.99 -6457.08 4996.81 0.21 0.75 -0.63 1 + -1736.35 -6499.08 5042.19 0.21 0.75 -0.63 1 + -1447.69 -6540.93 5087.78 0.21 0.75 -0.63 1 + -1874.22 -6644.12 4825.14 0.21 0.75 -0.63 1 + -1585.56 -6685.97 4870.72 0.21 0.75 -0.63 1 + -442.92 -8400.10 -255.16 0.00 1.00 0.06 1 + -147.77 -8400.10 -255.16 0.00 1.00 0.06 1 + 147.58 -8400.07 -255.30 0.00 1.00 0.06 1 + 442.87 -8400.12 -255.10 0.00 1.00 0.06 1 + -295.29 -8384.44 -510.40 0.00 1.00 0.06 1 + -0.15 -8384.44 -510.40 0.00 1.00 0.06 1 + 295.20 -8384.41 -510.55 0.00 1.00 0.06 1 + -147.67 -8369.02 -765.71 0.00 1.00 0.06 1 + 147.68 -8368.99 -765.85 0.00 1.00 0.06 1 + -0.04 -8353.36 -1020.95 0.00 1.00 0.06 1 + -812.83 -8379.32 -254.90 0.08 0.99 0.10 1 + -663.40 -8365.16 -509.26 0.08 0.99 0.10 1 + -514.17 -8351.28 -763.54 0.08 0.99 0.10 1 + -364.88 -8337.07 -1018.10 0.08 0.99 0.10 1 + -215.44 -8323.16 -1272.52 0.08 0.99 0.10 1 + -957.70 -8341.93 -509.41 0.08 0.99 0.10 1 + -808.61 -8327.76 -763.83 0.08 0.99 0.10 1 + -659.18 -8313.85 -1018.25 0.08 0.99 0.10 1 + -509.95 -8299.72 -1272.46 0.08 0.99 0.10 1 + -1102.92 -8304.54 -763.97 0.08 0.99 0.10 1 + -953.48 -8290.38 -1018.34 0.08 0.99 0.10 1 + -804.25 -8276.25 -1272.55 0.08 0.99 0.10 1 + -1247.98 -8267.19 -1018.34 0.08 0.99 0.10 1 + -1098.55 -8253.02 -1272.70 0.08 0.99 0.10 1 + -1038.67 -8353.14 290.55 0.14 0.98 -0.10 1 + -1186.23 -8305.21 541.87 0.14 0.98 -0.10 1 + -1333.80 -8257.26 792.93 0.14 0.98 -0.10 1 + -1481.60 -8209.23 1044.27 0.14 0.98 -0.10 1 + -1629.17 -8161.28 1295.33 0.14 0.98 -0.10 1 + -893.87 -8346.48 547.97 0.14 0.98 -0.10 1 + -1041.43 -8298.54 799.29 0.14 0.98 -0.10 1 + -1189.24 -8250.50 1050.37 0.14 0.98 -0.10 1 + -1336.80 -8202.57 1301.69 0.14 0.98 -0.10 1 + -749.07 -8339.81 805.40 0.14 0.98 -0.10 1 + -896.88 -8291.77 1056.48 0.14 0.98 -0.10 1 + -1044.44 -8243.84 1307.80 0.14 0.98 -0.10 1 + -604.61 -8333.28 1062.58 0.14 0.98 -0.10 1 + -752.17 -8285.35 1313.90 0.14 0.98 -0.10 1 + -1587.14 -8157.15 -1149.76 0.20 0.96 0.17 1 + -1424.23 -8147.47 -1395.85 0.20 0.96 0.17 1 + -1875.60 -8094.88 -1161.10 0.20 0.96 0.17 1 + -1712.69 -8085.20 -1407.19 0.20 0.96 0.17 1 + -1549.63 -8075.31 -1653.03 0.20 0.96 0.17 1 + -2000.95 -8022.65 -1418.62 0.20 0.96 0.17 1 + -1838.04 -8012.97 -1664.71 0.20 0.96 0.17 1 + -2326.95 -8094.47 -75.01 0.21 0.98 0.03 1 + -2037.98 -8155.88 -69.20 0.21 0.98 0.03 1 + -1749.32 -8217.46 -63.12 0.21 0.98 0.03 1 + -1460.60 -8278.79 -57.29 0.21 0.98 0.03 1 + -1171.72 -8340.45 -51.48 0.21 0.98 0.03 1 + -2175.85 -8119.29 -327.67 0.21 0.98 0.03 1 + -1887.12 -8180.61 -321.84 0.21 0.98 0.03 1 + -1598.46 -8242.19 -315.76 0.21 0.98 0.03 1 + -1309.82 -8303.76 -309.94 0.21 0.98 0.03 1 + -2024.99 -8144.02 -580.32 0.21 0.98 0.03 1 + -1736.35 -8205.59 -574.50 0.21 0.98 0.03 1 + -1447.69 -8267.17 -568.42 0.21 0.98 0.03 1 + -1874.22 -8168.99 -832.97 0.21 0.98 0.03 1 + -1585.56 -8230.57 -826.90 0.21 0.98 0.03 1 + -1803.19 -8156.84 1018.61 0.21 0.97 -0.06 1 + -1655.61 -8204.79 767.55 0.21 0.97 -0.06 1 + -1508.06 -8252.72 516.23 0.21 0.97 -0.06 1 + -1360.25 -8300.76 265.15 0.21 0.97 -0.06 1 + -1943.95 -8141.92 759.48 0.21 0.97 -0.06 1 + -1796.38 -8189.87 508.41 0.21 0.97 -0.06 1 + -1648.82 -8237.80 257.10 0.21 0.97 -0.06 1 + -2084.81 -8127.23 500.34 0.21 0.97 -0.06 1 + -1937.25 -8175.17 249.02 0.21 0.97 -0.06 1 + -2225.58 -8112.31 241.20 0.21 0.97 -0.06 1 + -1984.55 -8076.35 1331.50 0.29 0.95 -0.11 1 + -2123.90 -8063.28 1071.42 0.29 0.95 -0.11 1 + -2263.33 -8050.46 811.59 0.29 0.95 -0.11 1 + -2402.92 -8037.30 551.53 0.29 0.95 -0.11 1 + -2542.37 -8024.47 291.44 0.29 0.95 -0.11 1 + -2267.41 -7992.64 1319.55 0.29 0.95 -0.11 1 + -2406.98 -7979.49 1059.74 0.29 0.95 -0.11 1 + -2546.43 -7966.66 799.66 0.29 0.95 -0.11 1 + -2685.77 -7953.61 539.83 0.29 0.95 -0.11 1 + -2550.48 -7908.85 1307.88 0.29 0.95 -0.11 1 + -2689.84 -7895.78 1047.80 0.29 0.95 -0.11 1 + -2829.18 -7882.73 787.97 0.29 0.95 -0.11 1 + -2833.33 -7825.16 1296.18 0.29 0.95 -0.11 1 + -2972.68 -7812.09 1036.10 0.29 0.95 -0.11 1 + -3141.63 -7700.39 -1331.50 0.33 0.94 0.11 1 + -3021.21 -7771.73 -1071.42 0.33 0.94 0.11 1 + -2900.88 -7843.31 -811.59 0.33 0.94 0.11 1 + -2780.21 -7914.71 -551.53 0.33 0.94 0.11 1 + -2659.86 -7986.30 -291.44 0.33 0.94 0.11 1 + -2863.59 -7798.92 -1319.55 0.33 0.94 0.11 1 + -2742.95 -7870.33 -1059.74 0.33 0.94 0.11 1 + -2622.59 -7941.91 -799.66 0.33 0.94 0.11 1 + -2502.19 -8013.25 -539.83 0.33 0.94 0.11 1 + -2585.33 -7897.53 -1307.88 0.33 0.94 0.11 1 + -2464.91 -7968.87 -1047.80 0.33 0.94 0.11 1 + -2344.51 -8040.21 -787.97 0.33 0.94 0.11 1 + -2307.31 -7996.07 -1296.18 0.33 0.94 0.11 1 + -2186.89 -8067.40 -1036.10 0.33 0.94 0.11 1 + -215.36 -7268.43 4250.21 0.08 0.88 -0.46 1 + -364.87 -7375.15 4018.78 0.08 0.88 -0.46 1 + -514.04 -7482.06 3787.53 0.08 0.88 -0.46 1 + -663.40 -7588.67 3556.27 0.08 0.88 -0.46 1 + -812.92 -7695.60 3324.98 0.08 0.88 -0.46 1 + -509.87 -7246.65 4241.54 0.08 0.88 -0.46 1 + -659.24 -7353.26 4010.27 0.08 0.88 -0.46 1 + -808.40 -7460.16 3779.03 0.08 0.88 -0.46 1 + -957.76 -7566.98 3547.91 0.08 0.88 -0.46 1 + -804.23 -7224.75 4233.03 0.08 0.88 -0.46 1 + -953.60 -7331.57 4001.91 0.08 0.88 -0.46 1 + -1102.76 -7438.48 3770.67 0.08 0.88 -0.46 1 + -1098.59 -7203.07 4224.67 0.08 0.88 -0.46 1 + -1247.75 -7309.97 3993.42 0.08 0.88 -0.46 1 + -1629.23 -8064.19 1803.52 0.14 0.95 -0.27 1 + -1481.43 -8016.28 2054.70 0.14 0.95 -0.27 1 + -1333.86 -7968.33 2305.76 0.14 0.95 -0.27 1 + -1186.16 -7920.30 2557.15 0.14 0.95 -0.27 1 + -1038.59 -7872.35 2808.21 0.14 0.95 -0.27 1 + -1336.77 -8104.89 1812.97 0.14 0.95 -0.27 1 + -1188.97 -8056.97 2064.15 0.14 0.95 -0.27 1 + -1041.49 -8008.90 2315.42 0.14 0.95 -0.27 1 + -893.70 -7960.99 2566.60 0.14 0.95 -0.27 1 + -1044.31 -8145.58 1822.42 0.14 0.95 -0.27 1 + -896.82 -8097.51 2073.69 0.14 0.95 -0.27 1 + -749.03 -8049.60 2324.87 0.14 0.95 -0.27 1 + -752.24 -8186.33 1832.05 0.14 0.95 -0.27 1 + -604.45 -8138.42 2083.23 0.14 0.95 -0.27 1 + -1171.72 -7734.50 3121.41 0.21 0.90 -0.39 1 + -1460.51 -7675.06 3104.13 0.21 0.90 -0.39 1 + -1749.17 -7615.88 3087.07 0.21 0.90 -0.39 1 + -2038.05 -7556.32 3070.00 0.21 0.90 -0.39 1 + -2326.93 -7497.10 3052.82 0.21 0.90 -0.39 1 + -1309.71 -7605.21 3348.13 0.21 0.90 -0.39 1 + -1598.37 -7545.69 3331.17 0.21 0.90 -0.39 1 + -1887.25 -7486.47 3313.99 0.21 0.90 -0.39 1 + -2175.82 -7427.07 3296.83 0.21 0.90 -0.39 1 + -1447.57 -7475.84 3575.17 0.21 0.90 -0.39 1 + -1736.36 -7416.40 3557.89 0.21 0.90 -0.39 1 + -2024.93 -7357.00 3540.73 0.21 0.90 -0.39 1 + -1585.34 -7346.59 3802.00 0.21 0.90 -0.39 1 + -1874.13 -7287.15 3784.72 0.21 0.90 -0.39 1 + -1360.27 -7814.22 2812.60 0.21 0.93 -0.30 1 + -1507.84 -7862.17 2561.54 0.21 0.93 -0.30 1 + -1655.63 -7910.08 2310.36 0.21 0.93 -0.30 1 + -1803.11 -7958.15 2059.09 0.21 0.93 -0.30 1 + -1648.66 -7752.81 2796.85 0.21 0.93 -0.30 1 + -1796.23 -7800.76 2545.78 0.21 0.93 -0.30 1 + -1944.02 -7848.67 2294.60 0.21 0.93 -0.30 1 + -1937.14 -7691.63 2781.18 0.21 0.93 -0.30 1 + -2084.93 -7739.54 2530.00 0.21 0.93 -0.30 1 + -2225.54 -7630.23 2765.43 0.21 0.93 -0.30 1 + -2542.31 -7567.10 2686.35 0.29 0.92 -0.25 1 + -2402.86 -7674.91 2449.21 0.29 0.92 -0.25 1 + -2263.36 -7782.86 2212.48 0.29 0.92 -0.25 1 + -2124.00 -7890.56 1975.54 0.29 0.92 -0.25 1 + -1984.64 -7998.59 1738.49 0.29 0.92 -0.25 1 + -2685.72 -7592.75 2429.33 0.29 0.92 -0.25 1 + -2546.36 -7700.44 2192.39 0.29 0.92 -0.25 1 + -2406.86 -7808.39 1955.66 0.29 0.92 -0.25 1 + -2267.59 -7916.31 1718.82 0.29 0.92 -0.25 1 + -2829.22 -7618.28 2172.51 0.29 0.92 -0.25 1 + -2689.95 -7726.19 1935.66 0.29 0.92 -0.25 1 + -2550.45 -7834.14 1698.94 0.29 0.92 -0.25 1 + -2972.81 -7644.03 1915.79 0.29 0.92 -0.25 1 + -2833.32 -7751.98 1679.06 0.29 0.92 -0.25 1 + 500.00 1200.00 13500.00 9999.00 9999.00 9999.00 5 + 730.00 20.00 13340.00 9999.00 9999.00 9999.00 5 + -730.00 20.00 13340.00 9999.00 9999.00 9999.00 5 + -500.00 1200.00 13500.00 9999.00 9999.00 9999.00 5 + -5458.00 1251.00 -7301.00 9999.00 9999.00 9999.00 2 + -7945.00 112.00 -4691.00 9999.00 9999.00 9999.00 2 + -5703.00 -2315.00 -6840.00 9999.00 9999.00 9999.00 2 + -2623.00 -1284.00 -8729.00 9999.00 9999.00 9999.00 2 + -5657.00 -5461.00 -4785.00 9999.00 9999.00 9999.00 2 + -2876.00 -4805.00 -7301.00 9999.00 9999.00 9999.00 2 + -2562.00 -7521.00 -4691.00 9999.00 9999.00 9999.00 2 + -8737.00 2316.00 -1724.00 9999.00 9999.00 9999.00 2 + -8945.00 -1469.00 -1595.00 9999.00 9999.00 9999.00 2 + -7625.00 -2977.00 -4258.00 9999.00 9999.00 9999.00 2 + -7601.00 -4928.00 -1615.00 9999.00 9999.00 9999.00 2 + -4902.00 -7593.00 -1724.00 9999.00 9999.00 9999.00 2 + -1367.00 -8962.00 -1595.00 9999.00 9999.00 9999.00 2 + -8101.00 4070.00 1595.00 9999.00 9999.00 9999.00 2 + -8945.00 1469.00 1595.00 9999.00 9999.00 9999.00 2 + -8429.00 -3262.00 1724.00 9999.00 9999.00 9999.00 2 + -6374.00 -6446.00 1595.00 9999.00 9999.00 9999.00 2 + -3253.00 -8454.00 1615.00 9999.00 9999.00 9999.00 2 + -7919.00 2074.00 4258.00 9999.00 9999.00 9999.00 2 + -7787.00 -1092.00 4785.00 9999.00 9999.00 9999.00 2 + -6493.00 -4579.00 4691.00 9999.00 9999.00 9999.00 2 + -4419.00 -6890.00 4258.00 9999.00 9999.00 9999.00 2 + -1367.00 -7743.00 4785.00 9999.00 9999.00 9999.00 2 + -2877.00 503.00 8729.00 9999.00 9999.00 9999.00 2 + -5974.00 1479.00 6840.00 9999.00 9999.00 9999.00 2 + -5151.00 -2196.00 7301.00 9999.00 9999.00 9999.00 2 + -1367.00 -2581.00 8729.00 9999.00 9999.00 9999.00 2 + -3253.00 -5225.00 6840.00 9999.00 9999.00 9999.00 2 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 3145.09 -7796.16 69.24 9999.00 9999.00 9999.00 3 + 2107.80 -6753.12 4557.89 9999.00 9999.00 9999.00 3 + 2264.14 -6702.32 -4557.89 9999.00 9999.00 9999.00 3 + 0.06 -8401.71 36.56 9999.00 9999.00 9999.00 3 + 2037.98 -3585.54 7325.80 9999.00 9999.00 9999.00 3 + 1560.46 -6534.05 -5068.76 -0.21 0.81 0.55 1 + 1532.08 -6705.88 -4830.30 -0.21 0.81 0.55 1 + 1503.70 -6877.70 -4591.84 -0.21 0.81 0.55 1 + 1475.29 -7049.33 -4353.23 -0.21 0.81 0.55 1 + 1795.00 -6590.02 -4898.49 -0.21 0.81 0.55 1 + 1766.63 -6761.85 -4660.03 -0.21 0.81 0.55 1 + 1738.25 -6933.67 -4421.57 -0.21 0.81 0.55 1 + 2029.59 -6646.35 -4728.17 -0.21 0.81 0.55 1 + 2001.21 -6818.18 -4489.71 -0.21 0.81 0.55 1 + 2264.14 -6702.32 -4557.89 -0.21 0.81 0.55 1 + 1050.45 -1982.07 -8111.06 -0.06 0.24 0.97 1 + 783.29 -1865.43 -8158.10 -0.06 0.24 0.97 1 + 516.13 -1748.78 -8205.13 -0.06 0.24 0.97 1 + 248.94 -1632.09 -8251.93 -0.06 0.24 0.97 1 + 809.32 -2150.34 -8084.97 -0.06 0.24 0.97 1 + 542.16 -2033.70 -8132.01 -0.06 0.24 0.97 1 + 275.00 -1917.05 -8179.05 -0.06 0.24 0.97 1 + 567.99 -2318.58 -8059.18 -0.06 0.24 0.97 1 + 300.83 -2201.94 -8106.22 -0.06 0.24 0.97 1 + 326.86 -2486.85 -8033.09 -0.06 0.24 0.97 1 + 1220.87 -4748.13 -6840.16 -0.12 0.52 0.84 1 + 1220.87 -4497.07 -6995.33 -0.12 0.52 0.84 1 + 1220.72 -4245.82 -7150.60 -0.12 0.52 0.84 1 + 1220.93 -3994.64 -7305.85 -0.12 0.52 0.84 1 + 966.83 -4637.96 -6942.71 -0.12 0.52 0.84 1 + 966.83 -4386.90 -7097.87 -0.12 0.52 0.84 1 + 966.68 -4135.65 -7253.14 -0.12 0.52 0.84 1 + 712.77 -4527.92 -7045.46 -0.12 0.52 0.84 1 + 712.62 -4276.68 -7200.73 -0.12 0.52 0.84 1 + 458.73 -4417.75 -7148.00 -0.12 0.52 0.84 1 + 1344.66 -6176.00 -5566.84 -0.14 0.69 0.71 1 + 1361.15 -5961.44 -5769.33 -0.14 0.69 0.71 1 + 1377.92 -5747.20 -5971.75 -0.14 0.69 0.71 1 + 1394.41 -5532.80 -6174.04 -0.14 0.69 0.71 1 + 1410.94 -5318.44 -6376.68 -0.14 0.69 0.71 1 + 1100.26 -6083.59 -5704.73 -0.14 0.69 0.71 1 + 1116.75 -5869.19 -5907.02 -0.14 0.69 0.71 1 + 1133.52 -5654.95 -6109.44 -0.14 0.69 0.71 1 + 1150.05 -5440.75 -6311.88 -0.14 0.69 0.71 1 + 855.85 -5991.34 -5842.42 -0.14 0.69 0.71 1 + 872.38 -5777.13 -6044.86 -0.14 0.69 0.71 1 + 889.16 -5562.90 -6247.28 -0.14 0.69 0.71 1 + 611.49 -5899.28 -5980.26 -0.14 0.69 0.71 1 + 628.26 -5685.05 -6182.68 -0.14 0.69 0.71 1 + 205.79 -4242.07 -7273.46 -0.07 0.46 0.89 1 + 458.77 -4098.65 -7325.79 -0.07 0.46 0.89 1 + 711.68 -3955.66 -7378.15 -0.07 0.46 0.89 1 + 964.45 -3812.36 -7430.40 -0.07 0.46 0.89 1 + 1217.42 -3669.07 -7482.95 -0.07 0.46 0.89 1 + 201.72 -3979.41 -7408.66 -0.07 0.46 0.89 1 + 454.49 -3836.11 -7460.90 -0.07 0.46 0.89 1 + 707.40 -3693.12 -7513.26 -0.07 0.46 0.89 1 + 960.17 -3549.95 -7565.73 -0.07 0.46 0.89 1 + 197.44 -3716.87 -7543.77 -0.07 0.46 0.89 1 + 450.21 -3573.70 -7596.23 -0.07 0.46 0.89 1 + 703.12 -3430.71 -7648.59 -0.07 0.46 0.89 1 + 193.16 -3454.46 -7679.09 -0.07 0.46 0.89 1 + 446.07 -3311.47 -7731.45 -0.07 0.46 0.89 1 + 1217.48 -5052.02 -6628.24 -0.07 0.59 0.80 1 + 964.57 -4941.01 -6732.86 -0.07 0.59 0.80 1 + 711.80 -4830.30 -6837.60 -0.07 0.59 0.80 1 + 458.68 -4719.41 -6942.13 -0.07 0.59 0.80 1 + 205.76 -4608.53 -7046.97 -0.07 0.59 0.80 1 + 960.35 -5179.35 -6558.71 -0.07 0.59 0.80 1 + 707.39 -5068.63 -6663.14 -0.07 0.59 0.80 1 + 454.47 -4957.75 -6767.98 -0.07 0.59 0.80 1 + 201.71 -4846.92 -6872.50 -0.07 0.59 0.80 1 + 703.18 -5306.97 -6488.99 -0.07 0.59 0.80 1 + 450.27 -5195.96 -6593.61 -0.07 0.59 0.80 1 + 197.51 -5085.12 -6698.13 -0.07 0.59 0.80 1 + 446.20 -5434.48 -6419.36 -0.07 0.59 0.80 1 + 193.29 -5323.46 -6523.98 -0.07 0.59 0.80 1 + 1277.80 -6653.44 -5012.26 -0.09 0.83 0.55 1 + 1038.77 -6575.89 -5167.45 -0.09 0.83 0.55 1 + 1248.68 -6819.51 -4769.68 -0.09 0.83 0.55 1 + 1009.90 -6741.77 -4925.05 -0.09 0.83 0.55 1 + 770.87 -6664.22 -5080.23 -0.09 0.83 0.55 1 + 1219.81 -6985.39 -4527.28 -0.09 0.83 0.55 1 + 980.78 -6907.84 -4682.46 -0.09 0.83 0.55 1 + 742.00 -6830.10 -4837.83 -0.09 0.83 0.55 1 + 502.98 -6752.55 -4993.01 -0.09 0.83 0.55 1 + 1190.69 -7151.46 -4284.69 -0.09 0.83 0.55 1 + 951.91 -7073.72 -4440.06 -0.09 0.83 0.55 1 + 712.89 -6996.17 -4595.24 -0.09 0.83 0.55 1 + 474.11 -6918.58 -4750.41 -0.09 0.83 0.55 1 + 235.08 -6840.87 -4905.80 -0.09 0.83 0.55 1 + 922.80 -7239.79 -4197.47 -0.09 0.83 0.55 1 + 684.02 -7162.05 -4352.84 -0.09 0.83 0.55 1 + 444.99 -7084.50 -4508.03 -0.09 0.83 0.55 1 + 206.22 -7006.91 -4663.19 -0.09 0.83 0.55 1 + 654.90 -7328.12 -4110.26 -0.09 0.83 0.55 1 + 416.12 -7250.38 -4265.63 -0.09 0.83 0.55 1 + 177.10 -7172.82 -4420.81 -0.09 0.83 0.55 1 + 249.16 -6650.96 -5149.97 -0.06 0.76 0.65 1 + 516.09 -6556.80 -5233.63 -0.06 0.76 0.65 1 + 783.24 -6462.56 -5316.93 -0.06 0.76 0.65 1 + 1050.39 -6368.32 -5400.22 -0.06 0.76 0.65 1 + 274.87 -6458.32 -5372.35 -0.06 0.76 0.65 1 + 542.02 -6364.08 -5455.65 -0.06 0.76 0.65 1 + 809.17 -6269.84 -5538.94 -0.06 0.76 0.65 1 + 300.83 -6265.65 -5594.72 -0.06 0.76 0.65 1 + 567.99 -6171.41 -5678.01 -0.06 0.76 0.65 1 + 326.77 -6072.93 -5816.73 -0.06 0.76 0.65 1 + 255.73 -5620.57 -6222.77 0.00 0.69 0.73 1 + -0.05 -5513.28 -6324.31 0.00 0.69 0.73 1 + 255.85 -5835.29 -6020.06 0.00 0.69 0.73 1 + 0.07 -5727.99 -6121.60 0.00 0.69 0.73 1 + -255.76 -5620.64 -6222.79 0.00 0.69 0.73 1 + -0.01 -5942.44 -5918.78 0.00 0.69 0.73 1 + -255.63 -5835.35 -6020.08 0.00 0.69 0.73 1 + 1629.00 -7261.22 -3929.47 -0.25 0.86 0.44 1 + 1822.71 -7316.72 -3713.79 -0.25 0.86 0.44 1 + 2016.20 -7372.15 -3497.75 -0.25 0.86 0.44 1 + 2209.69 -7427.58 -3281.70 -0.25 0.86 0.44 1 + 1908.05 -7167.60 -3953.81 -0.25 0.86 0.44 1 + 2101.55 -7223.03 -3737.76 -0.25 0.86 0.44 1 + 2295.04 -7278.46 -3521.71 -0.25 0.86 0.44 1 + 2187.18 -7074.06 -3977.91 -0.25 0.86 0.44 1 + 2380.68 -7129.49 -3761.86 -0.25 0.86 0.44 1 + 2466.02 -6980.37 -4001.88 -0.25 0.86 0.44 1 + 2014.87 -7695.74 -2745.39 -0.19 0.94 0.29 1 + 1730.17 -7765.84 -2710.37 -0.19 0.94 0.29 1 + 1445.47 -7835.94 -2675.36 -0.19 0.94 0.29 1 + 1160.72 -7905.81 -2640.25 -0.19 0.94 0.29 1 + 1918.70 -7796.67 -2485.19 -0.19 0.94 0.29 1 + 1634.00 -7866.77 -2450.18 -0.19 0.94 0.29 1 + 1349.30 -7936.87 -2415.16 -0.19 0.94 0.29 1 + 1822.34 -7897.91 -2225.04 -0.19 0.94 0.29 1 + 1537.65 -7968.01 -2190.02 -0.19 0.94 0.29 1 + 1726.17 -7998.84 -1964.84 -0.19 0.94 0.29 1 + 1828.68 -7662.79 -2993.56 -0.15 0.91 0.40 1 + 1919.81 -7537.19 -3244.86 -0.15 0.91 0.40 1 + 1542.69 -7726.48 -2955.75 -0.15 0.91 0.40 1 + 1634.13 -7600.87 -3206.86 -0.15 0.91 0.40 1 + 1725.26 -7475.26 -3458.15 -0.15 0.91 0.40 1 + 1257.01 -7790.16 -2917.75 -0.15 0.91 0.40 1 + 1348.15 -7664.55 -3169.04 -0.15 0.91 0.40 1 + 1439.59 -7538.94 -3420.15 -0.15 0.91 0.40 1 + 1530.72 -7413.33 -3671.44 -0.15 0.91 0.40 1 + 971.03 -7853.84 -2879.93 -0.15 0.91 0.40 1 + 1062.47 -7728.23 -3131.04 -0.15 0.91 0.40 1 + 1153.60 -7602.62 -3382.33 -0.15 0.91 0.40 1 + 1244.81 -7477.09 -3633.39 -0.15 0.91 0.40 1 + 1336.17 -7351.41 -3884.74 -0.15 0.91 0.40 1 + 776.48 -7791.91 -3093.22 -0.15 0.91 0.40 1 + 867.92 -7666.30 -3344.33 -0.15 0.91 0.40 1 + 959.05 -7540.70 -3595.63 -0.15 0.91 0.40 1 + 1050.26 -7415.17 -3846.69 -0.15 0.91 0.40 1 + 581.94 -7729.99 -3306.52 -0.15 0.91 0.40 1 + 673.38 -7604.38 -3557.63 -0.15 0.91 0.40 1 + 764.51 -7478.77 -3808.92 -0.15 0.91 0.40 1 + 757.62 -8036.67 -2378.56 -0.09 0.97 0.22 1 + 610.41 -8107.28 -2132.67 -0.09 0.97 0.22 1 + 462.84 -8177.63 -1886.77 -0.09 0.97 0.22 1 + 315.27 -8247.98 -1640.88 -0.09 0.97 0.22 1 + 904.37 -8081.40 -2126.19 -0.09 0.97 0.22 1 + 756.81 -8151.75 -1880.30 -0.09 0.97 0.22 1 + 609.24 -8222.11 -1634.40 -0.09 0.97 0.22 1 + 1050.92 -8126.17 -1873.67 -0.09 0.97 0.22 1 + 903.35 -8196.52 -1627.78 -0.09 0.97 0.22 1 + 1197.32 -8170.65 -1621.30 -0.09 0.97 0.22 1 + 295.25 -7498.11 -3749.05 -0.00 0.89 0.45 1 + 147.67 -7383.74 -3977.78 -0.00 0.89 0.45 1 + 147.69 -7612.48 -3520.31 -0.00 0.89 0.45 1 + 0.11 -7498.11 -3749.05 -0.00 0.89 0.45 1 + -147.47 -7383.74 -3977.78 -0.00 0.89 0.45 1 + -147.46 -7612.48 -3520.31 -0.00 0.89 0.45 1 + -295.39 -7498.10 -3749.10 -0.00 0.89 0.45 1 + -147.61 -8209.00 -1901.15 -0.00 0.95 0.30 1 + 147.74 -8208.96 -1901.29 -0.00 0.95 0.30 1 + -295.24 -8131.79 -2145.11 -0.00 0.95 0.30 1 + 0.05 -8131.84 -2144.91 -0.00 0.95 0.30 1 + 295.40 -8131.80 -2145.05 -0.00 0.95 0.30 1 + -442.93 -8054.66 -2388.73 -0.00 0.95 0.30 1 + -147.58 -8054.63 -2388.87 -0.00 0.95 0.30 1 + 147.71 -8054.68 -2388.67 -0.00 0.95 0.30 1 + 443.06 -8054.64 -2388.81 -0.00 0.95 0.30 1 + -590.56 -7977.46 -2632.69 -0.00 0.95 0.30 1 + -295.27 -7977.50 -2632.49 -0.00 0.95 0.30 1 + 0.08 -7977.47 -2632.63 -0.00 0.95 0.30 1 + 295.22 -7977.47 -2632.63 -0.00 0.95 0.30 1 + 590.72 -7977.48 -2632.57 -0.00 0.95 0.30 1 + -442.90 -7900.30 -2876.45 -0.00 0.95 0.30 1 + -147.61 -7900.34 -2876.25 -0.00 0.95 0.30 1 + 147.74 -7900.31 -2876.39 -0.00 0.95 0.30 1 + 442.88 -7900.31 -2876.39 -0.00 0.95 0.30 1 + -295.24 -7823.14 -3120.21 -0.00 0.95 0.30 1 + 0.05 -7823.18 -3120.01 -0.00 0.95 0.30 1 + 295.40 -7823.15 -3120.15 -0.00 0.95 0.30 1 + 1380.99 16.98 8301.48 -0.18 0.06 -0.98 1 + 1391.91 -762.78 8253.93 -0.18 0.06 -0.98 1 + 1482.97 -481.87 8253.98 -0.18 0.06 -0.98 1 + 1574.37 -201.03 8253.94 -0.18 0.06 -0.98 1 + 1676.40 -699.89 8206.69 -0.18 0.06 -0.98 1 + 1767.80 -419.05 8206.66 -0.18 0.06 -0.98 1 + 1960.98 -637.20 8159.16 -0.18 0.06 -0.98 1 + 3492.61 -669.10 7627.40 -0.37 0.12 -0.92 1 + 3401.41 -949.80 7627.40 -0.37 0.12 -0.92 1 + 3310.00 -1230.64 7627.44 -0.37 0.12 -0.92 1 + 1445.46 -1111.47 8205.13 -0.19 0.16 -0.97 1 + 1730.15 -1048.81 8158.10 -0.19 0.16 -0.97 1 + 2014.85 -986.15 8111.06 -0.19 0.16 -0.97 1 + 1349.12 -1389.26 8179.09 -0.19 0.16 -0.97 1 + 1633.82 -1326.60 8132.05 -0.19 0.16 -0.97 1 + 1918.51 -1263.94 8085.01 -0.19 0.16 -0.97 1 + 1537.68 -1604.62 8106.21 -0.19 0.16 -0.97 1 + 1822.38 -1541.96 8059.17 -0.19 0.16 -0.97 1 + 1726.04 -1819.75 8033.13 -0.19 0.16 -0.97 1 + 3335.67 -2514.09 7305.88 -0.40 0.35 -0.85 1 + 3483.25 -2717.20 7150.72 -0.40 0.35 -0.85 1 + 3630.80 -2920.54 6995.44 -0.40 0.35 -0.85 1 + 1838.04 -2094.54 7911.51 -0.20 0.28 -0.94 1 + 2000.95 -2318.98 7810.12 -0.20 0.28 -0.94 1 + 1549.63 -2132.88 7962.04 -0.20 0.28 -0.94 1 + 1712.69 -2357.18 7860.95 -0.20 0.28 -0.94 1 + 1875.60 -2581.62 7759.56 -0.20 0.28 -0.94 1 + 1424.23 -2395.17 7911.57 -0.20 0.28 -0.94 1 + 1587.14 -2619.61 7810.18 -0.20 0.28 -0.94 1 + 1984.55 -4802.79 6628.25 -0.29 0.52 -0.80 1 + 2123.90 -4564.32 6732.87 -0.29 0.52 -0.80 1 + 2263.33 -4326.19 6837.61 -0.29 0.52 -0.80 1 + 2402.92 -4087.70 6942.15 -0.29 0.52 -0.80 1 + 2542.37 -3849.33 7046.98 -0.29 0.52 -0.80 1 + 2267.41 -4754.67 6558.72 -0.29 0.52 -0.80 1 + 2406.98 -4516.41 6663.16 -0.29 0.52 -0.80 1 + 2546.43 -4278.04 6768.00 -0.29 0.52 -0.80 1 + 2685.77 -4039.81 6872.52 -0.29 0.52 -0.80 1 + 2550.48 -4706.75 6489.01 -0.29 0.52 -0.80 1 + 2689.84 -4468.28 6593.63 -0.29 0.52 -0.80 1 + 2829.18 -4230.05 6698.15 -0.29 0.52 -0.80 1 + 2833.33 -4658.86 6419.38 -0.29 0.52 -0.80 1 + 2972.68 -4420.39 6524.00 -0.29 0.52 -0.80 1 + 2326.95 -3552.87 7273.47 -0.21 0.41 -0.89 1 + 2037.98 -3585.54 7325.80 -0.21 0.41 -0.89 1 + 1749.32 -3618.51 7378.16 -0.21 0.41 -0.89 1 + 1460.60 -3651.16 7430.41 -0.21 0.41 -0.89 1 + 1171.72 -3683.92 7482.95 -0.21 0.41 -0.89 1 + 2175.85 -3337.98 7408.66 -0.21 0.41 -0.89 1 + 1887.12 -3370.62 7460.91 -0.21 0.41 -0.89 1 + 1598.46 -3403.60 7513.27 -0.21 0.41 -0.89 1 + 1309.82 -3436.34 7565.73 -0.21 0.41 -0.89 1 + 2024.99 -3123.06 7543.77 -0.21 0.41 -0.89 1 + 1736.35 -3155.81 7596.23 -0.21 0.41 -0.89 1 + 1447.69 -3188.79 7648.59 -0.21 0.41 -0.89 1 + 1874.22 -2908.25 7679.09 -0.21 0.41 -0.89 1 + 1585.56 -2941.23 7731.45 -0.21 0.41 -0.89 1 + 2542.31 -5786.86 5566.85 -0.29 0.64 -0.71 1 + 2124.00 -5295.75 6174.05 -0.29 0.64 -0.71 1 + 1984.64 -5132.04 6376.69 -0.29 0.64 -0.71 1 + 2685.72 -5568.44 5704.74 -0.29 0.64 -0.71 1 + 2546.36 -5404.68 5907.03 -0.29 0.64 -0.71 1 + 2406.86 -5241.22 6109.45 -0.29 0.64 -0.71 1 + 2267.59 -5077.64 6311.90 -0.29 0.64 -0.71 1 + 2829.22 -5350.15 5842.43 -0.29 0.64 -0.71 1 + 2689.95 -5186.57 6044.87 -0.29 0.64 -0.71 1 + 2550.45 -5023.12 6247.30 -0.29 0.64 -0.71 1 + 2972.81 -5132.05 5980.28 -0.29 0.64 -0.71 1 + 2833.32 -4968.59 6182.70 -0.29 0.64 -0.71 1 + 1803.19 -4558.93 6840.17 -0.21 0.49 -0.84 1 + 1655.61 -4355.82 6995.34 -0.21 0.49 -0.84 1 + 1508.06 -4152.47 7150.61 -0.21 0.49 -0.84 1 + 1360.25 -3949.38 7305.86 -0.21 0.49 -0.84 1 + 1943.95 -4320.48 6942.72 -0.21 0.49 -0.84 1 + 1796.38 -4117.36 7097.88 -0.21 0.49 -0.84 1 + 1648.82 -3914.02 7253.15 -0.21 0.49 -0.84 1 + 2084.81 -4082.13 7045.47 -0.21 0.49 -0.84 1 + 1937.25 -3878.78 7200.74 -0.21 0.49 -0.84 1 + 2225.58 -3843.68 7148.01 -0.21 0.49 -0.84 1 + 757.93 -1466.71 8251.93 -0.09 0.23 -0.97 1 + 609.19 -2215.36 8084.97 -0.09 0.23 -0.97 1 + 756.76 -1963.97 8132.01 -0.09 0.23 -0.97 1 + 904.34 -1712.57 8179.05 -0.09 0.23 -0.97 1 + 903.32 -2209.62 8059.18 -0.09 0.23 -0.97 1 + 1050.90 -1958.23 8106.22 -0.09 0.23 -0.97 1 + 1197.31 -2204.03 8033.09 -0.09 0.23 -0.97 1 + 2578.18 -6203.37 5068.77 -0.30 0.77 -0.55 1 + 2702.13 -6325.70 4830.31 -0.30 0.77 -0.55 1 + 2826.09 -6448.03 4591.85 -0.30 0.77 -0.55 1 + 1655.63 -5603.95 6041.77 -0.21 0.69 -0.70 1 + 1803.11 -5400.71 6197.14 -0.21 0.69 -0.70 1 + 1648.66 -5968.75 5683.54 -0.21 0.69 -0.70 1 + 1796.23 -5765.63 5838.71 -0.21 0.69 -0.70 1 + 1944.02 -5562.40 5993.90 -0.21 0.69 -0.70 1 + 1937.14 -5927.37 5635.83 -0.21 0.69 -0.70 1 + 2084.93 -5724.14 5791.01 -0.21 0.69 -0.70 1 + 2225.54 -5885.82 5587.95 -0.21 0.69 -0.70 1 + 215.36 -7052.05 4600.32 -0.08 0.81 -0.59 1 + 364.87 -6892.78 4799.28 -0.08 0.81 -0.59 1 + 514.04 -6733.76 4998.31 -0.08 0.81 -0.59 1 + 663.40 -6574.59 5197.09 -0.08 0.81 -0.59 1 + 812.92 -6415.54 5396.18 -0.08 0.81 -0.59 1 + 509.87 -7034.55 4584.72 -0.08 0.81 -0.59 1 + 659.24 -6875.38 4783.50 -0.08 0.81 -0.59 1 + 808.40 -6716.36 4982.53 -0.08 0.81 -0.59 1 + 957.76 -6557.41 5181.44 -0.08 0.81 -0.59 1 + 804.23 -7017.15 4568.94 -0.08 0.81 -0.59 1 + 953.60 -6858.20 4767.84 -0.08 0.81 -0.59 1 + 1102.76 -6699.18 4966.88 -0.08 0.81 -0.59 1 + 1098.59 -6999.97 4553.29 -0.08 0.81 -0.59 1 + 1247.75 -6840.95 4752.32 -0.08 0.81 -0.59 1 + -590.56 -3789.93 7498.41 0.00 0.47 -0.88 1 + -295.21 -3790.07 7498.37 0.00 0.47 -0.88 1 + -0.06 -3790.07 7498.37 0.00 0.47 -0.88 1 + 295.43 -3790.02 7498.39 0.00 0.47 -0.88 1 + 590.58 -3790.02 7498.39 0.00 0.47 -0.88 1 + -442.90 -4015.89 7378.32 0.00 0.47 -0.88 1 + -147.55 -4016.03 7378.29 0.00 0.47 -0.88 1 + 147.75 -4015.83 7378.34 0.00 0.47 -0.88 1 + 443.09 -4015.97 7378.30 0.00 0.47 -0.88 1 + -295.23 -4241.84 7258.24 0.00 0.47 -0.88 1 + 0.06 -4241.64 7258.29 0.00 0.47 -0.88 1 + 295.41 -4241.78 7258.25 0.00 0.47 -0.88 1 + -147.63 -4467.51 7138.49 0.00 0.47 -0.88 1 + 147.72 -4467.65 7138.45 0.00 0.47 -0.88 1 + 590.56 -6237.96 5628.27 -0.00 0.73 -0.68 1 + 295.21 -6237.89 5628.40 -0.00 0.73 -0.68 1 + 0.06 -6237.89 5628.40 -0.00 0.73 -0.68 1 + -295.43 -6237.92 5628.35 -0.00 0.73 -0.68 1 + -590.58 -6237.92 5628.35 -0.00 0.73 -0.68 1 + 442.90 -6062.69 5814.70 -0.00 0.73 -0.68 1 + 147.55 -6062.62 5814.83 -0.00 0.73 -0.68 1 + 3778.58 -7515.00 -265.07 -0.40 0.91 0.06 1 + 3631.01 -7562.94 -516.14 -0.40 0.91 0.06 1 + 3483.21 -7610.96 -767.30 -0.40 0.91 0.06 1 + 2659.92 -7986.28 -291.38 -0.33 0.94 0.11 1 + 2780.28 -7914.69 -551.57 -0.33 0.94 0.11 1 + 2900.84 -7843.31 -811.41 -0.33 0.94 0.11 1 + 3021.11 -7771.75 -1071.37 -0.33 0.94 0.11 1 + 3141.54 -7700.41 -1331.54 -0.33 0.94 0.11 1 + 2502.24 -8013.24 -539.77 -0.33 0.94 0.11 1 + 2622.50 -7941.68 -799.72 -0.33 0.94 0.11 1 + 2743.06 -7870.29 -1059.57 -0.33 0.94 0.11 1 + 2863.40 -7798.97 -1319.51 -0.33 0.94 0.11 1 + 2344.46 -8040.22 -787.92 -0.33 0.94 0.11 1 + 2464.79 -7968.90 -1047.87 -0.33 0.94 0.11 1 + 2585.36 -7897.52 -1307.71 -0.33 0.94 0.11 1 + 2186.75 -8067.44 -1036.07 -0.33 0.94 0.11 1 + 2307.31 -7996.06 -1295.92 -0.33 0.94 0.11 1 + 2542.31 -8024.49 291.38 -0.29 0.95 -0.11 1 + 2402.86 -8037.33 551.57 -0.29 0.95 -0.11 1 + 2263.36 -8050.44 811.41 -0.29 0.95 -0.11 1 + 2124.00 -8063.24 1071.37 -0.29 0.95 -0.11 1 + 1984.64 -8076.31 1331.54 -0.29 0.95 -0.11 1 + 2685.72 -7953.62 539.77 -0.29 0.95 -0.11 1 + 2546.36 -7966.42 799.72 -0.29 0.95 -0.11 1 + 2406.86 -7979.53 1059.57 -0.29 0.95 -0.11 1 + 2267.59 -7992.57 1319.51 -0.29 0.95 -0.11 1 + 2829.22 -7882.71 787.92 -0.29 0.95 -0.11 1 + 2689.95 -7895.74 1047.87 -0.29 0.95 -0.11 1 + 2550.45 -7908.86 1307.71 -0.29 0.95 -0.11 1 + 2972.81 -7812.04 1036.07 -0.29 0.95 -0.11 1 + 2833.32 -7825.15 1295.92 -0.29 0.95 -0.11 1 + 1171.72 -8340.45 -51.38 -0.21 0.98 0.03 1 + 1460.51 -8278.83 -57.22 -0.21 0.98 0.03 1 + 1749.17 -8217.52 -63.17 -0.21 0.98 0.03 1 + 2038.05 -8155.86 -69.24 -0.21 0.98 0.03 1 + 2326.93 -8094.47 -75.09 -0.21 0.98 0.03 1 + 1309.71 -8303.81 -309.78 -0.21 0.98 0.03 1 + 1598.37 -8242.23 -315.96 -0.21 0.98 0.03 1 + 1887.25 -8180.84 -321.81 -0.21 0.98 0.03 1 + 2175.82 -8119.30 -327.74 -0.21 0.98 0.03 1 + 1447.57 -8267.21 -568.52 -0.21 0.98 0.03 1 + 1736.36 -8205.58 -574.36 -0.21 0.98 0.03 1 + 2024.93 -8144.04 -580.30 -0.21 0.98 0.03 1 + 1585.34 -8230.65 -827.02 -0.21 0.98 0.03 1 + 1874.13 -8169.02 -832.86 -0.21 0.98 0.03 1 + 1360.27 -8300.75 265.07 -0.21 0.97 -0.06 1 + 1507.84 -8252.80 516.14 -0.21 0.97 -0.06 1 + 1655.63 -8204.77 767.30 -0.21 0.97 -0.06 1 + 1803.11 -8156.86 1018.60 -0.21 0.97 -0.06 1 + 1648.66 -8237.86 257.10 -0.21 0.97 -0.06 1 + 1796.23 -8189.91 508.16 -0.21 0.97 -0.06 1 + 1944.02 -8141.89 759.32 -0.21 0.97 -0.06 1 + 1937.14 -8175.21 249.11 -0.21 0.97 -0.06 1 + 2084.93 -8127.18 500.27 -0.21 0.97 -0.06 1 + 2225.54 -8112.32 241.13 -0.21 0.97 -0.06 1 + 1629.23 -8161.26 1295.27 -0.14 0.98 -0.10 1 + 1481.43 -8209.29 1044.10 -0.14 0.98 -0.10 1 + 1333.86 -8257.24 793.04 -0.14 0.98 -0.10 1 + 1186.16 -8305.22 541.64 -0.14 0.98 -0.10 1 + 1038.59 -8353.17 290.58 -0.14 0.98 -0.10 1 + 1336.77 -8202.57 1301.47 -0.14 0.98 -0.10 1 + 1188.97 -8250.60 1050.31 -0.14 0.98 -0.10 1 + 1041.49 -8298.51 799.01 -0.14 0.98 -0.10 1 + 893.70 -8346.54 547.85 -0.14 0.98 -0.10 1 + 1044.31 -8243.88 1307.68 -0.14 0.98 -0.10 1 + 896.82 -8291.79 1056.38 -0.14 0.98 -0.10 1 + 749.03 -8339.82 805.22 -0.14 0.98 -0.10 1 + 752.24 -8285.32 1313.74 -0.14 0.98 -0.10 1 + 604.45 -8333.34 1062.58 -0.14 0.98 -0.10 1 + 215.36 -8323.16 -1272.50 -0.08 0.99 0.10 1 + 364.87 -8337.09 -1018.02 -0.08 0.99 0.10 1 + 514.04 -8351.25 -763.65 -0.08 0.99 0.10 1 + 663.40 -8365.13 -509.38 -0.08 0.99 0.10 1 + 812.92 -8379.31 -254.96 -0.08 0.99 0.10 1 + 509.87 -8299.72 -1272.46 -0.08 0.99 0.10 1 + 659.24 -8313.60 -1018.18 -0.08 0.99 0.10 1 + 808.40 -8327.76 -763.81 -0.08 0.99 0.10 1 + 957.76 -8341.89 -509.59 -0.08 0.99 0.10 1 + 804.23 -8276.23 -1272.62 -0.08 0.99 0.10 1 + 953.60 -8290.36 -1018.40 -0.08 0.99 0.10 1 + 1102.76 -8304.52 -764.03 -0.08 0.99 0.10 1 + 1098.59 -8252.99 -1272.83 -0.08 0.99 0.10 1 + 1247.75 -8267.16 -1018.47 -0.08 0.99 0.10 1 + 590.56 -8401.67 36.42 -0.00 1.00 -0.02 1 + 295.21 -8401.71 36.57 -0.00 1.00 -0.02 1 + 0.06 -8401.71 36.56 -0.00 1.00 -0.02 1 + -295.43 -8401.69 36.51 -0.00 1.00 -0.02 1 + -590.58 -8401.69 36.51 -0.00 1.00 -0.02 1 + 442.90 -8395.32 292.22 -0.00 1.00 -0.02 1 + 147.55 -8395.35 292.37 -0.00 1.00 -0.02 1 + -147.75 -8395.31 292.17 -0.00 1.00 -0.02 1 + -443.09 -8395.34 292.31 -0.00 1.00 -0.02 1 + 295.23 -8388.96 548.02 -0.00 1.00 -0.02 1 + -0.06 -8388.92 547.82 -0.00 1.00 -0.02 1 + -295.41 -8388.95 547.97 -0.00 1.00 -0.02 1 + 147.63 -8382.78 803.42 -0.00 1.00 -0.02 1 + -147.72 -8382.81 803.57 -0.00 1.00 -0.02 1 + 2950.15 -6831.95 3929.47 -0.30 0.84 -0.45 1 + 2826.06 -6990.71 3713.79 -0.30 0.84 -0.45 1 + 2702.10 -7149.29 3497.75 -0.30 0.84 -0.45 1 + 1984.55 -7998.61 1738.54 -0.29 0.92 -0.25 1 + 2123.90 -7890.61 1975.50 -0.29 0.92 -0.25 1 + 2263.33 -7782.94 2212.33 -0.29 0.92 -0.25 1 + 2402.92 -7674.87 2449.23 -0.29 0.92 -0.25 1 + 2542.37 -7567.10 2686.29 -0.29 0.92 -0.25 1 + 2267.41 -7916.39 1718.80 -0.29 0.92 -0.25 1 + 2406.98 -7808.42 1955.48 -0.29 0.92 -0.25 1 + 2546.43 -7700.65 2192.54 -0.29 0.92 -0.25 1 + 2685.77 -7592.76 2429.26 -0.29 0.92 -0.25 1 + 2550.48 -7834.20 1698.78 -0.29 0.92 -0.25 1 + 2689.84 -7726.20 1935.74 -0.29 0.92 -0.25 1 + 2829.18 -7618.31 2172.47 -0.29 0.92 -0.25 1 + 2833.33 -7752.08 1678.81 -0.29 0.92 -0.25 1 + 2972.68 -7644.09 1915.77 -0.29 0.92 -0.25 1 + 1038.67 -7872.31 2808.23 -0.14 0.95 -0.27 1 + 1186.23 -7920.36 2556.93 -0.14 0.95 -0.27 1 + 1333.80 -7968.31 2305.87 -0.14 0.95 -0.27 1 + 1481.60 -8016.29 2054.53 -0.14 0.95 -0.27 1 + 1629.17 -8064.24 1803.47 -0.14 0.95 -0.27 1 + 893.87 -7960.98 2566.46 -0.14 0.95 -0.27 1 + 1041.43 -8009.03 2315.17 -0.14 0.95 -0.27 1 + 1189.24 -8056.91 2064.06 -0.14 0.95 -0.27 1 + 1336.80 -8104.96 1812.77 -0.14 0.95 -0.27 1 + 749.07 -8049.65 2324.70 -0.14 0.95 -0.27 1 + 896.88 -8097.53 2073.59 -0.14 0.95 -0.27 1 + 1044.44 -8145.58 1822.30 -0.14 0.95 -0.27 1 + 604.61 -8138.36 2083.21 -0.14 0.95 -0.27 1 + 752.17 -8186.41 1831.92 -0.14 0.95 -0.27 1 + 812.83 -7695.63 3324.93 -0.08 0.88 -0.46 1 + 663.40 -7588.73 3556.17 -0.08 0.88 -0.46 1 + 514.17 -7482.12 3787.44 -0.08 0.88 -0.46 1 + 364.88 -7375.10 4018.85 -0.08 0.88 -0.46 1 + 215.44 -7268.41 4250.23 -0.08 0.88 -0.46 1 + 957.70 -7567.09 3547.75 -0.08 0.88 -0.46 1 + 808.61 -7460.15 3779.04 -0.08 0.88 -0.46 1 + 659.18 -7353.46 4010.43 -0.08 0.88 -0.46 1 + 509.95 -7246.64 4241.54 -0.08 0.88 -0.46 1 + 1102.92 -7438.51 3770.62 -0.08 0.88 -0.46 1 + 953.48 -7331.61 4001.86 -0.08 0.88 -0.46 1 + 804.25 -7224.79 4232.98 -0.08 0.88 -0.46 1 + 1247.98 -7310.05 3993.31 -0.08 0.88 -0.46 1 + 1098.55 -7203.15 4224.56 -0.08 0.88 -0.46 1 + 442.92 -7714.86 3332.83 -0.00 0.91 -0.42 1 + 147.77 -7714.86 3332.83 -0.00 0.91 -0.42 1 + -147.58 -7714.78 3332.95 -0.00 0.91 -0.42 1 + -442.87 -7714.90 3332.78 -0.00 0.91 -0.42 1 + 295.29 -7606.24 3564.34 -0.00 0.91 -0.42 1 + 0.15 -7606.24 3564.34 -0.00 0.91 -0.42 1 + -295.20 -7606.15 3564.46 -0.00 0.91 -0.42 1 + 147.67 -7497.82 3795.99 -0.00 0.91 -0.42 1 + -147.68 -7497.74 3796.11 -0.00 0.91 -0.42 1 + 0.04 -7389.19 4027.50 -0.00 0.91 -0.42 1 + -590.56 -7823.78 3062.35 0.00 0.94 -0.35 1 + -295.21 -7823.86 3062.23 0.00 0.94 -0.35 1 + -0.06 -7823.86 3062.23 0.00 0.94 -0.35 1 + 295.43 -7823.83 3062.28 0.00 0.94 -0.35 1 + 590.58 -7823.83 3062.28 0.00 0.94 -0.35 1 + -442.90 -7912.14 2822.21 0.00 0.94 -0.35 1 + -147.55 -7912.22 2822.09 0.00 0.94 -0.35 1 + 147.75 -7912.10 2822.26 0.00 0.94 -0.35 1 + 443.09 -7912.19 2822.14 0.00 0.94 -0.35 1 + -295.23 -8000.50 2582.07 0.00 0.94 -0.35 1 + 0.06 -8000.38 2582.24 0.00 0.94 -0.35 1 + 295.41 -8000.47 2582.12 0.00 0.94 -0.35 1 + -147.63 -8088.87 2342.37 0.00 0.94 -0.35 1 + 147.72 -8088.95 2342.25 0.00 0.94 -0.35 1 + 590.79 -8176.05 1561.47 -0.00 0.98 -0.19 1 + 442.94 -8223.97 1310.22 -0.00 0.98 -0.19 1 + 295.45 -8271.85 1059.02 -0.00 0.98 -0.19 1 + 443.13 -8127.96 1812.53 -0.00 0.98 -0.19 1 + 295.29 -8176.09 1561.43 -0.00 0.98 -0.19 1 + 147.80 -8223.97 1310.22 -0.00 0.98 -0.19 1 + -0.04 -8271.88 1058.97 -0.00 0.98 -0.19 1 + 295.48 -8080.08 2063.74 -0.00 0.98 -0.19 1 + 147.64 -8128.00 1812.49 -0.00 0.98 -0.19 1 + 0.15 -8176.09 1561.43 -0.00 0.98 -0.19 1 + -147.55 -8223.88 1310.34 -0.00 0.98 -0.19 1 + -295.19 -8271.88 1058.97 -0.00 0.98 -0.19 1 + 0.13 -8080.00 2063.86 -0.00 0.98 -0.19 1 + -147.51 -8128.00 1812.49 -0.00 0.98 -0.19 1 + -295.20 -8176.00 1561.55 -0.00 0.98 -0.19 1 + -442.84 -8224.00 1310.17 -0.00 0.98 -0.19 1 + -295.16 -8080.12 2063.69 -0.00 0.98 -0.19 1 + -442.86 -8127.91 1812.61 -0.00 0.98 -0.19 1 + -590.49 -8176.12 1561.38 -0.00 0.98 -0.19 1 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 3970.86 -5831.82 -4600.32 -0.41 0.70 0.59 1 + 3756.29 -5790.85 -4799.28 -0.41 0.70 0.59 1 + 3542.14 -5749.87 -4998.31 -0.41 0.70 0.59 1 + 3327.74 -5708.90 -5197.09 -0.41 0.70 0.59 1 + 3113.30 -5668.11 -5396.18 -0.41 0.70 0.59 1 + 3722.31 -5990.77 -4584.72 -0.41 0.70 0.59 1 + 3507.91 -5949.80 -4783.50 -0.41 0.70 0.59 1 + 3293.77 -5908.82 -4982.53 -0.41 0.70 0.59 1 + 3079.50 -5868.02 -5181.44 -0.41 0.70 0.59 1 + 3473.94 -6149.72 -4568.94 -0.41 0.70 0.59 1 + 3259.67 -6108.92 -4767.84 -0.41 0.70 0.59 1 + 3045.53 -6067.94 -4966.88 -0.41 0.70 0.59 1 + 3225.70 -6308.84 -4553.29 -0.41 0.70 0.59 1 + 3011.56 -6267.87 -4752.32 -0.41 0.70 0.59 1 + 1749.90 -5180.33 -6406.27 -0.28 0.62 0.73 1 + 1988.93 -5257.88 -6251.09 -0.28 0.62 0.73 1 + 2227.70 -5335.47 -6095.92 -0.28 0.62 0.73 1 + 2466.73 -5413.18 -5940.54 -0.28 0.62 0.73 1 + 2705.50 -5490.76 -5785.37 -0.28 0.62 0.73 1 + 2002.17 -5029.99 -6438.44 -0.28 0.62 0.73 1 + 2241.20 -5107.54 -6283.26 -0.28 0.62 0.73 1 + 2479.98 -5185.28 -6127.89 -0.28 0.62 0.73 1 + 2719.00 -5262.83 -5972.71 -0.28 0.62 0.73 1 + 2254.44 -4879.65 -6470.62 -0.28 0.62 0.73 1 + 2493.22 -4957.38 -6315.25 -0.28 0.62 0.73 1 + 2732.25 -5034.94 -6160.06 -0.28 0.62 0.73 1 + 2506.50 -4729.69 -6502.76 -0.28 0.62 0.73 1 + 2745.53 -4807.24 -6347.57 -0.28 0.62 0.73 1 + 1508.21 -3842.95 -7341.35 -0.20 0.52 0.83 1 + 1508.36 -4094.20 -7186.08 -0.20 0.52 0.83 1 + 1508.36 -4345.26 -7030.91 -0.20 0.52 0.83 1 + 1508.30 -4596.63 -6875.55 -0.20 0.52 0.83 1 + 1508.30 -4847.69 -6720.39 -0.20 0.52 0.83 1 + 1758.94 -3941.71 -7220.26 -0.20 0.52 0.83 1 + 1759.09 -4192.95 -7064.99 -0.20 0.52 0.83 1 + 1758.88 -4444.13 -6909.74 -0.20 0.52 0.83 1 + 1759.03 -4695.38 -6754.47 -0.20 0.52 0.83 1 + 2009.67 -4040.46 -7099.17 -0.20 0.52 0.83 1 + 2009.46 -4291.64 -6943.92 -0.20 0.52 0.83 1 + 2009.61 -4542.89 -6788.65 -0.20 0.52 0.83 1 + 2260.03 -4139.28 -6978.32 -0.20 0.52 0.83 1 + 2260.18 -4390.53 -6823.05 -0.20 0.52 0.83 1 + 1411.04 -3324.99 -7608.69 -0.14 0.33 0.93 1 + 1394.49 -3047.97 -7709.78 -0.14 0.33 0.93 1 + 1377.89 -2771.24 -7811.08 -0.14 0.33 0.93 1 + 1361.10 -2494.15 -7912.22 -0.14 0.33 0.93 1 + 1344.58 -2217.18 -8013.56 -0.14 0.33 0.93 1 + 1150.21 -3212.45 -7689.08 -0.14 0.33 0.93 1 + 1133.34 -2935.59 -7790.18 -0.14 0.33 0.93 1 + 1116.82 -2658.62 -7891.51 -0.14 0.33 0.93 1 + 1100.19 -2381.85 -7992.57 -0.14 0.33 0.93 1 + 889.06 -3100.07 -7769.47 -0.14 0.33 0.93 1 + 872.51 -2823.05 -7870.56 -0.14 0.33 0.93 1 + 855.88 -2546.27 -7971.62 -0.14 0.33 0.93 1 + 628.15 -2987.76 -7849.82 -0.14 0.33 0.93 1 + 611.60 -2710.75 -7950.91 -0.14 0.33 0.93 1 + 2726.23 -5745.77 -5522.01 -0.27 0.73 0.63 1 + 2467.88 -5881.51 -5476.57 -0.27 0.73 0.63 1 + 2209.82 -6017.42 -5431.27 -0.27 0.73 0.63 1 + 1951.48 -6153.31 -5385.63 -0.27 0.73 0.63 1 + 1693.17 -6289.25 -5340.34 -0.27 0.73 0.63 1 + 2699.79 -5944.16 -5304.98 -0.27 0.73 0.63 1 + 2441.70 -6080.02 -5259.32 -0.27 0.73 0.63 1 + 2183.39 -6215.96 -5214.04 -0.27 0.73 0.63 1 + 1925.30 -6351.67 -5168.58 -0.27 0.73 0.63 1 + 2673.61 -6142.67 -5087.73 -0.27 0.73 0.63 1 + 2415.27 -6278.41 -5042.29 -0.27 0.73 0.63 1 + 2157.17 -6414.12 -4996.83 -0.27 0.73 0.63 1 + 2647.43 -6341.02 -4870.68 -0.27 0.73 0.63 1 + 2389.09 -6476.77 -4825.24 -0.27 0.73 0.63 1 + 2432.29 -5661.98 -5731.41 -0.23 0.68 0.70 1 + 2193.51 -5584.40 -5886.58 -0.23 0.68 0.70 1 + 1954.49 -5506.84 -6041.76 -0.23 0.68 0.70 1 + 1715.71 -5429.10 -6197.13 -0.23 0.68 0.70 1 + 2174.55 -5797.88 -5683.54 -0.23 0.68 0.70 1 + 1935.77 -5720.29 -5838.70 -0.23 0.68 0.70 1 + 1696.75 -5642.74 -5993.89 -0.23 0.68 0.70 1 + 1916.84 -5933.97 -5635.82 -0.23 0.68 0.70 1 + 1677.82 -5856.42 -5791.00 -0.23 0.68 0.70 1 + 1659.10 -6069.86 -5587.94 -0.23 0.68 0.70 1 + 3786.92 -6979.36 -2808.23 -0.45 0.85 0.27 1 + 3695.79 -7104.96 -2556.93 -0.45 0.85 0.27 1 + 3604.59 -7230.49 -2305.87 -0.45 0.85 0.27 1 + 3513.22 -7356.18 -2054.53 -0.45 0.85 0.27 1 + 3422.01 -7481.71 -1803.47 -0.45 0.85 0.27 1 + 3956.19 -6965.98 -2566.46 -0.45 0.85 0.27 1 + 3865.06 -7091.59 -2315.17 -0.45 0.85 0.27 1 + 3773.61 -7217.20 -2064.06 -0.45 0.85 0.27 1 + 3682.48 -7342.80 -1812.77 -0.45 0.85 0.27 1 + 4125.45 -6952.60 -2324.70 -0.45 0.85 0.27 1 + 4034.01 -7078.21 -2073.59 -0.45 0.85 0.27 1 + 3942.88 -7203.82 -1822.30 -0.45 0.85 0.27 1 + 4294.46 -6939.46 -2083.21 -0.45 0.85 0.27 1 + 4203.33 -7065.07 -1831.92 -0.45 0.85 0.27 1 + 2524.16 -7433.05 -3052.74 -0.36 0.85 0.39 1 + 2792.76 -7311.12 -3069.96 -0.36 0.85 0.39 1 + 3061.25 -7189.58 -3087.01 -0.36 0.85 0.39 1 + 3329.61 -7067.73 -3104.18 -0.36 0.85 0.39 1 + 3598.26 -6946.04 -3121.51 -0.36 0.85 0.39 1 + 2605.23 -7287.58 -3296.76 -0.36 0.85 0.39 1 + 2873.59 -7165.73 -3313.94 -0.36 0.85 0.39 1 + 3142.08 -7044.19 -3330.98 -0.36 0.85 0.39 1 + 3410.50 -6922.57 -3348.26 -0.36 0.85 0.39 1 + 2686.07 -7142.18 -3540.74 -0.36 0.85 0.39 1 + 2954.49 -7020.56 -3558.01 -0.36 0.85 0.39 1 + 3222.98 -6899.02 -3575.05 -0.36 0.85 0.39 1 + 2766.96 -6997.01 -3784.81 -0.36 0.85 0.39 1 + 3035.45 -6875.47 -3801.85 -0.36 0.85 0.39 1 + 3218.86 -7498.15 -2059.07 -0.37 0.88 0.30 1 + 3310.07 -7372.62 -2310.13 -0.37 0.88 0.30 1 + 3401.20 -7247.01 -2561.43 -0.37 0.88 0.30 1 + 3492.64 -7121.40 -2812.54 -0.37 0.88 0.30 1 + 3040.70 -7492.41 -2294.47 -0.37 0.88 0.30 1 + 3131.90 -7366.88 -2545.53 -0.37 0.88 0.30 1 + 3223.03 -7241.27 -2796.82 -0.37 0.88 0.30 1 + 2862.58 -7486.90 -2529.96 -0.37 0.88 0.30 1 + 2953.72 -7361.29 -2781.25 -0.37 0.88 0.30 1 + 2684.42 -7481.16 -2765.36 -0.37 0.88 0.30 1 + 2718.14 -6801.61 -4087.45 -0.33 0.79 0.51 1 + 2981.87 -6672.55 -4118.86 -0.33 0.79 0.51 1 + 2507.35 -6757.13 -4289.41 -0.33 0.79 0.51 1 + 2771.11 -6628.42 -4320.78 -0.33 0.79 0.51 1 + 3034.84 -6499.35 -4352.20 -0.33 0.79 0.51 1 + 2560.07 -6584.12 -4522.56 -0.33 0.79 0.51 1 + 2823.80 -6455.05 -4553.98 -0.33 0.79 0.51 1 + 3095.93 -7637.50 -1738.54 -0.31 0.92 0.25 1 + 2919.71 -7632.04 -1975.50 -0.31 0.92 0.25 1 + 2743.63 -7626.89 -2212.33 -0.31 0.92 0.25 1 + 2567.17 -7621.51 -2449.23 -0.31 0.92 0.25 1 + 2391.01 -7616.28 -2686.29 -0.31 0.92 0.25 1 + 2818.77 -7737.24 -1718.80 -0.31 0.92 0.25 1 + 2642.39 -7731.93 -1955.48 -0.31 0.92 0.25 1 + 2466.23 -7726.71 -2192.54 -0.31 0.92 0.25 1 + 2290.09 -7721.32 -2429.26 -0.31 0.92 0.25 1 + 2541.44 -7837.13 -1698.78 -0.31 0.92 0.25 1 + 2365.23 -7831.67 -1935.74 -0.31 0.92 0.25 1 + 2189.08 -7826.29 -2172.47 -0.31 0.92 0.25 1 + 2264.35 -7936.95 -1678.81 -0.31 0.92 0.25 1 + 2088.14 -7931.49 -1915.77 -0.31 0.92 0.25 1 + 5841.29 -157.12 6041.77 -0.72 0.01 -0.70 1 + 4120.94 -246.84 7341.35 -0.55 0.03 -0.83 1 + 4359.93 -169.35 7186.08 -0.55 0.03 -0.83 1 + 4598.71 -91.76 7030.91 -0.55 0.03 -0.83 1 + 4837.75 -14.03 6875.56 -0.55 0.03 -0.83 1 + 5076.52 63.55 6720.40 -0.55 0.03 -0.83 1 + 4292.34 -454.78 7220.26 -0.55 0.03 -0.83 1 + 4531.33 -377.29 7065.00 -0.55 0.03 -0.83 1 + 4770.16 -299.47 6909.74 -0.55 0.03 -0.83 1 + 5009.15 -221.98 6754.48 -0.55 0.03 -0.83 1 + 4463.74 -662.73 7099.18 -0.55 0.03 -0.83 1 + 4702.56 -584.91 6943.93 -0.55 0.03 -0.83 1 + 4941.55 -507.41 6788.66 -0.55 0.03 -0.83 1 + 4635.09 -870.30 6978.32 -0.55 0.03 -0.83 1 + 4874.08 -792.80 6823.05 -0.55 0.03 -0.83 1 + 3218.94 -1511.55 7627.39 -0.37 0.12 -0.92 1 + 3223.20 -736.78 7727.54 -0.37 0.12 -0.92 1 + 3132.00 -1017.48 7727.54 -0.37 0.12 -0.92 1 + 3040.60 -1298.33 7727.57 -0.37 0.12 -0.92 1 + 2953.85 -804.49 7827.92 -0.37 0.12 -0.92 1 + 2862.45 -1085.34 7827.96 -0.37 0.12 -0.92 1 + 2684.45 -872.18 7928.06 -0.37 0.12 -0.92 1 + 3421.95 -1732.80 7498.41 -0.45 0.14 -0.88 1 + 3513.36 -1451.95 7498.37 -0.45 0.14 -0.88 1 + 3604.56 -1171.25 7498.37 -0.45 0.14 -0.88 1 + 3695.82 -890.20 7498.39 -0.45 0.14 -0.88 1 + 3787.02 -609.50 7498.39 -0.45 0.14 -0.88 1 + 3682.48 -1662.19 7378.32 -0.45 0.14 -0.88 1 + 3773.88 -1381.34 7378.29 -0.45 0.14 -0.88 1 + 3864.94 -1100.44 7378.34 -0.45 0.14 -0.88 1 + 3956.34 -819.59 7378.30 -0.45 0.14 -0.88 1 + 3943.00 -1591.58 7258.24 -0.45 0.14 -0.88 1 + 4034.06 -1310.67 7258.29 -0.45 0.14 -0.88 1 + 4125.47 -1029.83 7258.25 -0.45 0.14 -0.88 1 + 4203.24 -1520.93 7138.49 -0.45 0.14 -0.88 1 + 4294.64 -1240.08 7138.45 -0.45 0.14 -0.88 1 + 5979.55 -2408.58 5409.89 -0.75 0.24 -0.62 1 + 6070.75 -2127.88 5409.89 -0.75 0.24 -0.62 1 + 6162.09 -1847.01 5409.76 -0.75 0.24 -0.62 1 + 4069.56 -3035.35 6720.40 -0.46 0.30 -0.83 1 + 3922.01 -2832.00 6875.68 -0.46 0.30 -0.83 1 + 3774.44 -2628.89 7030.85 -0.46 0.30 -0.83 1 + 3626.64 -2425.56 7186.20 -0.46 0.30 -0.83 1 + 3479.07 -2222.45 7341.36 -0.46 0.30 -0.83 1 + 4182.79 -2764.62 6754.58 -0.46 0.30 -0.83 1 + 4035.24 -2561.28 6909.86 -0.46 0.30 -0.83 1 + 3887.42 -2358.18 7065.09 -0.46 0.30 -0.83 1 + 3739.87 -2154.84 7220.37 -0.46 0.30 -0.83 1 + 4296.02 -2493.90 6788.75 -0.46 0.30 -0.83 1 + 4148.20 -2290.80 6943.99 -0.46 0.30 -0.83 1 + 4000.65 -2087.46 7099.27 -0.46 0.30 -0.83 1 + 4409.05 -2223.53 6823.10 -0.46 0.30 -0.83 1 + 4261.50 -2020.19 6978.37 -0.46 0.30 -0.83 1 + 2391.06 -1003.34 8013.55 -0.31 0.18 -0.93 1 + 2567.26 -1217.79 7912.20 -0.31 0.18 -0.93 1 + 2743.56 -1431.92 7811.11 -0.31 0.18 -0.93 1 + 2919.61 -1646.17 7709.81 -0.31 0.18 -0.93 1 + 3095.86 -1860.65 7608.71 -0.31 0.18 -0.93 1 + 2290.12 -1280.20 7992.57 -0.31 0.18 -0.93 1 + 2466.17 -1494.46 7891.27 -0.31 0.18 -0.93 1 + 2642.47 -1708.58 7790.18 -0.31 0.18 -0.93 1 + 2818.58 -1922.85 7689.12 -0.31 0.18 -0.93 1 + 2189.03 -1556.87 7971.63 -0.31 0.18 -0.93 1 + 2365.14 -1771.14 7870.58 -0.31 0.18 -0.93 1 + 2541.44 -1985.26 7769.49 -0.31 0.18 -0.93 1 + 2088.00 -1833.55 7950.94 -0.31 0.18 -0.93 1 + 2264.31 -2047.67 7849.85 -0.31 0.18 -0.93 1 + 4579.14 -3383.83 6197.13 -0.59 0.42 -0.70 1 + 4817.92 -3306.25 6041.96 -0.59 0.42 -0.70 1 + 5336.77 -4835.99 4353.36 -0.64 0.53 -0.55 1 + 5259.17 -4680.30 4591.82 -0.64 0.53 -0.55 1 + 5181.14 -4524.61 4830.28 -0.64 0.53 -0.55 1 + 3778.61 -3123.65 6840.20 -0.40 0.35 -0.85 1 + 3213.02 -2777.47 7253.20 -0.40 0.35 -0.85 1 + 3360.59 -2980.59 7098.04 -0.40 0.35 -0.85 1 + 3508.14 -3183.93 6942.76 -0.40 0.35 -0.85 1 + 3090.43 -3040.97 7200.74 -0.40 0.35 -0.85 1 + 3237.98 -3244.31 7045.46 -0.40 0.35 -0.85 1 + 2967.78 -3304.35 7148.06 -0.40 0.35 -0.85 1 + 4267.66 -3473.32 6376.68 -0.52 0.47 -0.71 1 + 4380.23 -3656.42 6174.12 -0.52 0.47 -0.71 1 + 4717.94 -4206.15 5566.88 -0.52 0.47 -0.71 1 + 4128.48 -3725.51 6311.97 -0.52 0.47 -0.71 1 + 4240.76 -3908.76 6109.56 -0.52 0.47 -0.71 1 + 4353.48 -4092.00 5907.15 -0.52 0.47 -0.71 1 + 4465.91 -4275.04 5704.78 -0.52 0.47 -0.71 1 + 3989.02 -3977.85 6247.41 -0.52 0.47 -0.71 1 + 4101.59 -4160.95 6044.85 -0.52 0.47 -0.71 1 + 4214.02 -4343.99 5842.48 -0.52 0.47 -0.71 1 + 3849.70 -4229.98 6182.90 -0.52 0.47 -0.71 1 + 3962.27 -4413.08 5980.33 -0.52 0.47 -0.71 1 + 3141.63 -2252.78 7482.91 -0.33 0.32 -0.89 1 + 3021.21 -2517.31 7430.41 -0.33 0.32 -0.89 1 + 2900.88 -2781.73 7378.23 -0.33 0.32 -0.89 1 + 2780.21 -3046.27 7325.80 -0.33 0.32 -0.89 1 + 2659.86 -3310.91 7273.51 -0.33 0.32 -0.89 1 + 2863.59 -2307.54 7565.70 -0.33 0.32 -0.89 1 + 2742.95 -2571.85 7513.38 -0.33 0.32 -0.89 1 + 2622.59 -2836.49 7461.09 -0.33 0.32 -0.89 1 + 2502.19 -3100.79 7408.70 -0.33 0.32 -0.89 1 + 2585.33 -2362.08 7648.68 -0.33 0.32 -0.89 1 + 2464.91 -2626.61 7596.17 -0.33 0.32 -0.89 1 + 2344.51 -2890.91 7543.78 -0.33 0.32 -0.89 1 + 2307.31 -2416.61 7731.58 -0.33 0.32 -0.89 1 + 2186.89 -2681.13 7679.08 -0.33 0.32 -0.89 1 + 2875.28 -3607.37 7047.03 -0.41 0.43 -0.80 1 + 3145.16 -3548.43 6942.15 -0.41 0.43 -0.80 1 + 3414.88 -3489.40 6837.67 -0.41 0.43 -0.80 1 + 3684.52 -3430.47 6732.86 -0.41 0.43 -0.80 1 + 3954.46 -3371.65 6628.20 -0.41 0.43 -0.80 1 + 3012.11 -3802.62 6872.56 -0.41 0.43 -0.80 1 + 3281.74 -3743.70 6767.75 -0.41 0.43 -0.80 1 + 3551.47 -3684.66 6663.27 -0.41 0.43 -0.80 1 + 3821.17 -3625.85 6558.68 -0.41 0.43 -0.80 1 + 3148.69 -3997.89 6698.16 -0.41 0.43 -0.80 1 + 3418.40 -3939.08 6593.56 -0.41 0.43 -0.80 1 + 3688.12 -3880.05 6489.09 -0.41 0.43 -0.80 1 + 3285.35 -4193.27 6523.97 -0.41 0.43 -0.80 1 + 3555.07 -4134.24 6419.49 -0.41 0.43 -0.80 1 + 4593.05 -4534.65 5400.20 -0.50 0.58 -0.65 1 + 4432.30 -4767.93 5316.91 -0.50 0.58 -0.65 1 + 4271.56 -5001.20 5233.62 -0.50 0.58 -0.65 1 + 4110.67 -5234.34 5150.17 -0.50 0.58 -0.65 1 + 4340.02 -4596.63 5539.04 -0.50 0.58 -0.65 1 + 4179.28 -4829.91 5455.75 -0.50 0.58 -0.65 1 + 4018.53 -5063.18 5372.46 -0.50 0.58 -0.65 1 + 4086.99 -4658.95 5677.99 -0.50 0.58 -0.65 1 + 3926.25 -4892.22 5594.70 -0.50 0.58 -0.65 1 + 3833.97 -4720.93 5816.83 -0.50 0.58 -0.65 1 + 3222.91 -4871.25 6020.09 -0.40 0.56 -0.73 1 + 3096.81 -4697.46 6222.80 -0.40 0.56 -0.73 1 + 3492.88 -4807.53 5918.80 -0.40 0.56 -0.73 1 + 3366.78 -4634.09 6121.62 -0.40 0.56 -0.73 1 + 3240.67 -4460.31 6324.34 -0.40 0.56 -0.73 1 + 3636.75 -4570.65 6020.10 -0.40 0.56 -0.73 1 + 3510.64 -4396.87 6222.81 -0.40 0.56 -0.73 1 + 3707.77 -5527.20 5149.98 -0.39 0.65 -0.65 1 + 3436.46 -5607.91 5233.65 -0.39 0.65 -0.65 1 + 3164.94 -5688.70 5316.94 -0.39 0.65 -0.65 1 + 2893.42 -5769.48 5400.24 -0.39 0.65 -0.65 1 + 3573.73 -5386.46 5372.37 -0.39 0.65 -0.65 1 + 3302.21 -5467.24 5455.66 -0.39 0.65 -0.65 1 + 3030.69 -5548.03 5538.96 -0.39 0.65 -0.65 1 + 3439.48 -5245.85 5594.74 -0.39 0.65 -0.65 1 + 3167.95 -5326.63 5678.03 -0.39 0.65 -0.65 1 + 3305.22 -5105.18 5816.75 -0.39 0.65 -0.65 1 + 2877.04 -6133.82 5012.27 -0.41 0.72 -0.55 1 + 3024.83 -5930.58 5167.46 -0.41 0.72 -0.55 1 + 2998.20 -6251.05 4769.69 -0.41 0.72 -0.55 1 + 3145.69 -6047.81 4925.06 -0.41 0.72 -0.55 1 + 3293.48 -5844.58 5080.24 -0.41 0.72 -0.55 1 + 3119.06 -6368.29 4527.28 -0.41 0.72 -0.55 1 + 3266.85 -6165.05 4682.47 -0.41 0.72 -0.55 1 + 3414.34 -5961.81 4837.84 -0.41 0.72 -0.55 1 + 3562.13 -5758.57 4993.03 -0.41 0.72 -0.55 1 + 3240.23 -6485.52 4284.69 -0.41 0.72 -0.55 1 + 3387.71 -6282.28 4440.06 -0.41 0.72 -0.55 1 + 3535.50 -6079.05 4595.25 -0.41 0.72 -0.55 1 + 3683.07 -5875.93 4750.42 -0.41 0.72 -0.55 1 + 3830.78 -5672.57 4905.81 -0.41 0.72 -0.55 1 + 3508.88 -6399.52 4197.48 -0.41 0.72 -0.55 1 + 3656.36 -6196.28 4352.85 -0.41 0.72 -0.55 1 + 3804.15 -5993.04 4508.03 -0.41 0.72 -0.55 1 + 3951.72 -5789.93 4663.20 -0.41 0.72 -0.55 1 + 3777.53 -6313.52 4110.26 -0.41 0.72 -0.55 1 + 3925.01 -6110.27 4265.63 -0.41 0.72 -0.55 1 + 4072.80 -5907.04 4420.82 -0.41 0.72 -0.55 1 + 2949.95 -6570.18 4353.23 -0.30 0.77 -0.55 1 + 2421.33 -6386.51 4898.49 -0.30 0.77 -0.55 1 + 2545.28 -6508.84 4660.03 -0.30 0.77 -0.55 1 + 2669.23 -6631.17 4421.57 -0.30 0.77 -0.55 1 + 2264.65 -6569.97 4728.17 -0.30 0.77 -0.55 1 + 2388.60 -6692.30 4489.71 -0.30 0.77 -0.55 1 + 2107.80 -6753.12 4557.89 -0.30 0.77 -0.55 1 + 1171.72 -6250.86 5522.01 -0.21 0.75 -0.63 1 + 1460.51 -6208.82 5476.58 -0.21 0.75 -0.63 1 + 1749.17 -6167.09 5431.27 -0.21 0.75 -0.63 1 + 2038.05 -6125.18 5385.64 -0.21 0.75 -0.63 1 + 2326.93 -6083.33 5340.35 -0.21 0.75 -0.63 1 + 1309.71 -6395.82 5304.98 -0.21 0.75 -0.63 1 + 1598.37 -6354.03 5259.32 -0.21 0.75 -0.63 1 + 1887.25 -6312.18 5214.04 -0.21 0.75 -0.63 1 + 2175.82 -6270.27 5168.59 -0.21 0.75 -0.63 1 + 1447.57 -6541.03 5087.73 -0.21 0.75 -0.63 1 + 1736.36 -6498.99 5042.29 -0.21 0.75 -0.63 1 + 2024.93 -6457.08 4996.84 -0.21 0.75 -0.63 1 + 1585.34 -6686.11 4870.68 -0.21 0.75 -0.63 1 + 1874.13 -6644.08 4825.24 -0.21 0.75 -0.63 1 + 812.83 -3519.36 7608.69 -0.08 0.35 -0.93 1 + 663.40 -3285.52 7709.78 -0.08 0.35 -0.93 1 + 514.17 -3051.88 7811.08 -0.08 0.35 -0.93 1 + 364.88 -2817.84 7912.22 -0.08 0.35 -0.93 1 + 215.44 -2584.06 8013.56 -0.08 0.35 -0.93 1 + 957.70 -3275.00 7689.08 -0.08 0.35 -0.93 1 + 808.61 -3041.10 7790.18 -0.08 0.35 -0.93 1 + 659.18 -2807.32 7891.51 -0.08 0.35 -0.93 1 + 509.95 -2573.62 7992.57 -0.08 0.35 -0.93 1 + 1102.92 -3030.59 7769.47 -0.08 0.35 -0.93 1 + 953.48 -2796.74 7870.56 -0.08 0.35 -0.93 1 + 804.25 -2563.05 7971.62 -0.08 0.35 -0.93 1 + 1247.98 -2786.37 7849.82 -0.08 0.35 -0.93 1 + 1098.55 -2552.53 7950.91 -0.08 0.35 -0.93 1 + 1798.86 -7100.30 4087.44 -0.20 0.83 -0.51 1 + 1509.64 -7150.89 4118.86 -0.20 0.83 -0.51 1 + 1943.25 -6940.41 4289.41 -0.20 0.83 -0.51 1 + 1654.20 -6991.31 4320.78 -0.20 0.83 -0.51 1 + 1364.98 -7041.90 4352.20 -0.20 0.83 -0.51 1 + 1798.90 -6831.43 4522.57 -0.20 0.83 -0.51 1 + 1509.68 -6882.02 4553.98 -0.20 0.83 -0.51 1 + 1038.67 -3995.52 7341.35 -0.14 0.53 -0.83 1 + 1186.23 -4198.87 7186.08 -0.14 0.53 -0.83 1 + 1333.80 -4401.99 7030.91 -0.14 0.53 -0.83 1 + 1481.60 -4605.31 6875.56 -0.14 0.53 -0.83 1 + 1629.17 -4808.43 6720.40 -0.14 0.53 -0.83 1 + 893.87 -4222.79 7220.26 -0.14 0.53 -0.83 1 + 1041.43 -4426.14 7065.00 -0.14 0.53 -0.83 1 + 1189.24 -4629.23 6909.74 -0.14 0.53 -0.83 1 + 1336.80 -4832.58 6754.48 -0.14 0.53 -0.83 1 + 749.07 -4450.06 7099.18 -0.14 0.53 -0.83 1 + 896.88 -4653.15 6943.93 -0.14 0.53 -0.83 1 + 1044.44 -4856.50 6788.66 -0.14 0.53 -0.83 1 + 604.61 -4677.17 6978.32 -0.14 0.53 -0.83 1 + 752.17 -4880.52 6823.05 -0.14 0.53 -0.83 1 + 1629.23 -5219.54 6406.28 -0.14 0.66 -0.73 1 + 1481.43 -5422.78 6251.10 -0.14 0.66 -0.73 1 + 1038.59 -6032.37 5785.37 -0.14 0.66 -0.73 1 + 1336.77 -5246.20 6438.45 -0.14 0.66 -0.73 1 + 1188.97 -5449.44 6283.27 -0.14 0.66 -0.73 1 + 1041.49 -5652.68 6127.90 -0.14 0.66 -0.73 1 + 893.70 -5855.91 5972.71 -0.14 0.66 -0.73 1 + 1044.31 -5272.85 6470.62 -0.14 0.66 -0.73 1 + 896.82 -5476.09 6315.25 -0.14 0.66 -0.73 1 + 749.03 -5679.33 6160.06 -0.14 0.66 -0.73 1 + 752.24 -5299.69 6502.76 -0.14 0.66 -0.73 1 + 604.45 -5502.93 6347.57 -0.14 0.66 -0.73 1 + 6253.28 -5539.15 -1018.61 -0.75 0.66 0.06 1 + 6162.07 -5664.68 -767.55 -0.75 0.66 0.06 1 + 6070.87 -5790.20 -516.23 -0.75 0.66 0.06 1 + 5295.79 -6535.50 255.16 -0.59 0.81 -0.06 1 + 5057.01 -6708.98 255.16 -0.59 0.81 -0.06 1 + 4818.05 -6882.55 255.30 -0.59 0.81 -0.06 1 + 3479.00 -7560.23 -1295.27 -0.46 0.88 0.10 1 + 3626.79 -7512.22 -1044.10 -0.46 0.88 0.10 1 + 3774.36 -7464.27 -793.04 -0.46 0.88 0.10 1 + 3922.06 -7416.28 -541.64 -0.46 0.88 0.10 1 + 4069.63 -7368.33 -290.58 -0.46 0.88 0.10 1 + 3739.88 -7421.75 -1301.47 -0.46 0.88 0.10 1 + 3887.68 -7373.74 -1050.31 -0.46 0.88 0.10 1 + 4035.16 -7325.81 -799.01 -0.46 0.88 0.10 1 + 4182.95 -7277.80 -547.85 -0.46 0.88 0.10 1 + 4000.77 -7283.27 -1307.68 -0.46 0.88 0.10 1 + 4148.25 -7235.34 -1056.38 -0.46 0.88 0.10 1 + 4296.04 -7187.33 -805.22 -0.46 0.88 0.10 1 + 4261.41 -7145.12 -1313.74 -0.46 0.88 0.10 1 + 4409.20 -7097.11 -1062.58 -0.46 0.88 0.10 1 + 3335.74 -7658.88 -1018.60 -0.40 0.91 0.06 1 + 3508.30 -7633.63 -257.10 -0.40 0.91 0.06 1 + 3360.73 -7681.58 -508.16 -0.40 0.91 0.06 1 + 3212.94 -7729.59 -759.32 -0.40 0.91 0.06 1 + 3238.09 -7752.51 -249.11 -0.40 0.91 0.06 1 + 3090.30 -7800.52 -500.27 -0.40 0.91 0.06 1 + 2967.81 -7871.14 -241.13 -0.40 0.91 0.06 1 + 3954.46 -7436.28 51.38 -0.41 0.91 -0.03 1 + 3684.60 -7556.18 57.22 -0.41 0.91 -0.03 1 + 3415.04 -7676.25 63.17 -0.41 0.91 -0.03 1 + 3145.09 -7796.16 69.24 -0.41 0.91 -0.03 1 + 2875.30 -7916.30 75.09 -0.41 0.91 -0.03 1 + 3821.28 -7487.75 309.78 -0.41 0.91 -0.03 1 + 3551.56 -7607.60 315.96 -0.41 0.91 -0.03 1 + 3281.77 -7727.73 321.81 -0.41 0.91 -0.03 1 + 3012.14 -7847.56 327.74 -0.41 0.91 -0.03 1 + 3688.24 -7539.17 568.52 -0.41 0.91 -0.03 1 + 3418.38 -7659.06 574.36 -0.41 0.91 -0.03 1 + 3148.75 -7778.89 580.30 -0.41 0.91 -0.03 1 + 3555.29 -7590.58 827.02 -0.41 0.91 -0.03 1 + 3285.43 -7710.47 832.86 -0.41 0.91 -0.03 1 + 2000.96 -8022.69 -1418.68 -0.20 0.96 0.17 1 + 1837.85 -8013.07 -1664.63 -0.20 0.96 0.17 1 + 1875.69 -8094.85 -1161.16 -0.20 0.96 0.17 1 + 1712.57 -8085.24 -1407.12 -0.20 0.96 0.17 1 + 1549.64 -8075.31 -1653.03 -0.20 0.96 0.17 1 + 1587.17 -8157.09 -1149.73 -0.20 0.96 0.17 1 + 1424.05 -8147.48 -1395.69 -0.20 0.96 0.17 1 + 8125.85 -744.28 2059.07 -0.95 0.08 -0.30 1 + 8034.64 -869.81 2310.13 -0.95 0.08 -0.30 1 + 7943.34 -995.29 2561.43 -0.95 0.08 -0.30 1 + 7474.14 -1962.79 3332.83 -0.86 0.28 -0.42 1 + 7382.94 -2243.48 3332.83 -0.86 0.28 -0.42 1 + 7291.59 -2524.35 3332.95 -0.86 0.28 -0.42 1 + 6153.50 -4710.26 3281.64 -0.71 0.55 -0.44 1 + 5964.38 -4779.14 3497.69 -0.71 0.55 -0.44 1 + 5775.26 -4848.02 3713.75 -0.71 0.55 -0.44 1 + 4110.91 -6947.12 2378.56 -0.50 0.84 -0.22 1 + 4271.52 -6917.72 2132.67 -0.50 0.84 -0.22 1 + 4432.25 -6887.90 1886.77 -0.50 0.84 -0.22 1 + 3024.65 -7274.20 2993.56 -0.41 0.82 -0.40 1 + 2877.09 -7226.14 3244.86 -0.41 0.82 -0.40 1 + 3293.45 -7157.62 2955.75 -0.41 0.82 -0.40 1 + 3145.64 -7109.75 3206.86 -0.41 0.82 -0.40 1 + 2998.08 -7061.69 3458.15 -0.41 0.82 -0.40 1 + 3561.99 -7041.22 2917.75 -0.41 0.82 -0.40 1 + 3414.44 -6993.17 3169.04 -0.41 0.82 -0.40 1 + 3266.63 -6945.30 3420.15 -0.41 0.82 -0.40 1 + 3119.07 -6897.24 3671.44 -0.41 0.82 -0.40 1 + 3830.79 -6924.65 2879.93 -0.41 0.82 -0.40 1 + 3682.98 -6876.77 3131.04 -0.41 0.82 -0.40 1 + 3535.43 -6828.72 3382.33 -0.41 0.82 -0.40 1 + 3387.85 -6780.77 3633.39 -0.41 0.82 -0.40 1 + 3240.06 -6732.80 3884.74 -0.41 0.82 -0.40 1 + 3951.78 -6760.20 3093.22 -0.41 0.82 -0.40 1 + 3803.97 -6712.33 3344.33 -0.41 0.82 -0.40 1 + 3656.42 -6664.27 3595.63 -0.41 0.82 -0.40 1 + 3508.84 -6616.32 3846.69 -0.41 0.82 -0.40 1 + 4072.77 -6595.75 3306.52 -0.41 0.82 -0.40 1 + 3924.96 -6547.88 3557.63 -0.41 0.82 -0.40 1 + 3777.41 -6499.82 3808.92 -0.41 0.82 -0.40 1 + 2893.38 -7410.29 2745.39 -0.39 0.87 -0.29 1 + 3164.91 -7299.66 2710.37 -0.39 0.87 -0.29 1 + 3436.44 -7189.03 2675.36 -0.39 0.87 -0.29 1 + 3707.88 -7078.19 2640.25 -0.39 0.87 -0.29 1 + 3030.52 -7435.42 2485.19 -0.39 0.87 -0.29 1 + 3302.04 -7324.79 2450.18 -0.39 0.87 -0.29 1 + 3573.57 -7214.16 2415.16 -0.39 0.87 -0.29 1 + 3167.97 -7460.69 2225.04 -0.39 0.87 -0.29 1 + 3439.50 -7350.06 2190.02 -0.39 0.87 -0.29 1 + 3305.10 -7485.82 1964.84 -0.39 0.87 -0.29 1 + 3636.89 -7428.49 1395.69 -0.40 0.90 -0.17 1 + 3510.58 -7532.14 1149.73 -0.40 0.90 -0.17 1 + 3492.87 -7443.92 1653.03 -0.40 0.90 -0.17 1 + 3366.89 -7547.72 1407.12 -0.40 0.90 -0.17 1 + 3240.58 -7651.38 1161.16 -0.40 0.90 -0.17 1 + 3223.13 -7562.97 1664.63 -0.40 0.90 -0.17 1 + 3096.82 -7666.63 1418.68 -0.40 0.90 -0.17 1 + 2578.14 -7307.86 3281.70 -0.30 0.84 -0.45 1 + 2669.36 -6920.23 3953.81 -0.30 0.84 -0.45 1 + 2545.40 -7078.81 3737.76 -0.30 0.84 -0.45 1 + 2421.45 -7237.38 3521.71 -0.30 0.84 -0.45 1 + 2388.56 -7008.62 3977.91 -0.30 0.84 -0.45 1 + 2264.60 -7167.20 3761.86 -0.30 0.84 -0.45 1 + 2107.90 -7096.72 4001.88 -0.30 0.84 -0.45 1 + 2326.95 -7497.12 3052.74 -0.21 0.90 -0.39 1 + 2037.98 -7556.36 3069.96 -0.21 0.90 -0.39 1 + 1749.32 -7615.85 3087.01 -0.21 0.90 -0.39 1 + 1460.60 -7675.01 3104.18 -0.21 0.90 -0.39 1 + 1171.72 -7734.46 3121.51 -0.21 0.90 -0.39 1 + 2175.85 -7427.08 3296.76 -0.21 0.90 -0.39 1 + 1887.12 -7486.25 3313.94 -0.21 0.90 -0.39 1 + 1598.46 -7545.73 3330.98 -0.21 0.90 -0.39 1 + 1309.82 -7605.11 3348.26 -0.21 0.90 -0.39 1 + 2024.99 -7356.97 3540.74 -0.21 0.90 -0.39 1 + 1736.35 -7416.35 3558.01 -0.21 0.90 -0.39 1 + 1447.69 -7475.84 3575.05 -0.21 0.90 -0.39 1 + 1874.22 -7287.08 3784.81 -0.21 0.90 -0.39 1 + 1585.56 -7346.56 3801.85 -0.21 0.90 -0.39 1 + 1803.19 -7958.13 2059.07 -0.21 0.93 -0.30 1 + 1655.61 -7910.18 2310.13 -0.21 0.93 -0.30 1 + 1508.06 -7862.13 2561.43 -0.21 0.93 -0.30 1 + 1360.25 -7814.25 2812.54 -0.21 0.93 -0.30 1 + 1943.95 -7848.76 2294.47 -0.21 0.93 -0.30 1 + 1796.38 -7800.81 2545.53 -0.21 0.93 -0.30 1 + 1648.82 -7752.76 2796.82 -0.21 0.93 -0.30 1 + 2084.81 -7739.61 2529.96 -0.21 0.93 -0.30 1 + 1937.25 -7691.56 2781.25 -0.21 0.93 -0.30 1 + 2225.58 -7630.24 2765.36 -0.21 0.93 -0.30 1 + 0.09 0.06 -8383.13 9999.00 9999.00 9999.00 3 + 4176.42 -73.25 -7305.85 9999.00 9999.00 9999.00 3 + 7073.94 82.19 -4557.89 9999.00 9999.00 9999.00 3 + 7807.99 -3157.95 36.51 9999.00 9999.00 9999.00 3 + 5674.72 -4224.42 -4557.80 9999.00 9999.00 9999.00 3 + 2254.27 -3605.30 -7258.25 9999.00 9999.00 9999.00 3 + 6047.80 -5839.18 57.29 9999.00 9999.00 9999.00 3 + 6136.48 563.59 -5731.41 -0.72 -0.01 0.70 1 + 5988.91 360.48 -5886.58 -0.72 -0.01 0.70 1 + 5841.29 157.12 -6041.76 -0.72 -0.01 0.70 1 + 6696.45 -535.05 -5068.76 -0.83 0.05 0.55 1 + 6851.10 -615.13 -4830.30 -0.83 0.05 0.55 1 + 7005.74 -695.22 -4591.84 -0.83 0.05 0.55 1 + 2209.67 386.53 -8111.06 -0.25 0.01 0.97 1 + 2016.18 168.50 -8158.10 -0.25 0.01 0.97 1 + 1822.69 -49.54 -8205.13 -0.25 0.01 0.97 1 + 1629.14 -267.60 -8251.93 -0.25 0.01 0.97 1 + 2295.19 105.21 -8084.97 -0.25 0.01 0.97 1 + 2101.70 -112.83 -8132.01 -0.25 0.01 0.97 1 + 1908.21 -330.87 -8179.05 -0.25 0.01 0.97 1 + 2380.63 -176.30 -8059.18 -0.25 0.01 0.97 1 + 2187.14 -394.34 -8106.22 -0.25 0.01 0.97 1 + 2466.15 -457.63 -8033.09 -0.25 0.01 0.97 1 + 4893.02 -306.15 -6840.16 -0.53 0.05 0.84 1 + 4654.24 -228.56 -6995.33 -0.53 0.05 0.84 1 + 4415.25 -151.07 -7150.60 -0.53 0.05 0.84 1 + 2560.02 -1100.83 -7911.51 -0.33 0.11 0.94 1 + 2823.82 -1186.41 -7810.12 -0.33 0.11 0.94 1 + 2507.36 -814.69 -7962.04 -0.33 0.11 0.94 1 + 2771.07 -900.46 -7860.95 -0.33 0.11 0.94 1 + 3034.87 -986.04 -7759.56 -0.33 0.11 0.94 1 + 2718.06 -614.38 -7911.57 -0.33 0.11 0.94 1 + 2981.86 -699.96 -7810.18 -0.33 0.11 0.94 1 + 3421.83 -2395.51 -7305.88 -0.46 0.27 0.84 1 + 3660.60 -2473.09 -7150.71 -0.46 0.27 0.84 1 + 3899.58 -2550.59 -6995.43 -0.46 0.27 0.84 1 + 1475.01 -741.24 -8251.94 -0.21 0.14 0.97 1 + 1503.75 -1031.25 -8205.13 -0.21 0.14 0.97 1 + 1532.13 -1321.37 -8158.10 -0.21 0.14 0.97 1 + 1560.51 -1611.49 -8111.06 -0.21 0.14 0.97 1 + 1738.18 -853.79 -8179.09 -0.21 0.14 0.97 1 + 1766.56 -1143.91 -8132.05 -0.21 0.14 0.97 1 + 1794.94 -1434.03 -8085.01 -0.21 0.14 0.97 1 + 2001.26 -966.57 -8106.21 -0.21 0.14 0.97 1 + 2029.64 -1256.69 -8059.17 -0.21 0.14 0.97 1 + 2264.07 -1079.23 -8033.13 -0.21 0.14 0.97 1 + 4633.25 -3309.35 -6197.12 -0.58 0.43 0.70 1 + 4633.25 -3560.42 -6041.96 -0.58 0.43 0.70 1 + 4633.35 -3811.60 -5886.59 -0.58 0.43 0.70 1 + 1693.12 -1963.99 -8013.55 -0.27 0.24 0.93 1 + 1951.52 -2065.28 -7912.20 -0.27 0.24 0.93 1 + 2209.65 -2166.79 -7811.11 -0.27 0.24 0.93 1 + 2467.82 -2268.02 -7709.81 -0.27 0.24 0.93 1 + 2726.27 -2369.36 -7608.71 -0.27 0.24 0.93 1 + 1925.24 -1782.43 -7992.57 -0.27 0.24 0.93 1 + 2183.41 -1883.65 -7891.27 -0.27 0.24 0.93 1 + 2441.53 -1985.16 -7790.18 -0.27 0.24 0.93 1 + 2699.74 -2086.43 -7689.12 -0.27 0.24 0.93 1 + 2157.12 -1600.79 -7971.63 -0.27 0.24 0.93 1 + 2415.33 -1702.06 -7870.58 -0.27 0.24 0.93 1 + 2673.45 -1803.57 -7769.49 -0.27 0.24 0.93 1 + 2389.04 -1419.21 -7950.94 -0.27 0.24 0.93 1 + 2647.17 -1520.72 -7849.85 -0.27 0.24 0.93 1 + 4144.35 -2932.40 -6720.39 -0.43 0.35 0.83 1 + 3905.37 -2854.91 -6875.67 -0.43 0.35 0.83 1 + 3666.59 -2777.32 -7030.84 -0.43 0.35 0.83 1 + 3427.55 -2699.59 -7186.19 -0.43 0.35 0.83 1 + 3188.77 -2622.01 -7341.36 -0.43 0.35 0.83 1 + 3921.87 -3123.74 -6754.57 -0.43 0.35 0.83 1 + 3682.89 -3046.25 -6909.85 -0.43 0.35 0.83 1 + 3444.05 -2968.43 -7065.09 -0.43 0.35 0.83 1 + 3205.07 -2890.94 -7220.37 -0.43 0.35 0.83 1 + 3699.39 -3315.09 -6788.74 -0.43 0.35 0.83 1 + 3460.55 -3237.27 -6943.98 -0.43 0.35 0.83 1 + 3221.57 -3159.77 -7099.26 -0.43 0.35 0.83 1 + 3477.19 -3506.14 -6823.09 -0.43 0.35 0.83 1 + 3238.20 -3428.64 -6978.37 -0.43 0.35 0.83 1 + 4165.14 -3709.57 -6283.24 -0.50 0.45 0.73 1 + 4165.04 -3458.39 -6438.60 -0.50 0.45 0.73 1 + 3944.16 -4154.27 -6160.19 -0.50 0.45 0.73 1 + 3944.31 -3903.01 -6315.31 -0.50 0.45 0.73 1 + 3944.21 -3651.82 -6470.67 -0.50 0.45 0.73 1 + 3723.66 -4096.54 -6347.53 -0.50 0.45 0.73 1 + 3723.55 -3845.35 -6502.89 -0.50 0.45 0.73 1 + 4428.54 -4712.49 -5396.23 -0.54 0.61 0.59 1 + 4401.11 -4928.98 -5197.20 -0.54 0.61 0.59 1 + 4373.94 -5145.47 -4998.42 -0.54 0.61 0.59 1 + 4346.69 -5361.95 -4799.21 -0.54 0.61 0.59 1 + 4319.39 -5578.61 -4600.30 -0.54 0.61 0.59 1 + 4629.09 -4742.07 -5181.60 -0.54 0.61 0.59 1 + 4601.96 -4958.37 -4982.52 -0.54 0.61 0.59 1 + 4574.67 -5175.04 -4783.61 -0.54 0.61 0.59 1 + 4547.36 -5391.34 -4584.71 -0.54 0.61 0.59 1 + 4829.94 -4771.46 -4966.93 -0.54 0.61 0.59 1 + 4802.51 -4987.94 -4767.90 -0.54 0.61 0.59 1 + 4775.21 -5204.25 -4569.00 -0.54 0.61 0.59 1 + 5030.61 -4800.86 -4752.44 -0.54 0.61 0.59 1 + 5003.18 -5017.34 -4553.41 -0.54 0.61 0.59 1 + 238.87 173.53 -8383.13 -0.00 -0.00 1.00 1 + -30.84 293.68 -8383.12 -0.00 -0.00 1.00 1 + 269.80 -120.09 -8383.13 -0.00 -0.00 1.00 1 + 0.09 0.06 -8383.13 -0.00 -0.00 1.00 1 + -269.62 120.21 -8383.12 -0.00 -0.00 1.00 1 + 31.03 -293.57 -8383.13 -0.00 -0.00 1.00 1 + -239.00 -173.58 -8383.14 -0.00 -0.00 1.00 1 + 1038.95 -1681.13 -8192.58 -0.09 0.13 0.99 1 + 1277.81 -1507.41 -8192.61 -0.09 0.13 0.99 1 + 770.96 -1563.44 -8232.62 -0.09 0.13 0.99 1 + 1009.98 -1390.03 -8232.57 -0.09 0.13 0.99 1 + 1248.84 -1216.32 -8232.61 -0.09 0.13 0.99 1 + 503.13 -1446.06 -8272.58 -0.09 0.13 0.99 1 + 741.99 -1272.34 -8272.62 -0.09 0.13 0.99 1 + 981.00 -1098.94 -8272.57 -0.09 0.13 0.99 1 + 1219.86 -925.22 -8272.61 -0.09 0.13 0.99 1 + 235.14 -1328.36 -8312.63 -0.09 0.13 0.99 1 + 474.15 -1154.96 -8312.58 -0.09 0.13 0.99 1 + 713.01 -981.24 -8312.62 -0.09 0.13 0.99 1 + 951.79 -807.77 -8312.61 -0.09 0.13 0.99 1 + 1190.88 -634.12 -8312.60 -0.09 0.13 0.99 1 + 206.16 -1037.27 -8352.63 -0.09 0.13 0.99 1 + 445.18 -863.86 -8352.58 -0.09 0.13 0.99 1 + 684.03 -690.15 -8352.61 -0.09 0.13 0.99 1 + 922.81 -516.67 -8352.61 -0.09 0.13 0.99 1 + 177.19 -746.17 -8392.62 -0.09 0.13 0.99 1 + 416.20 -572.77 -8392.57 -0.09 0.13 0.99 1 + 655.06 -399.05 -8392.61 -0.09 0.13 0.99 1 + 1715.64 -3114.89 -7627.40 -0.23 0.32 0.92 1 + 1954.41 -2941.42 -7627.40 -0.23 0.32 0.92 1 + 2193.27 -2767.70 -7627.44 -0.23 0.32 0.92 1 + 2432.28 -2594.30 -7627.39 -0.23 0.32 0.92 1 + 1696.76 -2837.76 -7727.54 -0.23 0.32 0.92 1 + 1935.53 -2664.28 -7727.54 -0.23 0.32 0.92 1 + 2174.39 -2490.56 -7727.57 -0.23 0.32 0.92 1 + 1677.92 -2560.67 -7827.92 -0.23 0.32 0.92 1 + 1916.77 -2386.96 -7827.96 -0.23 0.32 0.92 1 + 1659.04 -2283.54 -7928.06 -0.23 0.32 0.92 1 + 2705.44 -2719.00 -7498.41 -0.28 0.38 0.88 1 + 2466.58 -2892.72 -7498.37 -0.28 0.38 0.88 1 + 2227.80 -3066.19 -7498.37 -0.28 0.38 0.88 1 + 1988.71 -3239.84 -7498.39 -0.28 0.38 0.88 1 + 1749.93 -3413.31 -7498.39 -0.28 0.38 0.88 1 + 2718.79 -2988.59 -7378.32 -0.28 0.38 0.88 1 + 2479.93 -3162.31 -7378.29 -0.28 0.38 0.88 1 + 2240.92 -3335.71 -7378.34 -0.28 0.38 0.88 1 + 2002.06 -3509.43 -7378.30 -0.28 0.38 0.88 1 + 2732.14 -3258.18 -7258.24 -0.28 0.38 0.88 1 + 2493.13 -3431.59 -7258.29 -0.28 0.38 0.88 1 + 2254.27 -3605.30 -7258.25 -0.28 0.38 0.88 1 + 2745.37 -3527.51 -7138.49 -0.28 0.38 0.88 1 + 2506.52 -3701.23 -7138.45 -0.28 0.38 0.88 1 + 3448.09 -3740.77 -6614.58 -0.36 0.49 0.79 1 + 3208.98 -3663.19 -6769.79 -0.36 0.49 0.79 1 + 2970.18 -3585.44 -6924.96 -0.36 0.49 0.79 1 + 3447.98 -3991.82 -6459.28 -0.36 0.49 0.79 1 + 3209.01 -3914.43 -6614.63 -0.36 0.49 0.79 1 + 2970.21 -3836.67 -6769.80 -0.36 0.49 0.79 1 + 2731.11 -3759.10 -6925.01 -0.36 0.49 0.79 1 + 3448.01 -4243.06 -6304.12 -0.36 0.49 0.79 1 + 3208.90 -4165.49 -6459.34 -0.36 0.49 0.79 1 + 2970.23 -4087.91 -6614.63 -0.36 0.49 0.79 1 + 2731.31 -4010.33 -6769.67 -0.36 0.49 0.79 1 + 2492.33 -3932.58 -6925.02 -0.36 0.49 0.79 1 + 3209.11 -4416.72 -6303.99 -0.36 0.49 0.79 1 + 2970.13 -4338.97 -6459.34 -0.36 0.49 0.79 1 + 2731.33 -4261.57 -6614.50 -0.36 0.49 0.79 1 + 2492.35 -4183.82 -6769.85 -0.36 0.49 0.79 1 + 2970.15 -4590.21 -6304.17 -0.36 0.49 0.79 1 + 2731.23 -4512.63 -6459.21 -0.36 0.49 0.79 1 + 2492.38 -4435.06 -6614.68 -0.36 0.49 0.79 1 + 3188.81 -5393.74 -5628.27 -0.43 0.59 0.68 1 + 3427.71 -5220.08 -5628.40 -0.43 0.59 0.68 1 + 3666.49 -5046.60 -5628.40 -0.43 0.59 0.68 1 + 3905.57 -4872.93 -5628.35 -0.43 0.59 0.68 1 + 4144.34 -4699.45 -5628.35 -0.43 0.59 0.68 1 + 3205.25 -5165.15 -5814.70 -0.43 0.59 0.68 1 + 3444.15 -4991.49 -5814.83 -0.43 0.59 0.68 1 + 3683.11 -4818.00 -5814.65 -0.43 0.59 0.68 1 + 3922.01 -4644.34 -5814.78 -0.43 0.59 0.68 1 + 3221.69 -4936.55 -6001.12 -0.43 0.59 0.68 1 + 3460.65 -4763.07 -6000.94 -0.43 0.59 0.68 1 + 3699.55 -4589.41 -6001.07 -0.43 0.59 0.68 1 + 3238.32 -4708.31 -6187.36 -0.43 0.59 0.68 1 + 3477.22 -4534.66 -6187.49 -0.43 0.59 0.68 1 + 4138.48 -4942.59 -5409.89 -0.46 0.63 0.62 1 + 3899.70 -5116.07 -5409.89 -0.46 0.63 0.62 1 + 3660.80 -5289.73 -5409.76 -0.46 0.63 0.62 1 + 3421.85 -5463.22 -5409.95 -0.46 0.63 0.62 1 + 4112.20 -5157.59 -5209.20 -0.46 0.63 0.62 1 + 3873.43 -5331.07 -5209.20 -0.46 0.63 0.62 1 + 3634.53 -5504.73 -5209.07 -0.46 0.63 0.62 1 + 4086.06 -5372.76 -5008.63 -0.46 0.63 0.62 1 + 3847.16 -5546.42 -5008.50 -0.46 0.63 0.62 1 + 4059.78 -5587.75 -4807.94 -0.46 0.63 0.62 1 + 4446.50 -5753.71 -4250.21 -0.58 0.67 0.46 1 + 4630.19 -5752.16 -4018.78 -0.58 0.67 0.46 1 + 4813.70 -5750.98 -3787.53 -0.58 0.67 0.46 1 + 4997.21 -5749.43 -3556.27 -0.58 0.67 0.46 1 + 5181.02 -5748.06 -3324.98 -0.58 0.67 0.46 1 + 4671.96 -5562.98 -4241.54 -0.58 0.67 0.46 1 + 4855.47 -5561.43 -4010.27 -0.58 0.67 0.46 1 + 5038.98 -5560.24 -3779.03 -0.58 0.67 0.46 1 + 5222.60 -5558.87 -3547.91 -0.58 0.67 0.46 1 + 4897.24 -5372.24 -4233.03 -0.58 0.67 0.46 1 + 5080.86 -5370.87 -4001.91 -0.58 0.67 0.46 1 + 5264.38 -5369.68 -3770.67 -0.58 0.67 0.46 1 + 5122.64 -5181.68 -4224.67 -0.58 0.67 0.46 1 + 5306.15 -5180.49 -3993.42 -0.58 0.67 0.46 1 + 4176.35 -6501.80 -3332.83 -0.53 0.73 0.42 1 + 4415.13 -6328.32 -3332.83 -0.53 0.73 0.42 1 + 4654.02 -6154.65 -3332.95 -0.53 0.73 0.42 1 + 4892.99 -5981.18 -3332.78 -0.53 0.73 0.42 1 + 4231.94 -6327.15 -3564.34 -0.53 0.73 0.42 1 + 4470.71 -6153.67 -3564.34 -0.53 0.73 0.42 1 + 4709.60 -5980.00 -3564.46 -0.53 0.73 0.42 1 + 4287.64 -6152.67 -3795.99 -0.53 0.73 0.42 1 + 4526.53 -5979.00 -3796.11 -0.53 0.73 0.42 1 + 4343.22 -5978.02 -4027.50 -0.53 0.73 0.42 1 + 5076.46 -5982.46 -3062.35 -0.55 0.76 0.35 1 + 4837.57 -6156.13 -3062.23 -0.55 0.76 0.35 1 + 4598.80 -6329.61 -3062.23 -0.55 0.76 0.35 1 + 4359.71 -6503.27 -3062.28 -0.55 0.76 0.35 1 + 4120.94 -6676.75 -3062.28 -0.55 0.76 0.35 1 + 5008.94 -6140.73 -2822.21 -0.55 0.76 0.35 1 + 4770.05 -6314.40 -2822.09 -0.55 0.76 0.35 1 + 4531.08 -6487.88 -2822.26 -0.55 0.76 0.35 1 + 4292.19 -6661.55 -2822.14 -0.55 0.76 0.35 1 + 4941.42 -6299.01 -2582.07 -0.55 0.76 0.35 1 + 4702.45 -6472.49 -2582.24 -0.55 0.76 0.35 1 + 4463.56 -6646.16 -2582.12 -0.55 0.76 0.35 1 + 4873.95 -6457.26 -2342.37 -0.55 0.76 0.35 1 + 4635.05 -6630.93 -2342.25 -0.55 0.76 0.35 1 + 3865.78 -6703.68 -3324.93 -0.46 0.76 0.46 1 + 3923.84 -6529.36 -3556.17 -0.46 0.76 0.46 1 + 3981.91 -6355.39 -3787.44 -0.46 0.76 0.46 1 + 4039.78 -6181.07 -4018.85 -0.46 0.76 0.46 1 + 4097.97 -6006.91 -4250.23 -0.46 0.76 0.46 1 + 3673.03 -6684.83 -3547.75 -0.46 0.76 0.46 1 + 3730.78 -6510.69 -3779.04 -0.46 0.76 0.46 1 + 3788.97 -6336.54 -4010.43 -0.46 0.76 0.46 1 + 3846.91 -6162.41 -4241.54 -0.46 0.76 0.46 1 + 3479.97 -6666.17 -3770.62 -0.46 0.76 0.46 1 + 3538.03 -6491.85 -4001.86 -0.46 0.76 0.46 1 + 3595.98 -6317.71 -4232.98 -0.46 0.76 0.46 1 + 3287.10 -6647.51 -3993.31 -0.46 0.76 0.46 1 + 3345.16 -6473.19 -4224.56 -0.46 0.76 0.46 1 + 6307.00 -817.25 5522.01 -0.78 0.03 -0.63 1 + 6356.27 -529.60 5476.58 -0.78 0.03 -0.63 1 + 6405.78 -242.18 5431.27 -0.78 0.03 -0.63 1 + 6455.19 45.51 5385.64 -0.78 0.03 -0.63 1 + 6504.65 333.18 5340.35 -0.78 0.03 -0.63 1 + 6487.51 -730.81 5304.98 -0.78 0.03 -0.63 1 + 6536.97 -443.36 5259.32 -0.78 0.03 -0.63 1 + 6586.43 -155.69 5214.04 -0.78 0.03 -0.63 1 + 6635.74 131.71 5168.59 -0.78 0.03 -0.63 1 + 6668.21 -644.57 5087.73 -0.78 0.03 -0.63 1 + 6717.47 -356.92 5042.29 -0.78 0.03 -0.63 1 + 6766.79 -69.52 4996.84 -0.78 0.03 -0.63 1 + 6848.77 -558.37 4870.68 -0.78 0.03 -0.63 1 + 6898.03 -270.73 4825.24 -0.78 0.03 -0.63 1 + 4988.35 -999.61 6614.57 -0.58 0.19 -0.79 1 + 5135.93 -1203.02 6459.24 -0.58 0.19 -0.79 1 + 5283.57 -1406.07 6303.92 -0.58 0.19 -0.79 1 + 4749.45 -1077.24 6769.64 -0.58 0.19 -0.79 1 + 4897.09 -1280.66 6614.56 -0.58 0.19 -0.79 1 + 5044.73 -1483.71 6459.24 -0.58 0.19 -0.79 1 + 5192.31 -1687.12 6303.91 -0.58 0.19 -0.79 1 + 4510.60 -1154.89 6924.95 -0.58 0.19 -0.79 1 + 4658.19 -1358.29 6769.62 -0.58 0.19 -0.79 1 + 4805.88 -1561.36 6614.55 -0.58 0.19 -0.79 1 + 4953.32 -1764.56 6459.27 -0.58 0.19 -0.79 1 + 5101.11 -1967.82 6303.91 -0.58 0.19 -0.79 1 + 4419.20 -1435.74 6924.99 -0.58 0.19 -0.79 1 + 4566.98 -1638.99 6769.62 -0.58 0.19 -0.79 1 + 4714.48 -1842.21 6614.59 -0.58 0.19 -0.79 1 + 4862.26 -2045.46 6459.22 -0.58 0.19 -0.79 1 + 4328.14 -1716.64 6924.94 -0.58 0.19 -0.79 1 + 4475.58 -1919.84 6769.66 -0.58 0.19 -0.79 1 + 4623.42 -2123.11 6614.54 -0.58 0.19 -0.79 1 + 5720.34 -2013.99 5814.65 -0.69 0.23 -0.68 1 + 5629.00 -2294.86 5814.78 -0.69 0.23 -0.68 1 + 5690.51 -1538.52 6001.12 -0.69 0.23 -0.68 1 + 5599.35 -1819.39 6000.94 -0.69 0.23 -0.68 1 + 5508.02 -2100.26 6001.07 -0.69 0.23 -0.68 1 + 5478.58 -1624.86 6187.36 -0.69 0.23 -0.68 1 + 5387.24 -1905.73 6187.49 -0.69 0.23 -0.68 1 + 6335.40 -2751.59 4783.61 -0.74 0.32 -0.59 1 + 6532.68 -2658.78 4584.71 -0.74 0.32 -0.59 1 + 6030.46 -3119.08 4966.93 -0.74 0.32 -0.59 1 + 6227.87 -3026.10 4767.90 -0.74 0.32 -0.59 1 + 6425.16 -2933.29 4569.00 -0.74 0.32 -0.59 1 + 6120.43 -3300.85 4752.44 -0.74 0.32 -0.59 1 + 6317.84 -3207.87 4553.41 -0.74 0.32 -0.59 1 + 5416.16 -2851.93 5785.33 -0.59 0.34 -0.73 1 + 4699.39 -3084.76 6251.18 -0.59 0.34 -0.73 1 + 4460.62 -3162.35 6406.35 -0.59 0.34 -0.73 1 + 5292.97 -2659.65 5972.76 -0.59 0.34 -0.73 1 + 5054.04 -2737.17 6128.13 -0.59 0.34 -0.73 1 + 4815.12 -2814.96 6283.25 -0.59 0.34 -0.73 1 + 4576.20 -2892.48 6438.61 -0.59 0.34 -0.73 1 + 5169.77 -2467.37 6160.19 -0.59 0.34 -0.73 1 + 4930.85 -2545.16 6315.31 -0.59 0.34 -0.73 1 + 4691.93 -2622.68 6470.68 -0.59 0.34 -0.73 1 + 5046.72 -2275.50 6347.53 -0.59 0.34 -0.73 1 + 4807.80 -2353.02 6502.90 -0.59 0.34 -0.73 1 + 5066.47 -4092.89 5340.41 -0.65 0.43 -0.63 1 + 5195.62 -3831.02 5385.69 -0.65 0.43 -0.63 1 + 5324.61 -3569.42 5431.27 -0.65 0.43 -0.63 1 + 5453.61 -3307.74 5476.50 -0.65 0.43 -0.63 1 + 5582.91 -3046.01 5521.93 -0.65 0.43 -0.63 1 + 5290.95 -4006.96 5168.63 -0.65 0.43 -0.63 1 + 5419.95 -3745.28 5213.86 -0.65 0.43 -0.63 1 + 5548.95 -3483.68 5259.45 -0.65 0.43 -0.63 1 + 5678.10 -3222.15 5304.83 -0.65 0.43 -0.63 1 + 5515.29 -3921.22 4996.81 -0.65 0.43 -0.63 1 + 5644.44 -3659.69 5042.19 -0.65 0.43 -0.63 1 + 5773.44 -3398.09 5087.78 -0.65 0.43 -0.63 1 + 5739.77 -3835.63 4825.14 -0.65 0.43 -0.63 1 + 5868.77 -3574.03 4870.72 -0.65 0.43 -0.63 1 + 4689.37 -3567.66 5994.03 -0.59 0.42 -0.70 1 + 4928.14 -3490.07 5838.87 -0.59 0.42 -0.70 1 + 5167.06 -3412.55 5683.50 -0.59 0.42 -0.70 1 + 4799.73 -3751.62 5791.09 -0.59 0.42 -0.70 1 + 5038.66 -3674.10 5635.73 -0.59 0.42 -0.70 1 + 4909.96 -3935.45 5587.99 -0.59 0.42 -0.70 1 + 5103.11 -4368.92 5068.74 -0.64 0.53 -0.55 1 + 5481.79 -4587.87 4421.44 -0.64 0.53 -0.55 1 + 5403.76 -4432.18 4659.90 -0.64 0.53 -0.55 1 + 5325.73 -4276.49 4898.36 -0.64 0.53 -0.55 1 + 5626.66 -4339.69 4489.72 -0.64 0.53 -0.55 1 + 5548.63 -4184.00 4728.18 -0.64 0.53 -0.55 1 + 5771.24 -4091.57 4557.80 -0.64 0.53 -0.55 1 + 4705.71 -4709.28 5167.48 -0.56 0.61 -0.55 1 + 4944.64 -4631.76 5012.12 -0.56 0.61 -0.55 1 + 4540.90 -4938.37 5080.13 -0.56 0.61 -0.55 1 + 4779.82 -4860.58 4925.01 -0.56 0.61 -0.55 1 + 5018.74 -4783.06 4769.64 -0.56 0.61 -0.55 1 + 4376.08 -5167.18 4993.01 -0.56 0.61 -0.55 1 + 4615.00 -5089.66 4837.65 -0.56 0.61 -0.55 1 + 4853.92 -5011.87 4682.53 -0.56 0.61 -0.55 1 + 5092.85 -4934.35 4527.16 -0.56 0.61 -0.55 1 + 4211.26 -5396.26 4905.66 -0.56 0.61 -0.55 1 + 4450.18 -5318.48 4750.53 -0.56 0.61 -0.55 1 + 4689.10 -5240.96 4595.17 -0.56 0.61 -0.55 1 + 4927.88 -5163.37 4440.00 -0.56 0.61 -0.55 1 + 5166.95 -5085.65 4284.68 -0.56 0.61 -0.55 1 + 4285.36 -5547.56 4663.18 -0.56 0.61 -0.55 1 + 4524.29 -5469.77 4508.06 -0.56 0.61 -0.55 1 + 4763.21 -5392.25 4352.69 -0.56 0.61 -0.55 1 + 5001.98 -5314.67 4197.53 -0.56 0.61 -0.55 1 + 4359.47 -5698.85 4420.70 -0.56 0.61 -0.55 1 + 4598.39 -5621.07 4265.58 -0.56 0.61 -0.55 1 + 4837.31 -5543.55 4110.21 -0.56 0.61 -0.55 1 + 4168.41 -6239.65 3749.05 -0.53 0.72 -0.45 1 + 4220.58 -6060.38 3977.78 -0.53 0.72 -0.45 1 + 4355.02 -6245.44 3520.31 -0.53 0.72 -0.45 1 + 4407.19 -6066.17 3749.05 -0.53 0.72 -0.45 1 + 4459.35 -5886.90 3977.78 -0.53 0.72 -0.45 1 + 4593.79 -6071.96 3520.31 -0.53 0.72 -0.45 1 + 4646.24 -5892.47 3749.10 -0.53 0.72 -0.45 1 + 7852.11 -3017.02 -255.16 -0.95 0.31 0.06 1 + 7943.31 -2736.33 -255.16 -0.95 0.31 0.06 1 + 8034.55 -2455.42 -255.30 -0.95 0.31 0.06 1 + 7200.40 -4235.54 1018.61 -0.86 0.50 -0.06 1 + 7291.61 -4110.01 767.55 -0.86 0.50 -0.06 1 + 7382.80 -3984.49 516.23 -0.86 0.50 -0.06 1 + 6742.79 -4948.43 -799.66 -0.79 0.60 0.11 1 + 6847.84 -4855.97 -539.83 -0.79 0.60 0.11 1 + 6712.09 -4899.27 -1307.88 -0.79 0.60 0.11 1 + 6817.15 -4806.79 -1047.80 -0.79 0.60 0.11 1 + 6922.20 -4714.33 -787.97 -0.79 0.60 0.11 1 + 6891.72 -4665.31 -1296.18 -0.79 0.60 0.11 1 + 6996.78 -4572.83 -1036.10 -0.79 0.60 0.11 1 + 5979.53 -5915.94 -265.15 -0.75 0.66 0.06 1 + 6358.39 -5444.34 -759.48 -0.75 0.66 0.06 1 + 6267.18 -5569.87 -508.41 -0.75 0.66 0.06 1 + 6175.98 -5695.38 -257.10 -0.75 0.66 0.06 1 + 6463.71 -5349.67 -500.34 -0.75 0.66 0.06 1 + 6372.51 -5475.18 -249.02 -0.75 0.66 0.06 1 + 6568.82 -5254.85 -241.20 -0.75 0.66 0.06 1 + 5750.15 -6147.33 -290.55 -0.69 0.71 0.10 1 + 5841.35 -6021.82 -541.87 -0.69 0.71 0.10 1 + 5932.56 -5896.29 -792.93 -0.69 0.71 0.10 1 + 6023.90 -5770.56 -1044.27 -0.69 0.71 0.10 1 + 6115.10 -5645.03 -1295.33 -0.69 0.71 0.10 1 + 5629.09 -6227.05 -547.97 -0.69 0.71 0.10 1 + 5720.29 -6101.54 -799.29 -0.69 0.71 0.10 1 + 5811.63 -5975.79 -1050.37 -0.69 0.71 0.10 1 + 5902.83 -5850.28 -1301.69 -0.69 0.71 0.10 1 + 5508.03 -6306.77 -805.40 -0.69 0.71 0.10 1 + 5599.37 -6181.02 -1056.48 -0.69 0.71 0.10 1 + 5690.57 -6055.51 -1307.80 -0.69 0.71 0.10 1 + 5387.32 -6386.40 -1062.58 -0.69 0.71 0.10 1 + 5478.52 -6260.88 -1313.90 -0.69 0.71 0.10 1 + 5283.71 -6267.32 -1561.49 -0.58 0.79 0.19 1 + 5135.86 -6315.34 -1812.71 -0.58 0.79 0.19 1 + 4988.28 -6363.15 -2063.88 -0.58 0.79 0.19 1 + 5192.36 -6392.79 -1310.37 -0.58 0.79 0.19 1 + 5044.66 -6441.02 -1561.54 -0.58 0.79 0.19 1 + 4897.08 -6488.82 -1812.71 -0.58 0.79 0.19 1 + 4749.23 -6536.85 -2063.94 -0.58 0.79 0.19 1 + 5101.16 -6518.46 -1059.21 -0.58 0.79 0.19 1 + 4953.31 -6566.49 -1310.43 -0.58 0.79 0.19 1 + 4805.88 -6614.50 -1561.54 -0.58 0.79 0.19 1 + 4658.12 -6662.40 -1812.57 -0.58 0.79 0.19 1 + 4510.45 -6710.33 -2063.94 -0.58 0.79 0.19 1 + 4862.20 -6692.04 -1059.06 -0.58 0.79 0.19 1 + 4714.53 -6739.97 -1310.43 -0.58 0.79 0.19 1 + 4566.92 -6788.07 -1561.40 -0.58 0.79 0.19 1 + 4419.25 -6836.00 -1812.77 -0.58 0.79 0.19 1 + 4623.33 -6865.64 -1059.26 -0.58 0.79 0.19 1 + 4475.57 -6913.54 -1310.29 -0.58 0.79 0.19 1 + 4328.05 -6961.67 -1561.60 -0.58 0.79 0.19 1 + 4460.61 -7144.22 -36.42 -0.59 0.81 0.02 1 + 4699.57 -6970.65 -36.57 -0.59 0.81 0.02 1 + 4938.35 -6797.17 -36.56 -0.59 0.81 0.02 1 + 5177.40 -6623.47 -36.51 -0.59 0.81 0.02 1 + 5416.18 -6449.99 -36.51 -0.59 0.81 0.02 1 + 4576.33 -7052.29 -292.22 -0.59 0.81 0.02 1 + 4815.30 -6878.72 -292.37 -0.59 0.81 0.02 1 + 5054.16 -6705.11 -292.17 -0.59 0.81 0.02 1 + 5293.13 -6531.54 -292.31 -0.59 0.81 0.02 1 + 4692.06 -6960.35 -548.02 -0.59 0.81 0.02 1 + 4930.93 -6786.75 -547.82 -0.59 0.81 0.02 1 + 5169.89 -6613.18 -547.97 -0.59 0.81 0.02 1 + 4807.83 -6868.59 -803.42 -0.59 0.81 0.02 1 + 5046.80 -6695.02 -803.57 -0.59 0.81 0.02 1 + 4579.18 -7056.16 255.10 -0.59 0.81 -0.06 1 + 5167.15 -6609.60 510.40 -0.59 0.81 -0.06 1 + 4928.37 -6783.08 510.40 -0.59 0.81 -0.06 1 + 4689.41 -6956.65 510.55 -0.59 0.81 -0.06 1 + 5038.66 -6683.90 765.71 -0.59 0.81 -0.06 1 + 4799.69 -6857.47 765.85 -0.59 0.81 -0.06 1 + 4910.02 -6757.99 1020.95 -0.59 0.81 -0.06 1 + 4718.01 -6860.17 1272.50 -0.52 0.85 -0.10 1 + 4605.23 -6959.32 1018.02 -0.52 0.85 -0.10 1 + 4492.88 -7058.45 763.65 -0.52 0.85 -0.10 1 + 4380.20 -7157.48 509.38 -0.52 0.85 -0.10 1 + 4267.57 -7256.83 254.96 -0.52 0.85 -0.10 1 + 4465.97 -7014.32 1272.46 -0.52 0.85 -0.10 1 + 4353.29 -7113.34 1018.18 -0.52 0.85 -0.10 1 + 4240.93 -7212.47 763.81 -0.52 0.85 -0.10 1 + 4128.40 -7311.69 509.59 -0.52 0.85 -0.10 1 + 4214.02 -7168.33 1272.62 -0.52 0.85 -0.10 1 + 4101.48 -7267.56 1018.40 -0.52 0.85 -0.10 1 + 3989.13 -7366.69 764.03 -0.52 0.85 -0.10 1 + 3962.22 -7322.55 1272.83 -0.52 0.85 -0.10 1 + 3849.87 -7421.68 1018.47 -0.52 0.85 -0.10 1 + 7011.42 -3708.42 2812.60 -0.82 0.49 -0.30 1 + 7011.42 -3863.59 2561.54 -0.82 0.49 -0.30 1 + 7011.32 -4018.95 2310.36 -0.82 0.49 -0.30 1 + 5585.96 -4916.75 3929.72 -0.71 0.55 -0.44 1 + 6135.03 -4539.33 3521.60 -0.71 0.55 -0.44 1 + 5945.90 -4608.21 3737.65 -0.71 0.55 -0.44 1 + 5756.78 -4677.09 3953.71 -0.71 0.55 -0.44 1 + 6116.59 -4368.59 3761.85 -0.71 0.55 -0.44 1 + 5927.46 -4437.47 3977.91 -0.71 0.55 -0.44 1 + 6098.11 -4197.66 4001.81 -0.71 0.55 -0.44 1 + 5585.92 -5713.56 2640.54 -0.71 0.64 -0.29 1 + 5775.26 -5489.82 2675.31 -0.71 0.64 -0.29 1 + 5964.38 -5265.77 2710.32 -0.71 0.64 -0.29 1 + 5983.51 -4969.26 3244.69 -0.65 0.64 -0.40 1 + 5983.40 -5124.62 2993.51 -0.65 0.64 -0.40 1 + 5789.57 -5033.65 3458.04 -0.65 0.64 -0.40 1 + 5789.72 -5188.77 3206.77 -0.65 0.64 -0.40 1 + 5789.61 -5344.13 2955.59 -0.65 0.64 -0.40 1 + 5595.89 -5097.79 3671.30 -0.65 0.64 -0.40 1 + 5595.78 -5253.16 3420.12 -0.65 0.64 -0.40 1 + 5595.93 -5408.28 3168.85 -0.65 0.64 -0.40 1 + 5595.82 -5563.65 2917.67 -0.65 0.64 -0.40 1 + 5401.95 -5162.18 3884.65 -0.65 0.64 -0.40 1 + 5402.09 -5317.30 3633.38 -0.65 0.64 -0.40 1 + 5401.99 -5472.67 3382.20 -0.65 0.64 -0.40 1 + 5401.99 -5627.84 3131.14 -0.65 0.64 -0.40 1 + 5402.03 -5783.16 2879.75 -0.65 0.64 -0.40 1 + 5208.16 -5381.69 3846.73 -0.65 0.64 -0.40 1 + 5208.30 -5536.82 3595.46 -0.65 0.64 -0.40 1 + 5208.20 -5692.18 3344.28 -0.65 0.64 -0.40 1 + 5208.20 -5847.35 3093.22 -0.65 0.64 -0.40 1 + 5014.37 -5601.21 3808.81 -0.65 0.64 -0.40 1 + 5014.51 -5756.33 3557.54 -0.65 0.64 -0.40 1 + 5014.41 -5911.69 3306.36 -0.65 0.64 -0.40 1 + 5103.06 -6487.50 1640.88 -0.64 0.73 -0.22 1 + 5181.09 -6343.84 1886.78 -0.64 0.73 -0.22 1 + 5259.13 -6200.18 2132.67 -0.64 0.73 -0.22 1 + 4944.55 -6554.47 1901.15 -0.56 0.77 -0.30 1 + 4705.59 -6728.04 1901.29 -0.56 0.77 -0.30 1 + 5018.61 -6405.23 2145.11 -0.56 0.77 -0.30 1 + 4779.74 -6578.83 2144.91 -0.56 0.77 -0.30 1 + 4540.78 -6752.41 2145.05 -0.56 0.77 -0.30 1 + 5092.76 -6256.02 2388.73 -0.56 0.77 -0.30 1 + 4853.79 -6429.60 2388.87 -0.56 0.77 -0.30 1 + 4614.93 -6603.20 2388.67 -0.56 0.77 -0.30 1 + 4375.96 -6776.77 2388.81 -0.56 0.77 -0.30 1 + 5166.81 -6106.79 2632.69 -0.56 0.77 -0.30 1 + 4927.94 -6280.39 2632.49 -0.56 0.77 -0.30 1 + 4688.98 -6453.96 2632.63 -0.56 0.77 -0.30 1 + 4450.21 -6627.44 2632.63 -0.56 0.77 -0.30 1 + 4211.15 -6801.14 2632.57 -0.56 0.77 -0.30 1 + 5002.00 -6131.16 2876.45 -0.56 0.77 -0.30 1 + 4763.13 -6304.76 2876.25 -0.56 0.77 -0.30 1 + 4524.17 -6478.33 2876.39 -0.56 0.77 -0.30 1 + 4285.39 -6651.81 2876.39 -0.56 0.77 -0.30 1 + 4837.18 -6155.52 3120.21 -0.56 0.77 -0.30 1 + 4598.31 -6329.13 3120.01 -0.56 0.77 -0.30 1 + 4359.35 -6502.70 3120.15 -0.56 0.77 -0.30 1 + 4592.99 -6858.08 1640.88 -0.50 0.84 -0.22 1 + 4018.48 -7069.57 2126.19 -0.50 0.84 -0.22 1 + 4179.22 -7039.75 1880.30 -0.50 0.84 -0.22 1 + 4339.96 -7009.93 1634.40 -0.50 0.84 -0.22 1 + 3926.24 -7191.93 1873.67 -0.50 0.84 -0.22 1 + 4086.98 -7162.11 1627.78 -0.50 0.84 -0.22 1 + 3833.94 -7313.96 1621.30 -0.50 0.84 -0.22 1 + 6090.28 -547.66 -5769.33 -0.70 0.07 0.71 1 + 5891.72 -465.50 -5971.75 -0.70 0.07 0.71 1 + 5692.91 -383.57 -6174.04 -0.70 0.07 0.71 1 + 5494.15 -301.61 -6376.68 -0.70 0.07 0.71 1 + 6125.83 -833.52 -5704.73 -0.70 0.07 0.71 1 + 5927.02 -751.59 -5907.02 -0.70 0.07 0.71 1 + 5728.46 -669.43 -6109.44 -0.70 0.07 0.71 1 + 5529.85 -587.53 -6311.88 -0.70 0.07 0.71 1 + 5962.57 -1037.46 -5842.42 -0.70 0.07 0.71 1 + 5763.96 -955.55 -6044.86 -0.70 0.07 0.71 1 + 5565.40 -873.39 -6247.28 -0.70 0.07 0.71 1 + 5799.51 -1241.42 -5980.26 -0.70 0.07 0.71 1 + 5600.95 -1159.26 -6182.68 -0.70 0.07 0.71 1 + 4098.05 -1115.16 -7273.46 -0.46 0.07 0.89 1 + 4039.82 -830.25 -7325.79 -0.46 0.07 0.89 1 + 3981.98 -545.53 -7378.15 -0.46 0.07 0.89 1 + 3923.81 -260.85 -7430.40 -0.46 0.07 0.89 1 + 3865.70 24.02 -7482.95 -0.46 0.07 0.89 1 + 3846.98 -1037.87 -7408.66 -0.46 0.07 0.89 1 + 3788.81 -753.18 -7460.90 -0.46 0.07 0.89 1 + 3730.97 -468.47 -7513.26 -0.46 0.07 0.89 1 + 3672.92 -183.83 -7565.73 -0.46 0.07 0.89 1 + 3595.97 -960.80 -7543.77 -0.46 0.07 0.89 1 + 3537.92 -676.17 -7596.23 -0.46 0.07 0.89 1 + 3480.08 -391.46 -7648.59 -0.46 0.07 0.89 1 + 3345.08 -883.79 -7679.09 -0.46 0.07 0.89 1 + 3287.24 -599.08 -7731.45 -0.46 0.07 0.89 1 + 5180.98 -403.27 -6628.24 -0.58 0.11 0.80 1 + 4997.25 -609.50 -6732.86 -0.58 0.11 0.80 1 + 4813.85 -815.69 -6837.60 -0.58 0.11 0.80 1 + 4630.17 -1022.15 -6942.13 -0.58 0.11 0.80 1 + 4446.56 -1228.43 -7046.97 -0.58 0.11 0.80 1 + 5222.62 -687.16 -6558.71 -0.58 0.11 0.80 1 + 5039.15 -893.53 -6663.14 -0.58 0.11 0.80 1 + 4855.54 -1099.81 -6767.98 -0.58 0.11 0.80 1 + 4672.03 -1305.94 -6872.50 -0.58 0.11 0.80 1 + 5264.53 -971.19 -6488.99 -0.58 0.11 0.80 1 + 5080.79 -1177.41 -6593.61 -0.58 0.11 0.80 1 + 4897.27 -1383.55 -6698.13 -0.58 0.11 0.80 1 + 5306.38 -1254.98 -6419.36 -0.58 0.11 0.80 1 + 5122.65 -1461.21 -6523.98 -0.58 0.11 0.80 1 + 6402.43 -1818.30 -5149.97 -0.74 0.17 0.65 1 + 6395.36 -1535.33 -5233.63 -0.74 0.17 0.65 1 + 6388.29 -1252.13 -5316.93 -0.74 0.17 0.65 1 + 5628.75 -1559.87 -6020.06 -0.65 0.21 0.73 1 + 5424.51 -1493.63 -6222.77 -0.65 0.21 0.73 1 + 5651.59 -1836.31 -5918.78 -0.65 0.21 0.73 1 + 5447.67 -1769.97 -6121.60 -0.65 0.21 0.73 1 + 5243.42 -1703.74 -6324.31 -0.65 0.21 0.73 1 + 5470.75 -2046.34 -6020.08 -0.65 0.21 0.73 1 + 5266.51 -1980.11 -6222.79 -0.65 0.21 0.73 1 + 5732.04 -2966.96 -5400.18 -0.70 0.30 0.65 1 + 5904.22 -2742.00 -5316.89 -0.70 0.30 0.65 1 + 6076.40 -2517.04 -5233.60 -0.70 0.30 0.65 1 + 6248.41 -2291.98 -5150.16 -0.70 0.30 0.65 1 + 5712.79 -2707.17 -5539.02 -0.70 0.30 0.65 1 + 5884.97 -2482.20 -5455.73 -0.70 0.30 0.65 1 + 6057.16 -2257.24 -5372.44 -0.70 0.30 0.65 1 + 5693.87 -2447.26 -5677.97 -0.70 0.30 0.65 1 + 5866.05 -2222.30 -5594.68 -0.70 0.30 0.65 1 + 5674.62 -2187.47 -5816.81 -0.70 0.30 0.65 1 + 4319.32 -1619.81 -7047.02 -0.54 0.25 0.80 1 + 4346.66 -1894.69 -6942.14 -0.54 0.25 0.80 1 + 4373.87 -2169.45 -6837.66 -0.54 0.25 0.80 1 + 4401.15 -2444.10 -6732.85 -0.54 0.25 0.80 1 + 4428.63 -2719.01 -6628.19 -0.54 0.25 0.80 1 + 4547.30 -1689.60 -6872.54 -0.54 0.25 0.80 1 + 4574.58 -1964.25 -6767.74 -0.54 0.25 0.80 1 + 4601.78 -2239.01 -6663.26 -0.54 0.25 0.80 1 + 4629.20 -2513.69 -6558.66 -0.54 0.25 0.80 1 + 4775.21 -1759.16 -6698.14 -0.54 0.25 0.80 1 + 4802.63 -2033.84 -6593.55 -0.54 0.25 0.80 1 + 4829.83 -2308.60 -6489.07 -0.54 0.25 0.80 1 + 5003.26 -1828.75 -6523.95 -0.54 0.25 0.80 1 + 5030.46 -2103.52 -6419.47 -0.54 0.25 0.80 1 + 3113.35 -2291.72 -7482.91 -0.41 0.21 0.89 1 + 3327.72 -2095.45 -7430.40 -0.41 0.21 0.89 1 + 3542.00 -1899.29 -7378.23 -0.41 0.21 0.89 1 + 3756.31 -1702.79 -7325.79 -0.41 0.21 0.89 1 + 3970.80 -1506.55 -7273.50 -0.41 0.21 0.89 1 + 3079.50 -2010.37 -7565.70 -0.41 0.21 0.89 1 + 3293.60 -1813.95 -7513.38 -0.41 0.21 0.89 1 + 3508.10 -1617.71 -7461.09 -0.41 0.21 0.89 1 + 3722.25 -1421.53 -7408.70 -0.41 0.21 0.89 1 + 3045.39 -1728.87 -7648.68 -0.41 0.21 0.89 1 + 3259.75 -1532.60 -7596.17 -0.41 0.21 0.89 1 + 3473.91 -1336.42 -7543.78 -0.41 0.21 0.89 1 + 3011.33 -1447.61 -7731.58 -0.41 0.21 0.89 1 + 3225.70 -1251.34 -7679.07 -0.41 0.21 0.89 1 + 4622.10 -2985.46 -6376.67 -0.61 0.35 0.71 1 + 4831.03 -3035.94 -6174.10 -0.61 0.35 0.71 1 + 5040.03 -3086.40 -5971.89 -0.61 0.35 0.71 1 + 5249.10 -3136.68 -5769.28 -0.61 0.35 0.71 1 + 5458.21 -3187.25 -5566.87 -0.61 0.35 0.71 1 + 4818.94 -2775.17 -6311.96 -0.61 0.35 0.71 1 + 5027.91 -2825.32 -6109.54 -0.61 0.35 0.71 1 + 5237.02 -2875.90 -5907.13 -0.61 0.35 0.71 1 + 5445.84 -2926.26 -5704.77 -0.61 0.35 0.71 1 + 5015.83 -2564.55 -6247.40 -0.61 0.35 0.71 1 + 5224.75 -2615.03 -6044.83 -0.61 0.35 0.71 1 + 5433.58 -2665.39 -5842.46 -0.61 0.35 0.71 1 + 5212.56 -2354.14 -6182.88 -0.61 0.35 0.71 1 + 5421.49 -2404.62 -5980.31 -0.61 0.35 0.71 1 + 4138.42 -2628.41 -6840.19 -0.46 0.27 0.84 1 + 3634.41 -2197.47 -7253.20 -0.46 0.27 0.84 1 + 3873.19 -2275.05 -7098.03 -0.46 0.27 0.84 1 + 4112.17 -2352.55 -6942.75 -0.46 0.27 0.84 1 + 3847.13 -1999.46 -7200.73 -0.46 0.27 0.84 1 + 4086.11 -2076.95 -7045.45 -0.46 0.27 0.84 1 + 4059.72 -1801.42 -7148.05 -0.46 0.27 0.84 1 + 6248.44 -3581.17 -4353.36 -0.70 0.45 0.55 1 + 6076.40 -3555.48 -4591.82 -0.70 0.45 0.55 1 + 5904.22 -3529.38 -4830.27 -0.70 0.45 0.55 1 + 5732.03 -3503.28 -5068.73 -0.70 0.45 0.55 1 + 6057.28 -3795.76 -4421.44 -0.70 0.45 0.55 1 + 5885.10 -3769.66 -4659.90 -0.70 0.45 0.55 1 + 5712.92 -3743.56 -4898.35 -0.70 0.45 0.55 1 + 5866.02 -4010.24 -4489.72 -0.70 0.45 0.55 1 + 5693.84 -3984.14 -4728.17 -0.70 0.45 0.55 1 + 5674.72 -4224.42 -4557.80 -0.70 0.45 0.55 1 + 4633.20 -4062.87 -5731.47 -0.58 0.43 0.70 1 + 4842.14 -3357.38 -5994.02 -0.58 0.43 0.70 1 + 4842.13 -3608.44 -5838.86 -0.58 0.43 0.70 1 + 4842.24 -3859.63 -5683.50 -0.58 0.43 0.70 1 + 5051.20 -3405.50 -5791.08 -0.58 0.43 0.70 1 + 5051.31 -3656.68 -5635.72 -0.58 0.43 0.70 1 + 5260.09 -3453.52 -5587.98 -0.58 0.43 0.70 1 + 5458.19 -3553.72 -5340.40 -0.61 0.48 0.63 1 + 5249.04 -3757.47 -5385.68 -0.61 0.48 0.63 1 + 5040.11 -3961.00 -5431.26 -0.61 0.48 0.63 1 + 4831.11 -4164.54 -5476.50 -0.61 0.48 0.63 1 + 4622.14 -4368.39 -5521.93 -0.61 0.48 0.63 1 + 5445.83 -3793.78 -5168.62 -0.61 0.48 0.63 1 + 5236.83 -3997.32 -5213.86 -0.61 0.48 0.63 1 + 5027.90 -4200.85 -5259.44 -0.61 0.48 0.63 1 + 4819.08 -4404.49 -5304.83 -0.61 0.48 0.63 1 + 5433.62 -4033.63 -4996.80 -0.61 0.48 0.63 1 + 5224.80 -4237.27 -5042.19 -0.61 0.48 0.63 1 + 5015.87 -4440.79 -5087.77 -0.61 0.48 0.63 1 + 5421.59 -4273.58 -4825.13 -0.61 0.48 0.63 1 + 5212.66 -4477.10 -4870.72 -0.61 0.48 0.63 1 + 4386.04 -4269.77 -5785.33 -0.50 0.45 0.73 1 + 4385.93 -4018.59 -5940.69 -0.50 0.45 0.73 1 + 4385.94 -3767.52 -6095.86 -0.50 0.45 0.73 1 + 4385.98 -3516.13 -6251.17 -0.50 0.45 0.73 1 + 4385.98 -3265.07 -6406.34 -0.50 0.45 0.73 1 + 4165.10 -4212.02 -5972.76 -0.50 0.45 0.73 1 + 4165.00 -3960.84 -6128.12 -0.50 0.45 0.73 1 + 8220.39 584.29 -1738.54 -0.97 -0.01 0.25 1 + 8160.74 418.38 -1975.50 -0.97 -0.01 0.25 1 + 8101.43 252.50 -2212.33 -0.97 -0.01 0.25 1 + 8041.78 86.35 -2449.23 -0.97 -0.01 0.25 1 + 7982.37 -79.58 -2686.29 -0.97 -0.01 0.25 1 + 8229.60 289.87 -1718.80 -0.97 -0.01 0.25 1 + 8170.05 123.76 -1955.48 -0.97 -0.01 0.25 1 + 8110.64 -42.17 -2192.54 -0.97 -0.01 0.25 1 + 8051.09 -208.03 -2429.26 -0.97 -0.01 0.25 1 + 8238.91 -4.76 -1698.78 -0.97 -0.01 0.25 1 + 8179.26 -170.66 -1935.74 -0.97 -0.01 0.25 1 + 8119.71 -336.52 -2172.47 -0.97 -0.01 0.25 1 + 8248.21 -299.13 -1678.81 -0.97 -0.01 0.25 1 + 8188.57 -465.04 -1915.77 -0.97 -0.01 0.25 1 + 7409.21 -694.57 -3929.47 -0.90 0.03 0.45 1 + 7521.86 -527.50 -3713.79 -0.90 0.03 0.45 1 + 7634.37 -360.60 -3497.75 -0.90 0.03 0.45 1 + 7941.71 -461.87 -2745.39 -0.95 0.10 0.29 1 + 7920.40 -754.30 -2710.37 -0.95 0.10 0.29 1 + 7899.09 -1046.72 -2675.36 -0.95 0.10 0.29 1 + 7877.44 -1762.94 -2378.56 -0.95 0.21 0.22 1 + 7899.11 -1924.77 -2132.67 -0.95 0.21 0.22 1 + 7920.42 -2086.85 -1886.77 -0.95 0.21 0.22 1 + 7746.90 -2848.55 -1640.88 -0.90 0.39 0.22 1 + 7634.39 -2967.17 -1886.78 -0.90 0.39 0.22 1 + 7521.87 -3085.78 -2132.67 -0.90 0.39 0.22 1 + 7160.05 -3546.95 -2640.54 -0.83 0.47 0.29 1 + 7005.77 -3796.17 -2675.31 -0.83 0.47 0.29 1 + 6851.13 -4045.26 -2710.32 -0.83 0.47 0.29 1 + 6381.25 -4396.79 -3281.64 -0.74 0.50 0.44 1 + 6388.32 -4195.64 -3497.69 -0.74 0.50 0.44 1 + 6395.39 -3994.48 -3713.75 -0.74 0.50 0.44 1 + 5470.63 -4469.28 -4522.73 -0.65 0.56 0.51 1 + 5266.46 -4680.32 -4553.93 -0.65 0.56 0.51 1 + 5651.59 -4472.71 -4289.40 -0.65 0.56 0.51 1 + 5447.62 -4683.72 -4320.90 -0.65 0.56 0.51 1 + 5243.45 -4894.76 -4352.10 -0.65 0.56 0.51 1 + 5628.74 -4686.84 -4087.66 -0.65 0.56 0.51 1 + 5424.57 -4897.87 -4118.86 -0.65 0.56 0.51 1 + 5494.16 -5568.64 -3121.41 -0.70 0.61 0.39 1 + 5692.86 -5350.80 -3104.13 -0.70 0.61 0.39 1 + 5891.60 -5133.25 -3087.07 -0.70 0.61 0.39 1 + 6090.30 -4915.27 -3070.00 -0.70 0.61 0.39 1 + 6289.20 -4697.56 -3052.82 -0.70 0.61 0.39 1 + 5529.81 -5382.93 -3348.13 -0.70 0.61 0.39 1 + 5728.35 -5165.10 -3331.17 -0.70 0.61 0.39 1 + 5927.25 -4947.39 -3313.99 -0.70 0.61 0.39 1 + 6125.79 -4729.72 -3296.83 -0.70 0.61 0.39 1 + 5565.29 -5197.23 -3575.17 -0.70 0.61 0.39 1 + 5763.99 -4979.40 -3557.89 -0.70 0.61 0.39 1 + 5962.54 -4761.72 -3540.73 -0.70 0.61 0.39 1 + 5600.78 -5011.68 -3802.00 -0.70 0.61 0.39 1 + 5799.48 -4793.85 -3784.72 -0.70 0.61 0.39 1 + 5693.56 -5522.30 -2812.60 -0.72 0.63 0.30 1 + 5841.13 -5474.35 -2561.54 -0.72 0.63 0.30 1 + 5988.86 -5426.24 -2310.36 -0.72 0.63 0.30 1 + 6058.08 -5566.44 -1803.52 -0.68 0.69 0.27 1 + 5910.35 -5614.55 -2054.70 -0.68 0.69 0.27 1 + 5762.78 -5662.50 -2305.76 -0.68 0.69 0.27 1 + 5615.05 -5710.46 -2557.15 -0.68 0.69 0.27 1 + 5467.48 -5758.40 -2808.21 -0.68 0.69 0.27 1 + 5845.39 -5771.27 -1812.97 -0.68 0.69 0.27 1 + 5697.67 -5819.38 -2064.15 -0.68 0.69 0.27 1 + 5550.09 -5867.17 -2315.42 -0.68 0.69 0.27 1 + 5402.37 -5915.28 -2566.60 -0.68 0.69 0.27 1 + 5632.71 -5976.09 -1822.42 -0.68 0.69 0.27 1 + 5485.13 -6023.89 -2073.69 -0.68 0.69 0.27 1 + 5337.41 -6072.00 -2324.87 -0.68 0.69 0.27 1 + 5420.37 -6180.73 -1832.05 -0.68 0.69 0.27 1 + 5272.65 -6228.84 -2083.23 -0.68 0.69 0.27 1 + 5693.57 45.95 6197.14 -0.72 0.01 -0.70 1 + 6186.08 -276.47 5683.54 -0.72 0.01 -0.70 1 + 6038.51 -73.36 5838.71 -0.72 0.01 -0.70 1 + 5890.89 130.00 5993.90 -0.72 0.01 -0.70 1 + 6235.88 10.67 5635.83 -0.72 0.01 -0.70 1 + 6088.26 214.03 5791.01 -0.72 0.01 -0.70 1 + 6285.47 297.79 5587.95 -0.72 0.01 -0.70 1 + 7308.66 -483.30 4087.44 -0.85 0.07 -0.51 1 + 7267.41 -773.99 4118.86 -0.85 0.07 -0.51 1 + 7201.22 -296.57 4289.41 -0.85 0.07 -0.51 1 + 7160.31 -587.19 4320.78 -0.85 0.07 -0.51 1 + 7119.05 -877.89 4352.20 -0.85 0.07 -0.51 1 + 7052.97 -400.17 4522.57 -0.85 0.07 -0.51 1 + 7011.71 -690.87 4553.98 -0.85 0.07 -0.51 1 + 5467.54 -63.44 6406.28 -0.68 0.07 -0.73 1 + 5615.16 -266.80 6251.10 -0.68 0.07 -0.73 1 + 6058.07 -876.34 5785.37 -0.68 0.07 -0.73 1 + 5402.51 -349.82 6438.45 -0.68 0.07 -0.73 1 + 5550.13 -553.18 6283.27 -0.68 0.07 -0.73 1 + 5697.85 -756.25 6127.90 -0.68 0.07 -0.73 1 + 5845.48 -959.61 5972.71 -0.68 0.07 -0.73 1 + 5337.49 -636.20 6470.62 -0.68 0.07 -0.73 1 + 5485.21 -839.27 6315.25 -0.68 0.07 -0.73 1 + 5632.83 -1042.63 6160.06 -0.68 0.07 -0.73 1 + 5272.76 -922.26 6502.76 -0.68 0.07 -0.73 1 + 5420.38 -1125.62 6347.57 -0.68 0.07 -0.73 1 + 6773.45 -1974.38 4600.32 -0.79 0.17 -0.59 1 + 6668.18 -1782.97 4799.28 -0.79 0.17 -0.59 1 + 6563.03 -1591.96 4998.31 -0.79 0.17 -0.59 1 + 6457.81 -1400.72 5197.09 -0.79 0.17 -0.59 1 + 6352.75 -1209.37 5396.18 -0.79 0.17 -0.59 1 + 6847.82 -1688.88 4584.72 -0.79 0.17 -0.59 1 + 6742.59 -1497.64 4783.50 -0.79 0.17 -0.59 1 + 6637.45 -1306.63 4982.53 -0.79 0.17 -0.59 1 + 6532.44 -1115.46 5181.44 -0.79 0.17 -0.59 1 + 6922.23 -1403.55 4568.94 -0.79 0.17 -0.59 1 + 6817.22 -1212.37 4767.84 -0.79 0.17 -0.59 1 + 6712.07 -1021.37 4966.88 -0.79 0.17 -0.59 1 + 6996.86 -1118.29 4553.29 -0.79 0.17 -0.59 1 + 6891.71 -927.28 4752.32 -0.79 0.17 -0.59 1 + 6115.15 -1365.98 5628.27 -0.69 0.23 -0.68 1 + 6023.81 -1646.85 5628.40 -0.69 0.23 -0.68 1 + 5932.61 -1927.55 5628.40 -0.69 0.23 -0.68 1 + 5841.32 -2208.59 5628.35 -0.69 0.23 -0.68 1 + 5750.12 -2489.29 5628.35 -0.69 0.23 -0.68 1 + 5902.83 -1452.25 5814.70 -0.69 0.23 -0.68 1 + 5811.49 -1733.12 5814.83 -0.69 0.23 -0.68 1 + 6253.24 -1566.14 5409.95 -0.75 0.24 -0.62 1 + 6175.90 -2317.15 5209.20 -0.75 0.24 -0.62 1 + 6267.10 -2036.45 5209.20 -0.75 0.24 -0.62 1 + 6358.44 -1755.58 5209.07 -0.75 0.24 -0.62 1 + 6372.46 -2225.80 5008.63 -0.75 0.24 -0.62 1 + 6463.79 -1944.92 5008.50 -0.75 0.24 -0.62 1 + 6568.80 -2134.37 4807.94 -0.75 0.24 -0.62 1 + 5850.34 -2755.55 5396.23 -0.74 0.32 -0.59 1 + 6047.76 -2662.56 5197.20 -0.74 0.32 -0.59 1 + 6245.25 -2569.82 4998.42 -0.74 0.32 -0.59 1 + 6442.71 -2477.01 4799.21 -0.74 0.32 -0.59 1 + 6640.34 -2384.10 4600.30 -0.74 0.32 -0.59 1 + 5940.44 -2937.14 5181.60 -0.74 0.32 -0.59 1 + 6137.77 -2844.50 4982.52 -0.74 0.32 -0.59 1 + 5941.06 -3821.79 4522.73 -0.73 0.45 -0.51 1 + 6078.67 -3562.40 4553.93 -0.73 0.45 -0.51 1 + 6000.23 -3992.84 4289.40 -0.73 0.45 -0.51 1 + 6137.89 -3733.65 4320.90 -0.73 0.45 -0.51 1 + 6275.51 -3474.26 4352.10 -0.73 0.45 -0.51 1 + 6196.82 -3904.94 4087.66 -0.73 0.45 -0.51 1 + 6334.44 -3645.55 4118.86 -0.73 0.45 -0.51 1 + 8417.36 61.82 -291.38 -0.99 -0.02 0.11 1 + 8386.48 198.41 -551.57 -0.99 -0.02 0.11 1 + 8355.84 335.14 -811.41 -0.99 -0.02 0.11 1 + 8324.95 471.63 -1071.37 -0.99 -0.02 0.11 1 + 8294.32 608.22 -1331.54 -0.99 -0.02 0.11 1 + 8394.28 -96.47 -539.77 -0.99 -0.02 0.11 1 + 8363.38 40.02 -799.72 -0.99 -0.02 0.11 1 + 8332.75 176.75 -1059.57 -0.99 -0.02 0.11 1 + 8302.11 313.23 -1319.51 -0.99 -0.02 0.11 1 + 8371.18 -254.86 -787.92 -0.99 -0.02 0.11 1 + 8340.54 -118.38 -1047.87 -0.99 -0.02 0.11 1 + 8309.91 18.34 -1307.71 -0.99 -0.02 0.11 1 + 8348.34 -413.26 -1036.07 -0.99 -0.02 0.11 1 + 8317.70 -276.54 -1295.92 -0.99 -0.02 0.11 1 + 8248.37 -576.13 -1418.68 -0.98 0.11 0.17 1 + 8188.81 -728.29 -1664.63 -0.98 0.11 0.17 1 + 8278.29 -717.58 -1161.16 -0.98 0.11 0.17 1 + 8218.73 -869.74 -1407.12 -0.98 0.11 0.17 1 + 8158.94 -1021.63 -1653.03 -0.98 0.11 0.17 1 + 8248.33 -1011.21 -1149.73 -0.98 0.11 0.17 1 + 8188.77 -1163.37 -1395.69 -0.98 0.11 0.17 1 + 8169.99 -1804.60 -763.81 -0.97 0.23 0.10 1 + 8229.58 -1666.91 -509.59 -0.97 0.23 0.10 1 + 8119.69 -1792.64 -1272.62 -0.97 0.23 0.10 1 + 8179.28 -1654.95 -1018.40 -0.97 0.23 0.10 1 + 8238.85 -1517.46 -764.03 -0.97 0.23 0.10 1 + 8188.55 -1505.51 -1272.83 -0.97 0.23 0.10 1 + 8248.11 -1368.02 -1018.47 -0.97 0.23 0.10 1 + 7718.03 -3362.41 -254.90 -0.92 0.38 0.10 1 + 7750.74 -3215.91 -509.26 -0.92 0.38 0.10 1 + 7783.66 -3069.70 -763.54 -0.92 0.38 0.10 1 + 7816.28 -2923.33 -1018.10 -0.92 0.38 0.10 1 + 7849.22 -2776.91 -1272.52 -0.92 0.38 0.10 1 + 7637.71 -3488.63 -509.41 -0.92 0.38 0.10 1 + 7670.30 -3342.47 -763.83 -0.92 0.38 0.10 1 + 7703.25 -3196.05 -1018.25 -0.92 0.38 0.10 1 + 7735.93 -3049.75 -1272.46 -0.92 0.38 0.10 1 + 7557.27 -3615.19 -763.97 -0.92 0.38 0.10 1 + 7589.98 -3468.69 -1018.34 -0.92 0.38 0.10 1 + 7622.66 -3322.40 -1272.55 -0.92 0.38 0.10 1 + 7476.92 -3741.61 -1018.34 -0.92 0.38 0.10 1 + 7509.63 -3595.12 -1272.70 -0.92 0.38 0.10 1 + 7308.60 -3872.24 -1395.85 -0.85 0.49 0.17 1 + 7201.22 -3969.20 -1653.03 -0.85 0.49 0.17 1 + 7267.47 -4030.17 -1149.76 -0.85 0.49 0.17 1 + 7160.24 -4127.34 -1407.19 -0.85 0.49 0.17 1 + 7052.81 -4224.23 -1664.71 -0.85 0.49 0.17 1 + 7119.11 -4285.27 -1161.10 -0.85 0.49 0.17 1 + 7011.68 -4382.16 -1418.62 -0.85 0.49 0.17 1 + 6979.24 -4714.40 -75.01 -0.87 0.50 0.03 1 + 7126.94 -4458.55 -69.20 -0.87 0.50 0.03 1 + 7274.71 -4203.05 -63.12 -0.87 0.50 0.03 1 + 7422.26 -3947.41 -57.29 -0.87 0.50 0.03 1 + 7570.16 -3691.72 -51.48 -0.87 0.50 0.03 1 + 7049.53 -4578.37 -327.67 -0.87 0.50 0.03 1 + 7197.08 -4322.72 -321.84 -0.87 0.50 0.03 1 + 7344.85 -4067.22 -315.76 -0.87 0.50 0.03 1 + 7492.59 -3811.73 -309.94 -0.87 0.50 0.03 1 + 7119.67 -4442.53 -580.32 -0.87 0.50 0.03 1 + 7267.42 -4187.04 -574.50 -0.87 0.50 0.03 1 + 7415.19 -3931.54 -568.42 -0.87 0.50 0.03 1 + 7190.01 -4306.86 -832.97 -0.87 0.50 0.03 1 + 7337.78 -4051.36 -826.90 -0.87 0.50 0.03 1 + 6352.69 -5367.43 -1331.50 -0.79 0.60 0.11 1 + 6457.75 -5274.94 -1071.42 -0.79 0.60 0.11 1 + 6563.01 -5182.62 -811.59 -0.79 0.60 0.11 1 + 6668.21 -5089.93 -551.53 -0.79 0.60 0.11 1 + 6773.49 -4997.59 -291.44 -0.79 0.60 0.11 1 + 6532.32 -5133.44 -1319.55 -0.79 0.60 0.11 1 + 6637.52 -5040.77 -1059.74 -0.79 0.60 0.11 1 + 6640.35 -5180.83 75.01 -0.74 0.67 -0.03 1 + 6442.67 -5400.37 69.20 -0.74 0.67 -0.03 1 + 6245.34 -5619.86 63.12 -0.74 0.67 -0.03 1 + 6047.80 -5839.18 57.29 -0.74 0.67 -0.03 1 + 5850.33 -6058.86 51.48 -0.74 0.67 -0.03 1 + 6532.70 -5289.73 327.67 -0.74 0.67 -0.03 1 + 6335.16 -5509.05 321.84 -0.74 0.67 -0.03 1 + 6137.83 -5728.54 315.76 -0.74 0.67 -0.03 1 + 5940.50 -5948.01 309.94 -0.74 0.67 -0.03 1 + 6425.19 -5398.41 580.32 -0.74 0.67 -0.03 1 + 6227.86 -5617.88 574.50 -0.74 0.67 -0.03 1 + 6030.53 -5837.36 568.42 -0.74 0.67 -0.03 1 + 6317.89 -5507.23 832.97 -0.74 0.67 -0.03 1 + 6120.56 -5726.72 826.90 -0.74 0.67 -0.03 1 + 5582.84 -6301.26 254.90 -0.65 0.76 -0.10 1 + 5453.62 -6377.64 509.26 -0.65 0.76 -0.10 1 + 5324.73 -6454.12 763.54 -0.65 0.76 -0.10 1 + 5195.61 -6530.37 1018.10 -0.65 0.76 -0.10 1 + 5066.53 -6606.96 1272.52 -0.65 0.76 -0.10 1 + 5678.06 -6185.86 509.41 -0.65 0.76 -0.10 1 + 5549.12 -6262.02 763.83 -0.65 0.76 -0.10 1 + 5420.05 -6338.60 1018.25 -0.65 0.76 -0.10 1 + 5291.02 -6414.89 1272.46 -0.65 0.76 -0.10 1 + 5773.56 -6070.25 763.97 -0.65 0.76 -0.10 1 + 5644.35 -6146.63 1018.34 -0.65 0.76 -0.10 1 + 5515.31 -6222.92 1272.55 -0.65 0.76 -0.10 1 + 5868.97 -5954.77 1018.34 -0.65 0.76 -0.10 1 + 5739.76 -6031.15 1272.70 -0.65 0.76 -0.10 1 + 7746.88 193.70 3281.70 -0.90 -0.03 -0.45 1 + 7406.41 400.24 3953.81 -0.90 -0.03 -0.45 1 + 7518.92 233.34 3737.76 -0.90 -0.03 -0.45 1 + 7631.43 66.45 3521.71 -0.90 -0.03 -0.45 1 + 7403.70 105.86 3977.91 -0.90 -0.03 -0.45 1 + 7516.21 -61.03 3761.86 -0.90 -0.03 -0.45 1 + 7400.76 -188.28 4001.88 -0.90 -0.03 -0.45 1 + 7849.25 -103.69 3052.74 -0.92 0.08 -0.39 1 + 7816.30 -396.82 3069.96 -0.92 0.08 -0.39 1 + 7783.67 -689.72 3087.01 -0.92 0.08 -0.39 1 + 7750.72 -982.60 3104.18 -0.92 0.08 -0.39 1 + 7717.99 -1275.71 3121.51 -0.92 0.08 -0.39 1 + 7735.95 -225.74 3296.76 -0.92 0.08 -0.39 1 + 7703.00 -518.62 3313.94 -0.92 0.08 -0.39 1 + 7670.37 -811.53 3330.98 -0.92 0.08 -0.39 1 + 7637.65 -1104.40 3348.26 -0.92 0.08 -0.39 1 + 7622.65 -347.55 3540.74 -0.92 0.08 -0.39 1 + 7589.93 -640.41 3558.01 -0.92 0.08 -0.39 1 + 7557.31 -933.32 3575.05 -0.92 0.08 -0.39 1 + 7509.59 -469.34 3784.81 -0.92 0.08 -0.39 1 + 7476.96 -762.25 3801.85 -0.92 0.08 -0.39 1 + 7570.16 -1605.03 3324.93 -0.87 0.20 -0.46 1 + 7422.32 -1714.12 3556.17 -0.87 0.20 -0.46 1 + 7274.81 -1823.10 3787.44 -0.87 0.20 -0.46 1 + 7126.90 -1932.01 4018.85 -0.87 0.20 -0.46 1 + 6979.25 -2041.16 4250.23 -0.87 0.20 -0.46 1 + 7492.68 -1427.54 3547.75 -0.87 0.20 -0.46 1 + 7344.91 -1536.28 3779.04 -0.87 0.20 -0.46 1 + 7197.26 -1645.43 4010.43 -0.87 0.20 -0.46 1 + 7049.55 -1754.35 4241.54 -0.87 0.20 -0.46 1 + 7415.27 -1249.69 3770.62 -0.87 0.20 -0.46 1 + 7267.42 -1358.78 4001.86 -0.87 0.20 -0.46 1 + 7119.71 -1467.70 4232.98 -0.87 0.20 -0.46 1 + 7337.92 -1072.03 3993.31 -0.87 0.20 -0.46 1 + 7190.07 -1181.11 4224.56 -0.87 0.20 -0.46 1 + 7200.45 -2805.23 3332.78 -0.86 0.28 -0.42 1 + 7325.21 -2069.62 3564.34 -0.86 0.28 -0.42 1 + 7234.01 -2350.32 3564.34 -0.86 0.28 -0.42 1 + 7142.66 -2631.18 3564.46 -0.86 0.28 -0.42 1 + 7176.48 -2176.52 3795.99 -0.86 0.28 -0.42 1 + 7085.14 -2457.38 3796.11 -0.86 0.28 -0.42 1 + 7027.56 -2283.35 4027.50 -0.86 0.28 -0.42 1 + 7958.45 -1964.67 1561.47 -0.93 0.30 -0.19 1 + 7958.34 -2120.09 1310.22 -0.93 0.30 -0.19 1 + 7958.30 -2275.16 1059.02 -0.93 0.30 -0.19 1 + 7867.09 -2090.24 1812.53 -0.93 0.30 -0.19 1 + 7867.17 -2245.72 1561.43 -0.93 0.30 -0.19 1 + 6846.14 -2450.88 4250.21 -0.82 0.35 -0.46 1 + 6901.44 -2626.06 4018.78 -0.82 0.35 -0.46 1 + 6957.02 -2800.96 3787.53 -0.82 0.35 -0.46 1 + 7012.25 -2975.96 3556.27 -0.82 0.35 -0.46 1 + 7067.75 -3151.21 3324.98 -0.82 0.35 -0.46 1 + 6734.42 -2724.25 4241.54 -0.82 0.35 -0.46 1 + 6789.65 -2899.25 4010.27 -0.82 0.35 -0.46 1 + 6845.23 -3074.15 3779.03 -0.82 0.35 -0.46 1 + 6900.67 -3249.21 3547.91 -0.82 0.35 -0.46 1 + 6622.63 -2997.44 4233.03 -0.82 0.35 -0.46 1 + 6678.07 -3172.50 4001.91 -0.82 0.35 -0.46 1 + 6733.65 -3347.40 3770.67 -0.82 0.35 -0.46 1 + 6511.05 -3270.69 4224.67 -0.82 0.35 -0.46 1 + 6566.63 -3445.59 3993.42 -0.82 0.35 -0.46 1 + 6993.87 -3504.46 3121.41 -0.79 0.48 -0.39 1 + 6848.10 -3760.75 3104.13 -0.79 0.48 -0.39 1 + 6702.62 -4017.00 3087.07 -0.79 0.48 -0.39 1 + 6556.70 -4273.33 3070.00 -0.79 0.48 -0.39 1 + 6411.11 -4529.77 3052.82 -0.79 0.48 -0.39 1 + 6828.27 -3595.75 3348.13 -0.79 0.48 -0.39 1 + 6682.46 -3851.89 3331.17 -0.79 0.48 -0.39 1 + 6536.87 -4108.33 3313.99 -0.79 0.48 -0.39 1 + 6391.20 -4364.42 3296.83 -0.79 0.48 -0.39 1 + 6662.63 -3686.88 3575.17 -0.79 0.48 -0.39 1 + 6516.86 -3943.17 3557.89 -0.79 0.48 -0.39 1 + 6371.19 -4199.26 3540.73 -0.79 0.48 -0.39 1 + 6497.13 -3777.97 3802.00 -0.79 0.48 -0.39 1 + 6351.36 -4034.26 3784.72 -0.79 0.48 -0.39 1 + 7011.46 -4174.08 2059.09 -0.82 0.49 -0.30 1 + 6863.91 -3963.73 2796.85 -0.82 0.49 -0.30 1 + 6863.91 -4118.89 2545.78 -0.82 0.49 -0.30 1 + 6863.80 -4274.26 2294.60 -0.82 0.49 -0.30 1 + 6716.57 -4219.18 2781.18 -0.82 0.49 -0.30 1 + 6716.47 -4374.55 2530.00 -0.82 0.49 -0.30 1 + 6569.05 -4474.48 2765.43 -0.82 0.49 -0.30 1 + 6153.50 -5041.72 2745.32 -0.71 0.64 -0.29 1 + 5756.66 -5628.11 2415.20 -0.71 0.64 -0.29 1 + 5945.78 -5404.06 2450.21 -0.71 0.64 -0.29 1 + 6134.90 -5180.01 2485.21 -0.71 0.64 -0.29 1 + 5927.50 -5542.45 2189.99 -0.71 0.64 -0.29 1 + 6116.62 -5318.40 2224.99 -0.71 0.64 -0.29 1 + 6098.01 -5456.69 1964.88 -0.71 0.64 -0.29 1 + 5337.02 -6056.32 2378.51 -0.64 0.73 -0.22 1 + 5325.71 -6293.80 1634.22 -0.64 0.73 -0.22 1 + 5403.75 -6150.14 1880.12 -0.64 0.73 -0.22 1 + 5481.78 -6006.48 2126.01 -0.64 0.73 -0.22 1 + 5548.60 -6100.18 1627.82 -0.64 0.73 -0.22 1 + 5626.64 -5956.52 1873.72 -0.64 0.73 -0.22 1 + 5771.25 -5906.48 1621.16 -0.64 0.73 -0.22 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 6 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 99990.00 99990.00 99990.00 11 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 5693.57 -45.95 -6197.13 -0.72 -0.01 0.70 1 + 6186.08 276.47 -5683.54 -0.72 -0.01 0.70 1 + 6038.51 73.36 -5838.70 -0.72 -0.01 0.70 1 + 5890.89 -130.00 -5993.89 -0.72 -0.01 0.70 1 + 6235.88 -10.67 -5635.82 -0.72 -0.01 0.70 1 + 6088.26 -214.03 -5791.00 -0.72 -0.01 0.70 1 + 6285.47 -297.79 -5587.94 -0.72 -0.01 0.70 1 + 4176.42 -73.25 -7305.85 -0.53 0.05 0.84 1 + 4709.73 -513.71 -6942.71 -0.53 0.05 0.84 1 + 4470.96 -436.13 -7097.87 -0.53 0.05 0.84 1 + 4231.97 -358.63 -7253.14 -0.53 0.05 0.84 1 + 4526.57 -721.32 -7045.46 -0.53 0.05 0.84 1 + 4287.58 -643.83 -7200.73 -0.53 0.05 0.84 1 + 4343.29 -928.89 -7148.00 -0.53 0.05 0.84 1 + 6289.24 -629.64 -5566.84 -0.70 0.07 0.71 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 6213.02 -1167.91 -5538.94 -0.74 0.17 0.65 1 + 6307.00 817.25 -5522.01 -0.78 -0.03 0.63 1 + 6356.27 529.60 -5476.57 -0.78 -0.03 0.63 1 + 6405.78 242.18 -5431.27 -0.78 -0.03 0.63 1 + 6455.19 -45.51 -5385.63 -0.78 -0.03 0.63 1 + 6504.65 -333.18 -5340.34 -0.78 -0.03 0.63 1 + 6487.51 730.81 -5304.98 -0.78 -0.03 0.63 1 + 6536.97 443.36 -5259.32 -0.78 -0.03 0.63 1 + 6586.43 155.69 -5214.04 -0.78 -0.03 0.63 1 + 6635.74 -131.71 -5168.58 -0.78 -0.03 0.63 1 + 6668.21 644.57 -5087.73 -0.78 -0.03 0.63 1 + 6717.47 356.92 -5042.29 -0.78 -0.03 0.63 1 + 6766.79 69.52 -4996.83 -0.78 -0.03 0.63 1 + 6848.77 558.37 -4870.68 -0.78 -0.03 0.63 1 + 6898.03 270.73 -4825.24 -0.78 -0.03 0.63 1 + 7160.19 -775.28 -4353.23 -0.83 0.05 0.55 1 + 6822.16 -329.28 -4898.49 -0.83 0.05 0.55 1 + 6976.81 -409.36 -4660.03 -0.83 0.05 0.55 1 + 7131.46 -489.45 -4421.57 -0.83 0.05 0.55 1 + 6948.22 -123.58 -4728.17 -0.83 0.05 0.55 1 + 7102.87 -203.66 -4489.71 -0.83 0.05 0.55 1 + 7073.94 82.19 -4557.89 -0.83 0.05 0.55 1 + 6722.66 -840.77 -5012.26 -0.81 0.17 0.55 1 + 6575.03 -1044.13 -5167.45 -0.81 0.17 0.55 1 + 6871.60 -919.78 -4769.68 -0.81 0.17 0.55 1 + 6723.88 -1122.85 -4925.05 -0.81 0.17 0.55 1 + 6576.25 -1326.21 -5080.23 -0.81 0.17 0.55 1 + 7020.44 -998.50 -4527.28 -0.81 0.17 0.55 1 + 6872.82 -1201.86 -4682.46 -0.81 0.17 0.55 1 + 6725.10 -1404.93 -4837.83 -0.81 0.17 0.55 1 + 6577.48 -1608.29 -4993.01 -0.81 0.17 0.55 1 + 7169.38 -1077.51 -4284.69 -0.81 0.17 0.55 1 + 7021.66 -1280.58 -4440.06 -0.81 0.17 0.55 1 + 6874.04 -1483.94 -4595.24 -0.81 0.17 0.55 1 + 6726.47 -1687.05 -4750.41 -0.81 0.17 0.55 1 + 6578.70 -1890.37 -4905.80 -0.81 0.17 0.55 1 + 7170.60 -1359.59 -4197.47 -0.81 0.17 0.55 1 + 7022.88 -1562.66 -4352.84 -0.81 0.17 0.55 1 + 6875.26 -1766.02 -4508.03 -0.81 0.17 0.55 1 + 6727.69 -1969.13 -4663.19 -0.81 0.17 0.55 1 + 7171.82 -1641.67 -4110.26 -0.81 0.17 0.55 1 + 7024.10 -1844.74 -4265.63 -0.81 0.17 0.55 1 + 6876.48 -2048.10 -4420.81 -0.81 0.17 0.55 1 + 6381.21 -968.93 -5400.22 -0.74 0.17 0.65 1 + 6227.16 -1734.31 -5372.35 -0.74 0.17 0.65 1 + 6220.09 -1451.11 -5455.65 -0.74 0.17 0.65 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 6051.94 -1650.08 -5594.72 -0.74 0.17 0.65 1 + 6044.87 -1366.88 -5678.01 -0.74 0.17 0.65 1 + 5876.67 -1565.86 -5816.73 -0.74 0.17 0.65 1 + 5932.93 -3020.15 -5167.47 -0.76 0.34 0.55 1 + 5933.04 -3271.34 -5012.11 -0.76 0.34 0.55 1 + 6099.87 -2792.61 -5080.12 -0.76 0.34 0.55 1 + 6099.72 -3043.88 -4925.00 -0.76 0.34 0.55 1 + 6099.83 -3295.06 -4769.63 -0.76 0.34 0.55 1 + 6266.55 -2565.15 -4993.00 -0.76 0.34 0.55 1 + 6266.66 -2816.34 -4837.64 -0.76 0.34 0.55 1 + 6266.51 -3067.60 -4682.52 -0.76 0.34 0.55 1 + 6266.62 -3318.79 -4527.16 -0.76 0.34 0.55 1 + 6433.49 -2337.61 -4905.65 -0.76 0.34 0.55 1 + 6433.34 -2588.88 -4750.53 -0.76 0.34 0.55 1 + 6433.45 -2840.06 -4595.16 -0.76 0.34 0.55 1 + 6433.45 -3091.13 -4440.00 -0.76 0.34 0.55 1 + 6433.41 -3342.52 -4284.68 -0.76 0.34 0.55 1 + 6600.28 -2361.34 -4663.17 -0.76 0.34 0.55 1 + 6600.13 -2612.61 -4508.05 -0.76 0.34 0.55 1 + 6600.24 -2863.79 -4352.69 -0.76 0.34 0.55 1 + 6600.24 -3114.86 -4197.52 -0.76 0.34 0.55 1 + 6767.07 -2385.07 -4420.69 -0.76 0.34 0.55 1 + 6766.92 -2636.33 -4265.57 -0.76 0.34 0.55 1 + 6767.03 -2887.52 -4110.21 -0.76 0.34 0.55 1 + 7308.66 483.30 -4087.45 -0.85 -0.07 0.51 1 + 7267.41 773.99 -4118.86 -0.85 -0.07 0.51 1 + 7201.22 296.57 -4289.41 -0.85 -0.07 0.51 1 + 7160.31 587.19 -4320.78 -0.85 -0.07 0.51 1 + 7119.05 877.89 -4352.20 -0.85 -0.07 0.51 1 + 7052.97 400.17 -4522.56 -0.85 -0.07 0.51 1 + 7011.71 690.87 -4553.98 -0.85 -0.07 0.51 1 + 7746.88 -193.71 -3281.70 -0.90 0.03 0.45 1 + 7406.41 -400.25 -3953.81 -0.90 0.03 0.45 1 + 7518.92 -233.35 -3737.76 -0.90 0.03 0.45 1 + 7631.43 -66.46 -3521.71 -0.90 0.03 0.45 1 + 7403.70 -105.87 -3977.91 -0.90 0.03 0.45 1 + 7516.21 61.02 -3761.86 -0.90 0.03 0.45 1 + 7400.76 188.27 -4001.88 -0.90 0.03 0.45 1 + 7877.55 -1339.13 -2640.25 -0.95 0.10 0.29 1 + 8007.98 -584.52 -2485.19 -0.95 0.10 0.29 1 + 7986.67 -876.95 -2450.18 -0.95 0.10 0.29 1 + 7965.37 -1169.38 -2415.16 -0.95 0.10 0.29 1 + 8074.49 -707.45 -2225.04 -0.95 0.10 0.29 1 + 8053.19 -999.87 -2190.02 -0.95 0.10 0.29 1 + 8140.77 -830.10 -1964.84 -0.95 0.10 0.29 1 + 7852.84 -628.77 -2993.56 -0.91 0.14 0.40 1 + 7761.54 -503.28 -3244.86 -0.91 0.14 0.40 1 + 7825.03 -920.43 -2955.75 -0.91 0.14 0.40 1 + 7733.83 -794.65 -3206.86 -0.91 0.14 0.40 1 + 7642.53 -669.17 -3458.15 -0.91 0.14 0.40 1 + 7797.32 -1211.81 -2917.75 -0.91 0.14 0.40 1 + 7706.02 -1086.32 -3169.04 -0.91 0.14 0.40 1 + 7614.81 -960.54 -3420.15 -0.91 0.14 0.40 1 + 7523.51 -835.05 -3671.44 -0.91 0.14 0.40 1 + 7769.51 -1503.48 -2879.93 -0.91 0.14 0.40 1 + 7678.30 -1377.69 -3131.04 -0.91 0.14 0.40 1 + 7587.00 -1252.21 -3382.33 -0.91 0.14 0.40 1 + 7495.80 -1126.67 -3633.39 -0.91 0.14 0.40 1 + 7404.50 -1000.94 -3884.74 -0.91 0.14 0.40 1 + 7650.49 -1669.36 -3093.22 -0.91 0.14 0.40 1 + 7559.29 -1543.58 -3344.33 -0.91 0.14 0.40 1 + 7467.99 -1418.09 -3595.63 -0.91 0.14 0.40 1 + 7376.78 -1292.56 -3846.69 -0.91 0.14 0.40 1 + 7531.48 -1835.25 -3306.52 -0.91 0.14 0.40 1 + 7440.27 -1709.47 -3557.63 -0.91 0.14 0.40 1 + 7348.97 -1583.98 -3808.92 -0.91 0.14 0.40 1 + 7941.73 -2248.94 -1640.88 -0.95 0.21 0.22 1 + 7965.34 -1637.19 -2126.19 -0.95 0.21 0.22 1 + 7986.65 -1799.28 -1880.30 -0.95 0.21 0.22 1 + 8007.96 -1961.36 -1634.40 -0.95 0.21 0.22 1 + 8053.20 -1511.65 -1873.67 -0.95 0.21 0.22 1 + 8074.51 -1673.74 -1627.78 -0.95 0.21 0.22 1 + 8140.74 -1386.16 -1621.30 -0.95 0.21 0.22 1 + 7222.36 -2036.25 -3749.05 -0.85 0.28 0.45 1 + 7067.98 -2141.26 -3977.78 -0.85 0.28 0.45 1 + 7285.53 -2211.93 -3520.31 -0.85 0.28 0.45 1 + 7131.16 -2316.95 -3749.05 -0.85 0.28 0.45 1 + 6976.78 -2421.96 -3977.78 -0.85 0.28 0.45 1 + 7194.33 -2492.63 -3520.31 -0.85 0.28 0.45 1 + 7039.83 -2597.98 -3749.10 -0.85 0.28 0.45 1 + 7761.61 -2677.12 -1901.15 -0.91 0.29 0.30 1 + 7852.85 -2396.22 -1901.29 -0.91 0.29 0.30 1 + 7642.56 -2793.67 -2145.11 -0.91 0.29 0.30 1 + 7733.85 -2512.84 -2144.91 -0.91 0.29 0.30 1 + 7825.09 -2231.94 -2145.05 -0.91 0.29 0.30 1 + 7523.57 -2910.29 -2388.73 -0.91 0.29 0.30 1 + 7614.81 -2629.39 -2388.87 -0.91 0.29 0.30 1 + 7706.10 -2348.56 -2388.67 -0.91 0.29 0.30 1 + 7797.34 -2067.66 -2388.81 -0.91 0.29 0.30 1 + 7404.52 -3026.84 -2632.69 -0.91 0.29 0.30 1 + 7495.81 -2746.01 -2632.49 -0.91 0.29 0.30 1 + 7587.05 -2465.11 -2632.63 -0.91 0.29 0.30 1 + 7678.25 -2184.41 -2632.63 -0.91 0.29 0.30 1 + 7769.58 -1903.38 -2632.57 -0.91 0.29 0.30 1 + 7376.77 -2862.56 -2876.45 -0.91 0.29 0.30 1 + 7468.06 -2581.74 -2876.25 -0.91 0.29 0.30 1 + 7559.30 -2300.83 -2876.39 -0.91 0.29 0.30 1 + 7650.50 -2020.14 -2876.39 -0.91 0.29 0.30 1 + 7349.01 -2698.28 -3120.21 -0.91 0.29 0.30 1 + 7440.30 -2417.46 -3120.01 -0.91 0.29 0.30 1 + 7531.54 -2136.55 -3120.15 -0.91 0.29 0.30 1 + 7409.12 -3204.31 -2378.51 -0.90 0.39 0.22 1 + 7631.48 -3120.17 -1634.22 -0.90 0.39 0.22 1 + 7518.97 -3238.78 -1880.12 -0.90 0.39 0.22 1 + 7406.46 -3357.39 -2126.01 -0.90 0.39 0.22 1 + 7516.21 -3391.98 -1627.82 -0.90 0.39 0.22 1 + 7403.70 -3510.60 -1873.72 -0.90 0.39 0.22 1 + 7400.79 -3663.60 -1621.16 -0.90 0.39 0.22 1 + 6575.04 -4155.08 -3244.69 -0.81 0.42 0.40 1 + 6722.77 -4106.97 -2993.51 -0.81 0.42 0.40 1 + 6576.35 -3950.74 -3458.04 -0.81 0.42 0.40 1 + 6723.93 -3902.94 -3206.77 -0.81 0.42 0.40 1 + 6871.65 -3854.83 -2955.59 -0.81 0.42 0.40 1 + 6577.51 -3746.71 -3671.30 -0.81 0.42 0.40 1 + 6725.23 -3698.60 -3420.12 -0.81 0.42 0.40 1 + 6872.81 -3650.80 -3168.85 -0.81 0.42 0.40 1 + 7020.53 -3602.69 -2917.67 -0.81 0.42 0.40 1 + 6578.82 -3542.36 -3884.65 -0.81 0.42 0.40 1 + 6726.39 -3494.57 -3633.38 -0.81 0.42 0.40 1 + 6874.12 -3446.46 -3382.20 -0.81 0.42 0.40 1 + -99990.00 -99990.00 -99990.00 9999.00 9999.00 9999.00 10 + 7169.42 -3350.56 -2879.75 -0.81 0.42 0.40 1 + 6727.70 -3290.23 -3846.73 -0.81 0.42 0.40 1 + 6875.27 -3242.43 -3595.46 -0.81 0.42 0.40 1 + 7023.00 -3194.32 -3344.28 -0.81 0.42 0.40 1 + 7170.57 -3146.38 -3093.22 -0.81 0.42 0.40 1 + 6876.58 -3038.09 -3808.81 -0.81 0.42 0.40 1 + 7024.15 -2990.29 -3557.54 -0.81 0.42 0.40 1 + 7171.88 -2942.19 -3306.36 -0.81 0.42 0.40 1 + 6696.49 -4294.36 -2745.32 -0.83 0.47 0.29 1 + 7131.54 -3735.74 -2415.20 -0.83 0.47 0.29 1 + 6976.90 -3984.83 -2450.21 -0.83 0.47 0.29 1 + 6822.26 -4233.93 -2485.21 -0.83 0.47 0.29 1 + 7102.87 -3924.68 -2189.99 -0.83 0.47 0.29 1 + 6948.23 -4173.78 -2224.99 -0.83 0.47 0.29 1 + 7074.00 -4113.35 -1964.88 -0.83 0.47 0.29 1 + 6402.26 -3793.21 -3929.72 -0.74 0.50 0.44 1 + 6212.98 -4432.03 -3521.60 -0.74 0.50 0.44 1 + 6220.05 -4230.88 -3737.65 -0.74 0.50 0.44 1 + 6227.12 -4029.73 -3953.71 -0.74 0.50 0.44 1 + 6044.90 -4467.26 -3761.85 -0.74 0.50 0.44 1 + 6051.97 -4266.10 -3977.91 -0.74 0.50 0.44 1 + 7021.69 -3398.51 -3131.14 -0.81 0.42 0.40 1 + 6504.60 -4627.59 -2686.35 -0.77 0.58 0.25 1 + 6455.15 -4796.78 -2449.21 -0.77 0.58 0.25 1 + 6405.75 -4966.11 -2212.48 -0.77 0.58 0.25 1 + 6356.30 -5135.15 -1975.54 -0.77 0.58 0.25 1 + 6307.06 -5304.47 -1738.49 -0.77 0.58 0.25 1 + 6635.70 -4564.05 -2429.33 -0.77 0.58 0.25 1 + 6586.25 -4733.09 -2192.39 -0.77 0.58 0.25 1 + 6536.85 -4902.42 -1955.66 -0.77 0.58 0.25 1 + 6487.60 -5071.58 -1718.82 -0.77 0.58 0.25 1 + 6766.80 -4500.36 -2172.51 -0.77 0.58 0.25 1 + 6717.55 -4669.52 -1935.66 -0.77 0.58 0.25 1 + 6668.15 -4838.85 -1698.94 -0.77 0.58 0.25 1 + 6898.10 -4436.79 -1915.79 -0.77 0.58 0.25 1 + 6848.70 -4606.11 -1679.06 -0.77 0.58 0.25 1 + 6136.43 -5378.45 -2059.09 -0.72 0.63 0.30 1 + 5890.78 -5303.11 -2796.85 -0.72 0.63 0.30 1 + 6038.35 -5255.16 -2545.78 -0.72 0.63 0.30 1 + 6186.08 -5207.05 -2294.60 -0.72 0.63 0.30 1 + 6088.21 -5084.05 -2781.18 -0.72 0.63 0.30 1 + 6235.93 -5035.94 -2530.00 -0.72 0.63 0.30 1 + 6285.43 -4864.86 -2765.43 -0.72 0.63 0.30 1 + 8417.36 -61.84 291.38 -0.99 0.02 -0.11 1 + 8386.48 -198.44 551.57 -0.99 0.02 -0.11 1 + 8355.84 -335.16 811.41 -0.99 0.02 -0.11 1 + 8324.95 -471.65 1071.37 -0.99 0.02 -0.11 1 + 8294.32 -608.23 1331.54 -0.99 0.02 -0.11 1 + 8394.28 96.45 539.77 -0.99 0.02 -0.11 1 + 8363.38 -40.05 799.72 -0.99 0.02 -0.11 1 + 8332.75 -176.76 1059.57 -0.99 0.02 -0.11 1 + 8302.11 -313.25 1319.51 -0.99 0.02 -0.11 1 + 8371.18 254.84 787.92 -0.99 0.02 -0.11 1 + 8340.54 118.36 1047.87 -0.99 0.02 -0.11 1 + 8309.91 -18.36 1307.71 -0.99 0.02 -0.11 1 + 8348.34 413.24 1036.07 -0.99 0.02 -0.11 1 + 8317.70 276.52 1295.92 -0.99 0.02 -0.11 1 + 8294.32 -1462.98 -51.38 -0.99 0.10 0.03 1 + 8324.96 -1169.29 -57.22 -0.99 0.10 0.03 1 + 8355.85 -875.81 -63.17 -0.99 0.10 0.03 1 + 8386.47 -582.02 -69.24 -0.99 0.10 0.03 1 + 8417.36 -288.31 -75.09 -0.99 0.10 0.03 1 + 8302.12 -1320.42 -309.78 -0.99 0.10 0.03 1 + 8332.75 -1026.86 -315.96 -0.99 0.10 0.03 1 + 8363.64 -733.15 -321.81 -0.99 0.10 0.03 1 + 8394.28 -439.69 -327.74 -0.99 0.10 0.03 1 + 8309.91 -1178.00 -568.52 -0.99 0.10 0.03 1 + 8340.54 -884.30 -574.36 -0.99 0.10 0.03 1 + 8371.18 -590.84 -580.30 -0.99 0.10 0.03 1 + 8317.71 -1035.67 -827.02 -0.99 0.10 0.03 1 + 8348.35 -741.97 -832.86 -0.99 0.10 0.03 1 + 8314.83 -805.76 1018.60 -0.99 0.10 -0.06 1 + 8344.14 -977.68 257.10 -0.99 0.10 -0.06 1 + 8344.14 -822.52 508.16 -0.99 0.10 -0.06 1 + 8344.13 -667.12 759.32 -0.99 0.10 -0.06 1 + 8373.70 -683.96 249.11 -0.99 0.10 -0.06 1 + 8373.69 -528.56 500.27 -0.99 0.10 -0.06 1 + 8403.01 -390.25 241.13 -0.99 0.10 -0.06 1 + 8265.28 -972.49 1295.27 -0.98 0.17 -0.10 1 + 8265.29 -1127.89 1044.10 -0.98 0.17 -0.10 1 + 8265.29 -1283.06 793.04 -0.98 0.17 -0.10 1 + 8265.28 -1438.36 541.64 -0.98 0.17 -0.10 1 + 8265.28 -1593.52 290.58 -0.98 0.17 -0.10 1 + 8214.19 -1263.41 1301.47 -0.98 0.17 -0.10 1 + 8214.20 -1418.81 1050.31 -0.98 0.17 -0.10 1 + 8214.19 -1573.87 799.01 -0.98 0.17 -0.10 1 + 8214.20 -1729.27 547.85 -0.98 0.17 -0.10 1 + 8163.11 -1554.32 1307.68 -0.98 0.17 -0.10 1 + 8163.10 -1709.39 1056.38 -0.98 0.17 -0.10 1 + 8163.11 -1864.78 805.22 -0.98 0.17 -0.10 1 + 8112.26 -1844.89 1313.74 -0.98 0.17 -0.10 1 + 8112.27 -2000.29 1062.58 -0.98 0.17 -0.10 1 + 7982.35 -2367.19 -1272.50 -0.97 0.23 0.10 1 + 8041.80 -2229.30 -1018.02 -0.97 0.23 0.10 1 + 8101.36 -2091.81 -763.65 -0.97 0.23 0.10 1 + 8160.72 -1954.05 -509.38 -0.97 0.23 0.10 1 + 8220.40 -1816.23 -254.96 -0.97 0.23 0.10 1 + 8051.07 -2079.85 -1272.46 -0.97 0.23 0.10 1 + 8110.42 -1942.09 -1018.18 -0.97 0.23 0.10 1 + 8125.84 -2174.60 -255.10 -0.95 0.31 0.06 1 + 7882.83 -2871.78 -510.40 -0.95 0.31 0.06 1 + 7974.04 -2591.09 -510.40 -0.95 0.31 0.06 1 + 8065.27 -2310.18 -510.55 -0.95 0.31 0.06 1 + 7913.79 -2726.62 -765.71 -0.95 0.31 0.06 1 + 8005.02 -2445.72 -765.85 -0.95 0.31 0.06 1 + 7944.51 -2581.38 -1020.95 -0.95 0.31 0.06 1 + 8172.96 -2034.62 36.42 -0.95 0.31 -0.02 1 + 8081.73 -2315.52 36.57 -0.95 0.31 -0.02 1 + 7990.52 -2596.22 36.56 -0.95 0.31 -0.02 1 + 7899.20 -2877.25 36.51 -0.95 0.31 -0.02 1 + 7807.99 -3157.95 36.51 -0.95 0.31 -0.02 1 + 8121.29 -2173.09 292.22 -0.95 0.31 -0.02 1 + 8030.05 -2453.99 292.37 -0.95 0.31 -0.02 1 + 7938.76 -2734.82 292.17 -0.95 0.31 -0.02 1 + 7847.52 -3015.72 292.31 -0.95 0.31 -0.02 1 + 8069.61 -2311.56 548.02 -0.95 0.31 -0.02 1 + 7978.32 -2592.38 547.82 -0.95 0.31 -0.02 1 + 7887.08 -2873.29 547.97 -0.95 0.31 -0.02 1 + 8018.12 -2450.02 803.42 -0.95 0.31 -0.02 1 + 7926.88 -2730.93 803.57 -0.95 0.31 -0.02 1 + 7623.35 -3569.11 290.55 -0.89 0.44 -0.10 1 + 7532.16 -3694.63 541.87 -0.89 0.44 -0.10 1 + 7440.96 -3820.16 792.93 -0.89 0.44 -0.10 1 + 7349.61 -3945.88 1044.27 -0.89 0.44 -0.10 1 + 7258.41 -4071.42 1295.33 -0.89 0.44 -0.10 1 + 7661.75 -3429.33 547.97 -0.89 0.44 -0.10 1 + 7570.57 -3554.86 799.29 -0.89 0.44 -0.10 1 + 7479.20 -3680.59 1050.37 -0.89 0.44 -0.10 1 + 7388.02 -3806.11 1301.69 -0.89 0.44 -0.10 1 + 7700.16 -3289.56 805.40 -0.89 0.44 -0.10 1 + 7608.80 -3415.29 1056.48 -0.89 0.44 -0.10 1 + 7517.61 -3540.82 1307.80 -0.89 0.44 -0.10 1 + 7738.59 -3150.16 1062.58 -0.89 0.44 -0.10 1 + 7647.40 -3275.68 1313.90 -0.89 0.44 -0.10 1 + 7474.16 -3858.76 265.15 -0.86 0.50 -0.06 1 + 7142.71 -4364.81 759.48 -0.86 0.50 -0.06 1 + 7233.92 -4239.28 508.41 -0.86 0.50 -0.06 1 + 7325.11 -4113.76 257.10 -0.86 0.50 -0.06 1 + 7085.22 -4494.23 500.34 -0.86 0.50 -0.06 1 + 7176.41 -4368.71 249.02 -0.86 0.50 -0.06 1 + 7027.53 -4623.50 241.20 -0.86 0.50 -0.06 1 + 7067.81 -4383.16 1331.50 -0.82 0.57 -0.11 1 + 7012.32 -4511.65 1071.42 -0.82 0.57 -0.11 1 + 6957.04 -4640.30 811.59 -0.82 0.57 -0.11 1 + 6901.39 -4768.99 551.53 -0.82 0.57 -0.11 1 + 6846.10 -4897.65 291.44 -0.82 0.57 -0.11 1 + 6900.79 -4626.30 1319.55 -0.82 0.57 -0.11 1 + 6845.16 -4754.99 1059.74 -0.82 0.57 -0.11 1 + 6789.86 -4883.64 799.66 -0.82 0.57 -0.11 1 + 6734.39 -5012.13 539.83 -0.82 0.57 -0.11 1 + 6733.63 -4869.64 1307.88 -0.82 0.57 -0.11 1 + 6678.14 -4998.13 1047.80 -0.82 0.57 -0.11 1 + 6622.66 -5126.62 787.97 -0.82 0.57 -0.11 1 + 6566.63 -5112.77 1296.18 -0.82 0.57 -0.11 1 + 6511.14 -5241.27 1036.10 -0.82 0.57 -0.11 1 + 8220.39 -584.30 1738.54 -0.97 0.01 -0.25 1 + 8160.74 -418.39 1975.50 -0.97 0.01 -0.25 1 + 8101.43 -252.52 2212.33 -0.97 0.01 -0.25 1 + 8041.78 -86.36 2449.23 -0.97 0.01 -0.25 1 + 7982.37 79.56 2686.29 -0.97 0.01 -0.25 1 + 8229.60 -289.88 1718.80 -0.97 0.01 -0.25 1 + 8170.05 -123.77 1955.48 -0.97 0.01 -0.25 1 + 8110.64 42.15 2192.54 -0.97 0.01 -0.25 1 + 8051.09 208.01 2429.26 -0.97 0.01 -0.25 1 + 8238.91 4.74 1698.78 -0.97 0.01 -0.25 1 + 8179.26 170.65 1935.74 -0.97 0.01 -0.25 1 + 8119.71 336.51 2172.47 -0.97 0.01 -0.25 1 + 8248.21 299.11 1678.81 -0.97 0.01 -0.25 1 + 8188.57 465.02 1915.77 -0.97 0.01 -0.25 1 + 7852.14 -1121.07 2812.54 -0.95 0.08 -0.30 1 + 8065.33 -576.60 2294.47 -0.95 0.08 -0.30 1 + 7974.13 -702.13 2545.53 -0.95 0.08 -0.30 1 + 7882.83 -827.62 2796.82 -0.95 0.08 -0.30 1 + 8005.05 -408.91 2529.96 -0.95 0.08 -0.30 1 + 7913.75 -534.39 2781.25 -0.95 0.08 -0.30 1 + 7944.53 -241.24 2765.36 -0.95 0.08 -0.30 1 + 7807.98 -1444.85 2808.23 -0.95 0.16 -0.27 1 + 7899.28 -1319.36 2556.93 -0.95 0.16 -0.27 1 + 7990.48 -1193.83 2305.87 -0.95 0.16 -0.27 1 + 8081.78 -1068.10 2054.53 -0.95 0.16 -0.27 1 + 8172.99 -942.57 1803.47 -0.95 0.16 -0.27 1 + 7847.57 -1609.96 2566.46 -0.95 0.16 -0.27 1 + 7938.86 -1484.48 2315.17 -0.95 0.16 -0.27 1 + 8030.07 -1358.70 2064.06 -0.95 0.16 -0.27 1 + 8121.37 -1233.21 1812.77 -0.95 0.16 -0.27 1 + 7887.15 -1775.08 2324.70 -0.95 0.16 -0.27 1 + 7978.36 -1649.30 2073.59 -0.95 0.16 -0.27 1 + 8069.66 -1523.81 1822.30 -0.95 0.16 -0.27 1 + 7926.88 -1939.88 2083.21 -0.95 0.16 -0.27 1 + 8018.18 -1814.39 1831.92 -0.95 0.16 -0.27 1 + 7258.37 -2979.33 3062.35 -0.89 0.29 -0.35 1 + 7349.71 -2698.47 3062.23 -0.89 0.29 -0.35 1 + 7440.92 -2417.77 3062.23 -0.89 0.29 -0.35 1 + 7532.20 -2136.72 3062.28 -0.89 0.29 -0.35 1 + 7623.40 -1856.03 3062.28 -0.89 0.29 -0.35 1 + 7388.03 -2866.21 2822.21 -0.89 0.29 -0.35 1 + 7479.38 -2585.34 2822.09 -0.89 0.29 -0.35 1 + 7570.52 -2304.46 2822.26 -0.89 0.29 -0.35 1 + 7661.86 -2023.60 2822.14 -0.89 0.29 -0.35 1 + 7517.70 -2753.08 2582.07 -0.89 0.29 -0.35 1 + 7608.83 -2472.20 2582.24 -0.89 0.29 -0.35 1 + 7700.18 -2191.33 2582.12 -0.89 0.29 -0.35 1 + 7647.35 -2640.01 2342.37 -0.89 0.29 -0.35 1 + 7738.70 -2359.14 2342.25 -0.89 0.29 -0.35 1 + 7867.13 -2400.79 1310.22 -0.93 0.30 -0.19 1 + 7867.01 -2556.20 1058.97 -0.93 0.30 -0.19 1 + 7775.93 -2215.87 2063.74 -0.93 0.30 -0.19 1 + 7775.81 -2371.29 1812.49 -0.93 0.30 -0.19 1 + 7775.97 -2526.42 1561.43 -0.93 0.30 -0.19 1 + 7775.78 -2681.65 1310.34 -0.93 0.30 -0.19 1 + 7775.81 -2836.90 1058.97 -0.93 0.30 -0.19 1 + 7684.58 -2496.74 2063.86 -0.93 0.30 -0.19 1 + 7684.60 -2651.98 1812.49 -0.93 0.30 -0.19 1 + 7684.62 -2807.28 1561.55 -0.93 0.30 -0.19 1 + 7684.65 -2962.53 1310.17 -0.93 0.30 -0.19 1 + 7593.44 -2777.61 2063.69 -0.93 0.30 -0.19 1 + 7593.26 -2932.85 1812.61 -0.93 0.30 -0.19 1 + 7593.48 -3088.16 1561.38 -0.93 0.30 -0.19 1 + 7166.05 -4041.47 1803.52 -0.86 0.43 -0.27 1 + 7166.15 -3886.10 2054.70 -0.86 0.43 -0.27 1 + 7166.15 -3730.94 2305.76 -0.86 0.43 -0.27 1 + 7166.11 -3575.62 2557.15 -0.86 0.43 -0.27 1 + 7166.11 -3420.45 2808.21 -0.86 0.43 -0.27 1 + 7295.12 -3775.90 1812.97 -0.86 0.43 -0.27 1 + 7295.23 -3620.53 2064.15 -0.86 0.43 -0.27 1 + 7295.08 -3465.41 2315.42 -0.86 0.43 -0.27 1 + 7295.19 -3310.05 2566.60 -0.86 0.43 -0.27 1 + 7424.20 -3510.32 1822.42 -0.86 0.43 -0.27 1 + 7424.06 -3355.20 2073.69 -0.86 0.43 -0.27 1 + 7424.16 -3199.84 2324.87 -0.86 0.43 -0.27 1 + 7553.21 -3245.15 1832.05 -0.86 0.43 -0.27 1 + 7553.31 -3089.78 2083.23 -0.86 0.43 -0.27 1 + 6411.13 -4756.24 2686.35 -0.79 0.56 -0.25 1 + 6556.76 -4656.94 2449.21 -0.79 0.56 -0.25 1 + 6702.53 -4557.63 2212.48 -0.79 0.56 -0.25 1 + 6848.02 -4458.37 1975.54 -0.79 0.56 -0.25 1 + 6993.83 -4359.21 1738.49 -0.79 0.56 -0.25 1 + 6391.21 -4900.57 2429.33 -0.79 0.56 -0.25 1 + 6536.70 -4801.31 2192.39 -0.79 0.56 -0.25 1 + 6682.47 -4702.00 1955.66 -0.79 0.56 -0.25 1 + 6828.14 -4602.89 1718.82 -0.79 0.56 -0.25 1 + 6371.14 -5044.94 2172.51 -0.79 0.56 -0.25 1 + 6516.81 -4945.83 1935.66 -0.79 0.56 -0.25 1 + 6662.59 -4846.52 1698.94 -0.79 0.56 -0.25 1 + 6351.26 -5189.46 1915.79 -0.79 0.56 -0.25 1 + 6497.03 -5090.15 1679.06 -0.79 0.56 -0.25 1 + 6196.91 -5402.28 1664.71 -0.73 0.66 -0.17 1 + 6334.40 -5314.36 1418.62 -0.73 0.66 -0.17 1 + 6000.23 -5622.24 1653.03 -0.73 0.66 -0.17 1 + 6137.96 -5534.39 1407.19 -0.73 0.66 -0.17 1 + 6275.45 -5446.47 1161.10 -0.73 0.66 -0.17 1 + 5941.19 -5754.32 1395.85 -0.73 0.66 -0.17 1 + 6078.68 -5666.40 1149.76 -0.73 0.66 -0.17 1 + 424.00 594.00 13340.00 9999.00 9999.00 9999.00 5 + 2877.00 -503.00 -8729.00 9999.00 9999.00 9999.00 2 + 5974.00 -1479.00 -6840.00 9999.00 9999.00 9999.00 2 + 440.00 -6139.00 -6840.00 9999.00 9999.00 9999.00 2 + 411.00 -2892.00 -8729.00 9999.00 9999.00 9999.00 2 + 3681.00 -4220.00 -7301.00 9999.00 9999.00 9999.00 2 + 0.00 -499.00 -9214.00 9999.00 9999.00 9999.00 2 + 7787.00 1092.00 -4785.00 9999.00 9999.00 9999.00 2 + 7919.00 -2074.00 -4258.00 9999.00 9999.00 9999.00 2 + 6361.00 -4761.00 -4691.00 9999.00 9999.00 9999.00 2 + 0.00 -730.00 13340.00 9999.00 9999.00 9999.00 5 + 3445.00 -7068.00 -4785.00 9999.00 9999.00 9999.00 2 + 9046.00 -481.00 -1615.00 9999.00 9999.00 9999.00 2 + 8101.00 -4070.00 -1595.00 9999.00 9999.00 9999.00 2 + 5707.00 -7009.00 -1724.00 9999.00 9999.00 9999.00 2 + 2338.00 -8751.00 -1615.00 9999.00 9999.00 9999.00 2 + 9046.00 481.00 1615.00 9999.00 9999.00 9999.00 2 + 8737.00 -2316.00 1724.00 9999.00 9999.00 9999.00 2 + 7035.00 -5706.00 1615.00 9999.00 9999.00 9999.00 2 + 497.00 -9025.00 1724.00 9999.00 9999.00 9999.00 2 + 4161.00 -8054.00 1595.00 9999.00 9999.00 9999.00 2 + 7625.00 2977.00 4258.00 9999.00 9999.00 9999.00 2 + 7945.00 -112.00 4691.00 9999.00 9999.00 9999.00 2 + 6942.00 -3693.00 4785.00 9999.00 9999.00 9999.00 2 + 5187.00 -6332.00 4258.00 9999.00 9999.00 9999.00 2 + 2348.00 -7591.00 4691.00 9999.00 9999.00 9999.00 2 + 5703.00 2315.00 6840.00 9999.00 9999.00 9999.00 2 + 2623.00 1284.00 8729.00 9999.00 9999.00 9999.00 2 + 5458.00 -1251.00 7301.00 9999.00 9999.00 9999.00 2 + 497.00 -5577.00 7301.00 9999.00 9999.00 9999.00 2 + 3964.00 -4708.00 6840.00 9999.00 9999.00 9999.00 2 + 2032.00 -2098.00 8729.00 9999.00 9999.00 9999.00 2 diff --git a/src/pmt_pcath_response.dat b/src/pmt_pcath_response.dat new file mode 100644 index 0000000..31fb041 --- /dev/null +++ b/src/pmt_pcath_response.dat @@ -0,0 +1,127 @@ +*LOG +*--- Standard Titles File: pmt_pcath_response.dat 02 Mar 1998 +*--- Banks: PCAT +*LOG OFF +*DO PCAT 1 -i(30I -F) #. Bank for Photocathode response. +#. (This bank MDL's PMT_PCATH_R.DAT) +#. +#. Contact: S. Biller, Oxford. +#. +#. Standard Database Header +#. +19750101 0 20380517 03331900 #. 1..4 Intrinsic validity + 0 0 0 #. 5..7 Data type, Task type, Format no. + 0 0 0 #. 8..10 Creation Date, Time, Source Id. +19750101 0 20380517 03331900 #. 11..14 Effective validity + 0 0 #. 15..16 Entry Date Time +4*0 #. 17..20 Spare +10*0 #. 21..30 Temporary data (not in database) +#. +#. End of Standard Database Header +#. +#. Revision History:- +#. ================ +#. +#. 3.01 M.Thorman New data - obtained from the NPL measurements of PMT +#. efficiency. +#. +#. User Data. +#. +#. Wavelength table of probability of an absorbed photon causing +#. a hit. In one nm steps from 230 to 700. + +0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 +0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 0.0000E+00 +0.0000E+00 0.4909E-03 0.9818E-03 0.1473E-02 0.1964E-02 +0.2454E-02 0.2945E-02 0.3436E-02 0.3927E-02 0.4418E-02 +0.4909E-02 0.5510E-02 0.6111E-02 0.6713E-02 0.7314E-02 +0.7915E-02 0.8516E-02 0.9117E-02 0.9719E-02 0.1032E-01 +0.1092E-01 0.1269E-01 0.1446E-01 0.1622E-01 0.1799E-01 +0.1976E-01 0.2153E-01 0.2329E-01 0.2506E-01 0.2683E-01 +0.2860E-01 0.3169E-01 0.3478E-01 0.3788E-01 0.4097E-01 +0.4406E-01 0.4716E-01 0.5025E-01 0.5334E-01 0.5644E-01 +0.5953E-01 0.6295E-01 0.6636E-01 0.6978E-01 0.7320E-01 +0.7661E-01 0.8003E-01 0.8344E-01 0.8686E-01 0.9028E-01 +0.9369E-01 0.9680E-01 0.9991E-01 0.1030 0.1061 +0.1092 0.1123 0.1154 0.1185 0.1217 +0.1248 0.1275 0.1302 0.1330 0.1357 +0.1385 0.1412 0.1439 0.1467 0.1494 +0.1522 0.1541 0.1561 0.1580 0.1600 +0.1619 0.1639 0.1658 0.1678 0.1697 +0.1717 0.1725 0.1734 0.1742 0.1751 +0.1759 0.1767 0.1776 0.1784 0.1793 +0.1801 0.1810 0.1819 0.1827 0.1836 +0.1844 0.1853 0.1862 0.1870 0.1879 +0.1888 0.1890 0.1893 0.1896 0.1898 +0.1901 0.1903 0.1906 0.1909 0.1911 +0.1914 0.1917 0.1921 0.1924 0.1928 +0.1931 0.1935 0.1938 0.1942 0.1945 +0.1949 0.1952 0.1954 0.1957 0.1960 +0.1963 0.1966 0.1969 0.1972 0.1975 +0.1978 0.1978 0.1978 0.1978 0.1979 +0.1979 0.1979 0.1979 0.1980 0.1980 +0.1980 0.1983 0.1985 0.1988 0.1990 +0.1993 0.1996 0.1998 0.2001 0.2003 +0.2006 0.2008 0.2010 0.2013 0.2015 +0.2017 0.2019 0.2022 0.2024 0.2026 +0.2029 0.2033 0.2038 0.2042 0.2047 +0.2052 0.2056 0.2061 0.2065 0.2070 +0.2075 0.2078 0.2082 0.2085 0.2089 +0.2092 0.2096 0.2099 0.2103 0.2106 +0.2110 0.2113 0.2116 0.2119 0.2123 +0.2126 0.2129 0.2132 0.2135 0.2139 +0.2142 0.2142 0.2143 0.2144 0.2144 +0.2145 0.2146 0.2146 0.2147 0.2148 +0.2148 0.2147 0.2145 0.2144 0.2142 +0.2141 0.2139 0.2138 0.2136 0.2135 +0.2133 0.2131 0.2128 0.2126 0.2124 +0.2121 0.2119 0.2117 0.2114 0.2112 +0.2110 0.2103 0.2097 0.2090 0.2084 +0.2077 0.2071 0.2064 0.2058 0.2051 +0.2045 0.2038 0.2032 0.2025 0.2018 +0.2012 0.2005 0.1999 0.1992 0.1986 +0.1979 0.1975 0.1971 0.1967 0.1962 +0.1958 0.1954 0.1950 0.1946 0.1941 +0.1937 0.1933 0.1929 0.1925 0.1921 +0.1917 0.1913 0.1908 0.1904 0.1900 +0.1896 0.1892 0.1887 0.1883 0.1879 +0.1874 0.1870 0.1866 0.1861 0.1857 +0.1852 0.1835 0.1818 0.1801 0.1784 +0.1766 0.1749 0.1732 0.1715 0.1698 +0.1681 0.1651 0.1622 0.1593 0.1564 +0.1535 0.1506 0.1477 0.1448 0.1419 +0.1390 0.1366 0.1342 0.1318 0.1294 +0.1270 0.1246 0.1222 0.1198 0.1174 +0.1150 0.1143 0.1136 0.1129 0.1122 +0.1115 0.1107 0.1100 0.1093 0.1086 +0.1079 0.1062 0.1046 0.1029 0.1013 +0.9965E-01 0.9801E-01 0.9636E-01 0.9472E-01 0.9308E-01 +0.9143E-01 0.9060E-01 0.8977E-01 0.8895E-01 0.8812E-01 +0.8729E-01 0.8646E-01 0.8563E-01 0.8480E-01 0.8398E-01 +0.8315E-01 0.8224E-01 0.8133E-01 0.8041E-01 0.7950E-01 +0.7859E-01 0.7768E-01 0.7677E-01 0.7586E-01 0.7495E-01 +0.7404E-01 0.7297E-01 0.7190E-01 0.7083E-01 0.6976E-01 +0.6869E-01 0.6762E-01 0.6655E-01 0.6548E-01 0.6441E-01 +0.6334E-01 0.6223E-01 0.6111E-01 0.5999E-01 0.5887E-01 +0.5775E-01 0.5663E-01 0.5552E-01 0.5440E-01 0.5328E-01 +0.5216E-01 0.5092E-01 0.4967E-01 0.4843E-01 0.4719E-01 +0.4594E-01 0.4470E-01 0.4345E-01 0.4221E-01 0.4097E-01 +0.3972E-01 0.3884E-01 0.3795E-01 0.3707E-01 0.3618E-01 +0.3530E-01 0.3441E-01 0.3353E-01 0.3264E-01 0.3176E-01 +0.3087E-01 0.2996E-01 0.2906E-01 0.2815E-01 0.2724E-01 +0.2634E-01 0.2543E-01 0.2452E-01 0.2361E-01 0.2271E-01 +0.2180E-01 0.2109E-01 0.2038E-01 0.1967E-01 0.1897E-01 +0.1826E-01 0.1755E-01 0.1684E-01 0.1613E-01 0.1542E-01 +0.1471E-01 0.1412E-01 0.1353E-01 0.1293E-01 0.1234E-01 +0.1175E-01 0.1115E-01 0.1056E-01 0.9967E-02 0.9374E-02 +0.8781E-02 0.8416E-02 0.8052E-02 0.7687E-02 0.7323E-02 +0.6958E-02 0.6594E-02 0.6229E-02 0.5865E-02 0.5500E-02 +0.5136E-02 0.4899E-02 0.4663E-02 0.4427E-02 0.4191E-02 +0.3955E-02 0.3718E-02 0.3482E-02 0.3246E-02 0.3010E-02 +0.2774E-02 0.2650E-02 0.2527E-02 0.2404E-02 0.2281E-02 +0.2157E-02 0.2034E-02 0.1911E-02 0.1788E-02 0.1665E-02 +0.1541E-02 0.1459E-02 0.1377E-02 0.1295E-02 0.1213E-02 +0.1131E-02 0.1049E-02 0.9665E-03 0.8844E-03 0.8023E-03 +0.7201E-03 0.6944E-03 0.6686E-03 0.6429E-03 0.6171E-03 +0.5914E-03 0.5656E-03 0.5399E-03 0.5141E-03 0.4884E-03 +0.4626E-03 diff --git a/src/quantum_efficiency.c b/src/quantum_efficiency.c new file mode 100644 index 0000000..f8ae972 --- /dev/null +++ b/src/quantum_efficiency.c @@ -0,0 +1,125 @@ +#include +#include +#include +#include +#include +#include + +static int initialized = 0; + +static double *x, *y; +static size_t size; + +gsl_interp_accel *acc; +gsl_spline *spline; + +static int init() +{ + int i; + char line[256]; + char *str; + double value; + int n; + + FILE *f = fopen("pmt_pcath_response.dat", "r"); + + if (!f) { + fprintf(stderr, "failed to open pmt_pcath_response.dat: %s", strerror(errno)); + return -1; + } + + i = 0; + n = 0; + /* For the first pass, we just count how many values there are. */ + while (fgets(line, sizeof(line), f)) { + size_t len = strlen(line); + if (len && (line[len-1] != '\n')) { + fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); + goto err; + } + + i += 1; + + /* Skip the first 32 lines since it's just a header. */ + if (i < 32) continue; + + if (!len) continue; + else if (line[0] == '#') continue; + + str = strtok(line," \n"); + + while (str) { + value = strtod(str, NULL); + n += 1; + str = strtok(NULL," \n"); + } + } + + x = malloc(sizeof(double)*(n+2)); + y = malloc(sizeof(double)*(n+2)); + size = n + 2; + + /* Make sure we extrapolate to 0. */ + x[0] = 0; + y[0] = 0; + x[n+1] = 1000; + y[n+1] = 0; + + i = 0; + n = 0; + /* Now, we actually store the values. */ + rewind(f); + while (fgets(line, sizeof(line), f)) { + size_t len = strlen(line); + if (len && (line[len-1] != '\n')) { + fprintf(stderr, "got incomplete line on line %i: '%s'\n", i, line); + goto err; + } + + i += 1; + + /* Skip the first 32 lines since it's just a header. */ + if (i < 32) continue; + + if (!len) continue; + else if (line[0] == '#') continue; + + str = strtok(line," \n"); + + while (str) { + value = strtod(str, NULL); + /* According to the file, the values are stored for wavelengths + * between 230 and 700 in 1 nm increments. */ + x[n+1] = 230 + n*1.0; + y[n+1] = value; + n += 1; + str = strtok(NULL," \n"); + } + } + + fclose(f); + + acc = gsl_interp_accel_alloc(); + spline = gsl_spline_alloc(gsl_interp_linear, size); + gsl_spline_init(spline, x, y, size); + + initialized = 1; + + return 0; + +err: + fclose(f); + + return -1; +} + +double get_quantum_efficiency(double wavelength) +{ + if (!initialized) { + if (init()) { + exit(1); + } + } + + return gsl_spline_eval(spline, wavelength, acc); +} diff --git a/src/quantum_efficiency.h b/src/quantum_efficiency.h new file mode 100644 index 0000000..bd05950 --- /dev/null +++ b/src/quantum_efficiency.h @@ -0,0 +1,6 @@ +#ifndef QUANTUM_EFFICIENCY_H +#define QUANTUM_EFFICIENCY_H + +double get_quantum_efficiency(double wavelength); + +#endif diff --git a/src/random.c b/src/random.c new file mode 100644 index 0000000..f6cf85e --- /dev/null +++ b/src/random.c @@ -0,0 +1,14 @@ +#include "random.h" +#include + +double randn(void) +{ + /* Generates a random number from a normal distribution using the + * Box-Muller transform. */ + double u1, u2; + + u1 = genrand_real1(); + u2 = genrand_real1(); + + return sqrt(-2*log(u1))*cos(2*M_PI*u2); +} diff --git a/src/random.h b/src/random.h new file mode 100644 index 0000000..309cd71 --- /dev/null +++ b/src/random.h @@ -0,0 +1,8 @@ +#ifndef RANDOM_H +#define RANDOM_H + +#include "mt19937ar.h" + +double randn(void); + +#endif diff --git a/src/scattering.c b/src/scattering.c new file mode 100644 index 0000000..a7fa717 --- /dev/null +++ b/src/scattering.c @@ -0,0 +1,121 @@ +#include "scattering.h" +#include "quantum_efficiency.h" +#include +#include +#include +#include +#include "optics.h" +#include "sno.h" +#include /* for size_t */ +#include /* for exit() */ +#include /* for fprintf() */ +#include /* for gsl_strerror() */ + +static double xlo = -1.0; +static double xhi = 1.0; +static size_t nx = 200; +static double ylo = 0.0; +static double yhi = 1.0; +static size_t ny = 1000; + +static double *x; +static double *y; +static double *z; + +static gsl_spline2d *spline; +static gsl_interp_accel *xacc; +static gsl_interp_accel *yacc; + +static double prob_scatter(double wavelength, void *params) +{ + /* Calculate the number of photons emitted per unit solid angle per cm at + * an angle `theta` for a particle travelling with velocity `beta` with an + * angular distribution of width `theta0`. */ + double qe, delta, index; + + double beta_cos_theta = ((double *) params)[0]; + double beta_sin_theta_theta0 = ((double *) params)[1]; + + qe = get_quantum_efficiency(wavelength); + + index = get_index(HEAVY_WATER_DENSITY, wavelength, 10.0); + + delta = (1.0/index - beta_cos_theta)/(2*beta_sin_theta_theta0); + + /* FIXME: ignore GSL error for underflow here. */ + if (delta*delta > 500) return 0.0; + else if (delta*delta == 0.0) return INFINITY; + return qe*exp(-delta*delta)*gsl_sf_bessel_K0(delta*delta)/pow(wavelength,2)*1e7/(4*M_PI*M_PI); +} + +void init_interpolation(void) +{ + size_t i, j; + double params[2]; + double result, error; + size_t nevals; + int status; + + x = malloc(nx*sizeof(double)); + y = malloc(ny*sizeof(double)); + z = malloc(nx*ny*sizeof(double)); + + spline = gsl_spline2d_alloc(gsl_interp2d_bilinear, nx, ny); + xacc = gsl_interp_accel_alloc(); + yacc = gsl_interp_accel_alloc(); + + for (i = 0; i < nx; i++) { + x[i] = xlo + (xhi-xlo)*i/(nx-1); + } + + for (i = 0; i < ny; i++) { + y[i] = ylo + (yhi-ylo)*i/(ny-1); + } + + gsl_integration_cquad_workspace *w = gsl_integration_cquad_workspace_alloc(100); + + gsl_function F; + F.function = &prob_scatter; + F.params = params; + + for (i = 0; i < nx; i++) { + for (j = 0; j < ny; j++) { + params[0] = x[i]; + params[1] = y[j]; + + status = gsl_integration_cquad(&F, 200, 800, 0, 1e-2, w, &result, &error, &nevals); + + if (status) { + fprintf(stderr, "error integrating photon angular distribution: %s\n", gsl_strerror(status)); + exit(1); + } + gsl_spline2d_set(spline, z, i, j, result); + } + } + + gsl_spline2d_init(spline, x, y, z, nx, ny); + + gsl_integration_cquad_workspace_free(w); +} + +double get_probability(double beta, double cos_theta, double theta0) +{ + double sin_theta; + + /* Technically this isn't defined up to a sign, but it doesn't matter since + * we are going to square it everywhere. */ + sin_theta = fabs(sin(acos(cos_theta))); + + return gsl_spline2d_eval(spline, beta*cos_theta, beta*sin_theta*theta0, xacc, yacc)/sin_theta; +} + +void free_interpolation(void) +{ + free(x); + free(y); + free(z); + + gsl_spline2d_free(spline); + gsl_interp_accel_free(xacc); + gsl_interp_accel_free(yacc); +} diff --git a/src/scattering.h b/src/scattering.h new file mode 100644 index 0000000..f3a38d8 --- /dev/null +++ b/src/scattering.h @@ -0,0 +1,8 @@ +#ifndef SCATTERING_H +#define SCATTERING_H + +void init_interpolation(void); +double get_probability(double beta, double cos_theta, double theta0); +void free_interpolation(void); + +#endif diff --git a/src/siphash.c b/src/siphash.c new file mode 100644 index 0000000..6b94190 --- /dev/null +++ b/src/siphash.c @@ -0,0 +1,360 @@ +/* + SipHash reference C implementation + + Copyright (c) 2012-2016 Jean-Philippe Aumasson + + Copyright (c) 2012-2014 Daniel J. Bernstein + Copyright (c) 2017 Salvatore Sanfilippo + + To the extent possible under law, the author(s) have dedicated all copyright + and related and neighboring rights to this software to the public domain + worldwide. This software is distributed without any warranty. + + You should have received a copy of the CC0 Public Domain Dedication along + with this software. If not, see + . + + ---------------------------------------------------------------------------- + + This version was modified by Salvatore Sanfilippo + in the following ways: + + 1. We use SipHash 1-2. This is not believed to be as strong as the + suggested 2-4 variant, but AFAIK there are not trivial attacks + against this reduced-rounds version, and it runs at the same speed + as Murmurhash2 that we used previously, why the 2-4 variant slowed + down Redis by a 4% figure more or less. + 2. Hard-code rounds in the hope the compiler can optimize it more + in this raw from. Anyway we always want the standard 2-4 variant. + 3. Modify the prototype and implementation so that the function directly + returns an uint64_t value, the hash itself, instead of receiving an + output buffer. This also means that the output size is set to 8 bytes + and the 16 bytes output code handling was removed. + 4. Provide a case insensitive variant to be used when hashing strings that + must be considered identical by the hash table regardless of the case. + If we don't have directly a case insensitive hash function, we need to + perform a text transformation in some temporary buffer, which is costly. + 5. Remove debugging code. + 6. Modified the original test.c file to be a stand-alone function testing + the function in the new form (returing an uint64_t) using just the + relevant test vector. + */ +#include +#include +#include +#include +#include + +/* Fast tolower() alike function that does not care about locale + * but just returns a-z insetad of A-Z. */ +int siptlw(int c) { + if (c >= 'A' && c <= 'Z') { + return c+('a'-'A'); + } else { + return c; + } +} + +/* Test of the CPU is Little Endian and supports not aligned accesses. + * Two interesting conditions to speedup the function that happen to be + * in most of x86 servers. */ +#if defined(__X86_64__) || defined(__x86_64__) || defined (__i386__) +#define UNALIGNED_LE_CPU +#endif + +#define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) + +#define U32TO8_LE(p, v) \ + (p)[0] = (uint8_t)((v)); \ + (p)[1] = (uint8_t)((v) >> 8); \ + (p)[2] = (uint8_t)((v) >> 16); \ + (p)[3] = (uint8_t)((v) >> 24); + +#define U64TO8_LE(p, v) \ + U32TO8_LE((p), (uint32_t)((v))); \ + U32TO8_LE((p) + 4, (uint32_t)((v) >> 32)); + +#ifdef UNALIGNED_LE_CPU +#define U8TO64_LE(p) (*((uint64_t*)(p))) +#else +#define U8TO64_LE(p) \ + (((uint64_t)((p)[0])) | ((uint64_t)((p)[1]) << 8) | \ + ((uint64_t)((p)[2]) << 16) | ((uint64_t)((p)[3]) << 24) | \ + ((uint64_t)((p)[4]) << 32) | ((uint64_t)((p)[5]) << 40) | \ + ((uint64_t)((p)[6]) << 48) | ((uint64_t)((p)[7]) << 56)) +#endif + +#define U8TO64_LE_NOCASE(p) \ + (((uint64_t)(siptlw((p)[0]))) | \ + ((uint64_t)(siptlw((p)[1])) << 8) | \ + ((uint64_t)(siptlw((p)[2])) << 16) | \ + ((uint64_t)(siptlw((p)[3])) << 24) | \ + ((uint64_t)(siptlw((p)[4])) << 32) | \ + ((uint64_t)(siptlw((p)[5])) << 40) | \ + ((uint64_t)(siptlw((p)[6])) << 48) | \ + ((uint64_t)(siptlw((p)[7])) << 56)) + +#define SIPROUND \ + do { \ + v0 += v1; \ + v1 = ROTL(v1, 13); \ + v1 ^= v0; \ + v0 = ROTL(v0, 32); \ + v2 += v3; \ + v3 = ROTL(v3, 16); \ + v3 ^= v2; \ + v0 += v3; \ + v3 = ROTL(v3, 21); \ + v3 ^= v0; \ + v2 += v1; \ + v1 = ROTL(v1, 17); \ + v1 ^= v2; \ + v2 = ROTL(v2, 32); \ + } while (0) + +uint64_t siphash(const uint8_t *in, const size_t inlen, const uint8_t *k) { +#ifndef UNALIGNED_LE_CPU + uint64_t hash; + uint8_t *out = (uint8_t*) &hash; +#endif + uint64_t v0 = 0x736f6d6570736575ULL; + uint64_t v1 = 0x646f72616e646f6dULL; + uint64_t v2 = 0x6c7967656e657261ULL; + uint64_t v3 = 0x7465646279746573ULL; + uint64_t k0 = U8TO64_LE(k); + uint64_t k1 = U8TO64_LE(k + 8); + uint64_t m; + const uint8_t *end = in + inlen - (inlen % sizeof(uint64_t)); + const int left = inlen & 7; + uint64_t b = ((uint64_t)inlen) << 56; + v3 ^= k1; + v2 ^= k0; + v1 ^= k1; + v0 ^= k0; + + for (; in != end; in += 8) { + m = U8TO64_LE(in); + v3 ^= m; + + SIPROUND; + + v0 ^= m; + } + + switch (left) { + case 7: b |= ((uint64_t)in[6]) << 48; /* fall-thru */ + case 6: b |= ((uint64_t)in[5]) << 40; /* fall-thru */ + case 5: b |= ((uint64_t)in[4]) << 32; /* fall-thru */ + case 4: b |= ((uint64_t)in[3]) << 24; /* fall-thru */ + case 3: b |= ((uint64_t)in[2]) << 16; /* fall-thru */ + case 2: b |= ((uint64_t)in[1]) << 8; /* fall-thru */ + case 1: b |= ((uint64_t)in[0]); break; + case 0: break; + } + + v3 ^= b; + + SIPROUND; + + v0 ^= b; + v2 ^= 0xff; + + SIPROUND; + SIPROUND; + + b = v0 ^ v1 ^ v2 ^ v3; +#ifndef UNALIGNED_LE_CPU + U64TO8_LE(out, b); + return hash; +#else + return b; +#endif +} + +uint64_t siphash_nocase(const uint8_t *in, const size_t inlen, const uint8_t *k) +{ +#ifndef UNALIGNED_LE_CPU + uint64_t hash; + uint8_t *out = (uint8_t*) &hash; +#endif + uint64_t v0 = 0x736f6d6570736575ULL; + uint64_t v1 = 0x646f72616e646f6dULL; + uint64_t v2 = 0x6c7967656e657261ULL; + uint64_t v3 = 0x7465646279746573ULL; + uint64_t k0 = U8TO64_LE(k); + uint64_t k1 = U8TO64_LE(k + 8); + uint64_t m; + const uint8_t *end = in + inlen - (inlen % sizeof(uint64_t)); + const int left = inlen & 7; + uint64_t b = ((uint64_t)inlen) << 56; + v3 ^= k1; + v2 ^= k0; + v1 ^= k1; + v0 ^= k0; + + for (; in != end; in += 8) { + m = U8TO64_LE_NOCASE(in); + v3 ^= m; + + SIPROUND; + + v0 ^= m; + } + + switch (left) { + case 7: b |= ((uint64_t)siptlw(in[6])) << 48; /* fall-thru */ + case 6: b |= ((uint64_t)siptlw(in[5])) << 40; /* fall-thru */ + case 5: b |= ((uint64_t)siptlw(in[4])) << 32; /* fall-thru */ + case 4: b |= ((uint64_t)siptlw(in[3])) << 24; /* fall-thru */ + case 3: b |= ((uint64_t)siptlw(in[2])) << 16; /* fall-thru */ + case 2: b |= ((uint64_t)siptlw(in[1])) << 8; /* fall-thru */ + case 1: b |= ((uint64_t)siptlw(in[0])); break; + case 0: break; + } + + v3 ^= b; + + SIPROUND; + + v0 ^= b; + v2 ^= 0xff; + + SIPROUND; + SIPROUND; + + b = v0 ^ v1 ^ v2 ^ v3; +#ifndef UNALIGNED_LE_CPU + U64TO8_LE(out, b); + return hash; +#else + return b; +#endif +} + + +/* --------------------------------- TEST ------------------------------------ */ + +#ifdef SIPHASH_TEST + +const uint8_t vectors_sip64[64][8] = { + { 0x31, 0x0e, 0x0e, 0xdd, 0x47, 0xdb, 0x6f, 0x72, }, + { 0xfd, 0x67, 0xdc, 0x93, 0xc5, 0x39, 0xf8, 0x74, }, + { 0x5a, 0x4f, 0xa9, 0xd9, 0x09, 0x80, 0x6c, 0x0d, }, + { 0x2d, 0x7e, 0xfb, 0xd7, 0x96, 0x66, 0x67, 0x85, }, + { 0xb7, 0x87, 0x71, 0x27, 0xe0, 0x94, 0x27, 0xcf, }, + { 0x8d, 0xa6, 0x99, 0xcd, 0x64, 0x55, 0x76, 0x18, }, + { 0xce, 0xe3, 0xfe, 0x58, 0x6e, 0x46, 0xc9, 0xcb, }, + { 0x37, 0xd1, 0x01, 0x8b, 0xf5, 0x00, 0x02, 0xab, }, + { 0x62, 0x24, 0x93, 0x9a, 0x79, 0xf5, 0xf5, 0x93, }, + { 0xb0, 0xe4, 0xa9, 0x0b, 0xdf, 0x82, 0x00, 0x9e, }, + { 0xf3, 0xb9, 0xdd, 0x94, 0xc5, 0xbb, 0x5d, 0x7a, }, + { 0xa7, 0xad, 0x6b, 0x22, 0x46, 0x2f, 0xb3, 0xf4, }, + { 0xfb, 0xe5, 0x0e, 0x86, 0xbc, 0x8f, 0x1e, 0x75, }, + { 0x90, 0x3d, 0x84, 0xc0, 0x27, 0x56, 0xea, 0x14, }, + { 0xee, 0xf2, 0x7a, 0x8e, 0x90, 0xca, 0x23, 0xf7, }, + { 0xe5, 0x45, 0xbe, 0x49, 0x61, 0xca, 0x29, 0xa1, }, + { 0xdb, 0x9b, 0xc2, 0x57, 0x7f, 0xcc, 0x2a, 0x3f, }, + { 0x94, 0x47, 0xbe, 0x2c, 0xf5, 0xe9, 0x9a, 0x69, }, + { 0x9c, 0xd3, 0x8d, 0x96, 0xf0, 0xb3, 0xc1, 0x4b, }, + { 0xbd, 0x61, 0x79, 0xa7, 0x1d, 0xc9, 0x6d, 0xbb, }, + { 0x98, 0xee, 0xa2, 0x1a, 0xf2, 0x5c, 0xd6, 0xbe, }, + { 0xc7, 0x67, 0x3b, 0x2e, 0xb0, 0xcb, 0xf2, 0xd0, }, + { 0x88, 0x3e, 0xa3, 0xe3, 0x95, 0x67, 0x53, 0x93, }, + { 0xc8, 0xce, 0x5c, 0xcd, 0x8c, 0x03, 0x0c, 0xa8, }, + { 0x94, 0xaf, 0x49, 0xf6, 0xc6, 0x50, 0xad, 0xb8, }, + { 0xea, 0xb8, 0x85, 0x8a, 0xde, 0x92, 0xe1, 0xbc, }, + { 0xf3, 0x15, 0xbb, 0x5b, 0xb8, 0x35, 0xd8, 0x17, }, + { 0xad, 0xcf, 0x6b, 0x07, 0x63, 0x61, 0x2e, 0x2f, }, + { 0xa5, 0xc9, 0x1d, 0xa7, 0xac, 0xaa, 0x4d, 0xde, }, + { 0x71, 0x65, 0x95, 0x87, 0x66, 0x50, 0xa2, 0xa6, }, + { 0x28, 0xef, 0x49, 0x5c, 0x53, 0xa3, 0x87, 0xad, }, + { 0x42, 0xc3, 0x41, 0xd8, 0xfa, 0x92, 0xd8, 0x32, }, + { 0xce, 0x7c, 0xf2, 0x72, 0x2f, 0x51, 0x27, 0x71, }, + { 0xe3, 0x78, 0x59, 0xf9, 0x46, 0x23, 0xf3, 0xa7, }, + { 0x38, 0x12, 0x05, 0xbb, 0x1a, 0xb0, 0xe0, 0x12, }, + { 0xae, 0x97, 0xa1, 0x0f, 0xd4, 0x34, 0xe0, 0x15, }, + { 0xb4, 0xa3, 0x15, 0x08, 0xbe, 0xff, 0x4d, 0x31, }, + { 0x81, 0x39, 0x62, 0x29, 0xf0, 0x90, 0x79, 0x02, }, + { 0x4d, 0x0c, 0xf4, 0x9e, 0xe5, 0xd4, 0xdc, 0xca, }, + { 0x5c, 0x73, 0x33, 0x6a, 0x76, 0xd8, 0xbf, 0x9a, }, + { 0xd0, 0xa7, 0x04, 0x53, 0x6b, 0xa9, 0x3e, 0x0e, }, + { 0x92, 0x59, 0x58, 0xfc, 0xd6, 0x42, 0x0c, 0xad, }, + { 0xa9, 0x15, 0xc2, 0x9b, 0xc8, 0x06, 0x73, 0x18, }, + { 0x95, 0x2b, 0x79, 0xf3, 0xbc, 0x0a, 0xa6, 0xd4, }, + { 0xf2, 0x1d, 0xf2, 0xe4, 0x1d, 0x45, 0x35, 0xf9, }, + { 0x87, 0x57, 0x75, 0x19, 0x04, 0x8f, 0x53, 0xa9, }, + { 0x10, 0xa5, 0x6c, 0xf5, 0xdf, 0xcd, 0x9a, 0xdb, }, + { 0xeb, 0x75, 0x09, 0x5c, 0xcd, 0x98, 0x6c, 0xd0, }, + { 0x51, 0xa9, 0xcb, 0x9e, 0xcb, 0xa3, 0x12, 0xe6, }, + { 0x96, 0xaf, 0xad, 0xfc, 0x2c, 0xe6, 0x66, 0xc7, }, + { 0x72, 0xfe, 0x52, 0x97, 0x5a, 0x43, 0x64, 0xee, }, + { 0x5a, 0x16, 0x45, 0xb2, 0x76, 0xd5, 0x92, 0xa1, }, + { 0xb2, 0x74, 0xcb, 0x8e, 0xbf, 0x87, 0x87, 0x0a, }, + { 0x6f, 0x9b, 0xb4, 0x20, 0x3d, 0xe7, 0xb3, 0x81, }, + { 0xea, 0xec, 0xb2, 0xa3, 0x0b, 0x22, 0xa8, 0x7f, }, + { 0x99, 0x24, 0xa4, 0x3c, 0xc1, 0x31, 0x57, 0x24, }, + { 0xbd, 0x83, 0x8d, 0x3a, 0xaf, 0xbf, 0x8d, 0xb7, }, + { 0x0b, 0x1a, 0x2a, 0x32, 0x65, 0xd5, 0x1a, 0xea, }, + { 0x13, 0x50, 0x79, 0xa3, 0x23, 0x1c, 0xe6, 0x60, }, + { 0x93, 0x2b, 0x28, 0x46, 0xe4, 0xd7, 0x06, 0x66, }, + { 0xe1, 0x91, 0x5f, 0x5c, 0xb1, 0xec, 0xa4, 0x6c, }, + { 0xf3, 0x25, 0x96, 0x5c, 0xa1, 0x6d, 0x62, 0x9f, }, + { 0x57, 0x5f, 0xf2, 0x8e, 0x60, 0x38, 0x1b, 0xe5, }, + { 0x72, 0x45, 0x06, 0xeb, 0x4c, 0x32, 0x8a, 0x95, }, +}; + + +/* Test siphash using a test vector. Returns 0 if the function passed + * all the tests, otherwise 1 is returned. + * + * IMPORTANT: The test vector is for SipHash 2-4. Before running + * the test revert back the siphash() function to 2-4 rounds since + * now it uses 1-2 rounds. */ +int siphash_test(void) { + uint8_t in[64], k[16]; + int i; + int fails = 0; + + for (i = 0; i < 16; ++i) + k[i] = i; + + for (i = 0; i < 64; ++i) { + in[i] = i; + uint64_t hash = siphash(in, i, k); + const uint8_t *v = NULL; + v = (uint8_t *)vectors_sip64; + if (memcmp(&hash, v + (i * 8), 8)) { + /* printf("fail for %d bytes\n", i); */ + fails++; + } + } + + /* Run a few basic tests with the case insensitive version. */ + uint64_t h1, h2; + h1 = siphash((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); + h2 = siphash_nocase((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); + if (h1 != h2) fails++; + + h1 = siphash((uint8_t*)"hello world",11,(uint8_t*)"1234567812345678"); + h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); + if (h1 != h2) fails++; + + h1 = siphash((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); + h2 = siphash_nocase((uint8_t*)"HELLO world",11,(uint8_t*)"1234567812345678"); + if (h1 == h2) fails++; + + if (!fails) return 0; + return 1; +} + +int main(void) { + if (siphash_test() == 0) { + printf("SipHash test: OK\n"); + return 0; + } else { + printf("SipHash test: FAILED\n"); + return 1; + } +} + +#endif diff --git a/src/sno.h b/src/sno.h new file mode 100644 index 0000000..eebb297 --- /dev/null +++ b/src/sno.h @@ -0,0 +1,19 @@ +#ifndef SNO_H +#define SNO_H + +/* Density of heavy water at 10 degrees Celsius. + * + * From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */ +#define HEAVY_WATER_DENSITY 1.10595 + +/* Density of regular water at 10 degrees Celsius. + * + * From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */ +#define WATER_DENSITY 0.99973 + +/* Radius of the AV in mm. */ +#define AV_RADIUS_INNER 6005.0 +#define AV_RADIUS_OUTER 6060.0 +#define AV_RADIUS 6032.5 + +#endif diff --git a/src/sno_charge.c b/src/sno_charge.c new file mode 100644 index 0000000..faf7826 --- /dev/null +++ b/src/sno_charge.c @@ -0,0 +1,246 @@ +#include "sno_charge.h" +#include +#include +#include +#include +#include +#include +#include "misc.h" + +#define MAX_PE 10 + +double qlo = -1.0; +double qhi = 100.0; +size_t nq = 10000; +static gsl_spline *splines[MAX_PE]; +static gsl_interp_accel *acc; + +static double qmean, qstd; + +static double pmiss[MAX_PE]; + +static int initialized = 0; + +/* Parameters for the single PE charge distribution. These numbers come from + * mc_generator.dat in SNOMAN 5.0294. */ + +/* Polya parameter. */ +static double M = 8.1497; +/* Amplitude of 1st Polya. */ +static double NG1 = 0.27235e-1; +/* Slope of Polya Gain 1 vs. high-half point. */ +static double SLPG1 = 0.71726; +/* Offset of Polya Gain 1 vs. high-half point. */ +static double OFFG1 = 1.2525; +/* Amplitude of 2nd Polya. */ +static double NG2 = 0.7944e-3; +/* Slope of Polya Gain 2 vs. high-half point. */ +static double SLPG2 = 0.71428; +/* Offset of Polya Gain 2 vs. high-half point. */ +static double OFFG2 = 118.21; +/* Amplitude of exponential noise peak. */ +static double NEXP = 0.81228e-1; +/* Falloff parameter of exponential noise peak. */ +static double Q0 = 20.116; +/* Mean of high-half point distribution. */ +static double MEAN_HIPT = 46.0; +/* Width of noise before discriminator in ADC counts. */ +static double QNOISE = 0.61; +/* Width of smearing after discriminator in ADC counts. */ +static double QSMEAR_ADC = 3.61; +/* Mean of simulated threshold distribution. */ +static double MEAN_THRESH = 8.5; + +double spe_pol2exp(double q) +{ + /* Returns the probability distribution to get a charge `q` on a PMT with a + * high-half point `hhp` from a single photoelectron. + * + * We assume that the charge has been normalized by the high-half point. + * + * This function models the single PE charge distribution as a double Polya + * with an exponential noise term. */ + double qpe1, qpe2, funpol1, funpol2, gmratio, g1, g2, norm, hhp; + + if (q < 0) return 0.0; + + hhp = MEAN_HIPT; + + q *= MEAN_HIPT; + + g1 = OFFG1 + SLPG1*hhp; + g2 = OFFG2 + SLPG2*hhp; + + qpe1 = q/g1; + qpe2 = q/g2; + + funpol1 = pow(M*qpe1,M-1)*exp(-M*qpe1); + funpol2 = pow(M*qpe2,M-1)*exp(-M*qpe2); + + gmratio = M/gsl_sf_gamma(M); + + norm = (NG1*g1 + NG2*g2 + NEXP*Q0)/MEAN_HIPT; + + return (gmratio*(NG1*funpol1 + NG2*funpol2) + NEXP*exp(-q/Q0))/norm; +} + +double pq(double q, int n) +{ + if (!initialized) { + fprintf(stderr, "charge interpolation hasn't been initialized!\n"); + exit(1); + } + + if (n > MAX_PE) { + /* Assume the distribution is gaussian by the central limit theorem. */ + return norm(q,n*qmean,qstd); + } + + if (q < qlo || q > qhi) return 0.0; + + return gsl_spline_eval(splines[n-1], q, acc); +} + +double get_pmiss(int n) +{ + if (!initialized) { + fprintf(stderr, "charge interpolation hasn't been initialized!\n"); + exit(1); + } + + if (n == 0) { + return 1.0; + } else if (n > MAX_PE) { + /* Assume the distribution is gaussian by the central limit theorem. */ + return 0.0; + } + + return pmiss[n-1]; +} + +static double gsl_charge(double x, void *params) +{ + double q = ((double *) params)[0]; + int n = (int) ((double *) params)[1]; + + return pq(x,1)*pq(q-x,n-1); +} + +static double gsl_charge2(double x, void *params) +{ + int n = (int) ((double *) params)[0]; + + return pq(x,n); +} + +static double gsl_smear(double x, void *params) +{ + double q = ((double *) params)[0]; + int n = (int) ((double *) params)[1]; + + return pq(x,n)*norm(q-x,0.0,QSMEAR_ADC/MEAN_HIPT); +} + +static double sno_charge1(double q, void *params) +{ + return q*spe_pol2exp(q); +} + +static double sno_charge2(double q, void *params) +{ + return q*q*spe_pol2exp(q); +} + +void init_charge(void) +{ + int i, j; + gsl_integration_cquad_workspace *w; + double result, error; + size_t nevals; + double *x, *y; + double params[2]; + gsl_function F; + double q, q2; + + initialized = 1; + + x = malloc(nq*sizeof(double)); + y = malloc(nq*sizeof(double)); + + for (i = 0; i < nq; i++) { + x[i] = qlo + (qhi-qlo)*i/(nq-1); + } + + w = gsl_integration_cquad_workspace_alloc(100); + + F.function = &sno_charge1; + F.params = NULL; + + gsl_integration_cquad(&F, 0, qhi, 0, 1e-9, w, &result, &error, &nevals); + q = result; + + F.function = &sno_charge2; + F.params = NULL; + + gsl_integration_cquad(&F, 0, qhi, 0, 1e-9, w, &result, &error, &nevals); + q2 = result; + + qmean = q; + qstd = sqrt(q2 - q*q); + + F.function = &gsl_charge; + F.params = ¶ms; + + acc = gsl_interp_accel_alloc(); + + splines[0] = gsl_spline_alloc(gsl_interp_linear,nq); + for (j = 0; j < nq; j++) { + y[j] = spe_pol2exp(x[j]); + } + gsl_spline_init(splines[0],x,y,nq); + + for (i = 2; i <= MAX_PE; i++) { + splines[i-1] = gsl_spline_alloc(gsl_interp_linear,nq); + for (j = 0; j < nq; j++) { + params[0] = x[j]; + params[1] = i; + if (x[j] < 0) { + y[j] = 0.0; + continue; + } + gsl_integration_cquad(&F, 0, x[j], 0, 1e-4, w, &result, &error, &nevals); + y[j] = result; + } + gsl_spline_init(splines[i-1],x,y,nq); + } + + /* Integrate the charge distribution before smearing to figure out the + * probability that the discriminator didn't fire. + * + * Note: Technically there is some smearing before the discriminator, but + * it is very small, so we ignore it. */ + F.function = &gsl_charge2; + for (i = 1; i <= MAX_PE; i++) { + params[0] = i; + gsl_integration_cquad(&F, 0, MEAN_THRESH/MEAN_HIPT, 0, 1e-9, w, &result, &error, &nevals); + pmiss[i-1] = result; + } + + F.function = &gsl_smear; + + for (i = 1; i <= MAX_PE; i++) { + for (j = 0; j < nq; j++) { + params[0] = x[j]; + params[1] = i; + gsl_integration_cquad(&F, x[j]-QSMEAR_ADC*10/MEAN_HIPT, x[j]+QSMEAR_ADC*10/MEAN_HIPT, 0, 1e-4, w, &result, &error, &nevals); + y[j] = result; + } + gsl_spline_free(splines[i-1]); + splines[i-1] = gsl_spline_alloc(gsl_interp_linear,nq); + gsl_spline_init(splines[i-1],x,y,nq); + } + + gsl_integration_cquad_workspace_free(w); + free(x); + free(y); +} diff --git a/src/sno_charge.h b/src/sno_charge.h new file mode 100644 index 0000000..545fdd2 --- /dev/null +++ b/src/sno_charge.h @@ -0,0 +1,9 @@ +#ifndef SNO_CHARGE_H +#define SNO_CHARGE_H + +void init_charge(void); +double pq(double q, int n); +double get_pmiss(int n); +double spe_pol2exp(double q); + +#endif diff --git a/src/solid_angle.c b/src/solid_angle.c new file mode 100644 index 0000000..4e44413 --- /dev/null +++ b/src/solid_angle.c @@ -0,0 +1,115 @@ +#include "solid_angle.h" +#include +#include +#include +#include + +static double hd[11] = {0.1,0.125,0.150,0.175,0.2,0.3,0.4,0.5,0.6,0.8,1.0}; +static double Rd[13] = {0.1,0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2,1.3,1.4,1.5,2.0}; + +static double lookupTable[13][11] = { +{0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9996,0.9997,1.0000,1.0003}, +{1.0340,1.0334,1.0325,1.0316,1.0306,1.0257,1.0202,1.0150,1.0108,1.0059,1.0058}, +{1.0836,1.0814,1.0788,1.0758,1.0725,1.0578,1.0429,1.0300,1.0201,1.0091,1.0072}, +{1.1789,1.1718,1.1635,1.1546,1.1452,1.1067,1.0733,1.0480,1.0303,1.0122,1.0083}, +{1.3626,1.3375,1.3107,1.2837,1.2572,1.1669,1.1045,1.0642,1.0388,1.0147,1.0092}, +{1.7390,1.6319,1.5384,1.4590,1.3923,1.2167,1.1212,1.0737,1.0437,1.0163,1.0097}, +{2.2382,1.9036,1.6924,1.5489,1.4458,1.2241,1.1262,1.0742,1.0444,1.0170,1.0101}, +{1.7336,1.5812,1.4741,1.3945,1.3331,1.1850,1.1103,1.0676,1.0418,1.0170,1.0102}, +{1.2190,1.2218,1.2151,1.2032,1.1889,1.1314,1.0876,1.0575,1.0375,1.0165,1.0102}, +{1.0806,1.0920,1.0990,1.1023,1.1026,1.0880,1.0662,1.0471,1.0325,1.0157,1.0102}, +{1.0390,1.0464,1.0523,1.0566,1.0594,1.0591,1.0494,1.0380,1.0279,1.0148,1.0100}, +{1.0222,1.0270,1.0311,1.0345,1.0371,1.0408,1.0371,1.0305,1.0237,1.0138,1.0098}, +{1.0041,1.0051,1.0061,1.0070,1.0078,1.0106,1.0120,1.0122,1.0116,1.0097,1.0084} +}; + +static double A(double u, double a, double h) +{ + return atan(((a*a-h*h)*u - 2*a*a*h*h)/(2*a*h*sqrt((u-h*h)*(u+a*a)))); +} + +double get_solid_angle_approx(double *pos, double *pmt, double *n, double r) +{ + /* Returns the approximate solid angle subtended by a circular disk of + * radius r at a position `pmt` with a normal vector `n` from a position + * `pos`. + * + * This approximation comes from calculating the solid angle subtended by a + * square of equal area, which has a closed form solution. For certain + * regimes, the approximation is not very good and so it is modified by a + * correction factor which comes from a lookup table. + * + * This formula comes from "The Solid Angle Subtended at a Point by a * Circular Disk." Gardener et al. 1969. */ + double dir[3]; + double h, r0, D, a, u1, u2, F; + static gsl_spline2d *spline; + static gsl_interp_accel *xacc; + static gsl_interp_accel *yacc; + + dir[0] = pos[0] - pmt[0]; + dir[1] = pos[1] - pmt[1]; + dir[2] = pos[2] - pmt[2]; + + h = fabs(dir[0]*n[0] + dir[1]*n[1] + dir[2]*n[2]); + D = sqrt(dir[0]*dir[0] + dir[1]*dir[1] + dir[2]*dir[2]); + r0 = sqrt(D*D - h*h); + + a = sqrt(M_PI)*r/2; + + u1 = h*h + pow(r0-a,2); + u2 = h*h + pow(r0+a,2); + + F = 1.0; + if (h/D > 0.1 && h/D < 1.0 && r/D > 0.1 && r/D < 2.0) { + if (!spline) { + spline = gsl_spline2d_alloc(gsl_interp2d_bilinear, sizeof(hd)/sizeof(double), sizeof(Rd)/sizeof(double)); + gsl_spline2d_init(spline, hd, Rd, (double *) lookupTable, sizeof(hd)/sizeof(double), sizeof(Rd)/sizeof(double)); + } + if (!xacc) xacc = gsl_interp_accel_alloc(); + if (!yacc) xacc = gsl_interp_accel_alloc(); + F = gsl_spline2d_eval(spline,h/D,r/D,xacc,yacc); + } + + if (r0 < a) { + return F*(A(u1,a,h) + A(u2,a,h) + M_PI); + } else { + return F*(A(u2,a,h) - A(u1,a,h)); + } +} + +double get_solid_angle(double *pos, double *pmt, double *n, double r) +{ + /* Returns the solid angle subtended by a circular disk of radius r at a + * position `pmt` with a normal vector `n` from a position `pos`. + * + * See http://www.umich.edu/~ners312/CourseLibrary/SolidAngleOfADiskOffAxis.pdf. */ + double dir[3]; + double L, r0, R, a2, k, Rmax, K, P; + + dir[0] = pos[0] - pmt[0]; + dir[1] = pos[1] - pmt[1]; + dir[2] = pos[2] - pmt[2]; + + L = fabs(dir[0]*n[0] + dir[1]*n[1] + dir[2]*n[2]); + R = sqrt(dir[0]*dir[0] + dir[1]*dir[1] + dir[2]*dir[2]); + r0 = sqrt(R*R - L*L); + + a2 = 4*r0*r/pow(r0+r,2); + Rmax = sqrt(L*L + (r0+r)*(r0+r)); + k = sqrt(4*r0*r/(L*L + pow(r0+r,2))); + + if (fabs(r0-r) < 1e-5) { + /* If r0 is very close to r, the GSL routines below will occasionally + * throw a domain error. */ + K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); + return M_PI - 2*L*K/Rmax; + } else if (r0 <= r) { + K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); + P = gsl_sf_ellint_Pcomp(k, -a2, GSL_PREC_DOUBLE); + return 2*M_PI - 2*L*K/Rmax + (2*L/Rmax)*(r0-r)*P/(r0+r); + } else { + K = gsl_sf_ellint_Kcomp(k, GSL_PREC_DOUBLE); + P = gsl_sf_ellint_Pcomp(k, -a2, GSL_PREC_DOUBLE); + return -2*L*K/Rmax + (2*L/Rmax)*(r0-r)*P/(r0+r); + } +} diff --git a/src/solid_angle.h b/src/solid_angle.h new file mode 100644 index 0000000..aacb692 --- /dev/null +++ b/src/solid_angle.h @@ -0,0 +1,9 @@ +#ifndef SOLID_ANGLE_H +#define SOLID_ANGLE_H + +#include + +double get_solid_angle_approx(double *pos, double *pmt, double *n, double r); +double get_solid_angle(double *pos, double *pmt, double *n, double r); + +#endif diff --git a/src/test-charge.c b/src/test-charge.c new file mode 100644 index 0000000..0b73d24 --- /dev/null +++ b/src/test-charge.c @@ -0,0 +1,86 @@ +#include +#include "sno_charge.h" +#include +#include +#include /* for errno */ +#include /* for strerror() */ + +void usage(void) +{ + fprintf(stderr,"Usage: ./test-charge\n"); + fprintf(stderr," -n number of PE\n"); + fprintf(stderr," -b number of bins\n"); + fprintf(stderr," --xmin Lowest value of charge\n"); + fprintf(stderr," --xmax Highest value of charge\n"); + fprintf(stderr," -h Display this help message\n"); + exit(1); +} + +int main(int argc, char **argv) +{ + size_t i, j, nq, n; + double *x; + double qlo, qhi; + + n = 10; + nq = 1000; + qlo = -1.0; + qhi = 1.0; + + for (i = 1; i < argc; i++) { + if (!strncmp(argv[i], "--", 2)) { + if (!strcmp(argv[i]+2,"xmin")) { + qlo = strtod(argv[++i],NULL); + continue; + } else if (!strcmp(argv[i]+2,"xmax")) { + qhi = strtod(argv[++i],NULL); + continue; + } + } else if (argv[i][0] == '-') { + switch (argv[i][1]) { + case 'n': + n = atoi(argv[++i]); + break; + case 'b': + nq = atoi(argv[++i]); + break; + case 'h': + usage(); + default: + fprintf(stderr, "unrecognized option '%s'\n", argv[i]); + exit(1); + } + } + } + + init_charge(); + + x = malloc(nq*sizeof(double)); + + for (i = 0; i < nq; i++) { + x[i] = qlo + (qhi-qlo)*i/(nq-1); + } + + FILE *pipe = popen("graph -T X --bitmap-size 2000x2000 -X 'Charge (PE)' -Y Probability", "w"); + + if (!pipe) { + fprintf(stderr, "error running graph command: %s\n", strerror(errno)); + exit(1); + } + + for (i = 1; i <= n; i++) { + for (j = 0; j < nq; j++) { + fprintf(pipe, "%.10f %.10f\n", x[j], pq(x[j],i)); + } + fprintf(pipe, "\n\n"); + } + + if (pclose(pipe)) { + fprintf(stderr, "error closing graph command: %s\n", strerror(errno)); + exit(1); + } + + free(x); + + return 0; +} diff --git a/src/test-likelihood.c b/src/test-likelihood.c new file mode 100644 index 0000000..f0266b9 --- /dev/null +++ b/src/test-likelihood.c @@ -0,0 +1,193 @@ +#include "muon.h" +#include "random.h" +#include "optics.h" +#include "quantum_efficiency.h" +#include +#include +#include "sno.h" +#include "pdg.h" +#include "vector.h" +#include "solid_angle.h" +#include /* for atoi() and strtod() */ +#include /* for exit() */ +#include "scattering.h" +#include /* for errno */ +#include /* for strerror() */ + +void simulate_cos_theta_distribution(int N, gsl_histogram *h, double T, double theta0) +{ + /* Simulate the cos(theta) distribution around the original track direction + * for a muon with kinetic energy T. The angle from the original track + * distribution is simulated as a gaussian distribution with standard + * deviation `theta0`. */ + int i; + double theta, phi, wavelength, u, qe, index, cerenkov_angle, dir[3], n[3], dest[3], E, p, beta, cos_theta; + + i = 0; + while (i < N) { + /* Generate a random wavelength in the range 300-600 nm from the + * distribution of Cerenkov light. */ + u = genrand_real2(); + wavelength = 300.0*600.0/(u*(300.0-600.0) + 600.0); + + qe = get_quantum_efficiency(wavelength); + + /* Check to see if the photon was detected. */ + if (genrand_real2() > qe) continue; + + index = get_index(HEAVY_WATER_DENSITY, wavelength, 10.0); + + /* Calculate total energy */ + E = T + MUON_MASS; + p = sqrt(E*E - MUON_MASS*MUON_MASS); + beta = p/E; + + cerenkov_angle = acos(1/(index*beta)); + + /* Assuming the muon track is dominated by small angle scattering, the + * angular distribution will be a Gaussian centered around 0 with a + * standard deviation of `theta0`. Here, we draw a random angle from + * this distribution. */ + theta = randn()*theta0; + + n[0] = sin(theta); + n[1] = 0; + n[2] = cos(theta); + + /* To compute the direction of the photon, we start with a vector in + * the x-z plane which is offset from the track direction by the + * Cerenkov angle and then rotate it around the track direction by a + * random angle `phi`. */ + dir[0] = sin(cerenkov_angle + theta); + dir[1] = 0; + dir[2] = cos(cerenkov_angle + theta); + + phi = genrand_real2()*2*M_PI; + + rotate(dest,dir,n,phi); + + cos_theta = dest[2]; + + gsl_histogram_increment(h, cos_theta); + + i += 1; + } +} + +void usage(void) +{ + fprintf(stderr,"Usage: ./test-likelihood [options]\n"); + fprintf(stderr," -n number of events\n"); + fprintf(stderr," -T kinetic energy of muon (MeV)\n"); + fprintf(stderr," -t standard deviation of angular distribution\n"); + fprintf(stderr," -b number of bins\n"); + fprintf(stderr," --xmin lowest value of cos(theta)\n"); + fprintf(stderr," --xmax highest value of cos(theta)\n"); + fprintf(stderr," -h display this help message\n"); + exit(1); +} + +int main(int argc, char **argv) +{ + size_t i, N, bins; + double T, theta0; + double E, p, beta; + double xmin, xmax; + + N = 100000; + bins = 1000; + T = 1000.0; + theta0 = 0.1; + xmin = -1.0; + xmax = 1.0; + + for (i = 1; i < argc; i++) { + if (!strncmp(argv[i], "--", 2)) { + if (!strcmp(argv[i]+2,"xmin")) { + xmin = strtod(argv[++i],NULL); + continue; + } else if (!strcmp(argv[i]+2,"xmax")) { + xmax = strtod(argv[++i],NULL); + continue; + } + } else if (argv[i][0] == '-') { + switch (argv[i][1]) { + case 'n': + N = atoi(argv[++i]); + break; + case 'b': + bins = atoi(argv[++i]); + break; + case 'T': + T = strtod(argv[++i],NULL); + break; + case 't': + theta0 = strtod(argv[++i],NULL); + break; + case 'h': + usage(); + default: + fprintf(stderr, "unrecognized option '%s'\n", argv[i]); + exit(1); + } + } + } + + gsl_histogram *h = gsl_histogram_alloc(bins); + gsl_histogram_set_ranges_uniform(h,xmin,xmax); + + simulate_cos_theta_distribution(N, h, T, theta0); + + gsl_histogram_scale(h, 1.0/gsl_histogram_sum(h)); + + FILE *pipe = popen("graph -T X --bitmap-size 2000x2000 -X 'Cos(theta)' -Y Probability", "w"); + + if (!pipe) { + fprintf(stderr, "error running graph command: %s\n", strerror(errno)); + exit(1); + } + + for (i = 0; i < h->n; i++) { + fprintf(pipe, "%g %g\n", h->range[i], h->bin[i]); + fprintf(pipe, "%g %g\n", h->range[i+1], h->bin[i]); + } + fprintf(pipe, "\n\n"); + + gsl_histogram_reset(h); + + init_interpolation(); + + /* Calculate total energy */ + E = T + MUON_MASS; + p = sqrt(E*E - MUON_MASS*MUON_MASS); + beta = p/E; + + for (i = 0; i < bins; i++) { + double lo, hi; + gsl_histogram_get_range(h, i, &lo, &hi); + double cos_theta = (lo+hi)/2.0; + h->bin[i] = get_probability(beta, cos_theta, theta0); + } + + free_interpolation(); + + printf("\n\n"); + + gsl_histogram_scale(h, 1.0/gsl_histogram_sum(h)); + + for (i = 0; i < h->n; i++) { + fprintf(pipe, "%g %g\n", h->range[i], h->bin[i]); + fprintf(pipe, "%g %g\n", h->range[i+1], h->bin[i]); + } + fprintf(pipe, "\n\n"); + + if (pclose(pipe)) { + fprintf(stderr, "error closing graph command: %s\n", strerror(errno)); + exit(1); + } + + gsl_histogram_free(h); + + return 0; +} + diff --git a/src/test-vector.c b/src/test-vector.c new file mode 100644 index 0000000..44b4a71 --- /dev/null +++ b/src/test-vector.c @@ -0,0 +1,319 @@ +#include +#include +#include "vector.h" +#include "mt19937ar.h" + +typedef int testFunction(char *err); + +int isclose(double a, double b, double rel_tol, double abs_tol) +{ + /* Returns 1 if a and b are "close". This algorithm is taken from Python's + * math.isclose() function. + * + * See https://www.python.org/dev/peps/pep-0485/. */ + return fabs(a-b) <= fmax(rel_tol*fmax(fabs(a),fabs(b)),abs_tol); +} + +int test_dot(char *err) +{ + int i; + double a[3], b[3], c, expected; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + c = DOT(a,b); + + expected = a[0]*b[0] + a[1]*b[1] + a[2]*b[2]; + + if (!isclose(c, expected, 1e-9, 0)) { + sprintf(err, "a \\dot b = %.5f, but expected %.5f", c, expected); + return 1; + } + } + + return 0; +} + +int test_norm(char *err) +{ + int i; + double a[3], c, expected; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + c = NORM(a); + + expected = sqrt(a[0]*a[0] + a[1]*a[1] + a[2]*a[2]); + + if (!isclose(c, expected, 1e-9, 0)) { + sprintf(err, "norm(a) = %.5f, but expected %.5f", c, expected); + return 1; + } + } + + return 0; +} + +int test_copy(char *err) +{ + int i, j; + double a[3], b[3]; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + COPY(a,b); + + for (j = 0; j < 3; j++) { + if (!isclose(a[j], b[j], 1e-9, 0)) { + sprintf(err, "a[%i] = %.5f, but expected %.5f", j, a[j], b[j]); + return 1; + } + } + } + + return 0; +} + +int test_div(char *err) +{ + int i, j; + double a[3], b[3], c; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + c = genrand_real2(); + + COPY(a,b); + DIV(a,c); + + for (j = 0; j < 3; j++) { + if (!isclose(a[j], b[j]/c, 1e-9, 0)) { + sprintf(err, "a[%i] = %.5f, but expected %.5f", j, a[j], b[j]/c); + return 1; + } + } + } + + return 0; +} + +int test_add(char *err) +{ + int i; + double a[3], b[3], c[3]; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + ADD(c,a,b); + + if (!isclose(c[0], a[0]+b[0], 1e-9, 0)) { + sprintf(err, "a[0] + b[0] = %.5f, but expected %.5f", c[0], a[0]+b[0]); + return 1; + } + + if (!isclose(c[1], a[1]+b[1], 1e-9, 0)) { + sprintf(err, "a[1] + b[1] = %.5f, but expected %.5f", c[1], a[1]+b[1]); + return 1; + } + + if (!isclose(c[2], a[2]+b[2], 1e-9, 0)) { + sprintf(err, "a[2] + b[2] = %.5f, but expected %.5f", c[2], a[2]+b[2]); + return 1; + } + } + + return 0; +} + +int test_sub(char *err) +{ + int i; + double a[3], b[3], c[3]; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + SUB(c,a,b); + + if (!isclose(c[0], a[0]-b[0], 1e-9, 0)) { + sprintf(err, "a[0] - b[0] = %.5f, but expected %.5f", c[0], a[0]-b[0]); + return 1; + } + + if (!isclose(c[1], a[1]-b[1], 1e-9, 0)) { + sprintf(err, "a[1] - b[1] = %.5f, but expected %.5f", c[1], a[1]-b[1]); + return 1; + } + + if (!isclose(c[2], a[2]-b[2], 1e-9, 0)) { + sprintf(err, "a[2] - b[2] = %.5f, but expected %.5f", c[2], a[2]-b[2]); + return 1; + } + } + + return 0; +} + +int test_normalize(char *err) +{ + int i; + double a[3], c; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + normalize(a); + + c = NORM(a); + + if (!isclose(c, 1.0, 1e-9, 0)) { + sprintf(err, "norm(a) = %.5f, but expected %.5f", c, 1.0); + return 1; + } + } + + return 0; +} + +int test_cross_product(char *err) +{ + int i, j; + double a[3], b[3], c[3], expected[3]; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + a[0] = genrand_real2(); + a[1] = genrand_real2(); + a[2] = genrand_real2(); + + b[0] = genrand_real2(); + b[1] = genrand_real2(); + b[2] = genrand_real2(); + + CROSS(c,a,b); + + expected[0] = a[1]*b[2] - a[2]*b[1]; + expected[1] = a[2]*b[0] - a[0]*b[2]; + expected[2] = a[0]*b[1] - a[1]*b[0]; + + for (j = 0; j < 3; j++) { + if (!isclose(c[j], expected[j], 1e-9, 0)) { + sprintf(err, "(a x b)[%i] = %.5f, but expected %.5f", j, c[j], expected[j]); + return 1; + } + } + } + + return 0; +} + +int test_rotate(char *err) +{ + int i; + double a[3], b[3], c[3], expected[3]; + + a[0] = 1; + a[1] = 0; + a[2] = 0; + + b[0] = 0; + b[1] = 0; + b[2] = 1; + + rotate(c,a,b,M_PI/2); + + expected[0] = 0; + expected[1] = 1; + expected[2] = 0; + + for (i = 0; i < 3; i++) { + if (!isclose(c[i], expected[i], 1e-9, 1e-9)) { + sprintf(err, "rotate(a,b,pi/2)[%i] = %.5f, but expected %.5f", i, c[i], expected[i]); + return 1; + } + } + + return 0; +} + +struct tests { + testFunction *test; + char *name; +} tests[] = { + {test_dot, "test_dot"}, + {test_norm, "test_norm"}, + {test_copy, "test_copy"}, + {test_div, "test_div"}, + {test_add, "test_add"}, + {test_sub, "test_sub"}, + {test_normalize, "test_normalize"}, + {test_cross_product, "test_cross_product"}, + {test_rotate, "test_rotate"} +}; + +int main(int argc, char **argv) +{ + int i; + char err[256]; + int retval = 0; + struct tests test; + + for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { + test = tests[i]; + + if (!test.test(err)) { + printf("[\033[92mok\033[0m] %s\n", test.name); + } else { + printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); + retval = 1; + } + } + + return retval; +} diff --git a/src/test-zebra.c b/src/test-zebra.c new file mode 100644 index 0000000..1d9b203 --- /dev/null +++ b/src/test-zebra.c @@ -0,0 +1,69 @@ +#include "zebra.h" +#include +#include "Record_Info.h" + +typedef int testFunction(char *err); + +int test_zdab(char *err) +{ + int rv; + bank b; + int nzdabs = 0; + + zebraFile *z = zebra_open("Muons.zdab"); + + while (1) { + rv = next_bank(z, &b); + + if (rv == -1) { + sprintf(err, "error getting bank: %s\n", zebra_err); + goto err; + } else if (rv == 1) { + break; + } + + if (b.name == ZDAB_RECORD) nzdabs += 1; + } + + if (nzdabs != 5) { + sprintf(err, "expected %i zdab records but got %i", 5, nzdabs); + goto err; + } + + zebra_close(z); + + return 0; + +err: + zebra_close(z); + + return -1; +} + +struct tests { + testFunction *test; + char *name; +} tests[] = { + {test_zdab, "test_zdab"} +}; + +int main(int argc, char **argv) +{ + int i; + char err[256]; + int retval = 0; + struct tests test; + + for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { + test = tests[i]; + + if (!test.test(err)) { + printf("[\033[92mok\033[0m] %s\n", test.name); + } else { + printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); + retval = 1; + } + } + + return retval; +} diff --git a/src/test.c b/src/test.c new file mode 100644 index 0000000..747e664 --- /dev/null +++ b/src/test.c @@ -0,0 +1,360 @@ +#include "solid_angle.h" +#include +#include +#include "optics.h" +#include "muon.h" +#include "mt19937ar.h" +#include +#include "misc.h" +#include "sno_charge.h" +#include + +typedef int testFunction(char *err); + +/* Table of some of the tabulated values of the refractive index of water as a + * function of wavelength and temperature. In all cases, I just used the values + * for standard atmospheric pressure and assume this corresponds approximately + * to a density of 1000 kg/m^3. + * + * See Table 7 in https://aip.scitation.org/doi/pdf/10.1063/1.555859. */ + +struct refractive_index_results { + double p; + double T; + double wavelength; + double n; +} refractive_index_results[] = { + {1.0, 0 , 226.50, 1.39468}, + {1.0, 10, 226.50, 1.39439}, + {1.0, 20, 226.50, 1.39353}, + {1.0, 30, 226.50, 1.39224}, + {1.0, 0 , 404.41, 1.34431}, + {1.0, 10, 404.41, 1.34404}, + {1.0, 20, 404.41, 1.34329}, + {1.0, 30, 404.41, 1.34218}, + {1.0, 0 , 589.00, 1.33447}, + {1.0, 10, 589.00, 1.33422}, + {1.0, 20, 589.00, 1.33350}, + {1.0, 30, 589.00, 1.33243}, + {1.0, 0 , 632.80, 1.33321}, + {1.0, 10, 632.80, 1.33296}, + {1.0, 20, 632.80, 1.33224}, + {1.0, 30, 632.80, 1.33118}, + {1.0, 0 , 1013.98, 1.32626}, + {1.0, 10, 1013.98, 1.32604}, + {1.0, 20, 1013.98, 1.32537}, + {1.0, 30, 1013.98, 1.32437}, + {1.0, 0 , 2325.42, 1.27663}, + {1.0, 10, 2325.42, 1.27663}, + {1.0, 20, 2325.42, 1.27627}, + {1.0, 30, 2325.42, 1.27563}, +}; + +/* Table of the values of solid angle for various values of r0/r and L/r. + * + * See Table 1 in http://www.umich.edu/~ners312/CourseLibrary/SolidAngleOfADiskOffAxis.pdf. */ + +struct solid_angle_results { + double L; + double r0; + double omega; +} solid_angle_results[] = { + {0.5,0.0,3.4732594}, + {0.5,0.2,3.4184435}, + {0.5,0.4,3.2435434}, + {0.5,0.6,2.9185178}, + {0.5,0.8,2.4122535}, + {0.5,1.0,1.7687239}, + {0.5,1.2,1.1661307}, + {0.5,1.4,0.7428889}, + {0.5,1.6,0.4841273}, + {0.5,1.8,0.3287007}, + {0.5,2.0,0.2324189}, + {1.0,0.0,1.8403024}, + {1.0,0.2,1.8070933}, + {1.0,0.4,1.7089486}, + {1.0,0.6,1.5517370}, + {1.0,0.8,1.3488367}, + {1.0,1.0,1.1226876}, + {1.0,1.2,0.9003572}, + {1.0,1.4,0.7039130}, + {1.0,1.6,0.5436956}, + {1.0,1.8,0.4195415}, + {1.0,2.0,0.3257993}, + {1.5,0.0,1.0552591}, + {1.5,0.2,1.0405177}, + {1.5,0.4,0.9975504}, + {1.5,0.6,0.9301028}, + {1.5,0.8,0.8441578}, + {1.5,1.0,0.7472299}, + {1.5,1.2,0.6472056}, + {1.5,1.4,0.5509617}, + {1.5,1.6,0.4632819}, + {1.5,1.8,0.3866757}, + {1.5,2.0,0.3217142}, + {2.0,0.0,0.6633335}, + {2.0,0.2,0.6566352}, + {2.0,0.4,0.6370508}, + {2.0,0.6,0.6060694}, + {2.0,0.8,0.5659755}, + {2.0,1.0,0.5195359}, + {2.0,1.2,0.4696858}, + {2.0,1.4,0.4191714}, + {2.0,1.6,0.3702014}, + {2.0,1.8,0.3243908}, + {2.0,2.0,0.282707} +}; + +int isclose(double a, double b, double rel_tol, double abs_tol) +{ + /* Returns 1 if a and b are "close". This algorithm is taken from Python's + * math.isclose() function. + * + * See https://www.python.org/dev/peps/pep-0485/. */ + return fabs(a-b) <= fmax(rel_tol*fmax(fabs(a),fabs(b)),abs_tol); +} + +int test_muon_get_T(char *err) +{ + /* A very simple test to make sure the energy as a function of distance + * along the track makes sense. Should include more detailed tests later. */ + double T, E, range; + + /* Assume initial kinetic energy is 1 GeV. */ + T = 1000.0; + E = get_T(T,1e-9,1.0); + + /* At the beginning of the track we should have roughly the same energy. */ + if (!isclose(E, T, 1e-5, 0)) { + sprintf(err, "KE = %.5f, but expected %.5f", E, T); + return 1; + } + + /* Assume initial kinetic energy is 1 GeV. */ + T = 1000.0; + range = get_range(T,1.0); + E = get_T(T,range,1.0); + + /* At the end of the track we should have roughly the same energy. */ + if (!isclose(E, 0, 1e-5, 1e-5)) { + sprintf(err, "KE = %.5f, but expected %.5f", E, 0.0); + return 1; + } + + return 0; +} + +int test_muon_get_range(char *err) +{ + /* A very simple test to make sure we read in the PDG table correctly. */ + double value; + + value = get_range(1.0,1.0); + + if (!isclose(value, 1.863e-3, 1e-5, 0)) { + sprintf(err, "range = %.5f, but expected %.5f", value, 1.863e-3); + return 1; + } + + return 0; +} + +int test_muon_get_dEdx(char *err) +{ + /* A very simple test to make sure we read in the PDG table correctly. */ + double value; + + value = get_dEdx(1.0,1.0); + + if (!isclose(value, 6.097, 1e-5, 0)) { + sprintf(err, "dE/dx = %.5f, but expected %.5f", value, 6.097); + return 1; + } + + return 0; +} + +int test_refractive_index(char *err) +{ + /* Tests the get_index() function. */ + int i; + double n; + struct refractive_index_results result; + + for (i = 0; i < sizeof(refractive_index_results)/sizeof(struct refractive_index_results); i++) { + result = refractive_index_results[i]; + n = get_index(result.p, result.wavelength, result.T); + + if (!isclose(n, result.n, 1e-2, 0)) { + sprintf(err, "n = %.5f, but expected %.5f", n, result.n); + return 1; + } + } + + return 0; +} + +int test_solid_angle_approx(char *err) +{ + /* Tests the get_solid_angle_approx() function. */ + int i; + double pmt[3] = {0,0,0}; + double pos[3] = {0,0,1}; + double n[3] = {0,0,1}; + double r = 1.0; + double solid_angle; + + solid_angle = get_solid_angle_approx(pos,pmt,n,r); + + if (!isclose(solid_angle, 2*M_PI*(1-1/sqrt(2)), 1e-2, 0)) { + sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, 2*M_PI*(1-1/sqrt(2))); + return 1; + } + + for (i = 0; i < sizeof(solid_angle_results)/sizeof(struct solid_angle_results); i++) { + pos[0] = solid_angle_results[i].r0*r; + pos[2] = solid_angle_results[i].L*r; + + solid_angle = get_solid_angle_approx(pos,pmt,n,r); + + if (!isclose(solid_angle, solid_angle_results[i].omega, 1e-2, 0)) { + sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, solid_angle_results[i].omega); + return 1; + } + } + + return 0; +} + +int test_solid_angle(char *err) +{ + /* Tests the get_solid_angle() function. */ + int i; + double pmt[3] = {0,0,0}; + double pos[3] = {0,0,1}; + double n[3] = {0,0,1}; + double r = 1.0; + double solid_angle; + + solid_angle = get_solid_angle(pos,pmt,n,r); + + if (!isclose(solid_angle, 2*M_PI*(1-1/sqrt(2)), 1e-9, 0)) { + sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, 2*M_PI*(1-1/sqrt(2))); + return 1; + } + + for (i = 0; i < sizeof(solid_angle_results)/sizeof(struct solid_angle_results); i++) { + pos[0] = solid_angle_results[i].r0*r; + pos[2] = solid_angle_results[i].L*r; + + solid_angle = get_solid_angle(pos,pmt,n,r); + + if (!isclose(solid_angle, solid_angle_results[i].omega, 1e-4, 0)) { + sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, solid_angle_results[i].omega); + return 1; + } + } + + return 0; +} + +static double sno_charge(double q, void *params) +{ + int n = ((int *) params)[0]; + return pq(q,n); +} + +int test_sno_charge_integral(char *err) +{ + /* Test that the single PE charge distribution integrates to one. */ + double result, error; + gsl_function F; + size_t nevals; + gsl_integration_cquad_workspace *w; + int params[1]; + + w = gsl_integration_cquad_workspace_alloc(100); + + F.function = &sno_charge; + params[0] = 1; + F.params = params; + + init_charge(); + + gsl_integration_cquad(&F, -10.0, 1000.0, 0, 1e-9, w, &result, &error, &nevals); + + if (!isclose(result, 1.0, 1e-9, 1e-9)) { + sprintf(err, "integral of single PE charge distribution is %.2f", result); + goto err; + } + + gsl_integration_cquad_workspace_free(w); + + return 0; + +err: + gsl_integration_cquad_workspace_free(w); + return 1; +} + +int test_logsumexp(char *err) +{ + /* Tests the logsumexp() function. */ + int i, j; + double logp[100], mu, result, expected; + + init_genrand(0); + + for (i = 0; i < 100; i++) { + mu = genrand_real2(); + + for (j = 0; j < sizeof(logp)/sizeof(double); j++) { + logp[j] = -mu + j*log(mu) - gsl_sf_lnfact(j); + } + result = logsumexp(logp, sizeof(logp)/sizeof(double)); + + expected = 0.0; + + if (!isclose(result, expected, 1e-9, 1e-9)) { + sprintf(err, "logsumexp(logp) = %.5g, but expected %.5g", result, expected); + return 1; + } + } + + return 0; +} + +struct tests { + testFunction *test; + char *name; +} tests[] = { + {test_solid_angle, "test_solid_angle"}, + {test_solid_angle_approx, "test_solid_angle_approx"}, + {test_refractive_index, "test_refractive_index"}, + {test_muon_get_dEdx, "test_muon_get_dEdx"}, + {test_muon_get_range, "test_muon_get_range"}, + {test_muon_get_T, "test_muon_get_T"}, + {test_logsumexp, "test_logsumexp"}, + {test_sno_charge_integral, "test_sno_charge_integral"} +}; + +int main(int argc, char **argv) +{ + int i; + char err[256]; + int retval = 0; + struct tests test; + + for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { + test = tests[i]; + + if (!test.test(err)) { + printf("[\033[92mok\033[0m] %s\n", test.name); + } else { + printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); + retval = 1; + } + } + + return retval; +} diff --git a/src/vector.c b/src/vector.c new file mode 100644 index 0000000..d0e304a --- /dev/null +++ b/src/vector.c @@ -0,0 +1,26 @@ +#include "vector.h" +#include + +void normalize(double *a) +{ + double c; + c = NORM(a); + DIV(a,c); +} + +void rotate(double *dest, double *v, double *n, double phi) +{ + /* Rotate the vector `v` through an angle `phi` about the axis `n`. */ + double temp[3], cos_theta; + + cos_theta = cos(phi); + + COPY(dest,v); + MUL(dest,cos_theta); + CROSS(temp,n,v); + MUL(temp,sin(phi)); + ADD(dest,dest,temp); + COPY(temp,n); + MUL(temp,DOT(n,v)*(1-cos_theta)); + ADD(dest,dest,temp); +} diff --git a/src/vector.h b/src/vector.h new file mode 100644 index 0000000..7dccc5b --- /dev/null +++ b/src/vector.h @@ -0,0 +1,55 @@ +#ifndef VECTOR_H +#define VECTOR_H + +#include + +#define DOT(a,b) ((a)[0]*(b)[0] + (a)[1]*(b)[1] + (a)[2]*(b)[2]) + +#define NORM(a) (sqrt(DOT((a),(a)))) + +#define COPY(a,b) \ +do { \ + (a)[0] = (b)[0]; \ + (a)[1] = (b)[1]; \ + (a)[2] = (b)[2]; \ +} while (0) + +#define MUL(a,b) \ +do { \ + (a)[0] *= (b); \ + (a)[1] *= (b); \ + (a)[2] *= (b); \ +} while (0) + +#define DIV(a,b) \ +do { \ + (a)[0] /= (b); \ + (a)[1] /= (b); \ + (a)[2] /= (b); \ +} while (0) + +#define ADD(c,a,b) \ +do { \ + (c)[0] = (a)[0] + (b)[0]; \ + (c)[1] = (a)[1] + (b)[1]; \ + (c)[2] = (a)[2] + (b)[2]; \ +} while (0) + +#define SUB(c,a,b) \ +do { \ + (c)[0] = (a)[0] - (b)[0]; \ + (c)[1] = (a)[1] - (b)[1]; \ + (c)[2] = (a)[2] - (b)[2]; \ +} while (0) + +#define CROSS(c,a,b) \ +do { \ + (c)[0] = (a)[1]*(b)[2] - (a)[2]*(b)[1]; \ + (c)[1] = (a)[2]*(b)[0] - (a)[0]*(b)[2]; \ + (c)[2] = (a)[0]*(b)[1] - (a)[1]*(b)[0]; \ +} while (0) + +void normalize(double *a); +void rotate(double *dest, double *v, double *n, double phi); + +#endif diff --git a/src/zdab_utils.c b/src/zdab_utils.c new file mode 100644 index 0000000..d946eef --- /dev/null +++ b/src/zdab_utils.c @@ -0,0 +1,199 @@ +#include "Record_Info.h" +#include +#include "zdab_utils.h" +#include "pack2b.h" +#include /* for size_t */ +#include /* for fprintf() */ + +int isOrphan(aPmtEventRecord *pmtRecord) +{ + /* Returns non-zero if the specified event is an orphan. */ + int i; + + uint32_t *mtc_data = (uint32_t *) &pmtRecord->TriggerCardData; + + for (i = 0; i < 6; ++i) { + if (*mtc_data != 0) return 0; + ++mtc_data; + } + + return 1; +} + +// PH 04/23/98 +// Swap 4-byte integer/floats between native and external format +void swap_int32(int32_t *val_pt, int count) +{ + int32_t *last = val_pt + count; + while (val_pt < last) { + *val_pt = ((*val_pt << 24) & 0xff000000) | + ((*val_pt << 8) & 0x00ff0000) | + ((*val_pt >> 8) & 0x0000ff00) | + ((*val_pt >> 24) & 0x000000ff); + ++val_pt; + } + return; +} + +// Swap 2-byte integers between native and external format +void swap_int16(int16_t *val_pt, int count) +{ + char tmp; + int i; + for (i=0; irun); + unpack((uint8_t *) (data+1), "l",&b->evn); + unpack((uint8_t *) (data+2), "l",&b->dtp); + unpack((uint8_t *) (data+3), "l",&b->jdy); + unpack((uint8_t *) (data+4), "l",&b->ut1); + unpack((uint8_t *) (data+5), "l",&b->ut2); + unpack((uint8_t *) (data+6), "l",&b->dte); + unpack((uint8_t *) (data+7), "l",&b->hmsc); + unpack((uint8_t *) (data+8), "l",&b->gtr1); + unpack((uint8_t *) (data+9), "l",&b->gtr2); + unpack((uint8_t *) (data+10),"l",&b->npm); + unpack((uint8_t *) (data+11),"l",&b->nph); + unpack((uint8_t *) (data+12),"l",&b->sub_run); + unpack((uint8_t *) (data+13),"l",&b->mc_pck); + unpack((uint8_t *) (data+14),"l",&b->rec); + unpack((uint8_t *) (data+15),"l",&b->vpck); + unpack((uint8_t *) (data+16),"l",&b->gtr_id); + unpack((uint8_t *) (data+17),"l",&b->trg_type); + unpack((uint8_t *) (data+18),"l",&b->peak); + unpack((uint8_t *) (data+19),"l",&b->diff); + unpack((uint8_t *) (data+20),"l",&b->integral); + unpack((uint8_t *) (data+21),"l",&b->err); + unpack((uint8_t *) (data+22),"l",&b->data_set); + unpack((uint8_t *) (data+22),"lll",&b->spare1[0], + &b->spare1[1], + &b->spare1[2]); + unpack((uint8_t *) (data+26),"l",&b->ncd_status); + unpack((uint8_t *) (data+27),"l",&b->num_muxg); + unpack((uint8_t *) (data+29),"l",&b->num_mux); + unpack((uint8_t *) (data+29),"l",&b->num_scope); + unpack((uint8_t *) (data+30),"lllll",&b->spare2[0], + &b->spare2[1], + &b->spare2[2], + &b->spare2[3], + &b->spare2[4]); + unpack((uint8_t *) (data+35),"l",&b->ncd_clk_up); + unpack((uint8_t *) (data+36),"l",&b->ncd_clk_lw); + unpack((uint8_t *) (data+37),"l",&b->ncd_reg); + unpack((uint8_t *) (data+38),"l",&b->ncd_gtid); + unpack((uint8_t *) (data+39),"l",&b->ncd_sync); + unpack((uint8_t *) (data+40),"l",&b->spare3[0], + &b->spare3[1], + &b->spare3[2], + &b->spare3[3], + &b->spare3[4], + &b->spare3[5], + &b->spare3[6], + &b->spare3[7], + &b->spare3[8], + &b->spare3[9]); +} + +void unpack_pmt(uint32_t *data, PMTBank *b) +{ + unpack((uint8_t *) data,"l",&b->pn); + unpack((uint8_t *) (data+1),"l",&b->pf); + unpack((uint8_t *) (data+2),"f",&b->pt); + unpack((uint8_t *) (data+3),"f",&b->phl); + unpack((uint8_t *) (data+4),"f",&b->phs); + unpack((uint8_t *) (data+5),"f",&b->plx); + unpack((uint8_t *) (data+6),"f",&b->pt0); + unpack((uint8_t *) (data+7),"l",&b->pif); + unpack((uint8_t *) (data+8),"f",&b->pit); + unpack((uint8_t *) (data+9),"f",&b->pihl); + unpack((uint8_t *) (data+10),"f",&b->pihs); + unpack((uint8_t *) (data+11),"f",&b->pilx); + unpack((uint8_t *) (data+12),"f",&b->pit0); + unpack((uint8_t *) (data+13),"l",&b->cell); + unpack((uint8_t *) (data+14),"l",&b->pin); + unpack((uint8_t *) (data+15),"l",&b->tslh); + unpack((uint8_t *) (data+16),"l",&b->hca); + unpack((uint8_t *) (data+17),"l",&b->eca_val); + unpack((uint8_t *) (data+18),"l",&b->pca_val); + unpack((uint8_t *) (data+19),"l",&b->anxx); + unpack((uint8_t *) (data+20),"l",&b->ept); + unpack((uint8_t *) (data+21),"l",&b->ehl); + unpack((uint8_t *) (data+22),"l",&b->ehs); + unpack((uint8_t *) (data+23),"l",&b->elx); + unpack((uint8_t *) (data+24),"l",&b->pt1); + unpack((uint8_t *) (data+25),"l",&b->ptm); + unpack((uint8_t *) (data+26),"l",&b->ptms); + unpack((uint8_t *) (data+27),"l",&b->qm); + unpack((uint8_t *) (data+28),"l",&b->qms); + unpack((uint8_t *) (data+29),"l",&b->qrc); +} + +int swap_PmtRecord(aPmtEventRecord *aPmtRecord, size_t size) +{ + /* Swap a Pmt Event Record. This function swaps both the Pmt event record + * and the PMT hits and sub fields. Returns -1 if the PMT record has too + * many hits. */ + SWAP_INT32(aPmtRecord, sizeof(aPmtEventRecord)/sizeof(uint32_t)); + + int npmt = aPmtRecord->NPmtHit; + + if (npmt > MAX_NHIT) { + fprintf(stderr, "Read error: Bad ZDAB -- %d pmt hit!", npmt); + return -1; + } else { + if (size < sizeof(aPmtEventRecord) + 3*npmt*4) { + fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, but there are %i PMT hits", size, npmt); + return -1; + } + // swap the hit data + SWAP_INT32(aPmtRecord + 1, 3*npmt); + // swap the sub-fields + uint32_t *sub_header = &aPmtRecord->CalPckType; + while (*sub_header & SUB_NOT_LAST) { + if (size < (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4 + 4) { + fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, " + "but sub-field requires %lu bytes", + size, + (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4 + 4); + return -1; + } + sub_header += (*sub_header & SUB_LENGTH_MASK); + SWAP_INT32(sub_header, 1); // swap the sub-field header + // get number of data words (-1 because we don't want to include header size) + uint32_t data_words = (*sub_header & SUB_LENGTH_MASK) - 1; + if (size < (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4) { + fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, " + "but sub-field requires %lu bytes", + size, + (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4); + return -1; + } + SWAP_INT32(sub_header+1, data_words); + } + } + + return 0; +} + +void swap_TrigRecord(struct TriggerInfo *aTrigRecord) +{ + /* Byte swap a Trigger Record. */ + SWAP_INT32(aTrigRecord, sizeof(struct TriggerInfo)/sizeof(uint32_t)); +} + +void swap_RunRecord(struct RunRecord *aRunRecord) +{ + /* Byte swap a Run Record. */ + SWAP_INT32(aRunRecord, sizeof(struct RunRecord)/sizeof(uint32_t)); +} + + diff --git a/src/zdab_utils.h b/src/zdab_utils.h new file mode 100644 index 0000000..c5fc2c0 --- /dev/null +++ b/src/zdab_utils.h @@ -0,0 +1,202 @@ +#ifndef ZDAB_UTILS +#define ZDAB_UTILS + +#include "Record_Info.h" +#include +#include /* for size_t */ + +// the builder won't put out events with NHIT > 10000 +// (note that these are possible due to hardware problems) +// but XSNOED can write an event with up to 10240 channels +#define MAX_NHIT 10240 + +#ifdef SWAP_BYTES +#define SWAP_INT32(a,b) swap_int32((int32_t *)(a),(b)) +#define SWAP_INT16(a,b) swap_int16((int16_t *)(a),(b)) +#else +#define SWAP_INT32(a,b) +#define SWAP_INT16(a,b) +#endif + +/* Bit masks for the PMT flags field in the PMT bank. */ +#define KPF_DIS 0x00000001 +#define KPF_NOI 0x00000004 +#define KPF_PRP 0x00000008 +#define KPF_AFP 0x00000010 +#define KPF_FECD 0x00000020 +#define KPF_FT_MASK1 0x00000040 +#define KPF_XT 0x04000000 +#define KPF_NO_CAL 0x08000000 +#define KPF_BAD_CAL 0x10000000 + +typedef struct EVBank { + /* Run number. */ + uint32_t run; + /* Event number. */ + uint32_t evn; + /* Data type. */ + uint32_t dtp; + /* Julian date. */ + uint32_t jdy; + /* Universal time (seconds). */ + uint32_t ut1; + /* Universal time (nanoseconds). */ + uint32_t ut2; + /* Date (format: yyyymmdd) */ + uint32_t dte; + /* Time (format: hhmmsscc - cc is centisec). */ + uint32_t hmsc; + /* Global trigger time in nsec (first word). */ + uint32_t gtr1; + /* Second word. */ + uint32_t gtr2; + /* Number of PMTs that fired. */ + uint32_t npm; + /* Integrated charge in the event. */ + uint32_t nph; + /* Sub-run number, or -1 if unknown. Only defined for run number >= 10614. */ + uint32_t sub_run; + /* Packed word. */ + uint32_t mc_pck; + /* ZDAB input/output record type, e.g. PMT, NCD, CMA, RUN, etc. */ + uint32_t rec; + /* ZDAB_PMT format number (x10). */ + uint32_t vpck; + /* Global trigger ID. */ + uint32_t gtr_id; + /* Trigger word. */ + uint32_t trg_type; + /* Digitized peak of analog sum. */ + uint32_t peak; + /* Analog sum derivative. */ + uint32_t diff; + /* Digitized integral of analog sum. */ + uint32_t integral; + /* Trigger error bits plus spares. */ + uint32_t err; + /* Data splitter blindness word. */ + uint32_t data_set; + uint32_t spare1[3]; + uint32_t ncd_status; + /* Number of multiplexer global records. */ + uint32_t num_muxg; + /* Number of multiplexer records. */ + uint32_t num_mux; + /* Number of scope records. */ + uint32_t num_scope; + uint32_t spare2[5]; + /* Upper 24 bits of flock */ + uint32_t ncd_clk_up; + /* Lower clock register (32 bits). */ + uint32_t ncd_clk_lw; + /* Latch register id. */ + uint32_t ncd_reg; + /* GTID. */ + uint32_t ncd_gtid; + /* Sync clear error. */ + uint32_t ncd_sync; + uint32_t spare3[10]; +} EVBank; + +/* PMT Bank struct. This is a struct which mimics the PMT data bank in SNOMAN. + * The fields and comments were taken from the SNOMAN companion. */ +typedef struct PMTBank { + /* Tube number. For FECD, which has no associated tube number, this word is + * a copy of PIN. */ + uint32_t pn; + /* Set of 1-bit flags. All undefined bits are set to zero. The following + * bits are defined: + * + * 0 KPF_DIS Discard hit for all processing including fitting. + * 2 KPF_NOI Noise. + * 3 KPF_PRP Pre-pulse. + * 4 KPF_AFP After-pulse. + * 5 KPF_FECD Front-End Card Data i.e. non-PMT channel. + * Should only be set on the FECD bank. + * 6 KPF_FT_MASK+i Discarded by fitter method i (i = 1,2,..). + * For description of fitter methods see the FTx bank. + * 26 KPF_XT Crosstalk. + * 27 KPF_NO_CAL No calibration. + * 28 KPF_BAD_CAL Bad calibration. */ + uint32_t pf; + /* Time in nano-secs relative to event T0 - see EV. */ + float pt; + /* Integrated charge. */ + float phl; + /* Short-time integrated charge. */ + float phs; + /* Low-gain integrated charge. */ + float plx; + /* Time with the PMT jitter removed. */ + float pt0; + /* Set of n-bit flags for the ith hit in list. All undefined bits are set + * to zero. The following bits are defined: + * + * Bit Field DAQ Meaning + * 0-3 NCELL (CMOS Cell address 0 to 15) + * 4-5 FLAG1 Bit 4 = CGT ES16. + * Bit 5 = CGT ES24. + * 6-9 FLAG2 Bit 6 = Missed Count + * Bit 7 = NC/CC Flag + * Bit 8 = LGISELECT (1=long sample) + * Bit 9 = CMOS ES16. */ + uint32_t pif; + /* Uncalibrated times. */ + float pit; + /* Uncalibrated high-gain, long int. charge. */ + float pihl; + /* Uncalibrated high-gain, short int. charge. */ + float pihs; + /* Uncalibrated log-gain, long int. charge. */ + float pilx; + /* Uncalibrated unjittered time. */ + float pit0; + /* PMT channel cell number. */ + uint32_t cell; + /* CCC DAQ Circuit Number + * = 1024*card + 32*crate + channel. + * Before uncalibration it holds the tube no. */ + uint32_t pin; + /* TSLH of PMT. */ + uint32_t tslh; + /* HCA information. */ + uint32_t hca; + /* ECA validation status word. */ + uint32_t eca_val; + /* PCA validation status word. */ + uint32_t pca_val; + /* ANXX validation status word. */ + uint32_t anxx; + /* ECA calibrated time (nsec). */ + uint32_t ept; + /* ECA calibrated QHL (pedestal subtracted). */ + uint32_t ehl; + /* ECA calibrated QHS (pedestal subtracted). */ + uint32_t ehs; + /* ECA calibrated QLX (pedestal subtracted). */ + uint32_t elx; + /* Non-walk corrected PMT time. */ + uint32_t pt1; + /* Multiphoton PCA time. */ + uint32_t ptm; + /* Multiphoton PCA PMT transit time RMS. */ + uint32_t ptms; + /* Best charge (either QHS or QLX). */ + uint32_t qm; + /* Best charge status word. */ + uint32_t qms; + /* Charge correction for rate-dependent shifting. */ + uint32_t qrc; +} PMTBank; + +void unpack_ev(uint32_t *data, EVBank *b); +void unpack_pmt(uint32_t *data, PMTBank *b); + +int isOrphan(aPmtEventRecord *pmtRecord); +void swap_int32(int32_t *val_pt, int count); +void swap_int16(int16_t *val_pt, int count); +int swap_PmtRecord(aPmtEventRecord *aPmtRecord, size_t size); +void swap_TrigRecord(struct TriggerInfo *aTrigRecord); +void swap_RunRecord(struct RunRecord *aRunRecord); + +#endif diff --git a/src/zebra.c b/src/zebra.c new file mode 100644 index 0000000..4ce51a2 --- /dev/null +++ b/src/zebra.c @@ -0,0 +1,219 @@ +#include "zebra.h" +#include /* for FILE */ +#include /* for size_t */ +#include "pack2b.h" +#include /* for memmove() */ +#include /* for uint8_t, etc. */ +#include /* for strerror(), etc. */ + +char zebra_err[256]; + +zebraFile *zebra_open(const char *filename) +{ + FILE *f = fopen(filename, "r"); + + if (!f) { + sprintf(zebra_err, "failed to open '%s': %s", filename, strerror(errno)); + return NULL; + } + + zebraFile *z = (zebraFile *) malloc(sizeof(zebraFile)); + z->f = f; + z->offset = 0; + z->lr_size = 0; + z->buf = NULL; + z->buf_size = 0; + + return z; +} + +int read_next_physical_record(zebraFile *z) +{ + /* Read the next physical record from the zebra file and append it to the + * buffer. + * + * Returns 0 on success, -1 on error, and 1 on EOF. */ + uint8_t buf[48]; + size_t nbytes; + uint32_t s0, s1, s2, s3, nwphr, nfast; + + nbytes = fread(buf,4,8,z->f); + + if (nbytes == 0) return 1; + + if (nbytes != 8) { + sprintf(zebra_err, "expected %i words but only read %zu", 8, nbytes); + return -1; + } + + s0 = unpacki32(buf); + s1 = unpacki32(buf+4*1); + s2 = unpacki32(buf+4*2); + s3 = unpacki32(buf+4*3); + nwphr = unpacki32(buf+4*4); + nfast = unpacki32(buf+7*4); + + if (nwphr & (ZEBRA_EMERGENCY_STOP | ZEBRA_END_OF_RUN)) + return 1; + + nwphr &= ZEBRA_BLOCK_SIZE_MASK; + + uint32_t words = nwphr*(1 + nfast) - 8; + + if (s0 != ZEBRA_SIG0) { + sprintf(zebra_err, "invalid steering block stamp 0x%08x", s0); + return -1; + } + + if (s1 != ZEBRA_SIG1) { + sprintf(zebra_err, "invalid steering block stamp 0x%08x", s1); + return -1; + } + + if (s2 != ZEBRA_SIG2) { + sprintf(zebra_err, "invalid steering block stamp 0x%08x", s2); + return -1; + } + + if (s3 != ZEBRA_SIG3) { + sprintf(zebra_err, "invalid steering block stamp 0x%08x", s3); + return -1; + } + + z->buf = realloc(z->buf, z->buf_size+words*4); + + nbytes = fread(z->buf+z->buf_size, 4, words, z->f); + + z->buf_size += words*4; + + if (nbytes != words) { + sprintf(zebra_err, "expected %i words but only read %zu", words, nbytes); + return -1; + } + + return 0; +} + +int get_bytes(zebraFile *z, size_t size) +{ + /* Read bytes from the zdab file until there are at least `size` words in + * the buffer. + * + * Returns 0 on success, -1 on error, and 1 on EOF. */ + int rv; + + while ((z->buf_size - z->offset) < size*4) { + rv = read_next_physical_record(z); + + if (rv == -1) { + return -1; + } else if (z->buf_size == 0 && rv == 1) { + /* EOF and there are no bytes left. */ + return 1; + } + } + + return 0; +} + +int read_next_logical_record(zebraFile *z) +{ + /* Read the next logical record into the buffer. + * + * Returns 0 on success, -1 on error, and 1 on EOF. */ + uint32_t size, type, nwtx, nwseg, nwtab, nwuh; + + while (1) { + memmove(z->buf,z->buf+z->offset,z->buf_size-z->offset); + z->buf = realloc(z->buf, z->buf_size-z->offset); + z->buf_size -= z->offset; + z->offset = 0; + + switch (get_bytes(z,1)) { + case 1: + return 1; + case -1: + return -1; + } + size = unpacki32(z->buf+z->offset); + z->offset += 4; + + if (size == 0) continue; + + switch (get_bytes(z,1)) { + case 1: + return 1; + case -1: + return -1; + } + type = unpacki32(z->buf+z->offset); + z->offset += 4; + + switch (type) { + case 5: + case 6: + get_bytes(z,size-1); + z->offset += (size-1)*4; + continue; + case 1: + get_bytes(z,size); + z->offset += size*4; + continue; + } + + z->lr_size = (size + 2)*4; + get_bytes(z,size); + + nwtx = unpacki32(z->buf+z->offset+4*4); + nwseg = unpacki32(z->buf+z->offset+5*4); + nwtab = unpacki32(z->buf+z->offset+6*4); + nwuh = unpacki32(z->buf+z->offset+9*4); + + z->offset += 10*4; + + z->offset += nwtx*4; + z->offset += nwseg*4; + z->offset += nwtab*4; + z->offset += nwuh*4; + + break; + } + + return 0; +} + +int next_bank(zebraFile *z, bank *b) +{ + int rv; + uint32_t io, noff; + + if (z->offset == z->lr_size) { + rv = read_next_logical_record(z); + if (rv) return rv; + } + + io = unpacki32(z->buf+z->offset); + z->offset += 4; + + noff = io & 0xFFFF; + + if (noff > 12) { + z->offset += (noff-12)*4; + } + + unpack(z->buf+z->offset,"lllllllll",&b->next, &b->up, &b->orig, &b->number, &b->name, &b->num_links, &b->num_structural_links, &b->num_data_words, &b->status); + z->offset += 9*4; + + b->data = (uint32_t *) (z->buf+z->offset); + + z->offset += b->num_data_words*4; + + return 0; +} + +void zebra_close(zebraFile *z) +{ + fclose(z->f); + if (z->buf) free(z->buf); + free(z); +} diff --git a/src/zebra.h b/src/zebra.h new file mode 100644 index 0000000..2f24939 --- /dev/null +++ b/src/zebra.h @@ -0,0 +1,48 @@ +#ifndef ZEBRA_H +#define ZEBRA_H + +#include /* for FILE */ +#include /* for size_t */ +#include /* for uint8_t, etc. */ + +extern char zebra_err[256]; + +#define ZEBRA_SIG0 0x0123cdefUL +#define ZEBRA_SIG1 0x80708070UL +#define ZEBRA_SIG2 0x4321abcdUL +#define ZEBRA_SIG3 0x80618061UL + +#define ZEBRA_BLOCK_SIZE_MASK 0x00ffffffUL +#define ZEBRA_EMERGENCY_STOP 0x80000000UL +#define ZEBRA_END_OF_RUN 0x20000000UL +#define ZEBRA_START_OF_RUN 0x40000000UL + +typedef struct bank { + uint32_t next; + uint32_t up; + uint32_t orig; + uint32_t number; + uint32_t name; + uint32_t num_links; + uint32_t num_structural_links; + uint32_t num_data_words; + uint32_t status; + uint32_t *data; +} bank; + +typedef struct zebraFile { + FILE *f; + size_t offset; + size_t lr_size; + uint8_t *buf; + size_t buf_size; +} zebraFile; + +zebraFile *zebra_open(const char *filename); +int read_next_physical_record(zebraFile *z); +int get_bytes(zebraFile *z, size_t size); +int read_next_logical_record(zebraFile *z); +int next_bank(zebraFile *z, bank *b); +void zebra_close(zebraFile *z); + +#endif diff --git a/test-charge.c b/test-charge.c deleted file mode 100644 index 0b73d24..0000000 --- a/test-charge.c +++ /dev/null @@ -1,86 +0,0 @@ -#include -#include "sno_charge.h" -#include -#include -#include /* for errno */ -#include /* for strerror() */ - -void usage(void) -{ - fprintf(stderr,"Usage: ./test-charge\n"); - fprintf(stderr," -n number of PE\n"); - fprintf(stderr," -b number of bins\n"); - fprintf(stderr," --xmin Lowest value of charge\n"); - fprintf(stderr," --xmax Highest value of charge\n"); - fprintf(stderr," -h Display this help message\n"); - exit(1); -} - -int main(int argc, char **argv) -{ - size_t i, j, nq, n; - double *x; - double qlo, qhi; - - n = 10; - nq = 1000; - qlo = -1.0; - qhi = 1.0; - - for (i = 1; i < argc; i++) { - if (!strncmp(argv[i], "--", 2)) { - if (!strcmp(argv[i]+2,"xmin")) { - qlo = strtod(argv[++i],NULL); - continue; - } else if (!strcmp(argv[i]+2,"xmax")) { - qhi = strtod(argv[++i],NULL); - continue; - } - } else if (argv[i][0] == '-') { - switch (argv[i][1]) { - case 'n': - n = atoi(argv[++i]); - break; - case 'b': - nq = atoi(argv[++i]); - break; - case 'h': - usage(); - default: - fprintf(stderr, "unrecognized option '%s'\n", argv[i]); - exit(1); - } - } - } - - init_charge(); - - x = malloc(nq*sizeof(double)); - - for (i = 0; i < nq; i++) { - x[i] = qlo + (qhi-qlo)*i/(nq-1); - } - - FILE *pipe = popen("graph -T X --bitmap-size 2000x2000 -X 'Charge (PE)' -Y Probability", "w"); - - if (!pipe) { - fprintf(stderr, "error running graph command: %s\n", strerror(errno)); - exit(1); - } - - for (i = 1; i <= n; i++) { - for (j = 0; j < nq; j++) { - fprintf(pipe, "%.10f %.10f\n", x[j], pq(x[j],i)); - } - fprintf(pipe, "\n\n"); - } - - if (pclose(pipe)) { - fprintf(stderr, "error closing graph command: %s\n", strerror(errno)); - exit(1); - } - - free(x); - - return 0; -} diff --git a/test-likelihood.c b/test-likelihood.c deleted file mode 100644 index f0266b9..0000000 --- a/test-likelihood.c +++ /dev/null @@ -1,193 +0,0 @@ -#include "muon.h" -#include "random.h" -#include "optics.h" -#include "quantum_efficiency.h" -#include -#include -#include "sno.h" -#include "pdg.h" -#include "vector.h" -#include "solid_angle.h" -#include /* for atoi() and strtod() */ -#include /* for exit() */ -#include "scattering.h" -#include /* for errno */ -#include /* for strerror() */ - -void simulate_cos_theta_distribution(int N, gsl_histogram *h, double T, double theta0) -{ - /* Simulate the cos(theta) distribution around the original track direction - * for a muon with kinetic energy T. The angle from the original track - * distribution is simulated as a gaussian distribution with standard - * deviation `theta0`. */ - int i; - double theta, phi, wavelength, u, qe, index, cerenkov_angle, dir[3], n[3], dest[3], E, p, beta, cos_theta; - - i = 0; - while (i < N) { - /* Generate a random wavelength in the range 300-600 nm from the - * distribution of Cerenkov light. */ - u = genrand_real2(); - wavelength = 300.0*600.0/(u*(300.0-600.0) + 600.0); - - qe = get_quantum_efficiency(wavelength); - - /* Check to see if the photon was detected. */ - if (genrand_real2() > qe) continue; - - index = get_index(HEAVY_WATER_DENSITY, wavelength, 10.0); - - /* Calculate total energy */ - E = T + MUON_MASS; - p = sqrt(E*E - MUON_MASS*MUON_MASS); - beta = p/E; - - cerenkov_angle = acos(1/(index*beta)); - - /* Assuming the muon track is dominated by small angle scattering, the - * angular distribution will be a Gaussian centered around 0 with a - * standard deviation of `theta0`. Here, we draw a random angle from - * this distribution. */ - theta = randn()*theta0; - - n[0] = sin(theta); - n[1] = 0; - n[2] = cos(theta); - - /* To compute the direction of the photon, we start with a vector in - * the x-z plane which is offset from the track direction by the - * Cerenkov angle and then rotate it around the track direction by a - * random angle `phi`. */ - dir[0] = sin(cerenkov_angle + theta); - dir[1] = 0; - dir[2] = cos(cerenkov_angle + theta); - - phi = genrand_real2()*2*M_PI; - - rotate(dest,dir,n,phi); - - cos_theta = dest[2]; - - gsl_histogram_increment(h, cos_theta); - - i += 1; - } -} - -void usage(void) -{ - fprintf(stderr,"Usage: ./test-likelihood [options]\n"); - fprintf(stderr," -n number of events\n"); - fprintf(stderr," -T kinetic energy of muon (MeV)\n"); - fprintf(stderr," -t standard deviation of angular distribution\n"); - fprintf(stderr," -b number of bins\n"); - fprintf(stderr," --xmin lowest value of cos(theta)\n"); - fprintf(stderr," --xmax highest value of cos(theta)\n"); - fprintf(stderr," -h display this help message\n"); - exit(1); -} - -int main(int argc, char **argv) -{ - size_t i, N, bins; - double T, theta0; - double E, p, beta; - double xmin, xmax; - - N = 100000; - bins = 1000; - T = 1000.0; - theta0 = 0.1; - xmin = -1.0; - xmax = 1.0; - - for (i = 1; i < argc; i++) { - if (!strncmp(argv[i], "--", 2)) { - if (!strcmp(argv[i]+2,"xmin")) { - xmin = strtod(argv[++i],NULL); - continue; - } else if (!strcmp(argv[i]+2,"xmax")) { - xmax = strtod(argv[++i],NULL); - continue; - } - } else if (argv[i][0] == '-') { - switch (argv[i][1]) { - case 'n': - N = atoi(argv[++i]); - break; - case 'b': - bins = atoi(argv[++i]); - break; - case 'T': - T = strtod(argv[++i],NULL); - break; - case 't': - theta0 = strtod(argv[++i],NULL); - break; - case 'h': - usage(); - default: - fprintf(stderr, "unrecognized option '%s'\n", argv[i]); - exit(1); - } - } - } - - gsl_histogram *h = gsl_histogram_alloc(bins); - gsl_histogram_set_ranges_uniform(h,xmin,xmax); - - simulate_cos_theta_distribution(N, h, T, theta0); - - gsl_histogram_scale(h, 1.0/gsl_histogram_sum(h)); - - FILE *pipe = popen("graph -T X --bitmap-size 2000x2000 -X 'Cos(theta)' -Y Probability", "w"); - - if (!pipe) { - fprintf(stderr, "error running graph command: %s\n", strerror(errno)); - exit(1); - } - - for (i = 0; i < h->n; i++) { - fprintf(pipe, "%g %g\n", h->range[i], h->bin[i]); - fprintf(pipe, "%g %g\n", h->range[i+1], h->bin[i]); - } - fprintf(pipe, "\n\n"); - - gsl_histogram_reset(h); - - init_interpolation(); - - /* Calculate total energy */ - E = T + MUON_MASS; - p = sqrt(E*E - MUON_MASS*MUON_MASS); - beta = p/E; - - for (i = 0; i < bins; i++) { - double lo, hi; - gsl_histogram_get_range(h, i, &lo, &hi); - double cos_theta = (lo+hi)/2.0; - h->bin[i] = get_probability(beta, cos_theta, theta0); - } - - free_interpolation(); - - printf("\n\n"); - - gsl_histogram_scale(h, 1.0/gsl_histogram_sum(h)); - - for (i = 0; i < h->n; i++) { - fprintf(pipe, "%g %g\n", h->range[i], h->bin[i]); - fprintf(pipe, "%g %g\n", h->range[i+1], h->bin[i]); - } - fprintf(pipe, "\n\n"); - - if (pclose(pipe)) { - fprintf(stderr, "error closing graph command: %s\n", strerror(errno)); - exit(1); - } - - gsl_histogram_free(h); - - return 0; -} - diff --git a/test-vector.c b/test-vector.c deleted file mode 100644 index 44b4a71..0000000 --- a/test-vector.c +++ /dev/null @@ -1,319 +0,0 @@ -#include -#include -#include "vector.h" -#include "mt19937ar.h" - -typedef int testFunction(char *err); - -int isclose(double a, double b, double rel_tol, double abs_tol) -{ - /* Returns 1 if a and b are "close". This algorithm is taken from Python's - * math.isclose() function. - * - * See https://www.python.org/dev/peps/pep-0485/. */ - return fabs(a-b) <= fmax(rel_tol*fmax(fabs(a),fabs(b)),abs_tol); -} - -int test_dot(char *err) -{ - int i; - double a[3], b[3], c, expected; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - c = DOT(a,b); - - expected = a[0]*b[0] + a[1]*b[1] + a[2]*b[2]; - - if (!isclose(c, expected, 1e-9, 0)) { - sprintf(err, "a \\dot b = %.5f, but expected %.5f", c, expected); - return 1; - } - } - - return 0; -} - -int test_norm(char *err) -{ - int i; - double a[3], c, expected; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - c = NORM(a); - - expected = sqrt(a[0]*a[0] + a[1]*a[1] + a[2]*a[2]); - - if (!isclose(c, expected, 1e-9, 0)) { - sprintf(err, "norm(a) = %.5f, but expected %.5f", c, expected); - return 1; - } - } - - return 0; -} - -int test_copy(char *err) -{ - int i, j; - double a[3], b[3]; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - COPY(a,b); - - for (j = 0; j < 3; j++) { - if (!isclose(a[j], b[j], 1e-9, 0)) { - sprintf(err, "a[%i] = %.5f, but expected %.5f", j, a[j], b[j]); - return 1; - } - } - } - - return 0; -} - -int test_div(char *err) -{ - int i, j; - double a[3], b[3], c; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - c = genrand_real2(); - - COPY(a,b); - DIV(a,c); - - for (j = 0; j < 3; j++) { - if (!isclose(a[j], b[j]/c, 1e-9, 0)) { - sprintf(err, "a[%i] = %.5f, but expected %.5f", j, a[j], b[j]/c); - return 1; - } - } - } - - return 0; -} - -int test_add(char *err) -{ - int i; - double a[3], b[3], c[3]; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - ADD(c,a,b); - - if (!isclose(c[0], a[0]+b[0], 1e-9, 0)) { - sprintf(err, "a[0] + b[0] = %.5f, but expected %.5f", c[0], a[0]+b[0]); - return 1; - } - - if (!isclose(c[1], a[1]+b[1], 1e-9, 0)) { - sprintf(err, "a[1] + b[1] = %.5f, but expected %.5f", c[1], a[1]+b[1]); - return 1; - } - - if (!isclose(c[2], a[2]+b[2], 1e-9, 0)) { - sprintf(err, "a[2] + b[2] = %.5f, but expected %.5f", c[2], a[2]+b[2]); - return 1; - } - } - - return 0; -} - -int test_sub(char *err) -{ - int i; - double a[3], b[3], c[3]; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - SUB(c,a,b); - - if (!isclose(c[0], a[0]-b[0], 1e-9, 0)) { - sprintf(err, "a[0] - b[0] = %.5f, but expected %.5f", c[0], a[0]-b[0]); - return 1; - } - - if (!isclose(c[1], a[1]-b[1], 1e-9, 0)) { - sprintf(err, "a[1] - b[1] = %.5f, but expected %.5f", c[1], a[1]-b[1]); - return 1; - } - - if (!isclose(c[2], a[2]-b[2], 1e-9, 0)) { - sprintf(err, "a[2] - b[2] = %.5f, but expected %.5f", c[2], a[2]-b[2]); - return 1; - } - } - - return 0; -} - -int test_normalize(char *err) -{ - int i; - double a[3], c; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - normalize(a); - - c = NORM(a); - - if (!isclose(c, 1.0, 1e-9, 0)) { - sprintf(err, "norm(a) = %.5f, but expected %.5f", c, 1.0); - return 1; - } - } - - return 0; -} - -int test_cross_product(char *err) -{ - int i, j; - double a[3], b[3], c[3], expected[3]; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - a[0] = genrand_real2(); - a[1] = genrand_real2(); - a[2] = genrand_real2(); - - b[0] = genrand_real2(); - b[1] = genrand_real2(); - b[2] = genrand_real2(); - - CROSS(c,a,b); - - expected[0] = a[1]*b[2] - a[2]*b[1]; - expected[1] = a[2]*b[0] - a[0]*b[2]; - expected[2] = a[0]*b[1] - a[1]*b[0]; - - for (j = 0; j < 3; j++) { - if (!isclose(c[j], expected[j], 1e-9, 0)) { - sprintf(err, "(a x b)[%i] = %.5f, but expected %.5f", j, c[j], expected[j]); - return 1; - } - } - } - - return 0; -} - -int test_rotate(char *err) -{ - int i; - double a[3], b[3], c[3], expected[3]; - - a[0] = 1; - a[1] = 0; - a[2] = 0; - - b[0] = 0; - b[1] = 0; - b[2] = 1; - - rotate(c,a,b,M_PI/2); - - expected[0] = 0; - expected[1] = 1; - expected[2] = 0; - - for (i = 0; i < 3; i++) { - if (!isclose(c[i], expected[i], 1e-9, 1e-9)) { - sprintf(err, "rotate(a,b,pi/2)[%i] = %.5f, but expected %.5f", i, c[i], expected[i]); - return 1; - } - } - - return 0; -} - -struct tests { - testFunction *test; - char *name; -} tests[] = { - {test_dot, "test_dot"}, - {test_norm, "test_norm"}, - {test_copy, "test_copy"}, - {test_div, "test_div"}, - {test_add, "test_add"}, - {test_sub, "test_sub"}, - {test_normalize, "test_normalize"}, - {test_cross_product, "test_cross_product"}, - {test_rotate, "test_rotate"} -}; - -int main(int argc, char **argv) -{ - int i; - char err[256]; - int retval = 0; - struct tests test; - - for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { - test = tests[i]; - - if (!test.test(err)) { - printf("[\033[92mok\033[0m] %s\n", test.name); - } else { - printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); - retval = 1; - } - } - - return retval; -} diff --git a/test-zebra.c b/test-zebra.c deleted file mode 100644 index 1d9b203..0000000 --- a/test-zebra.c +++ /dev/null @@ -1,69 +0,0 @@ -#include "zebra.h" -#include -#include "Record_Info.h" - -typedef int testFunction(char *err); - -int test_zdab(char *err) -{ - int rv; - bank b; - int nzdabs = 0; - - zebraFile *z = zebra_open("Muons.zdab"); - - while (1) { - rv = next_bank(z, &b); - - if (rv == -1) { - sprintf(err, "error getting bank: %s\n", zebra_err); - goto err; - } else if (rv == 1) { - break; - } - - if (b.name == ZDAB_RECORD) nzdabs += 1; - } - - if (nzdabs != 5) { - sprintf(err, "expected %i zdab records but got %i", 5, nzdabs); - goto err; - } - - zebra_close(z); - - return 0; - -err: - zebra_close(z); - - return -1; -} - -struct tests { - testFunction *test; - char *name; -} tests[] = { - {test_zdab, "test_zdab"} -}; - -int main(int argc, char **argv) -{ - int i; - char err[256]; - int retval = 0; - struct tests test; - - for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { - test = tests[i]; - - if (!test.test(err)) { - printf("[\033[92mok\033[0m] %s\n", test.name); - } else { - printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); - retval = 1; - } - } - - return retval; -} diff --git a/test.c b/test.c deleted file mode 100644 index 747e664..0000000 --- a/test.c +++ /dev/null @@ -1,360 +0,0 @@ -#include "solid_angle.h" -#include -#include -#include "optics.h" -#include "muon.h" -#include "mt19937ar.h" -#include -#include "misc.h" -#include "sno_charge.h" -#include - -typedef int testFunction(char *err); - -/* Table of some of the tabulated values of the refractive index of water as a - * function of wavelength and temperature. In all cases, I just used the values - * for standard atmospheric pressure and assume this corresponds approximately - * to a density of 1000 kg/m^3. - * - * See Table 7 in https://aip.scitation.org/doi/pdf/10.1063/1.555859. */ - -struct refractive_index_results { - double p; - double T; - double wavelength; - double n; -} refractive_index_results[] = { - {1.0, 0 , 226.50, 1.39468}, - {1.0, 10, 226.50, 1.39439}, - {1.0, 20, 226.50, 1.39353}, - {1.0, 30, 226.50, 1.39224}, - {1.0, 0 , 404.41, 1.34431}, - {1.0, 10, 404.41, 1.34404}, - {1.0, 20, 404.41, 1.34329}, - {1.0, 30, 404.41, 1.34218}, - {1.0, 0 , 589.00, 1.33447}, - {1.0, 10, 589.00, 1.33422}, - {1.0, 20, 589.00, 1.33350}, - {1.0, 30, 589.00, 1.33243}, - {1.0, 0 , 632.80, 1.33321}, - {1.0, 10, 632.80, 1.33296}, - {1.0, 20, 632.80, 1.33224}, - {1.0, 30, 632.80, 1.33118}, - {1.0, 0 , 1013.98, 1.32626}, - {1.0, 10, 1013.98, 1.32604}, - {1.0, 20, 1013.98, 1.32537}, - {1.0, 30, 1013.98, 1.32437}, - {1.0, 0 , 2325.42, 1.27663}, - {1.0, 10, 2325.42, 1.27663}, - {1.0, 20, 2325.42, 1.27627}, - {1.0, 30, 2325.42, 1.27563}, -}; - -/* Table of the values of solid angle for various values of r0/r and L/r. - * - * See Table 1 in http://www.umich.edu/~ners312/CourseLibrary/SolidAngleOfADiskOffAxis.pdf. */ - -struct solid_angle_results { - double L; - double r0; - double omega; -} solid_angle_results[] = { - {0.5,0.0,3.4732594}, - {0.5,0.2,3.4184435}, - {0.5,0.4,3.2435434}, - {0.5,0.6,2.9185178}, - {0.5,0.8,2.4122535}, - {0.5,1.0,1.7687239}, - {0.5,1.2,1.1661307}, - {0.5,1.4,0.7428889}, - {0.5,1.6,0.4841273}, - {0.5,1.8,0.3287007}, - {0.5,2.0,0.2324189}, - {1.0,0.0,1.8403024}, - {1.0,0.2,1.8070933}, - {1.0,0.4,1.7089486}, - {1.0,0.6,1.5517370}, - {1.0,0.8,1.3488367}, - {1.0,1.0,1.1226876}, - {1.0,1.2,0.9003572}, - {1.0,1.4,0.7039130}, - {1.0,1.6,0.5436956}, - {1.0,1.8,0.4195415}, - {1.0,2.0,0.3257993}, - {1.5,0.0,1.0552591}, - {1.5,0.2,1.0405177}, - {1.5,0.4,0.9975504}, - {1.5,0.6,0.9301028}, - {1.5,0.8,0.8441578}, - {1.5,1.0,0.7472299}, - {1.5,1.2,0.6472056}, - {1.5,1.4,0.5509617}, - {1.5,1.6,0.4632819}, - {1.5,1.8,0.3866757}, - {1.5,2.0,0.3217142}, - {2.0,0.0,0.6633335}, - {2.0,0.2,0.6566352}, - {2.0,0.4,0.6370508}, - {2.0,0.6,0.6060694}, - {2.0,0.8,0.5659755}, - {2.0,1.0,0.5195359}, - {2.0,1.2,0.4696858}, - {2.0,1.4,0.4191714}, - {2.0,1.6,0.3702014}, - {2.0,1.8,0.3243908}, - {2.0,2.0,0.282707} -}; - -int isclose(double a, double b, double rel_tol, double abs_tol) -{ - /* Returns 1 if a and b are "close". This algorithm is taken from Python's - * math.isclose() function. - * - * See https://www.python.org/dev/peps/pep-0485/. */ - return fabs(a-b) <= fmax(rel_tol*fmax(fabs(a),fabs(b)),abs_tol); -} - -int test_muon_get_T(char *err) -{ - /* A very simple test to make sure the energy as a function of distance - * along the track makes sense. Should include more detailed tests later. */ - double T, E, range; - - /* Assume initial kinetic energy is 1 GeV. */ - T = 1000.0; - E = get_T(T,1e-9,1.0); - - /* At the beginning of the track we should have roughly the same energy. */ - if (!isclose(E, T, 1e-5, 0)) { - sprintf(err, "KE = %.5f, but expected %.5f", E, T); - return 1; - } - - /* Assume initial kinetic energy is 1 GeV. */ - T = 1000.0; - range = get_range(T,1.0); - E = get_T(T,range,1.0); - - /* At the end of the track we should have roughly the same energy. */ - if (!isclose(E, 0, 1e-5, 1e-5)) { - sprintf(err, "KE = %.5f, but expected %.5f", E, 0.0); - return 1; - } - - return 0; -} - -int test_muon_get_range(char *err) -{ - /* A very simple test to make sure we read in the PDG table correctly. */ - double value; - - value = get_range(1.0,1.0); - - if (!isclose(value, 1.863e-3, 1e-5, 0)) { - sprintf(err, "range = %.5f, but expected %.5f", value, 1.863e-3); - return 1; - } - - return 0; -} - -int test_muon_get_dEdx(char *err) -{ - /* A very simple test to make sure we read in the PDG table correctly. */ - double value; - - value = get_dEdx(1.0,1.0); - - if (!isclose(value, 6.097, 1e-5, 0)) { - sprintf(err, "dE/dx = %.5f, but expected %.5f", value, 6.097); - return 1; - } - - return 0; -} - -int test_refractive_index(char *err) -{ - /* Tests the get_index() function. */ - int i; - double n; - struct refractive_index_results result; - - for (i = 0; i < sizeof(refractive_index_results)/sizeof(struct refractive_index_results); i++) { - result = refractive_index_results[i]; - n = get_index(result.p, result.wavelength, result.T); - - if (!isclose(n, result.n, 1e-2, 0)) { - sprintf(err, "n = %.5f, but expected %.5f", n, result.n); - return 1; - } - } - - return 0; -} - -int test_solid_angle_approx(char *err) -{ - /* Tests the get_solid_angle_approx() function. */ - int i; - double pmt[3] = {0,0,0}; - double pos[3] = {0,0,1}; - double n[3] = {0,0,1}; - double r = 1.0; - double solid_angle; - - solid_angle = get_solid_angle_approx(pos,pmt,n,r); - - if (!isclose(solid_angle, 2*M_PI*(1-1/sqrt(2)), 1e-2, 0)) { - sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, 2*M_PI*(1-1/sqrt(2))); - return 1; - } - - for (i = 0; i < sizeof(solid_angle_results)/sizeof(struct solid_angle_results); i++) { - pos[0] = solid_angle_results[i].r0*r; - pos[2] = solid_angle_results[i].L*r; - - solid_angle = get_solid_angle_approx(pos,pmt,n,r); - - if (!isclose(solid_angle, solid_angle_results[i].omega, 1e-2, 0)) { - sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, solid_angle_results[i].omega); - return 1; - } - } - - return 0; -} - -int test_solid_angle(char *err) -{ - /* Tests the get_solid_angle() function. */ - int i; - double pmt[3] = {0,0,0}; - double pos[3] = {0,0,1}; - double n[3] = {0,0,1}; - double r = 1.0; - double solid_angle; - - solid_angle = get_solid_angle(pos,pmt,n,r); - - if (!isclose(solid_angle, 2*M_PI*(1-1/sqrt(2)), 1e-9, 0)) { - sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, 2*M_PI*(1-1/sqrt(2))); - return 1; - } - - for (i = 0; i < sizeof(solid_angle_results)/sizeof(struct solid_angle_results); i++) { - pos[0] = solid_angle_results[i].r0*r; - pos[2] = solid_angle_results[i].L*r; - - solid_angle = get_solid_angle(pos,pmt,n,r); - - if (!isclose(solid_angle, solid_angle_results[i].omega, 1e-4, 0)) { - sprintf(err, "solid angle = %.5f, but expected %.5f", solid_angle, solid_angle_results[i].omega); - return 1; - } - } - - return 0; -} - -static double sno_charge(double q, void *params) -{ - int n = ((int *) params)[0]; - return pq(q,n); -} - -int test_sno_charge_integral(char *err) -{ - /* Test that the single PE charge distribution integrates to one. */ - double result, error; - gsl_function F; - size_t nevals; - gsl_integration_cquad_workspace *w; - int params[1]; - - w = gsl_integration_cquad_workspace_alloc(100); - - F.function = &sno_charge; - params[0] = 1; - F.params = params; - - init_charge(); - - gsl_integration_cquad(&F, -10.0, 1000.0, 0, 1e-9, w, &result, &error, &nevals); - - if (!isclose(result, 1.0, 1e-9, 1e-9)) { - sprintf(err, "integral of single PE charge distribution is %.2f", result); - goto err; - } - - gsl_integration_cquad_workspace_free(w); - - return 0; - -err: - gsl_integration_cquad_workspace_free(w); - return 1; -} - -int test_logsumexp(char *err) -{ - /* Tests the logsumexp() function. */ - int i, j; - double logp[100], mu, result, expected; - - init_genrand(0); - - for (i = 0; i < 100; i++) { - mu = genrand_real2(); - - for (j = 0; j < sizeof(logp)/sizeof(double); j++) { - logp[j] = -mu + j*log(mu) - gsl_sf_lnfact(j); - } - result = logsumexp(logp, sizeof(logp)/sizeof(double)); - - expected = 0.0; - - if (!isclose(result, expected, 1e-9, 1e-9)) { - sprintf(err, "logsumexp(logp) = %.5g, but expected %.5g", result, expected); - return 1; - } - } - - return 0; -} - -struct tests { - testFunction *test; - char *name; -} tests[] = { - {test_solid_angle, "test_solid_angle"}, - {test_solid_angle_approx, "test_solid_angle_approx"}, - {test_refractive_index, "test_refractive_index"}, - {test_muon_get_dEdx, "test_muon_get_dEdx"}, - {test_muon_get_range, "test_muon_get_range"}, - {test_muon_get_T, "test_muon_get_T"}, - {test_logsumexp, "test_logsumexp"}, - {test_sno_charge_integral, "test_sno_charge_integral"} -}; - -int main(int argc, char **argv) -{ - int i; - char err[256]; - int retval = 0; - struct tests test; - - for (i = 0; i < sizeof(tests)/sizeof(struct tests); i++) { - test = tests[i]; - - if (!test.test(err)) { - printf("[\033[92mok\033[0m] %s\n", test.name); - } else { - printf("[\033[91mfail\033[0m] %s: %s\n", test.name, err); - retval = 1; - } - } - - return retval; -} diff --git a/vector.c b/vector.c deleted file mode 100644 index d0e304a..0000000 --- a/vector.c +++ /dev/null @@ -1,26 +0,0 @@ -#include "vector.h" -#include - -void normalize(double *a) -{ - double c; - c = NORM(a); - DIV(a,c); -} - -void rotate(double *dest, double *v, double *n, double phi) -{ - /* Rotate the vector `v` through an angle `phi` about the axis `n`. */ - double temp[3], cos_theta; - - cos_theta = cos(phi); - - COPY(dest,v); - MUL(dest,cos_theta); - CROSS(temp,n,v); - MUL(temp,sin(phi)); - ADD(dest,dest,temp); - COPY(temp,n); - MUL(temp,DOT(n,v)*(1-cos_theta)); - ADD(dest,dest,temp); -} diff --git a/vector.h b/vector.h deleted file mode 100644 index 7dccc5b..0000000 --- a/vector.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef VECTOR_H -#define VECTOR_H - -#include - -#define DOT(a,b) ((a)[0]*(b)[0] + (a)[1]*(b)[1] + (a)[2]*(b)[2]) - -#define NORM(a) (sqrt(DOT((a),(a)))) - -#define COPY(a,b) \ -do { \ - (a)[0] = (b)[0]; \ - (a)[1] = (b)[1]; \ - (a)[2] = (b)[2]; \ -} while (0) - -#define MUL(a,b) \ -do { \ - (a)[0] *= (b); \ - (a)[1] *= (b); \ - (a)[2] *= (b); \ -} while (0) - -#define DIV(a,b) \ -do { \ - (a)[0] /= (b); \ - (a)[1] /= (b); \ - (a)[2] /= (b); \ -} while (0) - -#define ADD(c,a,b) \ -do { \ - (c)[0] = (a)[0] + (b)[0]; \ - (c)[1] = (a)[1] + (b)[1]; \ - (c)[2] = (a)[2] + (b)[2]; \ -} while (0) - -#define SUB(c,a,b) \ -do { \ - (c)[0] = (a)[0] - (b)[0]; \ - (c)[1] = (a)[1] - (b)[1]; \ - (c)[2] = (a)[2] - (b)[2]; \ -} while (0) - -#define CROSS(c,a,b) \ -do { \ - (c)[0] = (a)[1]*(b)[2] - (a)[2]*(b)[1]; \ - (c)[1] = (a)[2]*(b)[0] - (a)[0]*(b)[2]; \ - (c)[2] = (a)[0]*(b)[1] - (a)[1]*(b)[0]; \ -} while (0) - -void normalize(double *a); -void rotate(double *dest, double *v, double *n, double phi); - -#endif diff --git a/zdab_utils.c b/zdab_utils.c deleted file mode 100644 index d946eef..0000000 --- a/zdab_utils.c +++ /dev/null @@ -1,199 +0,0 @@ -#include "Record_Info.h" -#include -#include "zdab_utils.h" -#include "pack2b.h" -#include /* for size_t */ -#include /* for fprintf() */ - -int isOrphan(aPmtEventRecord *pmtRecord) -{ - /* Returns non-zero if the specified event is an orphan. */ - int i; - - uint32_t *mtc_data = (uint32_t *) &pmtRecord->TriggerCardData; - - for (i = 0; i < 6; ++i) { - if (*mtc_data != 0) return 0; - ++mtc_data; - } - - return 1; -} - -// PH 04/23/98 -// Swap 4-byte integer/floats between native and external format -void swap_int32(int32_t *val_pt, int count) -{ - int32_t *last = val_pt + count; - while (val_pt < last) { - *val_pt = ((*val_pt << 24) & 0xff000000) | - ((*val_pt << 8) & 0x00ff0000) | - ((*val_pt >> 8) & 0x0000ff00) | - ((*val_pt >> 24) & 0x000000ff); - ++val_pt; - } - return; -} - -// Swap 2-byte integers between native and external format -void swap_int16(int16_t *val_pt, int count) -{ - char tmp; - int i; - for (i=0; irun); - unpack((uint8_t *) (data+1), "l",&b->evn); - unpack((uint8_t *) (data+2), "l",&b->dtp); - unpack((uint8_t *) (data+3), "l",&b->jdy); - unpack((uint8_t *) (data+4), "l",&b->ut1); - unpack((uint8_t *) (data+5), "l",&b->ut2); - unpack((uint8_t *) (data+6), "l",&b->dte); - unpack((uint8_t *) (data+7), "l",&b->hmsc); - unpack((uint8_t *) (data+8), "l",&b->gtr1); - unpack((uint8_t *) (data+9), "l",&b->gtr2); - unpack((uint8_t *) (data+10),"l",&b->npm); - unpack((uint8_t *) (data+11),"l",&b->nph); - unpack((uint8_t *) (data+12),"l",&b->sub_run); - unpack((uint8_t *) (data+13),"l",&b->mc_pck); - unpack((uint8_t *) (data+14),"l",&b->rec); - unpack((uint8_t *) (data+15),"l",&b->vpck); - unpack((uint8_t *) (data+16),"l",&b->gtr_id); - unpack((uint8_t *) (data+17),"l",&b->trg_type); - unpack((uint8_t *) (data+18),"l",&b->peak); - unpack((uint8_t *) (data+19),"l",&b->diff); - unpack((uint8_t *) (data+20),"l",&b->integral); - unpack((uint8_t *) (data+21),"l",&b->err); - unpack((uint8_t *) (data+22),"l",&b->data_set); - unpack((uint8_t *) (data+22),"lll",&b->spare1[0], - &b->spare1[1], - &b->spare1[2]); - unpack((uint8_t *) (data+26),"l",&b->ncd_status); - unpack((uint8_t *) (data+27),"l",&b->num_muxg); - unpack((uint8_t *) (data+29),"l",&b->num_mux); - unpack((uint8_t *) (data+29),"l",&b->num_scope); - unpack((uint8_t *) (data+30),"lllll",&b->spare2[0], - &b->spare2[1], - &b->spare2[2], - &b->spare2[3], - &b->spare2[4]); - unpack((uint8_t *) (data+35),"l",&b->ncd_clk_up); - unpack((uint8_t *) (data+36),"l",&b->ncd_clk_lw); - unpack((uint8_t *) (data+37),"l",&b->ncd_reg); - unpack((uint8_t *) (data+38),"l",&b->ncd_gtid); - unpack((uint8_t *) (data+39),"l",&b->ncd_sync); - unpack((uint8_t *) (data+40),"l",&b->spare3[0], - &b->spare3[1], - &b->spare3[2], - &b->spare3[3], - &b->spare3[4], - &b->spare3[5], - &b->spare3[6], - &b->spare3[7], - &b->spare3[8], - &b->spare3[9]); -} - -void unpack_pmt(uint32_t *data, PMTBank *b) -{ - unpack((uint8_t *) data,"l",&b->pn); - unpack((uint8_t *) (data+1),"l",&b->pf); - unpack((uint8_t *) (data+2),"f",&b->pt); - unpack((uint8_t *) (data+3),"f",&b->phl); - unpack((uint8_t *) (data+4),"f",&b->phs); - unpack((uint8_t *) (data+5),"f",&b->plx); - unpack((uint8_t *) (data+6),"f",&b->pt0); - unpack((uint8_t *) (data+7),"l",&b->pif); - unpack((uint8_t *) (data+8),"f",&b->pit); - unpack((uint8_t *) (data+9),"f",&b->pihl); - unpack((uint8_t *) (data+10),"f",&b->pihs); - unpack((uint8_t *) (data+11),"f",&b->pilx); - unpack((uint8_t *) (data+12),"f",&b->pit0); - unpack((uint8_t *) (data+13),"l",&b->cell); - unpack((uint8_t *) (data+14),"l",&b->pin); - unpack((uint8_t *) (data+15),"l",&b->tslh); - unpack((uint8_t *) (data+16),"l",&b->hca); - unpack((uint8_t *) (data+17),"l",&b->eca_val); - unpack((uint8_t *) (data+18),"l",&b->pca_val); - unpack((uint8_t *) (data+19),"l",&b->anxx); - unpack((uint8_t *) (data+20),"l",&b->ept); - unpack((uint8_t *) (data+21),"l",&b->ehl); - unpack((uint8_t *) (data+22),"l",&b->ehs); - unpack((uint8_t *) (data+23),"l",&b->elx); - unpack((uint8_t *) (data+24),"l",&b->pt1); - unpack((uint8_t *) (data+25),"l",&b->ptm); - unpack((uint8_t *) (data+26),"l",&b->ptms); - unpack((uint8_t *) (data+27),"l",&b->qm); - unpack((uint8_t *) (data+28),"l",&b->qms); - unpack((uint8_t *) (data+29),"l",&b->qrc); -} - -int swap_PmtRecord(aPmtEventRecord *aPmtRecord, size_t size) -{ - /* Swap a Pmt Event Record. This function swaps both the Pmt event record - * and the PMT hits and sub fields. Returns -1 if the PMT record has too - * many hits. */ - SWAP_INT32(aPmtRecord, sizeof(aPmtEventRecord)/sizeof(uint32_t)); - - int npmt = aPmtRecord->NPmtHit; - - if (npmt > MAX_NHIT) { - fprintf(stderr, "Read error: Bad ZDAB -- %d pmt hit!", npmt); - return -1; - } else { - if (size < sizeof(aPmtEventRecord) + 3*npmt*4) { - fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, but there are %i PMT hits", size, npmt); - return -1; - } - // swap the hit data - SWAP_INT32(aPmtRecord + 1, 3*npmt); - // swap the sub-fields - uint32_t *sub_header = &aPmtRecord->CalPckType; - while (*sub_header & SUB_NOT_LAST) { - if (size < (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4 + 4) { - fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, " - "but sub-field requires %lu bytes", - size, - (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4 + 4); - return -1; - } - sub_header += (*sub_header & SUB_LENGTH_MASK); - SWAP_INT32(sub_header, 1); // swap the sub-field header - // get number of data words (-1 because we don't want to include header size) - uint32_t data_words = (*sub_header & SUB_LENGTH_MASK) - 1; - if (size < (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4) { - fprintf(stderr, "swap_PmtRecord: size of record is %zu bytes, " - "but sub-field requires %lu bytes", - size, - (sub_header - (uint32_t *) aPmtRecord)*4 + (*sub_header & SUB_LENGTH_MASK)*4); - return -1; - } - SWAP_INT32(sub_header+1, data_words); - } - } - - return 0; -} - -void swap_TrigRecord(struct TriggerInfo *aTrigRecord) -{ - /* Byte swap a Trigger Record. */ - SWAP_INT32(aTrigRecord, sizeof(struct TriggerInfo)/sizeof(uint32_t)); -} - -void swap_RunRecord(struct RunRecord *aRunRecord) -{ - /* Byte swap a Run Record. */ - SWAP_INT32(aRunRecord, sizeof(struct RunRecord)/sizeof(uint32_t)); -} - - diff --git a/zdab_utils.h b/zdab_utils.h deleted file mode 100644 index c5fc2c0..0000000 --- a/zdab_utils.h +++ /dev/null @@ -1,202 +0,0 @@ -#ifndef ZDAB_UTILS -#define ZDAB_UTILS - -#include "Record_Info.h" -#include -#include /* for size_t */ - -// the builder won't put out events with NHIT > 10000 -// (note that these are possible due to hardware problems) -// but XSNOED can write an event with up to 10240 channels -#define MAX_NHIT 10240 - -#ifdef SWAP_BYTES -#define SWAP_INT32(a,b) swap_int32((int32_t *)(a),(b)) -#define SWAP_INT16(a,b) swap_int16((int16_t *)(a),(b)) -#else -#define SWAP_INT32(a,b) -#define SWAP_INT16(a,b) -#endif - -/* Bit masks for the PMT flags field in the PMT bank. */ -#define KPF_DIS 0x00000001 -#define KPF_NOI 0x00000004 -#define KPF_PRP 0x00000008 -#define KPF_AFP 0x00000010 -#define KPF_FECD 0x00000020 -#define KPF_FT_MASK1 0x00000040 -#define KPF_XT 0x04000000 -#define KPF_NO_CAL 0x08000000 -#define KPF_BAD_CAL 0x10000000 - -typedef struct EVBank { - /* Run number. */ - uint32_t run; - /* Event number. */ - uint32_t evn; - /* Data type. */ - uint32_t dtp; - /* Julian date. */ - uint32_t jdy; - /* Universal time (seconds). */ - uint32_t ut1; - /* Universal time (nanoseconds). */ - uint32_t ut2; - /* Date (format: yyyymmdd) */ - uint32_t dte; - /* Time (format: hhmmsscc - cc is centisec). */ - uint32_t hmsc; - /* Global trigger time in nsec (first word). */ - uint32_t gtr1; - /* Second word. */ - uint32_t gtr2; - /* Number of PMTs that fired. */ - uint32_t npm; - /* Integrated charge in the event. */ - uint32_t nph; - /* Sub-run number, or -1 if unknown. Only defined for run number >= 10614. */ - uint32_t sub_run; - /* Packed word. */ - uint32_t mc_pck; - /* ZDAB input/output record type, e.g. PMT, NCD, CMA, RUN, etc. */ - uint32_t rec; - /* ZDAB_PMT format number (x10). */ - uint32_t vpck; - /* Global trigger ID. */ - uint32_t gtr_id; - /* Trigger word. */ - uint32_t trg_type; - /* Digitized peak of analog sum. */ - uint32_t peak; - /* Analog sum derivative. */ - uint32_t diff; - /* Digitized integral of analog sum. */ - uint32_t integral; - /* Trigger error bits plus spares. */ - uint32_t err; - /* Data splitter blindness word. */ - uint32_t data_set; - uint32_t spare1[3]; - uint32_t ncd_status; - /* Number of multiplexer global records. */ - uint32_t num_muxg; - /* Number of multiplexer records. */ - uint32_t num_mux; - /* Number of scope records. */ - uint32_t num_scope; - uint32_t spare2[5]; - /* Upper 24 bits of flock */ - uint32_t ncd_clk_up; - /* Lower clock register (32 bits). */ - uint32_t ncd_clk_lw; - /* Latch register id. */ - uint32_t ncd_reg; - /* GTID. */ - uint32_t ncd_gtid; - /* Sync clear error. */ - uint32_t ncd_sync; - uint32_t spare3[10]; -} EVBank; - -/* PMT Bank struct. This is a struct which mimics the PMT data bank in SNOMAN. - * The fields and comments were taken from the SNOMAN companion. */ -typedef struct PMTBank { - /* Tube number. For FECD, which has no associated tube number, this word is - * a copy of PIN. */ - uint32_t pn; - /* Set of 1-bit flags. All undefined bits are set to zero. The following - * bits are defined: - * - * 0 KPF_DIS Discard hit for all processing including fitting. - * 2 KPF_NOI Noise. - * 3 KPF_PRP Pre-pulse. - * 4 KPF_AFP After-pulse. - * 5 KPF_FECD Front-End Card Data i.e. non-PMT channel. - * Should only be set on the FECD bank. - * 6 KPF_FT_MASK+i Discarded by fitter method i (i = 1,2,..). - * For description of fitter methods see the FTx bank. - * 26 KPF_XT Crosstalk. - * 27 KPF_NO_CAL No calibration. - * 28 KPF_BAD_CAL Bad calibration. */ - uint32_t pf; - /* Time in nano-secs relative to event T0 - see EV. */ - float pt; - /* Integrated charge. */ - float phl; - /* Short-time integrated charge. */ - float phs; - /* Low-gain integrated charge. */ - float plx; - /* Time with the PMT jitter removed. */ - float pt0; - /* Set of n-bit flags for the ith hit in list. All undefined bits are set - * to zero. The following bits are defined: - * - * Bit Field DAQ Meaning - * 0-3 NCELL (CMOS Cell address 0 to 15) - * 4-5 FLAG1 Bit 4 = CGT ES16. - * Bit 5 = CGT ES24. - * 6-9 FLAG2 Bit 6 = Missed Count - * Bit 7 = NC/CC Flag - * Bit 8 = LGISELECT (1=long sample) - * Bit 9 = CMOS ES16. */ - uint32_t pif; - /* Uncalibrated times. */ - float pit; - /* Uncalibrated high-gain, long int. charge. */ - float pihl; - /* Uncalibrated high-gain, short int. charge. */ - float pihs; - /* Uncalibrated log-gain, long int. charge. */ - float pilx; - /* Uncalibrated unjittered time. */ - float pit0; - /* PMT channel cell number. */ - uint32_t cell; - /* CCC DAQ Circuit Number - * = 1024*card + 32*crate + channel. - * Before uncalibration it holds the tube no. */ - uint32_t pin; - /* TSLH of PMT. */ - uint32_t tslh; - /* HCA information. */ - uint32_t hca; - /* ECA validation status word. */ - uint32_t eca_val; - /* PCA validation status word. */ - uint32_t pca_val; - /* ANXX validation status word. */ - uint32_t anxx; - /* ECA calibrated time (nsec). */ - uint32_t ept; - /* ECA calibrated QHL (pedestal subtracted). */ - uint32_t ehl; - /* ECA calibrated QHS (pedestal subtracted). */ - uint32_t ehs; - /* ECA calibrated QLX (pedestal subtracted). */ - uint32_t elx; - /* Non-walk corrected PMT time. */ - uint32_t pt1; - /* Multiphoton PCA time. */ - uint32_t ptm; - /* Multiphoton PCA PMT transit time RMS. */ - uint32_t ptms; - /* Best charge (either QHS or QLX). */ - uint32_t qm; - /* Best charge status word. */ - uint32_t qms; - /* Charge correction for rate-dependent shifting. */ - uint32_t qrc; -} PMTBank; - -void unpack_ev(uint32_t *data, EVBank *b); -void unpack_pmt(uint32_t *data, PMTBank *b); - -int isOrphan(aPmtEventRecord *pmtRecord); -void swap_int32(int32_t *val_pt, int count); -void swap_int16(int16_t *val_pt, int count); -int swap_PmtRecord(aPmtEventRecord *aPmtRecord, size_t size); -void swap_TrigRecord(struct TriggerInfo *aTrigRecord); -void swap_RunRecord(struct RunRecord *aRunRecord); - -#endif diff --git a/zebra.c b/zebra.c deleted file mode 100644 index 4ce51a2..0000000 --- a/zebra.c +++ /dev/null @@ -1,219 +0,0 @@ -#include "zebra.h" -#include /* for FILE */ -#include /* for size_t */ -#include "pack2b.h" -#include /* for memmove() */ -#include /* for uint8_t, etc. */ -#include /* for strerror(), etc. */ - -char zebra_err[256]; - -zebraFile *zebra_open(const char *filename) -{ - FILE *f = fopen(filename, "r"); - - if (!f) { - sprintf(zebra_err, "failed to open '%s': %s", filename, strerror(errno)); - return NULL; - } - - zebraFile *z = (zebraFile *) malloc(sizeof(zebraFile)); - z->f = f; - z->offset = 0; - z->lr_size = 0; - z->buf = NULL; - z->buf_size = 0; - - return z; -} - -int read_next_physical_record(zebraFile *z) -{ - /* Read the next physical record from the zebra file and append it to the - * buffer. - * - * Returns 0 on success, -1 on error, and 1 on EOF. */ - uint8_t buf[48]; - size_t nbytes; - uint32_t s0, s1, s2, s3, nwphr, nfast; - - nbytes = fread(buf,4,8,z->f); - - if (nbytes == 0) return 1; - - if (nbytes != 8) { - sprintf(zebra_err, "expected %i words but only read %zu", 8, nbytes); - return -1; - } - - s0 = unpacki32(buf); - s1 = unpacki32(buf+4*1); - s2 = unpacki32(buf+4*2); - s3 = unpacki32(buf+4*3); - nwphr = unpacki32(buf+4*4); - nfast = unpacki32(buf+7*4); - - if (nwphr & (ZEBRA_EMERGENCY_STOP | ZEBRA_END_OF_RUN)) - return 1; - - nwphr &= ZEBRA_BLOCK_SIZE_MASK; - - uint32_t words = nwphr*(1 + nfast) - 8; - - if (s0 != ZEBRA_SIG0) { - sprintf(zebra_err, "invalid steering block stamp 0x%08x", s0); - return -1; - } - - if (s1 != ZEBRA_SIG1) { - sprintf(zebra_err, "invalid steering block stamp 0x%08x", s1); - return -1; - } - - if (s2 != ZEBRA_SIG2) { - sprintf(zebra_err, "invalid steering block stamp 0x%08x", s2); - return -1; - } - - if (s3 != ZEBRA_SIG3) { - sprintf(zebra_err, "invalid steering block stamp 0x%08x", s3); - return -1; - } - - z->buf = realloc(z->buf, z->buf_size+words*4); - - nbytes = fread(z->buf+z->buf_size, 4, words, z->f); - - z->buf_size += words*4; - - if (nbytes != words) { - sprintf(zebra_err, "expected %i words but only read %zu", words, nbytes); - return -1; - } - - return 0; -} - -int get_bytes(zebraFile *z, size_t size) -{ - /* Read bytes from the zdab file until there are at least `size` words in - * the buffer. - * - * Returns 0 on success, -1 on error, and 1 on EOF. */ - int rv; - - while ((z->buf_size - z->offset) < size*4) { - rv = read_next_physical_record(z); - - if (rv == -1) { - return -1; - } else if (z->buf_size == 0 && rv == 1) { - /* EOF and there are no bytes left. */ - return 1; - } - } - - return 0; -} - -int read_next_logical_record(zebraFile *z) -{ - /* Read the next logical record into the buffer. - * - * Returns 0 on success, -1 on error, and 1 on EOF. */ - uint32_t size, type, nwtx, nwseg, nwtab, nwuh; - - while (1) { - memmove(z->buf,z->buf+z->offset,z->buf_size-z->offset); - z->buf = realloc(z->buf, z->buf_size-z->offset); - z->buf_size -= z->offset; - z->offset = 0; - - switch (get_bytes(z,1)) { - case 1: - return 1; - case -1: - return -1; - } - size = unpacki32(z->buf+z->offset); - z->offset += 4; - - if (size == 0) continue; - - switch (get_bytes(z,1)) { - case 1: - return 1; - case -1: - return -1; - } - type = unpacki32(z->buf+z->offset); - z->offset += 4; - - switch (type) { - case 5: - case 6: - get_bytes(z,size-1); - z->offset += (size-1)*4; - continue; - case 1: - get_bytes(z,size); - z->offset += size*4; - continue; - } - - z->lr_size = (size + 2)*4; - get_bytes(z,size); - - nwtx = unpacki32(z->buf+z->offset+4*4); - nwseg = unpacki32(z->buf+z->offset+5*4); - nwtab = unpacki32(z->buf+z->offset+6*4); - nwuh = unpacki32(z->buf+z->offset+9*4); - - z->offset += 10*4; - - z->offset += nwtx*4; - z->offset += nwseg*4; - z->offset += nwtab*4; - z->offset += nwuh*4; - - break; - } - - return 0; -} - -int next_bank(zebraFile *z, bank *b) -{ - int rv; - uint32_t io, noff; - - if (z->offset == z->lr_size) { - rv = read_next_logical_record(z); - if (rv) return rv; - } - - io = unpacki32(z->buf+z->offset); - z->offset += 4; - - noff = io & 0xFFFF; - - if (noff > 12) { - z->offset += (noff-12)*4; - } - - unpack(z->buf+z->offset,"lllllllll",&b->next, &b->up, &b->orig, &b->number, &b->name, &b->num_links, &b->num_structural_links, &b->num_data_words, &b->status); - z->offset += 9*4; - - b->data = (uint32_t *) (z->buf+z->offset); - - z->offset += b->num_data_words*4; - - return 0; -} - -void zebra_close(zebraFile *z) -{ - fclose(z->f); - if (z->buf) free(z->buf); - free(z); -} diff --git a/zebra.h b/zebra.h deleted file mode 100644 index 2f24939..0000000 --- a/zebra.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef ZEBRA_H -#define ZEBRA_H - -#include /* for FILE */ -#include /* for size_t */ -#include /* for uint8_t, etc. */ - -extern char zebra_err[256]; - -#define ZEBRA_SIG0 0x0123cdefUL -#define ZEBRA_SIG1 0x80708070UL -#define ZEBRA_SIG2 0x4321abcdUL -#define ZEBRA_SIG3 0x80618061UL - -#define ZEBRA_BLOCK_SIZE_MASK 0x00ffffffUL -#define ZEBRA_EMERGENCY_STOP 0x80000000UL -#define ZEBRA_END_OF_RUN 0x20000000UL -#define ZEBRA_START_OF_RUN 0x40000000UL - -typedef struct bank { - uint32_t next; - uint32_t up; - uint32_t orig; - uint32_t number; - uint32_t name; - uint32_t num_links; - uint32_t num_structural_links; - uint32_t num_data_words; - uint32_t status; - uint32_t *data; -} bank; - -typedef struct zebraFile { - FILE *f; - size_t offset; - size_t lr_size; - uint8_t *buf; - size_t buf_size; -} zebraFile; - -zebraFile *zebra_open(const char *filename); -int read_next_physical_record(zebraFile *z); -int get_bytes(zebraFile *z, size_t size); -int read_next_logical_record(zebraFile *z); -int next_bank(zebraFile *z, bank *b); -void zebra_close(zebraFile *z); - -#endif -- cgit