script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 44644
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3421393.0843342682, 3440787.9530783473, 3456085.9504093104, 3456920.085105781, 3480996.9538779287, 3486043.42380631, 3502459.375, 3506295.3125, 3520049.1606302084, 3559789.0625, 3565542.0311005055, 3567012.7775186677, 3596509.375, 3600234.375, 3604309.2933216346, 3607135.9375, 3607300.7062208382, 3611763.510738873, 3619567.908351985, 3619709.375, 3621003.667438056, 3621873.4375, 3622365.286328307, 3623394.9802751453, 3632634.267001079, 3654112.23168705, 3656356.811839024, 3670180.6210833094, 3677555.6474312963, 3684167.922637747, 3685935.1918261456, 3704031.25, 3706651.4761234224, 3711333.446946185, 3720764.9014820848, 3730095.6643703156, 3736554.502614627, 3739452.3389650467, 3745946.875, 3759505.74372898, 3763324.949688875, 3778657.8125, 3779907.01581469, 3780042.1875, 3783532.0017143246, 3788723.910486139, 3789969.209297791, 3790554.6875, 3794439.182294425, 3797416.372273056, 3805798.574717114, 3811517.1875, 3825349.5801158473, 3828576.0505288364, 3832568.75, 3834433.138087126, 3836219.8309431653, 3837271.875, 3838659.9773407164, 3852263.640996151, 3894731.25, 3896052.664461344, 3896741.8737501423, 3898896.875, 3921390.4151090304, 3922785.9375, 3923553.125, 3924576.7305024434, 3925754.4615029953, 3947674.1627792, 3947843.75, 3951376.56156872, 3952517.1875, 3954336.395785864, 3958201.781035048, 3959265.625, 3960440.734932062, 3960449.97502477, 3962397.3375362414, 3962668.3497417076, 3967565.733746714, 3967571.1848329757, 3971261.5473811813, 3971261.8474164363, 3981379.401136978, 3982034.375, 3984542.611895036, 3987808.8698853715, 4001262.082328967, 4011006.25, 4021118.5347965923, 4021615.447452387, 4027493.60050772, 4042839.0625, 4050457.8125, 4053278.125, 4056433.534693445, 4056636.865226886, 4056891.9039931456, 4060939.4710212504, 4069927.294110286, 4070493.2318836814, 4076982.8125, 4093765.663902752, 4100794.0405525803, 4115085.9375, 4118139.0625, 4119033.5802285746, 4145842.3293267353, 4155774.76490865, 4155787.9533436727, 4157944.219596, 4157946.5775424484, 4164729.0818892703, 4173375.0, 4177573.1240687035, 4182807.527393439, 4188603.3408976896, 4193795.3125, 4195668.591627353, 4208187.325205466, 4219615.625, 4221467.536633524, 4230236.864528739, 4233243.841121627, 4241952.613347374, 4247350.910665196, 4251826.524236918, 4251826.5625, 4252077.261254349, 4252099.617249871, 4255975.478853098, 4259957.599060474, 4270921.049276484, 4273313.484736622, 4274054.6875, 4277039.0625, 4288593.75, 4298524.707081919, 4298895.131661708, 4312535.180986456, 4324309.209795195, 4324650.246536015, 4326322.124179255, 4337292.659767444, 4343293.75, 4345504.08620892, 4351899.977193869, 4352709.072334772, 4352807.8125, 4353449.826817607, 4358659.198112501, 4359830.832629619, 4360003.483990526, 4362839.0625, 4365097.982745559, 4367866.431523865, 4368540.355397762, 4369215.901874344, 4369759.814836347, 4369798.137506224, 4370280.672944915, 4370482.451046438, 4370715.678887705, 4370779.346255169, 4371389.605581321, 4371441.677394713, 4371453.18464988, 4371719.632568794, 4371732.1957855765, 4372072.295075306, 4372549.64497266, 4373082.405528861, 4373084.718824656, 4373098.131103983, 4373377.875493622, 4373781.101659543, 4373992.202781706, 4375517.904361566, 4375523.322929288, 4378505.426122244, 4379504.6875, 4381206.496478091, 4382014.040067612, 4384264.0625, 4385494.310067594, 4385691.636343041, 4386151.5625, 4386840.625, 4387166.968870682, 4387173.4375, 4387608.983937882, 4387613.207873136, 4391125.775562529, 4394342.875401712, 4394838.632592119, 4394878.377367268, 4396126.5625, 4397227.396990304, 4398663.985322435, 4404556.25, 4405109.072379975, 4412607.677705022, 4423934.375, 4432704.527896456, 4441828.406373665, 4441829.823383761, 4441896.875, 4449533.744913607, 4523635.828918225, 4530346.986292518, 4530359.12540257, 4533917.1691392055, 4534101.682532372, 4536800.0, 4537341.819287414, 4539313.023617826, 4540480.525693671, 4542249.951845221, 4543178.658439687, 4543878.125, 4544857.751810292, 4545020.603015572, 4545733.815707426, 4571075.0, 4641671.392331274, 4656774.309646454, 4679271.875, 4688693.75, 4734962.5, 4769006.393993642, 4798946.672644515, 4806968.866383877, 4810229.6875, 4839623.4375, 4840875.8993278025, 4841034.605960764, 4841207.447065435, 4841529.6875, 4841659.859895415, 4841968.472593004, 4842027.017897312, 4842038.515644502, 4842284.375, 4843360.787524444, 4843439.0625, 4843586.932157495, 4844091.675312011, 4844639.0625, 4845296.3783192225, 4845310.133773446, 4846207.170270984, 4849068.989643668, 4851131.573137589, 4892131.63394347, 4893664.359869658, 4910757.652132537, 4947956.150121062, 4948940.473617966, 4949753.125, 4953950.263320906, 5001420.3387120785, 6374873.352902862, 6904967.572118222, 6906476.5625, 6906535.132172982, 6936670.656175366, 6939792.926097712, 7005243.633958151, 7029901.41000912, 7030260.138234808, 7030261.963676732, 7105572.462261752, 7105755.819322844, 7107268.698053708, 7180705.19508911, 7180898.770336787, 7183148.4375, 7183462.499414519, 7183803.87436645, 7184160.79906314, 7184438.310020982, 7185165.625, 7186731.225364156, 7186799.701127029, 7188855.292640075, 7191726.35103249, 7193139.5172830885, 7193930.171150834, 7198545.080577678, 7200476.5625, 7202777.296453321, 7202852.96161006, 7207159.375, 7208654.641990477, 7244434.375, 7263100.821112734, 7263505.295117647, 7265923.224836881, 7267655.525176239, 7296971.919362241, 7297462.5, 7297530.912548924, 7297548.4375, 7297576.52320105, 7301293.144145878, 7304428.384419552, 7307785.9375, 7308789.815083832, 7309608.20890835, 7310578.125, 7314138.380130592, 7318829.091339178, 7320148.256747202, 7322252.380369475, 7325892.1875, 7326096.844958088, 7335046.875, 7335161.130489749, 7343022.655500029, 7349321.962928001, 7350943.75, 7371662.000122857, 7375611.014253181, 7376721.056027693, 7376925.34377556, 7377496.077439458, 7378811.191879429, 7378850.861401276, 7379337.159438461, 7379555.363916729, 7379888.718292925, 7380152.251207744, 7380636.813595112, 7380680.991575553, 7380853.62046175, 7380889.357227361, 7381067.64492806, 7381680.22675373, 7382256.451204903, 7383266.820011038, 7383281.776646067, 7383755.671494105, 7383976.013685477, 7384584.305252476, 7384606.25, 7384622.471263133, 7384717.313932334, 7384807.901807047, 7384843.930315531, 7385102.367218173, 7385123.4375, 7385262.824719004, 7385675.429923641, 7385830.7616131315, 7386107.8125, 7386110.9375, 7386127.5879564425, 7386490.660914338, 7386668.647964742, 7387732.42213786, 7387734.579443954, 7388450.47046216, 7388786.355613405, 7388842.129105282, 7389514.291759741, 7390485.263118772, 7390729.6875, 7390836.983608052, 7390875.755924713, 7391209.201939375, 7391273.4375, 7391679.947711315, 7391745.3125, 7391752.008325138, 7392117.988404413, 7392185.787915151, 7392228.484149865, 7392589.847078982, 7392714.0625, 7392870.223770246, 7393133.881169499, 7393529.6875, 7393641.003613486, 7393645.3125, 7393818.01418526, 7394140.824600785, 7394771.205920675, 7394804.314586585, 7395653.125, 7396595.020001558, 7397628.125, 7399875.3506257655, 7416396.832229268, 7423594.102896946, 7424770.3125, 7428442.1875, 7428691.765737188, 7428761.18522908, 7429479.855909511, 7430045.3125, 7430081.25, 7430700.0, 7430835.434996257, 7431691.14860414, 7431732.8902599355, 7431962.5, 7432727.046182482, 7432892.4557859115, 7433113.12541958, 7433151.517840978, 7433282.263894787, 7435463.484640747, 7438128.062541487, 7438259.375, 7440044.339449039, 7440074.355162941, 7441679.970969273, 7445779.521423612, 7446226.820301897, 7446682.763152669, 7449528.597629719, 7450347.5993537605, 7451381.89565058, 7451441.712233095, 7453099.444039865, 7453334.252019142, 7457218.763769528, 7458262.849025998, 7459073.144770158, 7459780.678536373, 7461171.875, 7464483.895733196, 7465965.566782058, 7466470.3125, 7466537.777578291, 7467274.899677443, 7467719.697296672, 7468904.600432309, 7469937.369529824, 7470079.924512564, 7470084.375, 7470096.875, 7470407.62632466, 7470673.136942645, 7470694.289655843, 7470721.226755358, 7470751.527314849, 7470766.510245077, 7470834.023964903, 7470847.766371875, 7470925.0753962565, 7470968.352314482, 7470975.018488781, 7471028.217074503, 7471078.03443067, 7471244.428713508, 7471296.065271375, 7471355.570951531, 7471366.860063437, 7471473.4375, 7471496.875, 7471527.000370057, 7471624.684559235, 7471687.192226188, 7471690.472878492, 7471790.625, 7471979.184482613, 7471993.75, 7471996.194282465, 7472264.0625, 7472290.625, 7472449.420521182, 7472606.859724911, 7472667.1875, 7473422.143927711, 7473634.180205842, 7473811.305704267, 7473909.685867273, 7473957.8125, 7474373.4346403815, 7474529.406210889, 7474615.625, 7474636.051516058, 7474645.2010671925, 7474703.9097633185, 7474769.937537436, 7474903.702727942, 7475008.87206526, 7475542.4605447445, 7475741.622344341, 7475924.951323642, 7476058.430991443, 7476128.623268299, 7476348.328991317, 7476351.3468819, 7476441.385284096, 7476476.380336174, 7476520.3125, 7476530.495208676, 7476836.372967671, 7476985.51491302, 7477427.406551843, 7477443.262654859, 7477629.049688651, 7477631.003136182, 7478023.015756795, 7478531.25, 7478805.153991093, 7479026.529583644, 7479292.051775134, 7479738.404356879, 7480069.065054732, 7480237.334867045, 7480237.5, 7480457.4081879305, 7480935.74837301, 7481157.070001988, 7481165.354498714, 7481285.215396374, 7481339.0625, 7481391.68796832, 7481719.842530859, 7481768.668798423, 7481874.684720914, 7481930.085446156, 7482244.68108065, 7482336.757090339, 7483199.814958945, 7484148.910958783, 7485396.335024934, 7486416.195059465, 7486834.874669708, 7487680.868668565, 7488500.431025699, 7489355.267745988, 7491272.078760751, 7492534.375514642, 7493665.625, 7494339.0625, 7495146.226604701, 7495318.617525583, 7495567.056093341, 7497371.018606598, 7498148.4375, 7499849.066826256, 7501023.9502380835, 7506350.8521023, 7510334.375, 7512116.33351402, 7512431.25, 7512820.9972213525, 7514568.410311039, 7514580.102609287, 7515618.75, 7518207.8125, 7531815.313988313, 7531996.875, 7532124.2204057835, 7533215.525839545, 7534131.085782362, 7534408.800248026, 7534659.375, 7534760.558802905, 7535623.870652401, 7535913.604954653, 7537521.120139392, 7538004.586847025, 7538815.526093802, 7540705.389034855, 7540955.958167731, 7541607.165954273, 7542425.53261042, 7543088.962056487, 7543098.954017551, 7543329.8407333605, 7543500.6959563475, 7543640.625, 7543747.133428497, 7544121.254827041, 7544453.122318601, 7544466.759988745, 7544492.891661345, 7544521.875, 7544612.5, 7544680.275433483, 7544691.560229018, 7544742.915890825, 7545134.687304174, 7545227.480980675, 7545259.353651964, 7545269.381704859, 7545285.8117541475, 7545337.231738807, 7545359.408140122, 7545367.802268463, 7545414.602883843, 7545414.746764689, 7545555.724445289, 7545565.083078507, 7545675.580322196, 7545690.587837651, 7545700.7698590765, 7545729.5661531035, 7545801.307074904, 7545815.715875257, 7545845.637637219, 7545864.872378943, 7545867.1875, 7545961.2771224985, 7546057.343312667, 7546076.264794656, 7546093.75, 7546104.6875, 7546110.844716202, 7546152.825409255, 7546159.334823675, 7546195.070169049, 7546320.539850075, 7546324.463471191, 7546684.697592624, 7546797.972438204, 7546852.712983316, 7546885.434236124, 7546907.201673463, 7546933.71527362, 7546935.9375, 7547046.875, 7547073.4375, 7547079.6875, 7547100.701341157, 7547124.542084537, 7547127.328974179, 7547290.550850155, 7547290.625, 7547312.991779365, 7547314.69238641, 7547390.482575827, 7547407.194822436, 7547428.125, 7547458.199142189, 7547591.1554508405, 7547604.6875, 7547717.833666551, 7547744.597278822, 7547749.7280819025, 7547876.688056191, 7547901.5625, 7547984.375, 7548001.5625, 7548129.474146561, 7548192.053460927, 7548233.637793923, 7548448.187101682, 7548450.0, 7548564.962651993, 7548653.125, 7548822.818326118, 7549006.25, 7549006.965865089, 7549129.627122417, 7549162.480669813, 7549164.0625, 7549236.012809361, 7549347.7520308485, 7549432.412897354, 7549469.382898645, 7549518.060070801, 7549537.480583778, 7549781.25, 7549786.810169891, 7549789.916039179, 7549860.093993669, 7549900.0, 7550037.883772427, 7550051.5625, 7550079.591525001, 7550082.8125, 7550209.128769243, 7550217.1875, 7550347.420455472, 7550493.571748771, 7550546.479621136, 7550780.351086362, 7550849.868823214, 7550860.9375, 7550938.5543377055, 7550950.053337791, 7551080.132864485, 7551359.050593853, 7551399.381788866, 7551597.870993179, 7551653.32033769, 7551715.957440146, 7551736.465649985, 7551878.125, 7551996.875, 7552374.275634889, 7552864.0625, 7553005.600184268, 7553096.875, 7553228.953577945, 7553469.963469134, 7553573.982821304, 7554511.243611757, 7556470.3125, 7557764.0625, 7558757.179502851, 7561902.584721682, 7562354.776733081, 7562633.213846064, 7562650.0, 7563783.894437621, 7564370.115767468, 7566746.4888829775, 7566937.5, 7567381.283782631, 7568161.651156524, 7568985.528404622, 7569271.515266364, 7569600.752926701, 7570250.123285989, 7570486.671578335, 7570873.253070241, 7571063.52839518, 7571134.375, 7571368.571213292, 7571587.059683141, 7571720.164041372, 7571756.218486141, 7571778.125, 7571882.428036933, 7571965.625, 7571965.625, 7572513.714255219, 7572590.551157308, 7572661.900876344, 7572718.75, 7572805.246508559, 7572967.885785719, 7573113.214742741, 7573160.776764258, 7573220.34922076, 7573266.092007864, 7573294.964437771, 7573565.05152579, 7573574.287690891, 7573730.525248703, 7573815.302352121, 7573845.3125, 7573935.9375, 7573947.927377839, 7574066.6997066615, 7574156.25, 7574697.300745185, 7574698.941158928, 7574753.821463123, 7575019.281174677, 7575185.339010772, 7575279.888343431, 7575292.078799469, 7575491.234759424, 7575585.211782857, 7575592.826598249, 7575698.4375, 7575742.8672744185, 7575767.809192527, 7575784.375, 7575842.3262603525, 7575886.935670485, 7575968.283166443, 7576093.75, 7576167.423183701, 7576329.00319982, 7576377.776337856, 7576409.986424688, 7576447.985409624, 7576978.980875815, 7577007.364141713, 7577025.787658613, 7577181.25, 7577310.9375, 7577473.055799575, 7577478.125, 7577547.440924122, 7577563.428097163, 7577601.114311902, 7577651.462041508, 7577658.356647709, 7577698.264713693, 7577739.0625, 7577745.982010382, 7577746.875, 7577752.570192665, 7577753.436510344, 7577771.340871906, 7577773.4375, 7577839.865096292, 7577842.789176863, 7577847.405281837, 7577849.797356389, 7577853.75530082, 7577861.441292349, 7578027.914983463, 7578032.328024904, 7578073.992790741, 7578109.748378402, 7578114.343436026, 7578170.2829044, 7578214.0625, 7578233.660037191, 7578336.670378701, 7578341.515790444, 7578386.212314027, 7578400.7227847725, 7578492.1875, 7578502.24578057, 7578528.367257167, 7578528.786097044, 7578549.959048895, 7578560.547767107, 7578665.625, 7578671.013528123, 7578723.619989344, 7578725.0, 7578798.623863365, 7578868.485505516, 7578898.393247426, 7578919.270659901, 7578951.909753257, 7578985.9375, 7579010.9375, 7579092.098602161, 7579139.0625, 7579155.487494105, 7579298.792632497, 7579317.89839706, 7579356.905227923, 7579375.0, 7579382.429371304, 7579385.660339051, 7579393.439597971, 7579409.307036756, 7579433.69390818, 7579435.3451580275, 7579444.660803918, 7579596.311943472, 7579871.875, 7579889.310037679, 7579931.94370185, 7579978.89199872, 7580136.80269715, 7580145.403768141, 7580318.9890904855, 7580392.8587453, 7580448.4375, 7580460.509122686, 7580483.279338442, 7580601.634686419, 7580938.027099484, 7580990.625, 7580996.184566425, 7581073.4375, 7581117.286484091, 7581179.458500645, 7581194.689080962, 7581316.113221719, 7581396.145655612, 7581471.898196029, 7581568.002677195, 7581590.625, 7581617.650064521, 7581729.221142811, 7581742.378340154, 7581814.1573818475, 7581843.917167416, 7581969.483864584, 7581975.349341603, 7582072.916837498, 7582112.5, 7582121.102401924, 7582137.137586425, 7582531.629090254, 7582560.9375, 7582588.054062279, 7582638.445439519, 7582753.545674518, 7582996.875, 7583016.113197341, 7583135.346914722, 7583159.179077962, 7583396.6685597785, 7583549.007640093, 7583571.487189839, 7584105.926500821, 7584298.334780894, 7584386.414179119, 7584678.125, 7584707.8125, 7585468.063910681, 7585615.573571215, 7585637.660740246, 7586410.328026912, 7586526.065341918, 7586621.533487017, 7586963.707587618, 7587109.375, 7587225.307635832, 7587243.75, 7587266.615561704, 7587507.8125, 7587517.0194053175, 7587558.748959148, 7587578.99978472, 7587707.005164205, 7587727.206637271, 7587742.1875, 7587882.030732636, 7587943.838877422, 7587963.47483501, 7587982.749225832, 7588034.375, 7588118.496949754, 7588216.262376075, 7588252.485381204, 7588529.6875, 7588532.295620524, 7588544.595554089, 7588555.85978108, 7588571.234803395, 7588908.397815692, 7588929.6875, 7589145.3125, 7589939.310901958, 7589948.4375, 7590025.749648814, 7590083.965242409, 7590242.076451402, 7590429.6875, 7590503.257592643, 7590609.365714898, 7591042.8484070385, 7591105.181309836, 7591306.25, 7591311.877994276, 7591711.986871185, 7592082.035961163, 7592204.6875, 7592261.759540121, 7592707.730324002, 7592962.809196732, 7593109.6293670945, 7593352.43500131, 7593584.913695246, 7593766.9666414615, 7593793.75, 7594134.375, 7594166.586772341, 7594254.6875, 7594309.887396905, 7594323.494315624, 7594408.730457993, 7594540.108366472, 7594561.839949793, 7594742.51889687, 7594878.488869587, 7594960.925313821, 7595071.93991731, 7595132.210801538, 7595220.113996114, 7595240.625, 7595260.380494596, 7595391.430437891, 7595392.558592709, 7595433.150470102, 7595476.5625, 7595549.732609786, 7595623.143991802, 7596092.1127606565, 7596342.1875, 7596447.343262355, 7596773.207981053, 7596809.53358694, 7597073.768437757, 7597125.801721285, 7597434.375, 7597636.306021988, 7597740.03659344, 7598063.786792797, 7598205.701475918, 7598773.454943355, 7599062.5, 7599116.267205501, 7599566.838192521, 7599739.0625, 7600317.847934737, 7602219.861036384, 7605250.0, 7605734.375, 7612469.3755858475, ...], [8.825547001897688, 35.264184912579424, 38.592332563602476, 43.71393619192355, 7.632017814583038, 5.236106603837175, 54.321651520889894, 38.305175451413845, 13.150186632018393, 30.251492965472124, 40.50300497747193, 59.77382502617578, 56.285636714961, 85.22959266431369, 57.87181875435096, 42.08348711929671, 18.548922344519717, 16.146245040987495, 18.64979208107049, 64.07180443670873, 12.09652477863089, 39.83246658209493, 6.053574473344854, 34.92678474009902, 6.470293680365638, 115.52259435725362, 60.72602760944688, 8.850786459439565, 65.77067409117153, 6.168035624065725, 12.700056184758918, 46.51420216758848, 13.967427415587306, 5.650134678267872, 56.34746545257711, 9.647773855272664, 33.63141159551715, 33.6943719363611, 65.91648094504552, 30.49902092216203, 5.611266858385528, 95.25989733912309, 17.88839088105929, 56.91124546450608, 7.899801246205512, 11.957327540996225, 17.038255073155693, 50.43496941190129, 28.63940362004037, 8.725674249108101, 8.360497903520008, 40.92037682255535, 5.680546587772041, 21.374506960140224, 63.77418165779376, 11.677845507353016, 13.376842942838692, 36.01748183415151, 57.70502183089786, 8.075584753524977, 53.69774954428338, 6.674919406107324, 8.1273490645783, 29.099937245856513, 52.8027309263033, 86.0511670691686, 35.38324084174264, 41.29024441157266, 43.09252992051023, 18.68059687078668, 52.89950824794035, 14.937961005901656, 67.50381078586155, 17.032724584245926, 11.487381756603451, 60.96342828538318, 92.18030285391487, 56.109029637207364, 37.27370763378086, 6.686145084262829, 15.372859891683497, 19.784952536971367, 17.918665865928986, 19.821354342114386, 13.95188048029208, 76.9248775448391, 35.101825991805974, 13.312060064514815, 44.177774843014646, 102.09323263870415, 24.897902658905, 14.305373792117694, 6.463909595751666, 51.00430203803237, 33.389718948108666, 62.4124606909499, 15.608241521065137, 5.66751620174151, 8.142136188138922, 11.832520945784816, 12.502806072761802, 83.80007640601238, 47.049325971889836, 38.41247439548395, 11.614405908287496, 64.16835531393127, 46.71767100737518, 85.19864307408561, 9.454275654655525, 66.61079162680355, 9.746593322495519, 5.6405625243033315, 51.47082449827792, 43.755712991326185, 43.993456019510134, 10.670757013764625, 23.942867367346512, 70.4530033306496, 77.84899492566723, 14.370375899847746, 25.493645926124376, 40.145881507081725, 16.463182729221522, 21.069900423756785, 16.86808026837174, 21.377641340305633, 20.431798847967332, 20.387856850650113, 65.34013678097438, 7.318102447756908, 10.577879269366962, 6.139352717573142, 60.55244773467421, 25.022896894319008, 37.71082865388553, 29.66303665143218, 42.99598208000508, 35.40934108034215, 50.9129059438664, 55.424875288964216, 10.12058381429503, 25.640129698950876, 8.421399356386532, 5.545297458048379, 5.981616399215527, 45.56317359931897, 10.302105714664949, 14.855289838992485, 23.71675666133515, 68.1104880756543, 10.867387637930372, 25.461943148780787, 22.358974681789604, 16.930891139192596, 93.29566245132041, 83.4394678272291, 18.47846401619715, 72.53299487438423, 16.113443812963865, 107.10994243040606, 23.75082116306315, 10.331481415838672, 13.722214021206275, 6.774312728947577, 7.034547811499637, 28.567642074204613, 5.67504483819952, 15.173847799186882, 5.664809974129847, 19.231193002033585, 86.14781755056624, 9.048226163029591, 7.4623893588186805, 73.31898436469842, 50.802846678145194, 24.07966959696525, 21.757117441899624, 48.32891969509444, 28.06725130629807, 26.448474321877512, 18.77424570125072, 30.761916249260107, 43.20577683632047, 14.856691493822412, 37.17286111141334, 43.273994801912885, 114.77137237279472, 64.1358276366173, 44.283907184111825, 14.168905284781083, 40.12737980504572, 9.021268651351928, 24.07556379345034, 10.086292222564136, 12.405200123062214, 22.22201265826905, 44.59281391117979, 90.00997805791073, 8.78336824807592, 14.655284002122071, 46.55021360386791, 13.901209741796007, 91.32655668781265, 43.86848857532286, 14.366177776568508, 15.862244571327114, 15.486027432981395, 44.24714220961307, 10.267575844689357, 14.54319084776718, 89.64049825628976, 10.758764361671126, 45.15698653304829, 9.435002355892046, 33.542715308737634, 81.5455588011845, 22.441338111919883, 8.785851602607709, 27.606640787172303, 12.078203977490027, 113.25372207588569, 14.715126576080152, 16.177915063342564, 65.7169526947918, 59.065872892688205, 30.51024717240649, 19.783444082645115, 71.38160065457969, 36.24925598649582, 80.01283190839358, 80.11770398600201, 25.083647450805145, 15.404475614648995, 43.89847665432, 80.3576933128163, 31.481829514194587, 17.731135430933243, 29.740711597155563, 36.508020233063924, 8.56079877148167, 24.0436906721631, 5.980070310544802, 73.10812675866202, 112.35402015722254, 73.41589370076096, 56.022220507744336, 23.972577359934768, 21.372374070996642, 60.815700690796405, 8.944003353886519, 12.56466311349559, 27.009723362325502, 39.43490445905726, 148.69557687457964, 17.152411935657618, 45.8714663249924, 25.71479278774207, 10.975097737303981, 53.60036460389497, 49.10278099127543, 105.33320763913358, 23.08869289665808, 44.30443942539191, 48.131575525502534, 42.64002148206799, 10.065761342934383, 78.11802462842525, 10.045171423586131, 26.424124132872773, 7.549000012363909, 55.46208364133558, 13.227653976424241, 17.778708233194973, 37.25290217889573, 8.259296969495457, 22.07725185459389, 34.87205129899684, 98.1059653123829, 19.657133351789106, 10.057090059193827, 14.438862083225294, 14.816637667224878, 77.54367556380487, 6.085541047270248, 6.441239116975251, 39.186150525205846, 24.951569384437928, 34.42167127511089, 30.57892417401265, 5.38968126236522, 36.0125321306833, 10.040046415742843, 5.240595239681815, 57.612961394165694, 69.79078731129553, 57.9757825116686, 34.07669893301936, 45.253933112145454, 14.188491915226432, 39.88115400638649, 63.09566963076748, 79.97263500004992, 14.204950328748378, 66.36095949113319, 34.53432640513524, 20.498371847117554, 5.4084848724257775, 69.60506936042466, 186.00808246840833, 23.07066311719207, 107.0327823342622, 8.814167874857644, 5.771148133377961, 25.40364334291107, 29.706548674546763, 58.34943751705571, 11.081071813510308, 39.06502956861318, 43.35239264358236, 7.342937733484784, 28.06153750743192, 105.22726777536491, 5.897024136684353, 11.249834368586566, 37.76302602967296, 5.969913334868782, 31.451923480203327, 16.008647932652224, 7.367927182336604, 112.04934753741934, 18.34778295404739, 74.82204445805812, 18.430037643819425, 10.201184053090115, 17.455956182108327, 20.78726133658799, 27.476565388077947, 9.750647927980246, 17.49101172907009, 5.406222017119683, 43.411717746178894, 17.417488358336932, 6.977253614899838, 114.42645748917373, 35.22379854634355, 103.42102708086381, 35.78114759923939, 107.37039281422666, 11.270228939158747, 22.992097798112816, 32.22718057208114, 50.33302930423739, 16.342714501161055, 16.740909139217077, 33.86133970665889, 63.83461563141036, 30.864568486418047, 6.4060761641942605, 32.917112076255854, 145.91689082936185, 8.09039921135389, 11.463044842495483, 11.952362895981736, 26.725565711879707, 56.88551214973834, 8.411652413309948, 83.83255052347928, 64.42730626768278, 84.268444125388, 23.474695665030552, 81.23078280687027, 40.47122338683154, 21.93742671027949, 65.7626623616757, 29.30264089132306, 48.90509077160407, 6.734006089060408, 18.111950726224798, 5.874406428291435, 50.359149636169974, 27.31258878983482, 36.10098286992066, 74.04960969337392, 70.90630706740205, 54.766551459259055, 72.53784056848747, 79.33782345417043, 36.61434841431465, 22.541144784502258, 37.024594106703915, 13.932694309436549, 83.16993606144086, 8.481125927962475, 122.41752270544787, 21.442935055774903, 85.53086502820832, 44.18890448078693, 6.422948045281972, 17.915569499572744, 11.818911108551209, 30.290060760630706, 29.185310616865046, 36.58617249170596, 21.46816036996373, 55.4349806897515, 15.246415159752535, 58.79414345233757, 9.77685670388096, 116.49706245522927, 70.6291296352751, 21.302061996432315, 21.02156333163527, 10.832633473124687, 90.65806094533184, 71.22498518396361, 63.49180026407682, 38.10011490496541, 11.601712659326738, 54.531097107710956, 7.1909100428062835, 64.89522057195904, 5.7375124733846325, 151.54183850441498, 77.8826998831275, 121.48753221742687, 13.175353503909884, 29.878685726656744, 9.343073289614365, 47.99994824140431, 153.2110131979949, 20.808652296577982, 50.931351086380154, 20.079588210764637, 26.89671188799338, 45.26966880715217, 66.41895599453204, 10.974435211363854, 67.37450763612051, 7.0987507638051985, 5.393509594938301, 22.933393776090554, 54.42784330076815, 30.309533624962242, 9.17879109732133, 59.23872583948764, 17.493370309625927, 63.506292550571885, 38.241057506096695, 19.890097162794294, 54.96146652077957, 44.71367645775267, 6.2767713687657345, 22.57829952178236, 11.156729455842644, 8.33587551551113, 14.607184183004806, 39.90251689313402, 62.3805268087435, 6.95370191045723, 8.120694739781172, 42.06140543906758, 134.05012002128498, 22.455343962599528, 8.126525697739648, 44.54412323042616, 60.536423978471625, 33.270677056260006, 115.8584543055683, 37.9244705515294, 31.132184103417337, 54.197769559686776, 33.28631263191547, 34.20428990184352, 17.91768894752469, 87.45259980422644, 9.569642336834008, 25.194540044690598, 9.663436122040865, 26.623432357942665, 33.48708302971634, 11.1232399757131, 13.967805240394139, 28.6649631386042, 118.35856965048345, 106.82148863730495, 10.096619704151324, 61.240321675018656, 5.8580007005334735, 21.463874510199933, 5.834463302062842, 8.895257934878657, 14.759167919760262, 9.91552951008957, 25.62789849321757, 10.9622332779574, 73.00458722765964, 5.315164161967976, 104.21799486102545, 79.1851098171283, 51.05991850189562, 84.92432964033837, 13.543183121130273, 6.944586850380438, 16.393696050940797, 20.220342646761345, 21.639034091104232, 22.310967542667967, 78.18056296208415, 13.974759368905886, 14.81751458380735, 27.12320990588242, 46.06764390324344, 43.46225748824813, 25.64123487434767, 90.1825726739137, 29.51935389092205, 6.726327215437515, 55.30713958904805, 24.135004880048314, 19.530895345941335, 78.08039513472409, 31.137029456024756, 15.49324911480377, 33.07240198364212, 23.992460636454283, 123.80318962647279, 7.978696957352277, 19.369829885903336, 6.727118402877494, 7.251731447722172, 60.079679463368976, 17.674185050204382, 12.010212577044427, 145.04777413082408, 9.724544895234368, 17.735882413019564, 7.678635359273682, 8.28684949602569, 46.91361967625666, 34.34302355560671, 19.50229661677234, 25.69432172830077, 7.087332024413748, 7.320319342135171, 36.14623808113833, 8.649992772277258, 9.806159172567416, 19.623040566843503, 54.018048064007196, 17.362348334873616, 32.251895082812105, 6.3577658066357134, 5.4473731807673325, 30.608931139711736, 84.62932260687212, 84.73977206750327, 13.875262556843737, 72.79405626542456, 19.094009660224625, 8.234826596398646, 197.98958129351007, 32.223060544177244, 85.15569742782941, 95.01796376450629, 8.529735445931252, 30.203412504845573, 64.6353941285916, 79.96374963110496, 14.577466091771463, 12.435393084388593, 23.85563680558662, 145.44853216530788, 116.6317859085483, 26.68506931668975, 17.359015158487136, 11.326070740453604, 152.9048005922426, 52.308911978130794, 5.62850281495974, 5.580631912517586, 87.15737435278947, 11.297667811889326, 6.003167298699892, 85.34977251931375, 46.946786446311535, 9.883479666483808, 20.31098104267586, 5.754737784737964, 64.0126515023293, 10.251011279680034, 48.90976360134167, 14.520693038262, 32.71527929497677, 67.68471864150011, 16.504896899281224, 27.669433186344378, 14.387409644781801, 18.400192339959112, 10.39487410762441, 13.212680799451057, 12.17461798993701, 51.978760752126504, 12.590177846871873, 14.498320515686746, 5.6000679852051, 15.2995782175208, 23.524220011159223, 6.936732258328945, 45.14477618260289, 23.534604669451276, 38.38765871106898, 24.59199818361168, 77.94409371743461, 91.79041002419248, 14.599273547560587, 70.27184127809107, 14.790555791475148, 14.98914814646662, 198.63571673216393, 75.95406065230728, 83.27711489211406, 38.08287308362026, 10.539478776543795, 12.44412253299194, 56.081133311586456, 46.01540127028158, 68.21368617677057, 86.50232205382031, 31.73402045781886, 53.663138777067964, 244.31050929264762, 208.10008883024204, 18.973720538806145, 75.82947433661477, 95.00011459994204, 17.218372410136183, 5.5644523284636636, 10.91215442164654, 13.0149095386914, 41.666081723971786, 90.39368190329772, 8.58853090768604, 45.837718405224884, 18.1493723335683, 137.87785893408565, 75.10316738453723, 31.28249921225401, 57.346933834853424, 36.426647007019994, 31.340812043261153, 91.93727430668022, 119.1121172571655, 10.142558713188935, 24.40570947613522, 67.8822222647959, 20.013279875616465, 76.08019735154271, 20.381315001151204, 31.759644033837652, 26.890671391519795, 26.533388982181627, 28.147917633904676, 52.5729448838409, 15.236538856096063, 14.215048162299102, 22.5567049118686, 18.064110145622426, 19.786876313959826, 14.868016729735434, 97.2080938926542, 40.66910947152717, 19.63442827919862, 18.636901218316314, 60.44120291579732, 16.63830897561714, 36.38240061279548, 10.980933809670276, 37.76575666366491, 40.88364878560492, 62.985247509871826, 8.597744952175056, 5.524491537318576, 17.356151058610095, 19.09039171506827, 14.464035705272854, 69.06594366461901, 44.940953621794705, 58.751688370051596, 81.75017900276643, 7.489973502853119, 5.503810658436095, 13.147516827943111, 22.571339597036353, 16.380553230561468, 9.821830504407794, 45.195109486136296, 102.53001520426092, 19.513221555179452, 55.09529402494759, 49.84100598701674, 73.62541220639756, 151.13259779970969, 8.110243202458394, 17.526691032860125, 11.642444181556327, 105.40713264516356, 73.62603168721465, 12.97598222008073, 57.688644819875535, 249.35711410526608, 23.236549265031726, 61.61437813940203, 13.379598229714926, 84.97039971920995, 22.709701737956546, 35.88969514155052, 13.794474352826633, 99.69714979334127, 9.007893500261481, 20.89289865599116, 15.21070815234973, 35.72566009830854, 18.74221703831093, 41.026001079098705, 12.691189364815445, 37.88388272435436, 67.31534457474956, 22.109874660841975, 7.550411004635456, 27.916086573592594, 63.089383585144894, 9.026182285890224, 29.41038472366692, 77.99469048836616, 23.153441216967362, 44.71201368717921, 36.37435866043373, 106.1094708377733, 20.2183543632118, 35.72635515313926, 57.700608557112744, 104.28423580598216, 15.083343631534266, 17.080551681967265, 32.90761065809121, 26.317343595398384, 57.62178668479353, 102.08492221549423, 102.18607078168188, 37.38181550975622, 85.28705114652078, 8.034060702743993, 14.261991024398887, 53.14910452974266, 33.40835257516916, 35.924636680071494, 18.482437463077126, 17.44380281329968, 70.48945699575359, 77.16979497229615, 20.75518099710381, 27.663661391336902, 5.662077332103253, 46.975516231297235, 40.22796627814056, 12.38730768743441, 12.261712853108081, 72.90163348742686, 30.334896176012627, 13.153249185572482, 60.59890608543272, 58.91206597660829, 7.690764304794146, 19.832550117890094, 89.85390855891575, 18.378582433842148, 60.38462645016884, 13.585670970501162, 22.02420087626721, 57.2477126375108, 84.11986608142931, 36.41866177490888, 83.5756023901439, 91.24295741892841, 29.652780308754657, 19.796989598863178, 13.470222440067898, 6.471457951829195, 5.988236703194178, 5.391909402926105, 52.62273430241642, 20.961491139232184, 29.175094997638073, 182.5438922607874, 81.02594542584846, 6.406499492401245, 32.314342744478495, 70.42269033413545, 56.23471076257327, 61.68379796928775, 142.10091608580888, 29.640611821452303, 106.98582070178546, 14.13346724692017, 79.70968550629973, 22.372597640500047, 11.76618942320082, 51.87621432392734, 39.73400344952084, 36.12330571403007, 38.80906554101207, 26.36858087344237, 12.879152132569208, 11.586262483628982, 12.482907947466021, 55.630238404892616, 5.0815358349772435, 9.54500492607143, 12.346488183459458, 98.29581426774149, 5.592840991480903, 55.07338379427958, 46.60683495205943, 14.079081456276132, 68.5552432537319, 116.46823139636393, 14.020894458230195, 14.775479961333494, 5.5588949017346145, 16.453819099116597, 72.331597498094, 68.84356236771626, 26.882223243276556, 54.28432781168138, 10.113797372636842, 17.342154338786322, 95.45651347346352, 47.62648137832537, 74.161669283257, 31.337510338069453, 57.85255321740367, 21.877142541252812, 93.68423814305548, 5.085282847755795, 27.137195006735116, 150.384994775551, 20.886324172430506, 43.77776025139078, 56.98466038740304, 7.316580896670568, 10.07671294277801, 23.048759224447316, 5.712591280164334, 34.431702235959314, 23.46059662878464, 29.776407207486212, 10.518217278787509, 17.546330672599137, 6.498466936053708, 25.022629517842724, 86.05870420283459, 40.988689166014346, 51.60798647894873, 32.40070944234813, 14.135045834952884, 13.000279327856923, 11.987433801170996, 19.4744524475527, 70.08451775977566, 10.13102352253347, 122.97699048390604, 19.819960788872997, 23.093480273693203, 24.43771772343037, 113.19163515961903, 5.7174802293357905, 18.740713873622163, 30.97169661900816, 21.28942766402289, 46.56361417132592, 8.753684917207945, 22.984942100181737, 7.746354803520303, 142.5574535771536, 17.57843238835143, 5.887411160712418, 16.830528922232862, 164.96021466816268, 51.71664531853743, 29.434866931432705, 149.44271075896725, 29.541081869275224, 12.153474878724788, 139.2649769337276, 25.705568114897915, 26.646617376814323, 5.417015143868114, 30.580486151136306, 181.4117132440386, 14.880496098630587, 41.36085136806132, 6.287722610978627, 45.43538906599362, 73.30169212522094, 23.234569197078834, 10.614848835716385, 61.13862984480251, 145.52449651979884, 55.95808236474979, 10.33772034340004, 79.92917709153198, 10.87475038205908, 12.993614913891651, 32.55209504613683, 50.69228757941777, 36.7370061147421, 55.31335185133624, 117.1323045033601, 5.537409647869476, 14.16803472875052, 16.375782859309453, 60.859661682920446, 29.662361680389033, 37.20695504197769, 64.04148620154294, 50.523725860582786, 44.367058753382025, 65.38633346880653, 30.359293783341798, 8.843009213036236, 82.4928526631306, 48.11462781920092, 58.61054489675873, 11.53951881741265, 31.012516200493398, 46.45289419822687, 13.580185806342328, 26.506990840574893, 34.11291133129867, 35.214230799934974, 28.342512261278557, 19.897846882346272, 17.229801607372668, 62.402611025002884, 34.5005314075464, 57.242829160932125, 198.91464032376848, 38.67223560746726, 19.388616766324244, 8.24359414261638, 5.7267227976476685, 51.36562194162269, 19.786314152870546, 59.99226363338423, 119.51642769496449, 56.68927360244535, 78.08026055154315, 10.302785351341429, 132.27300506132823, 12.937900408797711, 27.204539155176285, 6.961737423348992, 21.32876129718625, 20.032441426691253, 27.62447529580461, 65.89593674310261, 69.82563521646246, 71.07529230456439, 48.66483239006559, 10.830988586436645, 33.03963678093978, 51.739584408157235, 29.27473000490152, 52.761096425076275, 41.47619670555581, 47.67875978129999, 70.99841649485747, 22.0017502924536, 14.66408999333103, 43.658270362274095, 59.61644768682358, 6.238629369965421, 11.38497874207974, 6.123203495293339, 87.0702456478851, 52.364602350187425, 5.841760391635377, 69.42454032829949, 24.06608880477871, 21.02232881824226, 16.513448231391408, 47.150998029998156, 16.16992621570962, 23.140697766296615, 51.09009334262867, 18.242252366531748, 29.435583910631625, 77.19263775576998, 52.39752549696107, 7.84633866738603, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3421393.0843342682, 3440787.9530783473, 3456085.9504093104, 3456920.085105781, 3480996.9538779287, 3486043.42380631, 3502459.375, 3506295.3125, 3520049.1606302084, 3559789.0625, 3565542.0311005055, 3567012.7775186677, 3596509.375, 3600234.375, 3604309.2933216346, 3607135.9375, 3607300.7062208382, 3611763.510738873, 3619567.908351985, 3619709.375, 3621003.667438056, 3621873.4375, 3622365.286328307, 3623394.9802751453, 3632634.267001079, 3654112.23168705, 3656356.811839024, 3670180.6210833094, 3677555.6474312963, 3684167.922637747, 3685935.1918261456, 3704031.25, 3706651.4761234224, 3711333.446946185, 3720764.9014820848, 3730095.6643703156, 3736554.502614627, 3739452.3389650467, 3745946.875, 3759505.74372898, 3763324.949688875, 3778657.8125, 3779907.01581469, 3780042.1875, 3783532.0017143246, 3788723.910486139, 3789969.209297791, 3790554.6875, 3794439.182294425, 3797416.372273056, 3805798.574717114, 3811517.1875, 3825349.5801158473, 3828576.0505288364, 3832568.75, 3834433.138087126, 3836219.8309431653, 3837271.875, 3838659.9773407164, 3852263.640996151, 3894731.25, 3896052.664461344, 3896741.8737501423, 3898896.875, 3921390.4151090304, 3922785.9375, 3923553.125, 3924576.7305024434, 3925754.4615029953, 3947674.1627792, 3947843.75, 3951376.56156872, 3952517.1875, 3954336.395785864, 3958201.781035048, 3959265.625, 3960440.734932062, 3960449.97502477, 3962397.3375362414, 3962668.3497417076, 3967565.733746714, 3967571.1848329757, 3971261.5473811813, 3971261.8474164363, 3981379.401136978, 3982034.375, 3984542.611895036, 3987808.8698853715, 4001262.082328967, 4011006.25, 4021118.5347965923, 4021615.447452387, 4027493.60050772, 4042839.0625, 4050457.8125, 4053278.125, 4056433.534693445, 4056636.865226886, 4056891.9039931456, 4060939.4710212504, 4069927.294110286, 4070493.2318836814, 4076982.8125, 4093765.663902752, 4100794.0405525803, 4115085.9375, 4118139.0625, 4119033.5802285746, 4145842.3293267353, 4155774.76490865, 4155787.9533436727, 4157944.219596, 4157946.5775424484, 4164729.0818892703, 4173375.0, 4177573.1240687035, 4182807.527393439, 4188603.3408976896, 4193795.3125, 4195668.591627353, 4208187.325205466, 4219615.625, 4221467.536633524, 4230236.864528739, 4233243.841121627, 4241952.613347374, 4247350.910665196, 4251826.524236918, 4251826.5625, 4252077.261254349, 4252099.617249871, 4255975.478853098, 4259957.599060474, 4270921.049276484, 4273313.484736622, 4274054.6875, 4277039.0625, 4288593.75, 4298524.707081919, 4298895.131661708, 4312535.180986456, 4324309.209795195, 4324650.246536015, 4326322.124179255, 4337292.659767444, 4343293.75, 4345504.08620892, 4351899.977193869, 4352709.072334772, 4352807.8125, 4353449.826817607, 4358659.198112501, 4359830.832629619, 4360003.483990526, 4362839.0625, 4365097.982745559, 4367866.431523865, 4368540.355397762, 4369215.901874344, 4369759.814836347, 4369798.137506224, 4370280.672944915, 4370482.451046438, 4370715.678887705, 4370779.346255169, 4371389.605581321, 4371441.677394713, 4371453.18464988, 4371719.632568794, 4371732.1957855765, 4372072.295075306, 4372549.64497266, 4373082.405528861, 4373084.718824656, 4373098.131103983, 4373377.875493622, 4373781.101659543, 4373992.202781706, 4375517.904361566, 4375523.322929288, 4378505.426122244, 4379504.6875, 4381206.496478091, 4382014.040067612, 4384264.0625, 4385494.310067594, 4385691.636343041, 4386151.5625, 4386840.625, 4387166.968870682, 4387173.4375, 4387608.983937882, 4387613.207873136, 4391125.775562529, 4394342.875401712, 4394838.632592119, 4394878.377367268, 4396126.5625, 4397227.396990304, 4398663.985322435, 4404556.25, 4405109.072379975, 4412607.677705022, 4423934.375, 4432704.527896456, 4441828.406373665, 4441829.823383761, 4441896.875, 4449533.744913607, 4523635.828918225, 4530346.986292518, 4530359.12540257, 4533917.1691392055, 4534101.682532372, 4536800.0, 4537341.819287414, 4539313.023617826, 4540480.525693671, 4542249.951845221, 4543178.658439687, 4543878.125, 4544857.751810292, 4545020.603015572, 4545733.815707426, 4571075.0, 4641671.392331274, 4656774.309646454, 4679271.875, 4688693.75, 4734962.5, 4769006.393993642, 4798946.672644515, 4806968.866383877, 4810229.6875, 4839623.4375, 4840875.8993278025, 4841034.605960764, 4841207.447065435, 4841529.6875, 4841659.859895415, 4841968.472593004, 4842027.017897312, 4842038.515644502, 4842284.375, 4843360.787524444, 4843439.0625, 4843586.932157495, 4844091.675312011, 4844639.0625, 4845296.3783192225, 4845310.133773446, 4846207.170270984, 4849068.989643668, 4851131.573137589, 4892131.63394347, 4893664.359869658, 4910757.652132537, 4947956.150121062, 4948940.473617966, 4949753.125, 4953950.263320906, 5001420.3387120785, 6374873.352902862, 6904967.572118222, 6906476.5625, 6906535.132172982, 6936670.656175366, 6939792.926097712, 7005243.633958151, 7029901.41000912, 7030260.138234808, 7030261.963676732, 7105572.462261752, 7105755.819322844, 7107268.698053708, 7180705.19508911, 7180898.770336787, 7183148.4375, 7183462.499414519, 7183803.87436645, 7184160.79906314, 7184438.310020982, 7185165.625, 7186731.225364156, 7186799.701127029, 7188855.292640075, 7191726.35103249, 7193139.5172830885, 7193930.171150834, 7198545.080577678, 7200476.5625, 7202777.296453321, 7202852.96161006, 7207159.375, 7208654.641990477, 7244434.375, 7263100.821112734, 7263505.295117647, 7265923.224836881, 7267655.525176239, 7296971.919362241, 7297462.5, 7297530.912548924, 7297548.4375, 7297576.52320105, 7301293.144145878, 7304428.384419552, 7307785.9375, 7308789.815083832, 7309608.20890835, 7310578.125, 7314138.380130592, 7318829.091339178, 7320148.256747202, 7322252.380369475, 7325892.1875, 7326096.844958088, 7335046.875, 7335161.130489749, 7343022.655500029, 7349321.962928001, 7350943.75, 7371662.000122857, 7375611.014253181, 7376721.056027693, 7376925.34377556, 7377496.077439458, 7378811.191879429, 7378850.861401276, 7379337.159438461, 7379555.363916729, 7379888.718292925, 7380152.251207744, 7380636.813595112, 7380680.991575553, 7380853.62046175, 7380889.357227361, 7381067.64492806, 7381680.22675373, 7382256.451204903, 7383266.820011038, 7383281.776646067, 7383755.671494105, 7383976.013685477, 7384584.305252476, 7384606.25, 7384622.471263133, 7384717.313932334, 7384807.901807047, 7384843.930315531, 7385102.367218173, 7385123.4375, 7385262.824719004, 7385675.429923641, 7385830.7616131315, 7386107.8125, 7386110.9375, 7386127.5879564425, 7386490.660914338, 7386668.647964742, 7387732.42213786, 7387734.579443954, 7388450.47046216, 7388786.355613405, 7388842.129105282, 7389514.291759741, 7390485.263118772, 7390729.6875, 7390836.983608052, 7390875.755924713, 7391209.201939375, 7391273.4375, 7391679.947711315, 7391745.3125, 7391752.008325138, 7392117.988404413, 7392185.787915151, 7392228.484149865, 7392589.847078982, 7392714.0625, 7392870.223770246, 7393133.881169499, 7393529.6875, 7393641.003613486, 7393645.3125, 7393818.01418526, 7394140.824600785, 7394771.205920675, 7394804.314586585, 7395653.125, 7396595.020001558, 7397628.125, 7399875.3506257655, 7416396.832229268, 7423594.102896946, 7424770.3125, 7428442.1875, 7428691.765737188, 7428761.18522908, 7429479.855909511, 7430045.3125, 7430081.25, 7430700.0, 7430835.434996257, 7431691.14860414, 7431732.8902599355, 7431962.5, 7432727.046182482, 7432892.4557859115, 7433113.12541958, 7433151.517840978, 7433282.263894787, 7435463.484640747, 7438128.062541487, 7438259.375, 7440044.339449039, 7440074.355162941, 7441679.970969273, 7445779.521423612, 7446226.820301897, 7446682.763152669, 7449528.597629719, 7450347.5993537605, 7451381.89565058, 7451441.712233095, 7453099.444039865, 7453334.252019142, 7457218.763769528, 7458262.849025998, 7459073.144770158, 7459780.678536373, 7461171.875, 7464483.895733196, 7465965.566782058, 7466470.3125, 7466537.777578291, 7467274.899677443, 7467719.697296672, 7468904.600432309, 7469937.369529824, 7470079.924512564, 7470084.375, 7470096.875, 7470407.62632466, 7470673.136942645, 7470694.289655843, 7470721.226755358, 7470751.527314849, 7470766.510245077, 7470834.023964903, 7470847.766371875, 7470925.0753962565, 7470968.352314482, 7470975.018488781, 7471028.217074503, 7471078.03443067, 7471244.428713508, 7471296.065271375, 7471355.570951531, 7471366.860063437, 7471473.4375, 7471496.875, 7471527.000370057, 7471624.684559235, 7471687.192226188, 7471690.472878492, 7471790.625, 7471979.184482613, 7471993.75, 7471996.194282465, 7472264.0625, 7472290.625, 7472449.420521182, 7472606.859724911, 7472667.1875, 7473422.143927711, 7473634.180205842, 7473811.305704267, 7473909.685867273, 7473957.8125, 7474373.4346403815, 7474529.406210889, 7474615.625, 7474636.051516058, 7474645.2010671925, 7474703.9097633185, 7474769.937537436, 7474903.702727942, 7475008.87206526, 7475542.4605447445, 7475741.622344341, 7475924.951323642, 7476058.430991443, 7476128.623268299, 7476348.328991317, 7476351.3468819, 7476441.385284096, 7476476.380336174, 7476520.3125, 7476530.495208676, 7476836.372967671, 7476985.51491302, 7477427.406551843, 7477443.262654859, 7477629.049688651, 7477631.003136182, 7478023.015756795, 7478531.25, 7478805.153991093, 7479026.529583644, 7479292.051775134, 7479738.404356879, 7480069.065054732, 7480237.334867045, 7480237.5, 7480457.4081879305, 7480935.74837301, 7481157.070001988, 7481165.354498714, 7481285.215396374, 7481339.0625, 7481391.68796832, 7481719.842530859, 7481768.668798423, 7481874.684720914, 7481930.085446156, 7482244.68108065, 7482336.757090339, 7483199.814958945, 7484148.910958783, 7485396.335024934, 7486416.195059465, 7486834.874669708, 7487680.868668565, 7488500.431025699, 7489355.267745988, 7491272.078760751, 7492534.375514642, 7493665.625, 7494339.0625, 7495146.226604701, 7495318.617525583, 7495567.056093341, 7497371.018606598, 7498148.4375, 7499849.066826256, 7501023.9502380835, 7506350.8521023, 7510334.375, 7512116.33351402, 7512431.25, 7512820.9972213525, 7514568.410311039, 7514580.102609287, 7515618.75, 7518207.8125, 7531815.313988313, 7531996.875, 7532124.2204057835, 7533215.525839545, 7534131.085782362, 7534408.800248026, 7534659.375, 7534760.558802905, 7535623.870652401, 7535913.604954653, 7537521.120139392, 7538004.586847025, 7538815.526093802, 7540705.389034855, 7540955.958167731, 7541607.165954273, 7542425.53261042, 7543088.962056487, 7543098.954017551, 7543329.8407333605, 7543500.6959563475, 7543640.625, 7543747.133428497, 7544121.254827041, 7544453.122318601, 7544466.759988745, 7544492.891661345, 7544521.875, 7544612.5, 7544680.275433483, 7544691.560229018, 7544742.915890825, 7545134.687304174, 7545227.480980675, 7545259.353651964, 7545269.381704859, 7545285.8117541475, 7545337.231738807, 7545359.408140122, 7545367.802268463, 7545414.602883843, 7545414.746764689, 7545555.724445289, 7545565.083078507, 7545675.580322196, 7545690.587837651, 7545700.7698590765, 7545729.5661531035, 7545801.307074904, 7545815.715875257, 7545845.637637219, 7545864.872378943, 7545867.1875, 7545961.2771224985, 7546057.343312667, 7546076.264794656, 7546093.75, 7546104.6875, 7546110.844716202, 7546152.825409255, 7546159.334823675, 7546195.070169049, 7546320.539850075, 7546324.463471191, 7546684.697592624, 7546797.972438204, 7546852.712983316, 7546885.434236124, 7546907.201673463, 7546933.71527362, 7546935.9375, 7547046.875, 7547073.4375, 7547079.6875, 7547100.701341157, 7547124.542084537, 7547127.328974179, 7547290.550850155, 7547290.625, 7547312.991779365, 7547314.69238641, 7547390.482575827, 7547407.194822436, 7547428.125, 7547458.199142189, 7547591.1554508405, 7547604.6875, 7547717.833666551, 7547744.597278822, 7547749.7280819025, 7547876.688056191, 7547901.5625, 7547984.375, 7548001.5625, 7548129.474146561, 7548192.053460927, 7548233.637793923, 7548448.187101682, 7548450.0, 7548564.962651993, 7548653.125, 7548822.818326118, 7549006.25, 7549006.965865089, 7549129.627122417, 7549162.480669813, 7549164.0625, 7549236.012809361, 7549347.7520308485, 7549432.412897354, 7549469.382898645, 7549518.060070801, 7549537.480583778, 7549781.25, 7549786.810169891, 7549789.916039179, 7549860.093993669, 7549900.0, 7550037.883772427, 7550051.5625, 7550079.591525001, 7550082.8125, 7550209.128769243, 7550217.1875, 7550347.420455472, 7550493.571748771, 7550546.479621136, 7550780.351086362, 7550849.868823214, 7550860.9375, 7550938.5543377055, 7550950.053337791, 7551080.132864485, 7551359.050593853, 7551399.381788866, 7551597.870993179, 7551653.32033769, 7551715.957440146, 7551736.465649985, 7551878.125, 7551996.875, 7552374.275634889, 7552864.0625, 7553005.600184268, 7553096.875, 7553228.953577945, 7553469.963469134, 7553573.982821304, 7554511.243611757, 7556470.3125, 7557764.0625, 7558757.179502851, 7561902.584721682, 7562354.776733081, 7562633.213846064, 7562650.0, 7563783.894437621, 7564370.115767468, 7566746.4888829775, 7566937.5, 7567381.283782631, 7568161.651156524, 7568985.528404622, 7569271.515266364, 7569600.752926701, 7570250.123285989, 7570486.671578335, 7570873.253070241, 7571063.52839518, 7571134.375, 7571368.571213292, 7571587.059683141, 7571720.164041372, 7571756.218486141, 7571778.125, 7571882.428036933, 7571965.625, 7571965.625, 7572513.714255219, 7572590.551157308, 7572661.900876344, 7572718.75, 7572805.246508559, 7572967.885785719, 7573113.214742741, 7573160.776764258, 7573220.34922076, 7573266.092007864, 7573294.964437771, 7573565.05152579, 7573574.287690891, 7573730.525248703, 7573815.302352121, 7573845.3125, 7573935.9375, 7573947.927377839, 7574066.6997066615, 7574156.25, 7574697.300745185, 7574698.941158928, 7574753.821463123, 7575019.281174677, 7575185.339010772, 7575279.888343431, 7575292.078799469, 7575491.234759424, 7575585.211782857, 7575592.826598249, 7575698.4375, 7575742.8672744185, 7575767.809192527, 7575784.375, 7575842.3262603525, 7575886.935670485, 7575968.283166443, 7576093.75, 7576167.423183701, 7576329.00319982, 7576377.776337856, 7576409.986424688, 7576447.985409624, 7576978.980875815, 7577007.364141713, 7577025.787658613, 7577181.25, 7577310.9375, 7577473.055799575, 7577478.125, 7577547.440924122, 7577563.428097163, 7577601.114311902, 7577651.462041508, 7577658.356647709, 7577698.264713693, 7577739.0625, 7577745.982010382, 7577746.875, 7577752.570192665, 7577753.436510344, 7577771.340871906, 7577773.4375, 7577839.865096292, 7577842.789176863, 7577847.405281837, 7577849.797356389, 7577853.75530082, 7577861.441292349, 7578027.914983463, 7578032.328024904, 7578073.992790741, 7578109.748378402, 7578114.343436026, 7578170.2829044, 7578214.0625, 7578233.660037191, 7578336.670378701, 7578341.515790444, 7578386.212314027, 7578400.7227847725, 7578492.1875, 7578502.24578057, 7578528.367257167, 7578528.786097044, 7578549.959048895, 7578560.547767107, 7578665.625, 7578671.013528123, 7578723.619989344, 7578725.0, 7578798.623863365, 7578868.485505516, 7578898.393247426, 7578919.270659901, 7578951.909753257, 7578985.9375, 7579010.9375, 7579092.098602161, 7579139.0625, 7579155.487494105, 7579298.792632497, 7579317.89839706, 7579356.905227923, 7579375.0, 7579382.429371304, 7579385.660339051, 7579393.439597971, 7579409.307036756, 7579433.69390818, 7579435.3451580275, 7579444.660803918, 7579596.311943472, 7579871.875, 7579889.310037679, 7579931.94370185, 7579978.89199872, 7580136.80269715, 7580145.403768141, 7580318.9890904855, 7580392.8587453, 7580448.4375, 7580460.509122686, 7580483.279338442, 7580601.634686419, 7580938.027099484, 7580990.625, 7580996.184566425, 7581073.4375, 7581117.286484091, 7581179.458500645, 7581194.689080962, 7581316.113221719, 7581396.145655612, 7581471.898196029, 7581568.002677195, 7581590.625, 7581617.650064521, 7581729.221142811, 7581742.378340154, 7581814.1573818475, 7581843.917167416, 7581969.483864584, 7581975.349341603, 7582072.916837498, 7582112.5, 7582121.102401924, 7582137.137586425, 7582531.629090254, 7582560.9375, 7582588.054062279, 7582638.445439519, 7582753.545674518, 7582996.875, 7583016.113197341, 7583135.346914722, 7583159.179077962, 7583396.6685597785, 7583549.007640093, 7583571.487189839, 7584105.926500821, 7584298.334780894, 7584386.414179119, 7584678.125, 7584707.8125, 7585468.063910681, 7585615.573571215, 7585637.660740246, 7586410.328026912, 7586526.065341918, 7586621.533487017, 7586963.707587618, 7587109.375, 7587225.307635832, 7587243.75, 7587266.615561704, 7587507.8125, 7587517.0194053175, 7587558.748959148, 7587578.99978472, 7587707.005164205, 7587727.206637271, 7587742.1875, 7587882.030732636, 7587943.838877422, 7587963.47483501, 7587982.749225832, 7588034.375, 7588118.496949754, 7588216.262376075, 7588252.485381204, 7588529.6875, 7588532.295620524, 7588544.595554089, 7588555.85978108, 7588571.234803395, 7588908.397815692, 7588929.6875, 7589145.3125, 7589939.310901958, 7589948.4375, 7590025.749648814, 7590083.965242409, 7590242.076451402, 7590429.6875, 7590503.257592643, 7590609.365714898, 7591042.8484070385, 7591105.181309836, 7591306.25, 7591311.877994276, 7591711.986871185, 7592082.035961163, 7592204.6875, 7592261.759540121, 7592707.730324002, 7592962.809196732, 7593109.6293670945, 7593352.43500131, 7593584.913695246, 7593766.9666414615, 7593793.75, 7594134.375, 7594166.586772341, 7594254.6875, 7594309.887396905, 7594323.494315624, 7594408.730457993, 7594540.108366472, 7594561.839949793, 7594742.51889687, 7594878.488869587, 7594960.925313821, 7595071.93991731, 7595132.210801538, 7595220.113996114, 7595240.625, 7595260.380494596, 7595391.430437891, 7595392.558592709, 7595433.150470102, 7595476.5625, 7595549.732609786, 7595623.143991802, 7596092.1127606565, 7596342.1875, 7596447.343262355, 7596773.207981053, 7596809.53358694, 7597073.768437757, 7597125.801721285, 7597434.375, 7597636.306021988, 7597740.03659344, 7598063.786792797, 7598205.701475918, 7598773.454943355, 7599062.5, 7599116.267205501, 7599566.838192521, 7599739.0625, 7600317.847934737, 7602219.861036384, 7605250.0, 7605734.375, 7612469.3755858475, ...], [8.825547001897688, 35.264184912579424, 38.592332563602476, 43.71393619192355, 7.632017814583038, 5.236106603837175, 54.321651520889894, 38.305175451413845, 13.150186632018393, 30.251492965472124, 40.50300497747193, 59.77382502617578, 56.285636714961, 85.22959266431369, 57.87181875435096, 42.08348711929671, 18.548922344519717, 16.146245040987495, 18.64979208107049, 64.07180443670873, 12.09652477863089, 39.83246658209493, 6.053574473344854, 34.92678474009902, 6.470293680365638, 115.52259435725362, 60.72602760944688, 8.850786459439565, 65.77067409117153, 6.168035624065725, 12.700056184758918, 46.51420216758848, 13.967427415587306, 5.650134678267872, 56.34746545257711, 9.647773855272664, 33.63141159551715, 33.6943719363611, 65.91648094504552, 30.49902092216203, 5.611266858385528, 95.25989733912309, 17.88839088105929, 56.91124546450608, 7.899801246205512, 11.957327540996225, 17.038255073155693, 50.43496941190129, 28.63940362004037, 8.725674249108101, 8.360497903520008, 40.92037682255535, 5.680546587772041, 21.374506960140224, 63.77418165779376, 11.677845507353016, 13.376842942838692, 36.01748183415151, 57.70502183089786, 8.075584753524977, 53.69774954428338, 6.674919406107324, 8.1273490645783, 29.099937245856513, 52.8027309263033, 86.0511670691686, 35.38324084174264, 41.29024441157266, 43.09252992051023, 18.68059687078668, 52.89950824794035, 14.937961005901656, 67.50381078586155, 17.032724584245926, 11.487381756603451, 60.96342828538318, 92.18030285391487, 56.109029637207364, 37.27370763378086, 6.686145084262829, 15.372859891683497, 19.784952536971367, 17.918665865928986, 19.821354342114386, 13.95188048029208, 76.9248775448391, 35.101825991805974, 13.312060064514815, 44.177774843014646, 102.09323263870415, 24.897902658905, 14.305373792117694, 6.463909595751666, 51.00430203803237, 33.389718948108666, 62.4124606909499, 15.608241521065137, 5.66751620174151, 8.142136188138922, 11.832520945784816, 12.502806072761802, 83.80007640601238, 47.049325971889836, 38.41247439548395, 11.614405908287496, 64.16835531393127, 46.71767100737518, 85.19864307408561, 9.454275654655525, 66.61079162680355, 9.746593322495519, 5.6405625243033315, 51.47082449827792, 43.755712991326185, 43.993456019510134, 10.670757013764625, 23.942867367346512, 70.4530033306496, 77.84899492566723, 14.370375899847746, 25.493645926124376, 40.145881507081725, 16.463182729221522, 21.069900423756785, 16.86808026837174, 21.377641340305633, 20.431798847967332, 20.387856850650113, 65.34013678097438, 7.318102447756908, 10.577879269366962, 6.139352717573142, 60.55244773467421, 25.022896894319008, 37.71082865388553, 29.66303665143218, 42.99598208000508, 35.40934108034215, 50.9129059438664, 55.424875288964216, 10.12058381429503, 25.640129698950876, 8.421399356386532, 5.545297458048379, 5.981616399215527, 45.56317359931897, 10.302105714664949, 14.855289838992485, 23.71675666133515, 68.1104880756543, 10.867387637930372, 25.461943148780787, 22.358974681789604, 16.930891139192596, 93.29566245132041, 83.4394678272291, 18.47846401619715, 72.53299487438423, 16.113443812963865, 107.10994243040606, 23.75082116306315, 10.331481415838672, 13.722214021206275, 6.774312728947577, 7.034547811499637, 28.567642074204613, 5.67504483819952, 15.173847799186882, 5.664809974129847, 19.231193002033585, 86.14781755056624, 9.048226163029591, 7.4623893588186805, 73.31898436469842, 50.802846678145194, 24.07966959696525, 21.757117441899624, 48.32891969509444, 28.06725130629807, 26.448474321877512, 18.77424570125072, 30.761916249260107, 43.20577683632047, 14.856691493822412, 37.17286111141334, 43.273994801912885, 114.77137237279472, 64.1358276366173, 44.283907184111825, 14.168905284781083, 40.12737980504572, 9.021268651351928, 24.07556379345034, 10.086292222564136, 12.405200123062214, 22.22201265826905, 44.59281391117979, 90.00997805791073, 8.78336824807592, 14.655284002122071, 46.55021360386791, 13.901209741796007, 91.32655668781265, 43.86848857532286, 14.366177776568508, 15.862244571327114, 15.486027432981395, 44.24714220961307, 10.267575844689357, 14.54319084776718, 89.64049825628976, 10.758764361671126, 45.15698653304829, 9.435002355892046, 33.542715308737634, 81.5455588011845, 22.441338111919883, 8.785851602607709, 27.606640787172303, 12.078203977490027, 113.25372207588569, 14.715126576080152, 16.177915063342564, 65.7169526947918, 59.065872892688205, 30.51024717240649, 19.783444082645115, 71.38160065457969, 36.24925598649582, 80.01283190839358, 80.11770398600201, 25.083647450805145, 15.404475614648995, 43.89847665432, 80.3576933128163, 31.481829514194587, 17.731135430933243, 29.740711597155563, 36.508020233063924, 8.56079877148167, 24.0436906721631, 5.980070310544802, 73.10812675866202, 112.35402015722254, 73.41589370076096, 56.022220507744336, 23.972577359934768, 21.372374070996642, 60.815700690796405, 8.944003353886519, 12.56466311349559, 27.009723362325502, 39.43490445905726, 148.69557687457964, 17.152411935657618, 45.8714663249924, 25.71479278774207, 10.975097737303981, 53.60036460389497, 49.10278099127543, 105.33320763913358, 23.08869289665808, 44.30443942539191, 48.131575525502534, 42.64002148206799, 10.065761342934383, 78.11802462842525, 10.045171423586131, 26.424124132872773, 7.549000012363909, 55.46208364133558, 13.227653976424241, 17.778708233194973, 37.25290217889573, 8.259296969495457, 22.07725185459389, 34.87205129899684, 98.1059653123829, 19.657133351789106, 10.057090059193827, 14.438862083225294, 14.816637667224878, 77.54367556380487, 6.085541047270248, 6.441239116975251, 39.186150525205846, 24.951569384437928, 34.42167127511089, 30.57892417401265, 5.38968126236522, 36.0125321306833, 10.040046415742843, 5.240595239681815, 57.612961394165694, 69.79078731129553, 57.9757825116686, 34.07669893301936, 45.253933112145454, 14.188491915226432, 39.88115400638649, 63.09566963076748, 79.97263500004992, 14.204950328748378, 66.36095949113319, 34.53432640513524, 20.498371847117554, 5.4084848724257775, 69.60506936042466, 186.00808246840833, 23.07066311719207, 107.0327823342622, 8.814167874857644, 5.771148133377961, 25.40364334291107, 29.706548674546763, 58.34943751705571, 11.081071813510308, 39.06502956861318, 43.35239264358236, 7.342937733484784, 28.06153750743192, 105.22726777536491, 5.897024136684353, 11.249834368586566, 37.76302602967296, 5.969913334868782, 31.451923480203327, 16.008647932652224, 7.367927182336604, 112.04934753741934, 18.34778295404739, 74.82204445805812, 18.430037643819425, 10.201184053090115, 17.455956182108327, 20.78726133658799, 27.476565388077947, 9.750647927980246, 17.49101172907009, 5.406222017119683, 43.411717746178894, 17.417488358336932, 6.977253614899838, 114.42645748917373, 35.22379854634355, 103.42102708086381, 35.78114759923939, 107.37039281422666, 11.270228939158747, 22.992097798112816, 32.22718057208114, 50.33302930423739, 16.342714501161055, 16.740909139217077, 33.86133970665889, 63.83461563141036, 30.864568486418047, 6.4060761641942605, 32.917112076255854, 145.91689082936185, 8.09039921135389, 11.463044842495483, 11.952362895981736, 26.725565711879707, 56.88551214973834, 8.411652413309948, 83.83255052347928, 64.42730626768278, 84.268444125388, 23.474695665030552, 81.23078280687027, 40.47122338683154, 21.93742671027949, 65.7626623616757, 29.30264089132306, 48.90509077160407, 6.734006089060408, 18.111950726224798, 5.874406428291435, 50.359149636169974, 27.31258878983482, 36.10098286992066, 74.04960969337392, 70.90630706740205, 54.766551459259055, 72.53784056848747, 79.33782345417043, 36.61434841431465, 22.541144784502258, 37.024594106703915, 13.932694309436549, 83.16993606144086, 8.481125927962475, 122.41752270544787, 21.442935055774903, 85.53086502820832, 44.18890448078693, 6.422948045281972, 17.915569499572744, 11.818911108551209, 30.290060760630706, 29.185310616865046, 36.58617249170596, 21.46816036996373, 55.4349806897515, 15.246415159752535, 58.79414345233757, 9.77685670388096, 116.49706245522927, 70.6291296352751, 21.302061996432315, 21.02156333163527, 10.832633473124687, 90.65806094533184, 71.22498518396361, 63.49180026407682, 38.10011490496541, 11.601712659326738, 54.531097107710956, 7.1909100428062835, 64.89522057195904, 5.7375124733846325, 151.54183850441498, 77.8826998831275, 121.48753221742687, 13.175353503909884, 29.878685726656744, 9.343073289614365, 47.99994824140431, 153.2110131979949, 20.808652296577982, 50.931351086380154, 20.079588210764637, 26.89671188799338, 45.26966880715217, 66.41895599453204, 10.974435211363854, 67.37450763612051, 7.0987507638051985, 5.393509594938301, 22.933393776090554, 54.42784330076815, 30.309533624962242, 9.17879109732133, 59.23872583948764, 17.493370309625927, 63.506292550571885, 38.241057506096695, 19.890097162794294, 54.96146652077957, 44.71367645775267, 6.2767713687657345, 22.57829952178236, 11.156729455842644, 8.33587551551113, 14.607184183004806, 39.90251689313402, 62.3805268087435, 6.95370191045723, 8.120694739781172, 42.06140543906758, 134.05012002128498, 22.455343962599528, 8.126525697739648, 44.54412323042616, 60.536423978471625, 33.270677056260006, 115.8584543055683, 37.9244705515294, 31.132184103417337, 54.197769559686776, 33.28631263191547, 34.20428990184352, 17.91768894752469, 87.45259980422644, 9.569642336834008, 25.194540044690598, 9.663436122040865, 26.623432357942665, 33.48708302971634, 11.1232399757131, 13.967805240394139, 28.6649631386042, 118.35856965048345, 106.82148863730495, 10.096619704151324, 61.240321675018656, 5.8580007005334735, 21.463874510199933, 5.834463302062842, 8.895257934878657, 14.759167919760262, 9.91552951008957, 25.62789849321757, 10.9622332779574, 73.00458722765964, 5.315164161967976, 104.21799486102545, 79.1851098171283, 51.05991850189562, 84.92432964033837, 13.543183121130273, 6.944586850380438, 16.393696050940797, 20.220342646761345, 21.639034091104232, 22.310967542667967, 78.18056296208415, 13.974759368905886, 14.81751458380735, 27.12320990588242, 46.06764390324344, 43.46225748824813, 25.64123487434767, 90.1825726739137, 29.51935389092205, 6.726327215437515, 55.30713958904805, 24.135004880048314, 19.530895345941335, 78.08039513472409, 31.137029456024756, 15.49324911480377, 33.07240198364212, 23.992460636454283, 123.80318962647279, 7.978696957352277, 19.369829885903336, 6.727118402877494, 7.251731447722172, 60.079679463368976, 17.674185050204382, 12.010212577044427, 145.04777413082408, 9.724544895234368, 17.735882413019564, 7.678635359273682, 8.28684949602569, 46.91361967625666, 34.34302355560671, 19.50229661677234, 25.69432172830077, 7.087332024413748, 7.320319342135171, 36.14623808113833, 8.649992772277258, 9.806159172567416, 19.623040566843503, 54.018048064007196, 17.362348334873616, 32.251895082812105, 6.3577658066357134, 5.4473731807673325, 30.608931139711736, 84.62932260687212, 84.73977206750327, 13.875262556843737, 72.79405626542456, 19.094009660224625, 8.234826596398646, 197.98958129351007, 32.223060544177244, 85.15569742782941, 95.01796376450629, 8.529735445931252, 30.203412504845573, 64.6353941285916, 79.96374963110496, 14.577466091771463, 12.435393084388593, 23.85563680558662, 145.44853216530788, 116.6317859085483, 26.68506931668975, 17.359015158487136, 11.326070740453604, 152.9048005922426, 52.308911978130794, 5.62850281495974, 5.580631912517586, 87.15737435278947, 11.297667811889326, 6.003167298699892, 85.34977251931375, 46.946786446311535, 9.883479666483808, 20.31098104267586, 5.754737784737964, 64.0126515023293, 10.251011279680034, 48.90976360134167, 14.520693038262, 32.71527929497677, 67.68471864150011, 16.504896899281224, 27.669433186344378, 14.387409644781801, 18.400192339959112, 10.39487410762441, 13.212680799451057, 12.17461798993701, 51.978760752126504, 12.590177846871873, 14.498320515686746, 5.6000679852051, 15.2995782175208, 23.524220011159223, 6.936732258328945, 45.14477618260289, 23.534604669451276, 38.38765871106898, 24.59199818361168, 77.94409371743461, 91.79041002419248, 14.599273547560587, 70.27184127809107, 14.790555791475148, 14.98914814646662, 198.63571673216393, 75.95406065230728, 83.27711489211406, 38.08287308362026, 10.539478776543795, 12.44412253299194, 56.081133311586456, 46.01540127028158, 68.21368617677057, 86.50232205382031, 31.73402045781886, 53.663138777067964, 244.31050929264762, 208.10008883024204, 18.973720538806145, 75.82947433661477, 95.00011459994204, 17.218372410136183, 5.5644523284636636, 10.91215442164654, 13.0149095386914, 41.666081723971786, 90.39368190329772, 8.58853090768604, 45.837718405224884, 18.1493723335683, 137.87785893408565, 75.10316738453723, 31.28249921225401, 57.346933834853424, 36.426647007019994, 31.340812043261153, 91.93727430668022, 119.1121172571655, 10.142558713188935, 24.40570947613522, 67.8822222647959, 20.013279875616465, 76.08019735154271, 20.381315001151204, 31.759644033837652, 26.890671391519795, 26.533388982181627, 28.147917633904676, 52.5729448838409, 15.236538856096063, 14.215048162299102, 22.5567049118686, 18.064110145622426, 19.786876313959826, 14.868016729735434, 97.2080938926542, 40.66910947152717, 19.63442827919862, 18.636901218316314, 60.44120291579732, 16.63830897561714, 36.38240061279548, 10.980933809670276, 37.76575666366491, 40.88364878560492, 62.985247509871826, 8.597744952175056, 5.524491537318576, 17.356151058610095, 19.09039171506827, 14.464035705272854, 69.06594366461901, 44.940953621794705, 58.751688370051596, 81.75017900276643, 7.489973502853119, 5.503810658436095, 13.147516827943111, 22.571339597036353, 16.380553230561468, 9.821830504407794, 45.195109486136296, 102.53001520426092, 19.513221555179452, 55.09529402494759, 49.84100598701674, 73.62541220639756, 151.13259779970969, 8.110243202458394, 17.526691032860125, 11.642444181556327, 105.40713264516356, 73.62603168721465, 12.97598222008073, 57.688644819875535, 249.35711410526608, 23.236549265031726, 61.61437813940203, 13.379598229714926, 84.97039971920995, 22.709701737956546, 35.88969514155052, 13.794474352826633, 99.69714979334127, 9.007893500261481, 20.89289865599116, 15.21070815234973, 35.72566009830854, 18.74221703831093, 41.026001079098705, 12.691189364815445, 37.88388272435436, 67.31534457474956, 22.109874660841975, 7.550411004635456, 27.916086573592594, 63.089383585144894, 9.026182285890224, 29.41038472366692, 77.99469048836616, 23.153441216967362, 44.71201368717921, 36.37435866043373, 106.1094708377733, 20.2183543632118, 35.72635515313926, 57.700608557112744, 104.28423580598216, 15.083343631534266, 17.080551681967265, 32.90761065809121, 26.317343595398384, 57.62178668479353, 102.08492221549423, 102.18607078168188, 37.38181550975622, 85.28705114652078, 8.034060702743993, 14.261991024398887, 53.14910452974266, 33.40835257516916, 35.924636680071494, 18.482437463077126, 17.44380281329968, 70.48945699575359, 77.16979497229615, 20.75518099710381, 27.663661391336902, 5.662077332103253, 46.975516231297235, 40.22796627814056, 12.38730768743441, 12.261712853108081, 72.90163348742686, 30.334896176012627, 13.153249185572482, 60.59890608543272, 58.91206597660829, 7.690764304794146, 19.832550117890094, 89.85390855891575, 18.378582433842148, 60.38462645016884, 13.585670970501162, 22.02420087626721, 57.2477126375108, 84.11986608142931, 36.41866177490888, 83.5756023901439, 91.24295741892841, 29.652780308754657, 19.796989598863178, 13.470222440067898, 6.471457951829195, 5.988236703194178, 5.391909402926105, 52.62273430241642, 20.961491139232184, 29.175094997638073, 182.5438922607874, 81.02594542584846, 6.406499492401245, 32.314342744478495, 70.42269033413545, 56.23471076257327, 61.68379796928775, 142.10091608580888, 29.640611821452303, 106.98582070178546, 14.13346724692017, 79.70968550629973, 22.372597640500047, 11.76618942320082, 51.87621432392734, 39.73400344952084, 36.12330571403007, 38.80906554101207, 26.36858087344237, 12.879152132569208, 11.586262483628982, 12.482907947466021, 55.630238404892616, 5.0815358349772435, 9.54500492607143, 12.346488183459458, 98.29581426774149, 5.592840991480903, 55.07338379427958, 46.60683495205943, 14.079081456276132, 68.5552432537319, 116.46823139636393, 14.020894458230195, 14.775479961333494, 5.5588949017346145, 16.453819099116597, 72.331597498094, 68.84356236771626, 26.882223243276556, 54.28432781168138, 10.113797372636842, 17.342154338786322, 95.45651347346352, 47.62648137832537, 74.161669283257, 31.337510338069453, 57.85255321740367, 21.877142541252812, 93.68423814305548, 5.085282847755795, 27.137195006735116, 150.384994775551, 20.886324172430506, 43.77776025139078, 56.98466038740304, 7.316580896670568, 10.07671294277801, 23.048759224447316, 5.712591280164334, 34.431702235959314, 23.46059662878464, 29.776407207486212, 10.518217278787509, 17.546330672599137, 6.498466936053708, 25.022629517842724, 86.05870420283459, 40.988689166014346, 51.60798647894873, 32.40070944234813, 14.135045834952884, 13.000279327856923, 11.987433801170996, 19.4744524475527, 70.08451775977566, 10.13102352253347, 122.97699048390604, 19.819960788872997, 23.093480273693203, 24.43771772343037, 113.19163515961903, 5.7174802293357905, 18.740713873622163, 30.97169661900816, 21.28942766402289, 46.56361417132592, 8.753684917207945, 22.984942100181737, 7.746354803520303, 142.5574535771536, 17.57843238835143, 5.887411160712418, 16.830528922232862, 164.96021466816268, 51.71664531853743, 29.434866931432705, 149.44271075896725, 29.541081869275224, 12.153474878724788, 139.2649769337276, 25.705568114897915, 26.646617376814323, 5.417015143868114, 30.580486151136306, 181.4117132440386, 14.880496098630587, 41.36085136806132, 6.287722610978627, 45.43538906599362, 73.30169212522094, 23.234569197078834, 10.614848835716385, 61.13862984480251, 145.52449651979884, 55.95808236474979, 10.33772034340004, 79.92917709153198, 10.87475038205908, 12.993614913891651, 32.55209504613683, 50.69228757941777, 36.7370061147421, 55.31335185133624, 117.1323045033601, 5.537409647869476, 14.16803472875052, 16.375782859309453, 60.859661682920446, 29.662361680389033, 37.20695504197769, 64.04148620154294, 50.523725860582786, 44.367058753382025, 65.38633346880653, 30.359293783341798, 8.843009213036236, 82.4928526631306, 48.11462781920092, 58.61054489675873, 11.53951881741265, 31.012516200493398, 46.45289419822687, 13.580185806342328, 26.506990840574893, 34.11291133129867, 35.214230799934974, 28.342512261278557, 19.897846882346272, 17.229801607372668, 62.402611025002884, 34.5005314075464, 57.242829160932125, 198.91464032376848, 38.67223560746726, 19.388616766324244, 8.24359414261638, 5.7267227976476685, 51.36562194162269, 19.786314152870546, 59.99226363338423, 119.51642769496449, 56.68927360244535, 78.08026055154315, 10.302785351341429, 132.27300506132823, 12.937900408797711, 27.204539155176285, 6.961737423348992, 21.32876129718625, 20.032441426691253, 27.62447529580461, 65.89593674310261, 69.82563521646246, 71.07529230456439, 48.66483239006559, 10.830988586436645, 33.03963678093978, 51.739584408157235, 29.27473000490152, 52.761096425076275, 41.47619670555581, 47.67875978129999, 70.99841649485747, 22.0017502924536, 14.66408999333103, 43.658270362274095, 59.61644768682358, 6.238629369965421, 11.38497874207974, 6.123203495293339, 87.0702456478851, 52.364602350187425, 5.841760391635377, 69.42454032829949, 24.06608880477871, 21.02232881824226, 16.513448231391408, 47.150998029998156, 16.16992621570962, 23.140697766296615, 51.09009334262867, 18.242252366531748, 29.435583910631625, 77.19263775576998, 52.39752549696107, 7.84633866738603, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([3421393.0843342682, 3440787.9530783473, 3456085.9504093104, 3456920.085105781, 3480996.9538779287, 3486043.42380631, 3502459.375, 3506295.3125, 3520049.1606302084, 3559789.0625, 3565542.0311005055, 3567012.7775186677, 3596509.375, 3600234.375, 3604309.2933216346, 3607135.9375, 3607300.7062208382, 3611763.510738873, 3619567.908351985, 3619709.375, 3621003.667438056, 3621873.4375, 3622365.286328307, 3623394.9802751453, 3632634.267001079, 3654112.23168705, 3656356.811839024, 3670180.6210833094, 3677555.6474312963, 3684167.922637747, 3685935.1918261456, 3704031.25, 3706651.4761234224, 3711333.446946185, 3720764.9014820848, 3730095.6643703156, 3736554.502614627, 3739452.3389650467, 3745946.875, 3759505.74372898, 3763324.949688875, 3778657.8125, 3779907.01581469, 3780042.1875, 3783532.0017143246, 3788723.910486139, 3789969.209297791, 3790554.6875, 3794439.182294425, 3797416.372273056, 3805798.574717114, 3811517.1875, 3825349.5801158473, 3828576.0505288364, 3832568.75, 3834433.138087126, 3836219.8309431653, 3837271.875, 3838659.9773407164, 3852263.640996151, 3894731.25, 3896052.664461344, 3896741.8737501423, 3898896.875, 3921390.4151090304, 3922785.9375, 3923553.125, 3924576.7305024434, 3925754.4615029953, 3947674.1627792, 3947843.75, 3951376.56156872, 3952517.1875, 3954336.395785864, 3958201.781035048, 3959265.625, 3960440.734932062, 3960449.97502477, 3962397.3375362414, 3962668.3497417076, 3967565.733746714, 3967571.1848329757, 3971261.5473811813, 3971261.8474164363, 3981379.401136978, 3982034.375, 3984542.611895036, 3987808.8698853715, 4001262.082328967, 4011006.25, 4021118.5347965923, 4021615.447452387, 4027493.60050772, 4042839.0625, 4050457.8125, 4053278.125, 4056433.534693445, 4056636.865226886, 4056891.9039931456, 4060939.4710212504, 4069927.294110286, 4070493.2318836814, 4076982.8125, 4093765.663902752, 4100794.0405525803, 4115085.9375, 4118139.0625, 4119033.5802285746, 4145842.3293267353, 4155774.76490865, 4155787.9533436727, 4157944.219596, 4157946.5775424484, 4164729.0818892703, 4173375.0, 4177573.1240687035, 4182807.527393439, 4188603.3408976896, 4193795.3125, 4195668.591627353, 4208187.325205466, 4219615.625, 4221467.536633524, 4230236.864528739, 4233243.841121627, 4241952.613347374, 4247350.910665196, 4251826.524236918, 4251826.5625, 4252077.261254349, 4252099.617249871, 4255975.478853098, 4259957.599060474, 4270921.049276484, 4273313.484736622, 4274054.6875, 4277039.0625, 4288593.75, 4298524.707081919, 4298895.131661708, 4312535.180986456, 4324309.209795195, 4324650.246536015, 4326322.124179255, 4337292.659767444, 4343293.75, 4345504.08620892, 4351899.977193869, 4352709.072334772, 4352807.8125, 4353449.826817607, 4358659.198112501, 4359830.832629619, 4360003.483990526, 4362839.0625, 4365097.982745559, 4367866.431523865, 4368540.355397762, 4369215.901874344, 4369759.814836347, 4369798.137506224, 4370280.672944915, 4370482.451046438, 4370715.678887705, 4370779.346255169, 4371389.605581321, 4371441.677394713, 4371453.18464988, 4371719.632568794, 4371732.1957855765, 4372072.295075306, 4372549.64497266, 4373082.405528861, 4373084.718824656, 4373098.131103983, 4373377.875493622, 4373781.101659543, 4373992.202781706, 4375517.904361566, 4375523.322929288, 4378505.426122244, 4379504.6875, 4381206.496478091, 4382014.040067612, 4384264.0625, 4385494.310067594, 4385691.636343041, 4386151.5625, 4386840.625, 4387166.968870682, 4387173.4375, 4387608.983937882, 4387613.207873136, 4391125.775562529, 4394342.875401712, 4394838.632592119, 4394878.377367268, 4396126.5625, 4397227.396990304, 4398663.985322435, 4404556.25, 4405109.072379975, 4412607.677705022, 4423934.375, 4432704.527896456, 4441828.406373665, 4441829.823383761, 4441896.875, 4449533.744913607, 4523635.828918225, 4530346.986292518, 4530359.12540257, 4533917.1691392055, 4534101.682532372, 4536800.0, 4537341.819287414, 4539313.023617826, 4540480.525693671, 4542249.951845221, 4543178.658439687, 4543878.125, 4544857.751810292, 4545020.603015572, 4545733.815707426, 4571075.0, 4641671.392331274, 4656774.309646454, 4679271.875, 4688693.75, 4734962.5, 4769006.393993642, 4798946.672644515, 4806968.866383877, 4810229.6875, 4839623.4375, 4840875.8993278025, 4841034.605960764, 4841207.447065435, 4841529.6875, 4841659.859895415, 4841968.472593004, 4842027.017897312, 4842038.515644502, 4842284.375, 4843360.787524444, 4843439.0625, 4843586.932157495, 4844091.675312011, 4844639.0625, 4845296.3783192225, 4845310.133773446, 4846207.170270984, 4849068.989643668, 4851131.573137589, 4892131.63394347, 4893664.359869658, 4910757.652132537, 4947956.150121062, 4948940.473617966, 4949753.125, 4953950.263320906, 5001420.3387120785, 6374873.352902862, 6904967.572118222, 6906476.5625, 6906535.132172982, 6936670.656175366, 6939792.926097712, 7005243.633958151, 7029901.41000912, 7030260.138234808, 7030261.963676732, 7105572.462261752, 7105755.819322844, 7107268.698053708, 7180705.19508911, 7180898.770336787, 7183148.4375, 7183462.499414519, 7183803.87436645, 7184160.79906314, 7184438.310020982, 7185165.625, 7186731.225364156, 7186799.701127029, 7188855.292640075, 7191726.35103249, 7193139.5172830885, 7193930.171150834, 7198545.080577678, 7200476.5625, 7202777.296453321, 7202852.96161006, 7207159.375, 7208654.641990477, 7244434.375, 7263100.821112734, 7263505.295117647, 7265923.224836881, 7267655.525176239, 7296971.919362241, 7297462.5, 7297530.912548924, 7297548.4375, 7297576.52320105, 7301293.144145878, 7304428.384419552, 7307785.9375, 7308789.815083832, 7309608.20890835, 7310578.125, 7314138.380130592, 7318829.091339178, 7320148.256747202, 7322252.380369475, 7325892.1875, 7326096.844958088, 7335046.875, 7335161.130489749, 7343022.655500029, 7349321.962928001, 7350943.75, 7371662.000122857, 7375611.014253181, 7376721.056027693, 7376925.34377556, 7377496.077439458, 7378811.191879429, 7378850.861401276, 7379337.159438461, 7379555.363916729, 7379888.718292925, 7380152.251207744, 7380636.813595112, 7380680.991575553, 7380853.62046175, 7380889.357227361, 7381067.64492806, 7381680.22675373, 7382256.451204903, 7383266.820011038, 7383281.776646067, 7383755.671494105, 7383976.013685477, 7384584.305252476, 7384606.25, 7384622.471263133, 7384717.313932334, 7384807.901807047, 7384843.930315531, 7385102.367218173, 7385123.4375, 7385262.824719004, 7385675.429923641, 7385830.7616131315, 7386107.8125, 7386110.9375, 7386127.5879564425, 7386490.660914338, 7386668.647964742, 7387732.42213786, 7387734.579443954, 7388450.47046216, 7388786.355613405, 7388842.129105282, 7389514.291759741, 7390485.263118772, 7390729.6875, 7390836.983608052, 7390875.755924713, 7391209.201939375, 7391273.4375, 7391679.947711315, 7391745.3125, 7391752.008325138, 7392117.988404413, 7392185.787915151, 7392228.484149865, 7392589.847078982, 7392714.0625, 7392870.223770246, 7393133.881169499, 7393529.6875, 7393641.003613486, 7393645.3125, 7393818.01418526, 7394140.824600785, 7394771.205920675, 7394804.314586585, 7395653.125, 7396595.020001558, 7397628.125, 7399875.3506257655, 7416396.832229268, 7423594.102896946, 7424770.3125, 7428442.1875, 7428691.765737188, 7428761.18522908, 7429479.855909511, 7430045.3125, 7430081.25, 7430700.0, 7430835.434996257, 7431691.14860414, 7431732.8902599355, 7431962.5, 7432727.046182482, 7432892.4557859115, 7433113.12541958, 7433151.517840978, 7433282.263894787, 7435463.484640747, 7438128.062541487, 7438259.375, 7440044.339449039, 7440074.355162941, 7441679.970969273, 7445779.521423612, 7446226.820301897, 7446682.763152669, 7449528.597629719, 7450347.5993537605, 7451381.89565058, 7451441.712233095, 7453099.444039865, 7453334.252019142, 7457218.763769528, 7458262.849025998, 7459073.144770158, 7459780.678536373, 7461171.875, 7464483.895733196, 7465965.566782058, 7466470.3125, 7466537.777578291, 7467274.899677443, 7467719.697296672, 7468904.600432309, 7469937.369529824, 7470079.924512564, 7470084.375, 7470096.875, 7470407.62632466, 7470673.136942645, 7470694.289655843, 7470721.226755358, 7470751.527314849, 7470766.510245077, 7470834.023964903, 7470847.766371875, 7470925.0753962565, 7470968.352314482, 7470975.018488781, 7471028.217074503, 7471078.03443067, 7471244.428713508, 7471296.065271375, 7471355.570951531, 7471366.860063437, 7471473.4375, 7471496.875, 7471527.000370057, 7471624.684559235, 7471687.192226188, 7471690.472878492, 7471790.625, 7471979.184482613, 7471993.75, 7471996.194282465, 7472264.0625, 7472290.625, 7472449.420521182, 7472606.859724911, 7472667.1875, 7473422.143927711, 7473634.180205842, 7473811.305704267, 7473909.685867273, 7473957.8125, 7474373.4346403815, 7474529.406210889, 7474615.625, 7474636.051516058, 7474645.2010671925, 7474703.9097633185, 7474769.937537436, 7474903.702727942, 7475008.87206526, 7475542.4605447445, 7475741.622344341, 7475924.951323642, 7476058.430991443, 7476128.623268299, 7476348.328991317, 7476351.3468819, 7476441.385284096, 7476476.380336174, 7476520.3125, 7476530.495208676, 7476836.372967671, 7476985.51491302, 7477427.406551843, 7477443.262654859, 7477629.049688651, 7477631.003136182, 7478023.015756795, 7478531.25, 7478805.153991093, 7479026.529583644, 7479292.051775134, 7479738.404356879, 7480069.065054732, 7480237.334867045, 7480237.5, 7480457.4081879305, 7480935.74837301, 7481157.070001988, 7481165.354498714, 7481285.215396374, 7481339.0625, 7481391.68796832, 7481719.842530859, 7481768.668798423, 7481874.684720914, 7481930.085446156, 7482244.68108065, 7482336.757090339, 7483199.814958945, 7484148.910958783, 7485396.335024934, 7486416.195059465, 7486834.874669708, 7487680.868668565, 7488500.431025699, 7489355.267745988, 7491272.078760751, 7492534.375514642, 7493665.625, 7494339.0625, 7495146.226604701, 7495318.617525583, 7495567.056093341, 7497371.018606598, 7498148.4375, 7499849.066826256, 7501023.9502380835, 7506350.8521023, 7510334.375, 7512116.33351402, 7512431.25, 7512820.9972213525, 7514568.410311039, 7514580.102609287, 7515618.75, 7518207.8125, 7531815.313988313, 7531996.875, 7532124.2204057835, 7533215.525839545, 7534131.085782362, 7534408.800248026, 7534659.375, 7534760.558802905, 7535623.870652401, 7535913.604954653, 7537521.120139392, 7538004.586847025, 7538815.526093802, 7540705.389034855, 7540955.958167731, 7541607.165954273, 7542425.53261042, 7543088.962056487, 7543098.954017551, 7543329.8407333605, 7543500.6959563475, 7543640.625, 7543747.133428497, 7544121.254827041, 7544453.122318601, 7544466.759988745, 7544492.891661345, 7544521.875, 7544612.5, 7544680.275433483, 7544691.560229018, 7544742.915890825, 7545134.687304174, 7545227.480980675, 7545259.353651964, 7545269.381704859, 7545285.8117541475, 7545337.231738807, 7545359.408140122, 7545367.802268463, 7545414.602883843, 7545414.746764689, 7545555.724445289, 7545565.083078507, 7545675.580322196, 7545690.587837651, 7545700.7698590765, 7545729.5661531035, 7545801.307074904, 7545815.715875257, 7545845.637637219, 7545864.872378943, 7545867.1875, 7545961.2771224985, 7546057.343312667, 7546076.264794656, 7546093.75, 7546104.6875, 7546110.844716202, 7546152.825409255, 7546159.334823675, 7546195.070169049, 7546320.539850075, 7546324.463471191, 7546684.697592624, 7546797.972438204, 7546852.712983316, 7546885.434236124, 7546907.201673463, 7546933.71527362, 7546935.9375, 7547046.875, 7547073.4375, 7547079.6875, 7547100.701341157, 7547124.542084537, 7547127.328974179, 7547290.550850155, 7547290.625, 7547312.991779365, 7547314.69238641, 7547390.482575827, 7547407.194822436, 7547428.125, 7547458.199142189, 7547591.1554508405, 7547604.6875, 7547717.833666551, 7547744.597278822, 7547749.7280819025, 7547876.688056191, 7547901.5625, 7547984.375, 7548001.5625, 7548129.474146561, 7548192.053460927, 7548233.637793923, 7548448.187101682, 7548450.0, 7548564.962651993, 7548653.125, 7548822.818326118, 7549006.25, 7549006.965865089, 7549129.627122417, 7549162.480669813, 7549164.0625, 7549236.012809361, 7549347.7520308485, 7549432.412897354, 7549469.382898645, 7549518.060070801, 7549537.480583778, 7549781.25, 7549786.810169891, 7549789.916039179, 7549860.093993669, 7549900.0, 7550037.883772427, 7550051.5625, 7550079.591525001, 7550082.8125, 7550209.128769243, 7550217.1875, 7550347.420455472, 7550493.571748771, 7550546.479621136, 7550780.351086362, 7550849.868823214, 7550860.9375, 7550938.5543377055, 7550950.053337791, 7551080.132864485, 7551359.050593853, 7551399.381788866, 7551597.870993179, 7551653.32033769, 7551715.957440146, 7551736.465649985, 7551878.125, 7551996.875, 7552374.275634889, 7552864.0625, 7553005.600184268, 7553096.875, 7553228.953577945, 7553469.963469134, 7553573.982821304, 7554511.243611757, 7556470.3125, 7557764.0625, 7558757.179502851, 7561902.584721682, 7562354.776733081, 7562633.213846064, 7562650.0, 7563783.894437621, 7564370.115767468, 7566746.4888829775, 7566937.5, 7567381.283782631, 7568161.651156524, 7568985.528404622, 7569271.515266364, 7569600.752926701, 7570250.123285989, 7570486.671578335, 7570873.253070241, 7571063.52839518, 7571134.375, 7571368.571213292, 7571587.059683141, 7571720.164041372, 7571756.218486141, 7571778.125, 7571882.428036933, 7571965.625, 7571965.625, 7572513.714255219, 7572590.551157308, 7572661.900876344, 7572718.75, 7572805.246508559, 7572967.885785719, 7573113.214742741, 7573160.776764258, 7573220.34922076, 7573266.092007864, 7573294.964437771, 7573565.05152579, 7573574.287690891, 7573730.525248703, 7573815.302352121, 7573845.3125, 7573935.9375, 7573947.927377839, 7574066.6997066615, 7574156.25, 7574697.300745185, 7574698.941158928, 7574753.821463123, 7575019.281174677, 7575185.339010772, 7575279.888343431, 7575292.078799469, 7575491.234759424, 7575585.211782857, 7575592.826598249, 7575698.4375, 7575742.8672744185, 7575767.809192527, 7575784.375, 7575842.3262603525, 7575886.935670485, 7575968.283166443, 7576093.75, 7576167.423183701, 7576329.00319982, 7576377.776337856, 7576409.986424688, 7576447.985409624, 7576978.980875815, 7577007.364141713, 7577025.787658613, 7577181.25, 7577310.9375, 7577473.055799575, 7577478.125, 7577547.440924122, 7577563.428097163, 7577601.114311902, 7577651.462041508, 7577658.356647709, 7577698.264713693, 7577739.0625, 7577745.982010382, 7577746.875, 7577752.570192665, 7577753.436510344, 7577771.340871906, 7577773.4375, 7577839.865096292, 7577842.789176863, 7577847.405281837, 7577849.797356389, 7577853.75530082, 7577861.441292349, 7578027.914983463, 7578032.328024904, 7578073.992790741, 7578109.748378402, 7578114.343436026, 7578170.2829044, 7578214.0625, 7578233.660037191, 7578336.670378701, 7578341.515790444, 7578386.212314027, 7578400.7227847725, 7578492.1875, 7578502.24578057, 7578528.367257167, 7578528.786097044, 7578549.959048895, 7578560.547767107, 7578665.625, 7578671.013528123, 7578723.619989344, 7578725.0, 7578798.623863365, 7578868.485505516, 7578898.393247426, 7578919.270659901, 7578951.909753257, 7578985.9375, 7579010.9375, 7579092.098602161, 7579139.0625, 7579155.487494105, 7579298.792632497, 7579317.89839706, 7579356.905227923, 7579375.0, 7579382.429371304, 7579385.660339051, 7579393.439597971, 7579409.307036756, 7579433.69390818, 7579435.3451580275, 7579444.660803918, 7579596.311943472, 7579871.875, 7579889.310037679, 7579931.94370185, 7579978.89199872, 7580136.80269715, 7580145.403768141, 7580318.9890904855, 7580392.8587453, 7580448.4375, 7580460.509122686, 7580483.279338442, 7580601.634686419, 7580938.027099484, 7580990.625, 7580996.184566425, 7581073.4375, 7581117.286484091, 7581179.458500645, 7581194.689080962, 7581316.113221719, 7581396.145655612, 7581471.898196029, 7581568.002677195, 7581590.625, 7581617.650064521, 7581729.221142811, 7581742.378340154, 7581814.1573818475, 7581843.917167416, 7581969.483864584, 7581975.349341603, 7582072.916837498, 7582112.5, 7582121.102401924, 7582137.137586425, 7582531.629090254, 7582560.9375, 7582588.054062279, 7582638.445439519, 7582753.545674518, 7582996.875, 7583016.113197341, 7583135.346914722, 7583159.179077962, 7583396.6685597785, 7583549.007640093, 7583571.487189839, 7584105.926500821, 7584298.334780894, 7584386.414179119, 7584678.125, 7584707.8125, 7585468.063910681, 7585615.573571215, 7585637.660740246, 7586410.328026912, 7586526.065341918, 7586621.533487017, 7586963.707587618, 7587109.375, 7587225.307635832, 7587243.75, 7587266.615561704, 7587507.8125, 7587517.0194053175, 7587558.748959148, 7587578.99978472, 7587707.005164205, 7587727.206637271, 7587742.1875, 7587882.030732636, 7587943.838877422, 7587963.47483501, 7587982.749225832, 7588034.375, 7588118.496949754, 7588216.262376075, 7588252.485381204, 7588529.6875, 7588532.295620524, 7588544.595554089, 7588555.85978108, 7588571.234803395, 7588908.397815692, 7588929.6875, 7589145.3125, 7589939.310901958, 7589948.4375, 7590025.749648814, 7590083.965242409, 7590242.076451402, 7590429.6875, 7590503.257592643, 7590609.365714898, 7591042.8484070385, 7591105.181309836, 7591306.25, 7591311.877994276, 7591711.986871185, 7592082.035961163, 7592204.6875, 7592261.759540121, 7592707.730324002, 7592962.809196732, 7593109.6293670945, 7593352.43500131, 7593584.913695246, 7593766.9666414615, 7593793.75, 7594134.375, 7594166.586772341, 7594254.6875, 7594309.887396905, 7594323.494315624, 7594408.730457993, 7594540.108366472, 7594561.839949793, 7594742.51889687, 7594878.488869587, 7594960.925313821, 7595071.93991731, 7595132.210801538, 7595220.113996114, 7595240.625, 7595260.380494596, 7595391.430437891, 7595392.558592709, 7595433.150470102, 7595476.5625, 7595549.732609786, 7595623.143991802, 7596092.1127606565, 7596342.1875, 7596447.343262355, 7596773.207981053, 7596809.53358694, 7597073.768437757, 7597125.801721285, 7597434.375, 7597636.306021988, 7597740.03659344, 7598063.786792797, 7598205.701475918, 7598773.454943355, 7599062.5, 7599116.267205501, 7599566.838192521, 7599739.0625, 7600317.847934737, 7602219.861036384, 7605250.0, 7605734.375, 7612469.3755858475, ...], [8.825547001897688, 35.264184912579424, 38.592332563602476, 43.71393619192355, 7.632017814583038, 5.236106603837175, 54.321651520889894, 38.305175451413845, 13.150186632018393, 30.251492965472124, 40.50300497747193, 59.77382502617578, 56.285636714961, 85.22959266431369, 57.87181875435096, 42.08348711929671, 18.548922344519717, 16.146245040987495, 18.64979208107049, 64.07180443670873, 12.09652477863089, 39.83246658209493, 6.053574473344854, 34.92678474009902, 6.470293680365638, 115.52259435725362, 60.72602760944688, 8.850786459439565, 65.77067409117153, 6.168035624065725, 12.700056184758918, 46.51420216758848, 13.967427415587306, 5.650134678267872, 56.34746545257711, 9.647773855272664, 33.63141159551715, 33.6943719363611, 65.91648094504552, 30.49902092216203, 5.611266858385528, 95.25989733912309, 17.88839088105929, 56.91124546450608, 7.899801246205512, 11.957327540996225, 17.038255073155693, 50.43496941190129, 28.63940362004037, 8.725674249108101, 8.360497903520008, 40.92037682255535, 5.680546587772041, 21.374506960140224, 63.77418165779376, 11.677845507353016, 13.376842942838692, 36.01748183415151, 57.70502183089786, 8.075584753524977, 53.69774954428338, 6.674919406107324, 8.1273490645783, 29.099937245856513, 52.8027309263033, 86.0511670691686, 35.38324084174264, 41.29024441157266, 43.09252992051023, 18.68059687078668, 52.89950824794035, 14.937961005901656, 67.50381078586155, 17.032724584245926, 11.487381756603451, 60.96342828538318, 92.18030285391487, 56.109029637207364, 37.27370763378086, 6.686145084262829, 15.372859891683497, 19.784952536971367, 17.918665865928986, 19.821354342114386, 13.95188048029208, 76.9248775448391, 35.101825991805974, 13.312060064514815, 44.177774843014646, 102.09323263870415, 24.897902658905, 14.305373792117694, 6.463909595751666, 51.00430203803237, 33.389718948108666, 62.4124606909499, 15.608241521065137, 5.66751620174151, 8.142136188138922, 11.832520945784816, 12.502806072761802, 83.80007640601238, 47.049325971889836, 38.41247439548395, 11.614405908287496, 64.16835531393127, 46.71767100737518, 85.19864307408561, 9.454275654655525, 66.61079162680355, 9.746593322495519, 5.6405625243033315, 51.47082449827792, 43.755712991326185, 43.993456019510134, 10.670757013764625, 23.942867367346512, 70.4530033306496, 77.84899492566723, 14.370375899847746, 25.493645926124376, 40.145881507081725, 16.463182729221522, 21.069900423756785, 16.86808026837174, 21.377641340305633, 20.431798847967332, 20.387856850650113, 65.34013678097438, 7.318102447756908, 10.577879269366962, 6.139352717573142, 60.55244773467421, 25.022896894319008, 37.71082865388553, 29.66303665143218, 42.99598208000508, 35.40934108034215, 50.9129059438664, 55.424875288964216, 10.12058381429503, 25.640129698950876, 8.421399356386532, 5.545297458048379, 5.981616399215527, 45.56317359931897, 10.302105714664949, 14.855289838992485, 23.71675666133515, 68.1104880756543, 10.867387637930372, 25.461943148780787, 22.358974681789604, 16.930891139192596, 93.29566245132041, 83.4394678272291, 18.47846401619715, 72.53299487438423, 16.113443812963865, 107.10994243040606, 23.75082116306315, 10.331481415838672, 13.722214021206275, 6.774312728947577, 7.034547811499637, 28.567642074204613, 5.67504483819952, 15.173847799186882, 5.664809974129847, 19.231193002033585, 86.14781755056624, 9.048226163029591, 7.4623893588186805, 73.31898436469842, 50.802846678145194, 24.07966959696525, 21.757117441899624, 48.32891969509444, 28.06725130629807, 26.448474321877512, 18.77424570125072, 30.761916249260107, 43.20577683632047, 14.856691493822412, 37.17286111141334, 43.273994801912885, 114.77137237279472, 64.1358276366173, 44.283907184111825, 14.168905284781083, 40.12737980504572, 9.021268651351928, 24.07556379345034, 10.086292222564136, 12.405200123062214, 22.22201265826905, 44.59281391117979, 90.00997805791073, 8.78336824807592, 14.655284002122071, 46.55021360386791, 13.901209741796007, 91.32655668781265, 43.86848857532286, 14.366177776568508, 15.862244571327114, 15.486027432981395, 44.24714220961307, 10.267575844689357, 14.54319084776718, 89.64049825628976, 10.758764361671126, 45.15698653304829, 9.435002355892046, 33.542715308737634, 81.5455588011845, 22.441338111919883, 8.785851602607709, 27.606640787172303, 12.078203977490027, 113.25372207588569, 14.715126576080152, 16.177915063342564, 65.7169526947918, 59.065872892688205, 30.51024717240649, 19.783444082645115, 71.38160065457969, 36.24925598649582, 80.01283190839358, 80.11770398600201, 25.083647450805145, 15.404475614648995, 43.89847665432, 80.3576933128163, 31.481829514194587, 17.731135430933243, 29.740711597155563, 36.508020233063924, 8.56079877148167, 24.0436906721631, 5.980070310544802, 73.10812675866202, 112.35402015722254, 73.41589370076096, 56.022220507744336, 23.972577359934768, 21.372374070996642, 60.815700690796405, 8.944003353886519, 12.56466311349559, 27.009723362325502, 39.43490445905726, 148.69557687457964, 17.152411935657618, 45.8714663249924, 25.71479278774207, 10.975097737303981, 53.60036460389497, 49.10278099127543, 105.33320763913358, 23.08869289665808, 44.30443942539191, 48.131575525502534, 42.64002148206799, 10.065761342934383, 78.11802462842525, 10.045171423586131, 26.424124132872773, 7.549000012363909, 55.46208364133558, 13.227653976424241, 17.778708233194973, 37.25290217889573, 8.259296969495457, 22.07725185459389, 34.87205129899684, 98.1059653123829, 19.657133351789106, 10.057090059193827, 14.438862083225294, 14.816637667224878, 77.54367556380487, 6.085541047270248, 6.441239116975251, 39.186150525205846, 24.951569384437928, 34.42167127511089, 30.57892417401265, 5.38968126236522, 36.0125321306833, 10.040046415742843, 5.240595239681815, 57.612961394165694, 69.79078731129553, 57.9757825116686, 34.07669893301936, 45.253933112145454, 14.188491915226432, 39.88115400638649, 63.09566963076748, 79.97263500004992, 14.204950328748378, 66.36095949113319, 34.53432640513524, 20.498371847117554, 5.4084848724257775, 69.60506936042466, 186.00808246840833, 23.07066311719207, 107.0327823342622, 8.814167874857644, 5.771148133377961, 25.40364334291107, 29.706548674546763, 58.34943751705571, 11.081071813510308, 39.06502956861318, 43.35239264358236, 7.342937733484784, 28.06153750743192, 105.22726777536491, 5.897024136684353, 11.249834368586566, 37.76302602967296, 5.969913334868782, 31.451923480203327, 16.008647932652224, 7.367927182336604, 112.04934753741934, 18.34778295404739, 74.82204445805812, 18.430037643819425, 10.201184053090115, 17.455956182108327, 20.78726133658799, 27.476565388077947, 9.750647927980246, 17.49101172907009, 5.406222017119683, 43.411717746178894, 17.417488358336932, 6.977253614899838, 114.42645748917373, 35.22379854634355, 103.42102708086381, 35.78114759923939, 107.37039281422666, 11.270228939158747, 22.992097798112816, 32.22718057208114, 50.33302930423739, 16.342714501161055, 16.740909139217077, 33.86133970665889, 63.83461563141036, 30.864568486418047, 6.4060761641942605, 32.917112076255854, 145.91689082936185, 8.09039921135389, 11.463044842495483, 11.952362895981736, 26.725565711879707, 56.88551214973834, 8.411652413309948, 83.83255052347928, 64.42730626768278, 84.268444125388, 23.474695665030552, 81.23078280687027, 40.47122338683154, 21.93742671027949, 65.7626623616757, 29.30264089132306, 48.90509077160407, 6.734006089060408, 18.111950726224798, 5.874406428291435, 50.359149636169974, 27.31258878983482, 36.10098286992066, 74.04960969337392, 70.90630706740205, 54.766551459259055, 72.53784056848747, 79.33782345417043, 36.61434841431465, 22.541144784502258, 37.024594106703915, 13.932694309436549, 83.16993606144086, 8.481125927962475, 122.41752270544787, 21.442935055774903, 85.53086502820832, 44.18890448078693, 6.422948045281972, 17.915569499572744, 11.818911108551209, 30.290060760630706, 29.185310616865046, 36.58617249170596, 21.46816036996373, 55.4349806897515, 15.246415159752535, 58.79414345233757, 9.77685670388096, 116.49706245522927, 70.6291296352751, 21.302061996432315, 21.02156333163527, 10.832633473124687, 90.65806094533184, 71.22498518396361, 63.49180026407682, 38.10011490496541, 11.601712659326738, 54.531097107710956, 7.1909100428062835, 64.89522057195904, 5.7375124733846325, 151.54183850441498, 77.8826998831275, 121.48753221742687, 13.175353503909884, 29.878685726656744, 9.343073289614365, 47.99994824140431, 153.2110131979949, 20.808652296577982, 50.931351086380154, 20.079588210764637, 26.89671188799338, 45.26966880715217, 66.41895599453204, 10.974435211363854, 67.37450763612051, 7.0987507638051985, 5.393509594938301, 22.933393776090554, 54.42784330076815, 30.309533624962242, 9.17879109732133, 59.23872583948764, 17.493370309625927, 63.506292550571885, 38.241057506096695, 19.890097162794294, 54.96146652077957, 44.71367645775267, 6.2767713687657345, 22.57829952178236, 11.156729455842644, 8.33587551551113, 14.607184183004806, 39.90251689313402, 62.3805268087435, 6.95370191045723, 8.120694739781172, 42.06140543906758, 134.05012002128498, 22.455343962599528, 8.126525697739648, 44.54412323042616, 60.536423978471625, 33.270677056260006, 115.8584543055683, 37.9244705515294, 31.132184103417337, 54.197769559686776, 33.28631263191547, 34.20428990184352, 17.91768894752469, 87.45259980422644, 9.569642336834008, 25.194540044690598, 9.663436122040865, 26.623432357942665, 33.48708302971634, 11.1232399757131, 13.967805240394139, 28.6649631386042, 118.35856965048345, 106.82148863730495, 10.096619704151324, 61.240321675018656, 5.8580007005334735, 21.463874510199933, 5.834463302062842, 8.895257934878657, 14.759167919760262, 9.91552951008957, 25.62789849321757, 10.9622332779574, 73.00458722765964, 5.315164161967976, 104.21799486102545, 79.1851098171283, 51.05991850189562, 84.92432964033837, 13.543183121130273, 6.944586850380438, 16.393696050940797, 20.220342646761345, 21.639034091104232, 22.310967542667967, 78.18056296208415, 13.974759368905886, 14.81751458380735, 27.12320990588242, 46.06764390324344, 43.46225748824813, 25.64123487434767, 90.1825726739137, 29.51935389092205, 6.726327215437515, 55.30713958904805, 24.135004880048314, 19.530895345941335, 78.08039513472409, 31.137029456024756, 15.49324911480377, 33.07240198364212, 23.992460636454283, 123.80318962647279, 7.978696957352277, 19.369829885903336, 6.727118402877494, 7.251731447722172, 60.079679463368976, 17.674185050204382, 12.010212577044427, 145.04777413082408, 9.724544895234368, 17.735882413019564, 7.678635359273682, 8.28684949602569, 46.91361967625666, 34.34302355560671, 19.50229661677234, 25.69432172830077, 7.087332024413748, 7.320319342135171, 36.14623808113833, 8.649992772277258, 9.806159172567416, 19.623040566843503, 54.018048064007196, 17.362348334873616, 32.251895082812105, 6.3577658066357134, 5.4473731807673325, 30.608931139711736, 84.62932260687212, 84.73977206750327, 13.875262556843737, 72.79405626542456, 19.094009660224625, 8.234826596398646, 197.98958129351007, 32.223060544177244, 85.15569742782941, 95.01796376450629, 8.529735445931252, 30.203412504845573, 64.6353941285916, 79.96374963110496, 14.577466091771463, 12.435393084388593, 23.85563680558662, 145.44853216530788, 116.6317859085483, 26.68506931668975, 17.359015158487136, 11.326070740453604, 152.9048005922426, 52.308911978130794, 5.62850281495974, 5.580631912517586, 87.15737435278947, 11.297667811889326, 6.003167298699892, 85.34977251931375, 46.946786446311535, 9.883479666483808, 20.31098104267586, 5.754737784737964, 64.0126515023293, 10.251011279680034, 48.90976360134167, 14.520693038262, 32.71527929497677, 67.68471864150011, 16.504896899281224, 27.669433186344378, 14.387409644781801, 18.400192339959112, 10.39487410762441, 13.212680799451057, 12.17461798993701, 51.978760752126504, 12.590177846871873, 14.498320515686746, 5.6000679852051, 15.2995782175208, 23.524220011159223, 6.936732258328945, 45.14477618260289, 23.534604669451276, 38.38765871106898, 24.59199818361168, 77.94409371743461, 91.79041002419248, 14.599273547560587, 70.27184127809107, 14.790555791475148, 14.98914814646662, 198.63571673216393, 75.95406065230728, 83.27711489211406, 38.08287308362026, 10.539478776543795, 12.44412253299194, 56.081133311586456, 46.01540127028158, 68.21368617677057, 86.50232205382031, 31.73402045781886, 53.663138777067964, 244.31050929264762, 208.10008883024204, 18.973720538806145, 75.82947433661477, 95.00011459994204, 17.218372410136183, 5.5644523284636636, 10.91215442164654, 13.0149095386914, 41.666081723971786, 90.39368190329772, 8.58853090768604, 45.837718405224884, 18.1493723335683, 137.87785893408565, 75.10316738453723, 31.28249921225401, 57.346933834853424, 36.426647007019994, 31.340812043261153, 91.93727430668022, 119.1121172571655, 10.142558713188935, 24.40570947613522, 67.8822222647959, 20.013279875616465, 76.08019735154271, 20.381315001151204, 31.759644033837652, 26.890671391519795, 26.533388982181627, 28.147917633904676, 52.5729448838409, 15.236538856096063, 14.215048162299102, 22.5567049118686, 18.064110145622426, 19.786876313959826, 14.868016729735434, 97.2080938926542, 40.66910947152717, 19.63442827919862, 18.636901218316314, 60.44120291579732, 16.63830897561714, 36.38240061279548, 10.980933809670276, 37.76575666366491, 40.88364878560492, 62.985247509871826, 8.597744952175056, 5.524491537318576, 17.356151058610095, 19.09039171506827, 14.464035705272854, 69.06594366461901, 44.940953621794705, 58.751688370051596, 81.75017900276643, 7.489973502853119, 5.503810658436095, 13.147516827943111, 22.571339597036353, 16.380553230561468, 9.821830504407794, 45.195109486136296, 102.53001520426092, 19.513221555179452, 55.09529402494759, 49.84100598701674, 73.62541220639756, 151.13259779970969, 8.110243202458394, 17.526691032860125, 11.642444181556327, 105.40713264516356, 73.62603168721465, 12.97598222008073, 57.688644819875535, 249.35711410526608, 23.236549265031726, 61.61437813940203, 13.379598229714926, 84.97039971920995, 22.709701737956546, 35.88969514155052, 13.794474352826633, 99.69714979334127, 9.007893500261481, 20.89289865599116, 15.21070815234973, 35.72566009830854, 18.74221703831093, 41.026001079098705, 12.691189364815445, 37.88388272435436, 67.31534457474956, 22.109874660841975, 7.550411004635456, 27.916086573592594, 63.089383585144894, 9.026182285890224, 29.41038472366692, 77.99469048836616, 23.153441216967362, 44.71201368717921, 36.37435866043373, 106.1094708377733, 20.2183543632118, 35.72635515313926, 57.700608557112744, 104.28423580598216, 15.083343631534266, 17.080551681967265, 32.90761065809121, 26.317343595398384, 57.62178668479353, 102.08492221549423, 102.18607078168188, 37.38181550975622, 85.28705114652078, 8.034060702743993, 14.261991024398887, 53.14910452974266, 33.40835257516916, 35.924636680071494, 18.482437463077126, 17.44380281329968, 70.48945699575359, 77.16979497229615, 20.75518099710381, 27.663661391336902, 5.662077332103253, 46.975516231297235, 40.22796627814056, 12.38730768743441, 12.261712853108081, 72.90163348742686, 30.334896176012627, 13.153249185572482, 60.59890608543272, 58.91206597660829, 7.690764304794146, 19.832550117890094, 89.85390855891575, 18.378582433842148, 60.38462645016884, 13.585670970501162, 22.02420087626721, 57.2477126375108, 84.11986608142931, 36.41866177490888, 83.5756023901439, 91.24295741892841, 29.652780308754657, 19.796989598863178, 13.470222440067898, 6.471457951829195, 5.988236703194178, 5.391909402926105, 52.62273430241642, 20.961491139232184, 29.175094997638073, 182.5438922607874, 81.02594542584846, 6.406499492401245, 32.314342744478495, 70.42269033413545, 56.23471076257327, 61.68379796928775, 142.10091608580888, 29.640611821452303, 106.98582070178546, 14.13346724692017, 79.70968550629973, 22.372597640500047, 11.76618942320082, 51.87621432392734, 39.73400344952084, 36.12330571403007, 38.80906554101207, 26.36858087344237, 12.879152132569208, 11.586262483628982, 12.482907947466021, 55.630238404892616, 5.0815358349772435, 9.54500492607143, 12.346488183459458, 98.29581426774149, 5.592840991480903, 55.07338379427958, 46.60683495205943, 14.079081456276132, 68.5552432537319, 116.46823139636393, 14.020894458230195, 14.775479961333494, 5.5588949017346145, 16.453819099116597, 72.331597498094, 68.84356236771626, 26.882223243276556, 54.28432781168138, 10.113797372636842, 17.342154338786322, 95.45651347346352, 47.62648137832537, 74.161669283257, 31.337510338069453, 57.85255321740367, 21.877142541252812, 93.68423814305548, 5.085282847755795, 27.137195006735116, 150.384994775551, 20.886324172430506, 43.77776025139078, 56.98466038740304, 7.316580896670568, 10.07671294277801, 23.048759224447316, 5.712591280164334, 34.431702235959314, 23.46059662878464, 29.776407207486212, 10.518217278787509, 17.546330672599137, 6.498466936053708, 25.022629517842724, 86.05870420283459, 40.988689166014346, 51.60798647894873, 32.40070944234813, 14.135045834952884, 13.000279327856923, 11.987433801170996, 19.4744524475527, 70.08451775977566, 10.13102352253347, 122.97699048390604, 19.819960788872997, 23.093480273693203, 24.43771772343037, 113.19163515961903, 5.7174802293357905, 18.740713873622163, 30.97169661900816, 21.28942766402289, 46.56361417132592, 8.753684917207945, 22.984942100181737, 7.746354803520303, 142.5574535771536, 17.57843238835143, 5.887411160712418, 16.830528922232862, 164.96021466816268, 51.71664531853743, 29.434866931432705, 149.44271075896725, 29.541081869275224, 12.153474878724788, 139.2649769337276, 25.705568114897915, 26.646617376814323, 5.417015143868114, 30.580486151136306, 181.4117132440386, 14.880496098630587, 41.36085136806132, 6.287722610978627, 45.43538906599362, 73.30169212522094, 23.234569197078834, 10.614848835716385, 61.13862984480251, 145.52449651979884, 55.95808236474979, 10.33772034340004, 79.92917709153198, 10.87475038205908, 12.993614913891651, 32.55209504613683, 50.69228757941777, 36.7370061147421, 55.31335185133624, 117.1323045033601, 5.537409647869476, 14.16803472875052, 16.375782859309453, 60.859661682920446, 29.662361680389033, 37.20695504197769, 64.04148620154294, 50.523725860582786, 44.367058753382025, 65.38633346880653, 30.359293783341798, 8.843009213036236, 82.4928526631306, 48.11462781920092, 58.61054489675873, 11.53951881741265, 31.012516200493398, 46.45289419822687, 13.580185806342328, 26.506990840574893, 34.11291133129867, 35.214230799934974, 28.342512261278557, 19.897846882346272, 17.229801607372668, 62.402611025002884, 34.5005314075464, 57.242829160932125, 198.91464032376848, 38.67223560746726, 19.388616766324244, 8.24359414261638, 5.7267227976476685, 51.36562194162269, 19.786314152870546, 59.99226363338423, 119.51642769496449, 56.68927360244535, 78.08026055154315, 10.302785351341429, 132.27300506132823, 12.937900408797711, 27.204539155176285, 6.961737423348992, 21.32876129718625, 20.032441426691253, 27.62447529580461, 65.89593674310261, 69.82563521646246, 71.07529230456439, 48.66483239006559, 10.830988586436645, 33.03963678093978, 51.739584408157235, 29.27473000490152, 52.761096425076275, 41.47619670555581, 47.67875978129999, 70.99841649485747, 22.0017502924536, 14.66408999333103, 43.658270362274095, 59.61644768682358, 6.238629369965421, 11.38497874207974, 6.123203495293339, 87.0702456478851, 52.364602350187425, 5.841760391635377, 69.42454032829949, 24.06608880477871, 21.02232881824226, 16.513448231391408, 47.150998029998156, 16.16992621570962, 23.140697766296615, 51.09009334262867, 18.242252366531748, 29.435583910631625, 77.19263775576998, 52.39752549696107, 7.84633866738603, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)