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 = 45428
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
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
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 - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
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);
([4947140.625, 4992554.6875, 5108500.206124676, 5109069.771972832, 5137522.503338139, 5186407.731630295, 5236787.041319584, 5253548.4375, 5311358.856804226, 5327871.203409906, 5328301.047391316, 5332695.081221937, 5387659.908808793, 5387854.670263958, 5390432.8125, 5391672.779600557, 5392497.9446001835, 5393092.860382901, 5423587.5, 5434005.535751175, 5443046.875, 5479921.6675808765, 5482119.695747979, 5483350.393515931, 5483991.617930169, 5487382.8125, 5487429.737544961, 5500322.591335522, 5506784.375, 5507838.459510362, 5508926.110234458, 5509312.5, 5510863.8035011, 5510932.413519871, 5512968.3484762525, 5513866.315925307, 5516342.1875, 5516665.643968838, 5520036.898284258, 5522745.3125, 5536365.625, 5536369.557924181, 5538085.287417186, 5539054.4284491185, 5539212.5, 5542684.375, 5547459.608082867, 5562703.003730589, 5585020.835251281, 5588523.396994141, 5589176.357156095, 5594868.115441328, 5601212.358458824, 5601263.593692127, 5616603.936675523, 5618068.365118464, 5620444.809725645, 5646076.938699539, 5693409.96490185, 5695715.625, 5697715.040496266, 5697866.118507225, 5704727.554389024, 5705369.31546363, 5706231.25, 5707369.419868593, 5710063.078926432, 5711013.649775896, 5722760.540047546, 5722806.25, 5736691.328767886, 5743860.9375, 5748984.12480104, 5751998.038929146, 5757443.75, 5762392.050789353, 5764041.53535193, 5764592.830862298, 5764771.592567884, 5766070.05222879, 5768151.254123346, 5769062.5, 5781661.488501431, 5783506.009987929, 5788815.625, 5789974.95892592, 5793812.722345304, 5795231.986033778, 5802887.5, 5806360.065412072, 5826682.166830457, 5872834.80451911, 5879791.004290318, 5881561.677082695, 5882528.125, 5887134.898574788, 5963301.5625, 5965425.0, 5969925.413759014, 5972709.055378981, 5983284.336485275, 5986092.920235731, 5986790.4893521955, 5986897.769783196, 5987972.459429718, 5987978.897389438, 5988062.748160211, 5988813.407834704, 5988818.127863946, 5988946.875, 5989262.954630896, 5989756.83251799, 5990232.8125, 5990967.1875, 5993460.290761537, 5994038.781248091, 5994940.8040030515, 5995570.3125, 5996540.74993648, 5997595.551628304, 5999512.5, 6000597.2326357225, 6000976.5625, 6009873.40835272, 6014754.488849062, 6018590.755022637, 6019262.21565083, 6019757.550084037, 6020862.943960493, 6024432.00131114, 6024795.3125, 6025151.5625, 6025459.375, 6025876.5625, 6037884.166292115, 6047214.0625, 6050367.03467517, 6052642.1875, 6052719.289353649, 6053812.278088136, 6056337.521764225, 6058482.8125, 6067644.9257694995, 6071662.5, 6071773.443459183, 6073062.054490556, 6074226.8630538285, 6074262.5, 6076535.9375, 6077140.625, 6077188.251905253, 6078251.203304782, 6078425.0, 6078521.875, 6079843.75, 6087023.4375, 6089213.78412412, 6094147.533871851, 6095145.3125, 6096859.842554586, 6097323.4375, 6098994.53649569, 6099072.108840366, 6099142.958500108, 6099843.637241335, 6100257.8125, 6100645.4157797275, 6101565.46910945, 6102556.6064136075, 6103109.171297104, 6104490.625, 6105759.765729508, 6105866.776902255, 6107081.15475778, 6107194.172066612, 6107385.371209645, 6108803.781176861, 6109053.443248062, 6110202.871343762, 6110843.75, 6110858.208410956, 6113045.59493725, 6113075.3292053435, 6118679.128225723, 6126966.617209007, 6129402.700823111, 6131889.339408106, 6132437.255138904, 6133341.283481902, 6134366.103271559, 6134843.052294697, 6134917.1875, 6135314.0625, 6135671.724577726, 6135717.217847539, 6135878.391793099, 6136513.317884111, 6141326.5625, 6142996.826318847, 6145079.6875, 6145385.829214453, 6152050.837284865, 6152248.751269443, 6153951.258847649, 6158112.237908713, 6158637.5, 6159210.781987988, 6160808.8695680965, 6160847.879887931, 6162412.417075439, 6163731.064952657, 6164209.961457851, 6164237.98352649, 6164461.8940964565, 6164506.25, 6164603.425660162, 6165129.562008758, 6165378.040185493, 6165412.489240107, 6165583.545111711, 6165725.0, 6165786.863279999, 6165904.6875, 6166052.154155817, 6166072.639279028, 6166557.8125, 6166661.010747808, 6166759.375, 6166914.130694509, 6166952.548129784, 6167016.662087626, 6167174.0590003915, 6167215.763602499, 6167271.92559066, 6167285.736554051, 6167287.150601243, 6167356.25, 6167638.0011810195, 6167646.786498853, 6167856.642481095, 6167889.874134567, 6167957.8125, 6167982.670434037, 6168225.252598425, 6168388.928251231, 6168634.0814644955, 6168781.834459341, 6168945.378198541, 6169015.00698417, 6169035.460733519, 6169635.041177965, 6169669.617919168, 6169671.875, 6169753.125, 6169890.858065235, 6169909.375, 6169917.088919724, 6170037.987064476, 6170066.600048722, 6170101.519565263, 6170362.5, 6170375.707113592, 6170438.222335389, 6170467.097810477, 6170571.875, 6170602.641573836, 6170782.159233729, 6170992.1458003195, 6171161.406370759, 6171381.25, 6171648.4375, 6172071.772478884, 6175104.341839443, 6175846.536761887, 6177070.047817782, 6177412.40968956, 6177685.9375, 6177737.5, 6177852.682580194, 6178122.159133871, 6178273.4375, 6178566.065610642, 6178799.967934311, 6179687.696520423, 6180481.6236635335, 6181922.423567037, 6182138.8817777, 6182160.962263185, 6182164.015470277, 6182315.3891354, 6182353.125, 6182623.4375, 6182962.950765971, 6182980.3404269405, 6182998.945636476, 6183249.377917089, 6183323.983381608, 6183385.5956884585, 6183386.766905714, 6183932.252733934, 6184273.798327305, 6185023.4375, 6185041.210504243, 6185042.1875, 6185753.125, 6186344.807434815, 6186531.25, 6186534.940650077, 6186584.695212897, 6187099.768890153, 6187202.854078313, 6187224.251120467, 6187370.894219606, 6187410.928183298, 6187544.964925434, 6187619.227076947, 6187738.449615242, 6187803.981519357, 6187909.2767007835, 6188339.0625, 6188389.596062647, 6188427.02825765, 6188511.740363544, 6188743.585259859, 6188901.676412024, 6188927.423866349, 6189337.5, 6189360.9375, 6189671.304778961, 6189981.681423696, 6192729.6875, 6194885.740426026, 6195368.171640695, 6196082.643080875, 6196242.1875, 6196661.840006806, 6196714.458739631, 6196914.852078352, 6197366.398806778, 6197745.3125, 6197944.410958953, 6198380.417029127, 6198635.9375, 6198932.8125, 6199126.047280114, 6199341.111292486, 6199755.701065984, 6199758.763666847, 6200100.0, 6200112.8205376575, 6200150.305432896, 6200447.119283921, 6200499.250456508, 6200622.889348465, 6200666.278365876, 6200714.151985716, 6200738.0574274575, 6200767.1875, 6200930.081954694, 6201025.297336184, 6201270.173891896, 6201634.808885603, 6201635.9375, 6201648.909354628, 6202402.75042368, 6202604.6875, 6202758.242348444, 6202923.257204193, 6202943.864052176, 6203056.914139254, 6203291.039763334, 6203297.840228475, 6203300.29912366, 6203308.929369816, 6203339.0625, 6203380.674460596, 6203393.75, 6203487.037443465, 6203492.713359904, 6203495.834050862, 6203522.781213981, 6203579.6875, 6203632.3758082315, 6203681.190049883, 6203714.800384449, 6203824.65022315, 6203894.276565519, 6203964.0625, 6203993.75, 6204129.411095497, 6204361.967243608, 6204468.75, 6204548.4375, 6204586.45437081, 6204587.5, 6204606.25, 6204644.894156589, 6204709.701249901, 6204733.862286858, 6204869.414221335, 6204978.826928278, 6205035.9375, 6205220.134179791, 6205258.231122884, 6205343.532665135, 6205354.6875, 6205357.0852765795, 6205393.517781983, 6205415.492219731, 6205420.3125, 6205446.645124248, 6205484.1317639, 6205487.5, 6205497.990861039, 6205501.5625, 6205605.347179817, 6205625.098879589, 6205660.9375, 6205751.09948566, 6205821.213386374, 6205837.475767866, 6205842.109842228, 6205848.40603352, 6205852.695892113, 6205863.470673906, 6205932.7014645245, 6205955.984943818, 6205980.686519047, 6206009.012903157, 6206042.652725813, 6206109.375, 6206112.2855874235, 6206118.564703028, 6206149.831866571, 6206186.71291488, 6206190.951404376, 6206195.3125, 6206231.48211515, 6206301.966690241, 6206438.844754829, 6206445.3125, 6206459.707628753, 6206465.945296874, 6206499.198825428, 6206621.875, 6206658.157702798, 6206687.388882988, 6206721.221084549, 6206850.0, 6206980.871036429, 6206981.25, 6207193.436066574, 6207217.437816314, 6207271.87250384, 6207367.358342567, 6207437.043503686, 6207437.407904323, 6207437.5, 6207465.9837804595, 6207490.256183689, 6207499.348096418, 6207565.625, 6207641.563198905, 6207652.2155457055, 6207741.512814749, 6207796.922112532, 6207867.071830322, 6207873.21504128, 6207884.206181858, 6207983.42997642, 6208192.1875, 6208226.446890298, 6208277.273581036, 6208478.782314039, 6208496.187575054, 6208521.890989266, 6208545.097095361, 6208617.1875, 6208714.400191173, 6208877.544457424, 6208902.845018618, 6209131.11732942, 6209300.0, 6209440.69447751, 6209558.449838812, 6209673.4375, 6210129.531319557, 6210142.254540566, 6210299.636197834, 6211594.694583103, 6211629.6875, 6212012.34918925, 6213217.1875, 6213500.118928493, 6214149.247585877, 6214253.125, 6214442.1875, 6214489.0625, 6214890.661546629, 6214976.5625, 6215047.301650107, 6215171.875, 6215257.8125, 6215290.625, 6215365.625, 6215453.125, 6215664.186741848, 6215679.6875, 6215720.842671785, 6215850.0, 6215952.876258167, 6216284.375, 6216746.119446118, 6216938.105552034, 6220608.767291573, 6221919.325065517, 6225237.5, 6230402.645408385, 6231111.427191089, 6231293.6317270575, 6231510.834806215, 6232398.2667839145, 6233625.0, 6233966.719246712, 6234623.4375, 6235785.927603512, 6236419.95244137, 6236476.6487002885, 6238488.911894228, 6249339.043426753, 6249355.989258995, 6249375.0, 6250884.452125211, 6256001.5625, 6256033.602564303, 6256114.285983081, 6258935.9375, 6270619.992489341, 6276009.317044791, 6277973.623132138, 6277991.638975283, 6279433.560305584, 6279450.0, 6281510.572525307, 6281870.631860151, 6282433.672182959, 6282612.332473112, 6283729.437687783, 6284560.669323357, 6285229.6875, 6286082.8125, 6288082.674879758, 6288640.500466822, 6289912.052917753, 6294819.711589478, 6308570.422645329, 6310144.459287245, 6310568.501364016, 6310614.0625, 6311041.197194483, 6311281.25, 6311461.06421733, 6311477.99512977, 6311705.054926967, 6311735.9375, 6311924.916951392, 6311968.75, 6311971.875, 6312092.9539328255, 6312210.232773107, 6312277.05735811, 6312451.423452631, 6312461.645706841, 6312476.306174793, 6312510.769598867, 6312647.21707474, 6312749.997688577, 6312917.1875, 6313295.737369113, 6313431.25, 6313462.964054258, 6313504.383816165, 6313700.821805407, 6313866.998087035, 6313909.375, 6313962.188520789, 6314185.607374147, 6314218.665828459, 6314263.247678489, 6314264.706765166, 6314271.875, 6314301.5625, 6314316.842628301, 6314370.902526945, 6314792.472444969, 6314807.260331306, 6315057.8125, 6315510.9375, 6315510.981086277, 6315550.0, 6315564.100262709, 6315622.218028256, 6315865.126078104, 6315879.469137943, 6315897.302857967, 6316003.125, 6316094.494006378, 6316097.702507993, 6316104.995035914, 6316110.68187856, 6316342.176367135, 6316535.9170432715, 6316607.8125, 6316651.5625, 6316678.125, 6316688.535379661, 6316700.0, 6316729.157993651, 6316765.699370049, 6316784.375, 6316802.814409211, 6316831.310007734, 6317026.073524914, 6317096.875, 6317371.0724984575, 6317501.5625, 6317510.152383317, 6317612.050535115, 6317806.298682187, 6318012.5, 6318031.624566078, 6318057.129126375, 6318213.816274471, 6318246.875, 6318638.785092755, 6318792.1875, 6319187.935108778, 6319550.0, 6320287.5, 6320434.33279176, 6320917.338162797, 6321418.8363750735, 6321910.033300843, 6321953.596057924, 6321978.125, 6322144.327921495, 6322146.875, 6322214.0625, 6322426.758301926, 6322451.5625, 6322479.493048371, 6322553.105926753, 6322603.910788974, 6322632.306148621, 6322667.078501569, 6322854.948104017, 6322920.565104585, 6322922.022688118, 6323205.271091316, 6323273.419030645, 6323285.244699475, 6323448.921528957, 6323508.627403812, 6323675.695104479, 6323739.19306102, 6324178.364561513, 6324317.135369329, 6324334.265250647, 6324602.168774464, 6324623.4375, 6324665.625, 6325169.157245153, 6325560.275887165, 6325648.3653974915, 6326181.068905232, 6326804.023832133, 6326866.746141464, 6327324.722905502, 6328942.1875, 6329027.272667763, 6330355.9427164765, 6331313.827445107, 6332306.950662492, 6332315.625, 6332974.686437589, 6335389.991799953, 6335396.746422627, 6335437.5, 6335467.531032727, 6335500.0, 6335542.659134444, 6335934.766979378, 6336595.3730825875, 6336711.49721648, 6336833.73847568, 6339140.625, 6339166.846263978, 6340868.278148691, 6341122.808698731, 6341134.598072322, 6341614.823757957, 6342071.270669428, 6342454.534621991, 6343042.1875, 6354568.75, 6354891.238385026, 6355127.18059811, 6355669.660880041, 6355680.843447982, 6355704.075357853, 6355993.75, 6356047.419083723, 6356856.338700347, 6357225.0, 6358620.897613687, 6361632.748001517, 6362012.5, 6363116.599790278, 6365407.598271477, 6370444.67662526, 6370682.8125, 6370900.435277024, 6371608.703158361, 6372399.476341695, 6372685.514815612, 6373426.301131628, 6373782.572830221, 6374176.5625, 6374195.3125, 6374596.109325995, 6375026.29793817, 6375098.735304013, 6375250.0, 6376010.528193638, 6376082.8125, 6376179.421620942, 6376496.875, 6376631.032211274, 6376671.793071658, 6376680.890142011, 6376690.885238559, 6376955.9650351675, 6377297.792435815, 6377529.46185421, 6379762.5, 6381723.323026774, 6382480.572814933, 6383365.567601552, 6383485.9375, 6384488.039107945, 6385150.0, 6385414.7262838865, 6386431.003593624, 6386525.95533645, 6386534.375, 6386728.331874976, 6394962.5, 6396727.90546193, 6397285.9375, 6397321.730063833, 6397619.770607628, 6398945.3125, 6399206.158586147, 6399223.4375, 6399473.904291064, 6400100.696131609, 6400385.7861174205, 6400461.183404449, 6401360.845246816, 6401371.686230046, 6401558.556950476, 6402122.501409016, 6402349.90314033, 6403359.3171016425, 6403359.603438139, 6403388.762705292, 6403685.632282218, 6404172.522633906, 6404327.5210091965, 6404482.088870003, 6404534.755237007, 6404595.422709828, 6405179.107577158, 6405562.33807119, 6405734.7957003, 6406419.182508676, 6406429.345628258, 6406610.9375, 6407186.862683345, 6407237.5, 6407436.905946552, 6408012.5, 6408175.0, 6408293.317274164, 6408997.620621763, 6410050.0, 6411235.9375, 6411404.918655319, 6411528.554633696, 6412419.568389512, 6413603.125, 6414205.357055586, 6414491.932994743, 6414923.220794195, 6415675.441944356, 6415737.623728018, 6415945.232608725, 6416415.625, 6416676.429663845, 6416702.077149829, 6417445.3125, 6418245.481062977, 6418707.8125, 6418723.662264948, 6419073.4375, 6419215.625, 6419302.383811582, 6419311.431549178, 6419569.765177577, 6419570.047394765, 6419618.775643437, 6419640.625, 6419648.911039807, 6419672.050812468, 6419695.434922647, 6420066.685621114, 6420350.427086334, 6420413.202795581, 6420635.9375, 6420745.3125, 6420880.705210536, 6420899.70173841, 6421010.138845026, 6421309.375, 6421311.322689279, 6421359.351440842, 6421371.875, 6421532.8125, 6421590.625, 6421647.625685426, 6421703.275798616, 6421971.006211262, 6421999.5823333375, 6422001.559732632, 6422240.625, 6422346.1960417535, 6422467.06554626, 6422560.722931992, 6422564.0625, 6422721.875, 6423262.213740232, 6423274.799734637, 6423335.98969526, 6423634.200856791, 6424440.625, 6424676.5625, 6425062.5, 6425074.765532013, 6425673.314090401, 6426458.509150408, 6427035.869036848, 6427509.753575469, 6428743.579736476, 6428820.349087402, 6429164.064441993, 6429691.899114858, 6429730.940905676, 6429823.4375, 6429846.102432036, 6430050.0, 6430050.0, 6430262.328838037, 6430459.108650923, 6430543.75, 6430664.0625, 6430986.669511189, 6431048.516894904, 6431258.103181296, 6431396.133714287, 6431414.707282113, 6431440.561728605, 6431571.902394623, 6431858.177794867, 6431913.996428838, 6431963.18931367, 6432196.962439819, 6432201.012509524, 6432672.68819698, 6433088.124619433, 6433209.142062677, 6433351.77983898, 6433446.4771677125, 6433650.0, 6444881.195292788, 6444896.396948926, 6449770.3125, 6461951.5060536545, 6463533.768895815, 6468068.75, 6469249.072303409, 6474815.625, 6474969.237279143, 6476151.5625, 6476756.25, 6477482.224516467, 6478467.1875, 6480179.6875, 6480246.002710248, 6481711.530510021, 6482040.589947786, 6485429.285732839, 6485845.3125, 6487084.529978641, 6487639.615373009, 6488583.931003101, 6488993.072396858, 6489442.933034498, 6495556.400198858, 6495781.25, 6501397.291434146, 6502301.5625, 6503141.984886905, 6506245.3125, 6508781.25, 6515120.3125, 6516461.790202232, 6517865.442214232, 6518917.1875, 6524396.658709394, 6525890.790814283, 6529859.935852488, 6529881.502558935, 6530321.507115135, 6530559.375, 6532618.75, 6533524.4394370755, 6533791.690678247, 6534125.0, 6534896.875, 6535710.090390433, 6535723.963173652, 6535850.0, 6536099.792953769, 6536156.25, 6536170.3125, 6536199.270078032, 6536364.999261785, 6536462.987219022, 6536493.574099633, 6536547.141266461, 6536564.0625, 6536729.721542348, 6536735.453677964, 6536735.9375, 6536750.0, 6536750.0931358645, 6536768.966130959, 6536825.148679503, 6536902.03884467, 6536969.139645679, 6536981.7952567935, 6537252.070762455, 6537267.1875, 6537451.5625, 6537491.369484943, 6537510.432585656, 6537688.341048306, 6537782.8125, 6537806.408272006, 6537810.767975417, 6538156.687722055, 6538212.5, 6538309.097900138, 6538346.902222355, 6538370.3125, 6538475.644701691, 6538613.6762403995, 6538775.0, 6539273.545521785, 6539415.625, 6539774.558987764, 6539856.25, 6539877.485064669, 6539885.372861718, 6539898.847932866, 6539933.176559255, 6540559.084564658, 6540896.856014364, 6541126.134160199, 6541139.0625, 6541139.562695179, 6541143.642745603, 6541356.651143788, 6541389.406390587, 6541472.246645402, 6541485.620958302, 6541513.815178149, 6541519.5644865325, 6541632.07836731, 6541805.583134274, ...], [92.79561960287742, 69.57098009916803, 11.465938935044672, 5.893675997828168, 9.925935978780448, 56.534603246782915, 47.09932474446507, 65.17178530883564, 10.404041983409817, 12.879447597380457, 21.34369553543214, 20.403993228699548, 35.16401248491477, 28.18822493967652, 124.55394390835528, 20.050419316313768, 30.050392099023995, 12.372197894489645, 130.70280287528274, 19.592602653609617, 57.86827152108471, 6.455060710317568, 86.14611631296333, 40.489568421738355, 33.487453009128075, 47.33903878256023, 6.494964936571606, 18.61850234264026, 82.42969272556206, 8.86876473971051, 47.19533438987092, 43.74592897537352, 14.038393781346931, 22.56371136788408, 22.535116770685725, 8.689189737736056, 43.4560956409173, 6.090074032740212, 6.19405578337527, 51.91514704815159, 55.409331539812605, 12.67900611979071, 53.50004633638647, 64.47781231070584, 101.96008642591508, 31.28567087843242, 15.052315003064365, 9.230925690869876, 17.394941235888382, 73.60968202975141, 42.32166913778379, 15.077099835231873, 76.20074900231975, 6.040667394822083, 19.30945198748914, 11.115007186348084, 17.400953292769135, 11.771470904813476, 12.194614806296109, 71.27087974044083, 63.34178029977267, 17.228096971360273, 20.816496570023414, 12.143802391975594, 41.08685790092847, 115.99874299823449, 49.233170421458894, 10.538556422111245, 9.016520228235247, 57.93357629123929, 10.006960234408533, 70.13377310650078, 24.408431087715034, 70.6189312926138, 56.698957041750816, 26.08759881515568, 20.098697067088185, 37.120249840589146, 73.32110018525705, 66.12562859652388, 29.45502647242712, 48.78024890496959, 17.56026787425437, 14.808908507809594, 68.75077448554171, 6.755334058040752, 9.526761691312222, 6.168137507213261, 128.22015468936902, 18.441519766132473, 16.636435880624603, 16.877495425424936, 91.98543453839076, 8.720658830975413, 79.2530783892769, 12.058218053350352, 77.92644912842852, 94.52121413213179, 69.50005815071611, 13.848788223045254, 54.17780889771332, 18.732780607781788, 81.29280524160825, 19.968690852711468, 6.151059144017625, 5.757743844648654, 6.526709108891858, 12.921515619652224, 63.66852491873907, 88.53935329085974, 12.96613543271802, 16.632737574824034, 69.32411833686531, 32.637464374655444, 29.339227655214263, 23.9932134946624, 9.487490037590254, 40.53115244732868, 7.154685556760149, 14.916886799202317, 49.358505291591655, 244.65756910073586, 70.21099981358462, 11.082451322964843, 74.57465041713388, 15.461389175399376, 5.196237588818226, 24.242998333690263, 36.33236093118498, 5.427994251480725, 30.338032652043946, 75.53368126601165, 81.35689099553869, 35.21896109699987, 37.66585270983851, 40.882511692825155, 95.09534344704518, 34.481740661798725, 42.570787194496596, 10.797699209246858, 11.161896950614826, 40.714675767398596, 18.20085819105799, 49.86729339355751, 20.29017542394441, 13.477802131831394, 9.599161313075442, 32.659256171460825, 79.10627918522368, 61.19678001081143, 7.899883410227963, 134.79613865381359, 56.231177119578284, 36.98533840553076, 90.66520937730408, 143.6333020332811, 7.050148564395312, 46.85305133289117, 87.86399753497162, 11.946651733049666, 54.19410909202603, 77.1154099694112, 36.87866437395481, 19.006656911326594, 26.478541088229285, 63.57447475438312, 5.043288690788864, 25.784360542736568, 9.652121064118907, 48.09342925133839, 67.66046792022597, 8.504606121782126, 35.087026867735986, 10.982030398336818, 41.5859653420296, 28.321961121495733, 58.418754556154, 32.73982526798996, 5.450983645487754, 65.73653020944863, 15.961990740931526, 9.582211168597423, 16.364671555069805, 65.09074750328301, 29.444669963833697, 22.284359904759313, 13.233072005622958, 52.58436722815474, 5.4907573891952905, 17.14285189822048, 19.72422216981906, 36.950048650767805, 62.699170358521016, 25.86995003768354, 60.13220772599621, 5.210272702856333, 68.13833205351719, 41.971370347260866, 27.59698508301646, 64.81044192315161, 26.55311350094979, 122.51108031850052, 48.85505021564416, 103.84191735657545, 46.5498091740796, 34.931597107437845, 14.380146034445886, 30.806859315797034, 44.3210510557257, 14.634587178765015, 108.07678356351695, 7.830077843747618, 7.254634214839569, 20.497934367150748, 66.13244943774974, 16.842187437065746, 27.030489282707066, 26.95278548905805, 36.092712700670866, 61.954047319822514, 60.13745542323976, 76.8354873926801, 79.53422603162917, 28.33250291453627, 136.60950843343608, 30.888934130932466, 118.83807078194211, 104.7977020639731, 18.563162436905763, 18.27657259933913, 52.363003863717424, 48.77138122610974, 6.284870064523034, 137.39770167835292, 5.523406836016806, 114.86038658591382, 48.89748810714013, 123.81440946664085, 32.447056846997455, 195.88875862916655, 71.50115111460737, 119.3447845280673, 17.154632693215532, 11.546905342269566, 26.127143686850015, 69.95916791276368, 36.83689163603286, 80.25867461506887, 23.472158883799082, 8.049581546301544, 62.06689248392634, 8.805885462436242, 63.82662855548824, 57.8501454534585, 22.763375053754537, 46.90627821928299, 49.07703046293179, 5.982974891732478, 107.64823245792404, 47.04942235168103, 89.21520502098075, 18.576849265836415, 10.027266426401429, 77.62701938541794, 68.14380984348213, 13.37166823214256, 39.97339769042612, 14.784916635085112, 34.71958036883952, 52.817134087987114, 45.837204964600474, 9.246194559851068, 19.554407043397255, 37.400392775895526, 14.020297782345235, 71.79626469946876, 39.025188426962124, 32.711243939152844, 14.659502468427021, 96.00257539082816, 47.52039480323218, 33.18026112243615, 27.90569315916626, 156.28379235593724, 16.586680278806675, 122.35314394395536, 54.56511135894807, 5.7083358169989475, 9.291950974887687, 10.778018331170651, 36.873023632545625, 48.33602745189518, 16.991776492047627, 36.6369801424341, 41.04620964382573, 20.355975082171035, 6.87761102832866, 5.38556571458835, 12.729984276806126, 35.32818393660502, 16.52174357445199, 30.110891871044235, 17.767954322068178, 102.55476297170543, 44.35386152681414, 107.56993763310814, 48.90671698469064, 97.09761590908799, 221.83030911787915, 24.672497487379378, 26.039640339670346, 19.324243932675756, 17.74485505937344, 62.36707743107922, 64.66856211004048, 68.62418080003783, 20.43637312613987, 8.798181131886153, 26.721424178343312, 75.20414888998476, 12.078453741434084, 58.43483082009834, 6.620769750579819, 25.647279022197157, 7.151721108456361, 12.806994144926644, 62.93619711812055, 30.55944646688494, 20.820086428655546, 11.133955746296188, 56.43938391117218, 58.81940767501967, 14.195959037608809, 14.332825814152578, 38.797520346168255, 6.388380014277473, 16.702584594045828, 7.916170132178258, 5.267331281979748, 108.86590866258021, 129.7042390727691, 29.692645033750587, 43.14528315901774, 32.07579753613373, 77.638189446101, 111.17988641126415, 24.875935786817664, 79.94276867891125, 59.81944735351719, 11.668633941496074, 16.249230279740733, 98.70757912524695, 8.76898314399115, 5.087818227149858, 12.329712546803005, 7.635926999285996, 17.4630476308237, 54.33775640916798, 25.375915559519537, 5.96572448422109, 9.216889107284866, 21.669101504617423, 75.21946898983613, 24.60037468531859, 19.880994551926015, 48.78281764953921, 46.36650585631925, 116.95217368555704, 5.714055243456872, 12.3531087060781, 16.799335017900503, 14.08436833925331, 5.547776234105888, 22.05317349732732, 30.00476727374059, 6.653798265501964, 88.72079337503212, 99.0926806768937, 32.51170912154956, 7.265649916142373, 20.063932730164275, 31.569492429611515, 117.32877340972254, 42.60586202556134, 89.06902114675792, 15.417873070986333, 18.247095401322063, 146.4802376606379, 89.75668899772457, 146.69767715105374, 11.724332182655335, 48.58524420717308, 53.0572644447475, 29.513706741741814, 51.92363037755577, 61.47743339644962, 22.34827007552652, 7.725658550125528, 99.17200551367705, 12.353287486051746, 37.13581023494702, 59.824302971192026, 21.089087484415177, 27.2025508059948, 32.12318839895456, 59.558879747090316, 10.153986140036993, 24.65697795899477, 26.150800578636005, 61.55386941884549, 148.2208632369393, 173.22924495946478, 50.14825334787669, 71.93127113663438, 41.78155067346062, 12.3434077157651, 90.62655871177336, 37.73572298745718, 8.056018600221183, 53.2459113625046, 21.26651131989252, 154.88301657518912, 11.078876311025214, 64.5179483667195, 55.750060998484386, 60.51217312178558, 8.151214318847243, 13.15548528078806, 13.720293912101956, 17.07075053516382, 91.45598227436705, 72.82361944052248, 5.335612074617642, 90.5288900675396, 6.1726265571019105, 11.679338564953108, 29.567249334342225, 22.809059981784703, 63.1614201480309, 234.75262991906226, 59.465060436474815, 48.80810664136272, 395.6103413550672, 15.591468836342644, 68.20824215584601, 82.3372083530081, 5.607926315598563, 20.08382990929031, 201.4693614015602, 39.702059831487375, 49.98243008497904, 13.866261488363614, 11.542886544621377, 207.30294635111306, 15.63527988553364, 55.60095866925345, 55.88571906410397, 43.29420318171291, 11.738979884715484, 249.46929593945038, 20.10075590715885, 94.56269508497492, 10.274481155564295, 6.353389072740692, 72.61320931068639, 107.26346137110578, 35.09576451780187, 186.06284812360184, 14.334861490068427, 9.914458985701785, 52.6032937886142, 89.67578790737869, 92.54405942640008, 125.19032409009397, 105.82308008009046, 15.00280526064709, 24.89501986318623, 67.47815023181562, 11.700021014544646, 51.79049470063523, 94.92110213707173, 107.7819073462973, 90.48797044554975, 104.15763856031651, 24.816428167232296, 132.96733657062296, 7.547710021016304, 51.94348284977011, 65.59242464228547, 10.282119995471797, 38.65717486186629, 14.39624398782948, 36.2671684154853, 11.318831158744247, 320.1530023928901, 36.52899013482952, 37.10777514261125, 34.50842003511268, 19.73928874490509, 171.74124495370245, 20.302924268862547, 90.52333696617599, 266.1482898723017, 66.31066077317416, 56.03600277754435, 65.50339601181344, 15.437195046911311, 65.64022995343097, 17.437966167778455, 151.19504573576384, 228.74394695006978, 34.19267207556802, 14.110711573915449, 100.36136449402508, 30.69223632992898, 84.90014170487424, 151.74450288270728, 8.04826192522387, 5.641721889263259, 25.97560191554213, 9.246053500688673, 167.2977519538927, 124.57117257328578, 10.467001828136034, 59.17667685063767, 131.43456403268527, 40.83400100078692, 5.167374005959445, 34.893349153830755, 19.50814568813776, 24.265517773887126, 29.783273328737398, 15.243855376784317, 106.86336165297183, 128.17294337395987, 49.544864362333044, 34.89547478650225, 30.321281724212024, 7.582409912091069, 274.2136985298508, 10.366435085561658, 152.3217995485825, 36.426921482894265, 13.711713533953349, 11.666489179659981, 93.418329119254, 197.90172514516522, 14.067788131801352, 88.73698537595843, 44.02790595061682, 39.553456155441225, 15.31022653021186, 62.80728560439402, 35.98810640825049, 8.870212640287063, 15.37863624880141, 159.97538721718132, 9.129658652216202, 83.99948452246171, 8.614264215904898, 110.05972909261895, 18.663884537034534, 120.37057252693914, 16.55504413360075, 73.03581015126065, 14.634141360055004, 50.55185036107419, 61.95040588402096, 18.97342028340807, 29.2128161112861, 24.679178144025343, 26.050196835432224, 18.562530726120016, 31.45779201733417, 82.67620762808056, 34.39171273623259, 24.02296049088665, 72.0184431949657, 7.764490679746599, 74.17413586543971, 8.548231833508261, 18.0081898762098, 85.33633517938947, 8.188889642126888, 28.62041528858383, 46.615136354555304, 71.02579557445006, 32.96700594613189, 26.163215970662222, 173.54136894029784, 88.1382811685472, 30.465583293254742, 30.267532898460225, 57.65559822962669, 5.835368945321686, 20.988010449555112, 53.08418350215341, 77.06050492661205, 9.368531776457052, 29.795779099649568, 6.77106909063233, 27.564909973937986, 8.039257845652779, 195.40269870760778, 6.852040903837821, 83.9183634265593, 37.67000285114957, 12.725455690830938, 5.726614005001858, 24.334666143714962, 28.306478801812307, 67.58061597571188, 37.53830246073414, 70.1483774057082, 30.330103992414642, 21.226760240801568, 88.8674036942264, 21.20372323805284, 76.31761402492842, 54.26055540250837, 66.21272844286182, 15.175272375751991, 42.81284805275136, 35.4344825764022, 6.9253518520041855, 57.9959013157015, 123.83233520490585, 53.011013182801236, 18.928821221758724, 64.53242340187468, 81.46786801298641, 19.84009406341137, 24.462830253836955, 89.90058673442536, 24.04368739810797, 68.84456375431903, 83.15363857430758, 38.458432719133356, 80.63718428385273, 11.062367347891309, 10.996316038480085, 292.6346490783387, 23.304002649002534, 8.552446601389514, 63.064684094275776, 69.96161422598286, 57.349953818480735, 31.17567949984285, 7.173891151523808, 107.31316571408587, 74.55449387341577, 19.304374658806765, 17.347026828126452, 21.429974965837104, 32.277856146467656, 8.429370762131937, 27.996743250879728, 7.160823193141811, 74.88641514339412, 14.87157709725646, 6.183463978409811, 50.64297735505089, 12.695501541262447, 7.8756057248473965, 7.156200387442556, 117.41001909383776, 27.608030724144115, 8.229380386851275, 17.89615433874527, 94.69177521139694, 44.89589382071525, 43.98636185805084, 20.019405445196533, 60.200027041506544, 105.4220260797347, 12.89908752517039, 79.15001167686908, 18.383141439534626, 38.804058869344956, 18.192716116735767, 67.7425302346978, 5.283881378775359, 55.92535884940844, 29.092411148023796, 37.91109483316513, 35.14819440857072, 43.12845446600747, 42.88561782555166, 155.12247532489368, 88.98673287622954, 17.10606808926532, 95.12008771673258, 173.34490758558803, 125.48372556064254, 60.22818364735548, 60.466842688142776, 29.896717086112325, 13.40380551389728, 8.850866178385642, 15.865865200390592, 18.935943689817442, 20.51187007522612, 24.952607789913444, 53.16132155697537, 103.43948909157369, 19.539437298473096, 26.97301153202151, 20.10314497279937, 9.009775265686292, 89.47751775871936, 66.40595702823711, 6.3384770839996145, 14.317534145599648, 48.09883982470227, 9.880540752067533, 46.545295186229076, 104.65377200551586, 13.092081608197017, 24.91188005917246, 10.260682949790299, 123.66614490884854, 243.8255981207251, 12.878825473005989, 160.08129889962316, 22.300668160107637, 7.0543999816714615, 24.55323071459941, 120.70781760857288, 234.2559214467255, 19.197471625938157, 186.44711194833945, 9.5965814958255, 49.2817722882808, 22.448181505138955, 69.25977395691541, 24.196598810136265, 39.33110463898439, 24.86092746432055, 79.15382502162552, 28.638388096533205, 80.41383883367062, 9.101537754940502, 10.249772796332387, 43.83823651943366, 59.24330321012803, 81.398437635114, 7.958236430224113, 14.727155388312845, 53.85090234265999, 7.81060051333394, 55.118585784019785, 56.01177670224992, 68.47964788679936, 113.0927875396248, 136.75039881953865, 289.09112533662045, 269.97917746703024, 10.801059515510177, 54.29380788418083, 25.956507845463456, 21.085138508732605, 32.78431762785994, 9.255285487060268, 48.89529514978967, 11.94515341516958, 19.592146093949054, 50.46214757482981, 5.135792636852262, 120.39448196378501, 10.844932776889118, 18.81553624549551, 23.74670520226799, 103.13014261786978, 25.35471965412084, 11.50458521073332, 23.753364336168776, 73.07570973796845, 12.317320207001783, 20.98384042080773, 7.937705928743431, 73.33824436246724, 23.756009304830485, 54.60855624104527, 62.446334632651144, 11.855785902783577, 16.376440222983334, 23.230227985007737, 92.7456268750855, 79.35830672154489, 42.22876795706781, 54.03242045907839, 63.62440922467307, 74.2347434464036, 19.997840567572073, 89.56487447661587, 57.45258388553365, 56.29166628289974, 60.402086368958024, 17.046108704845956, 12.70376397594556, 34.794455496393645, 18.30228260712927, 19.559047566053056, 9.154650178101233, 25.056560381184156, 5.0436351595114655, 27.038451185734814, 65.38383234178623, 35.0934721765103, 12.118866866661701, 34.564950845706335, 24.051064233796694, 77.36749291779962, 20.793194418045303, 49.84528697172044, 34.006799980367255, 25.948105542230934, 148.09760235929838, 28.82829341884861, 22.653933813676886, 12.647163962444044, 75.65909934370715, 54.772724863968506, 5.954863981017446, 15.429602966068364, 8.037884325751056, 5.554173742284325, 12.438196597654338, 56.74617080053207, 52.5363068069083, 21.05764174349046, 23.772972859270944, 18.95465531728849, 86.91026738413127, 38.69016627476513, 11.091080920194827, 30.23490976469376, 144.91931595230974, 86.97187157802252, 35.30750107052896, 15.549219616449042, 58.67036804657346, 10.532119819355275, 28.47048502320962, 44.61253326374993, 10.209877225008679, 83.18026604843853, 24.907010537263975, 35.68963186630123, 31.662362089781634, 8.140785398287916, 266.6075520758043, 7.13524013169404, 10.865999043106665, 69.74158331216313, 60.12828390861593, 36.42244847449483, 24.62554067951628, 22.366120590100785, 69.78221718352574, 89.32134118279065, 7.224655296736665, 10.871609687486881, 9.36253268835037, 14.948916560064573, 222.3104652168821, 13.881178666879428, 67.81497614368357, 19.146051586094096, 140.39749675459075, 68.75791574683201, 41.389762721051746, 22.50445176573691, 71.6313685266778, 119.33744304846451, 12.50371226178945, 236.97652688620204, 8.446518361751394, 16.305435790099335, 6.352250379016248, 39.07254896011507, 11.170798050684896, 112.43956038036198, 7.579514405357742, 87.7455359073281, 23.60145640483271, 33.26247152643497, 223.47575597438527, 12.26794809014395, 9.141913403166555, 6.521709410024687, 47.08829077307987, 84.00229179098253, 126.59460072276937, 5.676994361492638, 50.762981918823904, 37.57998329602438, 20.49615851174752, 29.172366497947248, 128.0754029769007, 32.99908397075196, 17.193113470411102, 39.99877503514385, 59.07794789423852, 20.658131875286387, 57.36930875708702, 88.4016066916663, 111.7127089888014, 6.3451455251458695, 27.849602215050815, 10.552873242853044, 33.75788518933809, 5.9530165959351375, 17.57136877548404, 80.21621967051135, 12.82985839720602, 12.534398219968693, 5.825177917017262, 30.13192163990071, 5.356396773437065, 77.87729268941204, 26.871389776634654, 47.460197955728084, 55.10350432332667, 34.5833160749695, 124.9088919438617, 48.83319961771292, 67.49980119462099, 48.03871399712469, 12.25806029671791, 62.04468035113894, 8.424808342824235, 83.440841794605, 59.93810496940923, 31.54505977608418, 13.163183409549571, 14.625393134256747, 56.40285712156179, 60.814928729785876, 114.702136744227, 38.03056679856388, 102.40656704841581, 25.015444795714608, 97.12748251013124, 130.78033857025454, 19.469968173094923, 170.04729291845203, 17.19277668795048, 25.47688369141451, 68.41448736872704, 84.81950561281664, 34.867050946946165, 21.656016521341325, 113.37421711553007, 42.86628625770979, 5.1675363479153855, 8.404276453678756, 5.295702062479295, 5.215730009912134, 16.668505524785278, 13.906453541437502, 18.912115483597397, 102.91563627751869, 46.89203781537653, 12.532008406880104, 157.35772124985482, 5.878946763711564, 47.46508808681597, 19.864504954216244, 31.35810356483279, 16.921371370418118, 83.83537940131814, 81.25257957627755, 9.354527774341117, 88.96428340984549, 5.863274061671184, 120.29231550252996, 88.96953397336924, 30.232960109865996, 112.82444305345453, 45.40185486167639, 81.86954932104766, 23.772161557807543, 30.615871073767345, 24.178259270529445, 35.163082773393995, 23.873690634703852, 74.16025117007587, 92.48504187667284, 69.95061246697018, 17.26587621189086, 91.9791629065226, 23.05180518610279, 16.437109183640267, 9.666747538362044, 67.95815419339556, 40.70598186355963, 36.476570441796916, 29.29603422861246, 18.37367531269191, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4947140.625, 4992554.6875, 5108500.206124676, 5109069.771972832, 5137522.503338139, 5186407.731630295, 5236787.041319584, 5253548.4375, 5311358.856804226, 5327871.203409906, 5328301.047391316, 5332695.081221937, 5387659.908808793, 5387854.670263958, 5390432.8125, 5391672.779600557, 5392497.9446001835, 5393092.860382901, 5423587.5, 5434005.535751175, 5443046.875, 5479921.6675808765, 5482119.695747979, 5483350.393515931, 5483991.617930169, 5487382.8125, 5487429.737544961, 5500322.591335522, 5506784.375, 5507838.459510362, 5508926.110234458, 5509312.5, 5510863.8035011, 5510932.413519871, 5512968.3484762525, 5513866.315925307, 5516342.1875, 5516665.643968838, 5520036.898284258, 5522745.3125, 5536365.625, 5536369.557924181, 5538085.287417186, 5539054.4284491185, 5539212.5, 5542684.375, 5547459.608082867, 5562703.003730589, 5585020.835251281, 5588523.396994141, 5589176.357156095, 5594868.115441328, 5601212.358458824, 5601263.593692127, 5616603.936675523, 5618068.365118464, 5620444.809725645, 5646076.938699539, 5693409.96490185, 5695715.625, 5697715.040496266, 5697866.118507225, 5704727.554389024, 5705369.31546363, 5706231.25, 5707369.419868593, 5710063.078926432, 5711013.649775896, 5722760.540047546, 5722806.25, 5736691.328767886, 5743860.9375, 5748984.12480104, 5751998.038929146, 5757443.75, 5762392.050789353, 5764041.53535193, 5764592.830862298, 5764771.592567884, 5766070.05222879, 5768151.254123346, 5769062.5, 5781661.488501431, 5783506.009987929, 5788815.625, 5789974.95892592, 5793812.722345304, 5795231.986033778, 5802887.5, 5806360.065412072, 5826682.166830457, 5872834.80451911, 5879791.004290318, 5881561.677082695, 5882528.125, 5887134.898574788, 5963301.5625, 5965425.0, 5969925.413759014, 5972709.055378981, 5983284.336485275, 5986092.920235731, 5986790.4893521955, 5986897.769783196, 5987972.459429718, 5987978.897389438, 5988062.748160211, 5988813.407834704, 5988818.127863946, 5988946.875, 5989262.954630896, 5989756.83251799, 5990232.8125, 5990967.1875, 5993460.290761537, 5994038.781248091, 5994940.8040030515, 5995570.3125, 5996540.74993648, 5997595.551628304, 5999512.5, 6000597.2326357225, 6000976.5625, 6009873.40835272, 6014754.488849062, 6018590.755022637, 6019262.21565083, 6019757.550084037, 6020862.943960493, 6024432.00131114, 6024795.3125, 6025151.5625, 6025459.375, 6025876.5625, 6037884.166292115, 6047214.0625, 6050367.03467517, 6052642.1875, 6052719.289353649, 6053812.278088136, 6056337.521764225, 6058482.8125, 6067644.9257694995, 6071662.5, 6071773.443459183, 6073062.054490556, 6074226.8630538285, 6074262.5, 6076535.9375, 6077140.625, 6077188.251905253, 6078251.203304782, 6078425.0, 6078521.875, 6079843.75, 6087023.4375, 6089213.78412412, 6094147.533871851, 6095145.3125, 6096859.842554586, 6097323.4375, 6098994.53649569, 6099072.108840366, 6099142.958500108, 6099843.637241335, 6100257.8125, 6100645.4157797275, 6101565.46910945, 6102556.6064136075, 6103109.171297104, 6104490.625, 6105759.765729508, 6105866.776902255, 6107081.15475778, 6107194.172066612, 6107385.371209645, 6108803.781176861, 6109053.443248062, 6110202.871343762, 6110843.75, 6110858.208410956, 6113045.59493725, 6113075.3292053435, 6118679.128225723, 6126966.617209007, 6129402.700823111, 6131889.339408106, 6132437.255138904, 6133341.283481902, 6134366.103271559, 6134843.052294697, 6134917.1875, 6135314.0625, 6135671.724577726, 6135717.217847539, 6135878.391793099, 6136513.317884111, 6141326.5625, 6142996.826318847, 6145079.6875, 6145385.829214453, 6152050.837284865, 6152248.751269443, 6153951.258847649, 6158112.237908713, 6158637.5, 6159210.781987988, 6160808.8695680965, 6160847.879887931, 6162412.417075439, 6163731.064952657, 6164209.961457851, 6164237.98352649, 6164461.8940964565, 6164506.25, 6164603.425660162, 6165129.562008758, 6165378.040185493, 6165412.489240107, 6165583.545111711, 6165725.0, 6165786.863279999, 6165904.6875, 6166052.154155817, 6166072.639279028, 6166557.8125, 6166661.010747808, 6166759.375, 6166914.130694509, 6166952.548129784, 6167016.662087626, 6167174.0590003915, 6167215.763602499, 6167271.92559066, 6167285.736554051, 6167287.150601243, 6167356.25, 6167638.0011810195, 6167646.786498853, 6167856.642481095, 6167889.874134567, 6167957.8125, 6167982.670434037, 6168225.252598425, 6168388.928251231, 6168634.0814644955, 6168781.834459341, 6168945.378198541, 6169015.00698417, 6169035.460733519, 6169635.041177965, 6169669.617919168, 6169671.875, 6169753.125, 6169890.858065235, 6169909.375, 6169917.088919724, 6170037.987064476, 6170066.600048722, 6170101.519565263, 6170362.5, 6170375.707113592, 6170438.222335389, 6170467.097810477, 6170571.875, 6170602.641573836, 6170782.159233729, 6170992.1458003195, 6171161.406370759, 6171381.25, 6171648.4375, 6172071.772478884, 6175104.341839443, 6175846.536761887, 6177070.047817782, 6177412.40968956, 6177685.9375, 6177737.5, 6177852.682580194, 6178122.159133871, 6178273.4375, 6178566.065610642, 6178799.967934311, 6179687.696520423, 6180481.6236635335, 6181922.423567037, 6182138.8817777, 6182160.962263185, 6182164.015470277, 6182315.3891354, 6182353.125, 6182623.4375, 6182962.950765971, 6182980.3404269405, 6182998.945636476, 6183249.377917089, 6183323.983381608, 6183385.5956884585, 6183386.766905714, 6183932.252733934, 6184273.798327305, 6185023.4375, 6185041.210504243, 6185042.1875, 6185753.125, 6186344.807434815, 6186531.25, 6186534.940650077, 6186584.695212897, 6187099.768890153, 6187202.854078313, 6187224.251120467, 6187370.894219606, 6187410.928183298, 6187544.964925434, 6187619.227076947, 6187738.449615242, 6187803.981519357, 6187909.2767007835, 6188339.0625, 6188389.596062647, 6188427.02825765, 6188511.740363544, 6188743.585259859, 6188901.676412024, 6188927.423866349, 6189337.5, 6189360.9375, 6189671.304778961, 6189981.681423696, 6192729.6875, 6194885.740426026, 6195368.171640695, 6196082.643080875, 6196242.1875, 6196661.840006806, 6196714.458739631, 6196914.852078352, 6197366.398806778, 6197745.3125, 6197944.410958953, 6198380.417029127, 6198635.9375, 6198932.8125, 6199126.047280114, 6199341.111292486, 6199755.701065984, 6199758.763666847, 6200100.0, 6200112.8205376575, 6200150.305432896, 6200447.119283921, 6200499.250456508, 6200622.889348465, 6200666.278365876, 6200714.151985716, 6200738.0574274575, 6200767.1875, 6200930.081954694, 6201025.297336184, 6201270.173891896, 6201634.808885603, 6201635.9375, 6201648.909354628, 6202402.75042368, 6202604.6875, 6202758.242348444, 6202923.257204193, 6202943.864052176, 6203056.914139254, 6203291.039763334, 6203297.840228475, 6203300.29912366, 6203308.929369816, 6203339.0625, 6203380.674460596, 6203393.75, 6203487.037443465, 6203492.713359904, 6203495.834050862, 6203522.781213981, 6203579.6875, 6203632.3758082315, 6203681.190049883, 6203714.800384449, 6203824.65022315, 6203894.276565519, 6203964.0625, 6203993.75, 6204129.411095497, 6204361.967243608, 6204468.75, 6204548.4375, 6204586.45437081, 6204587.5, 6204606.25, 6204644.894156589, 6204709.701249901, 6204733.862286858, 6204869.414221335, 6204978.826928278, 6205035.9375, 6205220.134179791, 6205258.231122884, 6205343.532665135, 6205354.6875, 6205357.0852765795, 6205393.517781983, 6205415.492219731, 6205420.3125, 6205446.645124248, 6205484.1317639, 6205487.5, 6205497.990861039, 6205501.5625, 6205605.347179817, 6205625.098879589, 6205660.9375, 6205751.09948566, 6205821.213386374, 6205837.475767866, 6205842.109842228, 6205848.40603352, 6205852.695892113, 6205863.470673906, 6205932.7014645245, 6205955.984943818, 6205980.686519047, 6206009.012903157, 6206042.652725813, 6206109.375, 6206112.2855874235, 6206118.564703028, 6206149.831866571, 6206186.71291488, 6206190.951404376, 6206195.3125, 6206231.48211515, 6206301.966690241, 6206438.844754829, 6206445.3125, 6206459.707628753, 6206465.945296874, 6206499.198825428, 6206621.875, 6206658.157702798, 6206687.388882988, 6206721.221084549, 6206850.0, 6206980.871036429, 6206981.25, 6207193.436066574, 6207217.437816314, 6207271.87250384, 6207367.358342567, 6207437.043503686, 6207437.407904323, 6207437.5, 6207465.9837804595, 6207490.256183689, 6207499.348096418, 6207565.625, 6207641.563198905, 6207652.2155457055, 6207741.512814749, 6207796.922112532, 6207867.071830322, 6207873.21504128, 6207884.206181858, 6207983.42997642, 6208192.1875, 6208226.446890298, 6208277.273581036, 6208478.782314039, 6208496.187575054, 6208521.890989266, 6208545.097095361, 6208617.1875, 6208714.400191173, 6208877.544457424, 6208902.845018618, 6209131.11732942, 6209300.0, 6209440.69447751, 6209558.449838812, 6209673.4375, 6210129.531319557, 6210142.254540566, 6210299.636197834, 6211594.694583103, 6211629.6875, 6212012.34918925, 6213217.1875, 6213500.118928493, 6214149.247585877, 6214253.125, 6214442.1875, 6214489.0625, 6214890.661546629, 6214976.5625, 6215047.301650107, 6215171.875, 6215257.8125, 6215290.625, 6215365.625, 6215453.125, 6215664.186741848, 6215679.6875, 6215720.842671785, 6215850.0, 6215952.876258167, 6216284.375, 6216746.119446118, 6216938.105552034, 6220608.767291573, 6221919.325065517, 6225237.5, 6230402.645408385, 6231111.427191089, 6231293.6317270575, 6231510.834806215, 6232398.2667839145, 6233625.0, 6233966.719246712, 6234623.4375, 6235785.927603512, 6236419.95244137, 6236476.6487002885, 6238488.911894228, 6249339.043426753, 6249355.989258995, 6249375.0, 6250884.452125211, 6256001.5625, 6256033.602564303, 6256114.285983081, 6258935.9375, 6270619.992489341, 6276009.317044791, 6277973.623132138, 6277991.638975283, 6279433.560305584, 6279450.0, 6281510.572525307, 6281870.631860151, 6282433.672182959, 6282612.332473112, 6283729.437687783, 6284560.669323357, 6285229.6875, 6286082.8125, 6288082.674879758, 6288640.500466822, 6289912.052917753, 6294819.711589478, 6308570.422645329, 6310144.459287245, 6310568.501364016, 6310614.0625, 6311041.197194483, 6311281.25, 6311461.06421733, 6311477.99512977, 6311705.054926967, 6311735.9375, 6311924.916951392, 6311968.75, 6311971.875, 6312092.9539328255, 6312210.232773107, 6312277.05735811, 6312451.423452631, 6312461.645706841, 6312476.306174793, 6312510.769598867, 6312647.21707474, 6312749.997688577, 6312917.1875, 6313295.737369113, 6313431.25, 6313462.964054258, 6313504.383816165, 6313700.821805407, 6313866.998087035, 6313909.375, 6313962.188520789, 6314185.607374147, 6314218.665828459, 6314263.247678489, 6314264.706765166, 6314271.875, 6314301.5625, 6314316.842628301, 6314370.902526945, 6314792.472444969, 6314807.260331306, 6315057.8125, 6315510.9375, 6315510.981086277, 6315550.0, 6315564.100262709, 6315622.218028256, 6315865.126078104, 6315879.469137943, 6315897.302857967, 6316003.125, 6316094.494006378, 6316097.702507993, 6316104.995035914, 6316110.68187856, 6316342.176367135, 6316535.9170432715, 6316607.8125, 6316651.5625, 6316678.125, 6316688.535379661, 6316700.0, 6316729.157993651, 6316765.699370049, 6316784.375, 6316802.814409211, 6316831.310007734, 6317026.073524914, 6317096.875, 6317371.0724984575, 6317501.5625, 6317510.152383317, 6317612.050535115, 6317806.298682187, 6318012.5, 6318031.624566078, 6318057.129126375, 6318213.816274471, 6318246.875, 6318638.785092755, 6318792.1875, 6319187.935108778, 6319550.0, 6320287.5, 6320434.33279176, 6320917.338162797, 6321418.8363750735, 6321910.033300843, 6321953.596057924, 6321978.125, 6322144.327921495, 6322146.875, 6322214.0625, 6322426.758301926, 6322451.5625, 6322479.493048371, 6322553.105926753, 6322603.910788974, 6322632.306148621, 6322667.078501569, 6322854.948104017, 6322920.565104585, 6322922.022688118, 6323205.271091316, 6323273.419030645, 6323285.244699475, 6323448.921528957, 6323508.627403812, 6323675.695104479, 6323739.19306102, 6324178.364561513, 6324317.135369329, 6324334.265250647, 6324602.168774464, 6324623.4375, 6324665.625, 6325169.157245153, 6325560.275887165, 6325648.3653974915, 6326181.068905232, 6326804.023832133, 6326866.746141464, 6327324.722905502, 6328942.1875, 6329027.272667763, 6330355.9427164765, 6331313.827445107, 6332306.950662492, 6332315.625, 6332974.686437589, 6335389.991799953, 6335396.746422627, 6335437.5, 6335467.531032727, 6335500.0, 6335542.659134444, 6335934.766979378, 6336595.3730825875, 6336711.49721648, 6336833.73847568, 6339140.625, 6339166.846263978, 6340868.278148691, 6341122.808698731, 6341134.598072322, 6341614.823757957, 6342071.270669428, 6342454.534621991, 6343042.1875, 6354568.75, 6354891.238385026, 6355127.18059811, 6355669.660880041, 6355680.843447982, 6355704.075357853, 6355993.75, 6356047.419083723, 6356856.338700347, 6357225.0, 6358620.897613687, 6361632.748001517, 6362012.5, 6363116.599790278, 6365407.598271477, 6370444.67662526, 6370682.8125, 6370900.435277024, 6371608.703158361, 6372399.476341695, 6372685.514815612, 6373426.301131628, 6373782.572830221, 6374176.5625, 6374195.3125, 6374596.109325995, 6375026.29793817, 6375098.735304013, 6375250.0, 6376010.528193638, 6376082.8125, 6376179.421620942, 6376496.875, 6376631.032211274, 6376671.793071658, 6376680.890142011, 6376690.885238559, 6376955.9650351675, 6377297.792435815, 6377529.46185421, 6379762.5, 6381723.323026774, 6382480.572814933, 6383365.567601552, 6383485.9375, 6384488.039107945, 6385150.0, 6385414.7262838865, 6386431.003593624, 6386525.95533645, 6386534.375, 6386728.331874976, 6394962.5, 6396727.90546193, 6397285.9375, 6397321.730063833, 6397619.770607628, 6398945.3125, 6399206.158586147, 6399223.4375, 6399473.904291064, 6400100.696131609, 6400385.7861174205, 6400461.183404449, 6401360.845246816, 6401371.686230046, 6401558.556950476, 6402122.501409016, 6402349.90314033, 6403359.3171016425, 6403359.603438139, 6403388.762705292, 6403685.632282218, 6404172.522633906, 6404327.5210091965, 6404482.088870003, 6404534.755237007, 6404595.422709828, 6405179.107577158, 6405562.33807119, 6405734.7957003, 6406419.182508676, 6406429.345628258, 6406610.9375, 6407186.862683345, 6407237.5, 6407436.905946552, 6408012.5, 6408175.0, 6408293.317274164, 6408997.620621763, 6410050.0, 6411235.9375, 6411404.918655319, 6411528.554633696, 6412419.568389512, 6413603.125, 6414205.357055586, 6414491.932994743, 6414923.220794195, 6415675.441944356, 6415737.623728018, 6415945.232608725, 6416415.625, 6416676.429663845, 6416702.077149829, 6417445.3125, 6418245.481062977, 6418707.8125, 6418723.662264948, 6419073.4375, 6419215.625, 6419302.383811582, 6419311.431549178, 6419569.765177577, 6419570.047394765, 6419618.775643437, 6419640.625, 6419648.911039807, 6419672.050812468, 6419695.434922647, 6420066.685621114, 6420350.427086334, 6420413.202795581, 6420635.9375, 6420745.3125, 6420880.705210536, 6420899.70173841, 6421010.138845026, 6421309.375, 6421311.322689279, 6421359.351440842, 6421371.875, 6421532.8125, 6421590.625, 6421647.625685426, 6421703.275798616, 6421971.006211262, 6421999.5823333375, 6422001.559732632, 6422240.625, 6422346.1960417535, 6422467.06554626, 6422560.722931992, 6422564.0625, 6422721.875, 6423262.213740232, 6423274.799734637, 6423335.98969526, 6423634.200856791, 6424440.625, 6424676.5625, 6425062.5, 6425074.765532013, 6425673.314090401, 6426458.509150408, 6427035.869036848, 6427509.753575469, 6428743.579736476, 6428820.349087402, 6429164.064441993, 6429691.899114858, 6429730.940905676, 6429823.4375, 6429846.102432036, 6430050.0, 6430050.0, 6430262.328838037, 6430459.108650923, 6430543.75, 6430664.0625, 6430986.669511189, 6431048.516894904, 6431258.103181296, 6431396.133714287, 6431414.707282113, 6431440.561728605, 6431571.902394623, 6431858.177794867, 6431913.996428838, 6431963.18931367, 6432196.962439819, 6432201.012509524, 6432672.68819698, 6433088.124619433, 6433209.142062677, 6433351.77983898, 6433446.4771677125, 6433650.0, 6444881.195292788, 6444896.396948926, 6449770.3125, 6461951.5060536545, 6463533.768895815, 6468068.75, 6469249.072303409, 6474815.625, 6474969.237279143, 6476151.5625, 6476756.25, 6477482.224516467, 6478467.1875, 6480179.6875, 6480246.002710248, 6481711.530510021, 6482040.589947786, 6485429.285732839, 6485845.3125, 6487084.529978641, 6487639.615373009, 6488583.931003101, 6488993.072396858, 6489442.933034498, 6495556.400198858, 6495781.25, 6501397.291434146, 6502301.5625, 6503141.984886905, 6506245.3125, 6508781.25, 6515120.3125, 6516461.790202232, 6517865.442214232, 6518917.1875, 6524396.658709394, 6525890.790814283, 6529859.935852488, 6529881.502558935, 6530321.507115135, 6530559.375, 6532618.75, 6533524.4394370755, 6533791.690678247, 6534125.0, 6534896.875, 6535710.090390433, 6535723.963173652, 6535850.0, 6536099.792953769, 6536156.25, 6536170.3125, 6536199.270078032, 6536364.999261785, 6536462.987219022, 6536493.574099633, 6536547.141266461, 6536564.0625, 6536729.721542348, 6536735.453677964, 6536735.9375, 6536750.0, 6536750.0931358645, 6536768.966130959, 6536825.148679503, 6536902.03884467, 6536969.139645679, 6536981.7952567935, 6537252.070762455, 6537267.1875, 6537451.5625, 6537491.369484943, 6537510.432585656, 6537688.341048306, 6537782.8125, 6537806.408272006, 6537810.767975417, 6538156.687722055, 6538212.5, 6538309.097900138, 6538346.902222355, 6538370.3125, 6538475.644701691, 6538613.6762403995, 6538775.0, 6539273.545521785, 6539415.625, 6539774.558987764, 6539856.25, 6539877.485064669, 6539885.372861718, 6539898.847932866, 6539933.176559255, 6540559.084564658, 6540896.856014364, 6541126.134160199, 6541139.0625, 6541139.562695179, 6541143.642745603, 6541356.651143788, 6541389.406390587, 6541472.246645402, 6541485.620958302, 6541513.815178149, 6541519.5644865325, 6541632.07836731, 6541805.583134274, ...], [92.79561960287742, 69.57098009916803, 11.465938935044672, 5.893675997828168, 9.925935978780448, 56.534603246782915, 47.09932474446507, 65.17178530883564, 10.404041983409817, 12.879447597380457, 21.34369553543214, 20.403993228699548, 35.16401248491477, 28.18822493967652, 124.55394390835528, 20.050419316313768, 30.050392099023995, 12.372197894489645, 130.70280287528274, 19.592602653609617, 57.86827152108471, 6.455060710317568, 86.14611631296333, 40.489568421738355, 33.487453009128075, 47.33903878256023, 6.494964936571606, 18.61850234264026, 82.42969272556206, 8.86876473971051, 47.19533438987092, 43.74592897537352, 14.038393781346931, 22.56371136788408, 22.535116770685725, 8.689189737736056, 43.4560956409173, 6.090074032740212, 6.19405578337527, 51.91514704815159, 55.409331539812605, 12.67900611979071, 53.50004633638647, 64.47781231070584, 101.96008642591508, 31.28567087843242, 15.052315003064365, 9.230925690869876, 17.394941235888382, 73.60968202975141, 42.32166913778379, 15.077099835231873, 76.20074900231975, 6.040667394822083, 19.30945198748914, 11.115007186348084, 17.400953292769135, 11.771470904813476, 12.194614806296109, 71.27087974044083, 63.34178029977267, 17.228096971360273, 20.816496570023414, 12.143802391975594, 41.08685790092847, 115.99874299823449, 49.233170421458894, 10.538556422111245, 9.016520228235247, 57.93357629123929, 10.006960234408533, 70.13377310650078, 24.408431087715034, 70.6189312926138, 56.698957041750816, 26.08759881515568, 20.098697067088185, 37.120249840589146, 73.32110018525705, 66.12562859652388, 29.45502647242712, 48.78024890496959, 17.56026787425437, 14.808908507809594, 68.75077448554171, 6.755334058040752, 9.526761691312222, 6.168137507213261, 128.22015468936902, 18.441519766132473, 16.636435880624603, 16.877495425424936, 91.98543453839076, 8.720658830975413, 79.2530783892769, 12.058218053350352, 77.92644912842852, 94.52121413213179, 69.50005815071611, 13.848788223045254, 54.17780889771332, 18.732780607781788, 81.29280524160825, 19.968690852711468, 6.151059144017625, 5.757743844648654, 6.526709108891858, 12.921515619652224, 63.66852491873907, 88.53935329085974, 12.96613543271802, 16.632737574824034, 69.32411833686531, 32.637464374655444, 29.339227655214263, 23.9932134946624, 9.487490037590254, 40.53115244732868, 7.154685556760149, 14.916886799202317, 49.358505291591655, 244.65756910073586, 70.21099981358462, 11.082451322964843, 74.57465041713388, 15.461389175399376, 5.196237588818226, 24.242998333690263, 36.33236093118498, 5.427994251480725, 30.338032652043946, 75.53368126601165, 81.35689099553869, 35.21896109699987, 37.66585270983851, 40.882511692825155, 95.09534344704518, 34.481740661798725, 42.570787194496596, 10.797699209246858, 11.161896950614826, 40.714675767398596, 18.20085819105799, 49.86729339355751, 20.29017542394441, 13.477802131831394, 9.599161313075442, 32.659256171460825, 79.10627918522368, 61.19678001081143, 7.899883410227963, 134.79613865381359, 56.231177119578284, 36.98533840553076, 90.66520937730408, 143.6333020332811, 7.050148564395312, 46.85305133289117, 87.86399753497162, 11.946651733049666, 54.19410909202603, 77.1154099694112, 36.87866437395481, 19.006656911326594, 26.478541088229285, 63.57447475438312, 5.043288690788864, 25.784360542736568, 9.652121064118907, 48.09342925133839, 67.66046792022597, 8.504606121782126, 35.087026867735986, 10.982030398336818, 41.5859653420296, 28.321961121495733, 58.418754556154, 32.73982526798996, 5.450983645487754, 65.73653020944863, 15.961990740931526, 9.582211168597423, 16.364671555069805, 65.09074750328301, 29.444669963833697, 22.284359904759313, 13.233072005622958, 52.58436722815474, 5.4907573891952905, 17.14285189822048, 19.72422216981906, 36.950048650767805, 62.699170358521016, 25.86995003768354, 60.13220772599621, 5.210272702856333, 68.13833205351719, 41.971370347260866, 27.59698508301646, 64.81044192315161, 26.55311350094979, 122.51108031850052, 48.85505021564416, 103.84191735657545, 46.5498091740796, 34.931597107437845, 14.380146034445886, 30.806859315797034, 44.3210510557257, 14.634587178765015, 108.07678356351695, 7.830077843747618, 7.254634214839569, 20.497934367150748, 66.13244943774974, 16.842187437065746, 27.030489282707066, 26.95278548905805, 36.092712700670866, 61.954047319822514, 60.13745542323976, 76.8354873926801, 79.53422603162917, 28.33250291453627, 136.60950843343608, 30.888934130932466, 118.83807078194211, 104.7977020639731, 18.563162436905763, 18.27657259933913, 52.363003863717424, 48.77138122610974, 6.284870064523034, 137.39770167835292, 5.523406836016806, 114.86038658591382, 48.89748810714013, 123.81440946664085, 32.447056846997455, 195.88875862916655, 71.50115111460737, 119.3447845280673, 17.154632693215532, 11.546905342269566, 26.127143686850015, 69.95916791276368, 36.83689163603286, 80.25867461506887, 23.472158883799082, 8.049581546301544, 62.06689248392634, 8.805885462436242, 63.82662855548824, 57.8501454534585, 22.763375053754537, 46.90627821928299, 49.07703046293179, 5.982974891732478, 107.64823245792404, 47.04942235168103, 89.21520502098075, 18.576849265836415, 10.027266426401429, 77.62701938541794, 68.14380984348213, 13.37166823214256, 39.97339769042612, 14.784916635085112, 34.71958036883952, 52.817134087987114, 45.837204964600474, 9.246194559851068, 19.554407043397255, 37.400392775895526, 14.020297782345235, 71.79626469946876, 39.025188426962124, 32.711243939152844, 14.659502468427021, 96.00257539082816, 47.52039480323218, 33.18026112243615, 27.90569315916626, 156.28379235593724, 16.586680278806675, 122.35314394395536, 54.56511135894807, 5.7083358169989475, 9.291950974887687, 10.778018331170651, 36.873023632545625, 48.33602745189518, 16.991776492047627, 36.6369801424341, 41.04620964382573, 20.355975082171035, 6.87761102832866, 5.38556571458835, 12.729984276806126, 35.32818393660502, 16.52174357445199, 30.110891871044235, 17.767954322068178, 102.55476297170543, 44.35386152681414, 107.56993763310814, 48.90671698469064, 97.09761590908799, 221.83030911787915, 24.672497487379378, 26.039640339670346, 19.324243932675756, 17.74485505937344, 62.36707743107922, 64.66856211004048, 68.62418080003783, 20.43637312613987, 8.798181131886153, 26.721424178343312, 75.20414888998476, 12.078453741434084, 58.43483082009834, 6.620769750579819, 25.647279022197157, 7.151721108456361, 12.806994144926644, 62.93619711812055, 30.55944646688494, 20.820086428655546, 11.133955746296188, 56.43938391117218, 58.81940767501967, 14.195959037608809, 14.332825814152578, 38.797520346168255, 6.388380014277473, 16.702584594045828, 7.916170132178258, 5.267331281979748, 108.86590866258021, 129.7042390727691, 29.692645033750587, 43.14528315901774, 32.07579753613373, 77.638189446101, 111.17988641126415, 24.875935786817664, 79.94276867891125, 59.81944735351719, 11.668633941496074, 16.249230279740733, 98.70757912524695, 8.76898314399115, 5.087818227149858, 12.329712546803005, 7.635926999285996, 17.4630476308237, 54.33775640916798, 25.375915559519537, 5.96572448422109, 9.216889107284866, 21.669101504617423, 75.21946898983613, 24.60037468531859, 19.880994551926015, 48.78281764953921, 46.36650585631925, 116.95217368555704, 5.714055243456872, 12.3531087060781, 16.799335017900503, 14.08436833925331, 5.547776234105888, 22.05317349732732, 30.00476727374059, 6.653798265501964, 88.72079337503212, 99.0926806768937, 32.51170912154956, 7.265649916142373, 20.063932730164275, 31.569492429611515, 117.32877340972254, 42.60586202556134, 89.06902114675792, 15.417873070986333, 18.247095401322063, 146.4802376606379, 89.75668899772457, 146.69767715105374, 11.724332182655335, 48.58524420717308, 53.0572644447475, 29.513706741741814, 51.92363037755577, 61.47743339644962, 22.34827007552652, 7.725658550125528, 99.17200551367705, 12.353287486051746, 37.13581023494702, 59.824302971192026, 21.089087484415177, 27.2025508059948, 32.12318839895456, 59.558879747090316, 10.153986140036993, 24.65697795899477, 26.150800578636005, 61.55386941884549, 148.2208632369393, 173.22924495946478, 50.14825334787669, 71.93127113663438, 41.78155067346062, 12.3434077157651, 90.62655871177336, 37.73572298745718, 8.056018600221183, 53.2459113625046, 21.26651131989252, 154.88301657518912, 11.078876311025214, 64.5179483667195, 55.750060998484386, 60.51217312178558, 8.151214318847243, 13.15548528078806, 13.720293912101956, 17.07075053516382, 91.45598227436705, 72.82361944052248, 5.335612074617642, 90.5288900675396, 6.1726265571019105, 11.679338564953108, 29.567249334342225, 22.809059981784703, 63.1614201480309, 234.75262991906226, 59.465060436474815, 48.80810664136272, 395.6103413550672, 15.591468836342644, 68.20824215584601, 82.3372083530081, 5.607926315598563, 20.08382990929031, 201.4693614015602, 39.702059831487375, 49.98243008497904, 13.866261488363614, 11.542886544621377, 207.30294635111306, 15.63527988553364, 55.60095866925345, 55.88571906410397, 43.29420318171291, 11.738979884715484, 249.46929593945038, 20.10075590715885, 94.56269508497492, 10.274481155564295, 6.353389072740692, 72.61320931068639, 107.26346137110578, 35.09576451780187, 186.06284812360184, 14.334861490068427, 9.914458985701785, 52.6032937886142, 89.67578790737869, 92.54405942640008, 125.19032409009397, 105.82308008009046, 15.00280526064709, 24.89501986318623, 67.47815023181562, 11.700021014544646, 51.79049470063523, 94.92110213707173, 107.7819073462973, 90.48797044554975, 104.15763856031651, 24.816428167232296, 132.96733657062296, 7.547710021016304, 51.94348284977011, 65.59242464228547, 10.282119995471797, 38.65717486186629, 14.39624398782948, 36.2671684154853, 11.318831158744247, 320.1530023928901, 36.52899013482952, 37.10777514261125, 34.50842003511268, 19.73928874490509, 171.74124495370245, 20.302924268862547, 90.52333696617599, 266.1482898723017, 66.31066077317416, 56.03600277754435, 65.50339601181344, 15.437195046911311, 65.64022995343097, 17.437966167778455, 151.19504573576384, 228.74394695006978, 34.19267207556802, 14.110711573915449, 100.36136449402508, 30.69223632992898, 84.90014170487424, 151.74450288270728, 8.04826192522387, 5.641721889263259, 25.97560191554213, 9.246053500688673, 167.2977519538927, 124.57117257328578, 10.467001828136034, 59.17667685063767, 131.43456403268527, 40.83400100078692, 5.167374005959445, 34.893349153830755, 19.50814568813776, 24.265517773887126, 29.783273328737398, 15.243855376784317, 106.86336165297183, 128.17294337395987, 49.544864362333044, 34.89547478650225, 30.321281724212024, 7.582409912091069, 274.2136985298508, 10.366435085561658, 152.3217995485825, 36.426921482894265, 13.711713533953349, 11.666489179659981, 93.418329119254, 197.90172514516522, 14.067788131801352, 88.73698537595843, 44.02790595061682, 39.553456155441225, 15.31022653021186, 62.80728560439402, 35.98810640825049, 8.870212640287063, 15.37863624880141, 159.97538721718132, 9.129658652216202, 83.99948452246171, 8.614264215904898, 110.05972909261895, 18.663884537034534, 120.37057252693914, 16.55504413360075, 73.03581015126065, 14.634141360055004, 50.55185036107419, 61.95040588402096, 18.97342028340807, 29.2128161112861, 24.679178144025343, 26.050196835432224, 18.562530726120016, 31.45779201733417, 82.67620762808056, 34.39171273623259, 24.02296049088665, 72.0184431949657, 7.764490679746599, 74.17413586543971, 8.548231833508261, 18.0081898762098, 85.33633517938947, 8.188889642126888, 28.62041528858383, 46.615136354555304, 71.02579557445006, 32.96700594613189, 26.163215970662222, 173.54136894029784, 88.1382811685472, 30.465583293254742, 30.267532898460225, 57.65559822962669, 5.835368945321686, 20.988010449555112, 53.08418350215341, 77.06050492661205, 9.368531776457052, 29.795779099649568, 6.77106909063233, 27.564909973937986, 8.039257845652779, 195.40269870760778, 6.852040903837821, 83.9183634265593, 37.67000285114957, 12.725455690830938, 5.726614005001858, 24.334666143714962, 28.306478801812307, 67.58061597571188, 37.53830246073414, 70.1483774057082, 30.330103992414642, 21.226760240801568, 88.8674036942264, 21.20372323805284, 76.31761402492842, 54.26055540250837, 66.21272844286182, 15.175272375751991, 42.81284805275136, 35.4344825764022, 6.9253518520041855, 57.9959013157015, 123.83233520490585, 53.011013182801236, 18.928821221758724, 64.53242340187468, 81.46786801298641, 19.84009406341137, 24.462830253836955, 89.90058673442536, 24.04368739810797, 68.84456375431903, 83.15363857430758, 38.458432719133356, 80.63718428385273, 11.062367347891309, 10.996316038480085, 292.6346490783387, 23.304002649002534, 8.552446601389514, 63.064684094275776, 69.96161422598286, 57.349953818480735, 31.17567949984285, 7.173891151523808, 107.31316571408587, 74.55449387341577, 19.304374658806765, 17.347026828126452, 21.429974965837104, 32.277856146467656, 8.429370762131937, 27.996743250879728, 7.160823193141811, 74.88641514339412, 14.87157709725646, 6.183463978409811, 50.64297735505089, 12.695501541262447, 7.8756057248473965, 7.156200387442556, 117.41001909383776, 27.608030724144115, 8.229380386851275, 17.89615433874527, 94.69177521139694, 44.89589382071525, 43.98636185805084, 20.019405445196533, 60.200027041506544, 105.4220260797347, 12.89908752517039, 79.15001167686908, 18.383141439534626, 38.804058869344956, 18.192716116735767, 67.7425302346978, 5.283881378775359, 55.92535884940844, 29.092411148023796, 37.91109483316513, 35.14819440857072, 43.12845446600747, 42.88561782555166, 155.12247532489368, 88.98673287622954, 17.10606808926532, 95.12008771673258, 173.34490758558803, 125.48372556064254, 60.22818364735548, 60.466842688142776, 29.896717086112325, 13.40380551389728, 8.850866178385642, 15.865865200390592, 18.935943689817442, 20.51187007522612, 24.952607789913444, 53.16132155697537, 103.43948909157369, 19.539437298473096, 26.97301153202151, 20.10314497279937, 9.009775265686292, 89.47751775871936, 66.40595702823711, 6.3384770839996145, 14.317534145599648, 48.09883982470227, 9.880540752067533, 46.545295186229076, 104.65377200551586, 13.092081608197017, 24.91188005917246, 10.260682949790299, 123.66614490884854, 243.8255981207251, 12.878825473005989, 160.08129889962316, 22.300668160107637, 7.0543999816714615, 24.55323071459941, 120.70781760857288, 234.2559214467255, 19.197471625938157, 186.44711194833945, 9.5965814958255, 49.2817722882808, 22.448181505138955, 69.25977395691541, 24.196598810136265, 39.33110463898439, 24.86092746432055, 79.15382502162552, 28.638388096533205, 80.41383883367062, 9.101537754940502, 10.249772796332387, 43.83823651943366, 59.24330321012803, 81.398437635114, 7.958236430224113, 14.727155388312845, 53.85090234265999, 7.81060051333394, 55.118585784019785, 56.01177670224992, 68.47964788679936, 113.0927875396248, 136.75039881953865, 289.09112533662045, 269.97917746703024, 10.801059515510177, 54.29380788418083, 25.956507845463456, 21.085138508732605, 32.78431762785994, 9.255285487060268, 48.89529514978967, 11.94515341516958, 19.592146093949054, 50.46214757482981, 5.135792636852262, 120.39448196378501, 10.844932776889118, 18.81553624549551, 23.74670520226799, 103.13014261786978, 25.35471965412084, 11.50458521073332, 23.753364336168776, 73.07570973796845, 12.317320207001783, 20.98384042080773, 7.937705928743431, 73.33824436246724, 23.756009304830485, 54.60855624104527, 62.446334632651144, 11.855785902783577, 16.376440222983334, 23.230227985007737, 92.7456268750855, 79.35830672154489, 42.22876795706781, 54.03242045907839, 63.62440922467307, 74.2347434464036, 19.997840567572073, 89.56487447661587, 57.45258388553365, 56.29166628289974, 60.402086368958024, 17.046108704845956, 12.70376397594556, 34.794455496393645, 18.30228260712927, 19.559047566053056, 9.154650178101233, 25.056560381184156, 5.0436351595114655, 27.038451185734814, 65.38383234178623, 35.0934721765103, 12.118866866661701, 34.564950845706335, 24.051064233796694, 77.36749291779962, 20.793194418045303, 49.84528697172044, 34.006799980367255, 25.948105542230934, 148.09760235929838, 28.82829341884861, 22.653933813676886, 12.647163962444044, 75.65909934370715, 54.772724863968506, 5.954863981017446, 15.429602966068364, 8.037884325751056, 5.554173742284325, 12.438196597654338, 56.74617080053207, 52.5363068069083, 21.05764174349046, 23.772972859270944, 18.95465531728849, 86.91026738413127, 38.69016627476513, 11.091080920194827, 30.23490976469376, 144.91931595230974, 86.97187157802252, 35.30750107052896, 15.549219616449042, 58.67036804657346, 10.532119819355275, 28.47048502320962, 44.61253326374993, 10.209877225008679, 83.18026604843853, 24.907010537263975, 35.68963186630123, 31.662362089781634, 8.140785398287916, 266.6075520758043, 7.13524013169404, 10.865999043106665, 69.74158331216313, 60.12828390861593, 36.42244847449483, 24.62554067951628, 22.366120590100785, 69.78221718352574, 89.32134118279065, 7.224655296736665, 10.871609687486881, 9.36253268835037, 14.948916560064573, 222.3104652168821, 13.881178666879428, 67.81497614368357, 19.146051586094096, 140.39749675459075, 68.75791574683201, 41.389762721051746, 22.50445176573691, 71.6313685266778, 119.33744304846451, 12.50371226178945, 236.97652688620204, 8.446518361751394, 16.305435790099335, 6.352250379016248, 39.07254896011507, 11.170798050684896, 112.43956038036198, 7.579514405357742, 87.7455359073281, 23.60145640483271, 33.26247152643497, 223.47575597438527, 12.26794809014395, 9.141913403166555, 6.521709410024687, 47.08829077307987, 84.00229179098253, 126.59460072276937, 5.676994361492638, 50.762981918823904, 37.57998329602438, 20.49615851174752, 29.172366497947248, 128.0754029769007, 32.99908397075196, 17.193113470411102, 39.99877503514385, 59.07794789423852, 20.658131875286387, 57.36930875708702, 88.4016066916663, 111.7127089888014, 6.3451455251458695, 27.849602215050815, 10.552873242853044, 33.75788518933809, 5.9530165959351375, 17.57136877548404, 80.21621967051135, 12.82985839720602, 12.534398219968693, 5.825177917017262, 30.13192163990071, 5.356396773437065, 77.87729268941204, 26.871389776634654, 47.460197955728084, 55.10350432332667, 34.5833160749695, 124.9088919438617, 48.83319961771292, 67.49980119462099, 48.03871399712469, 12.25806029671791, 62.04468035113894, 8.424808342824235, 83.440841794605, 59.93810496940923, 31.54505977608418, 13.163183409549571, 14.625393134256747, 56.40285712156179, 60.814928729785876, 114.702136744227, 38.03056679856388, 102.40656704841581, 25.015444795714608, 97.12748251013124, 130.78033857025454, 19.469968173094923, 170.04729291845203, 17.19277668795048, 25.47688369141451, 68.41448736872704, 84.81950561281664, 34.867050946946165, 21.656016521341325, 113.37421711553007, 42.86628625770979, 5.1675363479153855, 8.404276453678756, 5.295702062479295, 5.215730009912134, 16.668505524785278, 13.906453541437502, 18.912115483597397, 102.91563627751869, 46.89203781537653, 12.532008406880104, 157.35772124985482, 5.878946763711564, 47.46508808681597, 19.864504954216244, 31.35810356483279, 16.921371370418118, 83.83537940131814, 81.25257957627755, 9.354527774341117, 88.96428340984549, 5.863274061671184, 120.29231550252996, 88.96953397336924, 30.232960109865996, 112.82444305345453, 45.40185486167639, 81.86954932104766, 23.772161557807543, 30.615871073767345, 24.178259270529445, 35.163082773393995, 23.873690634703852, 74.16025117007587, 92.48504187667284, 69.95061246697018, 17.26587621189086, 91.9791629065226, 23.05180518610279, 16.437109183640267, 9.666747538362044, 67.95815419339556, 40.70598186355963, 36.476570441796916, 29.29603422861246, 18.37367531269191, ...])
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);
([4947140.625, 4992554.6875, 5108500.206124676, 5109069.771972832, 5137522.503338139, 5186407.731630295, 5236787.041319584, 5253548.4375, 5311358.856804226, 5327871.203409906, 5328301.047391316, 5332695.081221937, 5387659.908808793, 5387854.670263958, 5390432.8125, 5391672.779600557, 5392497.9446001835, 5393092.860382901, 5423587.5, 5434005.535751175, 5443046.875, 5479921.6675808765, 5482119.695747979, 5483350.393515931, 5483991.617930169, 5487382.8125, 5487429.737544961, 5500322.591335522, 5506784.375, 5507838.459510362, 5508926.110234458, 5509312.5, 5510863.8035011, 5510932.413519871, 5512968.3484762525, 5513866.315925307, 5516342.1875, 5516665.643968838, 5520036.898284258, 5522745.3125, 5536365.625, 5536369.557924181, 5538085.287417186, 5539054.4284491185, 5539212.5, 5542684.375, 5547459.608082867, 5562703.003730589, 5585020.835251281, 5588523.396994141, 5589176.357156095, 5594868.115441328, 5601212.358458824, 5601263.593692127, 5616603.936675523, 5618068.365118464, 5620444.809725645, 5646076.938699539, 5693409.96490185, 5695715.625, 5697715.040496266, 5697866.118507225, 5704727.554389024, 5705369.31546363, 5706231.25, 5707369.419868593, 5710063.078926432, 5711013.649775896, 5722760.540047546, 5722806.25, 5736691.328767886, 5743860.9375, 5748984.12480104, 5751998.038929146, 5757443.75, 5762392.050789353, 5764041.53535193, 5764592.830862298, 5764771.592567884, 5766070.05222879, 5768151.254123346, 5769062.5, 5781661.488501431, 5783506.009987929, 5788815.625, 5789974.95892592, 5793812.722345304, 5795231.986033778, 5802887.5, 5806360.065412072, 5826682.166830457, 5872834.80451911, 5879791.004290318, 5881561.677082695, 5882528.125, 5887134.898574788, 5963301.5625, 5965425.0, 5969925.413759014, 5972709.055378981, 5983284.336485275, 5986092.920235731, 5986790.4893521955, 5986897.769783196, 5987972.459429718, 5987978.897389438, 5988062.748160211, 5988813.407834704, 5988818.127863946, 5988946.875, 5989262.954630896, 5989756.83251799, 5990232.8125, 5990967.1875, 5993460.290761537, 5994038.781248091, 5994940.8040030515, 5995570.3125, 5996540.74993648, 5997595.551628304, 5999512.5, 6000597.2326357225, 6000976.5625, 6009873.40835272, 6014754.488849062, 6018590.755022637, 6019262.21565083, 6019757.550084037, 6020862.943960493, 6024432.00131114, 6024795.3125, 6025151.5625, 6025459.375, 6025876.5625, 6037884.166292115, 6047214.0625, 6050367.03467517, 6052642.1875, 6052719.289353649, 6053812.278088136, 6056337.521764225, 6058482.8125, 6067644.9257694995, 6071662.5, 6071773.443459183, 6073062.054490556, 6074226.8630538285, 6074262.5, 6076535.9375, 6077140.625, 6077188.251905253, 6078251.203304782, 6078425.0, 6078521.875, 6079843.75, 6087023.4375, 6089213.78412412, 6094147.533871851, 6095145.3125, 6096859.842554586, 6097323.4375, 6098994.53649569, 6099072.108840366, 6099142.958500108, 6099843.637241335, 6100257.8125, 6100645.4157797275, 6101565.46910945, 6102556.6064136075, 6103109.171297104, 6104490.625, 6105759.765729508, 6105866.776902255, 6107081.15475778, 6107194.172066612, 6107385.371209645, 6108803.781176861, 6109053.443248062, 6110202.871343762, 6110843.75, 6110858.208410956, 6113045.59493725, 6113075.3292053435, 6118679.128225723, 6126966.617209007, 6129402.700823111, 6131889.339408106, 6132437.255138904, 6133341.283481902, 6134366.103271559, 6134843.052294697, 6134917.1875, 6135314.0625, 6135671.724577726, 6135717.217847539, 6135878.391793099, 6136513.317884111, 6141326.5625, 6142996.826318847, 6145079.6875, 6145385.829214453, 6152050.837284865, 6152248.751269443, 6153951.258847649, 6158112.237908713, 6158637.5, 6159210.781987988, 6160808.8695680965, 6160847.879887931, 6162412.417075439, 6163731.064952657, 6164209.961457851, 6164237.98352649, 6164461.8940964565, 6164506.25, 6164603.425660162, 6165129.562008758, 6165378.040185493, 6165412.489240107, 6165583.545111711, 6165725.0, 6165786.863279999, 6165904.6875, 6166052.154155817, 6166072.639279028, 6166557.8125, 6166661.010747808, 6166759.375, 6166914.130694509, 6166952.548129784, 6167016.662087626, 6167174.0590003915, 6167215.763602499, 6167271.92559066, 6167285.736554051, 6167287.150601243, 6167356.25, 6167638.0011810195, 6167646.786498853, 6167856.642481095, 6167889.874134567, 6167957.8125, 6167982.670434037, 6168225.252598425, 6168388.928251231, 6168634.0814644955, 6168781.834459341, 6168945.378198541, 6169015.00698417, 6169035.460733519, 6169635.041177965, 6169669.617919168, 6169671.875, 6169753.125, 6169890.858065235, 6169909.375, 6169917.088919724, 6170037.987064476, 6170066.600048722, 6170101.519565263, 6170362.5, 6170375.707113592, 6170438.222335389, 6170467.097810477, 6170571.875, 6170602.641573836, 6170782.159233729, 6170992.1458003195, 6171161.406370759, 6171381.25, 6171648.4375, 6172071.772478884, 6175104.341839443, 6175846.536761887, 6177070.047817782, 6177412.40968956, 6177685.9375, 6177737.5, 6177852.682580194, 6178122.159133871, 6178273.4375, 6178566.065610642, 6178799.967934311, 6179687.696520423, 6180481.6236635335, 6181922.423567037, 6182138.8817777, 6182160.962263185, 6182164.015470277, 6182315.3891354, 6182353.125, 6182623.4375, 6182962.950765971, 6182980.3404269405, 6182998.945636476, 6183249.377917089, 6183323.983381608, 6183385.5956884585, 6183386.766905714, 6183932.252733934, 6184273.798327305, 6185023.4375, 6185041.210504243, 6185042.1875, 6185753.125, 6186344.807434815, 6186531.25, 6186534.940650077, 6186584.695212897, 6187099.768890153, 6187202.854078313, 6187224.251120467, 6187370.894219606, 6187410.928183298, 6187544.964925434, 6187619.227076947, 6187738.449615242, 6187803.981519357, 6187909.2767007835, 6188339.0625, 6188389.596062647, 6188427.02825765, 6188511.740363544, 6188743.585259859, 6188901.676412024, 6188927.423866349, 6189337.5, 6189360.9375, 6189671.304778961, 6189981.681423696, 6192729.6875, 6194885.740426026, 6195368.171640695, 6196082.643080875, 6196242.1875, 6196661.840006806, 6196714.458739631, 6196914.852078352, 6197366.398806778, 6197745.3125, 6197944.410958953, 6198380.417029127, 6198635.9375, 6198932.8125, 6199126.047280114, 6199341.111292486, 6199755.701065984, 6199758.763666847, 6200100.0, 6200112.8205376575, 6200150.305432896, 6200447.119283921, 6200499.250456508, 6200622.889348465, 6200666.278365876, 6200714.151985716, 6200738.0574274575, 6200767.1875, 6200930.081954694, 6201025.297336184, 6201270.173891896, 6201634.808885603, 6201635.9375, 6201648.909354628, 6202402.75042368, 6202604.6875, 6202758.242348444, 6202923.257204193, 6202943.864052176, 6203056.914139254, 6203291.039763334, 6203297.840228475, 6203300.29912366, 6203308.929369816, 6203339.0625, 6203380.674460596, 6203393.75, 6203487.037443465, 6203492.713359904, 6203495.834050862, 6203522.781213981, 6203579.6875, 6203632.3758082315, 6203681.190049883, 6203714.800384449, 6203824.65022315, 6203894.276565519, 6203964.0625, 6203993.75, 6204129.411095497, 6204361.967243608, 6204468.75, 6204548.4375, 6204586.45437081, 6204587.5, 6204606.25, 6204644.894156589, 6204709.701249901, 6204733.862286858, 6204869.414221335, 6204978.826928278, 6205035.9375, 6205220.134179791, 6205258.231122884, 6205343.532665135, 6205354.6875, 6205357.0852765795, 6205393.517781983, 6205415.492219731, 6205420.3125, 6205446.645124248, 6205484.1317639, 6205487.5, 6205497.990861039, 6205501.5625, 6205605.347179817, 6205625.098879589, 6205660.9375, 6205751.09948566, 6205821.213386374, 6205837.475767866, 6205842.109842228, 6205848.40603352, 6205852.695892113, 6205863.470673906, 6205932.7014645245, 6205955.984943818, 6205980.686519047, 6206009.012903157, 6206042.652725813, 6206109.375, 6206112.2855874235, 6206118.564703028, 6206149.831866571, 6206186.71291488, 6206190.951404376, 6206195.3125, 6206231.48211515, 6206301.966690241, 6206438.844754829, 6206445.3125, 6206459.707628753, 6206465.945296874, 6206499.198825428, 6206621.875, 6206658.157702798, 6206687.388882988, 6206721.221084549, 6206850.0, 6206980.871036429, 6206981.25, 6207193.436066574, 6207217.437816314, 6207271.87250384, 6207367.358342567, 6207437.043503686, 6207437.407904323, 6207437.5, 6207465.9837804595, 6207490.256183689, 6207499.348096418, 6207565.625, 6207641.563198905, 6207652.2155457055, 6207741.512814749, 6207796.922112532, 6207867.071830322, 6207873.21504128, 6207884.206181858, 6207983.42997642, 6208192.1875, 6208226.446890298, 6208277.273581036, 6208478.782314039, 6208496.187575054, 6208521.890989266, 6208545.097095361, 6208617.1875, 6208714.400191173, 6208877.544457424, 6208902.845018618, 6209131.11732942, 6209300.0, 6209440.69447751, 6209558.449838812, 6209673.4375, 6210129.531319557, 6210142.254540566, 6210299.636197834, 6211594.694583103, 6211629.6875, 6212012.34918925, 6213217.1875, 6213500.118928493, 6214149.247585877, 6214253.125, 6214442.1875, 6214489.0625, 6214890.661546629, 6214976.5625, 6215047.301650107, 6215171.875, 6215257.8125, 6215290.625, 6215365.625, 6215453.125, 6215664.186741848, 6215679.6875, 6215720.842671785, 6215850.0, 6215952.876258167, 6216284.375, 6216746.119446118, 6216938.105552034, 6220608.767291573, 6221919.325065517, 6225237.5, 6230402.645408385, 6231111.427191089, 6231293.6317270575, 6231510.834806215, 6232398.2667839145, 6233625.0, 6233966.719246712, 6234623.4375, 6235785.927603512, 6236419.95244137, 6236476.6487002885, 6238488.911894228, 6249339.043426753, 6249355.989258995, 6249375.0, 6250884.452125211, 6256001.5625, 6256033.602564303, 6256114.285983081, 6258935.9375, 6270619.992489341, 6276009.317044791, 6277973.623132138, 6277991.638975283, 6279433.560305584, 6279450.0, 6281510.572525307, 6281870.631860151, 6282433.672182959, 6282612.332473112, 6283729.437687783, 6284560.669323357, 6285229.6875, 6286082.8125, 6288082.674879758, 6288640.500466822, 6289912.052917753, 6294819.711589478, 6308570.422645329, 6310144.459287245, 6310568.501364016, 6310614.0625, 6311041.197194483, 6311281.25, 6311461.06421733, 6311477.99512977, 6311705.054926967, 6311735.9375, 6311924.916951392, 6311968.75, 6311971.875, 6312092.9539328255, 6312210.232773107, 6312277.05735811, 6312451.423452631, 6312461.645706841, 6312476.306174793, 6312510.769598867, 6312647.21707474, 6312749.997688577, 6312917.1875, 6313295.737369113, 6313431.25, 6313462.964054258, 6313504.383816165, 6313700.821805407, 6313866.998087035, 6313909.375, 6313962.188520789, 6314185.607374147, 6314218.665828459, 6314263.247678489, 6314264.706765166, 6314271.875, 6314301.5625, 6314316.842628301, 6314370.902526945, 6314792.472444969, 6314807.260331306, 6315057.8125, 6315510.9375, 6315510.981086277, 6315550.0, 6315564.100262709, 6315622.218028256, 6315865.126078104, 6315879.469137943, 6315897.302857967, 6316003.125, 6316094.494006378, 6316097.702507993, 6316104.995035914, 6316110.68187856, 6316342.176367135, 6316535.9170432715, 6316607.8125, 6316651.5625, 6316678.125, 6316688.535379661, 6316700.0, 6316729.157993651, 6316765.699370049, 6316784.375, 6316802.814409211, 6316831.310007734, 6317026.073524914, 6317096.875, 6317371.0724984575, 6317501.5625, 6317510.152383317, 6317612.050535115, 6317806.298682187, 6318012.5, 6318031.624566078, 6318057.129126375, 6318213.816274471, 6318246.875, 6318638.785092755, 6318792.1875, 6319187.935108778, 6319550.0, 6320287.5, 6320434.33279176, 6320917.338162797, 6321418.8363750735, 6321910.033300843, 6321953.596057924, 6321978.125, 6322144.327921495, 6322146.875, 6322214.0625, 6322426.758301926, 6322451.5625, 6322479.493048371, 6322553.105926753, 6322603.910788974, 6322632.306148621, 6322667.078501569, 6322854.948104017, 6322920.565104585, 6322922.022688118, 6323205.271091316, 6323273.419030645, 6323285.244699475, 6323448.921528957, 6323508.627403812, 6323675.695104479, 6323739.19306102, 6324178.364561513, 6324317.135369329, 6324334.265250647, 6324602.168774464, 6324623.4375, 6324665.625, 6325169.157245153, 6325560.275887165, 6325648.3653974915, 6326181.068905232, 6326804.023832133, 6326866.746141464, 6327324.722905502, 6328942.1875, 6329027.272667763, 6330355.9427164765, 6331313.827445107, 6332306.950662492, 6332315.625, 6332974.686437589, 6335389.991799953, 6335396.746422627, 6335437.5, 6335467.531032727, 6335500.0, 6335542.659134444, 6335934.766979378, 6336595.3730825875, 6336711.49721648, 6336833.73847568, 6339140.625, 6339166.846263978, 6340868.278148691, 6341122.808698731, 6341134.598072322, 6341614.823757957, 6342071.270669428, 6342454.534621991, 6343042.1875, 6354568.75, 6354891.238385026, 6355127.18059811, 6355669.660880041, 6355680.843447982, 6355704.075357853, 6355993.75, 6356047.419083723, 6356856.338700347, 6357225.0, 6358620.897613687, 6361632.748001517, 6362012.5, 6363116.599790278, 6365407.598271477, 6370444.67662526, 6370682.8125, 6370900.435277024, 6371608.703158361, 6372399.476341695, 6372685.514815612, 6373426.301131628, 6373782.572830221, 6374176.5625, 6374195.3125, 6374596.109325995, 6375026.29793817, 6375098.735304013, 6375250.0, 6376010.528193638, 6376082.8125, 6376179.421620942, 6376496.875, 6376631.032211274, 6376671.793071658, 6376680.890142011, 6376690.885238559, 6376955.9650351675, 6377297.792435815, 6377529.46185421, 6379762.5, 6381723.323026774, 6382480.572814933, 6383365.567601552, 6383485.9375, 6384488.039107945, 6385150.0, 6385414.7262838865, 6386431.003593624, 6386525.95533645, 6386534.375, 6386728.331874976, 6394962.5, 6396727.90546193, 6397285.9375, 6397321.730063833, 6397619.770607628, 6398945.3125, 6399206.158586147, 6399223.4375, 6399473.904291064, 6400100.696131609, 6400385.7861174205, 6400461.183404449, 6401360.845246816, 6401371.686230046, 6401558.556950476, 6402122.501409016, 6402349.90314033, 6403359.3171016425, 6403359.603438139, 6403388.762705292, 6403685.632282218, 6404172.522633906, 6404327.5210091965, 6404482.088870003, 6404534.755237007, 6404595.422709828, 6405179.107577158, 6405562.33807119, 6405734.7957003, 6406419.182508676, 6406429.345628258, 6406610.9375, 6407186.862683345, 6407237.5, 6407436.905946552, 6408012.5, 6408175.0, 6408293.317274164, 6408997.620621763, 6410050.0, 6411235.9375, 6411404.918655319, 6411528.554633696, 6412419.568389512, 6413603.125, 6414205.357055586, 6414491.932994743, 6414923.220794195, 6415675.441944356, 6415737.623728018, 6415945.232608725, 6416415.625, 6416676.429663845, 6416702.077149829, 6417445.3125, 6418245.481062977, 6418707.8125, 6418723.662264948, 6419073.4375, 6419215.625, 6419302.383811582, 6419311.431549178, 6419569.765177577, 6419570.047394765, 6419618.775643437, 6419640.625, 6419648.911039807, 6419672.050812468, 6419695.434922647, 6420066.685621114, 6420350.427086334, 6420413.202795581, 6420635.9375, 6420745.3125, 6420880.705210536, 6420899.70173841, 6421010.138845026, 6421309.375, 6421311.322689279, 6421359.351440842, 6421371.875, 6421532.8125, 6421590.625, 6421647.625685426, 6421703.275798616, 6421971.006211262, 6421999.5823333375, 6422001.559732632, 6422240.625, 6422346.1960417535, 6422467.06554626, 6422560.722931992, 6422564.0625, 6422721.875, 6423262.213740232, 6423274.799734637, 6423335.98969526, 6423634.200856791, 6424440.625, 6424676.5625, 6425062.5, 6425074.765532013, 6425673.314090401, 6426458.509150408, 6427035.869036848, 6427509.753575469, 6428743.579736476, 6428820.349087402, 6429164.064441993, 6429691.899114858, 6429730.940905676, 6429823.4375, 6429846.102432036, 6430050.0, 6430050.0, 6430262.328838037, 6430459.108650923, 6430543.75, 6430664.0625, 6430986.669511189, 6431048.516894904, 6431258.103181296, 6431396.133714287, 6431414.707282113, 6431440.561728605, 6431571.902394623, 6431858.177794867, 6431913.996428838, 6431963.18931367, 6432196.962439819, 6432201.012509524, 6432672.68819698, 6433088.124619433, 6433209.142062677, 6433351.77983898, 6433446.4771677125, 6433650.0, 6444881.195292788, 6444896.396948926, 6449770.3125, 6461951.5060536545, 6463533.768895815, 6468068.75, 6469249.072303409, 6474815.625, 6474969.237279143, 6476151.5625, 6476756.25, 6477482.224516467, 6478467.1875, 6480179.6875, 6480246.002710248, 6481711.530510021, 6482040.589947786, 6485429.285732839, 6485845.3125, 6487084.529978641, 6487639.615373009, 6488583.931003101, 6488993.072396858, 6489442.933034498, 6495556.400198858, 6495781.25, 6501397.291434146, 6502301.5625, 6503141.984886905, 6506245.3125, 6508781.25, 6515120.3125, 6516461.790202232, 6517865.442214232, 6518917.1875, 6524396.658709394, 6525890.790814283, 6529859.935852488, 6529881.502558935, 6530321.507115135, 6530559.375, 6532618.75, 6533524.4394370755, 6533791.690678247, 6534125.0, 6534896.875, 6535710.090390433, 6535723.963173652, 6535850.0, 6536099.792953769, 6536156.25, 6536170.3125, 6536199.270078032, 6536364.999261785, 6536462.987219022, 6536493.574099633, 6536547.141266461, 6536564.0625, 6536729.721542348, 6536735.453677964, 6536735.9375, 6536750.0, 6536750.0931358645, 6536768.966130959, 6536825.148679503, 6536902.03884467, 6536969.139645679, 6536981.7952567935, 6537252.070762455, 6537267.1875, 6537451.5625, 6537491.369484943, 6537510.432585656, 6537688.341048306, 6537782.8125, 6537806.408272006, 6537810.767975417, 6538156.687722055, 6538212.5, 6538309.097900138, 6538346.902222355, 6538370.3125, 6538475.644701691, 6538613.6762403995, 6538775.0, 6539273.545521785, 6539415.625, 6539774.558987764, 6539856.25, 6539877.485064669, 6539885.372861718, 6539898.847932866, 6539933.176559255, 6540559.084564658, 6540896.856014364, 6541126.134160199, 6541139.0625, 6541139.562695179, 6541143.642745603, 6541356.651143788, 6541389.406390587, 6541472.246645402, 6541485.620958302, 6541513.815178149, 6541519.5644865325, 6541632.07836731, 6541805.583134274, ...], [92.79561960287742, 69.57098009916803, 11.465938935044672, 5.893675997828168, 9.925935978780448, 56.534603246782915, 47.09932474446507, 65.17178530883564, 10.404041983409817, 12.879447597380457, 21.34369553543214, 20.403993228699548, 35.16401248491477, 28.18822493967652, 124.55394390835528, 20.050419316313768, 30.050392099023995, 12.372197894489645, 130.70280287528274, 19.592602653609617, 57.86827152108471, 6.455060710317568, 86.14611631296333, 40.489568421738355, 33.487453009128075, 47.33903878256023, 6.494964936571606, 18.61850234264026, 82.42969272556206, 8.86876473971051, 47.19533438987092, 43.74592897537352, 14.038393781346931, 22.56371136788408, 22.535116770685725, 8.689189737736056, 43.4560956409173, 6.090074032740212, 6.19405578337527, 51.91514704815159, 55.409331539812605, 12.67900611979071, 53.50004633638647, 64.47781231070584, 101.96008642591508, 31.28567087843242, 15.052315003064365, 9.230925690869876, 17.394941235888382, 73.60968202975141, 42.32166913778379, 15.077099835231873, 76.20074900231975, 6.040667394822083, 19.30945198748914, 11.115007186348084, 17.400953292769135, 11.771470904813476, 12.194614806296109, 71.27087974044083, 63.34178029977267, 17.228096971360273, 20.816496570023414, 12.143802391975594, 41.08685790092847, 115.99874299823449, 49.233170421458894, 10.538556422111245, 9.016520228235247, 57.93357629123929, 10.006960234408533, 70.13377310650078, 24.408431087715034, 70.6189312926138, 56.698957041750816, 26.08759881515568, 20.098697067088185, 37.120249840589146, 73.32110018525705, 66.12562859652388, 29.45502647242712, 48.78024890496959, 17.56026787425437, 14.808908507809594, 68.75077448554171, 6.755334058040752, 9.526761691312222, 6.168137507213261, 128.22015468936902, 18.441519766132473, 16.636435880624603, 16.877495425424936, 91.98543453839076, 8.720658830975413, 79.2530783892769, 12.058218053350352, 77.92644912842852, 94.52121413213179, 69.50005815071611, 13.848788223045254, 54.17780889771332, 18.732780607781788, 81.29280524160825, 19.968690852711468, 6.151059144017625, 5.757743844648654, 6.526709108891858, 12.921515619652224, 63.66852491873907, 88.53935329085974, 12.96613543271802, 16.632737574824034, 69.32411833686531, 32.637464374655444, 29.339227655214263, 23.9932134946624, 9.487490037590254, 40.53115244732868, 7.154685556760149, 14.916886799202317, 49.358505291591655, 244.65756910073586, 70.21099981358462, 11.082451322964843, 74.57465041713388, 15.461389175399376, 5.196237588818226, 24.242998333690263, 36.33236093118498, 5.427994251480725, 30.338032652043946, 75.53368126601165, 81.35689099553869, 35.21896109699987, 37.66585270983851, 40.882511692825155, 95.09534344704518, 34.481740661798725, 42.570787194496596, 10.797699209246858, 11.161896950614826, 40.714675767398596, 18.20085819105799, 49.86729339355751, 20.29017542394441, 13.477802131831394, 9.599161313075442, 32.659256171460825, 79.10627918522368, 61.19678001081143, 7.899883410227963, 134.79613865381359, 56.231177119578284, 36.98533840553076, 90.66520937730408, 143.6333020332811, 7.050148564395312, 46.85305133289117, 87.86399753497162, 11.946651733049666, 54.19410909202603, 77.1154099694112, 36.87866437395481, 19.006656911326594, 26.478541088229285, 63.57447475438312, 5.043288690788864, 25.784360542736568, 9.652121064118907, 48.09342925133839, 67.66046792022597, 8.504606121782126, 35.087026867735986, 10.982030398336818, 41.5859653420296, 28.321961121495733, 58.418754556154, 32.73982526798996, 5.450983645487754, 65.73653020944863, 15.961990740931526, 9.582211168597423, 16.364671555069805, 65.09074750328301, 29.444669963833697, 22.284359904759313, 13.233072005622958, 52.58436722815474, 5.4907573891952905, 17.14285189822048, 19.72422216981906, 36.950048650767805, 62.699170358521016, 25.86995003768354, 60.13220772599621, 5.210272702856333, 68.13833205351719, 41.971370347260866, 27.59698508301646, 64.81044192315161, 26.55311350094979, 122.51108031850052, 48.85505021564416, 103.84191735657545, 46.5498091740796, 34.931597107437845, 14.380146034445886, 30.806859315797034, 44.3210510557257, 14.634587178765015, 108.07678356351695, 7.830077843747618, 7.254634214839569, 20.497934367150748, 66.13244943774974, 16.842187437065746, 27.030489282707066, 26.95278548905805, 36.092712700670866, 61.954047319822514, 60.13745542323976, 76.8354873926801, 79.53422603162917, 28.33250291453627, 136.60950843343608, 30.888934130932466, 118.83807078194211, 104.7977020639731, 18.563162436905763, 18.27657259933913, 52.363003863717424, 48.77138122610974, 6.284870064523034, 137.39770167835292, 5.523406836016806, 114.86038658591382, 48.89748810714013, 123.81440946664085, 32.447056846997455, 195.88875862916655, 71.50115111460737, 119.3447845280673, 17.154632693215532, 11.546905342269566, 26.127143686850015, 69.95916791276368, 36.83689163603286, 80.25867461506887, 23.472158883799082, 8.049581546301544, 62.06689248392634, 8.805885462436242, 63.82662855548824, 57.8501454534585, 22.763375053754537, 46.90627821928299, 49.07703046293179, 5.982974891732478, 107.64823245792404, 47.04942235168103, 89.21520502098075, 18.576849265836415, 10.027266426401429, 77.62701938541794, 68.14380984348213, 13.37166823214256, 39.97339769042612, 14.784916635085112, 34.71958036883952, 52.817134087987114, 45.837204964600474, 9.246194559851068, 19.554407043397255, 37.400392775895526, 14.020297782345235, 71.79626469946876, 39.025188426962124, 32.711243939152844, 14.659502468427021, 96.00257539082816, 47.52039480323218, 33.18026112243615, 27.90569315916626, 156.28379235593724, 16.586680278806675, 122.35314394395536, 54.56511135894807, 5.7083358169989475, 9.291950974887687, 10.778018331170651, 36.873023632545625, 48.33602745189518, 16.991776492047627, 36.6369801424341, 41.04620964382573, 20.355975082171035, 6.87761102832866, 5.38556571458835, 12.729984276806126, 35.32818393660502, 16.52174357445199, 30.110891871044235, 17.767954322068178, 102.55476297170543, 44.35386152681414, 107.56993763310814, 48.90671698469064, 97.09761590908799, 221.83030911787915, 24.672497487379378, 26.039640339670346, 19.324243932675756, 17.74485505937344, 62.36707743107922, 64.66856211004048, 68.62418080003783, 20.43637312613987, 8.798181131886153, 26.721424178343312, 75.20414888998476, 12.078453741434084, 58.43483082009834, 6.620769750579819, 25.647279022197157, 7.151721108456361, 12.806994144926644, 62.93619711812055, 30.55944646688494, 20.820086428655546, 11.133955746296188, 56.43938391117218, 58.81940767501967, 14.195959037608809, 14.332825814152578, 38.797520346168255, 6.388380014277473, 16.702584594045828, 7.916170132178258, 5.267331281979748, 108.86590866258021, 129.7042390727691, 29.692645033750587, 43.14528315901774, 32.07579753613373, 77.638189446101, 111.17988641126415, 24.875935786817664, 79.94276867891125, 59.81944735351719, 11.668633941496074, 16.249230279740733, 98.70757912524695, 8.76898314399115, 5.087818227149858, 12.329712546803005, 7.635926999285996, 17.4630476308237, 54.33775640916798, 25.375915559519537, 5.96572448422109, 9.216889107284866, 21.669101504617423, 75.21946898983613, 24.60037468531859, 19.880994551926015, 48.78281764953921, 46.36650585631925, 116.95217368555704, 5.714055243456872, 12.3531087060781, 16.799335017900503, 14.08436833925331, 5.547776234105888, 22.05317349732732, 30.00476727374059, 6.653798265501964, 88.72079337503212, 99.0926806768937, 32.51170912154956, 7.265649916142373, 20.063932730164275, 31.569492429611515, 117.32877340972254, 42.60586202556134, 89.06902114675792, 15.417873070986333, 18.247095401322063, 146.4802376606379, 89.75668899772457, 146.69767715105374, 11.724332182655335, 48.58524420717308, 53.0572644447475, 29.513706741741814, 51.92363037755577, 61.47743339644962, 22.34827007552652, 7.725658550125528, 99.17200551367705, 12.353287486051746, 37.13581023494702, 59.824302971192026, 21.089087484415177, 27.2025508059948, 32.12318839895456, 59.558879747090316, 10.153986140036993, 24.65697795899477, 26.150800578636005, 61.55386941884549, 148.2208632369393, 173.22924495946478, 50.14825334787669, 71.93127113663438, 41.78155067346062, 12.3434077157651, 90.62655871177336, 37.73572298745718, 8.056018600221183, 53.2459113625046, 21.26651131989252, 154.88301657518912, 11.078876311025214, 64.5179483667195, 55.750060998484386, 60.51217312178558, 8.151214318847243, 13.15548528078806, 13.720293912101956, 17.07075053516382, 91.45598227436705, 72.82361944052248, 5.335612074617642, 90.5288900675396, 6.1726265571019105, 11.679338564953108, 29.567249334342225, 22.809059981784703, 63.1614201480309, 234.75262991906226, 59.465060436474815, 48.80810664136272, 395.6103413550672, 15.591468836342644, 68.20824215584601, 82.3372083530081, 5.607926315598563, 20.08382990929031, 201.4693614015602, 39.702059831487375, 49.98243008497904, 13.866261488363614, 11.542886544621377, 207.30294635111306, 15.63527988553364, 55.60095866925345, 55.88571906410397, 43.29420318171291, 11.738979884715484, 249.46929593945038, 20.10075590715885, 94.56269508497492, 10.274481155564295, 6.353389072740692, 72.61320931068639, 107.26346137110578, 35.09576451780187, 186.06284812360184, 14.334861490068427, 9.914458985701785, 52.6032937886142, 89.67578790737869, 92.54405942640008, 125.19032409009397, 105.82308008009046, 15.00280526064709, 24.89501986318623, 67.47815023181562, 11.700021014544646, 51.79049470063523, 94.92110213707173, 107.7819073462973, 90.48797044554975, 104.15763856031651, 24.816428167232296, 132.96733657062296, 7.547710021016304, 51.94348284977011, 65.59242464228547, 10.282119995471797, 38.65717486186629, 14.39624398782948, 36.2671684154853, 11.318831158744247, 320.1530023928901, 36.52899013482952, 37.10777514261125, 34.50842003511268, 19.73928874490509, 171.74124495370245, 20.302924268862547, 90.52333696617599, 266.1482898723017, 66.31066077317416, 56.03600277754435, 65.50339601181344, 15.437195046911311, 65.64022995343097, 17.437966167778455, 151.19504573576384, 228.74394695006978, 34.19267207556802, 14.110711573915449, 100.36136449402508, 30.69223632992898, 84.90014170487424, 151.74450288270728, 8.04826192522387, 5.641721889263259, 25.97560191554213, 9.246053500688673, 167.2977519538927, 124.57117257328578, 10.467001828136034, 59.17667685063767, 131.43456403268527, 40.83400100078692, 5.167374005959445, 34.893349153830755, 19.50814568813776, 24.265517773887126, 29.783273328737398, 15.243855376784317, 106.86336165297183, 128.17294337395987, 49.544864362333044, 34.89547478650225, 30.321281724212024, 7.582409912091069, 274.2136985298508, 10.366435085561658, 152.3217995485825, 36.426921482894265, 13.711713533953349, 11.666489179659981, 93.418329119254, 197.90172514516522, 14.067788131801352, 88.73698537595843, 44.02790595061682, 39.553456155441225, 15.31022653021186, 62.80728560439402, 35.98810640825049, 8.870212640287063, 15.37863624880141, 159.97538721718132, 9.129658652216202, 83.99948452246171, 8.614264215904898, 110.05972909261895, 18.663884537034534, 120.37057252693914, 16.55504413360075, 73.03581015126065, 14.634141360055004, 50.55185036107419, 61.95040588402096, 18.97342028340807, 29.2128161112861, 24.679178144025343, 26.050196835432224, 18.562530726120016, 31.45779201733417, 82.67620762808056, 34.39171273623259, 24.02296049088665, 72.0184431949657, 7.764490679746599, 74.17413586543971, 8.548231833508261, 18.0081898762098, 85.33633517938947, 8.188889642126888, 28.62041528858383, 46.615136354555304, 71.02579557445006, 32.96700594613189, 26.163215970662222, 173.54136894029784, 88.1382811685472, 30.465583293254742, 30.267532898460225, 57.65559822962669, 5.835368945321686, 20.988010449555112, 53.08418350215341, 77.06050492661205, 9.368531776457052, 29.795779099649568, 6.77106909063233, 27.564909973937986, 8.039257845652779, 195.40269870760778, 6.852040903837821, 83.9183634265593, 37.67000285114957, 12.725455690830938, 5.726614005001858, 24.334666143714962, 28.306478801812307, 67.58061597571188, 37.53830246073414, 70.1483774057082, 30.330103992414642, 21.226760240801568, 88.8674036942264, 21.20372323805284, 76.31761402492842, 54.26055540250837, 66.21272844286182, 15.175272375751991, 42.81284805275136, 35.4344825764022, 6.9253518520041855, 57.9959013157015, 123.83233520490585, 53.011013182801236, 18.928821221758724, 64.53242340187468, 81.46786801298641, 19.84009406341137, 24.462830253836955, 89.90058673442536, 24.04368739810797, 68.84456375431903, 83.15363857430758, 38.458432719133356, 80.63718428385273, 11.062367347891309, 10.996316038480085, 292.6346490783387, 23.304002649002534, 8.552446601389514, 63.064684094275776, 69.96161422598286, 57.349953818480735, 31.17567949984285, 7.173891151523808, 107.31316571408587, 74.55449387341577, 19.304374658806765, 17.347026828126452, 21.429974965837104, 32.277856146467656, 8.429370762131937, 27.996743250879728, 7.160823193141811, 74.88641514339412, 14.87157709725646, 6.183463978409811, 50.64297735505089, 12.695501541262447, 7.8756057248473965, 7.156200387442556, 117.41001909383776, 27.608030724144115, 8.229380386851275, 17.89615433874527, 94.69177521139694, 44.89589382071525, 43.98636185805084, 20.019405445196533, 60.200027041506544, 105.4220260797347, 12.89908752517039, 79.15001167686908, 18.383141439534626, 38.804058869344956, 18.192716116735767, 67.7425302346978, 5.283881378775359, 55.92535884940844, 29.092411148023796, 37.91109483316513, 35.14819440857072, 43.12845446600747, 42.88561782555166, 155.12247532489368, 88.98673287622954, 17.10606808926532, 95.12008771673258, 173.34490758558803, 125.48372556064254, 60.22818364735548, 60.466842688142776, 29.896717086112325, 13.40380551389728, 8.850866178385642, 15.865865200390592, 18.935943689817442, 20.51187007522612, 24.952607789913444, 53.16132155697537, 103.43948909157369, 19.539437298473096, 26.97301153202151, 20.10314497279937, 9.009775265686292, 89.47751775871936, 66.40595702823711, 6.3384770839996145, 14.317534145599648, 48.09883982470227, 9.880540752067533, 46.545295186229076, 104.65377200551586, 13.092081608197017, 24.91188005917246, 10.260682949790299, 123.66614490884854, 243.8255981207251, 12.878825473005989, 160.08129889962316, 22.300668160107637, 7.0543999816714615, 24.55323071459941, 120.70781760857288, 234.2559214467255, 19.197471625938157, 186.44711194833945, 9.5965814958255, 49.2817722882808, 22.448181505138955, 69.25977395691541, 24.196598810136265, 39.33110463898439, 24.86092746432055, 79.15382502162552, 28.638388096533205, 80.41383883367062, 9.101537754940502, 10.249772796332387, 43.83823651943366, 59.24330321012803, 81.398437635114, 7.958236430224113, 14.727155388312845, 53.85090234265999, 7.81060051333394, 55.118585784019785, 56.01177670224992, 68.47964788679936, 113.0927875396248, 136.75039881953865, 289.09112533662045, 269.97917746703024, 10.801059515510177, 54.29380788418083, 25.956507845463456, 21.085138508732605, 32.78431762785994, 9.255285487060268, 48.89529514978967, 11.94515341516958, 19.592146093949054, 50.46214757482981, 5.135792636852262, 120.39448196378501, 10.844932776889118, 18.81553624549551, 23.74670520226799, 103.13014261786978, 25.35471965412084, 11.50458521073332, 23.753364336168776, 73.07570973796845, 12.317320207001783, 20.98384042080773, 7.937705928743431, 73.33824436246724, 23.756009304830485, 54.60855624104527, 62.446334632651144, 11.855785902783577, 16.376440222983334, 23.230227985007737, 92.7456268750855, 79.35830672154489, 42.22876795706781, 54.03242045907839, 63.62440922467307, 74.2347434464036, 19.997840567572073, 89.56487447661587, 57.45258388553365, 56.29166628289974, 60.402086368958024, 17.046108704845956, 12.70376397594556, 34.794455496393645, 18.30228260712927, 19.559047566053056, 9.154650178101233, 25.056560381184156, 5.0436351595114655, 27.038451185734814, 65.38383234178623, 35.0934721765103, 12.118866866661701, 34.564950845706335, 24.051064233796694, 77.36749291779962, 20.793194418045303, 49.84528697172044, 34.006799980367255, 25.948105542230934, 148.09760235929838, 28.82829341884861, 22.653933813676886, 12.647163962444044, 75.65909934370715, 54.772724863968506, 5.954863981017446, 15.429602966068364, 8.037884325751056, 5.554173742284325, 12.438196597654338, 56.74617080053207, 52.5363068069083, 21.05764174349046, 23.772972859270944, 18.95465531728849, 86.91026738413127, 38.69016627476513, 11.091080920194827, 30.23490976469376, 144.91931595230974, 86.97187157802252, 35.30750107052896, 15.549219616449042, 58.67036804657346, 10.532119819355275, 28.47048502320962, 44.61253326374993, 10.209877225008679, 83.18026604843853, 24.907010537263975, 35.68963186630123, 31.662362089781634, 8.140785398287916, 266.6075520758043, 7.13524013169404, 10.865999043106665, 69.74158331216313, 60.12828390861593, 36.42244847449483, 24.62554067951628, 22.366120590100785, 69.78221718352574, 89.32134118279065, 7.224655296736665, 10.871609687486881, 9.36253268835037, 14.948916560064573, 222.3104652168821, 13.881178666879428, 67.81497614368357, 19.146051586094096, 140.39749675459075, 68.75791574683201, 41.389762721051746, 22.50445176573691, 71.6313685266778, 119.33744304846451, 12.50371226178945, 236.97652688620204, 8.446518361751394, 16.305435790099335, 6.352250379016248, 39.07254896011507, 11.170798050684896, 112.43956038036198, 7.579514405357742, 87.7455359073281, 23.60145640483271, 33.26247152643497, 223.47575597438527, 12.26794809014395, 9.141913403166555, 6.521709410024687, 47.08829077307987, 84.00229179098253, 126.59460072276937, 5.676994361492638, 50.762981918823904, 37.57998329602438, 20.49615851174752, 29.172366497947248, 128.0754029769007, 32.99908397075196, 17.193113470411102, 39.99877503514385, 59.07794789423852, 20.658131875286387, 57.36930875708702, 88.4016066916663, 111.7127089888014, 6.3451455251458695, 27.849602215050815, 10.552873242853044, 33.75788518933809, 5.9530165959351375, 17.57136877548404, 80.21621967051135, 12.82985839720602, 12.534398219968693, 5.825177917017262, 30.13192163990071, 5.356396773437065, 77.87729268941204, 26.871389776634654, 47.460197955728084, 55.10350432332667, 34.5833160749695, 124.9088919438617, 48.83319961771292, 67.49980119462099, 48.03871399712469, 12.25806029671791, 62.04468035113894, 8.424808342824235, 83.440841794605, 59.93810496940923, 31.54505977608418, 13.163183409549571, 14.625393134256747, 56.40285712156179, 60.814928729785876, 114.702136744227, 38.03056679856388, 102.40656704841581, 25.015444795714608, 97.12748251013124, 130.78033857025454, 19.469968173094923, 170.04729291845203, 17.19277668795048, 25.47688369141451, 68.41448736872704, 84.81950561281664, 34.867050946946165, 21.656016521341325, 113.37421711553007, 42.86628625770979, 5.1675363479153855, 8.404276453678756, 5.295702062479295, 5.215730009912134, 16.668505524785278, 13.906453541437502, 18.912115483597397, 102.91563627751869, 46.89203781537653, 12.532008406880104, 157.35772124985482, 5.878946763711564, 47.46508808681597, 19.864504954216244, 31.35810356483279, 16.921371370418118, 83.83537940131814, 81.25257957627755, 9.354527774341117, 88.96428340984549, 5.863274061671184, 120.29231550252996, 88.96953397336924, 30.232960109865996, 112.82444305345453, 45.40185486167639, 81.86954932104766, 23.772161557807543, 30.615871073767345, 24.178259270529445, 35.163082773393995, 23.873690634703852, 74.16025117007587, 92.48504187667284, 69.95061246697018, 17.26587621189086, 91.9791629065226, 23.05180518610279, 16.437109183640267, 9.666747538362044, 67.95815419339556, 40.70598186355963, 36.476570441796916, 29.29603422861246, 18.37367531269191, ...])
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)