Skip to content

Instantly share code, notes, and snippets.

@pdeperio
Created September 11, 2015 13:53
Show Gist options
  • Save pdeperio/73d5063895acdda01194 to your computer and use it in GitHub Desktop.
Save pdeperio/73d5063895acdda01194 to your computer and use it in GitHub Desktop.
XENON100 ROOT output config file for pax 3.3.0
##
# XENON100-specific configuration settings
##
# This is just for setting up pax
[pax]
parent_configuration = "XENON100"
# Plugin groups: plugins from these groups will be loaded (in order)
plugin_group_names = ['input', 'dsp', 'transform', 'output']
input = 'XED.ReadXED'
output = ['Table.TableWriter']
dsp = [
'CheckPulses.CheckBounds',
# Find individual hits
'HitFinder.FindHits',
# Combine hits into clusters = peaks
#'Cluster.MeanShift',
'Cluster.GapSize',
# Compute properties for each peak
'ComputePeakProperties.BasicProperties',
'ComputePeakProperties.HitpatternSpread',
# Classify the clusters based on the properties
'ClassifyPeaks.AdHocClassification',
# Make sum waveform for plotting - disable for speed in bulk processing
#'SumWaveform.SumWaveform',
]
transform = [
'PosSimple.PosRecWeightedSum',
'NeuralNet.PosRecNeuralNet'
]
[Table.TableWriter]
output_format = 'root' # hdf5, csv, numpy, html, json, root
append_data = False
overwrite_data = True
string_data_length = 32
# Convert data to numpy records every n events
# These take less memory, but conversion takes some time
buffer_size = 50
# Write to file every time a chunk is converted to records
# If false, or output format does not support it, will write all at end
write_in_chunks = False
# Fields to leave out of the output.
# If you dump to e.g. json, you may want to ignore area_per_channel and does_channel_contribute
fields_to_ignore = ['hits',
'pulses',
'sum_waveforms',
'channel_waveforms',
'all_hits',
'raw_data',
'area_per_channel', # Useful, but takes a LOT of space
'does_channel_have_noise', # Takes little disk space, but a lot of memory
'does_channel_contribute', # Same here
]
[HitFinder.FindHits]
# Minimum sigma's above noise level for an excess in a channel to be regarded as a hit:
peak_minimum_sigma = 6 # 8 sigma gives too many missed hits
# Initial guess for the digitizer baseline during this pulse; will be refined during hitfinding.
baseline_guess = 16000 # ADC-counts
# Initial guess for the noise_sigma; will be refined during hitfinding.
# If set too high, peaks may not get found; if set too low, spurious peaks may be found in noise.
noise_sigma_guess = 10 # ADC-counts -- not pe/bin anymore!!
# Output peakfinder diagnostic plots to directory
# Warning: this will produce LOTS of plots, processing will be EXTREMELY SLOW
# That's why they're called diagnostic plots...
make_diagnostic_plots = 'never' #'always', 'never' (default), or 'no peaks'
make_diagnostic_plots_in = 'diagnostic_plots'
# The algorithm refines its noise_sigma by excluding all samples part of a peak.
# Then peakfinding is repeated, then noise_sigma finding, etc.
# Usually this process is self-stabilizing, so it rarely takes more than 3 or 4 passes.
# Occasionally we never settle on peaks and the noise_sigma remains oscillatory.
# Usually this is one or two samples bouncing in an and of a peak boundary.
# To protect against infinite loops, if more than the below number of passes have been done,
# no new pass is started.
max_passes = 20
# Max hits to look for in each pulse: rest will be ignored
# After large peaks the zero-length encoding can fail, making a huge pulse with many hits
# If set too low, you risk missing some hits in such events.
# If set too high, it will degrade performance (though the effect appears to be small)
# Don't set to infinity though: we need to allocate memory for this...
max_hits_per_pulse = 500
[Cluster]
# Suspicious channel rejection settings
penalty_per_noise_pulse = 1 # "pe" equivalent penalty
penalty_per_lone_hit = 1 # "pe" equivalent penalty
# Threshold to mark a suspicious channel
penalty_geq_this_is_suspicious = 3 # "pe" equivalent penalty
# If the ratio of noise channels / contributing channels is larger than this, classify peak as 'noise'
# noise channel = a channel in the same detector which shows data, but doesn't contribute to the peak
# (or only hits rejected by the suspicious channel algorithm)
max_noise_channels_over_contributing_channels = 2
[Cluster.MeanShift]
s2_size = 20
# If spe peaks are separated by less than this, they will be clustered together
s2_width = 1.0 * us
p_value = 0.999
cluster_all = True
[Cluster.HitDifference]
max_difference = 800 * ns
[Cluster.GapSize]
# If there is a gap between hits larger than this, it will make a new cluster
large_gap_threshold = 450 * ns
# If the area in a cluster is larger than this, it is certainly not a single electron, so we can use...
transition_point = 50 #pe
# ... a tighter gap threshold:
small_gap_threshold = 100 * ns
# Global settings, passed to every plugin
[DEFAULT]
tpc_name = "XENON100"
# Time in the event at which trigger occurs. Set to None or leave out if there is no trigger
trigger_time_in_event = 209 * us # Jelle: I have no idea if this is right. Anybody?
pmt_0_is_fake = True
# Detector specification
# PlotChannelWaveform2D expects the detector names' lexical order to be the same as the channel order
channels_in_detector = {
'tpc': list(range(0, 178+1)),
'veto': list(range(179, 242+1)),
}
n_channels = 242 + 1 # +1 for the fake pmt 0
# PMT numbers for tpc, specified as lists
# Remember python range does not include endpoint!
# PMT 0 does not exist, its gain is set to 0 later
channels_top = list(range(0, 98 + 1))
channels_bottom = list(range(99, 178 + 1))
# PMT locations taken from Marc Schumann's pmtpattern code. Agrees also
# with the top PMT locations used by xerawdp.
# Note: don't forget the units...
pmt_locations = [ {'x' : 0 * mm, 'y' : 0 * mm},
{'x' : -166.84 * mm, 'y' : 0.00 * mm}, {'x' : -163.19 * mm, 'y' : 34.69 * mm},
{'x' : -152.42 * mm, 'y' : 67.86 * mm}, {'x' : -134.98 * mm, 'y' : 98.07 * mm},
{'x' : -111.64 * mm, 'y' : 123.99 * mm}, {'x' : -83.42 * mm, 'y' : 144.49 * mm},
{'x' : -51.56 * mm, 'y' : 158.67 * mm}, {'x' : -17.44 * mm, 'y' : 165.93 * mm},
{'x' : 17.44 * mm, 'y' : 165.93 * mm}, {'x' : 51.56 * mm, 'y' : 158.67 * mm},
{'x' : 83.42 * mm, 'y' : 144.49 * mm}, {'x' : 111.64 * mm, 'y' : 123.99 * mm},
{'x' : 134.98 * mm, 'y' : 98.07 * mm}, {'x' : 152.42 * mm, 'y' : 67.86 * mm},
{'x' : 163.19 * mm, 'y' : 34.69 * mm}, {'x' : 166.84 * mm, 'y' : 0.00 * mm},
{'x' : 163.19 * mm, 'y' : -34.69 * mm}, {'x' : 152.42 * mm, 'y' : -67.86 * mm},
{'x' : 134.98 * mm, 'y' : -98.07 * mm}, {'x' : 111.64 * mm, 'y' : -123.99 * mm},
{'x' : 83.42 * mm, 'y' : -144.49 * mm}, {'x' : 51.56 * mm, 'y' : -158.67 * mm},
{'x' : 17.44 * mm, 'y' : -165.93 * mm}, {'x' : -17.44 * mm, 'y' : -165.93 * mm},
{'x' : -51.56 * mm, 'y' : -158.67 * mm}, {'x' : -83.42 * mm, 'y' : -144.49 * mm},
{'x' : -111.64 * mm, 'y' : -123.99 * mm}, {'x' : -134.98 * mm, 'y' : -98.07 * mm},
{'x' : -152.42 * mm, 'y' : -67.86 * mm}, {'x' : -163.19 * mm, 'y' : -34.69 * mm},
{'x' : -136.53 * mm, 'y' : 0.00 * mm}, {'x' : -131.88 * mm, 'y' : 35.34 * mm},
{'x' : -118.24 * mm, 'y' : 68.27 * mm}, {'x' : -96.54 * mm, 'y' : 96.54 * mm},
{'x' : -68.27 * mm, 'y' : 118.24 * mm}, {'x' : -35.34 * mm, 'y' : 131.88 * mm},
{'x' : 0.00 * mm, 'y' : 136.53 * mm}, {'x' : 35.34 * mm, 'y' : 131.88 * mm},
{'x' : 68.27 * mm, 'y' : 118.24 * mm}, {'x' : 96.54 * mm, 'y' : 96.54 * mm},
{'x' : 118.24 * mm, 'y' : 68.27 * mm}, {'x' : 131.88 * mm, 'y' : 35.34 * mm},
{'x' : 136.53 * mm, 'y' : 0.00 * mm}, {'x' : 131.88 * mm, 'y' : -35.34 * mm},
{'x' : 118.24 * mm, 'y' : -68.27 * mm}, {'x' : 96.54 * mm, 'y' : -96.54 * mm},
{'x' : 68.27 * mm, 'y' : -118.24 * mm}, {'x' : 35.34 * mm, 'y' : -131.88 * mm},
{'x' : 0.00 * mm, 'y' : -136.53 * mm}, {'x' : -35.34 * mm, 'y' : -131.88 * mm},
{'x' : -68.27 * mm, 'y' : -118.24 * mm}, {'x' : -96.54 * mm, 'y' : -96.54 * mm},
{'x' : -118.24 * mm, 'y' : -68.27 * mm}, {'x' : -131.88 * mm, 'y' : -35.34 * mm},
{'x' : -106.20 * mm, 'y' : 0.00 * mm}, {'x' : -101.00 * mm, 'y' : 32.82 * mm},
{'x' : -85.92 * mm, 'y' : 62.42 * mm}, {'x' : -62.42 * mm, 'y' : 85.92 * mm},
{'x' : -32.82 * mm, 'y' : 101.00 * mm}, {'x' : 0.00 * mm, 'y' : 106.20 * mm},
{'x' : 32.82 * mm, 'y' : 101.00 * mm}, {'x' : 62.42 * mm, 'y' : 85.92 * mm},
{'x' : 85.92 * mm, 'y' : 62.42 * mm}, {'x' : 101.00 * mm, 'y' : 32.82 * mm},
{'x' : 106.20 * mm, 'y' : 0.00 * mm}, {'x' : 101.00 * mm, 'y' : -32.82 * mm},
{'x' : 85.92 * mm, 'y' : -62.42 * mm}, {'x' : 62.42 * mm, 'y' : -85.92 * mm},
{'x' : 32.82 * mm, 'y' : -101.00 * mm}, {'x' : 0.00 * mm, 'y' : -106.20 * mm},
{'x' : -32.82 * mm, 'y' : -101.00 * mm}, {'x' : -62.42 * mm, 'y' : -85.92 * mm},
{'x' : -85.92 * mm, 'y' : -62.42 * mm}, {'x' : -101.00 * mm, 'y' : -32.82 * mm},
{'x' : -75.87 * mm, 'y' : 0.00 * mm}, {'x' : -68.76 * mm, 'y' : 32.06 * mm},
{'x' : -47.75 * mm, 'y' : 58.96 * mm}, {'x' : -17.07 * mm, 'y' : 73.93 * mm},
{'x' : 15.77 * mm, 'y' : 74.21 * mm}, {'x' : 46.71 * mm, 'y' : 59.79 * mm},
{'x' : 68.19 * mm, 'y' : 33.26 * mm}, {'x' : 75.87 * mm, 'y' : 0.00 * mm},
{'x' : 68.76 * mm, 'y' : -32.06 * mm}, {'x' : 47.75 * mm, 'y' : -58.96 * mm},
{'x' : 17.07 * mm, 'y' : -73.93 * mm}, {'x' : -15.77 * mm, 'y' : -74.21 * mm},
{'x' : -46.71 * mm, 'y' : -59.79 * mm}, {'x' : -68.19 * mm, 'y' : -33.26 * mm},
{'x' : -45.00 * mm, 'y' : 0.00 * mm}, {'x' : -30.00 * mm, 'y' : 30.00 * mm},
{'x' : 0.00 * mm, 'y' : 45.00 * mm}, {'x' : 30.00 * mm, 'y' : 30.00 * mm},
{'x' : 45.00 * mm, 'y' : 0.00 * mm}, {'x' : 30.00 * mm, 'y' : -30.00 * mm},
{'x' : 0.00 * mm, 'y' : -45.00 * mm}, {'x' : -30.00 * mm, 'y' : -30.00 * mm},
{'x' : -15.00 * mm, 'y' : 0.00 * mm}, {'x' : 15.00 * mm, 'y' : 0.00 * mm},
{'x' : 41.15 * mm, 'y' : 123.44 * mm}, {'x' : 13.71 * mm, 'y' : 123.44 * mm},
{'x' : -13.71 * mm, 'y' : 123.44 * mm}, {'x' : -41.15 * mm, 'y' : 123.44 * mm},
{'x' : 82.29 * mm, 'y' : 96.00 * mm}, {'x' : 54.86 * mm, 'y' : 96.00 * mm},
{'x' : 27.43 * mm, 'y' : 96.00 * mm}, {'x' : 0.00 * mm, 'y' : 96.00 * mm},
{'x' : -27.43 * mm, 'y' : 96.00 * mm}, {'x' : -54.86 * mm, 'y' : 96.00 * mm},
{'x' : -82.29 * mm, 'y' : 96.00 * mm}, {'x' : 109.72 * mm, 'y' : 68.58 * mm},
{'x' : 82.29 * mm, 'y' : 68.58 * mm}, {'x' : 54.86 * mm, 'y' : 68.58 * mm},
{'x' : 27.43 * mm, 'y' : 68.58 * mm}, {'x' : 0.00 * mm, 'y' : 68.58 * mm},
{'x' : -27.43 * mm, 'y' : 68.58 * mm}, {'x' : -54.86 * mm, 'y' : 68.58 * mm},
{'x' : -82.29 * mm, 'y' : 68.58 * mm}, {'x' : -109.72 * mm, 'y' : 68.58 * mm},
{'x' : 123.44 * mm, 'y' : 41.15 * mm}, {'x' : 96.00 * mm, 'y' : 41.15 * mm},
{'x' : 68.58 * mm, 'y' : 41.15 * mm}, {'x' : 41.15 * mm, 'y' : 41.15 * mm},
{'x' : 13.71 * mm, 'y' : 41.15 * mm}, {'x' : -13.71 * mm, 'y' : 41.15 * mm},
{'x' : -41.15 * mm, 'y' : 41.15 * mm}, {'x' : -68.58 * mm, 'y' : 41.15 * mm},
{'x' : -96.00 * mm, 'y' : 41.15 * mm}, {'x' : -123.44 * mm, 'y' : 41.15 * mm},
{'x' : 123.44 * mm, 'y' : 13.71 * mm}, {'x' : 96.00 * mm, 'y' : 13.71 * mm},
{'x' : 68.58 * mm, 'y' : 13.71 * mm}, {'x' : 41.15 * mm, 'y' : 13.71 * mm},
{'x' : 13.71 * mm, 'y' : 13.71 * mm}, {'x' : -13.71 * mm, 'y' : 13.71 * mm},
{'x' : -41.15 * mm, 'y' : 13.71 * mm}, {'x' : -68.58 * mm, 'y' : 13.71 * mm},
{'x' : -96.00 * mm, 'y' : 13.71 * mm}, {'x' : -123.44 * mm, 'y' : 13.71 * mm},
{'x' : 123.44 * mm, 'y' : -13.71 * mm}, {'x' : 96.00 * mm, 'y' : -13.71 * mm},
{'x' : 68.58 * mm, 'y' : -13.71 * mm}, {'x' : 41.15 * mm, 'y' : -13.71 * mm},
{'x' : 13.71 * mm, 'y' : -13.71 * mm}, {'x' : -13.71 * mm, 'y' : -13.71 * mm},
{'x' : -41.15 * mm, 'y' : -13.71 * mm}, {'x' : -68.58 * mm, 'y' : -13.71 * mm},
{'x' : -96.00 * mm, 'y' : -13.71 * mm}, {'x' : -123.44 * mm, 'y' : -13.71 * mm},
{'x' : 123.44 * mm, 'y' : -41.15 * mm}, {'x' : 96.00 * mm, 'y' : -41.15 * mm},
{'x' : 68.58 * mm, 'y' : -41.15 * mm}, {'x' : 41.15 * mm, 'y' : -41.15 * mm},
{'x' : 13.71 * mm, 'y' : -41.15 * mm}, {'x' : -13.71 * mm, 'y' : -41.15 * mm},
{'x' : -41.15 * mm, 'y' : -41.15 * mm}, {'x' : -68.58 * mm, 'y' : -41.15 * mm},
{'x' : -96.00 * mm, 'y' : -41.15 * mm}, {'x' : -123.44 * mm, 'y' : -41.15 * mm},
{'x' : 109.72 * mm, 'y' : -68.58 * mm}, {'x' : 82.29 * mm, 'y' : -68.58 * mm},
{'x' : 54.86 * mm, 'y' : -68.58 * mm}, {'x' : 27.43 * mm, 'y' : -68.58 * mm},
{'x' : 0.00 * mm, 'y' : -68.58 * mm}, {'x' : -27.43 * mm, 'y' : -68.58 * mm},
{'x' : -54.86 * mm, 'y' : -68.58 * mm}, {'x' : -82.29 * mm, 'y' : -68.58 * mm},
{'x' : -109.72 * mm, 'y' : -68.58 * mm}, {'x' : 82.29 * mm, 'y' : -96.00 * mm},
{'x' : 54.86 * mm, 'y' : -96.00 * mm}, {'x' : 27.43 * mm, 'y' : -96.00 * mm},
{'x' : 0.00 * mm, 'y' : -96.00 * mm}, {'x' : -27.43 * mm, 'y' : -96.00 * mm},
{'x' : -54.86 * mm, 'y' : -96.00 * mm}, {'x' : -82.29 * mm, 'y' : -96.00 * mm},
{'x' : 41.15 * mm, 'y' : -123.44 * mm}, {'x' : 13.71 * mm, 'y' : -123.44 * mm},
{'x' : -13.71 * mm, 'y' : -123.44 * mm}, {'x' : -41.15 * mm, 'y' : -123.44 * mm},
{'x' : -197.15 * mm, 'y' : 0.00 * mm}, {'x' : -193.53 * mm, 'y' : 37.62 * mm},
{'x' : -182.79 * mm, 'y' : 73.85 * mm}, {'x' : -165.34 * mm, 'y' : 107.38 * mm},
{'x' : -139.41 * mm, 'y' : 139.41 * mm}, {'x' : -110.25 * mm, 'y' : 163.44 * mm},
{'x' : -77.03 * mm, 'y' : 181.48 * mm}, {'x' : -40.99 * mm, 'y' : 192.84 * mm},
{'x' : 0.00 * mm, 'y' : 197.15 * mm}, {'x' : 37.62 * mm, 'y' : 193.53 * mm},
{'x' : 73.85 * mm, 'y' : 182.79 * mm}, {'x' : 107.38 * mm, 'y' : 165.34 * mm},
{'x' : 139.41 * mm, 'y' : 139.41 * mm}, {'x' : 163.44 * mm, 'y' : 110.25 * mm},
{'x' : 181.48 * mm, 'y' : 77.03 * mm}, {'x' : 192.84 * mm, 'y' : 40.99 * mm},
{'x' : 197.15 * mm, 'y' : 0.00 * mm}, {'x' : 193.53 * mm, 'y' : -37.62 * mm},
{'x' : 182.79 * mm, 'y' : -73.85 * mm}, {'x' : 165.34 * mm, 'y' : -107.38 * mm},
{'x' : 139.41 * mm, 'y' : -139.41 * mm}, {'x' : 110.25 * mm, 'y' : -163.44 * mm},
{'x' : 77.03 * mm, 'y' : -181.48 * mm}, {'x' : 40.99 * mm, 'y' : -192.84 * mm},
{'x' : 0.00 * mm, 'y' : -197.15 * mm}, {'x' : -37.62 * mm, 'y' : -193.53 * mm},
{'x' : -73.85 * mm, 'y' : -182.79 * mm}, {'x' : -107.38 * mm, 'y' : -165.34 * mm},
{'x' : -139.41 * mm, 'y' : -139.41 * mm}, {'x' : -163.44 * mm, 'y' : -110.25 * mm},
{'x' : -181.48 * mm, 'y' : -77.03 * mm}, {'x' : -192.84 * mm, 'y' : -40.99 * mm},
{'x' : 197.15 * mm, 'y' : 0.00 * mm}, {'x' : 193.53 * mm, 'y' : 37.62 * mm},
{'x' : 182.79 * mm, 'y' : 73.85 * mm}, {'x' : 165.34 * mm, 'y' : 107.38 * mm},
{'x' : 139.41 * mm, 'y' : 139.41 * mm}, {'x' : 110.25 * mm, 'y' : 163.44 * mm},
{'x' : 77.03 * mm, 'y' : 181.48 * mm}, {'x' : 40.99 * mm, 'y' : 192.84 * mm},
{'x' : 0.00 * mm, 'y' : 197.15 * mm}, {'x' : -37.62 * mm, 'y' : 193.53 * mm},
{'x' : -73.85 * mm, 'y' : 182.79 * mm}, {'x' : -107.38 * mm, 'y' : 165.34 * mm},
{'x' : -139.41 * mm, 'y' : 139.41 * mm}, {'x' : -163.44 * mm, 'y' : 110.25 * mm},
{'x' : -181.48 * mm, 'y' : 77.03 * mm}, {'x' : -192.84 * mm, 'y' : 40.99 * mm},
{'x' : -197.15 * mm, 'y' : 0.00 * mm}, {'x' : -193.53 * mm, 'y' : -37.62 * mm},
{'x' : -182.79 * mm, 'y' : -73.85 * mm}, {'x' : -165.34 * mm, 'y' : -107.38 * mm},
{'x' : -139.41 * mm, 'y' : -139.41 * mm}, {'x' : -110.25 * mm, 'y' : -163.44 * mm},
{'x' : -77.03 * mm, 'y' : -181.48 * mm}, {'x' : -40.99 * mm, 'y' : -192.84 * mm},
{'x' : 0.00 * mm, 'y' : -197.15 * mm}, {'x' : 37.62 * mm, 'y' : -193.53 * mm},
{'x' : 73.85 * mm, 'y' : -182.79 * mm}, {'x' : 107.38 * mm, 'y' : -165.34 * mm},
{'x' : 139.41 * mm, 'y' : -139.41 * mm}, {'x' : 163.44 * mm, 'y' : -110.25 * mm},
{'x' : 181.48 * mm, 'y' : -77.03 * mm}, {'x' : 192.84 * mm, 'y' : -40.99 * mm},
]
# PMT gains
# Extracted from Zurich's Xenon100 PMT gain database using examples/extract_gain
# File used: all120326_1544.gain
# A few of these gains are zero: we'll assume these PMTs are turned off.
# PMT 0 does not exist (real Xenon100 PMTs start from 0), so it gets gain 0.
gains = [
# 0 -- PMT zero is fake!
0,
# 1 # 2 # 3 # 4 # 5
2675000.0, 2958000.0, 1936000.0, 2326000.0, 1964000.0,
# 6 # 7 # 8 # 9 # 10
1971000.0, 2104000.0, 1999000.0, 0.0, 2102000.0,
# 11 # 12 # 13 # 14 # 15
2044000.0, 0.0, 2177000.0, 2180000.0, 2265000.0,
# 16 # 17 # 18 # 19 # 20
2293000.0, 2177000.0, 2331000.0, 2099000.0, 2096000.0,
# 21 # 22 # 23 # 24 # 25
1899000.0, 2111000.0, 1874000.0, 1948000.0, 2106000.0,
# 26 # 27 # 28 # 29 # 30
2121000.0, 1987000.0, 1889000.0, 2473000.0, 2161000.0,
# 31 # 32 # 33 # 34 # 35
2192000.0, 2329000.0, 1112000.0, 2157000.0, 2106000.0,
# 36 # 37 # 38 # 39 # 40
2182000.0, 2001000.0, 1921000.0, 0.0, 2121000.0,
# 41 # 42 # 43 # 44 # 45
1852000.0, 1878000.0, 2088000.0, 1974000.0, 1940000.0,
# 46 # 47 # 48 # 49 # 50
2134000.0, 2132000.0, 2018000.0, 2207000.0, 2237000.0,
# 51 # 52 # 53 # 54 # 55
2201000.0, 1985000.0, 2173000.0, 2126000.0, 2288000.0,
# 56 # 57 # 58 # 59 # 60
2140000.0, 2170000.0, 0.0, 2408000.0, 2253000.0,
# 61 # 62 # 63 # 64 # 65
2109000.0, 2134000.0, 1979000.0, 2267000.0, 2149000.0,
# 66 # 67 # 68 # 69 # 70
2164000.0, 2077000.0, 2170000.0, 2223000.0, 2325000.0,
# 71 # 72 # 73 # 74 # 75
2122000.0, 2343000.0, 2312000.0, 2090000.0, 1944000.0,
# 76 # 77 # 78 # 79 # 80
2091000.0, 1948000.0, 1974000.0, 2098000.0, 2134000.0,
# 81 # 82 # 83 # 84 # 85
2184000.0, 1992000.0, 2150000.0, 1980000.0, 1878000.0,
# 86 # 87 # 88 # 89 # 90
2093000.0, 2162000.0, 1901000.0, 2120000.0, 2059000.0,
# 91 # 92 # 93 # 94 # 95
2281000.0, 2214000.0, 2143000.0, 1943000.0, 1934000.0,
# 96 # 97 # 98 # 99 # 100
2410000.0, 2227000.0, 1843000.0, 1881000.0, 0.0,
# 101 # 102 # 103 # 104 # 105
1965000.0, 2368000.0, 1938000.0, 1981000.0, 0.0,
# 106 # 107 # 108 # 109 # 110
1732000.0, 2091000.0, 1932000.0, 2080000.0, 2145000.0,
# 111 # 112 # 113 # 114 # 115
1932000.0, 1806000.0, 1939000.0, 1765000.0, 2111000.0,
# 116 # 117 # 118 # 119 # 120
2001000.0, 1917000.0, 2082000.0, 2043000.0, 2027000.0,
# 121 # 122 # 123 # 124 # 125
1833000.0, 1972000.0, 2030000.0, 2139000.0, 1946000.0,
# 126 # 127 # 128 # 129 # 130
1988000.0, 1967000.0, 2190000.0, 2217000.0, 2092000.0,
# 131 # 132 # 133 # 134 # 135
2252000.0, 2170000.0, 2014000.0, 1953000.0, 1997000.0,
# 136 # 137 # 138 # 139 # 140
1966000.0, 1854000.0, 2098000.0, 1639000.0, 2229000.0,
# 141 # 142 # 143 # 144 # 145
1759000.0, 1987000.0, 1911000.0, 1858000.0, 1653000.0,
# 146 # 147 # 148 # 149 # 150
2036000.0, 1716000.0, 0.0, 1907000.0, 2165000.0,
# 151 # 152 # 153 # 154 # 155
1833000.0, 2126000.0, 2119000.0, 1763000.0, 1990000.0,
# 156 # 157 # 158 # 159 # 160
1869000.0, 1874000.0, 2030000.0, 2152000.0, 1917000.0,
# 161 # 162 # 163 # 164 # 165
1749000.0, 1668000.0, 2085000.0, 1886000.0, 1692000.0,
# 166 # 167 # 168 # 169 # 170
2094000.0, 1446000.0, 1773000.0, 2023000.0, 1737000.0,
# 171 # 172 # 173 # 174 # 175
1859000.0, 1887000.0, 1872000.0, 2013000.0, 2078000.0,
# 176 # 177 # 178 # 179 # 180
1796000.0, 0.0, 1770000.0, 2018000.0, 2220000.0,
# 181 # 182 # 183 # 184 # 185
2544000.0, 978900.0, 1795000.0, 1445000.0, 1988000.0,
# 186 # 187 # 188 # 189 # 190
2032000.0, 1915000.0, 2143000.0, 2096000.0, 0.0,
# 191 # 192 # 193 # 194 # 195
0.0, 2081000.0, 1730000.0, 1637000.0, 0.0,
# 196 # 197 # 198 # 199 # 200
1936000.0, 1665000.0, 1958000.0, 1976000.0, 1975000.0,
# 201 # 202 # 203 # 204 # 205
1885000.0, 2101000.0, 2014000.0, 1997000.0, 2001000.0,
# 206 # 207 # 208 # 209 # 210
1993000.0, 1915000.0, 2113000.0, 1985000.0, 1813000.0,
# 211 # 212 # 213 # 214 # 215
2156000.0, 2041000.0, 2060000.0, 1890000.0, 2162000.0,
# 216 # 217 # 218 # 219 # 220
1810000.0, 1988000.0, 1983000.0, 1946000.0, 1941000.0,
# 221 # 222 # 223 # 224 # 225
2134000.0, 1829000.0, 1996000.0, 0.0, 1903000.0,
# 226 # 227 # 228 # 229 # 230
2096000.0, 2150000.0, 1990000.0, 1949000.0, 1870000.0,
# 231 # 232 # 233 # 234 # 235
2070000.0, 1946000.0, 1902000.0, 2128000.0, 0.0,
# 236 # 237 # 238 # 239 # 240
1946000.0, 1652000.0, 1986000.0, 1852000.0, 1909000.0,
# 241 # 242
1932000.0, 2013000.0,
]
# Sigmas of the 1pe peak in the gain spectrum, from same file
gain_sigmas = [
# 0 -- PMT zero is fake!
0,
# 1 # 2 # 3 # 4 # 5
931800.0, 891900.0, 786300.0, 1035000.0, 947800.0,
# 6 # 7 # 8 # 9 # 10
932700.0, 1167000.0, 976400.0, 0.0, 1154000.0,
# 11 # 12 # 13 # 14 # 15
1168000.0, 0.0, 956500.0, 1235000.0, 1250000.0,
# 16 # 17 # 18 # 19 # 20
1611000.0, 1203000.0, 1084000.0, 1333000.0, 1006000.0,
# 21 # 22 # 23 # 24 # 25
1051000.0, 935600.0, 1014000.0, 1281000.0, 1147000.0,
# 26 # 27 # 28 # 29 # 30
608800.0, 941200.0, 959700.0, 1464000.0, 1180000.0,
# 31 # 32 # 33 # 34 # 35
1186000.0, 1244000.0, 542500.0, 1146000.0, 951200.0,
# 36 # 37 # 38 # 39 # 40
1274000.0, 1075000.0, 1181000.0, 0.0, 1153000.0,
# 41 # 42 # 43 # 44 # 45
895700.0, 921500.0, 1106000.0, 997000.0, 1030000.0,
# 46 # 47 # 48 # 49 # 50
1116000.0, 1167000.0, 1112000.0, 1172000.0, 1327000.0,
# 51 # 52 # 53 # 54 # 55
1134000.0, 978500.0, 1070000.0, 1114000.0, 1229000.0,
# 56 # 57 # 58 # 59 # 60
1102000.0, 1065000.0, 0.0, 1193000.0, 1194000.0,
# 61 # 62 # 63 # 64 # 65
1142000.0, 1117000.0, 1079000.0, 1333000.0, 1079000.0,
# 66 # 67 # 68 # 69 # 70
1165000.0, 1080000.0, 1107000.0, 1293000.0, 1248000.0,
# 71 # 72 # 73 # 74 # 75
1303000.0, 1227000.0, 1224000.0, 1048000.0, 930300.0,
# 76 # 77 # 78 # 79 # 80
1351000.0, 1056000.0, 997500.0, 1203000.0, 1210000.0,
# 81 # 82 # 83 # 84 # 85
1033000.0, 1050000.0, 1300000.0, 1042000.0, 1110000.0,
# 86 # 87 # 88 # 89 # 90
1106000.0, 1326000.0, 1185000.0, 1261000.0, 1136000.0,
# 91 # 92 # 93 # 94 # 95
1212000.0, 1210000.0, 1281000.0, 1270000.0, 1141000.0,
# 96 # 97 # 98 # 99 # 100
1374000.0, 1220000.0, 993000.0, 1221000.0, 0.0,
# 101 # 102 # 103 # 104 # 105
1010000.0, 1248000.0, 924900.0, 975400.0, 0.0,
# 106 # 107 # 108 # 109 # 110
908800.0, 1026000.0, 1039000.0, 985600.0, 1290000.0,
# 111 # 112 # 113 # 114 # 115
1271000.0, 1054000.0, 941500.0, 988600.0, 1087000.0,
# 116 # 117 # 118 # 119 # 120
1030000.0, 880400.0, 870500.0, 991400.0, 899400.0,
# 121 # 122 # 123 # 124 # 125
878000.0, 991800.0, 1090000.0, 1113000.0, 936000.0,
# 126 # 127 # 128 # 129 # 130
957700.0, 940200.0, 1219000.0, 1326000.0, 1234000.0,
# 131 # 132 # 133 # 134 # 135
1212000.0, 1184000.0, 974400.0, 942600.0, 929500.0,
# 136 # 137 # 138 # 139 # 140
1023000.0, 1037000.0, 950000.0, 1064000.0, 1151000.0,
# 141 # 142 # 143 # 144 # 145
881900.0, 960500.0, 879600.0, 907300.0, 948400.0,
# 146 # 147 # 148 # 149 # 150
834400.0, 966800.0, 0.0, 926600.0, 906700.0,
# 151 # 152 # 153 # 154 # 155
872100.0, 859100.0, 976100.0, 747200.0, 839000.0,
# 156 # 157 # 158 # 159 # 160
943700.0, 1224000.0, 1071000.0, 1123000.0, 814200.0,
# 161 # 162 # 163 # 164 # 165
888900.0, 1000000.0, 991900.0, 873800.0, 917900.0,
# 166 # 167 # 168 # 169 # 170
875000.0, 736700.0, 1083000.0, 822400.0, 1020000.0,
# 171 # 172 # 173 # 174 # 175
1088000.0, 1069000.0, 863000.0, 925700.0, 939000.0,
# 176 # 177 # 178 # 179 # 180
1114000.0, 0.0, 927100.0, 851500.0, 920800.0,
# 181 # 182 # 183 # 184 # 185
1285000.0, 874700.0, 1045000.0, 746600.0, 1415000.0,
# 186 # 187 # 188 # 189 # 190
895900.0, 1191000.0, 982100.0, 900900.0, 0.0,
# 191 # 192 # 193 # 194 # 195
0.0, 1268000.0, 1362000.0, 1308000.0, 0.0,
# 196 # 197 # 198 # 199 # 200
1287000.0, 1156000.0, 1169000.0, 1411000.0, 1127000.0,
# 201 # 202 # 203 # 204 # 205
876800.0, 1350000.0, 1131000.0, 1249000.0, 1477000.0,
# 206 # 207 # 208 # 209 # 210
1218000.0, 1122000.0, 1093000.0, 1275000.0, 894900.0,
# 211 # 212 # 213 # 214 # 215
928500.0, 1045000.0, 1009000.0, 894700.0, 885000.0,
# 216 # 217 # 218 # 219 # 220
947500.0, 991300.0, 1087000.0, 1160000.0, 1138000.0,
# 221 # 222 # 223 # 224 # 225
1124000.0, 1156000.0, 1090000.0, 0.0, 944000.0,
# 226 # 227 # 228 # 229 # 230
1113000.0, 1335000.0, 1182000.0, 983200.0, 1153000.0,
# 231 # 232 # 233 # 234 # 235
1335000.0, 1344000.0, 1103000.0, 1288000.0, 0.0,
# 236 # 237 # 238 # 239 # 240
1173000.0, 1226000.0, 942800.0, 1117000.0, 1182000.0,
# 241 # 242
1042000.0, 1096000.0,
]
[NeuralNet.PosRecNeuralNet]
# Number of neurons in the hidden layer
# Used to check if the number of weights and biases are correct
hidden_layer_neurons = 30
# Neural network outputs position in this unit. Will be converted to pax units.
nn_output_unit = mm
# Biases used by the neuron activation functions, taken from nn-missing_9_12_39_58.c
# Input neuron's don't use a bias, so there should be hidden_layer_neurons + 2 biases
# In nn-missing_9_12_39_58.c input neurons had biases, but they were unusued (random [-1,1]?)
biases = [ 0.89283, 0.89691, -0.93983, -1.07323,
-0.8617 , -1.32323, 0.88486, 1.25378, 0.12575, -0.83402,
-0.76243, 1.08109, -0.75161, 1.03818, 0.26586, 0.37391,
0.31579, -1.16333, -1.06323, -0.80685, 1.24958, -0.00742,
1.14161, 1.24745, -0.10054, 0.4158 , 1.07301, 0.6385 ,
0.23595, 1.05783, 0.96483, -1.72249]
# Weights of the connections, taken from nn-missing_9_12_39_58.c
# The first n_top_pmts * hidden_layer_neurons are for the connections from the input to the hidden layer:
# The first 98 for the first hidden layer neuron, the next 98 of the second hidden layer neuron, etc
# The next hidden_layer_neurons * 2 are for the connections from the hidden to the output layer
# The first hidden_layer_neurons for the x-output neuron, the next hidden_layer_neurons for the y-output neuron
weights = [2.05493,0.92636,-0.07739,-5.70877,-2.15994,-1.68442,-1.74991,-3.63212,0.1146,-2.58555,-2.62432,-0.86721,-2.96008,-2.16185,0.18565,0.36426,1.32725,1.99249,2.66945,1.79211,-0.33068,2.76363,1.09043,1.32375,1.63071,1.79625,0.9494,-0.84298,2.36222,0.27201,0.75649,2.49042,-0.92752,-5.57481,-5.11131,-3.1658,-2.43971,-2.61611,0.0204,-2.58531,-3.08329,-3.82233,-0.40126,2.24753,1.88408,1.06742,1.3493,-0.12143,0.28362,0.22002,0.1733,0.06058,1.31592,1.30374,0.69033,1.99221,-1.40047,0.00156,-5.75333,-5.08705,-4.67929,-4.14427,-3.32261,-4.61612,-1.08627,2.78948,0.97622,2.01232,2.19251,0.67192,1.84289,1.8475,1.7543,0.56183,1.24545,2.75256,-1.77259,-0.4908,-1.42492,-2.49187,-5.3287,-1.3724,3.57786,1.21876,1.31709,3.1033,1.57654,2.95589,0.97362,3.204,2.88453,-2.37381,-0.52906,1.34845,1.05559,0.87583,1.81941,3.21877,1.43748,1.65846,0.42018,1.86595,1.33972,1.23476,1.28782,0.72069,-0.56474,-0.86144,-3.35013,-0.03383,-2.69741,-2.86131,-1.80047,-2.87929,-2.69217,-2.4848,-3.67064,-2.42264,-2.25647,-4.03773,-2.92267,1.76435,2.04828,1.58122,1.60254,1.89119,1.09514,1.42131,0.73343,0.88368,0.84474,0.86234,0.86201,0.43219,0.94879,1.71763,0.30748,-4.18852,-2.77342,-3.07396,-2.3184,-3.03057,-2.80951,-2.91635,-3.08412,-5.5619,-0.74518,3.9755,1.17151,1.58207,0.92559,0.2255,1.1963,1.21842,2.43398,-0.93156,2.33953,1.71595,-0.07261,-2.74021,-4.36349,-5.50416,-5.49852,-4.39466,-3.68777,-4.51162,-4.51409,-1.51865,1.76933,0.33857,2.69841,2.29655,2.33987,1.87652,2.90099,0.67494,1.77809,-1.59501,-1.15055,0.21857,-0.04932,-0.64459,-0.7841,2.07596,1.25851,1.58492,2.04072,0.94734,1.35939,3.5689,3.41048,2.32757,1.83878,2.0014,1.31464,0.47773,0.8291,0.55422,-0.48389,-1.14893,0.33774,-6.09616,-1.15041,4.43764,-0.15532,4.68058,6.07366,-0.65949,6.57685,4.33021,5.83894,1.70635,3.50734,6.66992,1.1622,-1.78812,2.30537,0.73714,1.03665,-2.6978,-0.37175,1.19918,-1.0086,0.64276,-0.40735,0.25309,-0.60544,-0.41422,0.18069,1.52312,-3.24029,2.84407,3.70851,4.94112,0.57913,2.11343,0.56148,-0.78994,3.20052,3.06479,2.17007,-3.12543,0.54186,-1.47439,-0.02879,1.02874,-0.66741,0.75127,0.51892,0.36454,0.79795,1.66235,0.35742,0.88059,-3.76658,0.24887,1.79626,2.83274,-1.80493,-3.32972,-1.02671,-4.3179,-4.26355,-1.09372,-1.74034,1.53553,-0.03855,0.98382,-0.56386,1.11726,0.70666,0.07836,-3.60454,-2.5103,-3.22379,-7.31841,-3.64629,-4.88984,-2.5733,3.02269,-0.5127,-0.45519,1.85344,-2.52977,1.63422,-4.00975,-3.11833,-0.89919,-5.26051,2.73604,-1.90026,0.91214,-1.74015,1.79374,-0.7839,-2.44296,-0.306,-2.75093,1.67354,0.87866,4.00013,3.5341,0.69297,3.74312,3.08947,-0.4588,1.48949,2.72438,3.79018,2.96984,3.21476,4.10788,6.5633,1.22366,-0.51689,-1.41498,-0.39634,-3.3472,-1.07924,-0.69891,-1.86456,-0.6334,-1.3506,-1.03199,-0.52416,-0.41431,-0.59201,-1.33503,-1.72303,3.64089,5.28397,3.55092,0.85984,5.03841,3.70591,3.69833,4.149,5.1432,2.82628,1.77557,-2.89258,-1.01736,-0.00278,0.14397,-0.68838,-0.02492,-0.51071,-0.21256,-1.28562,-1.64894,-3.19531,0.97157,0.24302,1.58204,4.05524,2.81764,0.94074,1.30125,0.73577,-0.55402,-0.06123,-1.45868,-1.96723,-1.49383,-1.73205,0.1076,-1.45533,-0.60758,-0.11945,-1.6039,-1.93833,-1.99417,1.70366,-1.57976,-4.712,-4.04855,-0.31238,-1.88028,-1.43033,-1.54117,-1.18115,-3.535,-1.868,-1.0212,-2.84762,-1.12519,-1.503,-0.71986,-1.99997,-0.84435,-2.92716,-2.04643,6.14439,6.3825,4.90892,5.57035,5.32348,4.91583,4.65557,5.22237,0.76719,6.35304,13.67053,0.01745,-0.78189,-2.75848,-2.06314,0.3763,0.69809,-2.35539,2.02033,1.67268,0.48864,-0.03484,-0.03205,-0.33143,0.27928,-2.33713,-0.31681,1.28232,0.27467,1.24633,-0.96309,-0.69952,-0.88223,-0.12653,1.73243,0.35691,0.4683,3.3198,-0.46926,1.93957,-3.92713,0.57167,-1.08848,-1.23007,0.14865,-1.81206,-0.62358,-0.739,1.31691,-0.12551,0.97852,0.0307,0.36463,-0.47248,0.70964,-2.14158,-6.21973,-0.15637,-4.84179,-0.03061,1.92909,1.48417,-3.38741,-0.20533,0.23011,-0.08076,-0.00349,-0.08049,-0.10649,1.21401,0.89878,-0.53007,-0.30038,-5.09889,3.33855,1.46888,-3.82387,-2.29029,-1.51487,-1.80343,0.19447,-0.62742,-0.87609,-0.10855,-1.90236,-4.78419,-1.35487,-6.08832,-0.69638,1.64257,-2.53529,-1.78477,-4.27315,-0.53286,-0.85339,-0.74947,-1.70608,-3.57672,5.55443,4.51682,5.43733,3.25261,4.92204,4.72114,4.24342,0.26455,-0.15986,-5.8148,7.59677,-0.5536,0.51509,1.04214,1.31196,0.47559,0.39974,1.82798,0.12257,1.48918,1.80256,2.45938,1.33301,-2.19842,-2.97587,-6.67834,-5.71298,-4.42533,2.19806,5.04689,2.022,2.59097,2.73042,2.82033,1.3836,-1.71088,-5.54238,-6.74591,0.63462,1.26606,0.77018,1.9975,1.6783,1.0385,2.44552,2.543,1.09506,3.07401,-0.49673,-1.96084,-3.74622,-4.6651,-2.20224,3.2258,-2.41992,-2.31652,-6.94555,-0.19056,-3.52206,-4.87756,-9.01532,-3.35688,2.97659,0.87744,1.20522,0.89623,1.67063,3.40953,1.29073,2.49608,2.35,0.11914,-6.30263,-5.3453,-5.08513,-6.40832,-6.77855,-1.48043,1.77188,-0.39312,-0.30895,0.61542,2.58078,-0.47202,0.3857,2.22643,1.74457,-7.10406,-3.55734,1.17486,4.01168,2.06692,1.4474,1.65711,1.88018,-2.79321,-1.1998,4.68739,-2.70689,-3.69133,-1.72101,-4.237,-2.07569,3.84586,0.85898,2.63201,0.01103,1.59658,0.43651,0.14737,0.33271,2.01717,0.83741,-0.2098,2.31423,1.70646,0.44969,-0.58627,1.26013,-1.20358,-4.79591,-1.68411,-2.53173,-3.32994,-2.90888,-3.63638,-2.03214,-3.80418,-2.89512,-2.85936,-4.87132,-1.33246,6.05654,2.28471,-0.65205,0.84849,-0.05466,2.50921,-1.04092,0.23338,1.32565,-0.34015,0.2135,2.45402,3.09101,-1.11435,-5.32266,-1.68997,-2.27046,-3.4873,-3.04215,-2.34693,-4.20661,-3.77492,-1.12436,0.80441,2.32792,2.79601,2.93304,2.58529,1.38062,2.63633,0.72175,2.51243,2.20223,3.09686,0.51905,-2.70546,-5.86103,-2.17885,-2.47166,-2.85913,-4.08445,-0.11603,3.82175,1.55325,1.7557,2.18946,1.63056,2.66644,1.92493,1.7307,3.11315,0.32583,-4.872,-2.57211,-2.30856,1.69169,0.82842,0.69496,2.74927,3.09344,3.61529,-0.66053,4.7566,1.04801,-0.08721,-0.68521,1.42817,0.61742,-0.14554,0.70417,-1.16585,-2.45343,-0.10265,-2.70908,-1.86876,-0.58715,2.81401,-2.47207,-5.29529,-1.8444,-2.14431,-2.84946,-1.86677,-1.88586,-5.06853,-4.48385,-2.80776,3.64595,5.28144,5.44263,-0.57837,-0.76381,-0.7124,0.67902,-0.35366,0.04386,-1.39589,-0.84996,-0.85573,2.09311,-0.29496,4.95337,0.56453,1.56543,2.88706,-1.96362,-4.1847,-2.7479,-3.64716,-4.12477,-1.13199,-1.33668,2.60744,3.32449,1.75552,-1.49981,0.73553,-1.27907,-1.42302,-1.18681,0.61544,0.79715,-0.79416,-2.5138,5.8801,-2.31851,2.3982,0.88249,-2.13926,-3.73237,-1.36781,-2.1828,3.89276,3.49023,-1.05882,-1.2832,3.17102,0.93372,2.14919,1.9577,3.86366,-0.81659,0.3385,2.09788,2.26227,-3.05568,-2.70478,4.06836,3.40815,-4.48194,-2.64789,2.11881,-2.89103,-0.76763,-0.67738,1.64314,0.6195,2.395,1.13893,0.22936,0.60016,-0.1155,-1.42551,-1.64052,-4.47337,2.65422,2.55187,2.13893,2.57819,-2.75235,0.08723,2.20188,1.6766,0.34554,0.57507,1.5151,1.60332,2.28665,3.84268,1.75466,2.69237,1.15172,-0.28155,-1.42227,-1.60604,-1.74375,-2.52948,-2.13479,-1.94634,-2.08931,-2.89865,-2.61766,-2.11221,-1.73814,-0.83848,0.29968,0.97402,2.96274,2.04583,1.91664,-0.51525,2.22247,2.18074,1.4734,1.43246,0.72985,1.03047,2.55035,-1.10319,-3.37908,-1.83562,-1.53187,-2.0098,-1.61099,-1.74582,-1.1723,-2.0124,-1.64565,-3.08753,-0.96654,2.62871,1.77399,2.67533,1.90112,1.85422,2.70167,2.58959,2.63956,4.34147,0.40969,-4.06436,-3.1442,-2.64153,-2.58833,-3.05946,-2.06215,-2.78256,-3.05691,-0.14405,3.24387,2.38556,2.57474,1.22044,2.08193,5.3872,-0.67967,-3.22986,-1.57721,-2.40855,-2.93492,-3.16654,0.8139,2.51495,1.28052,5.80786,-0.83731,-4.35371,-2.8402,-2.41212,-0.60334,-0.56416,-0.46191,-0.83035,-0.8883,-0.39496,-0.20008,-0.61221,0.83044,-0.997,1.54848,0.48968,-0.01574,1.51981,-1.4332,2.89194,4.42584,3.55539,5.34567,5.34856,5.41014,5.79346,3.75278,5.13919,4.32107,4.31268,5.25549,4.03244,4.91588,-0.29055,-1.86427,-1.06197,-0.73345,0.71211,0.69027,0.12605,0.93826,0.65154,-1.07943,0.25199,-1.51703,1.41456,-0.14109,0.80665,1.81983,1.36069,1.28343,0.71867,1.8179,0.34527,0.24311,-0.65549,1.9419,-0.33225,0.60158,0.37659,1.0496,0.467,-0.19889,0.36592,0.17139,-0.81724,-1.31459,-0.07801,-3.9996,-3.54007,-3.05173,-3.15674,-3.6798,-1.60512,-2.53306,-2.77279,-1.2987,-6.00449,-2.20251,-4.2321,-2.13047,1.18868,1.05991,1.14005,0.43853,0.42365,-1.48469,-3.35034,-2.54516,-1.83545,-2.48713,0.45345,-5.82833,-5.40064,-3.7851,0.08152,2.20177,-0.2457,-0.93849,-3.95727,-1.24757,-3.67444,-0.09931,2.43026,1.96308,0.64327,0.71157,1.82354,2.50433,2.76126,4.14769,-0.94368,4.36976,1.96745,-0.72566,-1.59951,-1.9174,-1.75092,-1.79065,-1.61344,-0.44682,0.08684,-2.47371,0.82704,-1.05536,0.96145,-2.36334,-1.08366,-1.58099,1.78159,2.43678,2.49142,1.75151,2.85084,3.34495,5.40444,4.05012,3.08421,3.81422,4.09455,-0.28485,0.26049,-4.47407,0.01104,-0.42882,-0.06541,-0.10722,-0.8632,-0.0911,-0.50095,-0.14736,-0.79225,-1.73046,-2.41215,1.93876,3.8265,2.46886,3.45829,1.31372,0.30394,-0.40838,1.26222,1.03679,-2.8102,-3.07147,0.65796,-1.91783,-1.60471,0.41382,0.17039,-0.08944,-0.5324,-3.71262,-4.12422,1.56288,4.49004,4.17817,2.30751,-3.97398,-0.59138,-2.62504,-1.75521,-1.74857,-2.76388,-2.19118,0.31663,0.20776,-3.08574,-3.23907,2.38241,0.71136,-1.48706,-1.90553,-1.15995,-1.62553,-2.99514,-2.24109,-5.1031,-0.85948,-2.02965,-1.41328,-2.54792,-2.2821,-2.3377,-2.75363,-1.54158,-2.8315,-4.0539,-1.50306,0.17413,-1.4617,-1.98083,-0.52462,-1.05712,-0.5721,-0.67691,-0.58035,1.8781,0.167,-0.04213,1.47516,-0.52573,-0.1906,-1.3704,0.66433,-1.6388,-4.42057,-3.99757,-4.467,-4.24728,-2.5316,-3.77159,-4.09488,-2.92313,-3.12497,-3.3717,-1.93156,1.79281,3.53263,-0.49757,0.16245,0.47082,0.66972,0.41125,-1.03667,0.43934,-0.55653,-0.18251,-0.44368,-0.23611,1.09877,-0.63286,-1.62049,-0.03247,-3.11513,-1.99051,-1.69124,1.82955,0.60502,0.05813,4.247,4.46925,2.44435,0.82396,-0.93969,-1.12996,-0.0676,-1.24089,-1.95321,2.01073,1.11989,1.00825,2.05424,4.49073,1.73188,5.76164,3.50844,4.181,1.651,1.57012,-2.23075,-1.54836,-0.64741,1.42485,3.14146,2.52179,1.49627,-0.10197,2.88171,3.21389,3.77959,4.37829,1.35221,3.49907,-0.13232,-1.384,-1.5205,3.84703,-0.85033,3.56933,5.69129,4.1853,4.02399,1.47016,2.00142,-1.33928,-0.306,-0.29297,-3.24281,-4.07661,-0.46215,-3.98544,-1.41629,-1.28636,-1.04462,-1.97155,-0.04841,0.78669,3.23605,2.45647,1.79198,1.56579,1.20185,2.40744,3.01335,2.96843,2.94955,2.08972,2.31858,2.21181,-0.15512,-0.29904,-2.20224,-2.76205,0.65431,-0.58296,-0.07764,-0.91801,1.46127,-0.79129,-0.69313,-0.55906,-0.44745,-3.42054,1.37992,4.87406,3.72284,3.90719,3.27571,2.64693,2.70081,2.28209,2.15081,2.56865,-2.33965,-3.09012,-0.40034,-0.69942,-4.87996,-5.26152,-0.17852,-0.57029,-2.46044,-3.75503,-2.0827,-0.17133,1.07512,0.94858,1.82324,2.05516,3.01986,4.24404,6.39181,1.00692,-3.92104,-1.77295,-2.57603,-2.95304,-3.69151,-2.78162,-4.10832,-1.95045,-3.50363,-2.1194,-3.27523,1.15137,1.05404,-2.2172,-1.79699,-0.16005,3.91104,-2.54182,-2.63845,-2.80233,-3.78492,-4.84319,-4.94107,-0.43145,0.03589,-0.781,0.11279,0.01245,1.36412,-1.23474,-1.68936,-0.26118,5.49837,-6.48935,-0.7096,-5.89413,-1.92867,-2.04818,-3.07532,-1.29516,-1.37209,-2.32343,-2.67771,-1.65336,-3.30936,-1.47043,2.34386,0.58621,0.55214,-0.1112,-0.4248,-0.44396,0.21701,-0.03093,-0.08972,-0.18645,-0.41148,-1.48662,0.55831,3.63264,6.63129,-0.6499,-1.3027,-3.44807,-3.34776,-3.28381,-4.1403,-4.09503,-2.69911,-4.02994,-3.01103,1.12422,1.76681,-0.04628,-1.22253,-0.51678,-1.28539,-1.49327,-0.63953,0.90903,0.04586,-0.64855,5.39956,7.03617,5.97662,-2.57965,-2.38154,-2.2188,-1.53263,-1.50066,-1.74314,-0.39019,1.18481,1.00535,2.56381,1.44627,0.69073,2.5512,-0.2708,-0.73708,1.60138,1.152,0.69451,-0.07665,1.71186,3.17448,3.06981,2.83544,2.6973,1.36935,3.18682,3.24831,-0.29143,2.25602,2.2333,4.57343,1.5517,-2.11521,1.18256,-0.10156,-1.82773,2.0891,-0.95379,-4.57029,-2.14035,-2.90218,-2.84419,-2.45037,-2.07112,-0.82081,-2.00165,-2.36564,-0.81727,-0.98267,-3.50564,-0.92297,-2.47087,-0.27437,3.47786,2.16455,1.4755,1.81355,2.29389,2.18854,1.60614,2.51873,3.53362,1.07183,1.43561,2.05061,2.58133,3.04981,0.16419,-3.89132,-2.49627,-1.74057,-2.08264,-2.60843,-2.27341,-0.17084,-2.73237,-2.39653,-2.22107,-4.02996,-0.28717,3.47209,2.44525,1.96507,1.43042,1.39772,1.40723,0.97235,1.64332,1.77526,2.09395,4.10891,-0.03116,-3.23711,0.98002,-3.80702,-2.80154,-2.58932,-3.18094,-2.26675,-1.79795,-4.51602,-0.53937,2.71005,2.32241,2.46221,2.82876,1.59494,2.50437,2.49782,2.75909,0.12426,-3.3482,-3.34278,-2.35812,-2.5484,-2.95024,-3.61567,-2.85872,0.8772,2.28832,1.82722,1.55072,3.30215,2.68626,-0.83249,-5.18959,-4.42785,-4.32127,-0.09061,3.00548,3.80625,3.34844,-0.05863,0.02884,-1.67057,-2.51009,-2.72062,-1.7168,-2.48505,-2.56055,-2.1425,-1.28007,0.59031,-2.50745,-2.62357,0.44688,-5.63984,0.33151,3.47066,1.34944,1.45462,2.83183,0.99873,1.2755,1.9754,0.72026,1.46221,1.43506,2.36241,1.02112,0.64061,3.83096,-0.31248,-3.27197,-2.14924,-1.94471,-1.6804,-1.85102,-1.68911,-2.68643,-2.43131,-3.08967,-0.15068,-4.20814,-0.24324,2.8084,1.10527,1.60975,1.93927,2.23305,1.20164,2.13512,0.72418,1.06102,1.19978,2.68055,-0.62878,-4.06483,-2.3462,-5.31059,-3.4899,0.48707,-2.54496,-3.0383,-3.10525,-2.79267,-0.09469,4.74901,1.63,1.40982,1.73041,1.82731,2.10073,1.78103,1.58752,2.39009,-0.45525,-4.60365,1.15444,-0.78538,-3.64571,-3.88181,-3.30171,-3.76748,-0.18421,2.85068,1.93353,1.55886,2.01732,2.27171,2.62598,0.01415,2.73263,0.17171,0.22555,-1.87015,3.50392,1.82709,1.27663,3.04034,3.44112,3.65021,-6.19844,-3.08461,-0.83573,-2.45903,-3.59426,-2.39355,-2.37999,-2.1235,-0.02065,-1.26944,-2.101,-0.82358,-3.46085,-5.01537,-0.83066,5.05654,1.97834,3.27707,2.9957,-0.05079,2.46199,1.27873,2.0946,2.20491,2.23952,2.88247,1.0342,1.06258,2.55153,-0.32043,-4.85874,-1.77809,-2.43649,-1.41686,-2.02588,-2.27075,-2.4834,-1.98308,-0.62794,-1.52344,-3.63191,-0.78574,4.24423,2.68088,3.23092,2.99166,2.30648,2.19123,0.26733,1.32964,0.73797,0.90709,4.0617,0.23879,-5.2065,-1.66434,-3.30421,0.87349,-2.38858,-3.08548,-3.45931,-5.2986,-3.1804,-0.63358,3.59475,0.79649,1.38437,2.0687,2.66392,1.60752,1.03965,3.03699,2.63938,-0.61253,-6.14648,-2.11596,-3.52998,-2.13864,-1.28977,0.46983,-0.11185,2.42755,2.35776,1.45619,0.82504,3.26306,5.188,1.08478,-4.17712,-2.88644,-0.46108,4.02071,2.72913,4.72868,0.50182,0.43247,-3.06313,1.94917,-0.1937,-0.14483,0.34161,-0.77328,0.22188,0.32762,3.4131,8.7323,0.77498,7.51931,2.36991,-0.81674,0.54171,4.60402,3.31774,6.11921,5.32358,2.19735,7.22435,2.87141,1.71844,-1.59035,0.06322,-0.6851,1.12341,-0.12238,0.03941,1.1221,0.3467,0.28574,1.45338,1.03506,0.93429,2.57543,-5.02964,0.73794,2.93984,0.16446,-0.28836,-4.13425,3.80584,2.66085,1.9304,2.1686,1.44702,0.4226,2.13594,2.7674,-0.20574,-0.04785,0.06414,0.50954,0.60917,1.70609,-0.99591,-2.16467,0.37644,-0.52133,-1.79755,-4.37801,-7.46275,-8.58439,-0.55744,-3.67113,-2.72612,-6.72507,-6.22598,-3.65896,2.11232,0.50684,0.77645,3.926,0.84021,-0.80331,3.51554,0.00838,-0.76036,0.27997,2.42062,-2.73109,-5.48627,-6.74614,-7.35281,-5.9258,1.14583,2.09675,4.9773,0.84359,3.76332,0.66748,3.29886,3.86433,-4.4021,-5.94085,-4.53537,1.64978,-8.33175,-2.37101,1.88177,2.82818,4.57671,2.87578,1.55628,2.15613,3.50719,6.22691,0.07011,2.79661,-3.17111,-0.77937,-4.38764,-0.28946,0.05703,-4.41421,0.7788,-3.11878,-0.12287,-1.10169,1.68855,-3.04643,-2.78209,0.22038,-3.98934,-2.00224,-2.92902,2.04797,4.49329,1.7172,4.15068,3.00471,2.91701,3.57371,6.37337,2.63312,2.60255,-1.22892,-0.45173,-1.00985,1.33524,-0.48108,1.64089,-0.77353,1.33103,-0.02785,-1.01408,1.72012,-2.83663,-2.52542,-2.14544,-1.44358,2.1973,5.60563,2.93088,3.36839,5.25081,0.89758,0.78824,-3.99945,-3.88105,-0.8418,-3.15817,-1.13887,0.1372,-4.29418,-0.97328,-6.26697,1.15017,1.10566,-3.78374,0.08786,-3.47148,0.14426,1.79861,5.72893,1.83885,-1.59834,-0.45255,-1.61198,-2.79023,1.00498,-4.37439,-5.23355,0.38034,-1.34245,-0.1303,-1.60561,3.20619,2.04613,-2.12737,-1.2263,2.00012,1.53969,-1.25085,-2.08538,-4.56382,-2.22831,-1.16592,-0.65347,-1.1826,-0.44161,-2.00867,-0.58271,-0.61186,-2.5198,-0.96935,-1.96789,-0.66224,0.62576,-2.58181,-1.06521,-2.62804,0.99611,0.07867,1.73091,3.67877,2.50665,3.27743,3.28931,2.56648,1.59382,2.37369,3.57051,1.86103,1.70031,2.22758,3.1459,-0.91952,-1.55949,-1.50602,-0.40699,-1.12454,-0.94054,0.04165,0.15794,0.75391,-0.72755,-0.68405,-0.51956,-1.26417,-1.86358,1.08663,3.92737,2.67457,2.43673,2.61912,3.02047,2.05608,3.63348,4.1041,4.12942,-1.75337,-1.23451,-2.99159,0.70106,-2.24165,-0.87013,0.58961,-4.86314,0.24896,0.16396,-2.83147,-3.29576,1.37687,4.11806,4.73151,3.86005,3.79131,3.22417,0.54245,1.23646,-3.49861,-1.37168,1.13656,-1.17634,-1.93068,-3.69599,-3.46423,-3.39176,-0.71385,1.47152,0.19055,0.82748,1.89363,-3.88775,-4.23586,0.21036,-1.39304,-1.06738,-1.8586,-2.03194,-2.7478,-2.52852,-3.43915,-0.72985,-5.1068,-1.14897,1.49289,-7.91657,-0.52654,1.17565,-0.95693,0.54265,-0.12578,-1.10243,-1.49942,0.00527,-1.26026,-1.24512,-1.10267,0.95171,1.3627,6.71021,11.55944,8.83529,6.9799,2.71265,-2.76952,-3.41993,-4.66379,-3.54913,-5.83004,-5.83507,4.86625,2.87342,-4.45636,-3.95418,0.02156,-1.051,-1.50459,-0.83399,-0.48299,-1.78123,-0.93024,-0.4561,0.95324,-0.71629,-3.19348,3.60221,9.36459,9.1378,7.68706,6.55055,-4.16604,-2.68732,-2.64261,-0.31755,4.94691,3.13422,-5.28934,-1.82831,2.88054,0.10942,0.3491,-0.53579,-2.43625,-1.04558,-0.3924,1.13369,1.0823,-4.05478,-1.98053,3.05776,6.75358,3.08076,0.92132,4.76662,-1.59636,-2.49699,-7.28054,-0.94635,-0.53485,-0.8801,-2.96362,-5.34381,-1.88758,-0.31347,-1.59564,-2.66177,-2.70247,7.73997,4.37105,0.29766,-5.52183,-2.02867,2.80138,-3.1649,-1.20616,0.40649,-1.15737,-1.96222,-0.85702,4.49065,2.89923,0.74864,1.92091,3.30285,2.52236,1.05773,1.1602,3.70812,-0.17394,-0.91697,-9.40403,-0.03016,-3.19631,0.06242,-0.50496,-1.57097,-2.14855,-2.38489,-1.64212,-3.53326,-2.51206,-0.93899,-1.01107,-3.54438,0.21048,3.98624,1.82528,3.53768,2.47156,1.81568,1.51723,2.55178,1.30917,1.59472,2.10448,2.46936,6.04916,0.51658,-0.74962,-2.89452,-1.38643,-2.3702,-1.41098,-1.77146,-1.31242,-1.11414,-1.38703,-1.89697,-4.29273,0.29965,4.01206,2.18441,2.15106,1.74092,2.46394,2.19814,2.94456,-0.45816,3.21127,3.29693,-0.47266,-5.64873,-3.346,-2.41729,-1.84643,-3.06132,-2.5987,-1.91748,-2.98864,-4.30687,-0.10966,4.19365,1.23652,2.7295,2.7246,3.27965,3.68239,3.39482,0.40553,-4.34424,-3.17626,-2.41029,-1.41272,-2.40137,-2.67508,1.47397,1.34805,3.46048,3.62395,1.08467,-1.17017,-2.92687,-1.24331,-2.96516,-3.86554,0.03936,-0.97794,-3.46502,-0.06103,-2.6986,2.49371,-3.95429,-6.04518,-2.07696,3.19107,-8.48948,0.63786,-9.22846,-5.2956,-0.92386,-9.10558,4.05932,-6.57105,-3.37405,0.5901,-1.62574,4.44431,0.37991,-0.30567,-0.29716,0.38596,0.38465,0.10172,-2.06521,0.5936,-1.87687,-0.0789,-1.41589,-0.29376,-0.9816,2.74294,2.45044,0.94948,5.36771,-1.78034,-2.35095,-0.89732,-2.09052,2.8841,3.03726,-2.41781,0.39874,1.74248,-0.826,0.18867,0.03677,-3.11589,0.1411,1.14151,-0.59504,-0.03049,-2.19884,0.77572,-1.79676,-0.28676,-0.73264,4.91739,9.3009,2.7147,4.45704,4.98772,5.23353,4.82498,-1.4976,-2.96312,-0.68957,-0.64499,-2.70741,-2.98762,-1.03749,-0.51622,-2.35621,2.24235,-0.93655,-0.69407,-3.31685,2.38593,-2.82281,3.3879,1.32623,-3.67498,-1.43426,0.62906,0.25852,-3.26378,2.63579,6.55794,1.39075,-1.42303,-0.63444,-2.63441,0.00958,-0.57782,3.43878,3.91359,1.78026,-3.21091,-2.38798,-3.03708,-3.29742,-2.97487,-2.54628,-2.94968,-1.70968,-0.12924,1.78247,3.20403,0.595,0.14835,1.28024,1.00107,-1.03363,3.46331,0.06566,0.97844,1.3231,1.63188,0.6993,1.08602,0.78432,2.30503,4.2894,-0.38459,-5.4099,-2.08818,-3.68081,-4.0191,-4.04706,-3.56628,-5.02809,-4.40781,-5.75538,-1.46341,3.87353,-0.90908,0.13277,0.76311,0.3686,0.84145,-0.45145,0.62685,0.29927,0.10324,0.51115,0.24223,-0.36077,4.06717,-1.90723,-5.3208,-4.85393,-2.55781,-2.76874,-5.10935,0.37591,-5.43497,-1.98384,3.34218,0.45848,-0.18085,1.86856,1.19219,1.08137,0.77676,0.4727,2.38473,2.07514,0.62958,1.78314,-0.95493,-1.80769,2.89549,-1.37101,-1.49853,-1.77551,1.06837,2.5397,1.63019,1.74719,0.64638,0.89688,0.32059,0.95007,0.12718,2.83455,2.1287,3.94671,1.80699,0.40047,1.073,3.40219,2.07153,0.75473,1.47342,-1.61108,-2.34358,-2.76269,-0.84696,-2.0595,-3.24557,1.23317,4.08863,1.76041,0.69637,2.71444,1.73341,0.283,1.60691,3.3023,3.73807,1.67507,2.72782,2.65516,1.70367,4.16252,0.3358,-3.11604,-2.04934,-1.19128,-2.21707,-2.36653,-2.65276,-1.77768,-2.01218,-2.00536,-1.55996,-1.63867,-2.55108,-3.87734,-0.05807,4.7301,2.34206,1.6313,-0.84659,2.4897,1.89069,0.66898,2.27333,1.51275,1.47428,4.04966,-0.45275,-2.76444,-2.41899,-1.3332,-1.63813,-2.15993,-1.45607,-1.31218,-2.92925,-1.69022,-4.26502,-0.79594,-0.23413,5.02757,2.96332,3.54995,1.8858,2.75131,2.89211,2.72007,2.88418,4.30754,0.10482,-4.2049,-2.29969,-0.83094,-2.3236,-1.81977,-2.93409,-3.13079,-4.33963,0.02288,3.81578,1.92988,1.8644,2.91476,2.71764,3.77826,-0.10171,-3.1592,-3.00259,-2.44157,-2.42618,-4.54741,-0.48628,2.47635,1.80951,4.36488,-0.11663,-0.94366,-1.53615,2.53926,1.99678,0.29552,-1.491,0.13553,4.0938,-1.96918,3.69931,3.60799,-0.35688,-8.34231,-6.30286,-0.28075,-0.31248,-1.79271,-2.88463,-6.23545,-5.14521,-6.04469,-7.046,-8.25231,-9.47826,-1.14891,-3.10519,1.39143,4.90848,3.50368,-0.84017,-0.19349,0.28851,1.02514,0.32177,0.78684,0.97053,0.36807,-5.6004,2.91342,-3.10434,-2.9433,-0.0421,-6.32457,-1.62852,-1.10478,2.40619,1.42547,3.05247,3.27231,5.03903,2.38748,-5.45339,-0.442,-0.27073,4.72675,1.35092,0.71876,-4.22416,0.94116,3.46626,-0.92554,-0.12104,5.65872,2.46958,0.80038,-3.85681,-1.31623,1.83557,5.80014,-1.28722,3.4425,1.49729,-3.91408,-8.38316,-0.35896,0.05446,1.30196,2.45377,1.86945,2.45696,4.93071,0.52399,-4.92973,-1.78496,3.30378,2.54891,1.09548,6.09757,1.54555,-7.44842,-1.06409,4.48788,2.91001,-0.6777,-2.2755,2.2743,1.33836,4.47918,-0.31718,5.26981,4.49721,-5.93761,-5.69805,-3.11169,3.04185,-3.42858,0.8475,0.03719,-0.57603,-0.05538,-0.92739,-0.05703,-0.71187,0.11591,-0.32676,-1.0215,0.5039,-1.48005,-0.74065,-7.4519,-6.15628,-7.48076,-1.19635,-4.08062,-0.34403,-2.55628,-2.42632,-3.26438,-5.50224,-3.86688,-3.29083,0.31008,0.65797,2.28914,0.33768,0.24996,-0.87997,-0.95789,2.6393,0.69656,-0.10501,-0.02063,-0.83786,-0.405,-0.19432,-0.1626,1.15621,1.95721,1.10554,-4.44991,-4.51843,-4.91322,-2.16958,-1.41665,-1.10659,2.44096,-0.88607,2.4439,0.76766,3.2251,0.46917,-1.60363,-3.44796,-0.00806,-2.34535,-1.68076,4.75274,4.11851,3.02096,2.73508,-1.50806,-1.3009,-2.02997,1.01062,3.4144,-2.64971,-2.7306,2.08723,1.96901,-0.59024,1.15689,2.57281,6.2463,5.36773,0.71917,3.88594,6.19818,1.45944,6.44323,2.32803,-0.97511,-1.51677,1.54179,7.11486,3.01876,5.60273,2.7187,4.82844,2.23107,0.57737,1.77998,0.4889,1.6648,1.88649,1.10449,0.32221,1.39675,0.83223,2.10868,0.31194,-0.21016,-1.07642,-2.44327,-1.47368,-2.25736,-2.26528,-2.77968,-2.46707,-0.91099,-2.3098,-1.70739,-2.47133,-2.6238,-3.89149,-1.04494,2.33773,2.20635,1.42721,0.54077,1.34128,0.75462,0.79976,0.52245,0.75369,1.80798,1.939,2.39704,0.78824,-1.79806,-2.5764,-2.40983,-2.13319,-1.79496,-2.46298,-2.68584,-2.20685,-2.52975,-2.63161,-3.71762,-1.07025,3.44167,0.98059,0.82072,2.06669,1.65784,3.12656,-0.35314,2.10808,2.03059,3.76376,0.41454,-2.62468,-3.56003,-2.59134,-2.84546,-3.22998,-3.01012,-3.15384,-3.74801,-1.85891,0.98656,2.13995,3.03435,3.08202,2.54797,2.7987,1.41019,1.8994,-0.78957,-4.92386,-3.73032,-3.69251,-3.2709,-3.84095,-0.3063,2.24814,2.2428,2.21266,2.24599,3.31068,-0.71537,-3.02572,-1.53224,-0.81774,3.93321,2.74273,-1.03888,-0.69141,2.80057,2.89669,0.95013,-0.02601,2.62203,2.34622,1.13198,-0.03699,2.01032,1.37689,-0.72448,0.5328,2.05585,2.74363,-0.39109,-2.97533,-3.80135,-3.27915,-1.98071,-3.70871,-2.49118,-2.10892,-2.38706,-2.18955,-2.75272,-2.71216,-0.74462,-3.33469,-4.61839,-0.50497,3.84662,1.17609,1.94042,1.32774,1.03301,1.38139,1.61179,-0.10425,1.79719,1.74973,3.77723,-0.37339,-4.95555,-3.42642,-3.30158,-2.25685,-2.58562,-2.04707,-2.23659,-1.79241,-1.22889,-3.04823,-5.83301,-0.43852,4.16566,2.59217,-0.26189,2.7035,2.30363,1.75037,2.7182,2.33108,2.91146,0.33496,1.17133,-1.9686,-2.86721,-2.7084,-2.29512,-1.96403,-3.30011,-2.52237,-2.54625,1.50824,1.97314,2.75205,2.38544,2.19122,2.22088,3.22098,4.92459,0.00306,-4.01066,-2.72837,-4.20632,-3.52076,1.26478,3.9567,3.24085,1.858,2.49864,3.50685,-0.6891,-0.09233,-0.01044,5.1132,2.51167,0.41528,0.53697,2.03567,1.38487,1.3119,-0.36639,0.21435,0.61629,-0.8023,1.3828,1.41108,-0.26537,-2.12795,-4.68043,-1.71135,-1.45679,-2.69344,-3.12899,-2.48361,-2.06289,-2.84438,-2.90179,-3.24763,-0.65203,2.04105,3.72178,3.85015,1.5123,1.31258,1.17769,-0.10791,-0.40241,-0.36569,-0.30306,0.80425,-0.37148,1.62677,1.97281,-0.91247,1.85394,-0.49302,-3.64728,-3.22082,-2.38874,-2.97381,-3.50802,-3.18613,-4.9722,-2.68805,0.56447,1.8847,2.40789,1.3242,-0.61682,3.23529,1.06294,2.3079,-0.80074,1.1969,2.22098,2.83055,1.77316,1.36303,-0.79662,-4.44942,-3.24016,-3.92862,-3.2139,-1.0077,-1.73936,0.208,1.55955,1.85464,1.89073,-3.01616,3.99889,3.54752,1.61988,-0.58074,2.38716,-0.69976,-5.18925,-3.62823,0.50946,2.57458,1.73329,0.9524,3.911,-0.23675,-0.08911,0.52023,1.23378,-1.56839,-0.92231,1.43248,3.27169,3.06036,1.79769,-2.38705,-10.10739,5.65569,8.56688,-2.15854,-6.88785,10.60706,-6.91998,7.58699,2.41143,-7.41914,10.35986,-4.24221,-10.97352,-1.8979,3.0797,-0.4785,3.99186,-7.17299,-2.68266,0.47653,-11.77108,-2.19055,9.52314,9.04334,-3.99081,4.32208,-11.6703,0.7666,-9.5206,-11.55083,0.95402,4.88098,7.4705,7.80808,2.87936,6.37226,5.03745,7.03276,-7.75866,5.69802,-4.01009,-7.56241,1.785,-13.49067,-10.12091,-9.79866,3.43612,1.98439,-13.44981,5.00885,4.28017,-5.46968,-3.70556,7.26915,-1.77214,7.58859,7.63089,11.19632,6.44065]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment