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 = 45425
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);
([4756654.311943208, 6048792.316433677, 6061412.790282998, 6146579.6875, 6191414.0625, 6325482.690409237, 6384817.1875, 6491899.571901621, 6560807.415856054, 6602857.8125, 6630364.728398033, 6630421.233364431, 6718872.281791585, 6733131.25, 6747931.25, 6758833.959407844, 6759319.734795326, 6760117.972825325, 6761473.4375, 6761945.462666731, 6765024.774408669, 6777098.306192603, 6780797.9029497225, 6816261.080625061, 6816262.583515759, 6831648.220639308, 6845970.018586673, 6871864.042100562, 6872820.024458734, 6873715.625, 6875505.128461759, 6877442.599725017, 6877584.375, 6880701.883683317, 6880875.0, 6885342.855823597, 6885387.5, 6892441.663544883, 6892456.024637586, 6892484.375, 6893056.25, 6911708.964107348, 6914310.746535486, 6959612.018929191, 7027512.5, 7048081.25, 7099563.662248878, 7100539.0625, 7101637.197384127, 7102596.63960057, 7102636.640600132, 7117520.657314517, 7123256.646960612, 7146288.327875178, 7146954.350688602, 7151446.875, 7151471.875, 7157914.060392302, 7159215.810295881, 7163442.594994955, 7167713.454585276, 7179041.367496816, 7189679.458897211, 7210092.1875, 7211568.75, 7215789.986881585, 7217251.5625, 7223243.36162888, 7255978.484233463, 7274041.506875384, 7298659.375, 7300042.1875, 7350149.791102798, 7350151.066790409, 7364923.995270447, 7377264.0625, 7378239.950777562, 7378549.050904896, 7386598.155481522, 7388237.05385514, 7395063.242612281, 7414357.8125, 7414412.531254688, 7439564.9841699125, 7450961.235826795, 7451593.386365338, 7451604.742467492, 7462663.606446607, 7497080.980338162, 7522736.942972027, 7530096.802335, 7532577.726442159, 7544802.25572562, 7550832.108412198, 7567110.268722072, 7573865.625, 7574571.62316827, 7577949.611126043, 7594127.9479186395, 7596079.131490142, 7632527.1860010605, 7634436.41207572, 7636572.62848651, 7638262.490544128, 7638295.3125, 7638495.3125, 7638593.782022858, 7640493.586638672, 7646198.021148845, 7650009.836564138, 7650709.375, 7709334.960254185, 7750376.5625, 7752414.80061387, 7754025.0, 7754057.794616568, 7754060.314509557, 7756131.25, 7757268.602484568, 7760375.947854757, 7762518.75, 7765736.504547122, 7798967.308435774, 7802981.860851664, 7810537.5, 7813637.5, 7819321.366664909, 7837743.75, 7840889.4281762745, 7841709.581504581, 7853671.875, 7854309.583050339, 7854319.256556709, 7854695.776884413, 7854900.31106409, 7855792.1875, 7856404.6875, 7856420.550665352, 7868492.1875, 7872890.625, 7873702.250450648, 7874092.910482254, 7874333.996955139, 7876687.1917552985, 7880830.998214238, 7923056.25, 7923459.375, 7936251.5625, 7957671.875, 7967676.177550314, 7983867.1875, 7985047.703841116, 7986300.088095299, 7993850.901209448, 8000706.482136082, 8001016.485568727, 8012401.101583799, 8014254.6875, 8015282.400722936, 8017599.402409878, 8022170.3125, 8024070.3125, 8025442.1875, 8026232.438884668, 8026273.042614481, 8029310.679548888, 8029641.202712758, 8032031.670555761, 8043660.9375, 8052522.294659796, 8059588.886990729, 8072890.625, 8083021.360759966, 8091747.426138724, 8095472.185614048, 8095824.894882827, 8096984.143302614, 8097592.450414297, 8098058.053057535, 8098295.3125, 8110707.277279412, 8111118.476978018, 8111395.333016129, 8111887.302513954, 8112471.875, 8112503.213541473, 8113705.221962384, 8113981.678336201, 8118294.92154025, 8118296.31713668, 8121980.680723303, 8122071.875, 8123170.606229644, 8128460.9375, 8129040.625, 8131588.653581673, 8132165.4467734825, 8133018.086786188, 8135347.003272148, 8137508.863895161, 8138243.834813456, 8138318.0772104915, 8158026.159375378, 8167810.009060842, 8175692.810172731, 8176103.091517163, 8176775.500612962, 8177189.35875315, 8177248.053715329, 8180305.844327332, 8181010.9375, 8190307.93964388, 8190788.7760996735, 8190795.337879254, 8193468.163629827, 8194576.420415636, 8195202.393714169, 8195275.090161499, 8200084.002116131, 8200902.311248233, 8201034.5198134035, 8202729.833817435, 8206592.1875, 8206923.833822553, 8212061.392950394, 8216707.8125, 8225383.024613769, 8225425.217429408, 8225768.75, 8225874.685561109, 8226280.941556287, 8228882.166755231, 8231231.792871612, 8236906.39866573, 8241926.5625, 8244307.692008391, 8250771.9629430035, 8253767.106423941, 8259671.875, 8259826.229515435, 8268099.269750097, 8274057.8125, 8274267.179786015, 8275199.253000462, 8276473.922433494, 8282125.316965017, 8282840.0769881755, 8284997.635359433, 8285615.245964853, 8290241.492236695, 8294457.8125, 8298440.8161342405, 8300464.0625, 8301648.110810699, 8301691.950489896, 8301777.59529091, 8301812.737223785, 8302499.039284276, 8303800.5937156975, 8306109.700721014, 8311674.6975873755, 8312718.343033584, 8314108.871899469, 8317136.126722411, 8317249.2042920105, 8317879.52290509, 8320089.827228277, 8320818.400694769, 8321399.194603084, 8322188.347892032, 8322276.128447286, 8322317.1875, 8322321.403903606, 8322520.4053703435, 8322672.934126987, 8324065.625, 8324149.108493481, 8328136.5354719935, 8329493.75, 8329697.3815023275, 8329711.228003474, 8329917.926376163, 8330851.561816094, 8330885.8626874, 8331135.9375, 8334007.399050553, 8334848.4375, 8335087.5, 8340142.79700468, 8343779.637300828, 8344802.392539486, 8347065.625, 8349568.956894117, 8349757.588273181, 8349906.561357989, 8351155.888338482, 8351710.9375, 8353003.747922937, 8353778.932554595, 8354031.981028424, 8354213.76624877, 8354401.566624859, 8354565.869270965, 8361106.6278117625, 8364850.0, 8373682.91612313, 8374248.4375, 8374356.25, 8374851.355179432, 8377429.0937165115, 8378352.092860953, 8388785.373623718, 8389041.400412451, 8395040.699201696, 8396730.59998786, 8401602.342891254, 8409149.391342573, 8409895.209445052, 8409928.952624256, 8410647.066560905, 8410653.009428466, 8412478.125, 8415296.875, 8418840.625, 8421504.24077514, 8428423.318277637, 8430517.131355911, 8430926.962893263, 8433206.906808963, 8438654.117341755, 8438785.446423184, 8439306.25, 8439877.143770479, 8440398.4375, 8440758.437024513, 8442894.811862906, 8442939.679299433, 8444307.8125, 8445204.6875, 8445814.0625, 8446155.474266669, 8446359.223273516, 8446751.068154322, 8447097.918888869, 8447621.35481486, 8447832.8125, 8448512.528857712, 8454661.196600128, 8461513.150114857, 8463594.996683083, 8474546.186983746, 8474718.602561692, 8475187.5, 8496657.037827803, 8500278.446407365, 8500337.202630758, 8500955.632373719, 8506889.525409251, 8514760.122479493, 8524871.875, 8524914.0625, 8525820.426437194, 8531685.0284564, 8537029.6875, 8538663.61121861, 8541585.9375, 8553158.545817832, 8555489.724912547, 8555798.4375, 8559420.3125, 8560140.097701041, 8560974.762844468, 8566292.999731522, 8571509.816333063, 8571703.849477766, 8579048.619675646, 8596101.27381434, 8597055.85628354, 8597495.955802301, 8598174.189481897, 8599118.75, 8600309.375, 8600440.625, 8601104.220627613, 8603385.922868295, 8607427.187627483, 8607692.1875, 8607890.262828248, 8610273.4375, 8610939.913260328, 8612060.9375, 8612279.6875, 8651050.0, 8651357.53282509, 8651402.737226458, 8652613.523136418, 8653032.8125, 8653373.387028199, 8655273.794027291, 8656651.5625, 8664026.5625, 8664902.96607905, 8665638.618448913, 8669449.545796933, 8672996.875, 8675162.545161255, 8685135.9375, 8687871.875, 8688893.75, 8695863.945111318, 8696266.965282043, 8697848.4375, 8697960.267028602, 8700002.641060084, 8712035.9375, 8717325.0, 8719378.125, 8721361.74170927, 8722233.624333445, 8722248.674582448, 8754803.775739932, 8762000.0, 8763090.625, 8763473.4375, 8763653.125, 8768284.364551589, 8768293.557626123, 8768779.082649484, 8782426.261046592, 8791636.38818347, 8792387.27563488, 8795685.9375, 8795737.5, 8798209.375, 8799773.567358924, 8801467.236869356, 8805773.639510166, 8816326.628912767, 8816914.0625, 8827849.264095694, 8846440.625, 8854959.375, 8855887.5, 8856104.64876311, 8857603.125, 8857795.109416844, 8857901.110749893, 8857947.61738237, 8858245.569335515, 8858442.1875, 8860646.783394877, 8861982.8125, 8865227.93830548, 8867407.780265097, 8867923.4375, 8869375.549222145, 8869431.017137324, 8869456.765837474, 8869640.459162423, 8872694.635590745, 8874262.992040679, 8881979.6875, 8884022.706503542, 8907085.866033478, 8916571.875, 8920439.0625, 8923724.481193395, 8924278.084841108, 8924311.74862176, 8924546.875, 8924813.044382386, 8924832.007974047, 8931518.180382434, 8931805.724116236, 8932049.123652646, 8932060.331035955, 8933518.57415418, 8934442.5505158, 8934774.824263703, 8935121.660538785, 8936093.232160874, 8957334.219331985, 8958769.360101044, 8969342.7649358, 8970577.43730268, 8975171.875, 8978595.938435057, 8981623.714309879, 8982769.466488682, 8991997.0504465, 8992250.0, 8995489.084939735, 9003963.329196587, 9003964.865928747, 9004127.1157608, 9004261.838518173, 9004750.0, 9005346.747340959, 9005786.24987323, 9008358.342223026, 9013405.368985163, 9013890.777417371, 9015000.74572622, 9016067.1875, 9016085.316701248, 9016610.229141336, 9023279.03223798, 9024274.633985667, 9032145.296790881, 9037643.75, 9046116.733343579, 9061368.73170122, 9064854.486888625, 9080744.501564454, 9080751.5625, 9081535.099550404, 9081868.75, 9096899.67269977, 9109320.3125, 9109327.022882449, 9113063.216975942, 9114328.68193081, 9116594.10868636, 9116664.13550674, 9119142.078524612, 9120135.592999354, 9121288.117248222, 9121837.84568798, 9122414.192182472, 9123551.5625, 9144197.506015552, 9145495.276832271, 9148003.416721389, 9151308.327223014, 9152234.117328914, 9161895.3125, 9171046.634717908, 9175316.605965946, 9180212.083420897, 9180216.67230303, 9181182.730691671, 9181972.33288074, 9182566.8442925, 9182904.6875, 9183671.709541494, 9183710.356434163, 9192456.784626776, 9192689.0625, 9206636.42098191, 9206883.977757854, 9206909.375, 9208126.661516748, 9214674.978196297, 9225945.3125, 9230235.80802665, 9239619.96409981, 9241506.25, 9242800.488250501, 9243848.4375, 9244574.921808444, 9250334.20454103, 9262816.813093916, 9267278.125, 9268146.448453248, 9271600.0, 9272993.69571641, 9273646.397940092, 9276801.376084805, 9278623.230796153, 9279101.207496192, 9282386.991381858, 9286771.875, 9287591.908134075, 9288044.159797512, 9290070.147084266, 9302474.668974338, 9304040.813233415, 9306349.170732098, 9307489.0625, 9309777.822640892, 9310684.11508773, 9314902.820410132, 9315414.0625, 9315435.136051055, 9319429.42254451, 9325245.444809189, 9326893.775642894, 9326948.494984556, 9327423.228723032, 9327838.069495443, 9327901.308676898, 9329284.11259686, 9330526.38426531, 9334163.840660963, 9337671.875, 9339535.512570295, 9339537.402358843, 9344471.625454184, 9346109.760417363, 9349148.4375, 9349486.91527771, 9355201.806075957, 9356050.0, 9357339.0625, 9357726.5625, 9358328.125, 9358794.332723008, 9358930.720141089, 9359330.307962196, 9362228.919237925, 9363649.119102601, 9364018.78230115, 9365884.375, 9366154.75792605, 9368840.625, 9371485.9375, 9376434.555761408, 9376546.24557289, 9382566.517643983, 9387348.24194711, 9389113.266540479, 9389198.4375, 9389770.661257757, 9389840.293782605, 9408981.285289513, 9409242.1875, 9412044.599428983, 9416776.753711177, 9421225.551346514, 9423737.385636186, 9427246.785808342, 9429698.4375, 9433945.811088115, 9442891.52980882, 9443706.49726159, 9445685.23936991, 9449070.3125, 9452012.5, 9453094.062283963, 9453234.830745278, 9453456.974325165, 9453982.77411382, 9454091.329468125, 9456432.8125, 9459531.04531601, 9459734.375, 9461264.402483908, 9461821.875, 9462421.875, 9464146.875, 9469790.625, 9471335.9375, 9476726.5625, 9482795.92833124, 9492673.8060298, 9493276.152178535, 9495537.458202384, 9497550.836538594, 9498559.375, 9500354.173545793, 9501929.6875, 9502629.30478167, 9503321.488102078, 9509366.468386238, 9512873.191156324, 9519595.3125, 9522488.731032968, 9526756.25, 9535156.287788568, 9543245.230001397, 9545921.875, 9551294.904979136, 9551305.996159418, 9551439.03834339, 9556279.076306248, 9559599.930427639, 9564385.573595662, 9568293.245439054, 9573475.0, 9585714.23984349, 9598290.416089285, 9603860.9375, 9603966.517922174, 9604542.16882231, 9604596.875, 9604614.0625, 9604737.95695036, 9606246.70114054, 9609012.383219866, 9609237.5, 9613848.4375, 9614425.700844085, 9616170.862653632, 9616554.752507044, 9616580.738159742, 9617174.509611476, 9625601.303751647, 9630556.25, 9630679.561864017, 9630787.83986574, 9636259.47429568, 9645053.125, 9645978.125, 9668734.375, 9676306.25, 9677249.006523386, 9684374.758061739, 9684594.155464785, 9686227.51198098, 9687119.954423219, 9688396.875, 9690015.520000445, 9691187.5, 9693285.48757209, 9700122.946183927, 9700872.317667825, 9701065.625, 9701514.92265867, 9701694.227700563, 9702352.417249054, 9704968.75, 9707151.772826705, 9707152.562196484, 9712006.93944709, 9718452.519183299, 9720038.259991774, 9726555.921840232, 9727726.386251727, 9742531.25, 9748037.5, 9749377.912038524, 9749885.9375, 9751170.851274243, 9751860.648075374, 9753402.829709362, 9758051.5625, 9762913.903965855, 9766218.405969167, 9767087.170261433, 9775801.5625, 9776028.125, 9776365.625, 9777847.873006387, 9778443.360188792, 9778481.36914895, 9783817.179621113, 9783987.438585998, 9790466.771038588, 9791062.5, 9791275.265592989, 9791721.030238979, 9796124.986533804, 9796687.027742341, 9799859.134241177, 9799896.875, 9805210.491170542, 9810829.6875, 9816039.531900033, 9818065.273575041, 9818340.271057438, 9819505.743146863, 9819743.353147283, 9819780.768041017, 9821002.688363222, 9826206.080995549, 9826325.529838046, 9826725.79244962, 9826993.5341585, 9827997.335664658, 9828639.490343742, 9831745.468915975, 9835776.5625, 9839669.680560226, 9839682.260335477, 9841015.532833397, 9843470.794419663, 9845025.0, 9845154.6875, 9846371.875, 9847506.025108129, 9847556.25, 9847707.73794924, 9852159.375, 9852594.788845498, 9855943.75, 9856242.302538157, 9861040.625, 9862062.410390522, 9864684.147412062, 9864691.89254827, 9866411.506612252, 9868331.207522513, 9872473.263981828, 9873745.722703623, 9873762.281483192, 9874114.0625, 9886166.8191968, 9887827.072916532, 9893740.685013307, 9894439.0625, 9897172.021800369, 9901673.116227381, 9906015.983476741, 9906396.48895907, 9906619.544605253, 9906637.5, 9912142.1875, 9912971.931372173, 9913595.3125, 9917154.81026398, 9917353.028485248, 9917404.271354496, 9918560.9375, 9918883.793603564, 9919549.768122453, 9923935.102280637, 9927108.993624901, 9928252.10823274, 9930447.313466327, 9931160.9375, 9937359.461146224, 9938174.624220945, 9940338.830670727, 9942982.858441511, 9943737.5, 9945581.945744215, 9946420.785674572, 9948566.066037804, 9950074.724330267, 9954690.625, 9954789.104281267, 9955420.068000084, 9955470.751346633, 9956035.88757427, 9956511.252072068, 9956737.224792717, 9957498.4375, 9958668.899250507, 9959548.117925748, 9960192.79806804, 9960410.47191965, 9961483.93842286, 9961585.222243782, 9961638.664136825, 9961856.25, 9963534.62560039, 9967697.930946808, 9968595.844123065, 9971741.63166769, 9978190.951729512, 9978197.478799207, 9981753.125, 9987132.8125, 9994208.024806697, 9994246.875, 9999282.016819153, 10003453.125, 10006258.535158701, 10010031.081474738, 10010651.5625, 10010768.724157378, 10013708.569693325, 10018443.72380754, 10018861.162265282, 10027188.495804416, 10028123.4375, 10028725.0, 10030460.339066802, 10034534.375, 10034572.554779049, 10034643.767186247, 10035014.0625, 10039855.826593548, 10048616.453158228, 10050167.290314479, 10053206.25, 10053846.875, 10055233.437438842, 10056503.854955714, 10057216.645015065, 10057606.326426012, 10059804.095891766, 10061045.26627792, 10062677.643941222, 10062689.0625, 10067018.75, 10070458.743368667, 10082087.5, 10085284.375, 10088855.964059383, 10104650.337916622, 10104785.9375, 10106843.656997964, 10109151.08213244, 10110659.324858388, 10110970.3125, 10113346.088734558, 10115263.952772852, 10115939.11933806, 10121450.817787983, 10122449.857607557, 10123061.082890384, 10124260.731777275, 10124577.806959493, 10124585.541376485, 10124979.09657361, 10125235.9375, 10129060.594137331, 10129061.512743196, 10129062.371995768, 10130037.270791074, 10132474.432696633, 10136794.893300546, 10143140.625, 10147664.735785585, 10147867.096826607, 10148922.417334776, 10150128.125, 10150611.82237652, 10158403.125, 10158962.494704155, 10158985.84728708, 10159792.610414783, 10160345.3125, 10161577.630828798, 10175636.145618785, 10177440.526347954, 10177454.048688084, 10177471.875, 10177879.523003254, 10179909.375, 10183582.8125, 10186998.363969337, 10188388.951877968, 10188496.447378717, 10189291.016779264, 10194731.55449583, 10194987.349227095, 10197511.331396237, 10199145.157264218, 10200146.875, 10201851.781231897, 10202459.722020073, 10204915.625, 10204925.13734424, 10205098.4375, 10205589.471994588, 10205626.156609768, 10205884.375, 10206301.448746992, 10206937.5, 10207389.927723015, 10215885.350303564, 10216921.351003278, 10221097.154319528, 10222878.125, 10223507.8125, 10238626.5625, 10241279.6875, 10275157.250761418, 10275167.1875, 10275464.614025775, 10276169.786242215, 10276559.198932096, 10278489.35725733, 10278762.5, 10282023.4375, 10282526.72642465, 10282818.887844406, 10282924.899062991, 10288059.015413167, 10297725.0, 10298482.77709336, 10299490.625, 10307230.882321035, 10310985.157865116, 10316714.0625, 10317512.315346621, 10320021.79619495, 10322152.914139764, 10325481.717605492, 10329175.42134471, 10333085.575542143, 10335248.4375, 10335840.577302864, 10336444.955473881, 10338669.274682034, 10339323.725052629, 10341289.783324102, 10353628.125, 10355386.781428752, 10359901.5625, 10360354.212514808, 10365158.986914853, 10365465.625, 10366742.1875, 10367808.80928082, 10370464.58064645, 10373310.152022338, 10373984.37404675, ...], [10.587390510352687, 9.442856438858403, 41.67064424420349, 134.29622831455902, 40.274975646331896, 14.495717931870077, 63.71371714062983, 7.455408321621226, 15.87182017675742, 135.79890726351653, 6.596801385177198, 5.271670672891913, 25.596352740526836, 71.54908076351086, 48.62052980370672, 5.233660715922167, 8.003008087191978, 73.24870685794164, 53.508596851199904, 9.46168952441026, 10.7924975132079, 26.174579550027595, 60.14869159514334, 13.500727482521164, 6.277807960109844, 41.951047289009324, 34.41628164240822, 65.98397641557989, 35.61808434510463, 37.08874735083435, 79.20733769627093, 26.896710417047267, 73.69145626089251, 7.7236872868315665, 54.69828030113277, 6.904693616497136, 48.99085405346861, 42.9169175527719, 13.186184023541678, 65.71789344894712, 47.43367644508138, 7.4610912187731735, 7.535599106921889, 147.30949766750422, 93.45052747231804, 37.598048576080934, 22.549412016714218, 44.66083906206718, 91.16560585926703, 13.340248406474414, 18.527591319812128, 6.834355570269646, 8.508278248044045, 21.53167186323565, 286.5919312084503, 46.82362421707527, 29.6312234953215, 22.41393279141512, 11.43023822092194, 23.663494711914055, 22.315186188178536, 5.368024804234461, 24.707695566970237, 106.67210035334494, 55.528099222194896, 5.502891903271512, 67.41548942888662, 102.57819084600379, 21.01704441595001, 5.0302577156538595, 49.65099159541408, 74.57030923306087, 24.988655219215534, 85.32953386661244, 21.019528846003062, 48.26216684916559, 45.595862930762976, 17.940731636406007, 23.98318065088617, 22.0477003426796, 18.80248794380194, 81.3648322936582, 5.9421320015456995, 28.12035541149171, 11.6283884091499, 18.626538578325317, 16.740849495877264, 31.934282397308273, 5.689808280689193, 18.143054944072468, 11.015995034054319, 9.015699832313855, 18.460515718862382, 82.10704790983223, 7.378027215815283, 94.23704751468804, 24.386162442770893, 28.80423195255299, 75.83308440663984, 5.5840074752273265, 17.960792659005534, 6.564150640514951, 25.671525626954875, 40.11991635166444, 46.59247412019691, 56.92743081584714, 15.064986677212334, 25.668521691105653, 39.18008055211211, 9.754760045585442, 32.68423743632797, 9.880687110903398, 30.144405082984008, 109.52046613450932, 73.46850710319731, 28.175749647112152, 26.80283909857209, 103.86961407128982, 10.904702055554743, 72.42582652800273, 55.11977031914008, 9.861784627681077, 15.423405502362698, 12.238703534803529, 73.70763923971806, 54.70506883374245, 10.416370160045382, 76.25502085333846, 16.54619276671941, 7.679674415324865, 30.425043650801662, 44.02262738208796, 91.73117032232932, 11.94043451800575, 17.472428309029276, 55.446896319553424, 42.75983278368277, 58.7541454419361, 65.90722213179878, 40.21885668935268, 99.9945424387984, 12.4833521310774, 52.8672229908417, 74.43315713132377, 6.235902668474318, 63.373926236620136, 43.06575654183014, 40.20223402512619, 44.4604008924563, 8.092985958436683, 56.78337045140303, 12.728636449298167, 15.288266407955275, 12.904998732894315, 164.74002250479407, 12.805055067627297, 21.892047957841527, 31.14117199693028, 10.84588015163283, 14.236984310234089, 86.80949236709645, 30.14063660298739, 52.5274344233823, 19.126647932624312, 22.60993096892459, 20.30021761433968, 5.744538844003565, 133.3910995593269, 54.936420078758225, 6.5549522904202595, 8.195895709976385, 42.47749695111064, 21.352214786767917, 12.114322103170823, 16.274201204700194, 10.96728308908861, 24.664266259828217, 16.04818856752183, 8.418021141496249, 56.15613403031251, 13.230609194587993, 30.291618905654698, 9.348811177221506, 7.533338639894809, 60.57848119211725, 15.290080345355088, 9.82827511342378, 58.31550233937746, 22.654465338714253, 20.934670465608285, 78.8518875669208, 74.11935561203566, 16.19320831518454, 41.1111521495329, 33.695147739893606, 22.452496352845706, 28.612246406443845, 5.883657462456687, 15.454051792962543, 21.38303421312042, 24.242487885189057, 8.820686971409305, 8.08431378325899, 7.84988067125739, 40.81820022936226, 14.815406042567467, 22.54384700514917, 78.62704563910177, 6.428566725027222, 50.998778017002294, 36.38282516666409, 24.759157489060755, 32.85905086228179, 15.039133722054848, 74.8631513756501, 124.26887685825776, 25.50417647415472, 15.296671663580604, 7.026764325419394, 18.77464320314949, 12.32458227663113, 16.69703289201879, 46.08771763992582, 5.732453987508774, 117.9648916189141, 28.532707851834992, 11.47627089797048, 7.683817934141929, 38.75825891890952, 23.568040494041842, 5.195634287154031, 74.92235157439809, 28.33981962331473, 15.540139017782854, 43.744966199176744, 55.55333429360367, 64.51338323227739, 27.017776349792896, 73.10422473288902, 84.94344272798114, 12.736781069987659, 47.22018508886915, 85.56487323568524, 80.55385571534171, 6.864341895840006, 11.662130449661726, 38.80977656640058, 109.23508062470651, 59.49040233807436, 12.82129274442874, 57.89283533706182, 35.94643606927325, 110.8577983864279, 7.489204180555994, 16.16812636780532, 31.8629798261124, 19.221073024152773, 17.868232635742824, 17.818347048274457, 9.622890708758032, 62.97516617103201, 104.13282969671387, 6.411015477125976, 15.542252820601842, 27.292450715210183, 86.4045059065498, 18.96105464879231, 32.3286660508056, 18.905992559307183, 12.097390845150688, 26.79809058844163, 38.559775247557425, 10.463382623553583, 6.782190135643036, 79.01168992526384, 39.10436680402855, 74.7435885255264, 24.843238812360916, 72.03617162561385, 109.31341393635927, 21.93749432010898, 18.776039697273166, 8.286215698242833, 14.663825199230264, 99.42412494269911, 76.07443924166505, 125.8238767963455, 32.88118163011749, 29.342693892088462, 14.75356455126614, 31.204482893953802, 80.13649471298373, 85.59454043495074, 45.30242711236056, 58.50909431940708, 22.99380990097191, 40.84381314607984, 6.155365211616594, 10.122362392743689, 18.720798710392152, 10.694204964525838, 205.70376970352163, 37.161913922447425, 16.278515344074442, 74.08080844771906, 6.7843719679392755, 29.241419667939223, 77.5771523576495, 45.87108590487447, 35.94962744920163, 8.588475829457916, 13.154443383959315, 62.71231116302325, 70.50991307445187, 42.87659391892075, 26.44337325534547, 41.07446511315322, 7.566384938863049, 12.725732993298143, 15.725635257221304, 33.88133166145208, 44.11235296707767, 66.74538894349385, 57.52071165986152, 13.232045482399275, 14.505761021663451, 73.54014083331847, 11.817074438138844, 26.31280899850353, 32.18192289146397, 6.669273287149287, 46.673266971313, 101.42472795262883, 47.44146450292165, 18.010836044978376, 5.8969614112561075, 17.962056392182937, 61.65358002178894, 67.03372452664539, 37.67160620641197, 22.389667615757347, 46.59085554338744, 34.14929644655724, 27.49570903966354, 184.9238511489856, 57.274746141482105, 5.34291150380333, 38.39899786739216, 18.174949790898467, 23.550783364757528, 64.35604274861926, 25.91694379854876, 56.92782335963035, 10.100067693877039, 16.32655801766012, 94.10764878229608, 6.646163600186556, 24.929087420673767, 18.837088956535364, 76.13719061595042, 120.74131360419156, 15.394327330884558, 18.19667070882294, 51.45282267542778, 38.374512581799785, 58.484687058819304, 12.506667154938702, 55.12643367864369, 34.90521963294005, 40.10625171493664, 57.40430729678104, 23.578971759582636, 13.081535683955988, 11.895530810484324, 16.053132504529966, 17.24095865774804, 25.552502052042023, 22.623170248692592, 18.13087657972388, 26.019046608642356, 45.93144046350763, 51.55416913727343, 54.62183230769421, 6.673746134453366, 11.10491326459822, 18.01465816096342, 29.256665436623006, 40.25409544687903, 32.72489022148066, 43.31879897106837, 57.32141664609538, 54.90020157382247, 53.245538091166196, 24.01388549555786, 33.07269455053612, 18.218560565640512, 87.7239903877969, 7.585084332955995, 8.484564577094574, 40.04201446491788, 64.14124207974157, 27.40426867631169, 6.419664634548223, 44.48888779954507, 29.798999613553374, 11.199038174108342, 31.33431933479331, 74.27629107139175, 62.84184471155315, 101.18115838636247, 34.62544056533217, 67.78504091809508, 19.945911665087444, 63.46225541509555, 31.295672186001756, 32.859146625530734, 68.14271964066982, 8.763166319739186, 5.224610419413841, 14.578646823985354, 11.335567697993929, 94.45317547375255, 143.27872241719317, 52.55695364257199, 33.41342827990636, 11.111414442720742, 14.25568802133152, 110.48475206208666, 28.68522707357438, 16.991328715046684, 5.522289583770204, 38.09206519986657, 44.308356666355216, 72.78612515963462, 23.22377836518416, 7.6211918709495, 15.771756285952971, 15.200833605105698, 29.70651505898281, 8.778083627088892, 63.060292211509434, 44.36532915002052, 159.14047461795724, 26.12086138550361, 107.41446082149545, 118.45200202962818, 65.9622102657344, 15.258171812926086, 40.77062300244702, 40.73093262642725, 26.835682121342884, 94.95293997559874, 25.314649970251665, 62.10005316291456, 53.715756074299335, 17.54973163439461, 5.159973612003976, 5.078398242604915, 84.08722440819258, 41.21991613789096, 107.25618885563978, 46.37744708105149, 19.461633000351085, 128.23563998881787, 89.6605920300235, 57.6873328234323, 70.7744353467106, 42.8888759245176, 25.195252425845926, 32.073526033462336, 21.411357851199938, 27.468673933058334, 60.62515231992562, 21.2387241853463, 27.394576470408026, 28.594492400033907, 124.96649039709658, 129.33282185213454, 6.245247771126867, 56.972555650940606, 16.053806362260506, 14.379612735911515, 6.891743918533279, 232.29767650637555, 74.62062427350551, 49.506078381448475, 67.51262849353475, 31.15845558960553, 69.60257549089872, 20.3950670656006, 37.501294146398585, 7.127362900823444, 12.72948499261962, 19.247055518373745, 71.09192460532107, 7.380316516034024, 51.42522281689131, 14.476278322582642, 7.206059608226881, 26.777911125286877, 18.38158562760334, 6.104094007022882, 10.053055558699342, 104.38416776337039, 6.9672952263456835, 12.789461953163979, 12.920025367442824, 49.06973747172011, 48.01181242799397, 31.370944743604465, 8.060176614434, 14.87221874082473, 14.228295960586275, 6.9234374427909495, 29.97593541839132, 6.1668326481724804, 34.84916562152741, 23.408172293587537, 91.75926279663398, 11.932600518211455, 13.776843397797098, 7.8179063877976045, 7.219043325437262, 11.243771255466438, 7.093096989369204, 113.14198825968052, 8.642389859153624, 62.597116918754075, 28.457987624346053, 41.17837469617758, 12.281608053420833, 27.83807517671484, 9.59088388710556, 28.82512939101258, 52.52512368200899, 81.38384530471285, 24.544752859157754, 112.47946414556264, 39.834823561237535, 21.342830152737214, 105.25295088935943, 7.777688827906936, 8.113055993495994, 75.52940982809261, 84.3166510236769, 6.652792879242363, 24.913548165578867, 74.26306464776881, 44.62066736892361, 78.4299476829146, 56.04525918453287, 6.783436817079567, 28.10048347202043, 72.58612344580105, 26.20426213381751, 7.481907280453957, 73.89466368778253, 17.394831178848033, 82.82933847827876, 27.06817769882673, 19.966156807896688, 219.25052367952085, 47.83521180779671, 13.531822053944309, 115.3118217851317, 39.8215151314334, 26.85379932071502, 48.04167180513899, 111.98147276110078, 8.107362512274868, 16.62990236881881, 59.698792608228594, 63.62843310573639, 16.773250011643015, 10.87863393066843, 7.487744050946207, 34.894261483198505, 12.506473207746165, 76.1071775591718, 10.685848859685436, 10.744378074772182, 93.80187740861483, 90.05393806307751, 5.571193099070601, 35.5784320760434, 9.445841159720231, 94.70295081831063, 19.2515335455866, 8.17917440024613, 125.0452609941935, 5.064309547981843, 63.03768658576694, 35.00987420071576, 24.803266583451876, 56.96577668560146, 57.23019835712101, 6.744168580962304, 28.34970261273002, 11.788780163663017, 56.912299833868325, 52.444932100861976, 16.488656502401284, 50.4278816691394, 55.598425844199866, 37.876544957152404, 86.29817493412824, 7.283547131191111, 48.6578836524986, 17.985141272144528, 7.347152128213207, 6.599524056202433, 72.1645092895362, 67.67854382148613, 7.140088405516168, 76.08804575181108, 36.18936968660056, 15.678357681672006, 79.3745361158737, 101.39631183853771, 89.32959946403429, 8.738290406823404, 39.61062433909668, 10.958336907068439, 6.226239156212072, 45.44229035860546, 88.5306058483348, 12.778066025503797, 8.390349306491538, 39.885162407497795, 37.41587201264416, 26.87716286833946, 41.24400223408941, 93.2667553331764, 20.052162339475373, 69.12617417224463, 44.68505482437534, 65.60031869304828, 32.16178916950402, 16.282271804545996, 27.896656432566946, 18.673947451423086, 6.262360701868863, 27.65273256104291, 118.42012328258164, 32.37415176193026, 34.054435075882914, 11.704236575875077, 75.41020968626718, 54.91504414617228, 28.6974517641091, 119.16397721154284, 121.46660097572628, 60.40024170112305, 17.955967308302206, 12.60888992156684, 22.436903547040792, 7.5881898336058295, 32.643565822797285, 96.58386101475412, 5.776906207245235, 81.49837785033986, 7.470441797866417, 8.092054436987508, 19.554324777678676, 6.062850881238508, 46.71745433323052, 5.789854981322951, 44.68267705797632, 25.078969077825594, 15.724728920141086, 111.63933374103199, 8.082222126346847, 5.600153742829367, 5.705222339257945, 102.504184506056, 45.03968213676548, 20.940001635045007, 8.938340662687182, 69.50339882083212, 15.663476522707176, 45.70457520138496, 55.92145405564533, 36.22424511997507, 55.81548990769156, 55.025453906683325, 57.811393991192006, 17.02543302466568, 25.507840541463647, 63.40429843347716, 35.28876526789483, 28.84783773226062, 18.512210355371685, 9.844360803515, 23.487225268967705, 8.033264762950406, 21.589518663673584, 24.29237500130904, 54.144217829796204, 36.08793792654766, 11.704019184917382, 16.16381299294835, 78.11794818825, 28.876845853564284, 36.61912261175091, 56.567460666579976, 8.612298433114741, 9.134879401564174, 8.513300396821982, 5.5810073697979465, 13.732306153045625, 30.58923256950771, 5.338336559619044, 53.574499857685254, 8.062164809137043, 108.7806699570377, 24.681385145250697, 45.55874507000776, 19.687109680276286, 9.770862891335684, 25.37988123487431, 86.66776348769133, 5.957933749543234, 20.888673066469597, 8.688240771775616, 13.04528996113302, 12.567459505089381, 10.650792345694462, 10.862958813261965, 37.095336052108266, 38.719559921063755, 10.810387522719758, 41.414525659645584, 6.575000988462774, 23.886773933495625, 23.8110842083318, 35.48025185939645, 66.28321927286562, 23.204143681685654, 32.736186444814145, 46.71970650689998, 34.77531296563486, 52.24243759146665, 36.447500600039014, 55.51075501742165, 6.7875291660205646, 41.619278075771724, 11.033050714535058, 70.84176815378848, 35.81248199715808, 35.43898510574576, 92.32181522856163, 36.12286906959813, 34.66360191642402, 121.2267158606927, 74.84441336189653, 7.008868019846362, 29.58932609520149, 25.04080654489206, 23.115357206793597, 13.744691616256103, 100.06852547888677, 59.51673447900515, 10.449594071718023, 76.63749343421074, 10.873432580442067, 29.7888644399193, 19.164788220745862, 11.199799038687495, 17.045733063424965, 19.10274236794985, 15.573205681485177, 62.71529887172751, 12.775655194273554, 32.463081761448535, 26.82605370614081, 6.565386527464013, 37.79169180251458, 54.29310954307557, 90.89626657650393, 10.793485700747297, 73.89359204206912, 9.269151905859134, 53.14203625682497, 33.37350755024241, 110.16941204710574, 9.430606273079272, 56.457724189566534, 72.19689482207284, 15.551767943256166, 50.12712731657316, 7.2795461235882435, 9.295742483865551, 56.775543791493334, 16.77537917154643, 5.452465071779839, 31.86857514793375, 22.915785693989655, 11.213879320667225, 15.447445281221889, 36.9677818879313, 5.540247898875703, 144.76597686085273, 16.509926902331156, 31.746913312861274, 47.18942480802544, 75.85604702799031, 105.44629129407446, 7.623754584632416, 72.86903773615481, 8.352581720998948, 92.50697692385393, 45.65761440095356, 31.038318615151866, 25.722622489257073, 24.661743599697342, 33.83302823759197, 135.18540400983957, 24.66230843498031, 11.88998350184018, 33.82882398109848, 9.405322622351283, 59.21924798173201, 91.11246517394767, 28.486221290287844, 56.57253755126662, 12.422541145919737, 17.11458485121444, 57.459560186998544, 30.626919473310842, 60.343931020796006, 7.618419481414621, 7.058629817584997, 9.732250889280134, 27.574186626294015, 20.840661993375996, 68.61179649569434, 44.333606820537845, 51.18899761058999, 145.2287077064048, 12.23810334441873, 13.42131233484875, 22.150001197058234, 19.584660577421815, 5.156186646951924, 72.16393234616012, 16.914944805776315, 33.67716042447803, 5.559450433835959, 24.07360340689833, 7.725845271937265, 17.880748013780178, 49.45367415289802, 38.73657694100439, 127.27776180468243, 41.68296720154695, 10.07651242550622, 97.75493037105203, 10.027621302022983, 36.43270547484728, 35.237454534027265, 42.47769715115363, 30.826408032612523, 21.614404070216608, 8.40912434513522, 31.974657817939086, 42.871853583103444, 30.294202754483212, 13.531727832954987, 49.757506903574786, 38.6602440200578, 7.609465505495722, 171.58304523003034, 57.98699674386991, 45.298986385407076, 20.845541906180244, 39.501359384988426, 67.75161945386874, 18.013462175125316, 55.375940294487336, 41.4215478133308, 11.249304464228308, 10.313807394134672, 89.58878773311984, 13.378222670257273, 54.29142513225399, 75.42254851350582, 143.26721214844858, 85.52486893971027, 57.52173424327477, 30.339475197179986, 6.310857052450734, 38.14812408765106, 123.65210173894756, 109.37238290639665, 118.98169106047482, 44.78775102233843, 79.30838149074138, 8.229391791336814, 15.16266726363384, 19.35603788866408, 6.464999252027863, 137.8796932835323, 5.602763550215124, 29.112932896025924, 22.59593187000068, 26.716879552194655, 64.53366018729912, 23.21220816831074, 17.705510515449145, 10.933353779300534, 14.134363964049253, 20.846996953648713, 19.512131160089325, 37.74000690398967, 9.973935928098177, 125.85652386833641, 60.62547972885575, 68.36645398696874, 7.375256356539699, 52.036437168020655, 14.92136248684374, 6.745628918699325, 23.589946071051127, 54.783356329334055, 21.551443325109116, 6.520218178408085, 9.249357449218971, 12.961298077726939, 79.4028282729639, 7.078871567964933, 31.73361019195084, 79.6174180314957, 79.23274173436846, 94.69423795770592, 23.60229209269042, 168.05313557039648, 11.63952216700438, 14.396373784331457, 5.974458474330102, 25.79457309510782, 72.19521039530034, 15.84634502049678, 17.022377832075517, 46.745555851556034, 15.492183803073702, 53.59158856119094, 16.77166231707636, 10.547478107309825, 89.3603138186528, 5.699556507815992, 40.05607573619283, 12.81638252018352, 13.093415363217714, 46.72221401030562, 190.12007237423546, 49.56255095589971, 97.60939244721077, 32.74685571220521, 40.9494904338423, 20.89856692743277, 34.217053199919626, 9.845771921623701, 21.235103707934726, 65.13807865088121, 23.165188363437405, 49.90800438540308, 101.98917451225154, 79.79041269671663, 15.494293727620105, 18.30915799900368, 13.727790399775904, 78.44762412784192, 23.014816967853022, 43.911743611213026, 22.92309120791168, 110.15661623622503, 35.50378735536469, 46.25588963614511, 27.057439265456324, 5.798541429966389, 9.760777640376206, 25.28544523724436, 22.9903146395034, 64.66605567242118, 9.29139558138938, 23.04865440321161, 57.881959278328324, 16.163851650569608, 12.938151608924414, 31.027361169768536, 20.29742685616569, 51.35154181734738, 34.291110698872075, 31.17155835421095, 40.00107841114481, 46.5892349012349, 20.861645201929857, 17.368383699417546, 41.71436374849223, 14.937877328054517, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4756654.311943208, 6048792.316433677, 6061412.790282998, 6146579.6875, 6191414.0625, 6325482.690409237, 6384817.1875, 6491899.571901621, 6560807.415856054, 6602857.8125, 6630364.728398033, 6630421.233364431, 6718872.281791585, 6733131.25, 6747931.25, 6758833.959407844, 6759319.734795326, 6760117.972825325, 6761473.4375, 6761945.462666731, 6765024.774408669, 6777098.306192603, 6780797.9029497225, 6816261.080625061, 6816262.583515759, 6831648.220639308, 6845970.018586673, 6871864.042100562, 6872820.024458734, 6873715.625, 6875505.128461759, 6877442.599725017, 6877584.375, 6880701.883683317, 6880875.0, 6885342.855823597, 6885387.5, 6892441.663544883, 6892456.024637586, 6892484.375, 6893056.25, 6911708.964107348, 6914310.746535486, 6959612.018929191, 7027512.5, 7048081.25, 7099563.662248878, 7100539.0625, 7101637.197384127, 7102596.63960057, 7102636.640600132, 7117520.657314517, 7123256.646960612, 7146288.327875178, 7146954.350688602, 7151446.875, 7151471.875, 7157914.060392302, 7159215.810295881, 7163442.594994955, 7167713.454585276, 7179041.367496816, 7189679.458897211, 7210092.1875, 7211568.75, 7215789.986881585, 7217251.5625, 7223243.36162888, 7255978.484233463, 7274041.506875384, 7298659.375, 7300042.1875, 7350149.791102798, 7350151.066790409, 7364923.995270447, 7377264.0625, 7378239.950777562, 7378549.050904896, 7386598.155481522, 7388237.05385514, 7395063.242612281, 7414357.8125, 7414412.531254688, 7439564.9841699125, 7450961.235826795, 7451593.386365338, 7451604.742467492, 7462663.606446607, 7497080.980338162, 7522736.942972027, 7530096.802335, 7532577.726442159, 7544802.25572562, 7550832.108412198, 7567110.268722072, 7573865.625, 7574571.62316827, 7577949.611126043, 7594127.9479186395, 7596079.131490142, 7632527.1860010605, 7634436.41207572, 7636572.62848651, 7638262.490544128, 7638295.3125, 7638495.3125, 7638593.782022858, 7640493.586638672, 7646198.021148845, 7650009.836564138, 7650709.375, 7709334.960254185, 7750376.5625, 7752414.80061387, 7754025.0, 7754057.794616568, 7754060.314509557, 7756131.25, 7757268.602484568, 7760375.947854757, 7762518.75, 7765736.504547122, 7798967.308435774, 7802981.860851664, 7810537.5, 7813637.5, 7819321.366664909, 7837743.75, 7840889.4281762745, 7841709.581504581, 7853671.875, 7854309.583050339, 7854319.256556709, 7854695.776884413, 7854900.31106409, 7855792.1875, 7856404.6875, 7856420.550665352, 7868492.1875, 7872890.625, 7873702.250450648, 7874092.910482254, 7874333.996955139, 7876687.1917552985, 7880830.998214238, 7923056.25, 7923459.375, 7936251.5625, 7957671.875, 7967676.177550314, 7983867.1875, 7985047.703841116, 7986300.088095299, 7993850.901209448, 8000706.482136082, 8001016.485568727, 8012401.101583799, 8014254.6875, 8015282.400722936, 8017599.402409878, 8022170.3125, 8024070.3125, 8025442.1875, 8026232.438884668, 8026273.042614481, 8029310.679548888, 8029641.202712758, 8032031.670555761, 8043660.9375, 8052522.294659796, 8059588.886990729, 8072890.625, 8083021.360759966, 8091747.426138724, 8095472.185614048, 8095824.894882827, 8096984.143302614, 8097592.450414297, 8098058.053057535, 8098295.3125, 8110707.277279412, 8111118.476978018, 8111395.333016129, 8111887.302513954, 8112471.875, 8112503.213541473, 8113705.221962384, 8113981.678336201, 8118294.92154025, 8118296.31713668, 8121980.680723303, 8122071.875, 8123170.606229644, 8128460.9375, 8129040.625, 8131588.653581673, 8132165.4467734825, 8133018.086786188, 8135347.003272148, 8137508.863895161, 8138243.834813456, 8138318.0772104915, 8158026.159375378, 8167810.009060842, 8175692.810172731, 8176103.091517163, 8176775.500612962, 8177189.35875315, 8177248.053715329, 8180305.844327332, 8181010.9375, 8190307.93964388, 8190788.7760996735, 8190795.337879254, 8193468.163629827, 8194576.420415636, 8195202.393714169, 8195275.090161499, 8200084.002116131, 8200902.311248233, 8201034.5198134035, 8202729.833817435, 8206592.1875, 8206923.833822553, 8212061.392950394, 8216707.8125, 8225383.024613769, 8225425.217429408, 8225768.75, 8225874.685561109, 8226280.941556287, 8228882.166755231, 8231231.792871612, 8236906.39866573, 8241926.5625, 8244307.692008391, 8250771.9629430035, 8253767.106423941, 8259671.875, 8259826.229515435, 8268099.269750097, 8274057.8125, 8274267.179786015, 8275199.253000462, 8276473.922433494, 8282125.316965017, 8282840.0769881755, 8284997.635359433, 8285615.245964853, 8290241.492236695, 8294457.8125, 8298440.8161342405, 8300464.0625, 8301648.110810699, 8301691.950489896, 8301777.59529091, 8301812.737223785, 8302499.039284276, 8303800.5937156975, 8306109.700721014, 8311674.6975873755, 8312718.343033584, 8314108.871899469, 8317136.126722411, 8317249.2042920105, 8317879.52290509, 8320089.827228277, 8320818.400694769, 8321399.194603084, 8322188.347892032, 8322276.128447286, 8322317.1875, 8322321.403903606, 8322520.4053703435, 8322672.934126987, 8324065.625, 8324149.108493481, 8328136.5354719935, 8329493.75, 8329697.3815023275, 8329711.228003474, 8329917.926376163, 8330851.561816094, 8330885.8626874, 8331135.9375, 8334007.399050553, 8334848.4375, 8335087.5, 8340142.79700468, 8343779.637300828, 8344802.392539486, 8347065.625, 8349568.956894117, 8349757.588273181, 8349906.561357989, 8351155.888338482, 8351710.9375, 8353003.747922937, 8353778.932554595, 8354031.981028424, 8354213.76624877, 8354401.566624859, 8354565.869270965, 8361106.6278117625, 8364850.0, 8373682.91612313, 8374248.4375, 8374356.25, 8374851.355179432, 8377429.0937165115, 8378352.092860953, 8388785.373623718, 8389041.400412451, 8395040.699201696, 8396730.59998786, 8401602.342891254, 8409149.391342573, 8409895.209445052, 8409928.952624256, 8410647.066560905, 8410653.009428466, 8412478.125, 8415296.875, 8418840.625, 8421504.24077514, 8428423.318277637, 8430517.131355911, 8430926.962893263, 8433206.906808963, 8438654.117341755, 8438785.446423184, 8439306.25, 8439877.143770479, 8440398.4375, 8440758.437024513, 8442894.811862906, 8442939.679299433, 8444307.8125, 8445204.6875, 8445814.0625, 8446155.474266669, 8446359.223273516, 8446751.068154322, 8447097.918888869, 8447621.35481486, 8447832.8125, 8448512.528857712, 8454661.196600128, 8461513.150114857, 8463594.996683083, 8474546.186983746, 8474718.602561692, 8475187.5, 8496657.037827803, 8500278.446407365, 8500337.202630758, 8500955.632373719, 8506889.525409251, 8514760.122479493, 8524871.875, 8524914.0625, 8525820.426437194, 8531685.0284564, 8537029.6875, 8538663.61121861, 8541585.9375, 8553158.545817832, 8555489.724912547, 8555798.4375, 8559420.3125, 8560140.097701041, 8560974.762844468, 8566292.999731522, 8571509.816333063, 8571703.849477766, 8579048.619675646, 8596101.27381434, 8597055.85628354, 8597495.955802301, 8598174.189481897, 8599118.75, 8600309.375, 8600440.625, 8601104.220627613, 8603385.922868295, 8607427.187627483, 8607692.1875, 8607890.262828248, 8610273.4375, 8610939.913260328, 8612060.9375, 8612279.6875, 8651050.0, 8651357.53282509, 8651402.737226458, 8652613.523136418, 8653032.8125, 8653373.387028199, 8655273.794027291, 8656651.5625, 8664026.5625, 8664902.96607905, 8665638.618448913, 8669449.545796933, 8672996.875, 8675162.545161255, 8685135.9375, 8687871.875, 8688893.75, 8695863.945111318, 8696266.965282043, 8697848.4375, 8697960.267028602, 8700002.641060084, 8712035.9375, 8717325.0, 8719378.125, 8721361.74170927, 8722233.624333445, 8722248.674582448, 8754803.775739932, 8762000.0, 8763090.625, 8763473.4375, 8763653.125, 8768284.364551589, 8768293.557626123, 8768779.082649484, 8782426.261046592, 8791636.38818347, 8792387.27563488, 8795685.9375, 8795737.5, 8798209.375, 8799773.567358924, 8801467.236869356, 8805773.639510166, 8816326.628912767, 8816914.0625, 8827849.264095694, 8846440.625, 8854959.375, 8855887.5, 8856104.64876311, 8857603.125, 8857795.109416844, 8857901.110749893, 8857947.61738237, 8858245.569335515, 8858442.1875, 8860646.783394877, 8861982.8125, 8865227.93830548, 8867407.780265097, 8867923.4375, 8869375.549222145, 8869431.017137324, 8869456.765837474, 8869640.459162423, 8872694.635590745, 8874262.992040679, 8881979.6875, 8884022.706503542, 8907085.866033478, 8916571.875, 8920439.0625, 8923724.481193395, 8924278.084841108, 8924311.74862176, 8924546.875, 8924813.044382386, 8924832.007974047, 8931518.180382434, 8931805.724116236, 8932049.123652646, 8932060.331035955, 8933518.57415418, 8934442.5505158, 8934774.824263703, 8935121.660538785, 8936093.232160874, 8957334.219331985, 8958769.360101044, 8969342.7649358, 8970577.43730268, 8975171.875, 8978595.938435057, 8981623.714309879, 8982769.466488682, 8991997.0504465, 8992250.0, 8995489.084939735, 9003963.329196587, 9003964.865928747, 9004127.1157608, 9004261.838518173, 9004750.0, 9005346.747340959, 9005786.24987323, 9008358.342223026, 9013405.368985163, 9013890.777417371, 9015000.74572622, 9016067.1875, 9016085.316701248, 9016610.229141336, 9023279.03223798, 9024274.633985667, 9032145.296790881, 9037643.75, 9046116.733343579, 9061368.73170122, 9064854.486888625, 9080744.501564454, 9080751.5625, 9081535.099550404, 9081868.75, 9096899.67269977, 9109320.3125, 9109327.022882449, 9113063.216975942, 9114328.68193081, 9116594.10868636, 9116664.13550674, 9119142.078524612, 9120135.592999354, 9121288.117248222, 9121837.84568798, 9122414.192182472, 9123551.5625, 9144197.506015552, 9145495.276832271, 9148003.416721389, 9151308.327223014, 9152234.117328914, 9161895.3125, 9171046.634717908, 9175316.605965946, 9180212.083420897, 9180216.67230303, 9181182.730691671, 9181972.33288074, 9182566.8442925, 9182904.6875, 9183671.709541494, 9183710.356434163, 9192456.784626776, 9192689.0625, 9206636.42098191, 9206883.977757854, 9206909.375, 9208126.661516748, 9214674.978196297, 9225945.3125, 9230235.80802665, 9239619.96409981, 9241506.25, 9242800.488250501, 9243848.4375, 9244574.921808444, 9250334.20454103, 9262816.813093916, 9267278.125, 9268146.448453248, 9271600.0, 9272993.69571641, 9273646.397940092, 9276801.376084805, 9278623.230796153, 9279101.207496192, 9282386.991381858, 9286771.875, 9287591.908134075, 9288044.159797512, 9290070.147084266, 9302474.668974338, 9304040.813233415, 9306349.170732098, 9307489.0625, 9309777.822640892, 9310684.11508773, 9314902.820410132, 9315414.0625, 9315435.136051055, 9319429.42254451, 9325245.444809189, 9326893.775642894, 9326948.494984556, 9327423.228723032, 9327838.069495443, 9327901.308676898, 9329284.11259686, 9330526.38426531, 9334163.840660963, 9337671.875, 9339535.512570295, 9339537.402358843, 9344471.625454184, 9346109.760417363, 9349148.4375, 9349486.91527771, 9355201.806075957, 9356050.0, 9357339.0625, 9357726.5625, 9358328.125, 9358794.332723008, 9358930.720141089, 9359330.307962196, 9362228.919237925, 9363649.119102601, 9364018.78230115, 9365884.375, 9366154.75792605, 9368840.625, 9371485.9375, 9376434.555761408, 9376546.24557289, 9382566.517643983, 9387348.24194711, 9389113.266540479, 9389198.4375, 9389770.661257757, 9389840.293782605, 9408981.285289513, 9409242.1875, 9412044.599428983, 9416776.753711177, 9421225.551346514, 9423737.385636186, 9427246.785808342, 9429698.4375, 9433945.811088115, 9442891.52980882, 9443706.49726159, 9445685.23936991, 9449070.3125, 9452012.5, 9453094.062283963, 9453234.830745278, 9453456.974325165, 9453982.77411382, 9454091.329468125, 9456432.8125, 9459531.04531601, 9459734.375, 9461264.402483908, 9461821.875, 9462421.875, 9464146.875, 9469790.625, 9471335.9375, 9476726.5625, 9482795.92833124, 9492673.8060298, 9493276.152178535, 9495537.458202384, 9497550.836538594, 9498559.375, 9500354.173545793, 9501929.6875, 9502629.30478167, 9503321.488102078, 9509366.468386238, 9512873.191156324, 9519595.3125, 9522488.731032968, 9526756.25, 9535156.287788568, 9543245.230001397, 9545921.875, 9551294.904979136, 9551305.996159418, 9551439.03834339, 9556279.076306248, 9559599.930427639, 9564385.573595662, 9568293.245439054, 9573475.0, 9585714.23984349, 9598290.416089285, 9603860.9375, 9603966.517922174, 9604542.16882231, 9604596.875, 9604614.0625, 9604737.95695036, 9606246.70114054, 9609012.383219866, 9609237.5, 9613848.4375, 9614425.700844085, 9616170.862653632, 9616554.752507044, 9616580.738159742, 9617174.509611476, 9625601.303751647, 9630556.25, 9630679.561864017, 9630787.83986574, 9636259.47429568, 9645053.125, 9645978.125, 9668734.375, 9676306.25, 9677249.006523386, 9684374.758061739, 9684594.155464785, 9686227.51198098, 9687119.954423219, 9688396.875, 9690015.520000445, 9691187.5, 9693285.48757209, 9700122.946183927, 9700872.317667825, 9701065.625, 9701514.92265867, 9701694.227700563, 9702352.417249054, 9704968.75, 9707151.772826705, 9707152.562196484, 9712006.93944709, 9718452.519183299, 9720038.259991774, 9726555.921840232, 9727726.386251727, 9742531.25, 9748037.5, 9749377.912038524, 9749885.9375, 9751170.851274243, 9751860.648075374, 9753402.829709362, 9758051.5625, 9762913.903965855, 9766218.405969167, 9767087.170261433, 9775801.5625, 9776028.125, 9776365.625, 9777847.873006387, 9778443.360188792, 9778481.36914895, 9783817.179621113, 9783987.438585998, 9790466.771038588, 9791062.5, 9791275.265592989, 9791721.030238979, 9796124.986533804, 9796687.027742341, 9799859.134241177, 9799896.875, 9805210.491170542, 9810829.6875, 9816039.531900033, 9818065.273575041, 9818340.271057438, 9819505.743146863, 9819743.353147283, 9819780.768041017, 9821002.688363222, 9826206.080995549, 9826325.529838046, 9826725.79244962, 9826993.5341585, 9827997.335664658, 9828639.490343742, 9831745.468915975, 9835776.5625, 9839669.680560226, 9839682.260335477, 9841015.532833397, 9843470.794419663, 9845025.0, 9845154.6875, 9846371.875, 9847506.025108129, 9847556.25, 9847707.73794924, 9852159.375, 9852594.788845498, 9855943.75, 9856242.302538157, 9861040.625, 9862062.410390522, 9864684.147412062, 9864691.89254827, 9866411.506612252, 9868331.207522513, 9872473.263981828, 9873745.722703623, 9873762.281483192, 9874114.0625, 9886166.8191968, 9887827.072916532, 9893740.685013307, 9894439.0625, 9897172.021800369, 9901673.116227381, 9906015.983476741, 9906396.48895907, 9906619.544605253, 9906637.5, 9912142.1875, 9912971.931372173, 9913595.3125, 9917154.81026398, 9917353.028485248, 9917404.271354496, 9918560.9375, 9918883.793603564, 9919549.768122453, 9923935.102280637, 9927108.993624901, 9928252.10823274, 9930447.313466327, 9931160.9375, 9937359.461146224, 9938174.624220945, 9940338.830670727, 9942982.858441511, 9943737.5, 9945581.945744215, 9946420.785674572, 9948566.066037804, 9950074.724330267, 9954690.625, 9954789.104281267, 9955420.068000084, 9955470.751346633, 9956035.88757427, 9956511.252072068, 9956737.224792717, 9957498.4375, 9958668.899250507, 9959548.117925748, 9960192.79806804, 9960410.47191965, 9961483.93842286, 9961585.222243782, 9961638.664136825, 9961856.25, 9963534.62560039, 9967697.930946808, 9968595.844123065, 9971741.63166769, 9978190.951729512, 9978197.478799207, 9981753.125, 9987132.8125, 9994208.024806697, 9994246.875, 9999282.016819153, 10003453.125, 10006258.535158701, 10010031.081474738, 10010651.5625, 10010768.724157378, 10013708.569693325, 10018443.72380754, 10018861.162265282, 10027188.495804416, 10028123.4375, 10028725.0, 10030460.339066802, 10034534.375, 10034572.554779049, 10034643.767186247, 10035014.0625, 10039855.826593548, 10048616.453158228, 10050167.290314479, 10053206.25, 10053846.875, 10055233.437438842, 10056503.854955714, 10057216.645015065, 10057606.326426012, 10059804.095891766, 10061045.26627792, 10062677.643941222, 10062689.0625, 10067018.75, 10070458.743368667, 10082087.5, 10085284.375, 10088855.964059383, 10104650.337916622, 10104785.9375, 10106843.656997964, 10109151.08213244, 10110659.324858388, 10110970.3125, 10113346.088734558, 10115263.952772852, 10115939.11933806, 10121450.817787983, 10122449.857607557, 10123061.082890384, 10124260.731777275, 10124577.806959493, 10124585.541376485, 10124979.09657361, 10125235.9375, 10129060.594137331, 10129061.512743196, 10129062.371995768, 10130037.270791074, 10132474.432696633, 10136794.893300546, 10143140.625, 10147664.735785585, 10147867.096826607, 10148922.417334776, 10150128.125, 10150611.82237652, 10158403.125, 10158962.494704155, 10158985.84728708, 10159792.610414783, 10160345.3125, 10161577.630828798, 10175636.145618785, 10177440.526347954, 10177454.048688084, 10177471.875, 10177879.523003254, 10179909.375, 10183582.8125, 10186998.363969337, 10188388.951877968, 10188496.447378717, 10189291.016779264, 10194731.55449583, 10194987.349227095, 10197511.331396237, 10199145.157264218, 10200146.875, 10201851.781231897, 10202459.722020073, 10204915.625, 10204925.13734424, 10205098.4375, 10205589.471994588, 10205626.156609768, 10205884.375, 10206301.448746992, 10206937.5, 10207389.927723015, 10215885.350303564, 10216921.351003278, 10221097.154319528, 10222878.125, 10223507.8125, 10238626.5625, 10241279.6875, 10275157.250761418, 10275167.1875, 10275464.614025775, 10276169.786242215, 10276559.198932096, 10278489.35725733, 10278762.5, 10282023.4375, 10282526.72642465, 10282818.887844406, 10282924.899062991, 10288059.015413167, 10297725.0, 10298482.77709336, 10299490.625, 10307230.882321035, 10310985.157865116, 10316714.0625, 10317512.315346621, 10320021.79619495, 10322152.914139764, 10325481.717605492, 10329175.42134471, 10333085.575542143, 10335248.4375, 10335840.577302864, 10336444.955473881, 10338669.274682034, 10339323.725052629, 10341289.783324102, 10353628.125, 10355386.781428752, 10359901.5625, 10360354.212514808, 10365158.986914853, 10365465.625, 10366742.1875, 10367808.80928082, 10370464.58064645, 10373310.152022338, 10373984.37404675, ...], [10.587390510352687, 9.442856438858403, 41.67064424420349, 134.29622831455902, 40.274975646331896, 14.495717931870077, 63.71371714062983, 7.455408321621226, 15.87182017675742, 135.79890726351653, 6.596801385177198, 5.271670672891913, 25.596352740526836, 71.54908076351086, 48.62052980370672, 5.233660715922167, 8.003008087191978, 73.24870685794164, 53.508596851199904, 9.46168952441026, 10.7924975132079, 26.174579550027595, 60.14869159514334, 13.500727482521164, 6.277807960109844, 41.951047289009324, 34.41628164240822, 65.98397641557989, 35.61808434510463, 37.08874735083435, 79.20733769627093, 26.896710417047267, 73.69145626089251, 7.7236872868315665, 54.69828030113277, 6.904693616497136, 48.99085405346861, 42.9169175527719, 13.186184023541678, 65.71789344894712, 47.43367644508138, 7.4610912187731735, 7.535599106921889, 147.30949766750422, 93.45052747231804, 37.598048576080934, 22.549412016714218, 44.66083906206718, 91.16560585926703, 13.340248406474414, 18.527591319812128, 6.834355570269646, 8.508278248044045, 21.53167186323565, 286.5919312084503, 46.82362421707527, 29.6312234953215, 22.41393279141512, 11.43023822092194, 23.663494711914055, 22.315186188178536, 5.368024804234461, 24.707695566970237, 106.67210035334494, 55.528099222194896, 5.502891903271512, 67.41548942888662, 102.57819084600379, 21.01704441595001, 5.0302577156538595, 49.65099159541408, 74.57030923306087, 24.988655219215534, 85.32953386661244, 21.019528846003062, 48.26216684916559, 45.595862930762976, 17.940731636406007, 23.98318065088617, 22.0477003426796, 18.80248794380194, 81.3648322936582, 5.9421320015456995, 28.12035541149171, 11.6283884091499, 18.626538578325317, 16.740849495877264, 31.934282397308273, 5.689808280689193, 18.143054944072468, 11.015995034054319, 9.015699832313855, 18.460515718862382, 82.10704790983223, 7.378027215815283, 94.23704751468804, 24.386162442770893, 28.80423195255299, 75.83308440663984, 5.5840074752273265, 17.960792659005534, 6.564150640514951, 25.671525626954875, 40.11991635166444, 46.59247412019691, 56.92743081584714, 15.064986677212334, 25.668521691105653, 39.18008055211211, 9.754760045585442, 32.68423743632797, 9.880687110903398, 30.144405082984008, 109.52046613450932, 73.46850710319731, 28.175749647112152, 26.80283909857209, 103.86961407128982, 10.904702055554743, 72.42582652800273, 55.11977031914008, 9.861784627681077, 15.423405502362698, 12.238703534803529, 73.70763923971806, 54.70506883374245, 10.416370160045382, 76.25502085333846, 16.54619276671941, 7.679674415324865, 30.425043650801662, 44.02262738208796, 91.73117032232932, 11.94043451800575, 17.472428309029276, 55.446896319553424, 42.75983278368277, 58.7541454419361, 65.90722213179878, 40.21885668935268, 99.9945424387984, 12.4833521310774, 52.8672229908417, 74.43315713132377, 6.235902668474318, 63.373926236620136, 43.06575654183014, 40.20223402512619, 44.4604008924563, 8.092985958436683, 56.78337045140303, 12.728636449298167, 15.288266407955275, 12.904998732894315, 164.74002250479407, 12.805055067627297, 21.892047957841527, 31.14117199693028, 10.84588015163283, 14.236984310234089, 86.80949236709645, 30.14063660298739, 52.5274344233823, 19.126647932624312, 22.60993096892459, 20.30021761433968, 5.744538844003565, 133.3910995593269, 54.936420078758225, 6.5549522904202595, 8.195895709976385, 42.47749695111064, 21.352214786767917, 12.114322103170823, 16.274201204700194, 10.96728308908861, 24.664266259828217, 16.04818856752183, 8.418021141496249, 56.15613403031251, 13.230609194587993, 30.291618905654698, 9.348811177221506, 7.533338639894809, 60.57848119211725, 15.290080345355088, 9.82827511342378, 58.31550233937746, 22.654465338714253, 20.934670465608285, 78.8518875669208, 74.11935561203566, 16.19320831518454, 41.1111521495329, 33.695147739893606, 22.452496352845706, 28.612246406443845, 5.883657462456687, 15.454051792962543, 21.38303421312042, 24.242487885189057, 8.820686971409305, 8.08431378325899, 7.84988067125739, 40.81820022936226, 14.815406042567467, 22.54384700514917, 78.62704563910177, 6.428566725027222, 50.998778017002294, 36.38282516666409, 24.759157489060755, 32.85905086228179, 15.039133722054848, 74.8631513756501, 124.26887685825776, 25.50417647415472, 15.296671663580604, 7.026764325419394, 18.77464320314949, 12.32458227663113, 16.69703289201879, 46.08771763992582, 5.732453987508774, 117.9648916189141, 28.532707851834992, 11.47627089797048, 7.683817934141929, 38.75825891890952, 23.568040494041842, 5.195634287154031, 74.92235157439809, 28.33981962331473, 15.540139017782854, 43.744966199176744, 55.55333429360367, 64.51338323227739, 27.017776349792896, 73.10422473288902, 84.94344272798114, 12.736781069987659, 47.22018508886915, 85.56487323568524, 80.55385571534171, 6.864341895840006, 11.662130449661726, 38.80977656640058, 109.23508062470651, 59.49040233807436, 12.82129274442874, 57.89283533706182, 35.94643606927325, 110.8577983864279, 7.489204180555994, 16.16812636780532, 31.8629798261124, 19.221073024152773, 17.868232635742824, 17.818347048274457, 9.622890708758032, 62.97516617103201, 104.13282969671387, 6.411015477125976, 15.542252820601842, 27.292450715210183, 86.4045059065498, 18.96105464879231, 32.3286660508056, 18.905992559307183, 12.097390845150688, 26.79809058844163, 38.559775247557425, 10.463382623553583, 6.782190135643036, 79.01168992526384, 39.10436680402855, 74.7435885255264, 24.843238812360916, 72.03617162561385, 109.31341393635927, 21.93749432010898, 18.776039697273166, 8.286215698242833, 14.663825199230264, 99.42412494269911, 76.07443924166505, 125.8238767963455, 32.88118163011749, 29.342693892088462, 14.75356455126614, 31.204482893953802, 80.13649471298373, 85.59454043495074, 45.30242711236056, 58.50909431940708, 22.99380990097191, 40.84381314607984, 6.155365211616594, 10.122362392743689, 18.720798710392152, 10.694204964525838, 205.70376970352163, 37.161913922447425, 16.278515344074442, 74.08080844771906, 6.7843719679392755, 29.241419667939223, 77.5771523576495, 45.87108590487447, 35.94962744920163, 8.588475829457916, 13.154443383959315, 62.71231116302325, 70.50991307445187, 42.87659391892075, 26.44337325534547, 41.07446511315322, 7.566384938863049, 12.725732993298143, 15.725635257221304, 33.88133166145208, 44.11235296707767, 66.74538894349385, 57.52071165986152, 13.232045482399275, 14.505761021663451, 73.54014083331847, 11.817074438138844, 26.31280899850353, 32.18192289146397, 6.669273287149287, 46.673266971313, 101.42472795262883, 47.44146450292165, 18.010836044978376, 5.8969614112561075, 17.962056392182937, 61.65358002178894, 67.03372452664539, 37.67160620641197, 22.389667615757347, 46.59085554338744, 34.14929644655724, 27.49570903966354, 184.9238511489856, 57.274746141482105, 5.34291150380333, 38.39899786739216, 18.174949790898467, 23.550783364757528, 64.35604274861926, 25.91694379854876, 56.92782335963035, 10.100067693877039, 16.32655801766012, 94.10764878229608, 6.646163600186556, 24.929087420673767, 18.837088956535364, 76.13719061595042, 120.74131360419156, 15.394327330884558, 18.19667070882294, 51.45282267542778, 38.374512581799785, 58.484687058819304, 12.506667154938702, 55.12643367864369, 34.90521963294005, 40.10625171493664, 57.40430729678104, 23.578971759582636, 13.081535683955988, 11.895530810484324, 16.053132504529966, 17.24095865774804, 25.552502052042023, 22.623170248692592, 18.13087657972388, 26.019046608642356, 45.93144046350763, 51.55416913727343, 54.62183230769421, 6.673746134453366, 11.10491326459822, 18.01465816096342, 29.256665436623006, 40.25409544687903, 32.72489022148066, 43.31879897106837, 57.32141664609538, 54.90020157382247, 53.245538091166196, 24.01388549555786, 33.07269455053612, 18.218560565640512, 87.7239903877969, 7.585084332955995, 8.484564577094574, 40.04201446491788, 64.14124207974157, 27.40426867631169, 6.419664634548223, 44.48888779954507, 29.798999613553374, 11.199038174108342, 31.33431933479331, 74.27629107139175, 62.84184471155315, 101.18115838636247, 34.62544056533217, 67.78504091809508, 19.945911665087444, 63.46225541509555, 31.295672186001756, 32.859146625530734, 68.14271964066982, 8.763166319739186, 5.224610419413841, 14.578646823985354, 11.335567697993929, 94.45317547375255, 143.27872241719317, 52.55695364257199, 33.41342827990636, 11.111414442720742, 14.25568802133152, 110.48475206208666, 28.68522707357438, 16.991328715046684, 5.522289583770204, 38.09206519986657, 44.308356666355216, 72.78612515963462, 23.22377836518416, 7.6211918709495, 15.771756285952971, 15.200833605105698, 29.70651505898281, 8.778083627088892, 63.060292211509434, 44.36532915002052, 159.14047461795724, 26.12086138550361, 107.41446082149545, 118.45200202962818, 65.9622102657344, 15.258171812926086, 40.77062300244702, 40.73093262642725, 26.835682121342884, 94.95293997559874, 25.314649970251665, 62.10005316291456, 53.715756074299335, 17.54973163439461, 5.159973612003976, 5.078398242604915, 84.08722440819258, 41.21991613789096, 107.25618885563978, 46.37744708105149, 19.461633000351085, 128.23563998881787, 89.6605920300235, 57.6873328234323, 70.7744353467106, 42.8888759245176, 25.195252425845926, 32.073526033462336, 21.411357851199938, 27.468673933058334, 60.62515231992562, 21.2387241853463, 27.394576470408026, 28.594492400033907, 124.96649039709658, 129.33282185213454, 6.245247771126867, 56.972555650940606, 16.053806362260506, 14.379612735911515, 6.891743918533279, 232.29767650637555, 74.62062427350551, 49.506078381448475, 67.51262849353475, 31.15845558960553, 69.60257549089872, 20.3950670656006, 37.501294146398585, 7.127362900823444, 12.72948499261962, 19.247055518373745, 71.09192460532107, 7.380316516034024, 51.42522281689131, 14.476278322582642, 7.206059608226881, 26.777911125286877, 18.38158562760334, 6.104094007022882, 10.053055558699342, 104.38416776337039, 6.9672952263456835, 12.789461953163979, 12.920025367442824, 49.06973747172011, 48.01181242799397, 31.370944743604465, 8.060176614434, 14.87221874082473, 14.228295960586275, 6.9234374427909495, 29.97593541839132, 6.1668326481724804, 34.84916562152741, 23.408172293587537, 91.75926279663398, 11.932600518211455, 13.776843397797098, 7.8179063877976045, 7.219043325437262, 11.243771255466438, 7.093096989369204, 113.14198825968052, 8.642389859153624, 62.597116918754075, 28.457987624346053, 41.17837469617758, 12.281608053420833, 27.83807517671484, 9.59088388710556, 28.82512939101258, 52.52512368200899, 81.38384530471285, 24.544752859157754, 112.47946414556264, 39.834823561237535, 21.342830152737214, 105.25295088935943, 7.777688827906936, 8.113055993495994, 75.52940982809261, 84.3166510236769, 6.652792879242363, 24.913548165578867, 74.26306464776881, 44.62066736892361, 78.4299476829146, 56.04525918453287, 6.783436817079567, 28.10048347202043, 72.58612344580105, 26.20426213381751, 7.481907280453957, 73.89466368778253, 17.394831178848033, 82.82933847827876, 27.06817769882673, 19.966156807896688, 219.25052367952085, 47.83521180779671, 13.531822053944309, 115.3118217851317, 39.8215151314334, 26.85379932071502, 48.04167180513899, 111.98147276110078, 8.107362512274868, 16.62990236881881, 59.698792608228594, 63.62843310573639, 16.773250011643015, 10.87863393066843, 7.487744050946207, 34.894261483198505, 12.506473207746165, 76.1071775591718, 10.685848859685436, 10.744378074772182, 93.80187740861483, 90.05393806307751, 5.571193099070601, 35.5784320760434, 9.445841159720231, 94.70295081831063, 19.2515335455866, 8.17917440024613, 125.0452609941935, 5.064309547981843, 63.03768658576694, 35.00987420071576, 24.803266583451876, 56.96577668560146, 57.23019835712101, 6.744168580962304, 28.34970261273002, 11.788780163663017, 56.912299833868325, 52.444932100861976, 16.488656502401284, 50.4278816691394, 55.598425844199866, 37.876544957152404, 86.29817493412824, 7.283547131191111, 48.6578836524986, 17.985141272144528, 7.347152128213207, 6.599524056202433, 72.1645092895362, 67.67854382148613, 7.140088405516168, 76.08804575181108, 36.18936968660056, 15.678357681672006, 79.3745361158737, 101.39631183853771, 89.32959946403429, 8.738290406823404, 39.61062433909668, 10.958336907068439, 6.226239156212072, 45.44229035860546, 88.5306058483348, 12.778066025503797, 8.390349306491538, 39.885162407497795, 37.41587201264416, 26.87716286833946, 41.24400223408941, 93.2667553331764, 20.052162339475373, 69.12617417224463, 44.68505482437534, 65.60031869304828, 32.16178916950402, 16.282271804545996, 27.896656432566946, 18.673947451423086, 6.262360701868863, 27.65273256104291, 118.42012328258164, 32.37415176193026, 34.054435075882914, 11.704236575875077, 75.41020968626718, 54.91504414617228, 28.6974517641091, 119.16397721154284, 121.46660097572628, 60.40024170112305, 17.955967308302206, 12.60888992156684, 22.436903547040792, 7.5881898336058295, 32.643565822797285, 96.58386101475412, 5.776906207245235, 81.49837785033986, 7.470441797866417, 8.092054436987508, 19.554324777678676, 6.062850881238508, 46.71745433323052, 5.789854981322951, 44.68267705797632, 25.078969077825594, 15.724728920141086, 111.63933374103199, 8.082222126346847, 5.600153742829367, 5.705222339257945, 102.504184506056, 45.03968213676548, 20.940001635045007, 8.938340662687182, 69.50339882083212, 15.663476522707176, 45.70457520138496, 55.92145405564533, 36.22424511997507, 55.81548990769156, 55.025453906683325, 57.811393991192006, 17.02543302466568, 25.507840541463647, 63.40429843347716, 35.28876526789483, 28.84783773226062, 18.512210355371685, 9.844360803515, 23.487225268967705, 8.033264762950406, 21.589518663673584, 24.29237500130904, 54.144217829796204, 36.08793792654766, 11.704019184917382, 16.16381299294835, 78.11794818825, 28.876845853564284, 36.61912261175091, 56.567460666579976, 8.612298433114741, 9.134879401564174, 8.513300396821982, 5.5810073697979465, 13.732306153045625, 30.58923256950771, 5.338336559619044, 53.574499857685254, 8.062164809137043, 108.7806699570377, 24.681385145250697, 45.55874507000776, 19.687109680276286, 9.770862891335684, 25.37988123487431, 86.66776348769133, 5.957933749543234, 20.888673066469597, 8.688240771775616, 13.04528996113302, 12.567459505089381, 10.650792345694462, 10.862958813261965, 37.095336052108266, 38.719559921063755, 10.810387522719758, 41.414525659645584, 6.575000988462774, 23.886773933495625, 23.8110842083318, 35.48025185939645, 66.28321927286562, 23.204143681685654, 32.736186444814145, 46.71970650689998, 34.77531296563486, 52.24243759146665, 36.447500600039014, 55.51075501742165, 6.7875291660205646, 41.619278075771724, 11.033050714535058, 70.84176815378848, 35.81248199715808, 35.43898510574576, 92.32181522856163, 36.12286906959813, 34.66360191642402, 121.2267158606927, 74.84441336189653, 7.008868019846362, 29.58932609520149, 25.04080654489206, 23.115357206793597, 13.744691616256103, 100.06852547888677, 59.51673447900515, 10.449594071718023, 76.63749343421074, 10.873432580442067, 29.7888644399193, 19.164788220745862, 11.199799038687495, 17.045733063424965, 19.10274236794985, 15.573205681485177, 62.71529887172751, 12.775655194273554, 32.463081761448535, 26.82605370614081, 6.565386527464013, 37.79169180251458, 54.29310954307557, 90.89626657650393, 10.793485700747297, 73.89359204206912, 9.269151905859134, 53.14203625682497, 33.37350755024241, 110.16941204710574, 9.430606273079272, 56.457724189566534, 72.19689482207284, 15.551767943256166, 50.12712731657316, 7.2795461235882435, 9.295742483865551, 56.775543791493334, 16.77537917154643, 5.452465071779839, 31.86857514793375, 22.915785693989655, 11.213879320667225, 15.447445281221889, 36.9677818879313, 5.540247898875703, 144.76597686085273, 16.509926902331156, 31.746913312861274, 47.18942480802544, 75.85604702799031, 105.44629129407446, 7.623754584632416, 72.86903773615481, 8.352581720998948, 92.50697692385393, 45.65761440095356, 31.038318615151866, 25.722622489257073, 24.661743599697342, 33.83302823759197, 135.18540400983957, 24.66230843498031, 11.88998350184018, 33.82882398109848, 9.405322622351283, 59.21924798173201, 91.11246517394767, 28.486221290287844, 56.57253755126662, 12.422541145919737, 17.11458485121444, 57.459560186998544, 30.626919473310842, 60.343931020796006, 7.618419481414621, 7.058629817584997, 9.732250889280134, 27.574186626294015, 20.840661993375996, 68.61179649569434, 44.333606820537845, 51.18899761058999, 145.2287077064048, 12.23810334441873, 13.42131233484875, 22.150001197058234, 19.584660577421815, 5.156186646951924, 72.16393234616012, 16.914944805776315, 33.67716042447803, 5.559450433835959, 24.07360340689833, 7.725845271937265, 17.880748013780178, 49.45367415289802, 38.73657694100439, 127.27776180468243, 41.68296720154695, 10.07651242550622, 97.75493037105203, 10.027621302022983, 36.43270547484728, 35.237454534027265, 42.47769715115363, 30.826408032612523, 21.614404070216608, 8.40912434513522, 31.974657817939086, 42.871853583103444, 30.294202754483212, 13.531727832954987, 49.757506903574786, 38.6602440200578, 7.609465505495722, 171.58304523003034, 57.98699674386991, 45.298986385407076, 20.845541906180244, 39.501359384988426, 67.75161945386874, 18.013462175125316, 55.375940294487336, 41.4215478133308, 11.249304464228308, 10.313807394134672, 89.58878773311984, 13.378222670257273, 54.29142513225399, 75.42254851350582, 143.26721214844858, 85.52486893971027, 57.52173424327477, 30.339475197179986, 6.310857052450734, 38.14812408765106, 123.65210173894756, 109.37238290639665, 118.98169106047482, 44.78775102233843, 79.30838149074138, 8.229391791336814, 15.16266726363384, 19.35603788866408, 6.464999252027863, 137.8796932835323, 5.602763550215124, 29.112932896025924, 22.59593187000068, 26.716879552194655, 64.53366018729912, 23.21220816831074, 17.705510515449145, 10.933353779300534, 14.134363964049253, 20.846996953648713, 19.512131160089325, 37.74000690398967, 9.973935928098177, 125.85652386833641, 60.62547972885575, 68.36645398696874, 7.375256356539699, 52.036437168020655, 14.92136248684374, 6.745628918699325, 23.589946071051127, 54.783356329334055, 21.551443325109116, 6.520218178408085, 9.249357449218971, 12.961298077726939, 79.4028282729639, 7.078871567964933, 31.73361019195084, 79.6174180314957, 79.23274173436846, 94.69423795770592, 23.60229209269042, 168.05313557039648, 11.63952216700438, 14.396373784331457, 5.974458474330102, 25.79457309510782, 72.19521039530034, 15.84634502049678, 17.022377832075517, 46.745555851556034, 15.492183803073702, 53.59158856119094, 16.77166231707636, 10.547478107309825, 89.3603138186528, 5.699556507815992, 40.05607573619283, 12.81638252018352, 13.093415363217714, 46.72221401030562, 190.12007237423546, 49.56255095589971, 97.60939244721077, 32.74685571220521, 40.9494904338423, 20.89856692743277, 34.217053199919626, 9.845771921623701, 21.235103707934726, 65.13807865088121, 23.165188363437405, 49.90800438540308, 101.98917451225154, 79.79041269671663, 15.494293727620105, 18.30915799900368, 13.727790399775904, 78.44762412784192, 23.014816967853022, 43.911743611213026, 22.92309120791168, 110.15661623622503, 35.50378735536469, 46.25588963614511, 27.057439265456324, 5.798541429966389, 9.760777640376206, 25.28544523724436, 22.9903146395034, 64.66605567242118, 9.29139558138938, 23.04865440321161, 57.881959278328324, 16.163851650569608, 12.938151608924414, 31.027361169768536, 20.29742685616569, 51.35154181734738, 34.291110698872075, 31.17155835421095, 40.00107841114481, 46.5892349012349, 20.861645201929857, 17.368383699417546, 41.71436374849223, 14.937877328054517, ...])
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);
([4756654.311943208, 6048792.316433677, 6061412.790282998, 6146579.6875, 6191414.0625, 6325482.690409237, 6384817.1875, 6491899.571901621, 6560807.415856054, 6602857.8125, 6630364.728398033, 6630421.233364431, 6718872.281791585, 6733131.25, 6747931.25, 6758833.959407844, 6759319.734795326, 6760117.972825325, 6761473.4375, 6761945.462666731, 6765024.774408669, 6777098.306192603, 6780797.9029497225, 6816261.080625061, 6816262.583515759, 6831648.220639308, 6845970.018586673, 6871864.042100562, 6872820.024458734, 6873715.625, 6875505.128461759, 6877442.599725017, 6877584.375, 6880701.883683317, 6880875.0, 6885342.855823597, 6885387.5, 6892441.663544883, 6892456.024637586, 6892484.375, 6893056.25, 6911708.964107348, 6914310.746535486, 6959612.018929191, 7027512.5, 7048081.25, 7099563.662248878, 7100539.0625, 7101637.197384127, 7102596.63960057, 7102636.640600132, 7117520.657314517, 7123256.646960612, 7146288.327875178, 7146954.350688602, 7151446.875, 7151471.875, 7157914.060392302, 7159215.810295881, 7163442.594994955, 7167713.454585276, 7179041.367496816, 7189679.458897211, 7210092.1875, 7211568.75, 7215789.986881585, 7217251.5625, 7223243.36162888, 7255978.484233463, 7274041.506875384, 7298659.375, 7300042.1875, 7350149.791102798, 7350151.066790409, 7364923.995270447, 7377264.0625, 7378239.950777562, 7378549.050904896, 7386598.155481522, 7388237.05385514, 7395063.242612281, 7414357.8125, 7414412.531254688, 7439564.9841699125, 7450961.235826795, 7451593.386365338, 7451604.742467492, 7462663.606446607, 7497080.980338162, 7522736.942972027, 7530096.802335, 7532577.726442159, 7544802.25572562, 7550832.108412198, 7567110.268722072, 7573865.625, 7574571.62316827, 7577949.611126043, 7594127.9479186395, 7596079.131490142, 7632527.1860010605, 7634436.41207572, 7636572.62848651, 7638262.490544128, 7638295.3125, 7638495.3125, 7638593.782022858, 7640493.586638672, 7646198.021148845, 7650009.836564138, 7650709.375, 7709334.960254185, 7750376.5625, 7752414.80061387, 7754025.0, 7754057.794616568, 7754060.314509557, 7756131.25, 7757268.602484568, 7760375.947854757, 7762518.75, 7765736.504547122, 7798967.308435774, 7802981.860851664, 7810537.5, 7813637.5, 7819321.366664909, 7837743.75, 7840889.4281762745, 7841709.581504581, 7853671.875, 7854309.583050339, 7854319.256556709, 7854695.776884413, 7854900.31106409, 7855792.1875, 7856404.6875, 7856420.550665352, 7868492.1875, 7872890.625, 7873702.250450648, 7874092.910482254, 7874333.996955139, 7876687.1917552985, 7880830.998214238, 7923056.25, 7923459.375, 7936251.5625, 7957671.875, 7967676.177550314, 7983867.1875, 7985047.703841116, 7986300.088095299, 7993850.901209448, 8000706.482136082, 8001016.485568727, 8012401.101583799, 8014254.6875, 8015282.400722936, 8017599.402409878, 8022170.3125, 8024070.3125, 8025442.1875, 8026232.438884668, 8026273.042614481, 8029310.679548888, 8029641.202712758, 8032031.670555761, 8043660.9375, 8052522.294659796, 8059588.886990729, 8072890.625, 8083021.360759966, 8091747.426138724, 8095472.185614048, 8095824.894882827, 8096984.143302614, 8097592.450414297, 8098058.053057535, 8098295.3125, 8110707.277279412, 8111118.476978018, 8111395.333016129, 8111887.302513954, 8112471.875, 8112503.213541473, 8113705.221962384, 8113981.678336201, 8118294.92154025, 8118296.31713668, 8121980.680723303, 8122071.875, 8123170.606229644, 8128460.9375, 8129040.625, 8131588.653581673, 8132165.4467734825, 8133018.086786188, 8135347.003272148, 8137508.863895161, 8138243.834813456, 8138318.0772104915, 8158026.159375378, 8167810.009060842, 8175692.810172731, 8176103.091517163, 8176775.500612962, 8177189.35875315, 8177248.053715329, 8180305.844327332, 8181010.9375, 8190307.93964388, 8190788.7760996735, 8190795.337879254, 8193468.163629827, 8194576.420415636, 8195202.393714169, 8195275.090161499, 8200084.002116131, 8200902.311248233, 8201034.5198134035, 8202729.833817435, 8206592.1875, 8206923.833822553, 8212061.392950394, 8216707.8125, 8225383.024613769, 8225425.217429408, 8225768.75, 8225874.685561109, 8226280.941556287, 8228882.166755231, 8231231.792871612, 8236906.39866573, 8241926.5625, 8244307.692008391, 8250771.9629430035, 8253767.106423941, 8259671.875, 8259826.229515435, 8268099.269750097, 8274057.8125, 8274267.179786015, 8275199.253000462, 8276473.922433494, 8282125.316965017, 8282840.0769881755, 8284997.635359433, 8285615.245964853, 8290241.492236695, 8294457.8125, 8298440.8161342405, 8300464.0625, 8301648.110810699, 8301691.950489896, 8301777.59529091, 8301812.737223785, 8302499.039284276, 8303800.5937156975, 8306109.700721014, 8311674.6975873755, 8312718.343033584, 8314108.871899469, 8317136.126722411, 8317249.2042920105, 8317879.52290509, 8320089.827228277, 8320818.400694769, 8321399.194603084, 8322188.347892032, 8322276.128447286, 8322317.1875, 8322321.403903606, 8322520.4053703435, 8322672.934126987, 8324065.625, 8324149.108493481, 8328136.5354719935, 8329493.75, 8329697.3815023275, 8329711.228003474, 8329917.926376163, 8330851.561816094, 8330885.8626874, 8331135.9375, 8334007.399050553, 8334848.4375, 8335087.5, 8340142.79700468, 8343779.637300828, 8344802.392539486, 8347065.625, 8349568.956894117, 8349757.588273181, 8349906.561357989, 8351155.888338482, 8351710.9375, 8353003.747922937, 8353778.932554595, 8354031.981028424, 8354213.76624877, 8354401.566624859, 8354565.869270965, 8361106.6278117625, 8364850.0, 8373682.91612313, 8374248.4375, 8374356.25, 8374851.355179432, 8377429.0937165115, 8378352.092860953, 8388785.373623718, 8389041.400412451, 8395040.699201696, 8396730.59998786, 8401602.342891254, 8409149.391342573, 8409895.209445052, 8409928.952624256, 8410647.066560905, 8410653.009428466, 8412478.125, 8415296.875, 8418840.625, 8421504.24077514, 8428423.318277637, 8430517.131355911, 8430926.962893263, 8433206.906808963, 8438654.117341755, 8438785.446423184, 8439306.25, 8439877.143770479, 8440398.4375, 8440758.437024513, 8442894.811862906, 8442939.679299433, 8444307.8125, 8445204.6875, 8445814.0625, 8446155.474266669, 8446359.223273516, 8446751.068154322, 8447097.918888869, 8447621.35481486, 8447832.8125, 8448512.528857712, 8454661.196600128, 8461513.150114857, 8463594.996683083, 8474546.186983746, 8474718.602561692, 8475187.5, 8496657.037827803, 8500278.446407365, 8500337.202630758, 8500955.632373719, 8506889.525409251, 8514760.122479493, 8524871.875, 8524914.0625, 8525820.426437194, 8531685.0284564, 8537029.6875, 8538663.61121861, 8541585.9375, 8553158.545817832, 8555489.724912547, 8555798.4375, 8559420.3125, 8560140.097701041, 8560974.762844468, 8566292.999731522, 8571509.816333063, 8571703.849477766, 8579048.619675646, 8596101.27381434, 8597055.85628354, 8597495.955802301, 8598174.189481897, 8599118.75, 8600309.375, 8600440.625, 8601104.220627613, 8603385.922868295, 8607427.187627483, 8607692.1875, 8607890.262828248, 8610273.4375, 8610939.913260328, 8612060.9375, 8612279.6875, 8651050.0, 8651357.53282509, 8651402.737226458, 8652613.523136418, 8653032.8125, 8653373.387028199, 8655273.794027291, 8656651.5625, 8664026.5625, 8664902.96607905, 8665638.618448913, 8669449.545796933, 8672996.875, 8675162.545161255, 8685135.9375, 8687871.875, 8688893.75, 8695863.945111318, 8696266.965282043, 8697848.4375, 8697960.267028602, 8700002.641060084, 8712035.9375, 8717325.0, 8719378.125, 8721361.74170927, 8722233.624333445, 8722248.674582448, 8754803.775739932, 8762000.0, 8763090.625, 8763473.4375, 8763653.125, 8768284.364551589, 8768293.557626123, 8768779.082649484, 8782426.261046592, 8791636.38818347, 8792387.27563488, 8795685.9375, 8795737.5, 8798209.375, 8799773.567358924, 8801467.236869356, 8805773.639510166, 8816326.628912767, 8816914.0625, 8827849.264095694, 8846440.625, 8854959.375, 8855887.5, 8856104.64876311, 8857603.125, 8857795.109416844, 8857901.110749893, 8857947.61738237, 8858245.569335515, 8858442.1875, 8860646.783394877, 8861982.8125, 8865227.93830548, 8867407.780265097, 8867923.4375, 8869375.549222145, 8869431.017137324, 8869456.765837474, 8869640.459162423, 8872694.635590745, 8874262.992040679, 8881979.6875, 8884022.706503542, 8907085.866033478, 8916571.875, 8920439.0625, 8923724.481193395, 8924278.084841108, 8924311.74862176, 8924546.875, 8924813.044382386, 8924832.007974047, 8931518.180382434, 8931805.724116236, 8932049.123652646, 8932060.331035955, 8933518.57415418, 8934442.5505158, 8934774.824263703, 8935121.660538785, 8936093.232160874, 8957334.219331985, 8958769.360101044, 8969342.7649358, 8970577.43730268, 8975171.875, 8978595.938435057, 8981623.714309879, 8982769.466488682, 8991997.0504465, 8992250.0, 8995489.084939735, 9003963.329196587, 9003964.865928747, 9004127.1157608, 9004261.838518173, 9004750.0, 9005346.747340959, 9005786.24987323, 9008358.342223026, 9013405.368985163, 9013890.777417371, 9015000.74572622, 9016067.1875, 9016085.316701248, 9016610.229141336, 9023279.03223798, 9024274.633985667, 9032145.296790881, 9037643.75, 9046116.733343579, 9061368.73170122, 9064854.486888625, 9080744.501564454, 9080751.5625, 9081535.099550404, 9081868.75, 9096899.67269977, 9109320.3125, 9109327.022882449, 9113063.216975942, 9114328.68193081, 9116594.10868636, 9116664.13550674, 9119142.078524612, 9120135.592999354, 9121288.117248222, 9121837.84568798, 9122414.192182472, 9123551.5625, 9144197.506015552, 9145495.276832271, 9148003.416721389, 9151308.327223014, 9152234.117328914, 9161895.3125, 9171046.634717908, 9175316.605965946, 9180212.083420897, 9180216.67230303, 9181182.730691671, 9181972.33288074, 9182566.8442925, 9182904.6875, 9183671.709541494, 9183710.356434163, 9192456.784626776, 9192689.0625, 9206636.42098191, 9206883.977757854, 9206909.375, 9208126.661516748, 9214674.978196297, 9225945.3125, 9230235.80802665, 9239619.96409981, 9241506.25, 9242800.488250501, 9243848.4375, 9244574.921808444, 9250334.20454103, 9262816.813093916, 9267278.125, 9268146.448453248, 9271600.0, 9272993.69571641, 9273646.397940092, 9276801.376084805, 9278623.230796153, 9279101.207496192, 9282386.991381858, 9286771.875, 9287591.908134075, 9288044.159797512, 9290070.147084266, 9302474.668974338, 9304040.813233415, 9306349.170732098, 9307489.0625, 9309777.822640892, 9310684.11508773, 9314902.820410132, 9315414.0625, 9315435.136051055, 9319429.42254451, 9325245.444809189, 9326893.775642894, 9326948.494984556, 9327423.228723032, 9327838.069495443, 9327901.308676898, 9329284.11259686, 9330526.38426531, 9334163.840660963, 9337671.875, 9339535.512570295, 9339537.402358843, 9344471.625454184, 9346109.760417363, 9349148.4375, 9349486.91527771, 9355201.806075957, 9356050.0, 9357339.0625, 9357726.5625, 9358328.125, 9358794.332723008, 9358930.720141089, 9359330.307962196, 9362228.919237925, 9363649.119102601, 9364018.78230115, 9365884.375, 9366154.75792605, 9368840.625, 9371485.9375, 9376434.555761408, 9376546.24557289, 9382566.517643983, 9387348.24194711, 9389113.266540479, 9389198.4375, 9389770.661257757, 9389840.293782605, 9408981.285289513, 9409242.1875, 9412044.599428983, 9416776.753711177, 9421225.551346514, 9423737.385636186, 9427246.785808342, 9429698.4375, 9433945.811088115, 9442891.52980882, 9443706.49726159, 9445685.23936991, 9449070.3125, 9452012.5, 9453094.062283963, 9453234.830745278, 9453456.974325165, 9453982.77411382, 9454091.329468125, 9456432.8125, 9459531.04531601, 9459734.375, 9461264.402483908, 9461821.875, 9462421.875, 9464146.875, 9469790.625, 9471335.9375, 9476726.5625, 9482795.92833124, 9492673.8060298, 9493276.152178535, 9495537.458202384, 9497550.836538594, 9498559.375, 9500354.173545793, 9501929.6875, 9502629.30478167, 9503321.488102078, 9509366.468386238, 9512873.191156324, 9519595.3125, 9522488.731032968, 9526756.25, 9535156.287788568, 9543245.230001397, 9545921.875, 9551294.904979136, 9551305.996159418, 9551439.03834339, 9556279.076306248, 9559599.930427639, 9564385.573595662, 9568293.245439054, 9573475.0, 9585714.23984349, 9598290.416089285, 9603860.9375, 9603966.517922174, 9604542.16882231, 9604596.875, 9604614.0625, 9604737.95695036, 9606246.70114054, 9609012.383219866, 9609237.5, 9613848.4375, 9614425.700844085, 9616170.862653632, 9616554.752507044, 9616580.738159742, 9617174.509611476, 9625601.303751647, 9630556.25, 9630679.561864017, 9630787.83986574, 9636259.47429568, 9645053.125, 9645978.125, 9668734.375, 9676306.25, 9677249.006523386, 9684374.758061739, 9684594.155464785, 9686227.51198098, 9687119.954423219, 9688396.875, 9690015.520000445, 9691187.5, 9693285.48757209, 9700122.946183927, 9700872.317667825, 9701065.625, 9701514.92265867, 9701694.227700563, 9702352.417249054, 9704968.75, 9707151.772826705, 9707152.562196484, 9712006.93944709, 9718452.519183299, 9720038.259991774, 9726555.921840232, 9727726.386251727, 9742531.25, 9748037.5, 9749377.912038524, 9749885.9375, 9751170.851274243, 9751860.648075374, 9753402.829709362, 9758051.5625, 9762913.903965855, 9766218.405969167, 9767087.170261433, 9775801.5625, 9776028.125, 9776365.625, 9777847.873006387, 9778443.360188792, 9778481.36914895, 9783817.179621113, 9783987.438585998, 9790466.771038588, 9791062.5, 9791275.265592989, 9791721.030238979, 9796124.986533804, 9796687.027742341, 9799859.134241177, 9799896.875, 9805210.491170542, 9810829.6875, 9816039.531900033, 9818065.273575041, 9818340.271057438, 9819505.743146863, 9819743.353147283, 9819780.768041017, 9821002.688363222, 9826206.080995549, 9826325.529838046, 9826725.79244962, 9826993.5341585, 9827997.335664658, 9828639.490343742, 9831745.468915975, 9835776.5625, 9839669.680560226, 9839682.260335477, 9841015.532833397, 9843470.794419663, 9845025.0, 9845154.6875, 9846371.875, 9847506.025108129, 9847556.25, 9847707.73794924, 9852159.375, 9852594.788845498, 9855943.75, 9856242.302538157, 9861040.625, 9862062.410390522, 9864684.147412062, 9864691.89254827, 9866411.506612252, 9868331.207522513, 9872473.263981828, 9873745.722703623, 9873762.281483192, 9874114.0625, 9886166.8191968, 9887827.072916532, 9893740.685013307, 9894439.0625, 9897172.021800369, 9901673.116227381, 9906015.983476741, 9906396.48895907, 9906619.544605253, 9906637.5, 9912142.1875, 9912971.931372173, 9913595.3125, 9917154.81026398, 9917353.028485248, 9917404.271354496, 9918560.9375, 9918883.793603564, 9919549.768122453, 9923935.102280637, 9927108.993624901, 9928252.10823274, 9930447.313466327, 9931160.9375, 9937359.461146224, 9938174.624220945, 9940338.830670727, 9942982.858441511, 9943737.5, 9945581.945744215, 9946420.785674572, 9948566.066037804, 9950074.724330267, 9954690.625, 9954789.104281267, 9955420.068000084, 9955470.751346633, 9956035.88757427, 9956511.252072068, 9956737.224792717, 9957498.4375, 9958668.899250507, 9959548.117925748, 9960192.79806804, 9960410.47191965, 9961483.93842286, 9961585.222243782, 9961638.664136825, 9961856.25, 9963534.62560039, 9967697.930946808, 9968595.844123065, 9971741.63166769, 9978190.951729512, 9978197.478799207, 9981753.125, 9987132.8125, 9994208.024806697, 9994246.875, 9999282.016819153, 10003453.125, 10006258.535158701, 10010031.081474738, 10010651.5625, 10010768.724157378, 10013708.569693325, 10018443.72380754, 10018861.162265282, 10027188.495804416, 10028123.4375, 10028725.0, 10030460.339066802, 10034534.375, 10034572.554779049, 10034643.767186247, 10035014.0625, 10039855.826593548, 10048616.453158228, 10050167.290314479, 10053206.25, 10053846.875, 10055233.437438842, 10056503.854955714, 10057216.645015065, 10057606.326426012, 10059804.095891766, 10061045.26627792, 10062677.643941222, 10062689.0625, 10067018.75, 10070458.743368667, 10082087.5, 10085284.375, 10088855.964059383, 10104650.337916622, 10104785.9375, 10106843.656997964, 10109151.08213244, 10110659.324858388, 10110970.3125, 10113346.088734558, 10115263.952772852, 10115939.11933806, 10121450.817787983, 10122449.857607557, 10123061.082890384, 10124260.731777275, 10124577.806959493, 10124585.541376485, 10124979.09657361, 10125235.9375, 10129060.594137331, 10129061.512743196, 10129062.371995768, 10130037.270791074, 10132474.432696633, 10136794.893300546, 10143140.625, 10147664.735785585, 10147867.096826607, 10148922.417334776, 10150128.125, 10150611.82237652, 10158403.125, 10158962.494704155, 10158985.84728708, 10159792.610414783, 10160345.3125, 10161577.630828798, 10175636.145618785, 10177440.526347954, 10177454.048688084, 10177471.875, 10177879.523003254, 10179909.375, 10183582.8125, 10186998.363969337, 10188388.951877968, 10188496.447378717, 10189291.016779264, 10194731.55449583, 10194987.349227095, 10197511.331396237, 10199145.157264218, 10200146.875, 10201851.781231897, 10202459.722020073, 10204915.625, 10204925.13734424, 10205098.4375, 10205589.471994588, 10205626.156609768, 10205884.375, 10206301.448746992, 10206937.5, 10207389.927723015, 10215885.350303564, 10216921.351003278, 10221097.154319528, 10222878.125, 10223507.8125, 10238626.5625, 10241279.6875, 10275157.250761418, 10275167.1875, 10275464.614025775, 10276169.786242215, 10276559.198932096, 10278489.35725733, 10278762.5, 10282023.4375, 10282526.72642465, 10282818.887844406, 10282924.899062991, 10288059.015413167, 10297725.0, 10298482.77709336, 10299490.625, 10307230.882321035, 10310985.157865116, 10316714.0625, 10317512.315346621, 10320021.79619495, 10322152.914139764, 10325481.717605492, 10329175.42134471, 10333085.575542143, 10335248.4375, 10335840.577302864, 10336444.955473881, 10338669.274682034, 10339323.725052629, 10341289.783324102, 10353628.125, 10355386.781428752, 10359901.5625, 10360354.212514808, 10365158.986914853, 10365465.625, 10366742.1875, 10367808.80928082, 10370464.58064645, 10373310.152022338, 10373984.37404675, ...], [10.587390510352687, 9.442856438858403, 41.67064424420349, 134.29622831455902, 40.274975646331896, 14.495717931870077, 63.71371714062983, 7.455408321621226, 15.87182017675742, 135.79890726351653, 6.596801385177198, 5.271670672891913, 25.596352740526836, 71.54908076351086, 48.62052980370672, 5.233660715922167, 8.003008087191978, 73.24870685794164, 53.508596851199904, 9.46168952441026, 10.7924975132079, 26.174579550027595, 60.14869159514334, 13.500727482521164, 6.277807960109844, 41.951047289009324, 34.41628164240822, 65.98397641557989, 35.61808434510463, 37.08874735083435, 79.20733769627093, 26.896710417047267, 73.69145626089251, 7.7236872868315665, 54.69828030113277, 6.904693616497136, 48.99085405346861, 42.9169175527719, 13.186184023541678, 65.71789344894712, 47.43367644508138, 7.4610912187731735, 7.535599106921889, 147.30949766750422, 93.45052747231804, 37.598048576080934, 22.549412016714218, 44.66083906206718, 91.16560585926703, 13.340248406474414, 18.527591319812128, 6.834355570269646, 8.508278248044045, 21.53167186323565, 286.5919312084503, 46.82362421707527, 29.6312234953215, 22.41393279141512, 11.43023822092194, 23.663494711914055, 22.315186188178536, 5.368024804234461, 24.707695566970237, 106.67210035334494, 55.528099222194896, 5.502891903271512, 67.41548942888662, 102.57819084600379, 21.01704441595001, 5.0302577156538595, 49.65099159541408, 74.57030923306087, 24.988655219215534, 85.32953386661244, 21.019528846003062, 48.26216684916559, 45.595862930762976, 17.940731636406007, 23.98318065088617, 22.0477003426796, 18.80248794380194, 81.3648322936582, 5.9421320015456995, 28.12035541149171, 11.6283884091499, 18.626538578325317, 16.740849495877264, 31.934282397308273, 5.689808280689193, 18.143054944072468, 11.015995034054319, 9.015699832313855, 18.460515718862382, 82.10704790983223, 7.378027215815283, 94.23704751468804, 24.386162442770893, 28.80423195255299, 75.83308440663984, 5.5840074752273265, 17.960792659005534, 6.564150640514951, 25.671525626954875, 40.11991635166444, 46.59247412019691, 56.92743081584714, 15.064986677212334, 25.668521691105653, 39.18008055211211, 9.754760045585442, 32.68423743632797, 9.880687110903398, 30.144405082984008, 109.52046613450932, 73.46850710319731, 28.175749647112152, 26.80283909857209, 103.86961407128982, 10.904702055554743, 72.42582652800273, 55.11977031914008, 9.861784627681077, 15.423405502362698, 12.238703534803529, 73.70763923971806, 54.70506883374245, 10.416370160045382, 76.25502085333846, 16.54619276671941, 7.679674415324865, 30.425043650801662, 44.02262738208796, 91.73117032232932, 11.94043451800575, 17.472428309029276, 55.446896319553424, 42.75983278368277, 58.7541454419361, 65.90722213179878, 40.21885668935268, 99.9945424387984, 12.4833521310774, 52.8672229908417, 74.43315713132377, 6.235902668474318, 63.373926236620136, 43.06575654183014, 40.20223402512619, 44.4604008924563, 8.092985958436683, 56.78337045140303, 12.728636449298167, 15.288266407955275, 12.904998732894315, 164.74002250479407, 12.805055067627297, 21.892047957841527, 31.14117199693028, 10.84588015163283, 14.236984310234089, 86.80949236709645, 30.14063660298739, 52.5274344233823, 19.126647932624312, 22.60993096892459, 20.30021761433968, 5.744538844003565, 133.3910995593269, 54.936420078758225, 6.5549522904202595, 8.195895709976385, 42.47749695111064, 21.352214786767917, 12.114322103170823, 16.274201204700194, 10.96728308908861, 24.664266259828217, 16.04818856752183, 8.418021141496249, 56.15613403031251, 13.230609194587993, 30.291618905654698, 9.348811177221506, 7.533338639894809, 60.57848119211725, 15.290080345355088, 9.82827511342378, 58.31550233937746, 22.654465338714253, 20.934670465608285, 78.8518875669208, 74.11935561203566, 16.19320831518454, 41.1111521495329, 33.695147739893606, 22.452496352845706, 28.612246406443845, 5.883657462456687, 15.454051792962543, 21.38303421312042, 24.242487885189057, 8.820686971409305, 8.08431378325899, 7.84988067125739, 40.81820022936226, 14.815406042567467, 22.54384700514917, 78.62704563910177, 6.428566725027222, 50.998778017002294, 36.38282516666409, 24.759157489060755, 32.85905086228179, 15.039133722054848, 74.8631513756501, 124.26887685825776, 25.50417647415472, 15.296671663580604, 7.026764325419394, 18.77464320314949, 12.32458227663113, 16.69703289201879, 46.08771763992582, 5.732453987508774, 117.9648916189141, 28.532707851834992, 11.47627089797048, 7.683817934141929, 38.75825891890952, 23.568040494041842, 5.195634287154031, 74.92235157439809, 28.33981962331473, 15.540139017782854, 43.744966199176744, 55.55333429360367, 64.51338323227739, 27.017776349792896, 73.10422473288902, 84.94344272798114, 12.736781069987659, 47.22018508886915, 85.56487323568524, 80.55385571534171, 6.864341895840006, 11.662130449661726, 38.80977656640058, 109.23508062470651, 59.49040233807436, 12.82129274442874, 57.89283533706182, 35.94643606927325, 110.8577983864279, 7.489204180555994, 16.16812636780532, 31.8629798261124, 19.221073024152773, 17.868232635742824, 17.818347048274457, 9.622890708758032, 62.97516617103201, 104.13282969671387, 6.411015477125976, 15.542252820601842, 27.292450715210183, 86.4045059065498, 18.96105464879231, 32.3286660508056, 18.905992559307183, 12.097390845150688, 26.79809058844163, 38.559775247557425, 10.463382623553583, 6.782190135643036, 79.01168992526384, 39.10436680402855, 74.7435885255264, 24.843238812360916, 72.03617162561385, 109.31341393635927, 21.93749432010898, 18.776039697273166, 8.286215698242833, 14.663825199230264, 99.42412494269911, 76.07443924166505, 125.8238767963455, 32.88118163011749, 29.342693892088462, 14.75356455126614, 31.204482893953802, 80.13649471298373, 85.59454043495074, 45.30242711236056, 58.50909431940708, 22.99380990097191, 40.84381314607984, 6.155365211616594, 10.122362392743689, 18.720798710392152, 10.694204964525838, 205.70376970352163, 37.161913922447425, 16.278515344074442, 74.08080844771906, 6.7843719679392755, 29.241419667939223, 77.5771523576495, 45.87108590487447, 35.94962744920163, 8.588475829457916, 13.154443383959315, 62.71231116302325, 70.50991307445187, 42.87659391892075, 26.44337325534547, 41.07446511315322, 7.566384938863049, 12.725732993298143, 15.725635257221304, 33.88133166145208, 44.11235296707767, 66.74538894349385, 57.52071165986152, 13.232045482399275, 14.505761021663451, 73.54014083331847, 11.817074438138844, 26.31280899850353, 32.18192289146397, 6.669273287149287, 46.673266971313, 101.42472795262883, 47.44146450292165, 18.010836044978376, 5.8969614112561075, 17.962056392182937, 61.65358002178894, 67.03372452664539, 37.67160620641197, 22.389667615757347, 46.59085554338744, 34.14929644655724, 27.49570903966354, 184.9238511489856, 57.274746141482105, 5.34291150380333, 38.39899786739216, 18.174949790898467, 23.550783364757528, 64.35604274861926, 25.91694379854876, 56.92782335963035, 10.100067693877039, 16.32655801766012, 94.10764878229608, 6.646163600186556, 24.929087420673767, 18.837088956535364, 76.13719061595042, 120.74131360419156, 15.394327330884558, 18.19667070882294, 51.45282267542778, 38.374512581799785, 58.484687058819304, 12.506667154938702, 55.12643367864369, 34.90521963294005, 40.10625171493664, 57.40430729678104, 23.578971759582636, 13.081535683955988, 11.895530810484324, 16.053132504529966, 17.24095865774804, 25.552502052042023, 22.623170248692592, 18.13087657972388, 26.019046608642356, 45.93144046350763, 51.55416913727343, 54.62183230769421, 6.673746134453366, 11.10491326459822, 18.01465816096342, 29.256665436623006, 40.25409544687903, 32.72489022148066, 43.31879897106837, 57.32141664609538, 54.90020157382247, 53.245538091166196, 24.01388549555786, 33.07269455053612, 18.218560565640512, 87.7239903877969, 7.585084332955995, 8.484564577094574, 40.04201446491788, 64.14124207974157, 27.40426867631169, 6.419664634548223, 44.48888779954507, 29.798999613553374, 11.199038174108342, 31.33431933479331, 74.27629107139175, 62.84184471155315, 101.18115838636247, 34.62544056533217, 67.78504091809508, 19.945911665087444, 63.46225541509555, 31.295672186001756, 32.859146625530734, 68.14271964066982, 8.763166319739186, 5.224610419413841, 14.578646823985354, 11.335567697993929, 94.45317547375255, 143.27872241719317, 52.55695364257199, 33.41342827990636, 11.111414442720742, 14.25568802133152, 110.48475206208666, 28.68522707357438, 16.991328715046684, 5.522289583770204, 38.09206519986657, 44.308356666355216, 72.78612515963462, 23.22377836518416, 7.6211918709495, 15.771756285952971, 15.200833605105698, 29.70651505898281, 8.778083627088892, 63.060292211509434, 44.36532915002052, 159.14047461795724, 26.12086138550361, 107.41446082149545, 118.45200202962818, 65.9622102657344, 15.258171812926086, 40.77062300244702, 40.73093262642725, 26.835682121342884, 94.95293997559874, 25.314649970251665, 62.10005316291456, 53.715756074299335, 17.54973163439461, 5.159973612003976, 5.078398242604915, 84.08722440819258, 41.21991613789096, 107.25618885563978, 46.37744708105149, 19.461633000351085, 128.23563998881787, 89.6605920300235, 57.6873328234323, 70.7744353467106, 42.8888759245176, 25.195252425845926, 32.073526033462336, 21.411357851199938, 27.468673933058334, 60.62515231992562, 21.2387241853463, 27.394576470408026, 28.594492400033907, 124.96649039709658, 129.33282185213454, 6.245247771126867, 56.972555650940606, 16.053806362260506, 14.379612735911515, 6.891743918533279, 232.29767650637555, 74.62062427350551, 49.506078381448475, 67.51262849353475, 31.15845558960553, 69.60257549089872, 20.3950670656006, 37.501294146398585, 7.127362900823444, 12.72948499261962, 19.247055518373745, 71.09192460532107, 7.380316516034024, 51.42522281689131, 14.476278322582642, 7.206059608226881, 26.777911125286877, 18.38158562760334, 6.104094007022882, 10.053055558699342, 104.38416776337039, 6.9672952263456835, 12.789461953163979, 12.920025367442824, 49.06973747172011, 48.01181242799397, 31.370944743604465, 8.060176614434, 14.87221874082473, 14.228295960586275, 6.9234374427909495, 29.97593541839132, 6.1668326481724804, 34.84916562152741, 23.408172293587537, 91.75926279663398, 11.932600518211455, 13.776843397797098, 7.8179063877976045, 7.219043325437262, 11.243771255466438, 7.093096989369204, 113.14198825968052, 8.642389859153624, 62.597116918754075, 28.457987624346053, 41.17837469617758, 12.281608053420833, 27.83807517671484, 9.59088388710556, 28.82512939101258, 52.52512368200899, 81.38384530471285, 24.544752859157754, 112.47946414556264, 39.834823561237535, 21.342830152737214, 105.25295088935943, 7.777688827906936, 8.113055993495994, 75.52940982809261, 84.3166510236769, 6.652792879242363, 24.913548165578867, 74.26306464776881, 44.62066736892361, 78.4299476829146, 56.04525918453287, 6.783436817079567, 28.10048347202043, 72.58612344580105, 26.20426213381751, 7.481907280453957, 73.89466368778253, 17.394831178848033, 82.82933847827876, 27.06817769882673, 19.966156807896688, 219.25052367952085, 47.83521180779671, 13.531822053944309, 115.3118217851317, 39.8215151314334, 26.85379932071502, 48.04167180513899, 111.98147276110078, 8.107362512274868, 16.62990236881881, 59.698792608228594, 63.62843310573639, 16.773250011643015, 10.87863393066843, 7.487744050946207, 34.894261483198505, 12.506473207746165, 76.1071775591718, 10.685848859685436, 10.744378074772182, 93.80187740861483, 90.05393806307751, 5.571193099070601, 35.5784320760434, 9.445841159720231, 94.70295081831063, 19.2515335455866, 8.17917440024613, 125.0452609941935, 5.064309547981843, 63.03768658576694, 35.00987420071576, 24.803266583451876, 56.96577668560146, 57.23019835712101, 6.744168580962304, 28.34970261273002, 11.788780163663017, 56.912299833868325, 52.444932100861976, 16.488656502401284, 50.4278816691394, 55.598425844199866, 37.876544957152404, 86.29817493412824, 7.283547131191111, 48.6578836524986, 17.985141272144528, 7.347152128213207, 6.599524056202433, 72.1645092895362, 67.67854382148613, 7.140088405516168, 76.08804575181108, 36.18936968660056, 15.678357681672006, 79.3745361158737, 101.39631183853771, 89.32959946403429, 8.738290406823404, 39.61062433909668, 10.958336907068439, 6.226239156212072, 45.44229035860546, 88.5306058483348, 12.778066025503797, 8.390349306491538, 39.885162407497795, 37.41587201264416, 26.87716286833946, 41.24400223408941, 93.2667553331764, 20.052162339475373, 69.12617417224463, 44.68505482437534, 65.60031869304828, 32.16178916950402, 16.282271804545996, 27.896656432566946, 18.673947451423086, 6.262360701868863, 27.65273256104291, 118.42012328258164, 32.37415176193026, 34.054435075882914, 11.704236575875077, 75.41020968626718, 54.91504414617228, 28.6974517641091, 119.16397721154284, 121.46660097572628, 60.40024170112305, 17.955967308302206, 12.60888992156684, 22.436903547040792, 7.5881898336058295, 32.643565822797285, 96.58386101475412, 5.776906207245235, 81.49837785033986, 7.470441797866417, 8.092054436987508, 19.554324777678676, 6.062850881238508, 46.71745433323052, 5.789854981322951, 44.68267705797632, 25.078969077825594, 15.724728920141086, 111.63933374103199, 8.082222126346847, 5.600153742829367, 5.705222339257945, 102.504184506056, 45.03968213676548, 20.940001635045007, 8.938340662687182, 69.50339882083212, 15.663476522707176, 45.70457520138496, 55.92145405564533, 36.22424511997507, 55.81548990769156, 55.025453906683325, 57.811393991192006, 17.02543302466568, 25.507840541463647, 63.40429843347716, 35.28876526789483, 28.84783773226062, 18.512210355371685, 9.844360803515, 23.487225268967705, 8.033264762950406, 21.589518663673584, 24.29237500130904, 54.144217829796204, 36.08793792654766, 11.704019184917382, 16.16381299294835, 78.11794818825, 28.876845853564284, 36.61912261175091, 56.567460666579976, 8.612298433114741, 9.134879401564174, 8.513300396821982, 5.5810073697979465, 13.732306153045625, 30.58923256950771, 5.338336559619044, 53.574499857685254, 8.062164809137043, 108.7806699570377, 24.681385145250697, 45.55874507000776, 19.687109680276286, 9.770862891335684, 25.37988123487431, 86.66776348769133, 5.957933749543234, 20.888673066469597, 8.688240771775616, 13.04528996113302, 12.567459505089381, 10.650792345694462, 10.862958813261965, 37.095336052108266, 38.719559921063755, 10.810387522719758, 41.414525659645584, 6.575000988462774, 23.886773933495625, 23.8110842083318, 35.48025185939645, 66.28321927286562, 23.204143681685654, 32.736186444814145, 46.71970650689998, 34.77531296563486, 52.24243759146665, 36.447500600039014, 55.51075501742165, 6.7875291660205646, 41.619278075771724, 11.033050714535058, 70.84176815378848, 35.81248199715808, 35.43898510574576, 92.32181522856163, 36.12286906959813, 34.66360191642402, 121.2267158606927, 74.84441336189653, 7.008868019846362, 29.58932609520149, 25.04080654489206, 23.115357206793597, 13.744691616256103, 100.06852547888677, 59.51673447900515, 10.449594071718023, 76.63749343421074, 10.873432580442067, 29.7888644399193, 19.164788220745862, 11.199799038687495, 17.045733063424965, 19.10274236794985, 15.573205681485177, 62.71529887172751, 12.775655194273554, 32.463081761448535, 26.82605370614081, 6.565386527464013, 37.79169180251458, 54.29310954307557, 90.89626657650393, 10.793485700747297, 73.89359204206912, 9.269151905859134, 53.14203625682497, 33.37350755024241, 110.16941204710574, 9.430606273079272, 56.457724189566534, 72.19689482207284, 15.551767943256166, 50.12712731657316, 7.2795461235882435, 9.295742483865551, 56.775543791493334, 16.77537917154643, 5.452465071779839, 31.86857514793375, 22.915785693989655, 11.213879320667225, 15.447445281221889, 36.9677818879313, 5.540247898875703, 144.76597686085273, 16.509926902331156, 31.746913312861274, 47.18942480802544, 75.85604702799031, 105.44629129407446, 7.623754584632416, 72.86903773615481, 8.352581720998948, 92.50697692385393, 45.65761440095356, 31.038318615151866, 25.722622489257073, 24.661743599697342, 33.83302823759197, 135.18540400983957, 24.66230843498031, 11.88998350184018, 33.82882398109848, 9.405322622351283, 59.21924798173201, 91.11246517394767, 28.486221290287844, 56.57253755126662, 12.422541145919737, 17.11458485121444, 57.459560186998544, 30.626919473310842, 60.343931020796006, 7.618419481414621, 7.058629817584997, 9.732250889280134, 27.574186626294015, 20.840661993375996, 68.61179649569434, 44.333606820537845, 51.18899761058999, 145.2287077064048, 12.23810334441873, 13.42131233484875, 22.150001197058234, 19.584660577421815, 5.156186646951924, 72.16393234616012, 16.914944805776315, 33.67716042447803, 5.559450433835959, 24.07360340689833, 7.725845271937265, 17.880748013780178, 49.45367415289802, 38.73657694100439, 127.27776180468243, 41.68296720154695, 10.07651242550622, 97.75493037105203, 10.027621302022983, 36.43270547484728, 35.237454534027265, 42.47769715115363, 30.826408032612523, 21.614404070216608, 8.40912434513522, 31.974657817939086, 42.871853583103444, 30.294202754483212, 13.531727832954987, 49.757506903574786, 38.6602440200578, 7.609465505495722, 171.58304523003034, 57.98699674386991, 45.298986385407076, 20.845541906180244, 39.501359384988426, 67.75161945386874, 18.013462175125316, 55.375940294487336, 41.4215478133308, 11.249304464228308, 10.313807394134672, 89.58878773311984, 13.378222670257273, 54.29142513225399, 75.42254851350582, 143.26721214844858, 85.52486893971027, 57.52173424327477, 30.339475197179986, 6.310857052450734, 38.14812408765106, 123.65210173894756, 109.37238290639665, 118.98169106047482, 44.78775102233843, 79.30838149074138, 8.229391791336814, 15.16266726363384, 19.35603788866408, 6.464999252027863, 137.8796932835323, 5.602763550215124, 29.112932896025924, 22.59593187000068, 26.716879552194655, 64.53366018729912, 23.21220816831074, 17.705510515449145, 10.933353779300534, 14.134363964049253, 20.846996953648713, 19.512131160089325, 37.74000690398967, 9.973935928098177, 125.85652386833641, 60.62547972885575, 68.36645398696874, 7.375256356539699, 52.036437168020655, 14.92136248684374, 6.745628918699325, 23.589946071051127, 54.783356329334055, 21.551443325109116, 6.520218178408085, 9.249357449218971, 12.961298077726939, 79.4028282729639, 7.078871567964933, 31.73361019195084, 79.6174180314957, 79.23274173436846, 94.69423795770592, 23.60229209269042, 168.05313557039648, 11.63952216700438, 14.396373784331457, 5.974458474330102, 25.79457309510782, 72.19521039530034, 15.84634502049678, 17.022377832075517, 46.745555851556034, 15.492183803073702, 53.59158856119094, 16.77166231707636, 10.547478107309825, 89.3603138186528, 5.699556507815992, 40.05607573619283, 12.81638252018352, 13.093415363217714, 46.72221401030562, 190.12007237423546, 49.56255095589971, 97.60939244721077, 32.74685571220521, 40.9494904338423, 20.89856692743277, 34.217053199919626, 9.845771921623701, 21.235103707934726, 65.13807865088121, 23.165188363437405, 49.90800438540308, 101.98917451225154, 79.79041269671663, 15.494293727620105, 18.30915799900368, 13.727790399775904, 78.44762412784192, 23.014816967853022, 43.911743611213026, 22.92309120791168, 110.15661623622503, 35.50378735536469, 46.25588963614511, 27.057439265456324, 5.798541429966389, 9.760777640376206, 25.28544523724436, 22.9903146395034, 64.66605567242118, 9.29139558138938, 23.04865440321161, 57.881959278328324, 16.163851650569608, 12.938151608924414, 31.027361169768536, 20.29742685616569, 51.35154181734738, 34.291110698872075, 31.17155835421095, 40.00107841114481, 46.5892349012349, 20.861645201929857, 17.368383699417546, 41.71436374849223, 14.937877328054517, ...])
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)