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 = 47568
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);
([2888888.7223016443, 2898032.2219391945, 2910671.8529201904, 2917749.1172050787, 2924063.0892734113, 2926360.3579120156, 2958062.444560396, 3033514.8447665297, 3034746.25408625, 3038774.5509274704, 3050751.144325536, 3062673.1799724335, 3096248.2430757093, 3099725.6806314, 3111528.5662167193, 3116839.0625, 3143067.112583183, 3143618.408403598, 3147299.921726105, 3154939.1344052968, 3172432.5458009723, 3238468.75, 3243376.980372113, 3301920.93492681, 3333848.393554862, 3334190.567247736, 3345612.9212183617, 3367908.2017896613, 3397082.276886792, 3401395.1080706324, 3409404.495841172, 3414403.9932950325, 3414682.0786235365, 3415527.0047941497, 3416382.9456649474, 3416906.77908597, 3419580.603967435, 3432267.4809420444, 3464348.4375, 3495635.506375079, 3522637.5, 3525692.039951119, 3554457.8165006246, 3580645.3125, 3769998.981340575, 3808261.5605770354, 4238752.691349528, 4255492.176303943, 4271970.1746685505, 4503688.2307812665, 4611860.9375, 4659695.825748942, 4681853.675065343, 4712788.99141735, 4715145.963341619, 4782159.199171214, 4801550.71569945, 4857985.506190618, 4858042.413232451, 4861255.96203818, 4976360.9375, 5054771.937140559, 5087855.037033997, 5104097.142492731, 5154136.6115780575, 5171857.882150017, 5190042.355035099, 5190871.765465946, 5195487.242674656, 5196185.852323596, 5202899.877970981, 5239527.9605437, 5295604.955089748, 5296389.641989329, 5326532.51183596, 5329101.449876759, 5332237.430242497, 5332734.250941861, 5364318.75, 5366787.326265833, 5423548.33175661, 5432085.69312462, 5432086.092905454, 5454840.63896835, 5456934.375, 5485178.125, 5497323.042215965, 5501210.722670648, 5505252.784451522, 5510276.260450884, 5519085.439731288, 5521407.536834264, 5559599.813237331, 5561603.125, 5587745.138521499, 5598517.1875, 5617269.163072642, 5648676.897886, 5654216.429300983, 5654427.713292627, 5655436.255005022, 5661481.288088624, 5679671.008570425, 5682028.125, 5682189.630024998, 5683313.682413696, 5686340.625, 5693339.0625, 5696972.120666895, 5705646.868727855, 5719454.104551942, 5725610.606827771, 5726840.8566163555, 5728718.75, 5729812.375036257, 5729849.925152399, 5730379.6875, 5733866.29726588, 5746266.0916747665, 5749446.374370621, 5750552.773298764, 5751082.8125, 5753508.492540951, 5760548.095838252, 5767969.580323056, 5769025.688335494, 5770514.314937813, 5770953.84817717, 5774476.685498353, 5781962.727666891, 5795742.1875, 5796709.891695341, 5800104.975763485, 5802051.5625, 5819076.5625, 5820359.209938645, 5820529.6875, 5821375.406904171, 5823715.139769988, 5823808.749860321, 5826954.6875, 5831711.140709416, 5835070.094304, 5837649.66682144, 5843251.5625, 5848546.177252486, 5854824.01897893, 5865357.548176269, 5891044.52523542, 5895815.625, 5898976.4061680995, 5914445.691876357, 5917689.906102209, 5930910.933291279, 5931018.89524582, 5931725.859225776, 5953735.154047327, 5961223.4375, 5963316.546177042, 5965079.97010109, 5966688.761395752, 5967762.449687762, 5974761.989469537, 5993829.2221139595, 6000648.544821234, 6002360.9375, 6003352.969124552, 6003600.650503593, 6004652.446742132, 6004964.549475819, 6006092.463925533, 6007273.683739378, 6007390.625, 6007771.975052318, 6008629.048188877, 6009776.5104966415, 6037955.868993961, 6040310.931060705, 6132162.002371387, 6145183.1829307275, 6153315.342466373, 6155445.792882179, 6156047.797248054, 6156223.023064153, 6207503.551392514, 6210593.75, 6243463.510836813, 6253294.676754761, 6254621.408005466, 6285625.647587994, 6409456.657137393, 6437507.704154005, 6447251.908451728, 6451531.24908446, 6458931.744359235, 6460854.001059201, 6467787.9487245055, 6468045.805381998, 6468493.255201239, 6487279.331296149, 6492183.174749752, 6498475.623201801, 6516772.543059981, 6518419.147444327, 6519479.683127903, 6520421.9873019755, 6521379.974796793, 6534433.755585626, 6536099.834710362, 6537003.01688382, 6544179.866961542, 6549535.689921833, 6550782.007149614, 6569115.14094274, 6583698.419639422, 6584364.0625, 6584883.833520102, 6595249.611983904, 6597851.564136576, 6656955.741263161, 6683662.597905866, 6831843.971341276, 6858038.431721605, 6885280.85079709, 6891698.31178155, 6891939.036330067, 6914201.110934178, 6915223.210338813, 6930157.570187813, 6949682.489459198, 6966472.76369942, 6972268.202483931, 6975120.671199386, 6980438.089557182, 7012746.2091366425, 7013096.355711387, 7014020.019153573, 7014213.854869923, 7014864.227769874, 7015084.547630872, 7016421.9864357235, 7017773.730585348, 7019737.0384870395, 7019946.801849851, 7020252.708117545, 7021089.837971517, 7021389.41899409, 7021474.25590503, 7021595.290293564, 7021687.1450041365, 7021952.974354068, 7022138.181822003, 7022166.581022283, 7022588.119294073, 7022631.51114021, 7022738.133645528, 7022763.832668474, 7022771.820824479, 7022837.646907581, 7022872.4741915595, 7022893.887190507, 7023250.214028646, 7023497.750926678, 7023567.299135768, 7023655.296231377, 7023676.992656655, 7023794.919020444, 7023964.435880661, 7024425.286353669, 7024641.656730093, 7055169.296342009, 7056668.673363564, 7058326.384061938, 7058877.463232759, 7059631.621177949, 7061454.7306408975, 7061912.173393215, 7062051.006838262, 7062103.032485974, 7062525.984090276, 7062598.555501627, 7063041.643115397, 7064257.590708054, 7064381.988831767, 7064906.570497774, 7065157.346971646, 7065415.694397321, 7066061.376277243, 7066393.49171689, 7066464.15960359, 7066498.941558011, 7067518.502878498, 7067747.723549158, 7068063.9715449605, 7068162.660655574, 7069165.623045621, 7069635.0933547765, 7250157.543188957, 7251018.477938629, 7251971.018252983, 7252733.716816459, 7254428.114653009, 7256645.71749591, 7257765.336918761, 7260222.999838764, 7260460.997194486, 7261410.857562842, 7289452.44595411, 7293123.518833984, 7293233.531066454, 7294549.957708136, 7298846.176454977, 7300512.781811269, 7300594.88290325, 7406472.994806766, 7442314.939932035, 7449437.351342243, 7451670.243947537, 7651886.603093944, 7651920.96951362, 7655943.842644623, 7656513.803992367, 7692682.8452919815, 7693484.526047676, 7751845.521550162, 7757076.484731378, 7765445.926320821, 7767483.250593032, 7878178.644610202, 7896056.779483961, 7909948.999833932, 7939403.874371489, 7941222.714357253, 7941286.806908456, 7941424.105177374, 7941890.07911156, 7942452.22094163, 7942836.935018195, 7943432.033544996, 7944513.637784328, 7947433.85933266, 7952221.494539825, 8021162.977531325, 8024405.115836432, 8041747.882761659, 8075801.5625, 8080054.889366474, 8080399.529676762, 8080694.169087889, 8082410.980251034, 8084098.962349715, 8085912.5, 8086152.331659882, 8086877.782892796, 8089124.714977663, 8089269.8827696415, 8090037.1765722865, 8094190.482962954, 8255550.571524548, 8268895.654534761, 8270036.497152487, 8271175.615818559, 8271623.6574157495, 8272521.3439635215, 8273112.909086168, 8279067.743073302, 8279907.323275752, 8280034.34403649, 8284867.618452449, 8285508.410453021, 8286890.28049619, 8286955.962028872, 8287103.842380319, 8289115.108197237, 8289123.195185061, 8300204.956200468, 8302079.192945707, 8303599.27364178, 8307334.698261356, 8308336.828652014, 8308716.075167157, 8308888.261668256, 8309052.10920648, 8309489.490386528, 8310965.688971574, 8323872.380168072, 8333989.009896619, 8336685.467289293, 8337232.019203079, 8338130.90596341, 8338507.319474601, 8338553.391344832, 8338861.417652851, 8339438.78372885, 8340310.263816337, 8340758.0468033515, 8351447.840277048, 8353316.314276649, 8353960.307469225, 8361120.047425973, 8361879.111495455, 8370155.502399935, 8371020.383587823, 8371420.397142174, 8371721.062536022, 8371879.288245298, 8372243.884874689, 8372406.426650989, 8372865.230409039, 8373096.160091552, 8374626.6445803335, 8376918.411813216, 8380181.471882168, 8382230.524841324, 8383437.125171432, 8383828.460490143, 8384303.533887885, 8384464.048769764, 8384580.1135064205, 8384656.194775276, 8384792.442583998, 8385121.9538584035, 8385521.100457119, 8386848.22046819, 8387631.095997979, 8390753.371282145, 8391982.8125, 8393318.362686627, 8399386.12797182, 8399539.492925692, 8400780.524161255, 8401305.299161663, 8401451.818944937, 8401486.239821587, 8401522.580875972, 8401578.564725175, 8401604.462591378, 8401772.341167882, 8401850.65674824, 8402004.13018338, 8402013.098163646, 8402042.488375347, 8402093.283620933, 8402183.96747964, 8402185.968256386, 8402261.290558994, 8402353.610408263, 8402601.771177089, 8402671.962885793, 8402685.304857083, 8402731.197825154, 8402751.45419481, 8402843.344733631, 8402868.852171326, 8402972.376661252, 8403086.223303966, 8403646.700718813, 8403745.77754434, 8403789.52606926, 8403863.6641559, 8403951.449483126, 8404107.732017396, 8404213.2471799, 8404238.843581794, 8411692.244673222, 8411842.1875, 8412153.755317744, 8412733.66231879, 8413065.090051625, 8413740.32170057, 8415314.217574975, 8417024.986020815, 8417773.834624527, 8417793.905254986, 8432372.019829758, 8432869.447929515, 8433387.725215953, 8434181.08076141, 8446467.357566189, 8447466.341456436, 8448041.35807503, 8448368.46918016, 8457637.370591253, 8468901.146542551, 8471466.823425254, 8472164.227427112, 8472435.5815914, 8472480.929222286, 8472531.134510707, 8472605.764924169, 8473245.864631314, 8473305.318199972, 8476635.277577534, 8476721.576290643, 8478162.183696445, 8478208.324822215, 8481476.033974336, 8481815.710621709, 8482253.701081805, 8484432.366440596, 8487522.64001966, 8488364.857530417, 8489743.822003525, 8489782.129130943, 8489894.353876764, 8489990.44925738, 8490847.07467614, 8491443.026432121, 8495712.476874731, 8496349.814681802, 8499650.121982692, 8501114.83966889, 8501845.822733138, 8503857.635527847, 8506223.115996415, 8507070.533800183, 8516198.530118112, 8518594.314292228, 8519079.084805515, 8532747.677303033, 8533268.247478222, 8533341.864824442, 8533466.742450941, 8534523.346214877, 8534783.820783285, 8534898.18625537, 8535008.849162167, 8535055.589688862, 8535085.100825924, 8535245.407979596, 8535733.164394831, 8537857.496678784, 8538144.806108681, 8541508.318647562, 8542277.134711334, 8542431.844674325, 8542631.284966907, 8544235.400454242, 8552357.397217983, 8554894.554707764, 8562478.04920217, 8564197.264272965, 8567048.49248729, 8568962.84708484, 8593155.320607862, 8593630.50433404, 8593646.232316831, 8594514.164843772, 8594563.005439235, 8596387.746796288, 8602116.907115389, 8602562.936969623, 8604025.085049644, 8604557.132710477, 8604573.914852079, 8606070.613052573, 8607438.455422474, 8616874.064452117, 8617288.070012033, 8630341.496981228, 8646663.134764435, 8648504.038017131, 8666300.962598598, 8676675.693685628, 8700748.02431031, 8719945.050039085, 8723806.277401721, 8743477.045440577, 8744931.148637902, 8745319.238358242, 8746905.099226566, 8749056.25, 8750257.267347096, 8750743.693567177, 8751405.473149432, 8753788.49522228, 8756506.26513696, 8772854.577434406, 8795882.097171055, 8811945.598081669, 8925026.074207949, 8950895.783723976, 8961853.000241894, 8961857.087624494, 8961971.627660368, 8962716.93018757, 8963329.343085947, 8964023.621913586, 8964209.232298093, 8966037.495613422, 8967252.560678665, 8970959.286658106, 9001640.850524692, 9005924.672538295, 9012255.662895544, 9016677.33880669, 9028783.731015136, 9029020.45134993, 9030047.896349646, 9031649.16580029, 9033288.291097144, 9033598.530059038, 9040910.810779728, 9042720.045254912, 9044572.612200279, 9045593.109165413, 9046317.08441649, 9053942.561432587, 9056347.07523459, 9057166.620759482, 9057460.114580136, 9058638.083984371, 9059131.197186394, 9059815.589941883, 9060121.669417102, 9060843.049832262, 9065614.916148368, 9068029.577158988, 9068715.721699338, 9069954.655669563, 9070610.494192896, 9070826.437016157, 9071925.33075203, 9072418.199968165, 9072906.292114379, 9073305.314912427, 9073547.272658091, 9073774.786528775, 9074132.805099696, 9074227.914766852, 9075407.307586651, 9075432.761773238, 9075764.41004518, 9076840.311781002, 9076890.625, 9076925.948887888, 9077045.3125, 9077116.007728856, 9077221.765830193, 9077224.844180038, 9077302.700887088, 9077713.045169273, 9077730.86030199, 9077743.243074095, 9077884.325655224, 9077980.3727413, 9078283.946308626, 9078416.589688424, 9078651.71025713, 9078758.560616959, 9078882.558972314, 9079410.63102963, 9079429.286900796, 9079455.064038381, 9079611.63779361, 9079881.761399034, 9080127.281002661, 9080559.10058269, 9080750.527213603, 9080824.495576484, 9080946.117914353, 9080972.874738453, 9081017.627158534, 9081854.092185387, 9081897.11338672, 9081907.57411136, 9082125.712011704, 9082175.361580623, 9082285.154108172, 9082325.086732915, 9082487.480056463, 9082539.644595373, 9082684.395681856, 9082780.360741716, 9082921.068733845, 9083095.364905529, 9083148.020137575, 9083227.499739151, 9083339.045773478, 9083362.21847572, 9083494.602591038, 9083527.295915708, 9083671.636869118, 9083759.229124868, 9083781.771464737, 9083857.303689985, 9083918.046183573, 9083956.779182743, 9084033.614068093, 9084037.798026184, 9084052.932893801, 9084277.249199832, 9084297.552750038, 9084316.21565888, 9084451.299338961, 9084478.85702515, 9084528.068985462, 9084543.98410644, 9084751.875039212, 9084844.927548524, 9084848.12929114, 9084873.871297162, 9084995.364238877, 9084999.028633034, 9085107.534438029, 9085181.111964326, 9085238.965160822, 9085280.048679939, 9085395.3125, 9085397.685648331, 9085441.447060462, 9085476.1286952, 9085522.146089138, 9085568.659632858, 9085652.492740571, 9085666.880228197, 9085674.622861706, 9085691.312286664, 9085758.721802955, 9085786.641842952, 9085854.470426831, 9085875.397447193, 9085886.840215318, 9085948.234662602, 9086031.83834603, 9086090.301614366, 9086199.235939724, 9086423.705336394, 9086480.884830853, 9086533.85956025, 9086551.246717503, 9086617.792984683, 9086674.943408258, 9086811.595237285, 9086966.131260455, 9087053.752326757, 9087082.452059906, 9087144.479097009, 9087437.377554439, 9087522.279813197, 9087570.479692021, 9087611.026609113, 9087685.967687275, 9087795.337326745, 9087833.231335912, 9087868.786912812, 9088919.635196915, 9089574.844370468, 9090447.366499837, 9090613.906489043, 9091887.233180955, 9092923.191340983, 9096785.230119776, 9097625.53975812, 9098065.14641294, 9098701.551058894, 9100999.620015047, 9102516.368458502, 9103245.069773944, 9103447.808930514, 9103773.19167795, 9103876.681239989, 9104204.524321856, 9104335.01964531, 9104379.24591727, 9104527.555644069, 9104753.879658371, 9104797.637535166, 9104939.430765241, 9104992.22172461, 9105309.820898555, 9105492.705390466, 9105540.512709199, 9105544.578748537, 9105583.102698585, 9105622.093433412, 9105720.607819958, 9105936.020225251, 9105945.205909654, 9106015.455023676, 9106061.495672386, 9106434.751939556, 9106620.321246935, 9106692.818154242, 9106737.215264726, 9106739.079866543, 9106805.729383156, 9106893.705461383, 9106992.02087914, 9107028.521605046, 9107041.706680255, 9107279.924732232, 9107430.826262074, 9107509.238453217, 9107509.683231667, 9107534.976761026, 9107551.816282814, 9107661.419253007, 9107694.790142078, 9107880.667391075, 9107972.45220136, 9108031.291875985, 9108037.111060334, 9108112.168135926, 9108188.804451123, 9108264.937483769, 9108318.426460199, 9108383.98512978, 9108781.6118576, 9109032.945330998, 9109050.161804566, 9109078.401125113, 9109101.227382584, 9109115.171903254, 9109116.947639843, 9109155.804108487, 9109206.20059734, 9109211.346721279, 9109223.140179582, 9109382.167493073, 9109507.0835078, 9109537.15012674, 9109551.682262996, 9109585.736400736, 9109585.894435124, 9109653.23293113, 9109666.74584104, 9109681.324603012, 9109682.782819984, 9109684.690959373, 9109715.491120344, 9109740.797260288, 9109749.340202225, 9109782.648092357, 9109814.045978589, 9109877.501693675, 9109880.220413303, 9109892.789408077, 9109939.226476884, 9109977.365509236, 9109999.108073262, 9110032.53931188, 9110032.763312897, 9110054.684941512, 9110141.255106283, 9110179.488404747, 9110277.881839583, 9110278.15658974, 9110362.786666038, 9110388.558286002, 9110411.706584537, 9110419.388535291, 9110440.59881422, 9110473.069055934, 9110556.827246947, 9110698.88759922, 9110747.070337573, 9110750.302683614, 9110804.124398386, 9110808.656069567, 9110824.54961167, 9110832.411349589, 9111001.653003586, 9111075.968765914, 9111128.12182002, 9111159.701659681, 9111234.254056439, 9111346.095756764, 9111361.452774078, 9111500.508854916, 9111557.452601556, 9111587.6756722, 9111616.77778496, 9111665.64032698, 9111823.427911423, 9111853.817376923, 9111909.260149762, 9111922.685575169, 9111984.873237414, 9112004.530338028, 9112007.804433446, 9112021.03669868, 9112057.8125, 9112105.394676303, 9112113.327940766, 9112161.065728003, 9112179.423431767, 9112213.995679893, 9112239.22447623, 9112252.518550443, 9112271.30568613, 9112276.502737476, 9112348.06882924, 9112367.59100309, 9112396.035530377, 9112506.909479754, 9112534.959267925, 9112545.25084015, 9112564.726579498, 9112584.41254307, 9112604.21032863, 9112614.348824361, 9112631.267845541, 9112660.13468197, 9112670.636140881, 9112726.958318094, 9112840.166303545, 9112853.263117893, 9112893.360467643, 9112921.492341762, 9113007.225863377, 9113126.490608558, 9113135.62709797, 9113271.70392834, 9113424.189755935, 9113441.013936898, 9113463.980579056, 9113552.062985074, 9113619.310644483, 9113635.172472937, 9113683.430195507, 9113810.219838556, 9113827.167154841, 9113863.3824183, 9113986.94237243, 9113988.15668244, 9114013.108239498, 9114016.259475065, 9114039.703851765, 9114150.852210889, 9114171.475854322, 9114239.468229575, 9114254.08977303, 9114399.476511667, 9114415.071374914, 9114644.791975161, 9114691.514146391, 9114785.991159717, 9114788.121426651, 9114802.47651683, 9114810.830084324, 9115006.725194748, 9115079.282132836, 9115103.023178138, 9115235.31195359, 9115280.621332014, 9115408.393604374, 9115409.018508017, 9115429.339429123, 9115475.703470943, 9115552.868340332, 9115608.135965932, 9115612.613276035, 9115707.65518941, 9115782.836722007, 9115812.393976577, 9115863.946451342, 9115942.259101314, 9115985.19031629, 9116051.138017615, 9116055.489402642, 9116059.171409877, 9116125.873423593, 9116142.196857115, 9116209.70275312, 9116241.011808595, 9116329.6875, 9116424.179834874, 9116436.663059905, 9116443.235068092, 9116463.014445722, 9116464.84794873, 9116495.094119633, 9116548.195896259, 9116556.664107691, 9116580.951885762, 9116619.792672724, 9116637.5, 9116774.109355243, 9116777.252205634, 9116792.686916668, 9116793.78188749, 9116825.816157082, 9116825.923490694, 9116895.49029879, 9116923.853572283, 9116998.090257136, 9117009.137522195, 9117024.483247338, 9117033.470458291, 9117038.378850322, 9117048.279600002, 9117081.605673177, 9117136.847751409, 9117146.873454493, 9117183.926730929, 9117215.364272997, 9117216.118829904, 9117216.296700928, 9117246.164823372, ...], [6.053421923758139, 10.315075958895314, 8.274935564891248, 12.38715537472879, 17.791038405916893, 8.885115259981024, 14.725543301566322, 5.658838260619104, 7.393108694331833, 6.212080921092012, 31.50762398184404, 9.122745356133054, 43.70424078421546, 6.599355490771338, 14.396969237651142, 48.14478813537609, 5.609912963326629, 9.05835334434752, 7.101026728625018, 15.222849430561231, 14.013892367197501, 71.05022620700393, 8.520649285179402, 17.99755568636348, 21.249596090657654, 27.43183619789341, 14.011325274508334, 7.750378794838487, 13.229556733765747, 14.215651278630418, 7.071965573009672, 7.950685842854012, 5.761604453916808, 11.897392397938015, 9.446598398517748, 20.473175312892486, 31.301232740085375, 9.592494377116592, 71.27047483765735, 5.782754828791602, 48.76852605922804, 19.478753286379728, 11.133965799836947, 47.327522436573055, 9.837877735146261, 47.12690130615666, 6.213921536508625, 6.265784861885348, 101.69740338114872, 27.71010646442047, 30.65024737162821, 8.578016469312836, 5.855833224520918, 8.249341961262466, 29.596061110720207, 14.31116614093371, 18.61410666800513, 6.421540420254953, 5.073024272685505, 5.598309590371584, 30.27403738731976, 15.183770693860907, 5.354043317282515, 13.261048241887208, 16.10721859016477, 11.238347874519203, 5.347695460677788, 6.741834205476734, 9.122902364538653, 8.242042436130427, 35.39436870741245, 7.544820276334722, 11.573416898375156, 12.172884250244538, 23.742263174518452, 81.04495156139623, 23.933175916552777, 26.292375703229467, 47.03992274035595, 25.509743983421785, 26.595718694383763, 30.231922550606523, 97.78245279211576, 22.25223046123759, 91.5926097530704, 47.04462583325583, 8.08805000544645, 8.176147862418784, 6.697371267564911, 23.72460227999242, 13.33216116448862, 24.066635847928968, 10.847815731387252, 69.83631874180304, 9.188503089822339, 44.95533251246761, 9.706938666695708, 41.93359750369026, 19.25363039980668, 13.57454306626357, 5.727267291585302, 9.363818256290639, 112.48573503621502, 82.46300753971006, 163.5382761617001, 13.666914199874341, 84.20099302612246, 48.29147788195442, 17.443029716437934, 79.5057236309771, 6.029505494574533, 23.366696718251195, 11.510123904478782, 75.3960484395085, 14.485678675374547, 5.458563140552492, 42.90560767566818, 18.320220833678047, 10.948018656293401, 6.037540764737702, 44.10414756197428, 66.57362560674157, 23.306338173410605, 23.23276880579781, 45.928052603168496, 93.65581094958371, 43.131593987655705, 8.709997861453479, 9.437616710072554, 20.723659151770907, 45.52851553011412, 6.334763460115768, 84.75989606151501, 61.5889981218227, 52.39548414363952, 83.87115701437337, 28.53558260826984, 16.758101849395807, 13.142540319253438, 27.51841630729094, 74.42893084418495, 5.7198140103941775, 54.82334457358351, 5.910906175646987, 85.47976438437041, 12.815235985110158, 15.890922365596403, 14.02143723202768, 49.60884890151722, 94.5836275518628, 8.205601100026932, 86.43551696730206, 19.556019991923645, 11.121134667100826, 153.5884388489277, 129.41778234149683, 66.17696956823944, 79.81763481589765, 120.85574529508554, 28.785395864740533, 13.905911618271205, 32.873432396655176, 6.665690748175924, 10.470656098284886, 9.423828454378123, 40.82256059789313, 25.7845959946596, 12.323519571974073, 19.881878828036456, 5.17686024762196, 7.196062144697749, 8.42123160661126, 81.87576353877657, 9.417460595525084, 155.17269133916116, 27.53622753987587, 5.5933080644460125, 9.325964316322274, 6.206309270812866, 87.29855156655248, 76.03313196312922, 118.39170019428434, 10.25548110279561, 14.93542616237755, 12.43215388066314, 73.75885187192156, 181.63669046154507, 20.23802833896381, 42.97326575948673, 26.054491537026827, 16.759321518640892, 10.962475336895858, 17.22193183361214, 14.884817068732705, 6.86638492703562, 10.201142192514679, 7.244624410120094, 7.7917938889605685, 6.412227122292369, 10.613124030299872, 11.745428332863147, 7.845343575832345, 18.292403564479336, 9.69170567976103, 47.24560075115795, 15.387555183864935, 16.16263890990619, 13.010478652627308, 10.878816841406106, 6.2536346261772335, 9.487902357698204, 5.79588592577292, 5.872210639760249, 21.65362559219981, 22.20297644125984, 92.12230031937692, 21.089060717214593, 11.698252570850038, 14.94775095533552, 10.415866902343694, 7.6390366038873765, 8.407200495387194, 12.981598471010933, 10.556233353234127, 9.22731626530189, 14.842691334217347, 21.99025763125991, 10.244362428128042, 13.888877771429712, 13.838312870585371, 10.215913381327471, 21.031845445549823, 8.485831631556483, 5.079776359983452, 8.825412034039758, 15.55231478923457, 5.33196926282917, 14.205075835184177, 7.664127099217795, 9.481766369660626, 15.383971020251321, 7.712796653216192, 13.432703571660525, 7.576993068912647, 10.533140185909698, 19.039342417512334, 16.131630728793226, 8.772614088877798, 11.093173214875236, 18.931938390797, 14.396809291415797, 18.383837884779943, 20.492853473775497, 17.977770590004955, 16.039947473273877, 25.899073549253878, 11.467794834913294, 14.738961502178833, 11.365368533526386, 17.852162443560456, 15.933154811617896, 6.521173777727171, 19.814073400459, 6.281406529219488, 17.911481184665654, 16.880894560410226, 13.627565420394056, 11.766193649654742, 21.876753833510797, 13.242557151301007, 17.53271213366105, 9.267432632193174, 9.184947555027913, 6.18705909592833, 5.302692049883823, 22.45176911428776, 5.15782428422505, 5.50670686125921, 5.128529904628235, 36.514632840025996, 20.925967782291526, 7.417535403035828, 7.524941891036704, 8.720169712670625, 16.322128011540705, 8.966526608470407, 9.390780059458065, 5.638788464319082, 6.713015040506013, 37.37028941213069, 19.420921286701287, 6.062772312629008, 19.594953481142785, 26.93750728268201, 7.16433335753242, 11.124653357150336, 6.004504706022411, 5.520151241364761, 9.111488011826491, 8.698731553033886, 19.084198392317745, 11.111572213707653, 9.699055436222855, 23.90419065158299, 8.067944479755294, 11.222312919270935, 17.48197741059745, 6.635111769468088, 6.09659827191594, 18.63394096527146, 11.860120902446798, 19.71748671705003, 7.708446537228811, 7.45491440136464, 5.781935132201379, 10.202742874193289, 5.926563226998741, 5.458831863238215, 13.777070841247468, 18.2198686439587, 8.336184600369501, 15.412230822494212, 11.179352563418629, 15.550280929580738, 7.17751070017352, 27.075586515134788, 6.154345154046323, 8.532681755467445, 12.050214985978409, 7.806668224762969, 6.881216805983564, 5.570589866807435, 5.575252777734467, 5.764417585787692, 6.355408423228676, 7.4170516459951825, 8.668431234458811, 6.402028264772868, 5.31591995551195, 6.045018729109144, 13.810209779495272, 22.774647358595928, 17.138738920926425, 7.765872164603524, 13.178589649835063, 35.47386288031156, 20.459272865156755, 21.79433969653353, 11.85269751405092, 11.19519344529678, 17.40707951288076, 42.887170287308095, 6.171912080918752, 23.227379832455625, 23.94396467359946, 7.454870366469119, 13.837129152803968, 14.42642513964458, 17.683023705384855, 16.427906857060975, 17.6117364385358, 17.955887598419995, 5.349514290788108, 7.421835921056517, 8.515442680533233, 12.123424531947547, 5.676314169567353, 8.270270896109958, 16.88514000202277, 7.834839358443733, 5.38546528794199, 10.705568041494415, 10.021833143417128, 27.872014804690412, 7.517886259021958, 9.569431432704429, 8.041288460974847, 8.784475330281266, 5.838292391901746, 5.882997784065998, 7.245037983364645, 8.735093267273298, 5.078974685992787, 11.86958121893943, 5.536193360137668, 17.294111180449903, 13.984727666997522, 5.191605633650676, 18.993561737587843, 6.696712510154498, 31.47001574062834, 8.432632647423118, 9.773318457068328, 9.106308714035672, 6.954947981126811, 15.916683134288009, 20.57514069520702, 5.492149787116544, 21.05063435520235, 24.20736554938951, 13.122598374211975, 10.130708033761216, 6.498292909085725, 9.404013281941852, 6.923090811656569, 6.686332889387109, 11.345278521954363, 11.415525584381221, 13.624315068641193, 12.773630870506059, 8.330465023119398, 5.09185773942076, 8.407504286186947, 19.507029494749602, 10.588355006249673, 8.472332841129518, 7.758137636420786, 5.244761173933337, 6.322564571992166, 8.25758788785531, 7.698178438971355, 14.686413224559718, 19.13138675520828, 10.80461113370214, 31.75531157758515, 9.548708201809267, 35.24301680204543, 22.696025135537543, 17.4205965201212, 5.734710200561401, 12.747343554953618, 17.92980642186881, 13.9797045487895, 11.635594255509583, 19.717512464406127, 11.892418448366415, 5.23889386364726, 6.327948409312455, 5.08103689732397, 20.939776427719654, 5.993246838672084, 11.632983869908607, 13.419078778209224, 9.009058636937175, 8.302909060210482, 7.736127512220201, 11.717903284858735, 7.177408646373775, 16.257593680085215, 21.024376786354352, 14.7463038156663, 14.544167451135097, 22.147908486559594, 11.405647746510184, 15.775836675375391, 9.585352854982458, 6.46011381902855, 17.069753293209086, 11.938837511902378, 6.218148967693993, 9.237634953428431, 9.264265281956831, 18.834954360453022, 32.80784927550157, 32.85769977840871, 40.68119558658047, 7.297623980475699, 19.604977883471594, 10.383211513477915, 16.94817214616373, 11.024784731400747, 25.372659379802805, 21.37081485803855, 5.6226913491062405, 9.456942730436571, 12.42738647877881, 6.522985009047852, 10.873093517567142, 5.954354023305944, 6.004325706352266, 7.891798207810906, 7.504732500362647, 5.241537785138594, 8.078214674248727, 9.04142869924871, 6.513259569006099, 8.106926523647267, 7.491196897020051, 5.162680611977664, 7.43673586419793, 17.56696732152829, 5.423145164022888, 20.033508042099378, 23.76724185588359, 18.843127745528907, 17.334947788460738, 7.422646201090148, 28.10272742300121, 28.389059073586505, 13.540832785506037, 8.737291951379504, 12.648704030200074, 7.629489400124565, 12.850412470354286, 17.881230200410315, 8.195777914623271, 9.506147163329327, 10.158182000344203, 18.608580360857534, 28.762769788508383, 11.323881199086646, 6.01006954447346, 25.971251761267606, 8.195157365099726, 5.911887683883483, 5.62640544575866, 15.306681914325868, 24.320301696983222, 20.52639046271822, 19.238578489722563, 5.440603349616025, 6.437671312697655, 10.496700881636443, 7.097660558726057, 13.179971996499226, 8.158038295807955, 10.394521943080312, 18.648546903241684, 18.68441020437674, 18.339539804335555, 20.147845320172813, 7.040834958322979, 13.257308976316828, 12.023162154596848, 12.157766560703134, 17.82425468915273, 15.076483142869009, 5.059258861014903, 10.535223630319113, 19.256698673160738, 11.011261350897508, 11.79604415435068, 12.598415852394826, 6.542911966413027, 28.68623625592061, 8.771566556657913, 5.434841818930184, 15.346492356056688, 15.968307998789763, 7.695007151800258, 24.00457705847369, 16.91733396796577, 15.275900228436523, 19.869344891936997, 26.236133922026468, 11.63240153327156, 6.648072442946963, 9.924468817746577, 12.15320969159399, 6.633059054060099, 9.93274856384477, 5.66663346762664, 10.303782316851771, 23.696189461360884, 12.307363051190116, 24.242394676385082, 8.301121164742646, 7.787775879532737, 10.97288322031477, 5.851020404723693, 11.961612181363984, 33.812797572066245, 6.9851603270850395, 25.626222338058568, 7.914464642546281, 15.115875157185165, 5.462416609303252, 7.092816241544008, 19.584087530859932, 5.835417430875474, 8.95004682985169, 5.41679929731844, 14.486396590247937, 10.156680399606477, 14.07573003505278, 14.043776611861409, 13.773362255386843, 6.290782280991003, 8.212528770969254, 11.120857213947922, 13.153270733877958, 14.615153455336566, 5.1029209581299995, 8.12068253812053, 32.627606872094404, 8.744712984166728, 6.023596422081517, 9.451634605064564, 6.660074095015264, 12.495331927181166, 6.618690742395913, 8.336138198104818, 7.558039237990003, 7.052929456129053, 14.562077360995183, 18.102450987119987, 7.566374840506402, 5.972645064762667, 14.179404023633928, 17.021834175978178, 12.520858717124092, 6.151009444286827, 6.260548729635351, 25.77402762416963, 7.0684388274121055, 17.255319311996953, 7.365514417234256, 26.518784083274213, 13.269973863286591, 11.078315620834053, 29.108167497604633, 19.528401833556924, 7.727412126317282, 21.008114385157015, 15.645021168263906, 12.31782015800211, 20.237327091126893, 20.838576003650026, 15.626713744708795, 5.284637177048991, 6.205446428878724, 9.288876015918342, 16.45527190779273, 9.079894252314679, 56.99304410045777, 8.86138164041317, 53.91115181253489, 7.225829987916367, 10.961249787150425, 25.78546107647958, 14.967107617768276, 12.102102742124451, 27.536573310243497, 31.32557355690558, 14.756707656383064, 18.406741685552266, 13.525680564756868, 10.306305403856733, 15.536275185274532, 12.540284362179364, 13.31016095879453, 24.22265718019718, 6.217878382063908, 26.7312164660816, 8.695213509187296, 19.9304150302641, 6.605947233549871, 6.709930603083188, 17.420780350625687, 21.44908651846245, 5.760008547581396, 20.889062763560478, 5.415552021545274, 5.771207170652597, 15.935270703700493, 24.570991900669647, 12.458749875296283, 16.52553548379386, 5.08334344464819, 15.282731307648243, 28.136137877304197, 17.747144971581008, 6.490338187276443, 14.172805327065305, 12.558840147457845, 6.09356593776114, 6.215869433693594, 10.273334485461675, 28.198052635186528, 10.714443439369749, 12.785709458470086, 6.3645312419872875, 7.519322167338183, 25.94164386256609, 6.1440593075128405, 5.379372535304364, 19.675338672039114, 17.432215220990873, 12.664040890451504, 6.119649516191174, 6.068347124758249, 6.162544808927969, 18.356659355364332, 8.625746410728802, 8.152149223156572, 23.937685078805384, 9.284484608740108, 5.544551375012311, 16.28350636732145, 7.023807404024, 5.597217839690723, 11.880965788707194, 7.622058561056896, 6.887553261809391, 15.598439666009313, 21.86142141280976, 9.250431619688468, 7.7393115196248266, 28.561387835157717, 16.761267961895143, 19.388772958324797, 23.658131946451064, 11.579633519744727, 9.256143920932505, 6.964609584852098, 23.65829674399983, 27.994495793195988, 18.42047805987586, 20.473868580213587, 18.536078715218967, 25.32583079008843, 21.944139331895652, 20.03465867103473, 8.182149167373751, 5.261915767130845, 23.45654918108947, 6.01209128859148, 16.071113859259377, 5.908223001580732, 5.324564327757255, 14.75683198180996, 6.153411941396116, 11.0403875986601, 5.749937127810692, 12.023388218875668, 7.296735393307798, 29.831030633124502, 7.327272869319095, 14.494477062979747, 16.74717744456449, 15.619507726020268, 11.269906447677487, 5.5345474212286465, 6.49099009525852, 6.3216063917447896, 8.306194376128198, 5.765509575623744, 6.732829050302712, 6.140747030384676, 5.39254318579993, 5.520269598468234, 6.449183777972825, 19.64697461368951, 27.583179877500953, 13.385076127962217, 9.32174777376254, 29.006551000255726, 18.808491865707733, 10.76838389073662, 12.98719705758072, 14.08061090339593, 5.714356840179174, 8.202130718046341, 18.139542821355395, 16.72307853529358, 13.140027007777695, 7.901068609146803, 6.008681472555755, 27.873971346076097, 15.073582168185391, 16.965412453878365, 8.580848415195907, 16.135741173412995, 12.72841548340331, 6.304572565285932, 5.349462729132801, 11.622974023746005, 15.266481340959315, 6.7424115841039995, 10.872025407518377, 18.930415896035868, 9.671850167277556, 6.089009293580159, 18.049791145450225, 23.947705580655906, 11.154960761091044, 21.289872395097607, 10.634054880214624, 14.342311299383633, 6.551113247146194, 14.807528023148084, 8.416144554960029, 8.997089268026587, 26.09022648335512, 30.56922142868368, 9.89793655872132, 24.29752511321962, 17.16223142058712, 6.0354124042078565, 13.105353883096278, 6.58154636290446, 16.812734509037423, 22.677466085684813, 13.8113920099033, 24.301819771724773, 19.806422097682727, 6.227168904332482, 16.872088949844507, 16.5269302767519, 5.071319762283235, 19.55185870425219, 11.588598631251577, 13.80150412539865, 13.456365187152358, 24.550594059206727, 13.476720235420173, 9.28997688044618, 16.770230178776096, 13.91766908712945, 14.945697327914711, 12.739789928485077, 20.431457302342473, 22.275888004419578, 7.069573467722906, 27.70042427115429, 15.369494271819695, 14.380914896179178, 11.246353307824663, 5.2901713423262295, 11.660301897558082, 9.220709044232317, 7.1674820470851595, 12.908714704757438, 25.652397790278012, 5.041265622696167, 26.81548806779874, 12.077134930843615, 9.8980907073144, 11.394065667257173, 19.243895334377974, 12.367146646592154, 5.794039472616962, 5.53069808865764, 14.931766621114559, 18.046299781722418, 10.830143358079985, 7.058966267064953, 18.970135335021503, 22.74171904451444, 10.421537352428862, 12.58839002239397, 12.297727991044468, 15.117656421894981, 8.10089646418383, 17.71765872200092, 16.988158571800486, 24.177117472342996, 16.290135964595002, 13.156485264343162, 5.317875677848881, 10.48984169813138, 30.300863800294284, 15.29806451427873, 16.408188965266273, 14.929402662727714, 16.352202717972858, 28.458189929453056, 10.09492612365319, 17.35187244738285, 17.468773678566237, 10.608194995627606, 11.826470940147749, 18.042010786925132, 5.34244715622147, 28.33658672801197, 14.975748954441421, 7.091584785163853, 5.370486146044212, 17.254794198232627, 25.76455763961164, 5.938703349270493, 18.673066340853797, 54.28219087563463, 10.010676954936313, 32.816611981196, 15.453866881175042, 44.40021598382624, 8.251555020597072, 25.246617311530326, 20.493102572895918, 10.340925359340858, 5.934217887494398, 9.037983146172092, 11.822976860075574, 18.664932891430478, 9.959105018009012, 17.3717699966315, 27.361415060026147, 18.359346552435305, 11.18690051400545, 8.958082964805094, 8.444025501204589, 5.16577740336993, 27.238700287865317, 7.724643168093925, 6.130251295976091, 5.442417274854572, 5.824270982113522, 9.022406789852925, 10.578000588450536, 19.902550301578586, 14.674394655479048, 13.877142885724455, 5.695956368883734, 29.030485628240143, 13.824286140980035, 14.63819554883295, 8.57024826489183, 17.617663836619545, 7.919601980905495, 17.96769675382828, 22.78146449195448, 5.051882883088322, 18.230651760870806, 10.355238630601535, 12.600980935402376, 12.23317927357499, 18.074185396482342, 9.939749120571989, 10.173474536899558, 8.08620891301786, 9.699770567971534, 13.066133304159502, 10.39744563300478, 10.360156535423828, 13.270182650229271, 7.959940543387883, 8.315158794189967, 25.65417957774214, 7.384403660665194, 5.527889931486098, 8.554940083404285, 9.010652426034557, 10.972197041201081, 7.3916424594794625, 12.986947251923544, 18.85690713124846, 20.547802072786716, 10.62400174988286, 12.439699219352057, 9.123419277075822, 32.88532082980099, 5.822409537077899, 14.57597054072388, 22.843266138212293, 20.654493540088744, 9.235167994567513, 20.13550818755619, 6.6229741587434106, 13.537741474100219, 6.175658292442259, 25.065652447070434, 15.99124460069802, 8.291531731150906, 5.632437256299908, 11.791399623467237, 28.77183730315053, 12.527117097050382, 6.917552530201281, 10.408117046688059, 18.515924776045942, 8.750742090898635, 14.169721013084322, 6.716212139140905, 11.843174514834113, 5.449114987955141, 21.297566748846673, 72.62945196132688, 9.972395750898126, 37.61260779886834, 17.261467133175234, 9.358512178666226, 22.536009008144255, 6.189704444966319, 6.799529544642248, 35.15771860747929, 21.732909417150363, 5.521664938392205, 21.327595606036343, 18.226042247305262, 19.8378456918514, 10.889553818712566, 11.733213834832656, 20.097850740646365, 7.121045449468346, 22.025146859759705, 5.450686027656619, 17.229914672896538, 5.652317401495852, 41.75724365491919, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2888888.7223016443, 2898032.2219391945, 2910671.8529201904, 2917749.1172050787, 2924063.0892734113, 2926360.3579120156, 2958062.444560396, 3033514.8447665297, 3034746.25408625, 3038774.5509274704, 3050751.144325536, 3062673.1799724335, 3096248.2430757093, 3099725.6806314, 3111528.5662167193, 3116839.0625, 3143067.112583183, 3143618.408403598, 3147299.921726105, 3154939.1344052968, 3172432.5458009723, 3238468.75, 3243376.980372113, 3301920.93492681, 3333848.393554862, 3334190.567247736, 3345612.9212183617, 3367908.2017896613, 3397082.276886792, 3401395.1080706324, 3409404.495841172, 3414403.9932950325, 3414682.0786235365, 3415527.0047941497, 3416382.9456649474, 3416906.77908597, 3419580.603967435, 3432267.4809420444, 3464348.4375, 3495635.506375079, 3522637.5, 3525692.039951119, 3554457.8165006246, 3580645.3125, 3769998.981340575, 3808261.5605770354, 4238752.691349528, 4255492.176303943, 4271970.1746685505, 4503688.2307812665, 4611860.9375, 4659695.825748942, 4681853.675065343, 4712788.99141735, 4715145.963341619, 4782159.199171214, 4801550.71569945, 4857985.506190618, 4858042.413232451, 4861255.96203818, 4976360.9375, 5054771.937140559, 5087855.037033997, 5104097.142492731, 5154136.6115780575, 5171857.882150017, 5190042.355035099, 5190871.765465946, 5195487.242674656, 5196185.852323596, 5202899.877970981, 5239527.9605437, 5295604.955089748, 5296389.641989329, 5326532.51183596, 5329101.449876759, 5332237.430242497, 5332734.250941861, 5364318.75, 5366787.326265833, 5423548.33175661, 5432085.69312462, 5432086.092905454, 5454840.63896835, 5456934.375, 5485178.125, 5497323.042215965, 5501210.722670648, 5505252.784451522, 5510276.260450884, 5519085.439731288, 5521407.536834264, 5559599.813237331, 5561603.125, 5587745.138521499, 5598517.1875, 5617269.163072642, 5648676.897886, 5654216.429300983, 5654427.713292627, 5655436.255005022, 5661481.288088624, 5679671.008570425, 5682028.125, 5682189.630024998, 5683313.682413696, 5686340.625, 5693339.0625, 5696972.120666895, 5705646.868727855, 5719454.104551942, 5725610.606827771, 5726840.8566163555, 5728718.75, 5729812.375036257, 5729849.925152399, 5730379.6875, 5733866.29726588, 5746266.0916747665, 5749446.374370621, 5750552.773298764, 5751082.8125, 5753508.492540951, 5760548.095838252, 5767969.580323056, 5769025.688335494, 5770514.314937813, 5770953.84817717, 5774476.685498353, 5781962.727666891, 5795742.1875, 5796709.891695341, 5800104.975763485, 5802051.5625, 5819076.5625, 5820359.209938645, 5820529.6875, 5821375.406904171, 5823715.139769988, 5823808.749860321, 5826954.6875, 5831711.140709416, 5835070.094304, 5837649.66682144, 5843251.5625, 5848546.177252486, 5854824.01897893, 5865357.548176269, 5891044.52523542, 5895815.625, 5898976.4061680995, 5914445.691876357, 5917689.906102209, 5930910.933291279, 5931018.89524582, 5931725.859225776, 5953735.154047327, 5961223.4375, 5963316.546177042, 5965079.97010109, 5966688.761395752, 5967762.449687762, 5974761.989469537, 5993829.2221139595, 6000648.544821234, 6002360.9375, 6003352.969124552, 6003600.650503593, 6004652.446742132, 6004964.549475819, 6006092.463925533, 6007273.683739378, 6007390.625, 6007771.975052318, 6008629.048188877, 6009776.5104966415, 6037955.868993961, 6040310.931060705, 6132162.002371387, 6145183.1829307275, 6153315.342466373, 6155445.792882179, 6156047.797248054, 6156223.023064153, 6207503.551392514, 6210593.75, 6243463.510836813, 6253294.676754761, 6254621.408005466, 6285625.647587994, 6409456.657137393, 6437507.704154005, 6447251.908451728, 6451531.24908446, 6458931.744359235, 6460854.001059201, 6467787.9487245055, 6468045.805381998, 6468493.255201239, 6487279.331296149, 6492183.174749752, 6498475.623201801, 6516772.543059981, 6518419.147444327, 6519479.683127903, 6520421.9873019755, 6521379.974796793, 6534433.755585626, 6536099.834710362, 6537003.01688382, 6544179.866961542, 6549535.689921833, 6550782.007149614, 6569115.14094274, 6583698.419639422, 6584364.0625, 6584883.833520102, 6595249.611983904, 6597851.564136576, 6656955.741263161, 6683662.597905866, 6831843.971341276, 6858038.431721605, 6885280.85079709, 6891698.31178155, 6891939.036330067, 6914201.110934178, 6915223.210338813, 6930157.570187813, 6949682.489459198, 6966472.76369942, 6972268.202483931, 6975120.671199386, 6980438.089557182, 7012746.2091366425, 7013096.355711387, 7014020.019153573, 7014213.854869923, 7014864.227769874, 7015084.547630872, 7016421.9864357235, 7017773.730585348, 7019737.0384870395, 7019946.801849851, 7020252.708117545, 7021089.837971517, 7021389.41899409, 7021474.25590503, 7021595.290293564, 7021687.1450041365, 7021952.974354068, 7022138.181822003, 7022166.581022283, 7022588.119294073, 7022631.51114021, 7022738.133645528, 7022763.832668474, 7022771.820824479, 7022837.646907581, 7022872.4741915595, 7022893.887190507, 7023250.214028646, 7023497.750926678, 7023567.299135768, 7023655.296231377, 7023676.992656655, 7023794.919020444, 7023964.435880661, 7024425.286353669, 7024641.656730093, 7055169.296342009, 7056668.673363564, 7058326.384061938, 7058877.463232759, 7059631.621177949, 7061454.7306408975, 7061912.173393215, 7062051.006838262, 7062103.032485974, 7062525.984090276, 7062598.555501627, 7063041.643115397, 7064257.590708054, 7064381.988831767, 7064906.570497774, 7065157.346971646, 7065415.694397321, 7066061.376277243, 7066393.49171689, 7066464.15960359, 7066498.941558011, 7067518.502878498, 7067747.723549158, 7068063.9715449605, 7068162.660655574, 7069165.623045621, 7069635.0933547765, 7250157.543188957, 7251018.477938629, 7251971.018252983, 7252733.716816459, 7254428.114653009, 7256645.71749591, 7257765.336918761, 7260222.999838764, 7260460.997194486, 7261410.857562842, 7289452.44595411, 7293123.518833984, 7293233.531066454, 7294549.957708136, 7298846.176454977, 7300512.781811269, 7300594.88290325, 7406472.994806766, 7442314.939932035, 7449437.351342243, 7451670.243947537, 7651886.603093944, 7651920.96951362, 7655943.842644623, 7656513.803992367, 7692682.8452919815, 7693484.526047676, 7751845.521550162, 7757076.484731378, 7765445.926320821, 7767483.250593032, 7878178.644610202, 7896056.779483961, 7909948.999833932, 7939403.874371489, 7941222.714357253, 7941286.806908456, 7941424.105177374, 7941890.07911156, 7942452.22094163, 7942836.935018195, 7943432.033544996, 7944513.637784328, 7947433.85933266, 7952221.494539825, 8021162.977531325, 8024405.115836432, 8041747.882761659, 8075801.5625, 8080054.889366474, 8080399.529676762, 8080694.169087889, 8082410.980251034, 8084098.962349715, 8085912.5, 8086152.331659882, 8086877.782892796, 8089124.714977663, 8089269.8827696415, 8090037.1765722865, 8094190.482962954, 8255550.571524548, 8268895.654534761, 8270036.497152487, 8271175.615818559, 8271623.6574157495, 8272521.3439635215, 8273112.909086168, 8279067.743073302, 8279907.323275752, 8280034.34403649, 8284867.618452449, 8285508.410453021, 8286890.28049619, 8286955.962028872, 8287103.842380319, 8289115.108197237, 8289123.195185061, 8300204.956200468, 8302079.192945707, 8303599.27364178, 8307334.698261356, 8308336.828652014, 8308716.075167157, 8308888.261668256, 8309052.10920648, 8309489.490386528, 8310965.688971574, 8323872.380168072, 8333989.009896619, 8336685.467289293, 8337232.019203079, 8338130.90596341, 8338507.319474601, 8338553.391344832, 8338861.417652851, 8339438.78372885, 8340310.263816337, 8340758.0468033515, 8351447.840277048, 8353316.314276649, 8353960.307469225, 8361120.047425973, 8361879.111495455, 8370155.502399935, 8371020.383587823, 8371420.397142174, 8371721.062536022, 8371879.288245298, 8372243.884874689, 8372406.426650989, 8372865.230409039, 8373096.160091552, 8374626.6445803335, 8376918.411813216, 8380181.471882168, 8382230.524841324, 8383437.125171432, 8383828.460490143, 8384303.533887885, 8384464.048769764, 8384580.1135064205, 8384656.194775276, 8384792.442583998, 8385121.9538584035, 8385521.100457119, 8386848.22046819, 8387631.095997979, 8390753.371282145, 8391982.8125, 8393318.362686627, 8399386.12797182, 8399539.492925692, 8400780.524161255, 8401305.299161663, 8401451.818944937, 8401486.239821587, 8401522.580875972, 8401578.564725175, 8401604.462591378, 8401772.341167882, 8401850.65674824, 8402004.13018338, 8402013.098163646, 8402042.488375347, 8402093.283620933, 8402183.96747964, 8402185.968256386, 8402261.290558994, 8402353.610408263, 8402601.771177089, 8402671.962885793, 8402685.304857083, 8402731.197825154, 8402751.45419481, 8402843.344733631, 8402868.852171326, 8402972.376661252, 8403086.223303966, 8403646.700718813, 8403745.77754434, 8403789.52606926, 8403863.6641559, 8403951.449483126, 8404107.732017396, 8404213.2471799, 8404238.843581794, 8411692.244673222, 8411842.1875, 8412153.755317744, 8412733.66231879, 8413065.090051625, 8413740.32170057, 8415314.217574975, 8417024.986020815, 8417773.834624527, 8417793.905254986, 8432372.019829758, 8432869.447929515, 8433387.725215953, 8434181.08076141, 8446467.357566189, 8447466.341456436, 8448041.35807503, 8448368.46918016, 8457637.370591253, 8468901.146542551, 8471466.823425254, 8472164.227427112, 8472435.5815914, 8472480.929222286, 8472531.134510707, 8472605.764924169, 8473245.864631314, 8473305.318199972, 8476635.277577534, 8476721.576290643, 8478162.183696445, 8478208.324822215, 8481476.033974336, 8481815.710621709, 8482253.701081805, 8484432.366440596, 8487522.64001966, 8488364.857530417, 8489743.822003525, 8489782.129130943, 8489894.353876764, 8489990.44925738, 8490847.07467614, 8491443.026432121, 8495712.476874731, 8496349.814681802, 8499650.121982692, 8501114.83966889, 8501845.822733138, 8503857.635527847, 8506223.115996415, 8507070.533800183, 8516198.530118112, 8518594.314292228, 8519079.084805515, 8532747.677303033, 8533268.247478222, 8533341.864824442, 8533466.742450941, 8534523.346214877, 8534783.820783285, 8534898.18625537, 8535008.849162167, 8535055.589688862, 8535085.100825924, 8535245.407979596, 8535733.164394831, 8537857.496678784, 8538144.806108681, 8541508.318647562, 8542277.134711334, 8542431.844674325, 8542631.284966907, 8544235.400454242, 8552357.397217983, 8554894.554707764, 8562478.04920217, 8564197.264272965, 8567048.49248729, 8568962.84708484, 8593155.320607862, 8593630.50433404, 8593646.232316831, 8594514.164843772, 8594563.005439235, 8596387.746796288, 8602116.907115389, 8602562.936969623, 8604025.085049644, 8604557.132710477, 8604573.914852079, 8606070.613052573, 8607438.455422474, 8616874.064452117, 8617288.070012033, 8630341.496981228, 8646663.134764435, 8648504.038017131, 8666300.962598598, 8676675.693685628, 8700748.02431031, 8719945.050039085, 8723806.277401721, 8743477.045440577, 8744931.148637902, 8745319.238358242, 8746905.099226566, 8749056.25, 8750257.267347096, 8750743.693567177, 8751405.473149432, 8753788.49522228, 8756506.26513696, 8772854.577434406, 8795882.097171055, 8811945.598081669, 8925026.074207949, 8950895.783723976, 8961853.000241894, 8961857.087624494, 8961971.627660368, 8962716.93018757, 8963329.343085947, 8964023.621913586, 8964209.232298093, 8966037.495613422, 8967252.560678665, 8970959.286658106, 9001640.850524692, 9005924.672538295, 9012255.662895544, 9016677.33880669, 9028783.731015136, 9029020.45134993, 9030047.896349646, 9031649.16580029, 9033288.291097144, 9033598.530059038, 9040910.810779728, 9042720.045254912, 9044572.612200279, 9045593.109165413, 9046317.08441649, 9053942.561432587, 9056347.07523459, 9057166.620759482, 9057460.114580136, 9058638.083984371, 9059131.197186394, 9059815.589941883, 9060121.669417102, 9060843.049832262, 9065614.916148368, 9068029.577158988, 9068715.721699338, 9069954.655669563, 9070610.494192896, 9070826.437016157, 9071925.33075203, 9072418.199968165, 9072906.292114379, 9073305.314912427, 9073547.272658091, 9073774.786528775, 9074132.805099696, 9074227.914766852, 9075407.307586651, 9075432.761773238, 9075764.41004518, 9076840.311781002, 9076890.625, 9076925.948887888, 9077045.3125, 9077116.007728856, 9077221.765830193, 9077224.844180038, 9077302.700887088, 9077713.045169273, 9077730.86030199, 9077743.243074095, 9077884.325655224, 9077980.3727413, 9078283.946308626, 9078416.589688424, 9078651.71025713, 9078758.560616959, 9078882.558972314, 9079410.63102963, 9079429.286900796, 9079455.064038381, 9079611.63779361, 9079881.761399034, 9080127.281002661, 9080559.10058269, 9080750.527213603, 9080824.495576484, 9080946.117914353, 9080972.874738453, 9081017.627158534, 9081854.092185387, 9081897.11338672, 9081907.57411136, 9082125.712011704, 9082175.361580623, 9082285.154108172, 9082325.086732915, 9082487.480056463, 9082539.644595373, 9082684.395681856, 9082780.360741716, 9082921.068733845, 9083095.364905529, 9083148.020137575, 9083227.499739151, 9083339.045773478, 9083362.21847572, 9083494.602591038, 9083527.295915708, 9083671.636869118, 9083759.229124868, 9083781.771464737, 9083857.303689985, 9083918.046183573, 9083956.779182743, 9084033.614068093, 9084037.798026184, 9084052.932893801, 9084277.249199832, 9084297.552750038, 9084316.21565888, 9084451.299338961, 9084478.85702515, 9084528.068985462, 9084543.98410644, 9084751.875039212, 9084844.927548524, 9084848.12929114, 9084873.871297162, 9084995.364238877, 9084999.028633034, 9085107.534438029, 9085181.111964326, 9085238.965160822, 9085280.048679939, 9085395.3125, 9085397.685648331, 9085441.447060462, 9085476.1286952, 9085522.146089138, 9085568.659632858, 9085652.492740571, 9085666.880228197, 9085674.622861706, 9085691.312286664, 9085758.721802955, 9085786.641842952, 9085854.470426831, 9085875.397447193, 9085886.840215318, 9085948.234662602, 9086031.83834603, 9086090.301614366, 9086199.235939724, 9086423.705336394, 9086480.884830853, 9086533.85956025, 9086551.246717503, 9086617.792984683, 9086674.943408258, 9086811.595237285, 9086966.131260455, 9087053.752326757, 9087082.452059906, 9087144.479097009, 9087437.377554439, 9087522.279813197, 9087570.479692021, 9087611.026609113, 9087685.967687275, 9087795.337326745, 9087833.231335912, 9087868.786912812, 9088919.635196915, 9089574.844370468, 9090447.366499837, 9090613.906489043, 9091887.233180955, 9092923.191340983, 9096785.230119776, 9097625.53975812, 9098065.14641294, 9098701.551058894, 9100999.620015047, 9102516.368458502, 9103245.069773944, 9103447.808930514, 9103773.19167795, 9103876.681239989, 9104204.524321856, 9104335.01964531, 9104379.24591727, 9104527.555644069, 9104753.879658371, 9104797.637535166, 9104939.430765241, 9104992.22172461, 9105309.820898555, 9105492.705390466, 9105540.512709199, 9105544.578748537, 9105583.102698585, 9105622.093433412, 9105720.607819958, 9105936.020225251, 9105945.205909654, 9106015.455023676, 9106061.495672386, 9106434.751939556, 9106620.321246935, 9106692.818154242, 9106737.215264726, 9106739.079866543, 9106805.729383156, 9106893.705461383, 9106992.02087914, 9107028.521605046, 9107041.706680255, 9107279.924732232, 9107430.826262074, 9107509.238453217, 9107509.683231667, 9107534.976761026, 9107551.816282814, 9107661.419253007, 9107694.790142078, 9107880.667391075, 9107972.45220136, 9108031.291875985, 9108037.111060334, 9108112.168135926, 9108188.804451123, 9108264.937483769, 9108318.426460199, 9108383.98512978, 9108781.6118576, 9109032.945330998, 9109050.161804566, 9109078.401125113, 9109101.227382584, 9109115.171903254, 9109116.947639843, 9109155.804108487, 9109206.20059734, 9109211.346721279, 9109223.140179582, 9109382.167493073, 9109507.0835078, 9109537.15012674, 9109551.682262996, 9109585.736400736, 9109585.894435124, 9109653.23293113, 9109666.74584104, 9109681.324603012, 9109682.782819984, 9109684.690959373, 9109715.491120344, 9109740.797260288, 9109749.340202225, 9109782.648092357, 9109814.045978589, 9109877.501693675, 9109880.220413303, 9109892.789408077, 9109939.226476884, 9109977.365509236, 9109999.108073262, 9110032.53931188, 9110032.763312897, 9110054.684941512, 9110141.255106283, 9110179.488404747, 9110277.881839583, 9110278.15658974, 9110362.786666038, 9110388.558286002, 9110411.706584537, 9110419.388535291, 9110440.59881422, 9110473.069055934, 9110556.827246947, 9110698.88759922, 9110747.070337573, 9110750.302683614, 9110804.124398386, 9110808.656069567, 9110824.54961167, 9110832.411349589, 9111001.653003586, 9111075.968765914, 9111128.12182002, 9111159.701659681, 9111234.254056439, 9111346.095756764, 9111361.452774078, 9111500.508854916, 9111557.452601556, 9111587.6756722, 9111616.77778496, 9111665.64032698, 9111823.427911423, 9111853.817376923, 9111909.260149762, 9111922.685575169, 9111984.873237414, 9112004.530338028, 9112007.804433446, 9112021.03669868, 9112057.8125, 9112105.394676303, 9112113.327940766, 9112161.065728003, 9112179.423431767, 9112213.995679893, 9112239.22447623, 9112252.518550443, 9112271.30568613, 9112276.502737476, 9112348.06882924, 9112367.59100309, 9112396.035530377, 9112506.909479754, 9112534.959267925, 9112545.25084015, 9112564.726579498, 9112584.41254307, 9112604.21032863, 9112614.348824361, 9112631.267845541, 9112660.13468197, 9112670.636140881, 9112726.958318094, 9112840.166303545, 9112853.263117893, 9112893.360467643, 9112921.492341762, 9113007.225863377, 9113126.490608558, 9113135.62709797, 9113271.70392834, 9113424.189755935, 9113441.013936898, 9113463.980579056, 9113552.062985074, 9113619.310644483, 9113635.172472937, 9113683.430195507, 9113810.219838556, 9113827.167154841, 9113863.3824183, 9113986.94237243, 9113988.15668244, 9114013.108239498, 9114016.259475065, 9114039.703851765, 9114150.852210889, 9114171.475854322, 9114239.468229575, 9114254.08977303, 9114399.476511667, 9114415.071374914, 9114644.791975161, 9114691.514146391, 9114785.991159717, 9114788.121426651, 9114802.47651683, 9114810.830084324, 9115006.725194748, 9115079.282132836, 9115103.023178138, 9115235.31195359, 9115280.621332014, 9115408.393604374, 9115409.018508017, 9115429.339429123, 9115475.703470943, 9115552.868340332, 9115608.135965932, 9115612.613276035, 9115707.65518941, 9115782.836722007, 9115812.393976577, 9115863.946451342, 9115942.259101314, 9115985.19031629, 9116051.138017615, 9116055.489402642, 9116059.171409877, 9116125.873423593, 9116142.196857115, 9116209.70275312, 9116241.011808595, 9116329.6875, 9116424.179834874, 9116436.663059905, 9116443.235068092, 9116463.014445722, 9116464.84794873, 9116495.094119633, 9116548.195896259, 9116556.664107691, 9116580.951885762, 9116619.792672724, 9116637.5, 9116774.109355243, 9116777.252205634, 9116792.686916668, 9116793.78188749, 9116825.816157082, 9116825.923490694, 9116895.49029879, 9116923.853572283, 9116998.090257136, 9117009.137522195, 9117024.483247338, 9117033.470458291, 9117038.378850322, 9117048.279600002, 9117081.605673177, 9117136.847751409, 9117146.873454493, 9117183.926730929, 9117215.364272997, 9117216.118829904, 9117216.296700928, 9117246.164823372, ...], [6.053421923758139, 10.315075958895314, 8.274935564891248, 12.38715537472879, 17.791038405916893, 8.885115259981024, 14.725543301566322, 5.658838260619104, 7.393108694331833, 6.212080921092012, 31.50762398184404, 9.122745356133054, 43.70424078421546, 6.599355490771338, 14.396969237651142, 48.14478813537609, 5.609912963326629, 9.05835334434752, 7.101026728625018, 15.222849430561231, 14.013892367197501, 71.05022620700393, 8.520649285179402, 17.99755568636348, 21.249596090657654, 27.43183619789341, 14.011325274508334, 7.750378794838487, 13.229556733765747, 14.215651278630418, 7.071965573009672, 7.950685842854012, 5.761604453916808, 11.897392397938015, 9.446598398517748, 20.473175312892486, 31.301232740085375, 9.592494377116592, 71.27047483765735, 5.782754828791602, 48.76852605922804, 19.478753286379728, 11.133965799836947, 47.327522436573055, 9.837877735146261, 47.12690130615666, 6.213921536508625, 6.265784861885348, 101.69740338114872, 27.71010646442047, 30.65024737162821, 8.578016469312836, 5.855833224520918, 8.249341961262466, 29.596061110720207, 14.31116614093371, 18.61410666800513, 6.421540420254953, 5.073024272685505, 5.598309590371584, 30.27403738731976, 15.183770693860907, 5.354043317282515, 13.261048241887208, 16.10721859016477, 11.238347874519203, 5.347695460677788, 6.741834205476734, 9.122902364538653, 8.242042436130427, 35.39436870741245, 7.544820276334722, 11.573416898375156, 12.172884250244538, 23.742263174518452, 81.04495156139623, 23.933175916552777, 26.292375703229467, 47.03992274035595, 25.509743983421785, 26.595718694383763, 30.231922550606523, 97.78245279211576, 22.25223046123759, 91.5926097530704, 47.04462583325583, 8.08805000544645, 8.176147862418784, 6.697371267564911, 23.72460227999242, 13.33216116448862, 24.066635847928968, 10.847815731387252, 69.83631874180304, 9.188503089822339, 44.95533251246761, 9.706938666695708, 41.93359750369026, 19.25363039980668, 13.57454306626357, 5.727267291585302, 9.363818256290639, 112.48573503621502, 82.46300753971006, 163.5382761617001, 13.666914199874341, 84.20099302612246, 48.29147788195442, 17.443029716437934, 79.5057236309771, 6.029505494574533, 23.366696718251195, 11.510123904478782, 75.3960484395085, 14.485678675374547, 5.458563140552492, 42.90560767566818, 18.320220833678047, 10.948018656293401, 6.037540764737702, 44.10414756197428, 66.57362560674157, 23.306338173410605, 23.23276880579781, 45.928052603168496, 93.65581094958371, 43.131593987655705, 8.709997861453479, 9.437616710072554, 20.723659151770907, 45.52851553011412, 6.334763460115768, 84.75989606151501, 61.5889981218227, 52.39548414363952, 83.87115701437337, 28.53558260826984, 16.758101849395807, 13.142540319253438, 27.51841630729094, 74.42893084418495, 5.7198140103941775, 54.82334457358351, 5.910906175646987, 85.47976438437041, 12.815235985110158, 15.890922365596403, 14.02143723202768, 49.60884890151722, 94.5836275518628, 8.205601100026932, 86.43551696730206, 19.556019991923645, 11.121134667100826, 153.5884388489277, 129.41778234149683, 66.17696956823944, 79.81763481589765, 120.85574529508554, 28.785395864740533, 13.905911618271205, 32.873432396655176, 6.665690748175924, 10.470656098284886, 9.423828454378123, 40.82256059789313, 25.7845959946596, 12.323519571974073, 19.881878828036456, 5.17686024762196, 7.196062144697749, 8.42123160661126, 81.87576353877657, 9.417460595525084, 155.17269133916116, 27.53622753987587, 5.5933080644460125, 9.325964316322274, 6.206309270812866, 87.29855156655248, 76.03313196312922, 118.39170019428434, 10.25548110279561, 14.93542616237755, 12.43215388066314, 73.75885187192156, 181.63669046154507, 20.23802833896381, 42.97326575948673, 26.054491537026827, 16.759321518640892, 10.962475336895858, 17.22193183361214, 14.884817068732705, 6.86638492703562, 10.201142192514679, 7.244624410120094, 7.7917938889605685, 6.412227122292369, 10.613124030299872, 11.745428332863147, 7.845343575832345, 18.292403564479336, 9.69170567976103, 47.24560075115795, 15.387555183864935, 16.16263890990619, 13.010478652627308, 10.878816841406106, 6.2536346261772335, 9.487902357698204, 5.79588592577292, 5.872210639760249, 21.65362559219981, 22.20297644125984, 92.12230031937692, 21.089060717214593, 11.698252570850038, 14.94775095533552, 10.415866902343694, 7.6390366038873765, 8.407200495387194, 12.981598471010933, 10.556233353234127, 9.22731626530189, 14.842691334217347, 21.99025763125991, 10.244362428128042, 13.888877771429712, 13.838312870585371, 10.215913381327471, 21.031845445549823, 8.485831631556483, 5.079776359983452, 8.825412034039758, 15.55231478923457, 5.33196926282917, 14.205075835184177, 7.664127099217795, 9.481766369660626, 15.383971020251321, 7.712796653216192, 13.432703571660525, 7.576993068912647, 10.533140185909698, 19.039342417512334, 16.131630728793226, 8.772614088877798, 11.093173214875236, 18.931938390797, 14.396809291415797, 18.383837884779943, 20.492853473775497, 17.977770590004955, 16.039947473273877, 25.899073549253878, 11.467794834913294, 14.738961502178833, 11.365368533526386, 17.852162443560456, 15.933154811617896, 6.521173777727171, 19.814073400459, 6.281406529219488, 17.911481184665654, 16.880894560410226, 13.627565420394056, 11.766193649654742, 21.876753833510797, 13.242557151301007, 17.53271213366105, 9.267432632193174, 9.184947555027913, 6.18705909592833, 5.302692049883823, 22.45176911428776, 5.15782428422505, 5.50670686125921, 5.128529904628235, 36.514632840025996, 20.925967782291526, 7.417535403035828, 7.524941891036704, 8.720169712670625, 16.322128011540705, 8.966526608470407, 9.390780059458065, 5.638788464319082, 6.713015040506013, 37.37028941213069, 19.420921286701287, 6.062772312629008, 19.594953481142785, 26.93750728268201, 7.16433335753242, 11.124653357150336, 6.004504706022411, 5.520151241364761, 9.111488011826491, 8.698731553033886, 19.084198392317745, 11.111572213707653, 9.699055436222855, 23.90419065158299, 8.067944479755294, 11.222312919270935, 17.48197741059745, 6.635111769468088, 6.09659827191594, 18.63394096527146, 11.860120902446798, 19.71748671705003, 7.708446537228811, 7.45491440136464, 5.781935132201379, 10.202742874193289, 5.926563226998741, 5.458831863238215, 13.777070841247468, 18.2198686439587, 8.336184600369501, 15.412230822494212, 11.179352563418629, 15.550280929580738, 7.17751070017352, 27.075586515134788, 6.154345154046323, 8.532681755467445, 12.050214985978409, 7.806668224762969, 6.881216805983564, 5.570589866807435, 5.575252777734467, 5.764417585787692, 6.355408423228676, 7.4170516459951825, 8.668431234458811, 6.402028264772868, 5.31591995551195, 6.045018729109144, 13.810209779495272, 22.774647358595928, 17.138738920926425, 7.765872164603524, 13.178589649835063, 35.47386288031156, 20.459272865156755, 21.79433969653353, 11.85269751405092, 11.19519344529678, 17.40707951288076, 42.887170287308095, 6.171912080918752, 23.227379832455625, 23.94396467359946, 7.454870366469119, 13.837129152803968, 14.42642513964458, 17.683023705384855, 16.427906857060975, 17.6117364385358, 17.955887598419995, 5.349514290788108, 7.421835921056517, 8.515442680533233, 12.123424531947547, 5.676314169567353, 8.270270896109958, 16.88514000202277, 7.834839358443733, 5.38546528794199, 10.705568041494415, 10.021833143417128, 27.872014804690412, 7.517886259021958, 9.569431432704429, 8.041288460974847, 8.784475330281266, 5.838292391901746, 5.882997784065998, 7.245037983364645, 8.735093267273298, 5.078974685992787, 11.86958121893943, 5.536193360137668, 17.294111180449903, 13.984727666997522, 5.191605633650676, 18.993561737587843, 6.696712510154498, 31.47001574062834, 8.432632647423118, 9.773318457068328, 9.106308714035672, 6.954947981126811, 15.916683134288009, 20.57514069520702, 5.492149787116544, 21.05063435520235, 24.20736554938951, 13.122598374211975, 10.130708033761216, 6.498292909085725, 9.404013281941852, 6.923090811656569, 6.686332889387109, 11.345278521954363, 11.415525584381221, 13.624315068641193, 12.773630870506059, 8.330465023119398, 5.09185773942076, 8.407504286186947, 19.507029494749602, 10.588355006249673, 8.472332841129518, 7.758137636420786, 5.244761173933337, 6.322564571992166, 8.25758788785531, 7.698178438971355, 14.686413224559718, 19.13138675520828, 10.80461113370214, 31.75531157758515, 9.548708201809267, 35.24301680204543, 22.696025135537543, 17.4205965201212, 5.734710200561401, 12.747343554953618, 17.92980642186881, 13.9797045487895, 11.635594255509583, 19.717512464406127, 11.892418448366415, 5.23889386364726, 6.327948409312455, 5.08103689732397, 20.939776427719654, 5.993246838672084, 11.632983869908607, 13.419078778209224, 9.009058636937175, 8.302909060210482, 7.736127512220201, 11.717903284858735, 7.177408646373775, 16.257593680085215, 21.024376786354352, 14.7463038156663, 14.544167451135097, 22.147908486559594, 11.405647746510184, 15.775836675375391, 9.585352854982458, 6.46011381902855, 17.069753293209086, 11.938837511902378, 6.218148967693993, 9.237634953428431, 9.264265281956831, 18.834954360453022, 32.80784927550157, 32.85769977840871, 40.68119558658047, 7.297623980475699, 19.604977883471594, 10.383211513477915, 16.94817214616373, 11.024784731400747, 25.372659379802805, 21.37081485803855, 5.6226913491062405, 9.456942730436571, 12.42738647877881, 6.522985009047852, 10.873093517567142, 5.954354023305944, 6.004325706352266, 7.891798207810906, 7.504732500362647, 5.241537785138594, 8.078214674248727, 9.04142869924871, 6.513259569006099, 8.106926523647267, 7.491196897020051, 5.162680611977664, 7.43673586419793, 17.56696732152829, 5.423145164022888, 20.033508042099378, 23.76724185588359, 18.843127745528907, 17.334947788460738, 7.422646201090148, 28.10272742300121, 28.389059073586505, 13.540832785506037, 8.737291951379504, 12.648704030200074, 7.629489400124565, 12.850412470354286, 17.881230200410315, 8.195777914623271, 9.506147163329327, 10.158182000344203, 18.608580360857534, 28.762769788508383, 11.323881199086646, 6.01006954447346, 25.971251761267606, 8.195157365099726, 5.911887683883483, 5.62640544575866, 15.306681914325868, 24.320301696983222, 20.52639046271822, 19.238578489722563, 5.440603349616025, 6.437671312697655, 10.496700881636443, 7.097660558726057, 13.179971996499226, 8.158038295807955, 10.394521943080312, 18.648546903241684, 18.68441020437674, 18.339539804335555, 20.147845320172813, 7.040834958322979, 13.257308976316828, 12.023162154596848, 12.157766560703134, 17.82425468915273, 15.076483142869009, 5.059258861014903, 10.535223630319113, 19.256698673160738, 11.011261350897508, 11.79604415435068, 12.598415852394826, 6.542911966413027, 28.68623625592061, 8.771566556657913, 5.434841818930184, 15.346492356056688, 15.968307998789763, 7.695007151800258, 24.00457705847369, 16.91733396796577, 15.275900228436523, 19.869344891936997, 26.236133922026468, 11.63240153327156, 6.648072442946963, 9.924468817746577, 12.15320969159399, 6.633059054060099, 9.93274856384477, 5.66663346762664, 10.303782316851771, 23.696189461360884, 12.307363051190116, 24.242394676385082, 8.301121164742646, 7.787775879532737, 10.97288322031477, 5.851020404723693, 11.961612181363984, 33.812797572066245, 6.9851603270850395, 25.626222338058568, 7.914464642546281, 15.115875157185165, 5.462416609303252, 7.092816241544008, 19.584087530859932, 5.835417430875474, 8.95004682985169, 5.41679929731844, 14.486396590247937, 10.156680399606477, 14.07573003505278, 14.043776611861409, 13.773362255386843, 6.290782280991003, 8.212528770969254, 11.120857213947922, 13.153270733877958, 14.615153455336566, 5.1029209581299995, 8.12068253812053, 32.627606872094404, 8.744712984166728, 6.023596422081517, 9.451634605064564, 6.660074095015264, 12.495331927181166, 6.618690742395913, 8.336138198104818, 7.558039237990003, 7.052929456129053, 14.562077360995183, 18.102450987119987, 7.566374840506402, 5.972645064762667, 14.179404023633928, 17.021834175978178, 12.520858717124092, 6.151009444286827, 6.260548729635351, 25.77402762416963, 7.0684388274121055, 17.255319311996953, 7.365514417234256, 26.518784083274213, 13.269973863286591, 11.078315620834053, 29.108167497604633, 19.528401833556924, 7.727412126317282, 21.008114385157015, 15.645021168263906, 12.31782015800211, 20.237327091126893, 20.838576003650026, 15.626713744708795, 5.284637177048991, 6.205446428878724, 9.288876015918342, 16.45527190779273, 9.079894252314679, 56.99304410045777, 8.86138164041317, 53.91115181253489, 7.225829987916367, 10.961249787150425, 25.78546107647958, 14.967107617768276, 12.102102742124451, 27.536573310243497, 31.32557355690558, 14.756707656383064, 18.406741685552266, 13.525680564756868, 10.306305403856733, 15.536275185274532, 12.540284362179364, 13.31016095879453, 24.22265718019718, 6.217878382063908, 26.7312164660816, 8.695213509187296, 19.9304150302641, 6.605947233549871, 6.709930603083188, 17.420780350625687, 21.44908651846245, 5.760008547581396, 20.889062763560478, 5.415552021545274, 5.771207170652597, 15.935270703700493, 24.570991900669647, 12.458749875296283, 16.52553548379386, 5.08334344464819, 15.282731307648243, 28.136137877304197, 17.747144971581008, 6.490338187276443, 14.172805327065305, 12.558840147457845, 6.09356593776114, 6.215869433693594, 10.273334485461675, 28.198052635186528, 10.714443439369749, 12.785709458470086, 6.3645312419872875, 7.519322167338183, 25.94164386256609, 6.1440593075128405, 5.379372535304364, 19.675338672039114, 17.432215220990873, 12.664040890451504, 6.119649516191174, 6.068347124758249, 6.162544808927969, 18.356659355364332, 8.625746410728802, 8.152149223156572, 23.937685078805384, 9.284484608740108, 5.544551375012311, 16.28350636732145, 7.023807404024, 5.597217839690723, 11.880965788707194, 7.622058561056896, 6.887553261809391, 15.598439666009313, 21.86142141280976, 9.250431619688468, 7.7393115196248266, 28.561387835157717, 16.761267961895143, 19.388772958324797, 23.658131946451064, 11.579633519744727, 9.256143920932505, 6.964609584852098, 23.65829674399983, 27.994495793195988, 18.42047805987586, 20.473868580213587, 18.536078715218967, 25.32583079008843, 21.944139331895652, 20.03465867103473, 8.182149167373751, 5.261915767130845, 23.45654918108947, 6.01209128859148, 16.071113859259377, 5.908223001580732, 5.324564327757255, 14.75683198180996, 6.153411941396116, 11.0403875986601, 5.749937127810692, 12.023388218875668, 7.296735393307798, 29.831030633124502, 7.327272869319095, 14.494477062979747, 16.74717744456449, 15.619507726020268, 11.269906447677487, 5.5345474212286465, 6.49099009525852, 6.3216063917447896, 8.306194376128198, 5.765509575623744, 6.732829050302712, 6.140747030384676, 5.39254318579993, 5.520269598468234, 6.449183777972825, 19.64697461368951, 27.583179877500953, 13.385076127962217, 9.32174777376254, 29.006551000255726, 18.808491865707733, 10.76838389073662, 12.98719705758072, 14.08061090339593, 5.714356840179174, 8.202130718046341, 18.139542821355395, 16.72307853529358, 13.140027007777695, 7.901068609146803, 6.008681472555755, 27.873971346076097, 15.073582168185391, 16.965412453878365, 8.580848415195907, 16.135741173412995, 12.72841548340331, 6.304572565285932, 5.349462729132801, 11.622974023746005, 15.266481340959315, 6.7424115841039995, 10.872025407518377, 18.930415896035868, 9.671850167277556, 6.089009293580159, 18.049791145450225, 23.947705580655906, 11.154960761091044, 21.289872395097607, 10.634054880214624, 14.342311299383633, 6.551113247146194, 14.807528023148084, 8.416144554960029, 8.997089268026587, 26.09022648335512, 30.56922142868368, 9.89793655872132, 24.29752511321962, 17.16223142058712, 6.0354124042078565, 13.105353883096278, 6.58154636290446, 16.812734509037423, 22.677466085684813, 13.8113920099033, 24.301819771724773, 19.806422097682727, 6.227168904332482, 16.872088949844507, 16.5269302767519, 5.071319762283235, 19.55185870425219, 11.588598631251577, 13.80150412539865, 13.456365187152358, 24.550594059206727, 13.476720235420173, 9.28997688044618, 16.770230178776096, 13.91766908712945, 14.945697327914711, 12.739789928485077, 20.431457302342473, 22.275888004419578, 7.069573467722906, 27.70042427115429, 15.369494271819695, 14.380914896179178, 11.246353307824663, 5.2901713423262295, 11.660301897558082, 9.220709044232317, 7.1674820470851595, 12.908714704757438, 25.652397790278012, 5.041265622696167, 26.81548806779874, 12.077134930843615, 9.8980907073144, 11.394065667257173, 19.243895334377974, 12.367146646592154, 5.794039472616962, 5.53069808865764, 14.931766621114559, 18.046299781722418, 10.830143358079985, 7.058966267064953, 18.970135335021503, 22.74171904451444, 10.421537352428862, 12.58839002239397, 12.297727991044468, 15.117656421894981, 8.10089646418383, 17.71765872200092, 16.988158571800486, 24.177117472342996, 16.290135964595002, 13.156485264343162, 5.317875677848881, 10.48984169813138, 30.300863800294284, 15.29806451427873, 16.408188965266273, 14.929402662727714, 16.352202717972858, 28.458189929453056, 10.09492612365319, 17.35187244738285, 17.468773678566237, 10.608194995627606, 11.826470940147749, 18.042010786925132, 5.34244715622147, 28.33658672801197, 14.975748954441421, 7.091584785163853, 5.370486146044212, 17.254794198232627, 25.76455763961164, 5.938703349270493, 18.673066340853797, 54.28219087563463, 10.010676954936313, 32.816611981196, 15.453866881175042, 44.40021598382624, 8.251555020597072, 25.246617311530326, 20.493102572895918, 10.340925359340858, 5.934217887494398, 9.037983146172092, 11.822976860075574, 18.664932891430478, 9.959105018009012, 17.3717699966315, 27.361415060026147, 18.359346552435305, 11.18690051400545, 8.958082964805094, 8.444025501204589, 5.16577740336993, 27.238700287865317, 7.724643168093925, 6.130251295976091, 5.442417274854572, 5.824270982113522, 9.022406789852925, 10.578000588450536, 19.902550301578586, 14.674394655479048, 13.877142885724455, 5.695956368883734, 29.030485628240143, 13.824286140980035, 14.63819554883295, 8.57024826489183, 17.617663836619545, 7.919601980905495, 17.96769675382828, 22.78146449195448, 5.051882883088322, 18.230651760870806, 10.355238630601535, 12.600980935402376, 12.23317927357499, 18.074185396482342, 9.939749120571989, 10.173474536899558, 8.08620891301786, 9.699770567971534, 13.066133304159502, 10.39744563300478, 10.360156535423828, 13.270182650229271, 7.959940543387883, 8.315158794189967, 25.65417957774214, 7.384403660665194, 5.527889931486098, 8.554940083404285, 9.010652426034557, 10.972197041201081, 7.3916424594794625, 12.986947251923544, 18.85690713124846, 20.547802072786716, 10.62400174988286, 12.439699219352057, 9.123419277075822, 32.88532082980099, 5.822409537077899, 14.57597054072388, 22.843266138212293, 20.654493540088744, 9.235167994567513, 20.13550818755619, 6.6229741587434106, 13.537741474100219, 6.175658292442259, 25.065652447070434, 15.99124460069802, 8.291531731150906, 5.632437256299908, 11.791399623467237, 28.77183730315053, 12.527117097050382, 6.917552530201281, 10.408117046688059, 18.515924776045942, 8.750742090898635, 14.169721013084322, 6.716212139140905, 11.843174514834113, 5.449114987955141, 21.297566748846673, 72.62945196132688, 9.972395750898126, 37.61260779886834, 17.261467133175234, 9.358512178666226, 22.536009008144255, 6.189704444966319, 6.799529544642248, 35.15771860747929, 21.732909417150363, 5.521664938392205, 21.327595606036343, 18.226042247305262, 19.8378456918514, 10.889553818712566, 11.733213834832656, 20.097850740646365, 7.121045449468346, 22.025146859759705, 5.450686027656619, 17.229914672896538, 5.652317401495852, 41.75724365491919, ...])
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);
([2888888.7223016443, 2898032.2219391945, 2910671.8529201904, 2917749.1172050787, 2924063.0892734113, 2926360.3579120156, 2958062.444560396, 3033514.8447665297, 3034746.25408625, 3038774.5509274704, 3050751.144325536, 3062673.1799724335, 3096248.2430757093, 3099725.6806314, 3111528.5662167193, 3116839.0625, 3143067.112583183, 3143618.408403598, 3147299.921726105, 3154939.1344052968, 3172432.5458009723, 3238468.75, 3243376.980372113, 3301920.93492681, 3333848.393554862, 3334190.567247736, 3345612.9212183617, 3367908.2017896613, 3397082.276886792, 3401395.1080706324, 3409404.495841172, 3414403.9932950325, 3414682.0786235365, 3415527.0047941497, 3416382.9456649474, 3416906.77908597, 3419580.603967435, 3432267.4809420444, 3464348.4375, 3495635.506375079, 3522637.5, 3525692.039951119, 3554457.8165006246, 3580645.3125, 3769998.981340575, 3808261.5605770354, 4238752.691349528, 4255492.176303943, 4271970.1746685505, 4503688.2307812665, 4611860.9375, 4659695.825748942, 4681853.675065343, 4712788.99141735, 4715145.963341619, 4782159.199171214, 4801550.71569945, 4857985.506190618, 4858042.413232451, 4861255.96203818, 4976360.9375, 5054771.937140559, 5087855.037033997, 5104097.142492731, 5154136.6115780575, 5171857.882150017, 5190042.355035099, 5190871.765465946, 5195487.242674656, 5196185.852323596, 5202899.877970981, 5239527.9605437, 5295604.955089748, 5296389.641989329, 5326532.51183596, 5329101.449876759, 5332237.430242497, 5332734.250941861, 5364318.75, 5366787.326265833, 5423548.33175661, 5432085.69312462, 5432086.092905454, 5454840.63896835, 5456934.375, 5485178.125, 5497323.042215965, 5501210.722670648, 5505252.784451522, 5510276.260450884, 5519085.439731288, 5521407.536834264, 5559599.813237331, 5561603.125, 5587745.138521499, 5598517.1875, 5617269.163072642, 5648676.897886, 5654216.429300983, 5654427.713292627, 5655436.255005022, 5661481.288088624, 5679671.008570425, 5682028.125, 5682189.630024998, 5683313.682413696, 5686340.625, 5693339.0625, 5696972.120666895, 5705646.868727855, 5719454.104551942, 5725610.606827771, 5726840.8566163555, 5728718.75, 5729812.375036257, 5729849.925152399, 5730379.6875, 5733866.29726588, 5746266.0916747665, 5749446.374370621, 5750552.773298764, 5751082.8125, 5753508.492540951, 5760548.095838252, 5767969.580323056, 5769025.688335494, 5770514.314937813, 5770953.84817717, 5774476.685498353, 5781962.727666891, 5795742.1875, 5796709.891695341, 5800104.975763485, 5802051.5625, 5819076.5625, 5820359.209938645, 5820529.6875, 5821375.406904171, 5823715.139769988, 5823808.749860321, 5826954.6875, 5831711.140709416, 5835070.094304, 5837649.66682144, 5843251.5625, 5848546.177252486, 5854824.01897893, 5865357.548176269, 5891044.52523542, 5895815.625, 5898976.4061680995, 5914445.691876357, 5917689.906102209, 5930910.933291279, 5931018.89524582, 5931725.859225776, 5953735.154047327, 5961223.4375, 5963316.546177042, 5965079.97010109, 5966688.761395752, 5967762.449687762, 5974761.989469537, 5993829.2221139595, 6000648.544821234, 6002360.9375, 6003352.969124552, 6003600.650503593, 6004652.446742132, 6004964.549475819, 6006092.463925533, 6007273.683739378, 6007390.625, 6007771.975052318, 6008629.048188877, 6009776.5104966415, 6037955.868993961, 6040310.931060705, 6132162.002371387, 6145183.1829307275, 6153315.342466373, 6155445.792882179, 6156047.797248054, 6156223.023064153, 6207503.551392514, 6210593.75, 6243463.510836813, 6253294.676754761, 6254621.408005466, 6285625.647587994, 6409456.657137393, 6437507.704154005, 6447251.908451728, 6451531.24908446, 6458931.744359235, 6460854.001059201, 6467787.9487245055, 6468045.805381998, 6468493.255201239, 6487279.331296149, 6492183.174749752, 6498475.623201801, 6516772.543059981, 6518419.147444327, 6519479.683127903, 6520421.9873019755, 6521379.974796793, 6534433.755585626, 6536099.834710362, 6537003.01688382, 6544179.866961542, 6549535.689921833, 6550782.007149614, 6569115.14094274, 6583698.419639422, 6584364.0625, 6584883.833520102, 6595249.611983904, 6597851.564136576, 6656955.741263161, 6683662.597905866, 6831843.971341276, 6858038.431721605, 6885280.85079709, 6891698.31178155, 6891939.036330067, 6914201.110934178, 6915223.210338813, 6930157.570187813, 6949682.489459198, 6966472.76369942, 6972268.202483931, 6975120.671199386, 6980438.089557182, 7012746.2091366425, 7013096.355711387, 7014020.019153573, 7014213.854869923, 7014864.227769874, 7015084.547630872, 7016421.9864357235, 7017773.730585348, 7019737.0384870395, 7019946.801849851, 7020252.708117545, 7021089.837971517, 7021389.41899409, 7021474.25590503, 7021595.290293564, 7021687.1450041365, 7021952.974354068, 7022138.181822003, 7022166.581022283, 7022588.119294073, 7022631.51114021, 7022738.133645528, 7022763.832668474, 7022771.820824479, 7022837.646907581, 7022872.4741915595, 7022893.887190507, 7023250.214028646, 7023497.750926678, 7023567.299135768, 7023655.296231377, 7023676.992656655, 7023794.919020444, 7023964.435880661, 7024425.286353669, 7024641.656730093, 7055169.296342009, 7056668.673363564, 7058326.384061938, 7058877.463232759, 7059631.621177949, 7061454.7306408975, 7061912.173393215, 7062051.006838262, 7062103.032485974, 7062525.984090276, 7062598.555501627, 7063041.643115397, 7064257.590708054, 7064381.988831767, 7064906.570497774, 7065157.346971646, 7065415.694397321, 7066061.376277243, 7066393.49171689, 7066464.15960359, 7066498.941558011, 7067518.502878498, 7067747.723549158, 7068063.9715449605, 7068162.660655574, 7069165.623045621, 7069635.0933547765, 7250157.543188957, 7251018.477938629, 7251971.018252983, 7252733.716816459, 7254428.114653009, 7256645.71749591, 7257765.336918761, 7260222.999838764, 7260460.997194486, 7261410.857562842, 7289452.44595411, 7293123.518833984, 7293233.531066454, 7294549.957708136, 7298846.176454977, 7300512.781811269, 7300594.88290325, 7406472.994806766, 7442314.939932035, 7449437.351342243, 7451670.243947537, 7651886.603093944, 7651920.96951362, 7655943.842644623, 7656513.803992367, 7692682.8452919815, 7693484.526047676, 7751845.521550162, 7757076.484731378, 7765445.926320821, 7767483.250593032, 7878178.644610202, 7896056.779483961, 7909948.999833932, 7939403.874371489, 7941222.714357253, 7941286.806908456, 7941424.105177374, 7941890.07911156, 7942452.22094163, 7942836.935018195, 7943432.033544996, 7944513.637784328, 7947433.85933266, 7952221.494539825, 8021162.977531325, 8024405.115836432, 8041747.882761659, 8075801.5625, 8080054.889366474, 8080399.529676762, 8080694.169087889, 8082410.980251034, 8084098.962349715, 8085912.5, 8086152.331659882, 8086877.782892796, 8089124.714977663, 8089269.8827696415, 8090037.1765722865, 8094190.482962954, 8255550.571524548, 8268895.654534761, 8270036.497152487, 8271175.615818559, 8271623.6574157495, 8272521.3439635215, 8273112.909086168, 8279067.743073302, 8279907.323275752, 8280034.34403649, 8284867.618452449, 8285508.410453021, 8286890.28049619, 8286955.962028872, 8287103.842380319, 8289115.108197237, 8289123.195185061, 8300204.956200468, 8302079.192945707, 8303599.27364178, 8307334.698261356, 8308336.828652014, 8308716.075167157, 8308888.261668256, 8309052.10920648, 8309489.490386528, 8310965.688971574, 8323872.380168072, 8333989.009896619, 8336685.467289293, 8337232.019203079, 8338130.90596341, 8338507.319474601, 8338553.391344832, 8338861.417652851, 8339438.78372885, 8340310.263816337, 8340758.0468033515, 8351447.840277048, 8353316.314276649, 8353960.307469225, 8361120.047425973, 8361879.111495455, 8370155.502399935, 8371020.383587823, 8371420.397142174, 8371721.062536022, 8371879.288245298, 8372243.884874689, 8372406.426650989, 8372865.230409039, 8373096.160091552, 8374626.6445803335, 8376918.411813216, 8380181.471882168, 8382230.524841324, 8383437.125171432, 8383828.460490143, 8384303.533887885, 8384464.048769764, 8384580.1135064205, 8384656.194775276, 8384792.442583998, 8385121.9538584035, 8385521.100457119, 8386848.22046819, 8387631.095997979, 8390753.371282145, 8391982.8125, 8393318.362686627, 8399386.12797182, 8399539.492925692, 8400780.524161255, 8401305.299161663, 8401451.818944937, 8401486.239821587, 8401522.580875972, 8401578.564725175, 8401604.462591378, 8401772.341167882, 8401850.65674824, 8402004.13018338, 8402013.098163646, 8402042.488375347, 8402093.283620933, 8402183.96747964, 8402185.968256386, 8402261.290558994, 8402353.610408263, 8402601.771177089, 8402671.962885793, 8402685.304857083, 8402731.197825154, 8402751.45419481, 8402843.344733631, 8402868.852171326, 8402972.376661252, 8403086.223303966, 8403646.700718813, 8403745.77754434, 8403789.52606926, 8403863.6641559, 8403951.449483126, 8404107.732017396, 8404213.2471799, 8404238.843581794, 8411692.244673222, 8411842.1875, 8412153.755317744, 8412733.66231879, 8413065.090051625, 8413740.32170057, 8415314.217574975, 8417024.986020815, 8417773.834624527, 8417793.905254986, 8432372.019829758, 8432869.447929515, 8433387.725215953, 8434181.08076141, 8446467.357566189, 8447466.341456436, 8448041.35807503, 8448368.46918016, 8457637.370591253, 8468901.146542551, 8471466.823425254, 8472164.227427112, 8472435.5815914, 8472480.929222286, 8472531.134510707, 8472605.764924169, 8473245.864631314, 8473305.318199972, 8476635.277577534, 8476721.576290643, 8478162.183696445, 8478208.324822215, 8481476.033974336, 8481815.710621709, 8482253.701081805, 8484432.366440596, 8487522.64001966, 8488364.857530417, 8489743.822003525, 8489782.129130943, 8489894.353876764, 8489990.44925738, 8490847.07467614, 8491443.026432121, 8495712.476874731, 8496349.814681802, 8499650.121982692, 8501114.83966889, 8501845.822733138, 8503857.635527847, 8506223.115996415, 8507070.533800183, 8516198.530118112, 8518594.314292228, 8519079.084805515, 8532747.677303033, 8533268.247478222, 8533341.864824442, 8533466.742450941, 8534523.346214877, 8534783.820783285, 8534898.18625537, 8535008.849162167, 8535055.589688862, 8535085.100825924, 8535245.407979596, 8535733.164394831, 8537857.496678784, 8538144.806108681, 8541508.318647562, 8542277.134711334, 8542431.844674325, 8542631.284966907, 8544235.400454242, 8552357.397217983, 8554894.554707764, 8562478.04920217, 8564197.264272965, 8567048.49248729, 8568962.84708484, 8593155.320607862, 8593630.50433404, 8593646.232316831, 8594514.164843772, 8594563.005439235, 8596387.746796288, 8602116.907115389, 8602562.936969623, 8604025.085049644, 8604557.132710477, 8604573.914852079, 8606070.613052573, 8607438.455422474, 8616874.064452117, 8617288.070012033, 8630341.496981228, 8646663.134764435, 8648504.038017131, 8666300.962598598, 8676675.693685628, 8700748.02431031, 8719945.050039085, 8723806.277401721, 8743477.045440577, 8744931.148637902, 8745319.238358242, 8746905.099226566, 8749056.25, 8750257.267347096, 8750743.693567177, 8751405.473149432, 8753788.49522228, 8756506.26513696, 8772854.577434406, 8795882.097171055, 8811945.598081669, 8925026.074207949, 8950895.783723976, 8961853.000241894, 8961857.087624494, 8961971.627660368, 8962716.93018757, 8963329.343085947, 8964023.621913586, 8964209.232298093, 8966037.495613422, 8967252.560678665, 8970959.286658106, 9001640.850524692, 9005924.672538295, 9012255.662895544, 9016677.33880669, 9028783.731015136, 9029020.45134993, 9030047.896349646, 9031649.16580029, 9033288.291097144, 9033598.530059038, 9040910.810779728, 9042720.045254912, 9044572.612200279, 9045593.109165413, 9046317.08441649, 9053942.561432587, 9056347.07523459, 9057166.620759482, 9057460.114580136, 9058638.083984371, 9059131.197186394, 9059815.589941883, 9060121.669417102, 9060843.049832262, 9065614.916148368, 9068029.577158988, 9068715.721699338, 9069954.655669563, 9070610.494192896, 9070826.437016157, 9071925.33075203, 9072418.199968165, 9072906.292114379, 9073305.314912427, 9073547.272658091, 9073774.786528775, 9074132.805099696, 9074227.914766852, 9075407.307586651, 9075432.761773238, 9075764.41004518, 9076840.311781002, 9076890.625, 9076925.948887888, 9077045.3125, 9077116.007728856, 9077221.765830193, 9077224.844180038, 9077302.700887088, 9077713.045169273, 9077730.86030199, 9077743.243074095, 9077884.325655224, 9077980.3727413, 9078283.946308626, 9078416.589688424, 9078651.71025713, 9078758.560616959, 9078882.558972314, 9079410.63102963, 9079429.286900796, 9079455.064038381, 9079611.63779361, 9079881.761399034, 9080127.281002661, 9080559.10058269, 9080750.527213603, 9080824.495576484, 9080946.117914353, 9080972.874738453, 9081017.627158534, 9081854.092185387, 9081897.11338672, 9081907.57411136, 9082125.712011704, 9082175.361580623, 9082285.154108172, 9082325.086732915, 9082487.480056463, 9082539.644595373, 9082684.395681856, 9082780.360741716, 9082921.068733845, 9083095.364905529, 9083148.020137575, 9083227.499739151, 9083339.045773478, 9083362.21847572, 9083494.602591038, 9083527.295915708, 9083671.636869118, 9083759.229124868, 9083781.771464737, 9083857.303689985, 9083918.046183573, 9083956.779182743, 9084033.614068093, 9084037.798026184, 9084052.932893801, 9084277.249199832, 9084297.552750038, 9084316.21565888, 9084451.299338961, 9084478.85702515, 9084528.068985462, 9084543.98410644, 9084751.875039212, 9084844.927548524, 9084848.12929114, 9084873.871297162, 9084995.364238877, 9084999.028633034, 9085107.534438029, 9085181.111964326, 9085238.965160822, 9085280.048679939, 9085395.3125, 9085397.685648331, 9085441.447060462, 9085476.1286952, 9085522.146089138, 9085568.659632858, 9085652.492740571, 9085666.880228197, 9085674.622861706, 9085691.312286664, 9085758.721802955, 9085786.641842952, 9085854.470426831, 9085875.397447193, 9085886.840215318, 9085948.234662602, 9086031.83834603, 9086090.301614366, 9086199.235939724, 9086423.705336394, 9086480.884830853, 9086533.85956025, 9086551.246717503, 9086617.792984683, 9086674.943408258, 9086811.595237285, 9086966.131260455, 9087053.752326757, 9087082.452059906, 9087144.479097009, 9087437.377554439, 9087522.279813197, 9087570.479692021, 9087611.026609113, 9087685.967687275, 9087795.337326745, 9087833.231335912, 9087868.786912812, 9088919.635196915, 9089574.844370468, 9090447.366499837, 9090613.906489043, 9091887.233180955, 9092923.191340983, 9096785.230119776, 9097625.53975812, 9098065.14641294, 9098701.551058894, 9100999.620015047, 9102516.368458502, 9103245.069773944, 9103447.808930514, 9103773.19167795, 9103876.681239989, 9104204.524321856, 9104335.01964531, 9104379.24591727, 9104527.555644069, 9104753.879658371, 9104797.637535166, 9104939.430765241, 9104992.22172461, 9105309.820898555, 9105492.705390466, 9105540.512709199, 9105544.578748537, 9105583.102698585, 9105622.093433412, 9105720.607819958, 9105936.020225251, 9105945.205909654, 9106015.455023676, 9106061.495672386, 9106434.751939556, 9106620.321246935, 9106692.818154242, 9106737.215264726, 9106739.079866543, 9106805.729383156, 9106893.705461383, 9106992.02087914, 9107028.521605046, 9107041.706680255, 9107279.924732232, 9107430.826262074, 9107509.238453217, 9107509.683231667, 9107534.976761026, 9107551.816282814, 9107661.419253007, 9107694.790142078, 9107880.667391075, 9107972.45220136, 9108031.291875985, 9108037.111060334, 9108112.168135926, 9108188.804451123, 9108264.937483769, 9108318.426460199, 9108383.98512978, 9108781.6118576, 9109032.945330998, 9109050.161804566, 9109078.401125113, 9109101.227382584, 9109115.171903254, 9109116.947639843, 9109155.804108487, 9109206.20059734, 9109211.346721279, 9109223.140179582, 9109382.167493073, 9109507.0835078, 9109537.15012674, 9109551.682262996, 9109585.736400736, 9109585.894435124, 9109653.23293113, 9109666.74584104, 9109681.324603012, 9109682.782819984, 9109684.690959373, 9109715.491120344, 9109740.797260288, 9109749.340202225, 9109782.648092357, 9109814.045978589, 9109877.501693675, 9109880.220413303, 9109892.789408077, 9109939.226476884, 9109977.365509236, 9109999.108073262, 9110032.53931188, 9110032.763312897, 9110054.684941512, 9110141.255106283, 9110179.488404747, 9110277.881839583, 9110278.15658974, 9110362.786666038, 9110388.558286002, 9110411.706584537, 9110419.388535291, 9110440.59881422, 9110473.069055934, 9110556.827246947, 9110698.88759922, 9110747.070337573, 9110750.302683614, 9110804.124398386, 9110808.656069567, 9110824.54961167, 9110832.411349589, 9111001.653003586, 9111075.968765914, 9111128.12182002, 9111159.701659681, 9111234.254056439, 9111346.095756764, 9111361.452774078, 9111500.508854916, 9111557.452601556, 9111587.6756722, 9111616.77778496, 9111665.64032698, 9111823.427911423, 9111853.817376923, 9111909.260149762, 9111922.685575169, 9111984.873237414, 9112004.530338028, 9112007.804433446, 9112021.03669868, 9112057.8125, 9112105.394676303, 9112113.327940766, 9112161.065728003, 9112179.423431767, 9112213.995679893, 9112239.22447623, 9112252.518550443, 9112271.30568613, 9112276.502737476, 9112348.06882924, 9112367.59100309, 9112396.035530377, 9112506.909479754, 9112534.959267925, 9112545.25084015, 9112564.726579498, 9112584.41254307, 9112604.21032863, 9112614.348824361, 9112631.267845541, 9112660.13468197, 9112670.636140881, 9112726.958318094, 9112840.166303545, 9112853.263117893, 9112893.360467643, 9112921.492341762, 9113007.225863377, 9113126.490608558, 9113135.62709797, 9113271.70392834, 9113424.189755935, 9113441.013936898, 9113463.980579056, 9113552.062985074, 9113619.310644483, 9113635.172472937, 9113683.430195507, 9113810.219838556, 9113827.167154841, 9113863.3824183, 9113986.94237243, 9113988.15668244, 9114013.108239498, 9114016.259475065, 9114039.703851765, 9114150.852210889, 9114171.475854322, 9114239.468229575, 9114254.08977303, 9114399.476511667, 9114415.071374914, 9114644.791975161, 9114691.514146391, 9114785.991159717, 9114788.121426651, 9114802.47651683, 9114810.830084324, 9115006.725194748, 9115079.282132836, 9115103.023178138, 9115235.31195359, 9115280.621332014, 9115408.393604374, 9115409.018508017, 9115429.339429123, 9115475.703470943, 9115552.868340332, 9115608.135965932, 9115612.613276035, 9115707.65518941, 9115782.836722007, 9115812.393976577, 9115863.946451342, 9115942.259101314, 9115985.19031629, 9116051.138017615, 9116055.489402642, 9116059.171409877, 9116125.873423593, 9116142.196857115, 9116209.70275312, 9116241.011808595, 9116329.6875, 9116424.179834874, 9116436.663059905, 9116443.235068092, 9116463.014445722, 9116464.84794873, 9116495.094119633, 9116548.195896259, 9116556.664107691, 9116580.951885762, 9116619.792672724, 9116637.5, 9116774.109355243, 9116777.252205634, 9116792.686916668, 9116793.78188749, 9116825.816157082, 9116825.923490694, 9116895.49029879, 9116923.853572283, 9116998.090257136, 9117009.137522195, 9117024.483247338, 9117033.470458291, 9117038.378850322, 9117048.279600002, 9117081.605673177, 9117136.847751409, 9117146.873454493, 9117183.926730929, 9117215.364272997, 9117216.118829904, 9117216.296700928, 9117246.164823372, ...], [6.053421923758139, 10.315075958895314, 8.274935564891248, 12.38715537472879, 17.791038405916893, 8.885115259981024, 14.725543301566322, 5.658838260619104, 7.393108694331833, 6.212080921092012, 31.50762398184404, 9.122745356133054, 43.70424078421546, 6.599355490771338, 14.396969237651142, 48.14478813537609, 5.609912963326629, 9.05835334434752, 7.101026728625018, 15.222849430561231, 14.013892367197501, 71.05022620700393, 8.520649285179402, 17.99755568636348, 21.249596090657654, 27.43183619789341, 14.011325274508334, 7.750378794838487, 13.229556733765747, 14.215651278630418, 7.071965573009672, 7.950685842854012, 5.761604453916808, 11.897392397938015, 9.446598398517748, 20.473175312892486, 31.301232740085375, 9.592494377116592, 71.27047483765735, 5.782754828791602, 48.76852605922804, 19.478753286379728, 11.133965799836947, 47.327522436573055, 9.837877735146261, 47.12690130615666, 6.213921536508625, 6.265784861885348, 101.69740338114872, 27.71010646442047, 30.65024737162821, 8.578016469312836, 5.855833224520918, 8.249341961262466, 29.596061110720207, 14.31116614093371, 18.61410666800513, 6.421540420254953, 5.073024272685505, 5.598309590371584, 30.27403738731976, 15.183770693860907, 5.354043317282515, 13.261048241887208, 16.10721859016477, 11.238347874519203, 5.347695460677788, 6.741834205476734, 9.122902364538653, 8.242042436130427, 35.39436870741245, 7.544820276334722, 11.573416898375156, 12.172884250244538, 23.742263174518452, 81.04495156139623, 23.933175916552777, 26.292375703229467, 47.03992274035595, 25.509743983421785, 26.595718694383763, 30.231922550606523, 97.78245279211576, 22.25223046123759, 91.5926097530704, 47.04462583325583, 8.08805000544645, 8.176147862418784, 6.697371267564911, 23.72460227999242, 13.33216116448862, 24.066635847928968, 10.847815731387252, 69.83631874180304, 9.188503089822339, 44.95533251246761, 9.706938666695708, 41.93359750369026, 19.25363039980668, 13.57454306626357, 5.727267291585302, 9.363818256290639, 112.48573503621502, 82.46300753971006, 163.5382761617001, 13.666914199874341, 84.20099302612246, 48.29147788195442, 17.443029716437934, 79.5057236309771, 6.029505494574533, 23.366696718251195, 11.510123904478782, 75.3960484395085, 14.485678675374547, 5.458563140552492, 42.90560767566818, 18.320220833678047, 10.948018656293401, 6.037540764737702, 44.10414756197428, 66.57362560674157, 23.306338173410605, 23.23276880579781, 45.928052603168496, 93.65581094958371, 43.131593987655705, 8.709997861453479, 9.437616710072554, 20.723659151770907, 45.52851553011412, 6.334763460115768, 84.75989606151501, 61.5889981218227, 52.39548414363952, 83.87115701437337, 28.53558260826984, 16.758101849395807, 13.142540319253438, 27.51841630729094, 74.42893084418495, 5.7198140103941775, 54.82334457358351, 5.910906175646987, 85.47976438437041, 12.815235985110158, 15.890922365596403, 14.02143723202768, 49.60884890151722, 94.5836275518628, 8.205601100026932, 86.43551696730206, 19.556019991923645, 11.121134667100826, 153.5884388489277, 129.41778234149683, 66.17696956823944, 79.81763481589765, 120.85574529508554, 28.785395864740533, 13.905911618271205, 32.873432396655176, 6.665690748175924, 10.470656098284886, 9.423828454378123, 40.82256059789313, 25.7845959946596, 12.323519571974073, 19.881878828036456, 5.17686024762196, 7.196062144697749, 8.42123160661126, 81.87576353877657, 9.417460595525084, 155.17269133916116, 27.53622753987587, 5.5933080644460125, 9.325964316322274, 6.206309270812866, 87.29855156655248, 76.03313196312922, 118.39170019428434, 10.25548110279561, 14.93542616237755, 12.43215388066314, 73.75885187192156, 181.63669046154507, 20.23802833896381, 42.97326575948673, 26.054491537026827, 16.759321518640892, 10.962475336895858, 17.22193183361214, 14.884817068732705, 6.86638492703562, 10.201142192514679, 7.244624410120094, 7.7917938889605685, 6.412227122292369, 10.613124030299872, 11.745428332863147, 7.845343575832345, 18.292403564479336, 9.69170567976103, 47.24560075115795, 15.387555183864935, 16.16263890990619, 13.010478652627308, 10.878816841406106, 6.2536346261772335, 9.487902357698204, 5.79588592577292, 5.872210639760249, 21.65362559219981, 22.20297644125984, 92.12230031937692, 21.089060717214593, 11.698252570850038, 14.94775095533552, 10.415866902343694, 7.6390366038873765, 8.407200495387194, 12.981598471010933, 10.556233353234127, 9.22731626530189, 14.842691334217347, 21.99025763125991, 10.244362428128042, 13.888877771429712, 13.838312870585371, 10.215913381327471, 21.031845445549823, 8.485831631556483, 5.079776359983452, 8.825412034039758, 15.55231478923457, 5.33196926282917, 14.205075835184177, 7.664127099217795, 9.481766369660626, 15.383971020251321, 7.712796653216192, 13.432703571660525, 7.576993068912647, 10.533140185909698, 19.039342417512334, 16.131630728793226, 8.772614088877798, 11.093173214875236, 18.931938390797, 14.396809291415797, 18.383837884779943, 20.492853473775497, 17.977770590004955, 16.039947473273877, 25.899073549253878, 11.467794834913294, 14.738961502178833, 11.365368533526386, 17.852162443560456, 15.933154811617896, 6.521173777727171, 19.814073400459, 6.281406529219488, 17.911481184665654, 16.880894560410226, 13.627565420394056, 11.766193649654742, 21.876753833510797, 13.242557151301007, 17.53271213366105, 9.267432632193174, 9.184947555027913, 6.18705909592833, 5.302692049883823, 22.45176911428776, 5.15782428422505, 5.50670686125921, 5.128529904628235, 36.514632840025996, 20.925967782291526, 7.417535403035828, 7.524941891036704, 8.720169712670625, 16.322128011540705, 8.966526608470407, 9.390780059458065, 5.638788464319082, 6.713015040506013, 37.37028941213069, 19.420921286701287, 6.062772312629008, 19.594953481142785, 26.93750728268201, 7.16433335753242, 11.124653357150336, 6.004504706022411, 5.520151241364761, 9.111488011826491, 8.698731553033886, 19.084198392317745, 11.111572213707653, 9.699055436222855, 23.90419065158299, 8.067944479755294, 11.222312919270935, 17.48197741059745, 6.635111769468088, 6.09659827191594, 18.63394096527146, 11.860120902446798, 19.71748671705003, 7.708446537228811, 7.45491440136464, 5.781935132201379, 10.202742874193289, 5.926563226998741, 5.458831863238215, 13.777070841247468, 18.2198686439587, 8.336184600369501, 15.412230822494212, 11.179352563418629, 15.550280929580738, 7.17751070017352, 27.075586515134788, 6.154345154046323, 8.532681755467445, 12.050214985978409, 7.806668224762969, 6.881216805983564, 5.570589866807435, 5.575252777734467, 5.764417585787692, 6.355408423228676, 7.4170516459951825, 8.668431234458811, 6.402028264772868, 5.31591995551195, 6.045018729109144, 13.810209779495272, 22.774647358595928, 17.138738920926425, 7.765872164603524, 13.178589649835063, 35.47386288031156, 20.459272865156755, 21.79433969653353, 11.85269751405092, 11.19519344529678, 17.40707951288076, 42.887170287308095, 6.171912080918752, 23.227379832455625, 23.94396467359946, 7.454870366469119, 13.837129152803968, 14.42642513964458, 17.683023705384855, 16.427906857060975, 17.6117364385358, 17.955887598419995, 5.349514290788108, 7.421835921056517, 8.515442680533233, 12.123424531947547, 5.676314169567353, 8.270270896109958, 16.88514000202277, 7.834839358443733, 5.38546528794199, 10.705568041494415, 10.021833143417128, 27.872014804690412, 7.517886259021958, 9.569431432704429, 8.041288460974847, 8.784475330281266, 5.838292391901746, 5.882997784065998, 7.245037983364645, 8.735093267273298, 5.078974685992787, 11.86958121893943, 5.536193360137668, 17.294111180449903, 13.984727666997522, 5.191605633650676, 18.993561737587843, 6.696712510154498, 31.47001574062834, 8.432632647423118, 9.773318457068328, 9.106308714035672, 6.954947981126811, 15.916683134288009, 20.57514069520702, 5.492149787116544, 21.05063435520235, 24.20736554938951, 13.122598374211975, 10.130708033761216, 6.498292909085725, 9.404013281941852, 6.923090811656569, 6.686332889387109, 11.345278521954363, 11.415525584381221, 13.624315068641193, 12.773630870506059, 8.330465023119398, 5.09185773942076, 8.407504286186947, 19.507029494749602, 10.588355006249673, 8.472332841129518, 7.758137636420786, 5.244761173933337, 6.322564571992166, 8.25758788785531, 7.698178438971355, 14.686413224559718, 19.13138675520828, 10.80461113370214, 31.75531157758515, 9.548708201809267, 35.24301680204543, 22.696025135537543, 17.4205965201212, 5.734710200561401, 12.747343554953618, 17.92980642186881, 13.9797045487895, 11.635594255509583, 19.717512464406127, 11.892418448366415, 5.23889386364726, 6.327948409312455, 5.08103689732397, 20.939776427719654, 5.993246838672084, 11.632983869908607, 13.419078778209224, 9.009058636937175, 8.302909060210482, 7.736127512220201, 11.717903284858735, 7.177408646373775, 16.257593680085215, 21.024376786354352, 14.7463038156663, 14.544167451135097, 22.147908486559594, 11.405647746510184, 15.775836675375391, 9.585352854982458, 6.46011381902855, 17.069753293209086, 11.938837511902378, 6.218148967693993, 9.237634953428431, 9.264265281956831, 18.834954360453022, 32.80784927550157, 32.85769977840871, 40.68119558658047, 7.297623980475699, 19.604977883471594, 10.383211513477915, 16.94817214616373, 11.024784731400747, 25.372659379802805, 21.37081485803855, 5.6226913491062405, 9.456942730436571, 12.42738647877881, 6.522985009047852, 10.873093517567142, 5.954354023305944, 6.004325706352266, 7.891798207810906, 7.504732500362647, 5.241537785138594, 8.078214674248727, 9.04142869924871, 6.513259569006099, 8.106926523647267, 7.491196897020051, 5.162680611977664, 7.43673586419793, 17.56696732152829, 5.423145164022888, 20.033508042099378, 23.76724185588359, 18.843127745528907, 17.334947788460738, 7.422646201090148, 28.10272742300121, 28.389059073586505, 13.540832785506037, 8.737291951379504, 12.648704030200074, 7.629489400124565, 12.850412470354286, 17.881230200410315, 8.195777914623271, 9.506147163329327, 10.158182000344203, 18.608580360857534, 28.762769788508383, 11.323881199086646, 6.01006954447346, 25.971251761267606, 8.195157365099726, 5.911887683883483, 5.62640544575866, 15.306681914325868, 24.320301696983222, 20.52639046271822, 19.238578489722563, 5.440603349616025, 6.437671312697655, 10.496700881636443, 7.097660558726057, 13.179971996499226, 8.158038295807955, 10.394521943080312, 18.648546903241684, 18.68441020437674, 18.339539804335555, 20.147845320172813, 7.040834958322979, 13.257308976316828, 12.023162154596848, 12.157766560703134, 17.82425468915273, 15.076483142869009, 5.059258861014903, 10.535223630319113, 19.256698673160738, 11.011261350897508, 11.79604415435068, 12.598415852394826, 6.542911966413027, 28.68623625592061, 8.771566556657913, 5.434841818930184, 15.346492356056688, 15.968307998789763, 7.695007151800258, 24.00457705847369, 16.91733396796577, 15.275900228436523, 19.869344891936997, 26.236133922026468, 11.63240153327156, 6.648072442946963, 9.924468817746577, 12.15320969159399, 6.633059054060099, 9.93274856384477, 5.66663346762664, 10.303782316851771, 23.696189461360884, 12.307363051190116, 24.242394676385082, 8.301121164742646, 7.787775879532737, 10.97288322031477, 5.851020404723693, 11.961612181363984, 33.812797572066245, 6.9851603270850395, 25.626222338058568, 7.914464642546281, 15.115875157185165, 5.462416609303252, 7.092816241544008, 19.584087530859932, 5.835417430875474, 8.95004682985169, 5.41679929731844, 14.486396590247937, 10.156680399606477, 14.07573003505278, 14.043776611861409, 13.773362255386843, 6.290782280991003, 8.212528770969254, 11.120857213947922, 13.153270733877958, 14.615153455336566, 5.1029209581299995, 8.12068253812053, 32.627606872094404, 8.744712984166728, 6.023596422081517, 9.451634605064564, 6.660074095015264, 12.495331927181166, 6.618690742395913, 8.336138198104818, 7.558039237990003, 7.052929456129053, 14.562077360995183, 18.102450987119987, 7.566374840506402, 5.972645064762667, 14.179404023633928, 17.021834175978178, 12.520858717124092, 6.151009444286827, 6.260548729635351, 25.77402762416963, 7.0684388274121055, 17.255319311996953, 7.365514417234256, 26.518784083274213, 13.269973863286591, 11.078315620834053, 29.108167497604633, 19.528401833556924, 7.727412126317282, 21.008114385157015, 15.645021168263906, 12.31782015800211, 20.237327091126893, 20.838576003650026, 15.626713744708795, 5.284637177048991, 6.205446428878724, 9.288876015918342, 16.45527190779273, 9.079894252314679, 56.99304410045777, 8.86138164041317, 53.91115181253489, 7.225829987916367, 10.961249787150425, 25.78546107647958, 14.967107617768276, 12.102102742124451, 27.536573310243497, 31.32557355690558, 14.756707656383064, 18.406741685552266, 13.525680564756868, 10.306305403856733, 15.536275185274532, 12.540284362179364, 13.31016095879453, 24.22265718019718, 6.217878382063908, 26.7312164660816, 8.695213509187296, 19.9304150302641, 6.605947233549871, 6.709930603083188, 17.420780350625687, 21.44908651846245, 5.760008547581396, 20.889062763560478, 5.415552021545274, 5.771207170652597, 15.935270703700493, 24.570991900669647, 12.458749875296283, 16.52553548379386, 5.08334344464819, 15.282731307648243, 28.136137877304197, 17.747144971581008, 6.490338187276443, 14.172805327065305, 12.558840147457845, 6.09356593776114, 6.215869433693594, 10.273334485461675, 28.198052635186528, 10.714443439369749, 12.785709458470086, 6.3645312419872875, 7.519322167338183, 25.94164386256609, 6.1440593075128405, 5.379372535304364, 19.675338672039114, 17.432215220990873, 12.664040890451504, 6.119649516191174, 6.068347124758249, 6.162544808927969, 18.356659355364332, 8.625746410728802, 8.152149223156572, 23.937685078805384, 9.284484608740108, 5.544551375012311, 16.28350636732145, 7.023807404024, 5.597217839690723, 11.880965788707194, 7.622058561056896, 6.887553261809391, 15.598439666009313, 21.86142141280976, 9.250431619688468, 7.7393115196248266, 28.561387835157717, 16.761267961895143, 19.388772958324797, 23.658131946451064, 11.579633519744727, 9.256143920932505, 6.964609584852098, 23.65829674399983, 27.994495793195988, 18.42047805987586, 20.473868580213587, 18.536078715218967, 25.32583079008843, 21.944139331895652, 20.03465867103473, 8.182149167373751, 5.261915767130845, 23.45654918108947, 6.01209128859148, 16.071113859259377, 5.908223001580732, 5.324564327757255, 14.75683198180996, 6.153411941396116, 11.0403875986601, 5.749937127810692, 12.023388218875668, 7.296735393307798, 29.831030633124502, 7.327272869319095, 14.494477062979747, 16.74717744456449, 15.619507726020268, 11.269906447677487, 5.5345474212286465, 6.49099009525852, 6.3216063917447896, 8.306194376128198, 5.765509575623744, 6.732829050302712, 6.140747030384676, 5.39254318579993, 5.520269598468234, 6.449183777972825, 19.64697461368951, 27.583179877500953, 13.385076127962217, 9.32174777376254, 29.006551000255726, 18.808491865707733, 10.76838389073662, 12.98719705758072, 14.08061090339593, 5.714356840179174, 8.202130718046341, 18.139542821355395, 16.72307853529358, 13.140027007777695, 7.901068609146803, 6.008681472555755, 27.873971346076097, 15.073582168185391, 16.965412453878365, 8.580848415195907, 16.135741173412995, 12.72841548340331, 6.304572565285932, 5.349462729132801, 11.622974023746005, 15.266481340959315, 6.7424115841039995, 10.872025407518377, 18.930415896035868, 9.671850167277556, 6.089009293580159, 18.049791145450225, 23.947705580655906, 11.154960761091044, 21.289872395097607, 10.634054880214624, 14.342311299383633, 6.551113247146194, 14.807528023148084, 8.416144554960029, 8.997089268026587, 26.09022648335512, 30.56922142868368, 9.89793655872132, 24.29752511321962, 17.16223142058712, 6.0354124042078565, 13.105353883096278, 6.58154636290446, 16.812734509037423, 22.677466085684813, 13.8113920099033, 24.301819771724773, 19.806422097682727, 6.227168904332482, 16.872088949844507, 16.5269302767519, 5.071319762283235, 19.55185870425219, 11.588598631251577, 13.80150412539865, 13.456365187152358, 24.550594059206727, 13.476720235420173, 9.28997688044618, 16.770230178776096, 13.91766908712945, 14.945697327914711, 12.739789928485077, 20.431457302342473, 22.275888004419578, 7.069573467722906, 27.70042427115429, 15.369494271819695, 14.380914896179178, 11.246353307824663, 5.2901713423262295, 11.660301897558082, 9.220709044232317, 7.1674820470851595, 12.908714704757438, 25.652397790278012, 5.041265622696167, 26.81548806779874, 12.077134930843615, 9.8980907073144, 11.394065667257173, 19.243895334377974, 12.367146646592154, 5.794039472616962, 5.53069808865764, 14.931766621114559, 18.046299781722418, 10.830143358079985, 7.058966267064953, 18.970135335021503, 22.74171904451444, 10.421537352428862, 12.58839002239397, 12.297727991044468, 15.117656421894981, 8.10089646418383, 17.71765872200092, 16.988158571800486, 24.177117472342996, 16.290135964595002, 13.156485264343162, 5.317875677848881, 10.48984169813138, 30.300863800294284, 15.29806451427873, 16.408188965266273, 14.929402662727714, 16.352202717972858, 28.458189929453056, 10.09492612365319, 17.35187244738285, 17.468773678566237, 10.608194995627606, 11.826470940147749, 18.042010786925132, 5.34244715622147, 28.33658672801197, 14.975748954441421, 7.091584785163853, 5.370486146044212, 17.254794198232627, 25.76455763961164, 5.938703349270493, 18.673066340853797, 54.28219087563463, 10.010676954936313, 32.816611981196, 15.453866881175042, 44.40021598382624, 8.251555020597072, 25.246617311530326, 20.493102572895918, 10.340925359340858, 5.934217887494398, 9.037983146172092, 11.822976860075574, 18.664932891430478, 9.959105018009012, 17.3717699966315, 27.361415060026147, 18.359346552435305, 11.18690051400545, 8.958082964805094, 8.444025501204589, 5.16577740336993, 27.238700287865317, 7.724643168093925, 6.130251295976091, 5.442417274854572, 5.824270982113522, 9.022406789852925, 10.578000588450536, 19.902550301578586, 14.674394655479048, 13.877142885724455, 5.695956368883734, 29.030485628240143, 13.824286140980035, 14.63819554883295, 8.57024826489183, 17.617663836619545, 7.919601980905495, 17.96769675382828, 22.78146449195448, 5.051882883088322, 18.230651760870806, 10.355238630601535, 12.600980935402376, 12.23317927357499, 18.074185396482342, 9.939749120571989, 10.173474536899558, 8.08620891301786, 9.699770567971534, 13.066133304159502, 10.39744563300478, 10.360156535423828, 13.270182650229271, 7.959940543387883, 8.315158794189967, 25.65417957774214, 7.384403660665194, 5.527889931486098, 8.554940083404285, 9.010652426034557, 10.972197041201081, 7.3916424594794625, 12.986947251923544, 18.85690713124846, 20.547802072786716, 10.62400174988286, 12.439699219352057, 9.123419277075822, 32.88532082980099, 5.822409537077899, 14.57597054072388, 22.843266138212293, 20.654493540088744, 9.235167994567513, 20.13550818755619, 6.6229741587434106, 13.537741474100219, 6.175658292442259, 25.065652447070434, 15.99124460069802, 8.291531731150906, 5.632437256299908, 11.791399623467237, 28.77183730315053, 12.527117097050382, 6.917552530201281, 10.408117046688059, 18.515924776045942, 8.750742090898635, 14.169721013084322, 6.716212139140905, 11.843174514834113, 5.449114987955141, 21.297566748846673, 72.62945196132688, 9.972395750898126, 37.61260779886834, 17.261467133175234, 9.358512178666226, 22.536009008144255, 6.189704444966319, 6.799529544642248, 35.15771860747929, 21.732909417150363, 5.521664938392205, 21.327595606036343, 18.226042247305262, 19.8378456918514, 10.889553818712566, 11.733213834832656, 20.097850740646365, 7.121045449468346, 22.025146859759705, 5.450686027656619, 17.229914672896538, 5.652317401495852, 41.75724365491919, ...])
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)