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
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"
#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 = 36529 #test discharge for which the notebook will definitely work
shot_no = 44344
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
RowNo.append(int(int(matrix_index[i]))//int(256))
ClmNo.append(int(int(matrix_index[i]))%int(256))
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 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=[]
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))
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')
i=i+1
t3pa_cls.close
return T_first, E_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)
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.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.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)
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].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
#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'
#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'
#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)
#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 = file_t3pa_cls_new(t3pa_cls,T)
<ipython-input-1-fe971fb7f7b0>:25: RuntimeWarning: invalid value encountered in scalar divide 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)))) <ipython-input-1-fe971fb7f7b0>:26: RuntimeWarning: invalid value encountered in scalar divide 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))))
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);
([7589207.8125, 7932578.125, 8333020.3125, 8552217.1875, 8613540.625, 8613568.75, 8679129.6875, 8872260.9375, 9346740.625, 14047751.5625, 14054546.875, 14065521.875, 14068731.25, 14069757.8125, 14080843.75, 14083564.0625, 14085482.8125, 14090412.5, 14092510.9375, 14093104.6875, 14095514.0625, 14097775.0, 14097953.125, 14099048.4375, 14105643.75, 14106835.9375, 14107107.8125, 14107525.0, 14107964.0625, 14108292.1875, 14108346.875, 14111117.1875, 14111164.0625, 14115076.5625, 14115315.625, 14116539.0625, 14116545.3125, 14116876.5625, 14116885.9375, 14118220.3125, 14118343.75, 14121685.9375, 14121732.8125, 14122392.1875, 14122454.6875, 14122501.5625, 14122982.8125, 14123550.0, 14124268.75, 14126271.875, 14127032.8125, 14133468.75, 14137210.9375, 14140325.0, 14145587.5, 14147123.4375, 14147451.5625, 14149601.5625, 14150360.9375, 14151390.625, 14151634.375, 14153645.3125, 14154295.3125, 14157340.625, 14159970.3125, 14160425.0, 14160804.6875, 14162310.9375, 14162962.5, 14164781.25, 14166251.5625, 14166932.8125, 14167437.5, 14168434.375, 14169218.75, 14172271.875, 14172551.5625, 14174257.8125, 14174418.75, 14174856.25, 14175837.5, 14175985.9375, 14176795.3125, 14178521.875, 14179685.9375, 14180795.3125, 14182107.8125, 14182192.1875, 14182379.6875, 14183035.9375, 14183832.8125, 14184218.75, 14184285.9375, 14185062.5, 14185514.0625, 14186229.6875, 14186800.0, 14186907.8125, 14187250.0, 14187737.5, 14188301.5625, 14189178.125, 14189756.25, 14189868.75, 14190282.8125, 14190651.5625, 14190731.25, 14190751.5625, 14190762.5, 14190851.5625, 14190895.3125, 14191453.125, 14191468.75, 14191509.375, 14191529.6875, 14191565.625, 14191628.125, 14191629.6875, 14191698.4375, 14191748.4375, 14191868.75, 14191881.25, 14191973.4375, 14192095.3125, 14192156.25, 14192406.25, 14192462.5, 14192465.625, 14192498.4375, 14192700.0, 14192800.0, 14192953.125, 14193020.3125, 14193025.0, 14193050.0, 14193232.8125, 14193271.875, 14193279.6875, 14193510.9375, 14193521.875, 14193539.0625, 14193559.375, 14193565.625, 14193604.6875, 14193640.625, 14193850.0, 14193878.125, 14193917.1875, 14193923.4375, 14193962.5, 14194007.8125, 14194106.25, 14194159.375, 14194284.375, 14194470.3125, 14194535.9375, 14194570.3125, 14194662.5, 14194767.1875, 14194795.3125, 14194935.9375, 14194945.3125, 14194975.0, 14194998.4375, 14195007.8125, 14195032.8125, 14195050.0, 14195054.6875, 14195171.875, 14195295.3125, 14195309.375, 14195403.125, 14195534.375, 14195551.5625, 14195559.375, 14195601.5625, 14195893.75, 14195923.4375, 14196081.25, 14196142.1875, 14196190.625, 14196201.5625, 14196231.25, 14196267.1875, 14196278.125, 14196303.125, 14196521.875, 14196542.1875, 14196554.6875, 14196559.375, 14196598.4375, 14196609.375, 14196639.0625, 14196840.625, 14196846.875, 14196853.125, 14196870.3125, 14196926.5625, 14197085.9375, 14197259.375, 14197318.75, 14197381.25, 14197392.1875, 14197801.5625, 14198265.625, 14198489.0625, 14199203.125, 14199729.6875, 14203735.9375, 14203753.125, 14205428.125, 14208392.1875, 14213376.5625, 14214784.375, 14215737.5, 14220246.875, 14221454.6875, 14223037.5, 14223567.1875, 14225381.25, 14225953.125, 14226104.6875, 14226289.0625, 14226390.625, 14226510.9375, 14227209.375, 14227704.6875, 14227729.6875, 14228048.4375, 14228651.5625, 14228954.6875, 14229134.375, 14229351.5625, 14230331.25, 14231918.75, 14234870.3125, 14234943.75, 14234990.625, 14235370.3125, 14235409.375, 14235876.5625, 14236651.5625, 14236996.875, 14237070.3125, 14237259.375, 14237507.8125, 14237542.1875, 14237714.0625, 14237759.375, 14238046.875, 14238182.8125, 14238431.25, 14238482.8125, 14238485.9375, 14239542.1875, 14239718.75, 14239732.8125, 14240271.875, 14240584.375, 14241173.4375, 14243907.8125, 14245381.25, 14245926.5625, 14246217.1875, 14246629.6875, 14247034.375, 14247271.875, 14249328.125, 14250334.375, 14251778.125, 14255865.625, 14256895.3125, 14257845.3125, 14260717.1875, 14263706.25, 14269257.8125, 14272703.125, 14272710.9375, 14273075.0, 14273389.0625, 14273814.0625, 14274023.4375, 14274093.75, 14274809.375, 14277364.0625, 14279948.4375, 14281639.0625, 14284728.125, 14285789.0625, 14286109.375, 14287382.8125, 14289876.5625, 14290421.875, 14290510.9375, 14294726.5625, 14295179.6875, 14295276.5625, 14295534.375, 14295607.8125, 14296256.25, 14300103.125, 14300451.5625, 14300692.1875, 14301534.375, 14301623.4375, 14301796.875, 14303793.75, 14304923.4375, 14305120.3125, 14307242.1875, 14309003.125, 14309146.875, 14311359.375, 14313490.625, 14314048.4375, 14314331.25, 14315079.6875, 14315195.3125, 14316479.6875, 14316539.0625, 14317168.75, 14317176.5625, 14317562.5, 14317643.75, 14317781.25, 14318639.0625, 14318806.25, 14318820.3125, 14319006.25, 14319060.9375, 14319568.75, 14319678.125, 14319943.75, 14320206.25, 14320576.5625, 14320834.375, 14320934.375, 14321037.5, 14321059.375, 14321407.8125, 14321460.9375, 14321962.5, 14322545.3125, 14322953.125, 14323079.6875, 14323189.0625, 14323731.25, 14323856.25, 14324382.8125, 14325925.0, 14326334.375, 14326340.625, 14326429.6875, 14327245.3125, 14327275.0, 14327550.0, 14327598.4375, 14327675.0, 14327682.8125, 14328445.3125, 14328515.625, 14329289.0625, 14329415.625, 14330001.5625, 14331170.3125, 14331254.6875, 14331350.0, 14331495.3125, 14332189.0625, 14332262.5, 14332331.25, 14332412.5, 14332435.9375, 14332582.8125, 14332700.0, 14332706.25, 14332706.25, 14332728.125, 14332750.0, 14332773.4375, 14332778.125, 14332781.25, 14333017.1875, 14333075.0, 14333089.0625, 14333090.625, 14333178.125, 14333189.0625, 14333210.9375, 14333239.0625, 14333271.875, 14333278.125, 14333304.6875, 14333318.75, 14333373.4375, 14333475.0, 14333606.25, 14334648.4375, 14334728.125, 14334990.625, 14335026.5625, 14335103.125, 14335309.375, 14335425.0, 14335445.3125, 14335459.375, 14335520.3125, 14335642.1875, 14335920.3125, 14335948.4375, 14336078.125, 14337184.375, 14337632.8125, 14340314.0625, 14340365.625, 14340392.1875, 14340856.25, 14346457.8125, 14348343.75, 14348710.9375, 14348759.375, 14349853.125, 14350050.0, 14350196.875, 14350300.0, 14350710.9375, 14350832.8125, 14350928.125, 14352375.0, 14353070.3125, 14353654.6875, 14353750.0, 14354106.25, 14354118.75, 14354592.1875, 14354609.375, 14354642.1875, 14354917.1875, 14355714.0625, 14357096.875, 14357634.375, 14360500.0, 14360789.0625, 14360801.5625, 14362150.0, 14362321.875, 14362806.25, 14363020.3125, 14363520.3125, 14363695.3125, 14365400.0, 14365579.6875, 14365668.75, 14366157.8125, 14366496.875, 14367128.125, 14367571.875, 14368101.5625, 14368117.1875, 14368139.0625, 14368145.3125, 14368448.4375, 14368817.1875, 14369539.0625, 14369692.1875, 14369714.0625, 14369859.375, 14369878.125, 14370192.1875, 14371195.3125, 14371860.9375, 14372026.5625, 14372478.125, 14373092.1875, 14373187.5, 14373651.5625, 14374242.1875, 14374859.375, 14375403.125, 14375712.5, 14376160.9375, 14376545.3125, 14376620.3125, 14377007.8125, 14377051.5625, 14377073.4375, 14377087.5, 14377525.0, 14377690.625, 14378081.25, 14378682.8125, 14378976.5625, 14378982.8125, 14379175.0, 14379246.875, 14379278.125, 14379328.125, 14379598.4375, 14379723.4375, 14379837.5, 14379906.25, 14379951.5625, 14380089.0625, 14381006.25, 14381073.4375, 14381082.8125, 14381159.375, 14381159.375, 14381426.5625, 14381775.0, 14381823.4375, 14381837.5, 14381995.3125, 14382076.5625, 14382239.0625, 14382531.25, 14382537.5, 14382648.4375, 14382703.125, 14382828.125, 14383154.6875, 14383200.0, 14383206.25, 14383403.125, 14383564.0625, 14383743.75, 14384045.3125, 14384328.125, 14384367.1875, 14384379.6875, 14384398.4375, 14384434.375, 14384471.875, 14384503.125, 14384929.6875, 14384965.625, 14384967.1875, 14385017.1875, 14385042.1875, 14385053.125, 14385417.1875, 14385423.4375, 14385490.625, 14385867.1875, 14386026.5625, 14386218.75, 14386248.4375, 14386250.0, 14386306.25, 14386742.1875, 14386751.5625, 14386845.3125, 14387307.8125, 14387481.25, 14387506.25, 14387645.3125, 14387795.3125, 14387818.75, 14387945.3125, 14387989.0625, 14388226.5625, 14388468.75, 14388601.5625, 14388710.9375, 14388987.5, 14389092.1875, 14389518.75, 14389651.5625, 14390571.875, 14390685.9375, 14390773.4375, 14390826.5625, 14390970.3125, 14391376.5625, 14391389.0625, 14391523.4375, 14391590.625, 14391818.75, 14391876.5625, 14392218.75, 14392943.75, 14393018.75, 14393343.75, 14393370.3125, 14393614.0625, 14394009.375, 14394614.0625, 14394667.1875, 14395121.875, 14395515.625, 14395660.9375, 14395737.5, 14395843.75, 14395846.875, 14395979.6875, 14396037.5, 14396039.0625, 14396557.8125, 14396575.0, 14396589.0625, 14396939.0625, 14397040.625, 14397057.8125, 14397145.3125, 14397440.625, 14397593.75, 14397621.875, 14397625.0, 14397676.5625, 14397812.5, 14397959.375, 14398389.0625, 14398620.3125, 14398928.125, 14398937.5, 14398946.875, 14399364.0625, 14399464.0625, 14399520.3125, 14399643.75, 14399732.8125, 14399815.625, 14399917.1875, 14400096.875, 14400098.4375, 14400129.6875, 14400148.4375, 14400215.625, 14400223.4375, 14400335.9375, 14400481.25, 14400485.9375, 14400567.1875, 14400621.875, 14400665.625, 14400725.0, 14400746.875, 14400764.0625, 14400778.125, 14400782.8125, 14400834.375, 14400940.625, 14401000.0, 14401020.3125, 14401132.8125, 14401135.9375, 14401307.8125, 14401368.75, 14401482.8125, 14401520.3125, 14401531.25, 14401700.0, 14401714.0625, 14401735.9375, 14401737.5, 14401870.3125, 14402068.75, 14402171.875, 14402317.1875, 14402371.875, 14402457.8125, 14402467.1875, 14402482.8125, 14402526.5625, 14402542.1875, 14402551.5625, 14402764.0625, 14402798.4375, 14402801.5625, 14402840.625, 14402981.25, 14402985.9375, 14403037.5, 14403057.8125, 14403179.6875, 14403190.625, 14403192.1875, 14403310.9375, 14403395.3125, 14403395.3125, 14403443.75, 14403459.375, 14403665.625, 14403704.6875, 14403762.5, 14403770.3125, 14404076.5625, 14404079.6875, 14404139.0625, 14404243.75, 14404285.9375, 14404326.5625, 14404623.4375, 14404867.1875, 14404940.625, 14405084.375, 14405092.1875, 14405110.9375, 14405137.5, 14405243.75, 14405276.5625, 14405368.75, 14405434.375, 14405459.375, 14405725.0, 14405820.3125, 14405895.3125, 14405960.9375, 14406032.8125, 14406039.0625, 14406062.5, 14406106.25, 14406248.4375, 14406250.0, 14406473.4375, 14406592.1875, 14406670.3125, 14406776.5625, 14406976.5625, 14406985.9375, 14407092.1875, 14407143.75, 14407250.0, 14407485.9375, 14407667.1875, 14407707.8125, 14407720.3125, 14407759.375, 14407831.25, 14407882.8125, 14407912.5, 14407960.9375, 14407987.5, 14408131.25, 14408364.0625, 14408364.0625, 14408409.375, 14408456.25, 14408496.875, 14408509.375, 14408540.625, 14408557.8125, 14408573.4375, 14408623.4375, 14408714.0625, 14408723.4375, 14408882.8125, 14408909.375, 14408945.3125, 14408948.4375, 14408964.0625, 14409012.5, 14409029.6875, 14409060.9375, 14409067.1875, 14409093.75, 14409100.0, 14409109.375, 14409110.9375, 14409140.625, 14409145.3125, 14409150.0, 14409170.3125, 14409175.0, 14409189.0625, 14409195.3125, 14409203.125, 14409212.5, 14409253.125, 14409256.25, 14409273.4375, 14409348.4375, 14409351.5625, 14409356.25, 14409404.6875, 14409431.25, 14409440.625, 14409453.125, 14409467.1875, 14409510.9375, 14409564.0625, 14409592.1875, 14409598.4375, 14409604.6875, 14409606.25, 14409606.25, 14409617.1875, 14409623.4375, 14409639.0625, 14409640.625, 14409640.625, 14409643.75, 14409646.875, 14409653.125, 14409656.25, 14409662.5, 14409665.625, 14409673.4375, 14409679.6875, 14409684.375, 14409687.5, 14409692.1875, 14409695.3125, 14409714.0625, 14409731.25, 14409731.25, 14409734.375, 14409742.1875, 14409764.0625, 14409776.5625, 14409801.5625, 14409806.25, 14409828.125, 14409831.25, 14409878.125, 14409879.6875, 14409896.875, 14409903.125, 14409907.8125, 14409920.3125, 14409954.6875, 14410090.625, 14410106.25, 14410107.8125, 14410120.3125, 14410151.5625, 14410153.125, 14410167.1875, 14410179.6875, 14410203.125, 14410206.25, 14410210.9375, 14410212.5, 14410225.0, 14410229.6875, 14410229.6875, 14410264.0625, 14410265.625, 14410293.75, 14410298.4375, 14410306.25, 14410307.8125, 14410326.5625, 14410370.3125, 14410417.1875, 14410432.8125, 14410437.5, 14410448.4375, 14410489.0625, 14410593.75, 14410635.9375, 14410678.125, 14410693.75, 14410712.5, 14410721.875, 14410745.3125, 14410754.6875, 14410764.0625, 14410785.9375, 14410806.25, 14410825.0, 14410835.9375, 14410850.0, 14410856.25, 14410862.5, 14410884.375, 14410887.5, 14410890.625, 14410921.875, 14410921.875, 14410940.625, 14410942.1875, 14410967.1875, 14410968.75, 14410970.3125, 14410984.375, 14410984.375, 14411012.5, 14411017.1875, 14411048.4375, 14411068.75, 14411085.9375, 14411184.375, 14411190.625, 14411195.3125, 14411239.0625, 14411273.4375, 14411331.25, 14411337.5, 14411354.6875, 14411356.25, 14411384.375, 14411406.25, 14411468.75, 14411470.3125, 14411490.625, 14411517.1875, 14411518.75, 14411521.875, 14411526.5625, 14411625.0, 14411654.6875, 14411725.0, 14411745.3125, 14411754.6875, 14411775.0, 14411832.8125, 14411839.0625, 14411842.1875, 14412039.0625, 14412471.875, 14412667.1875, 14412740.625, 14412768.75, 14412821.875, 14412960.9375, 14413001.5625, 14413292.1875, 14413489.0625, 14413528.125, 14413718.75, 14413757.8125, 14414107.8125, 14414268.75, 14414306.25, 14414712.5, 14415453.125, 14415553.125, 14415573.4375, 14415662.5, 14415668.75, 14415703.125, 14415871.875, 14415876.5625, 14416434.375, 14416575.0, 14416790.625, 14416867.1875, 14417018.75, 14417067.1875, 14417071.875, 14417132.8125, 14417140.625, 14417160.9375, 14417184.375, 14417192.1875, 14417221.875, 14417232.8125, 14417309.375, 14417456.25, 14417545.3125, 14417551.5625, 14417637.5, 14417762.5, 14417765.625, 14417840.625, 14418315.625, 14418345.3125, 14418726.5625, 14418831.25, 14418910.9375, 14419010.9375, 14419409.375, 14419431.25, 14419456.25, 14419475.0, 14419531.25, 14419707.8125, 14419779.6875, 14419865.625, 14419867.1875, 14419954.6875, 14420151.5625, 14420153.125, 14420190.625, 14420200.0, 14420548.4375, 14420778.125, 14420948.4375, 14420957.8125, 14421121.875, 14421168.75, 14421251.5625, 14421468.75, 14421521.875, 14421843.75, 14422404.6875, 14422535.9375, 14422540.625, 14422550.0, 14423014.0625, 14423065.625, 14423131.25, 14423318.75, 14423570.3125, 14423732.8125, 14424117.1875, 14424129.6875, 14424231.25, 14424326.5625, ...], [7.172745963226264, 5.298158186016628, 12.678688939999379, 138.11330515830625, 34.49917713539825, 6.517968971446579, 14.490251525338218, 20.361460969139294, 149.74801127279153, 68.3435463548384, 24.792324623571666, 15.023821017044133, 74.5021285392138, 5.352010459261726, 81.98986087682009, 31.381207794866704, 5.074687106145519, 7.72273078754815, 77.65121381314054, 15.261823729811926, 31.22288014966662, 60.48919968404234, 37.18462694118777, 40.92731044094651, 22.08869155715538, 115.28616015728274, 67.85387110880103, 30.794906994496095, 77.86771993892505, 100.62947989096168, 5.07588437008664, 89.40013718592965, 10.9876939493753, 25.730174107532694, 20.06105279244023, 22.343269737382474, 21.486232663180953, 24.63248590205996, 7.335025561900879, 6.082192005936918, 10.388083538864706, 13.78461479869418, 61.129709193383626, 102.48316112273247, 5.734480303679659, 9.134130423250081, 14.662142965647817, 31.255700710004437, 65.88265179065282, 23.52085173612128, 103.50749801191081, 12.992167916352798, 17.28866446924617, 39.39324948202177, 15.40286654800859, 64.15956120546257, 8.847012063314972, 189.91935200668007, 18.72079999519092, 24.579295975196445, 24.52769961522235, 47.0866051516702, 53.250443976748535, 106.33793704477046, 12.03351395896264, 66.07035554279332, 6.625192879876161, 57.83392715082266, 65.04942347139598, 25.92865582831478, 11.932794889794517, 40.681017278211385, 36.8636596288726, 79.34317813301249, 18.814723581202728, 11.736657691555257, 6.41899997151516, 47.686589676829385, 6.385836291281858, 22.88132383280083, 7.890959425861529, 35.13989445544059, 63.147741082257596, 22.730759740510496, 108.47255351829028, 16.759724535025928, 30.395249588546598, 9.087723442343352, 24.411759623495605, 14.072163923665125, 56.69629787361916, 55.50880430672853, 7.144679469244092, 10.248321422140219, 20.871849031665242, 91.02341857669926, 46.644003327535565, 48.44622311265396, 10.204927008603823, 93.2945187406538, 25.945288731895765, 24.09002584159625, 68.32420396175522, 65.95757186626768, 21.61349377241268, 11.216685360032313, 8.225834095037566, 66.74267884766384, 22.61314150555224, 16.506361345334383, 38.38949932452556, 13.367493053928285, 41.81556614044733, 6.44872277314884, 111.0123929266178, 37.72031564098603, 10.112313157007051, 61.022478124977724, 10.162384362789284, 28.332379017006918, 98.70186610517348, 7.194648139389431, 18.857040363884067, 38.9715166437134, 41.75673489180831, 28.536525692465677, 6.651964483021272, 5.6804074683783865, 10.34754842544624, 7.098737336320963, 60.29734166049437, 16.10846398416018, 32.173255886161236, 8.30915629259122, 73.78199892286209, 8.59347241294796, 12.567984667716381, 66.09410377750342, 10.399859339233775, 51.40840463189646, 29.5483170428471, 7.726765876926302, 7.598198786074699, 18.1461655359834, 70.80918519101738, 42.95349163339361, 64.30434004134487, 101.05998403228142, 8.771914168648586, 32.1497326108763, 76.61202149871845, 5.767903968269396, 25.077897127990514, 51.15442306384722, 16.568494107182328, 5.124718057448998, 18.142982759043488, 13.801706813463202, 20.72588485377122, 11.962542645969917, 85.28255225808448, 52.54513724241509, 17.226566740547224, 38.6845423361899, 16.05842084448375, 5.63500145230256, 71.31386892508255, 35.98734309519089, 93.92836751783801, 22.113055717949607, 66.4582840635565, 89.85961659855768, 52.7058701694683, 56.84142999615064, 35.83973376721007, 100.05887424764285, 22.541881318294827, 7.2295117866782945, 51.78187123044886, 30.532138270777295, 43.48878466973741, 85.67066015099154, 11.308549869001615, 43.78098080384218, 29.27505151317543, 5.547920268050843, 22.988703961796993, 84.04438208210732, 7.484898573815701, 5.493670101991433, 27.03491291003538, 73.45844222463016, 17.402785154925148, 40.91288106316301, 24.45662164875941, 25.355952060218215, 7.857463482781576, 16.781322630274765, 38.06520960078283, 25.841945914045212, 121.41418458910601, 12.05826843892513, 45.17614385335838, 23.11219614512906, 5.341582468287913, 79.64936271946898, 19.4620707184961, 15.099812807811826, 6.396503994498687, 8.902444136154132, 11.963211364237202, 10.572815815222258, 11.751536440313918, 9.822489081967511, 72.75568846929741, 42.63295317410847, 9.627669896504782, 11.970122019158591, 8.620372910986083, 39.46607858351049, 18.208813895135087, 28.402910217099095, 9.944482345063248, 15.052508865600577, 88.61598493200218, 64.27331648534123, 44.81792587945699, 51.3264172716255, 18.12966811743537, 65.9713671048631, 64.91429453590688, 37.7169265360341, 26.933524841360008, 11.561373531124588, 103.07883590416546, 10.657913899850213, 41.18946530868703, 23.68289539251273, 12.40481466021143, 16.876207735874782, 6.450886263789613, 5.236022916279894, 55.5085647825373, 5.1848798188951895, 10.942885791417241, 21.228620412123277, 52.72441445573778, 43.680592032552106, 47.550843649711936, 72.71941060308443, 33.407404521776606, 65.96548986039447, 74.53179633899781, 82.73512519392673, 19.530264406006076, 51.146531444841365, 22.44765526950483, 63.6038670543084, 10.46161956986976, 12.281750975846492, 11.209921670331129, 38.53611817295252, 23.60243454884577, 15.98329821360188, 9.477797493118063, 95.96004051561977, 12.561734526328229, 80.10998168443322, 13.141938800999489, 38.73795299947563, 25.1787122589268, 11.995526023698359, 30.20243698350371, 8.947409687619308, 14.272603272211429, 5.645220480088151, 20.789641683854185, 11.610538159140448, 25.98865688864363, 40.775891761494485, 19.381786869264815, 5.666944866177187, 82.56720737426487, 13.749223355083208, 12.172434478317484, 50.7477490783516, 16.118072899167828, 13.23014056939273, 37.324120347677685, 11.703658155917196, 9.969003809068527, 22.3780688741275, 70.43889740242936, 28.02890798346915, 55.15974778001467, 20.508040402323232, 11.569962382787631, 15.783181880525342, 16.1622751763741, 9.990549290991998, 21.524146132411648, 5.588108644173606, 73.47154025692, 61.0608965083044, 22.781146573562072, 13.198707318721453, 58.85272940134922, 19.035333207786554, 155.1164105787868, 9.805937966111225, 10.896915355016715, 15.439518178680995, 6.577750761517471, 35.207249044071524, 11.437116567489877, 44.493330086506596, 99.00208705014596, 78.7499889433097, 40.87326715216046, 9.61165921474753, 8.987252584743626, 15.472766571748304, 70.66243088197434, 8.537474854251078, 153.3634840384738, 19.807736972710675, 15.65922415688272, 64.89565968912429, 76.04657797055341, 57.846649443410115, 6.682006055906182, 9.570892838832453, 137.80907434225446, 71.18123197782194, 10.034134245572474, 25.91701618899975, 69.65658304973533, 50.9183075014123, 5.076710309524955, 67.66208708162623, 5.638079383760781, 33.11051498299543, 44.40661679794254, 39.85637756051392, 12.547013874465037, 101.47586967466178, 5.158332238880376, 26.172739726542623, 96.19306641374106, 69.60548095357659, 11.209243122260881, 15.431579475822696, 60.158029127365474, 10.60677929554731, 49.998546213401625, 81.75973883485933, 5.5247958426837505, 6.982922439095927, 79.0956928123427, 7.180116894475829, 5.517682794966475, 7.7869478903988, 47.13820010587551, 29.783784039458137, 18.15690637205932, 80.43096855100067, 34.28547426530711, 10.334555823966749, 24.289215505686222, 17.600550236151626, 10.760911609424396, 18.087657518538148, 57.92374781081311, 6.090828168149168, 66.01148141187498, 23.86269498714843, 65.9947821391257, 10.466467943198381, 16.98225258680005, 66.27174246381458, 14.479029807481709, 21.92162858939097, 7.180461103075563, 9.673195981664257, 61.88752222366695, 26.52392569434822, 25.01743233955976, 65.39885353598348, 16.669737343356267, 20.62571396515738, 6.338331055870419, 82.9843940427847, 13.43037790357525, 17.85103634702473, 14.338645822926875, 63.06569006243312, 55.65183730416213, 16.064599993697165, 17.060310050496724, 30.477269124773077, 60.56899401474277, 24.02168703671271, 14.735058466452665, 14.684736113082565, 14.974749348061238, 10.86343831092035, 55.81479606007634, 22.301654212060875, 45.73776259749554, 54.34065736672992, 87.81329028081355, 11.075890012975378, 49.1167675233733, 51.68738297486017, 15.68335056902278, 8.039214241282727, 67.14124935183598, 7.644924400683887, 194.5036392580581, 47.70096801529636, 10.76161360547197, 105.32474065323734, 20.6573491764062, 25.67488853981902, 10.972588719630076, 91.85482868689336, 6.797507502769349, 12.117938992377573, 73.84957761593724, 5.069914089171768, 10.922416636376838, 5.797282795532209, 16.074085745900092, 6.163159543245606, 24.405743570771325, 13.524875958467632, 48.797077583435126, 9.631178151901967, 31.512171705273325, 68.75926766749524, 11.149850304174004, 46.23264322450837, 90.01136415169415, 10.16419548769168, 53.10665339597363, 56.80067915676545, 6.850759383108725, 21.482162679971953, 14.99218065937609, 88.54245264246096, 28.151069688793143, 27.670727281111446, 45.60798645042822, 25.15242968031434, 17.194132939284017, 31.355070739158617, 58.21066504892859, 46.01939281541598, 11.282993634466182, 94.3890919646543, 10.921740427691443, 30.361696193778247, 14.239452501020235, 98.20440904692286, 43.63432202309737, 21.521951291331852, 20.914587401746637, 36.17486581689762, 60.512058614039766, 20.835740612227756, 23.68878169394596, 24.27539934192594, 61.375618829140514, 72.12489476051094, 13.77292468357932, 11.518038605138441, 136.4471669264095, 25.567053733363736, 43.53615282025707, 46.32432132151402, 74.47093522372911, 219.56214374254472, 7.152779649422089, 26.57459763470156, 15.037079552473394, 114.0126342987476, 49.073690190681475, 17.523382366792134, 53.67480188544398, 19.625742186662563, 11.291824814527327, 14.905611361794564, 5.258320872355714, 7.091659145878291, 98.93876345835716, 50.39899448411458, 17.63869597879026, 21.49940853071662, 49.91832971902348, 16.40924127828359, 32.3657741983633, 30.589722354151952, 10.567907402469736, 17.04626425964381, 29.490274164938256, 15.10194683296867, 32.44922525170951, 24.6525877721722, 48.3557521647233, 14.321706566691589, 67.45658139598788, 59.060906277716384, 32.681194650773165, 5.236174080873188, 112.74579097039053, 20.82262530981169, 13.23671926735414, 92.64116178389824, 33.38065492948969, 7.9492147110986435, 11.287534449191112, 21.44784906909497, 25.876974779365703, 35.38425507105683, 47.747897254904444, 104.23032632158653, 39.84027693398438, 10.558250839914061, 51.271045928314955, 89.56947876170675, 35.480632557619074, 6.742596514147881, 14.990862834095129, 14.870728552299013, 12.981371676696881, 25.372601893965076, 23.209935293021548, 8.082597566144281, 10.07811196911073, 25.824525491590933, 12.688471781542479, 24.93429939159262, 13.118411682325469, 11.72229163525564, 20.566294033095737, 16.869610670138574, 36.59170968980967, 85.58845588643904, 80.27689019350383, 12.404760768456757, 34.081618920669435, 36.507949958844605, 8.345994308837119, 19.240254704685146, 5.76298895181713, 38.29506406802797, 25.647493402968518, 51.23641511326977, 6.680369925114402, 6.382422737425263, 73.29789274375656, 24.237007649284433, 8.42483420224444, 15.727121134249707, 13.452964169902053, 63.01330227845795, 13.844931717102087, 6.5391809881559375, 66.49259660172233, 5.1024185762527186, 42.27724732313867, 5.299408685728283, 38.63174287767239, 12.62813194038197, 18.670442271035775, 18.537756761699846, 18.035653321992854, 10.745253108386201, 43.701486823603105, 26.729308339463767, 6.250601822821602, 35.76680502118255, 42.88248524279949, 29.132164434511928, 25.357234061147082, 114.68626039793905, 26.95609094729118, 53.90215661232843, 16.55514820717236, 15.775179776255877, 43.51155605254587, 9.312532345037788, 11.085134103873457, 63.26997250933617, 26.701876491423576, 9.94722765787609, 18.273947596617457, 14.15315138453467, 9.504046957917861, 38.40990853767094, 6.701690367962052, 83.78119207268956, 43.45129725674911, 10.235552517269916, 20.598651948047095, 31.827143945149196, 9.274138361044848, 5.686301636135329, 18.01718924773425, 23.890796830030446, 51.87812147467025, 24.37593550965758, 14.62583895770447, 30.461085433280417, 49.75969867059504, 6.950527625301467, 8.328819056553776, 21.608482467919366, 70.21296077477838, 23.0038729727792, 20.480448406660756, 65.483742367254, 77.75293523529196, 41.33301821505885, 22.030685648353987, 33.87223137224074, 13.64716041923305, 8.171824615230454, 41.00312116545291, 10.90391405759397, 7.469529897693893, 34.1830749330756, 173.28421911499103, 15.773069343579795, 51.24473664852229, 9.148724261309368, 33.53199734858598, 167.52136347497054, 24.05726735825811, 20.091051033622204, 16.55019212771372, 9.1818252608397, 26.511575292854054, 63.25222352665464, 37.74620164526952, 10.485443971716691, 22.941238103080156, 48.341007316819294, 61.615217998515575, 17.431036790043624, 26.649400433910575, 96.9928074028173, 18.99741908774076, 55.62356507812071, 11.16478165400631, 130.7405761478691, 5.622488510959171, 23.239688470779598, 58.654064525695084, 50.42055312408836, 88.81344801415108, 5.345601818148652, 13.749916723275124, 62.8215639746298, 13.62493966521088, 22.00248588428795, 5.163683100561028, 42.23319334930253, 54.32552708830379, 7.149024524310281, 10.436273709853122, 24.059691441875444, 11.844404664388072, 72.50316513765748, 42.66334257182875, 31.43056984897421, 22.310635579683527, 24.000050962381984, 5.6764911735645605, 111.12499530301803, 22.120929755314176, 8.504864716187797, 46.381429565501094, 13.987446284779706, 14.264361012137035, 7.42231163907869, 130.29039241904403, 42.2406268249037, 49.8622130556323, 99.30665773088484, 21.140148085925524, 59.684976505987024, 40.26899691177676, 7.12309169952402, 7.611397472308889, 75.2013482737093, 19.337877123695556, 17.704695674436785, 30.507911460794155, 11.579696785504057, 87.36690723184964, 21.525533381348275, 112.61180542513631, 95.85916557512536, 21.468737068192915, 5.548777704496716, 86.0183529664754, 100.10762422716468, 12.549643913894373, 7.742482915414579, 42.256802946803354, 21.178656422654903, 14.491088204966015, 67.61121583385767, 29.731589269828326, 67.83115770554718, 12.459889465607587, 24.073995607178702, 6.690338233039281, 70.75435555518546, 17.967509024554168, 109.58247969833567, 15.114038911768679, 86.66634611587122, 35.97658930111674, 84.14391818896435, 250.3313781767426, 29.375358750526345, 23.30763231927952, 11.166808424333448, 7.9780231705501095, 34.1708127972199, 8.34506737767383, 18.643006625122265, 18.219973705316768, 82.6142251353677, 28.620609439109735, 5.720153495411464, 29.206607508911354, 38.39014294827452, 18.940337611190152, 5.842188782101067, 41.99988456095114, 6.281584864442491, 24.917182137493366, 8.580117558441918, 77.37692959128165, 7.442033517682752, 31.281013480412945, 47.63117309830024, 54.97970629593909, 28.43630331103864, 7.309908518189166, 36.32787593051051, 5.285616379610379, 8.330789915166754, 39.78308727107745, 77.59013246967089, 44.61959330227394, 186.95808943621805, 6.207238808149669, 31.185054319526632, 110.23138948455203, 41.17942522720946, 17.126848646961065, 45.90027302232585, 25.048868079057804, 49.54019403897992, 26.421686330670383, 19.121750419712104, 19.606578552856952, 38.36024520026006, 6.184482403971854, 27.52702815594287, 5.954271017171359, 16.847624723661976, 7.153453072274177, 12.09412704177583, 8.304765316366359, 65.28839543928113, 40.67587829922515, 44.92164949923436, 14.290489995899362, 36.936587356717894, 8.65087943878028, 54.347990292919164, 66.70450666406194, 20.942336838380697, 22.376296569897157, 6.258849084808133, 17.60068104580115, 36.74708769153402, 24.043690935634352, 44.8594156730969, 78.52158485441059, 56.4151314501401, 49.22758008001346, 88.10171858997447, 11.510101661605812, 5.241027138695246, 21.89291379694984, 45.71262622117388, 13.441876175991416, 18.572550462144704, 5.652004504747058, 71.7834307929659, 69.46619478835416, 8.374322239917497, 18.779385968536552, 75.1371627417061, 38.563125971125785, 98.65005235979137, 27.252107710563546, 14.923949694566513, 84.21598934500496, 31.431285982305294, 5.607861455587392, 19.702251225123227, 54.430687472671295, 9.887843484400237, 7.261697336212311, 12.969597142422055, 59.50035723904523, 17.291276560072852, 34.28195900651012, 5.3201981704965995, 29.325562530560674, 8.740521262535982, 51.48009219870609, 72.20149252627574, 16.105060037866036, 12.970606071422743, 75.70707670705937, 10.940653824604725, 5.422516665133159, 50.33003722828853, 7.268617570404558, 5.190300802623693, 53.823658162336926, 17.22941809840662, 7.5610451780004855, 10.067314216741574, 39.326173357697634, 130.22945266945757, 5.746794045948539, 23.944069073381527, 5.26271534901228, 35.69485471953896, 100.65783759962252, 57.70762223239058, 14.072927676946698, 57.51898163397932, 65.64140780189057, 14.820786970805454, 56.18853988350381, 82.20993556077148, 5.476256744424069, 5.8116103261208005, 8.439508016427821, 64.28040752595713, 16.892044033017562, 20.789593863942414, 24.22394663706657, 20.411649668696974, 8.419184969639565, 7.939733139937911, 15.162628625166843, 9.462901792036723, 5.887819352361371, 24.627111191112668, 71.68659750324673, 11.598547829527371, 12.140292763599561, 101.21664283224735, 71.63050463410804, 45.71243409708497, 13.825106053781829, 22.982669202892176, 34.1837573978142, 8.716269329347028, 5.034067515252949, 5.15715040733622, 17.356551747104273, 106.374074693139, 57.1845167713642, 74.32456391343769, 9.314752615576998, 15.241486370689675, 6.140888521634251, 5.710626765648681, 6.812494327506382, 31.642162693791054, 58.005706391437414, 46.53735267106339, 22.922647770648283, 56.87341114093219, 80.63975304562473, 8.717061250637306, 6.052899150803193, 69.6590260900987, 10.658738219122359, 22.813370628747837, 93.33759659205417, 5.803890077414313, 48.27838372906953, 60.268713582348994, 17.990022442499498, 52.84059239191315, 31.270801064448037, 21.801436780965666, 52.815451228427136, 27.98608178557854, 116.073973780595, 10.077478974536275, 79.8016382303781, 17.246605739270287, 41.731939042386855, 55.61976832250942, 10.907761923458526, 81.83940270928714, 57.931012829004594, 39.779420111248925, 51.39715223757045, 78.4717706472036, 140.85630075585414, 10.243971887341951, 58.20020120941346, 13.135107352427775, 22.92729685184039, 6.105527166186602, 18.85439971737257, 29.172755424851967, 48.97353509677931, 12.644647628415292, 54.69646417303931, 52.781820275711546, 15.098605738002743, 5.957194090404376, 6.743050136603505, 27.800516269188194, 10.036552564875192, 58.243251157389636, 17.09615984459803, 28.98471856591917, 12.600303631167415, 88.65101947943086, 18.234296391240576, 9.99748356252506, 9.787577049281474, 55.984478006490434, 6.8722219895265315, 17.770978393370402, 38.68372386116976, 68.01071105467462, 14.872546468080321, 54.137372818324536, 10.470205429304091, 29.17026603834852, 35.520367745275024, 47.72381528810462, 77.41694335022028, 47.72852604358239, 12.827010037238686, 32.10026531349933, 6.357492499181385, 5.6851598567277835, 23.370741940459443, 8.667057257409313, 17.569098555927262, 30.563003489169798, 10.754067464279709, 82.9113502419649, 55.65067423348678, 24.905458624211256, 31.328637718085858, 34.329060741391416, 27.219933817239117, 21.091829823066305, 36.389664194273834, 18.07972058892011, 25.705889773930274, 61.529635252776195, 52.747741452465824, 51.12030677442969, 21.60193989919265, 27.86911899622678, 20.058236942495174, 44.78920948575915, 24.980192629394057, 24.084774914466472, 17.635506870644686, 6.66992725171353, 77.5047182058382, 45.11603831616904, 48.368529178375006, 96.80186377032352, 8.914752760253794, 63.75543507183354, 5.032086423471012, 51.11036430794377, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7589207.8125, 7932578.125, 8333020.3125, 8552217.1875, 8613540.625, 8613568.75, 8679129.6875, 8872260.9375, 9346740.625, 14047751.5625, 14054546.875, 14065521.875, 14068731.25, 14069757.8125, 14080843.75, 14083564.0625, 14085482.8125, 14090412.5, 14092510.9375, 14093104.6875, 14095514.0625, 14097775.0, 14097953.125, 14099048.4375, 14105643.75, 14106835.9375, 14107107.8125, 14107525.0, 14107964.0625, 14108292.1875, 14108346.875, 14111117.1875, 14111164.0625, 14115076.5625, 14115315.625, 14116539.0625, 14116545.3125, 14116876.5625, 14116885.9375, 14118220.3125, 14118343.75, 14121685.9375, 14121732.8125, 14122392.1875, 14122454.6875, 14122501.5625, 14122982.8125, 14123550.0, 14124268.75, 14126271.875, 14127032.8125, 14133468.75, 14137210.9375, 14140325.0, 14145587.5, 14147123.4375, 14147451.5625, 14149601.5625, 14150360.9375, 14151390.625, 14151634.375, 14153645.3125, 14154295.3125, 14157340.625, 14159970.3125, 14160425.0, 14160804.6875, 14162310.9375, 14162962.5, 14164781.25, 14166251.5625, 14166932.8125, 14167437.5, 14168434.375, 14169218.75, 14172271.875, 14172551.5625, 14174257.8125, 14174418.75, 14174856.25, 14175837.5, 14175985.9375, 14176795.3125, 14178521.875, 14179685.9375, 14180795.3125, 14182107.8125, 14182192.1875, 14182379.6875, 14183035.9375, 14183832.8125, 14184218.75, 14184285.9375, 14185062.5, 14185514.0625, 14186229.6875, 14186800.0, 14186907.8125, 14187250.0, 14187737.5, 14188301.5625, 14189178.125, 14189756.25, 14189868.75, 14190282.8125, 14190651.5625, 14190731.25, 14190751.5625, 14190762.5, 14190851.5625, 14190895.3125, 14191453.125, 14191468.75, 14191509.375, 14191529.6875, 14191565.625, 14191628.125, 14191629.6875, 14191698.4375, 14191748.4375, 14191868.75, 14191881.25, 14191973.4375, 14192095.3125, 14192156.25, 14192406.25, 14192462.5, 14192465.625, 14192498.4375, 14192700.0, 14192800.0, 14192953.125, 14193020.3125, 14193025.0, 14193050.0, 14193232.8125, 14193271.875, 14193279.6875, 14193510.9375, 14193521.875, 14193539.0625, 14193559.375, 14193565.625, 14193604.6875, 14193640.625, 14193850.0, 14193878.125, 14193917.1875, 14193923.4375, 14193962.5, 14194007.8125, 14194106.25, 14194159.375, 14194284.375, 14194470.3125, 14194535.9375, 14194570.3125, 14194662.5, 14194767.1875, 14194795.3125, 14194935.9375, 14194945.3125, 14194975.0, 14194998.4375, 14195007.8125, 14195032.8125, 14195050.0, 14195054.6875, 14195171.875, 14195295.3125, 14195309.375, 14195403.125, 14195534.375, 14195551.5625, 14195559.375, 14195601.5625, 14195893.75, 14195923.4375, 14196081.25, 14196142.1875, 14196190.625, 14196201.5625, 14196231.25, 14196267.1875, 14196278.125, 14196303.125, 14196521.875, 14196542.1875, 14196554.6875, 14196559.375, 14196598.4375, 14196609.375, 14196639.0625, 14196840.625, 14196846.875, 14196853.125, 14196870.3125, 14196926.5625, 14197085.9375, 14197259.375, 14197318.75, 14197381.25, 14197392.1875, 14197801.5625, 14198265.625, 14198489.0625, 14199203.125, 14199729.6875, 14203735.9375, 14203753.125, 14205428.125, 14208392.1875, 14213376.5625, 14214784.375, 14215737.5, 14220246.875, 14221454.6875, 14223037.5, 14223567.1875, 14225381.25, 14225953.125, 14226104.6875, 14226289.0625, 14226390.625, 14226510.9375, 14227209.375, 14227704.6875, 14227729.6875, 14228048.4375, 14228651.5625, 14228954.6875, 14229134.375, 14229351.5625, 14230331.25, 14231918.75, 14234870.3125, 14234943.75, 14234990.625, 14235370.3125, 14235409.375, 14235876.5625, 14236651.5625, 14236996.875, 14237070.3125, 14237259.375, 14237507.8125, 14237542.1875, 14237714.0625, 14237759.375, 14238046.875, 14238182.8125, 14238431.25, 14238482.8125, 14238485.9375, 14239542.1875, 14239718.75, 14239732.8125, 14240271.875, 14240584.375, 14241173.4375, 14243907.8125, 14245381.25, 14245926.5625, 14246217.1875, 14246629.6875, 14247034.375, 14247271.875, 14249328.125, 14250334.375, 14251778.125, 14255865.625, 14256895.3125, 14257845.3125, 14260717.1875, 14263706.25, 14269257.8125, 14272703.125, 14272710.9375, 14273075.0, 14273389.0625, 14273814.0625, 14274023.4375, 14274093.75, 14274809.375, 14277364.0625, 14279948.4375, 14281639.0625, 14284728.125, 14285789.0625, 14286109.375, 14287382.8125, 14289876.5625, 14290421.875, 14290510.9375, 14294726.5625, 14295179.6875, 14295276.5625, 14295534.375, 14295607.8125, 14296256.25, 14300103.125, 14300451.5625, 14300692.1875, 14301534.375, 14301623.4375, 14301796.875, 14303793.75, 14304923.4375, 14305120.3125, 14307242.1875, 14309003.125, 14309146.875, 14311359.375, 14313490.625, 14314048.4375, 14314331.25, 14315079.6875, 14315195.3125, 14316479.6875, 14316539.0625, 14317168.75, 14317176.5625, 14317562.5, 14317643.75, 14317781.25, 14318639.0625, 14318806.25, 14318820.3125, 14319006.25, 14319060.9375, 14319568.75, 14319678.125, 14319943.75, 14320206.25, 14320576.5625, 14320834.375, 14320934.375, 14321037.5, 14321059.375, 14321407.8125, 14321460.9375, 14321962.5, 14322545.3125, 14322953.125, 14323079.6875, 14323189.0625, 14323731.25, 14323856.25, 14324382.8125, 14325925.0, 14326334.375, 14326340.625, 14326429.6875, 14327245.3125, 14327275.0, 14327550.0, 14327598.4375, 14327675.0, 14327682.8125, 14328445.3125, 14328515.625, 14329289.0625, 14329415.625, 14330001.5625, 14331170.3125, 14331254.6875, 14331350.0, 14331495.3125, 14332189.0625, 14332262.5, 14332331.25, 14332412.5, 14332435.9375, 14332582.8125, 14332700.0, 14332706.25, 14332706.25, 14332728.125, 14332750.0, 14332773.4375, 14332778.125, 14332781.25, 14333017.1875, 14333075.0, 14333089.0625, 14333090.625, 14333178.125, 14333189.0625, 14333210.9375, 14333239.0625, 14333271.875, 14333278.125, 14333304.6875, 14333318.75, 14333373.4375, 14333475.0, 14333606.25, 14334648.4375, 14334728.125, 14334990.625, 14335026.5625, 14335103.125, 14335309.375, 14335425.0, 14335445.3125, 14335459.375, 14335520.3125, 14335642.1875, 14335920.3125, 14335948.4375, 14336078.125, 14337184.375, 14337632.8125, 14340314.0625, 14340365.625, 14340392.1875, 14340856.25, 14346457.8125, 14348343.75, 14348710.9375, 14348759.375, 14349853.125, 14350050.0, 14350196.875, 14350300.0, 14350710.9375, 14350832.8125, 14350928.125, 14352375.0, 14353070.3125, 14353654.6875, 14353750.0, 14354106.25, 14354118.75, 14354592.1875, 14354609.375, 14354642.1875, 14354917.1875, 14355714.0625, 14357096.875, 14357634.375, 14360500.0, 14360789.0625, 14360801.5625, 14362150.0, 14362321.875, 14362806.25, 14363020.3125, 14363520.3125, 14363695.3125, 14365400.0, 14365579.6875, 14365668.75, 14366157.8125, 14366496.875, 14367128.125, 14367571.875, 14368101.5625, 14368117.1875, 14368139.0625, 14368145.3125, 14368448.4375, 14368817.1875, 14369539.0625, 14369692.1875, 14369714.0625, 14369859.375, 14369878.125, 14370192.1875, 14371195.3125, 14371860.9375, 14372026.5625, 14372478.125, 14373092.1875, 14373187.5, 14373651.5625, 14374242.1875, 14374859.375, 14375403.125, 14375712.5, 14376160.9375, 14376545.3125, 14376620.3125, 14377007.8125, 14377051.5625, 14377073.4375, 14377087.5, 14377525.0, 14377690.625, 14378081.25, 14378682.8125, 14378976.5625, 14378982.8125, 14379175.0, 14379246.875, 14379278.125, 14379328.125, 14379598.4375, 14379723.4375, 14379837.5, 14379906.25, 14379951.5625, 14380089.0625, 14381006.25, 14381073.4375, 14381082.8125, 14381159.375, 14381159.375, 14381426.5625, 14381775.0, 14381823.4375, 14381837.5, 14381995.3125, 14382076.5625, 14382239.0625, 14382531.25, 14382537.5, 14382648.4375, 14382703.125, 14382828.125, 14383154.6875, 14383200.0, 14383206.25, 14383403.125, 14383564.0625, 14383743.75, 14384045.3125, 14384328.125, 14384367.1875, 14384379.6875, 14384398.4375, 14384434.375, 14384471.875, 14384503.125, 14384929.6875, 14384965.625, 14384967.1875, 14385017.1875, 14385042.1875, 14385053.125, 14385417.1875, 14385423.4375, 14385490.625, 14385867.1875, 14386026.5625, 14386218.75, 14386248.4375, 14386250.0, 14386306.25, 14386742.1875, 14386751.5625, 14386845.3125, 14387307.8125, 14387481.25, 14387506.25, 14387645.3125, 14387795.3125, 14387818.75, 14387945.3125, 14387989.0625, 14388226.5625, 14388468.75, 14388601.5625, 14388710.9375, 14388987.5, 14389092.1875, 14389518.75, 14389651.5625, 14390571.875, 14390685.9375, 14390773.4375, 14390826.5625, 14390970.3125, 14391376.5625, 14391389.0625, 14391523.4375, 14391590.625, 14391818.75, 14391876.5625, 14392218.75, 14392943.75, 14393018.75, 14393343.75, 14393370.3125, 14393614.0625, 14394009.375, 14394614.0625, 14394667.1875, 14395121.875, 14395515.625, 14395660.9375, 14395737.5, 14395843.75, 14395846.875, 14395979.6875, 14396037.5, 14396039.0625, 14396557.8125, 14396575.0, 14396589.0625, 14396939.0625, 14397040.625, 14397057.8125, 14397145.3125, 14397440.625, 14397593.75, 14397621.875, 14397625.0, 14397676.5625, 14397812.5, 14397959.375, 14398389.0625, 14398620.3125, 14398928.125, 14398937.5, 14398946.875, 14399364.0625, 14399464.0625, 14399520.3125, 14399643.75, 14399732.8125, 14399815.625, 14399917.1875, 14400096.875, 14400098.4375, 14400129.6875, 14400148.4375, 14400215.625, 14400223.4375, 14400335.9375, 14400481.25, 14400485.9375, 14400567.1875, 14400621.875, 14400665.625, 14400725.0, 14400746.875, 14400764.0625, 14400778.125, 14400782.8125, 14400834.375, 14400940.625, 14401000.0, 14401020.3125, 14401132.8125, 14401135.9375, 14401307.8125, 14401368.75, 14401482.8125, 14401520.3125, 14401531.25, 14401700.0, 14401714.0625, 14401735.9375, 14401737.5, 14401870.3125, 14402068.75, 14402171.875, 14402317.1875, 14402371.875, 14402457.8125, 14402467.1875, 14402482.8125, 14402526.5625, 14402542.1875, 14402551.5625, 14402764.0625, 14402798.4375, 14402801.5625, 14402840.625, 14402981.25, 14402985.9375, 14403037.5, 14403057.8125, 14403179.6875, 14403190.625, 14403192.1875, 14403310.9375, 14403395.3125, 14403395.3125, 14403443.75, 14403459.375, 14403665.625, 14403704.6875, 14403762.5, 14403770.3125, 14404076.5625, 14404079.6875, 14404139.0625, 14404243.75, 14404285.9375, 14404326.5625, 14404623.4375, 14404867.1875, 14404940.625, 14405084.375, 14405092.1875, 14405110.9375, 14405137.5, 14405243.75, 14405276.5625, 14405368.75, 14405434.375, 14405459.375, 14405725.0, 14405820.3125, 14405895.3125, 14405960.9375, 14406032.8125, 14406039.0625, 14406062.5, 14406106.25, 14406248.4375, 14406250.0, 14406473.4375, 14406592.1875, 14406670.3125, 14406776.5625, 14406976.5625, 14406985.9375, 14407092.1875, 14407143.75, 14407250.0, 14407485.9375, 14407667.1875, 14407707.8125, 14407720.3125, 14407759.375, 14407831.25, 14407882.8125, 14407912.5, 14407960.9375, 14407987.5, 14408131.25, 14408364.0625, 14408364.0625, 14408409.375, 14408456.25, 14408496.875, 14408509.375, 14408540.625, 14408557.8125, 14408573.4375, 14408623.4375, 14408714.0625, 14408723.4375, 14408882.8125, 14408909.375, 14408945.3125, 14408948.4375, 14408964.0625, 14409012.5, 14409029.6875, 14409060.9375, 14409067.1875, 14409093.75, 14409100.0, 14409109.375, 14409110.9375, 14409140.625, 14409145.3125, 14409150.0, 14409170.3125, 14409175.0, 14409189.0625, 14409195.3125, 14409203.125, 14409212.5, 14409253.125, 14409256.25, 14409273.4375, 14409348.4375, 14409351.5625, 14409356.25, 14409404.6875, 14409431.25, 14409440.625, 14409453.125, 14409467.1875, 14409510.9375, 14409564.0625, 14409592.1875, 14409598.4375, 14409604.6875, 14409606.25, 14409606.25, 14409617.1875, 14409623.4375, 14409639.0625, 14409640.625, 14409640.625, 14409643.75, 14409646.875, 14409653.125, 14409656.25, 14409662.5, 14409665.625, 14409673.4375, 14409679.6875, 14409684.375, 14409687.5, 14409692.1875, 14409695.3125, 14409714.0625, 14409731.25, 14409731.25, 14409734.375, 14409742.1875, 14409764.0625, 14409776.5625, 14409801.5625, 14409806.25, 14409828.125, 14409831.25, 14409878.125, 14409879.6875, 14409896.875, 14409903.125, 14409907.8125, 14409920.3125, 14409954.6875, 14410090.625, 14410106.25, 14410107.8125, 14410120.3125, 14410151.5625, 14410153.125, 14410167.1875, 14410179.6875, 14410203.125, 14410206.25, 14410210.9375, 14410212.5, 14410225.0, 14410229.6875, 14410229.6875, 14410264.0625, 14410265.625, 14410293.75, 14410298.4375, 14410306.25, 14410307.8125, 14410326.5625, 14410370.3125, 14410417.1875, 14410432.8125, 14410437.5, 14410448.4375, 14410489.0625, 14410593.75, 14410635.9375, 14410678.125, 14410693.75, 14410712.5, 14410721.875, 14410745.3125, 14410754.6875, 14410764.0625, 14410785.9375, 14410806.25, 14410825.0, 14410835.9375, 14410850.0, 14410856.25, 14410862.5, 14410884.375, 14410887.5, 14410890.625, 14410921.875, 14410921.875, 14410940.625, 14410942.1875, 14410967.1875, 14410968.75, 14410970.3125, 14410984.375, 14410984.375, 14411012.5, 14411017.1875, 14411048.4375, 14411068.75, 14411085.9375, 14411184.375, 14411190.625, 14411195.3125, 14411239.0625, 14411273.4375, 14411331.25, 14411337.5, 14411354.6875, 14411356.25, 14411384.375, 14411406.25, 14411468.75, 14411470.3125, 14411490.625, 14411517.1875, 14411518.75, 14411521.875, 14411526.5625, 14411625.0, 14411654.6875, 14411725.0, 14411745.3125, 14411754.6875, 14411775.0, 14411832.8125, 14411839.0625, 14411842.1875, 14412039.0625, 14412471.875, 14412667.1875, 14412740.625, 14412768.75, 14412821.875, 14412960.9375, 14413001.5625, 14413292.1875, 14413489.0625, 14413528.125, 14413718.75, 14413757.8125, 14414107.8125, 14414268.75, 14414306.25, 14414712.5, 14415453.125, 14415553.125, 14415573.4375, 14415662.5, 14415668.75, 14415703.125, 14415871.875, 14415876.5625, 14416434.375, 14416575.0, 14416790.625, 14416867.1875, 14417018.75, 14417067.1875, 14417071.875, 14417132.8125, 14417140.625, 14417160.9375, 14417184.375, 14417192.1875, 14417221.875, 14417232.8125, 14417309.375, 14417456.25, 14417545.3125, 14417551.5625, 14417637.5, 14417762.5, 14417765.625, 14417840.625, 14418315.625, 14418345.3125, 14418726.5625, 14418831.25, 14418910.9375, 14419010.9375, 14419409.375, 14419431.25, 14419456.25, 14419475.0, 14419531.25, 14419707.8125, 14419779.6875, 14419865.625, 14419867.1875, 14419954.6875, 14420151.5625, 14420153.125, 14420190.625, 14420200.0, 14420548.4375, 14420778.125, 14420948.4375, 14420957.8125, 14421121.875, 14421168.75, 14421251.5625, 14421468.75, 14421521.875, 14421843.75, 14422404.6875, 14422535.9375, 14422540.625, 14422550.0, 14423014.0625, 14423065.625, 14423131.25, 14423318.75, 14423570.3125, 14423732.8125, 14424117.1875, 14424129.6875, 14424231.25, 14424326.5625, ...], [7.172745963226264, 5.298158186016628, 12.678688939999379, 138.11330515830625, 34.49917713539825, 6.517968971446579, 14.490251525338218, 20.361460969139294, 149.74801127279153, 68.3435463548384, 24.792324623571666, 15.023821017044133, 74.5021285392138, 5.352010459261726, 81.98986087682009, 31.381207794866704, 5.074687106145519, 7.72273078754815, 77.65121381314054, 15.261823729811926, 31.22288014966662, 60.48919968404234, 37.18462694118777, 40.92731044094651, 22.08869155715538, 115.28616015728274, 67.85387110880103, 30.794906994496095, 77.86771993892505, 100.62947989096168, 5.07588437008664, 89.40013718592965, 10.9876939493753, 25.730174107532694, 20.06105279244023, 22.343269737382474, 21.486232663180953, 24.63248590205996, 7.335025561900879, 6.082192005936918, 10.388083538864706, 13.78461479869418, 61.129709193383626, 102.48316112273247, 5.734480303679659, 9.134130423250081, 14.662142965647817, 31.255700710004437, 65.88265179065282, 23.52085173612128, 103.50749801191081, 12.992167916352798, 17.28866446924617, 39.39324948202177, 15.40286654800859, 64.15956120546257, 8.847012063314972, 189.91935200668007, 18.72079999519092, 24.579295975196445, 24.52769961522235, 47.0866051516702, 53.250443976748535, 106.33793704477046, 12.03351395896264, 66.07035554279332, 6.625192879876161, 57.83392715082266, 65.04942347139598, 25.92865582831478, 11.932794889794517, 40.681017278211385, 36.8636596288726, 79.34317813301249, 18.814723581202728, 11.736657691555257, 6.41899997151516, 47.686589676829385, 6.385836291281858, 22.88132383280083, 7.890959425861529, 35.13989445544059, 63.147741082257596, 22.730759740510496, 108.47255351829028, 16.759724535025928, 30.395249588546598, 9.087723442343352, 24.411759623495605, 14.072163923665125, 56.69629787361916, 55.50880430672853, 7.144679469244092, 10.248321422140219, 20.871849031665242, 91.02341857669926, 46.644003327535565, 48.44622311265396, 10.204927008603823, 93.2945187406538, 25.945288731895765, 24.09002584159625, 68.32420396175522, 65.95757186626768, 21.61349377241268, 11.216685360032313, 8.225834095037566, 66.74267884766384, 22.61314150555224, 16.506361345334383, 38.38949932452556, 13.367493053928285, 41.81556614044733, 6.44872277314884, 111.0123929266178, 37.72031564098603, 10.112313157007051, 61.022478124977724, 10.162384362789284, 28.332379017006918, 98.70186610517348, 7.194648139389431, 18.857040363884067, 38.9715166437134, 41.75673489180831, 28.536525692465677, 6.651964483021272, 5.6804074683783865, 10.34754842544624, 7.098737336320963, 60.29734166049437, 16.10846398416018, 32.173255886161236, 8.30915629259122, 73.78199892286209, 8.59347241294796, 12.567984667716381, 66.09410377750342, 10.399859339233775, 51.40840463189646, 29.5483170428471, 7.726765876926302, 7.598198786074699, 18.1461655359834, 70.80918519101738, 42.95349163339361, 64.30434004134487, 101.05998403228142, 8.771914168648586, 32.1497326108763, 76.61202149871845, 5.767903968269396, 25.077897127990514, 51.15442306384722, 16.568494107182328, 5.124718057448998, 18.142982759043488, 13.801706813463202, 20.72588485377122, 11.962542645969917, 85.28255225808448, 52.54513724241509, 17.226566740547224, 38.6845423361899, 16.05842084448375, 5.63500145230256, 71.31386892508255, 35.98734309519089, 93.92836751783801, 22.113055717949607, 66.4582840635565, 89.85961659855768, 52.7058701694683, 56.84142999615064, 35.83973376721007, 100.05887424764285, 22.541881318294827, 7.2295117866782945, 51.78187123044886, 30.532138270777295, 43.48878466973741, 85.67066015099154, 11.308549869001615, 43.78098080384218, 29.27505151317543, 5.547920268050843, 22.988703961796993, 84.04438208210732, 7.484898573815701, 5.493670101991433, 27.03491291003538, 73.45844222463016, 17.402785154925148, 40.91288106316301, 24.45662164875941, 25.355952060218215, 7.857463482781576, 16.781322630274765, 38.06520960078283, 25.841945914045212, 121.41418458910601, 12.05826843892513, 45.17614385335838, 23.11219614512906, 5.341582468287913, 79.64936271946898, 19.4620707184961, 15.099812807811826, 6.396503994498687, 8.902444136154132, 11.963211364237202, 10.572815815222258, 11.751536440313918, 9.822489081967511, 72.75568846929741, 42.63295317410847, 9.627669896504782, 11.970122019158591, 8.620372910986083, 39.46607858351049, 18.208813895135087, 28.402910217099095, 9.944482345063248, 15.052508865600577, 88.61598493200218, 64.27331648534123, 44.81792587945699, 51.3264172716255, 18.12966811743537, 65.9713671048631, 64.91429453590688, 37.7169265360341, 26.933524841360008, 11.561373531124588, 103.07883590416546, 10.657913899850213, 41.18946530868703, 23.68289539251273, 12.40481466021143, 16.876207735874782, 6.450886263789613, 5.236022916279894, 55.5085647825373, 5.1848798188951895, 10.942885791417241, 21.228620412123277, 52.72441445573778, 43.680592032552106, 47.550843649711936, 72.71941060308443, 33.407404521776606, 65.96548986039447, 74.53179633899781, 82.73512519392673, 19.530264406006076, 51.146531444841365, 22.44765526950483, 63.6038670543084, 10.46161956986976, 12.281750975846492, 11.209921670331129, 38.53611817295252, 23.60243454884577, 15.98329821360188, 9.477797493118063, 95.96004051561977, 12.561734526328229, 80.10998168443322, 13.141938800999489, 38.73795299947563, 25.1787122589268, 11.995526023698359, 30.20243698350371, 8.947409687619308, 14.272603272211429, 5.645220480088151, 20.789641683854185, 11.610538159140448, 25.98865688864363, 40.775891761494485, 19.381786869264815, 5.666944866177187, 82.56720737426487, 13.749223355083208, 12.172434478317484, 50.7477490783516, 16.118072899167828, 13.23014056939273, 37.324120347677685, 11.703658155917196, 9.969003809068527, 22.3780688741275, 70.43889740242936, 28.02890798346915, 55.15974778001467, 20.508040402323232, 11.569962382787631, 15.783181880525342, 16.1622751763741, 9.990549290991998, 21.524146132411648, 5.588108644173606, 73.47154025692, 61.0608965083044, 22.781146573562072, 13.198707318721453, 58.85272940134922, 19.035333207786554, 155.1164105787868, 9.805937966111225, 10.896915355016715, 15.439518178680995, 6.577750761517471, 35.207249044071524, 11.437116567489877, 44.493330086506596, 99.00208705014596, 78.7499889433097, 40.87326715216046, 9.61165921474753, 8.987252584743626, 15.472766571748304, 70.66243088197434, 8.537474854251078, 153.3634840384738, 19.807736972710675, 15.65922415688272, 64.89565968912429, 76.04657797055341, 57.846649443410115, 6.682006055906182, 9.570892838832453, 137.80907434225446, 71.18123197782194, 10.034134245572474, 25.91701618899975, 69.65658304973533, 50.9183075014123, 5.076710309524955, 67.66208708162623, 5.638079383760781, 33.11051498299543, 44.40661679794254, 39.85637756051392, 12.547013874465037, 101.47586967466178, 5.158332238880376, 26.172739726542623, 96.19306641374106, 69.60548095357659, 11.209243122260881, 15.431579475822696, 60.158029127365474, 10.60677929554731, 49.998546213401625, 81.75973883485933, 5.5247958426837505, 6.982922439095927, 79.0956928123427, 7.180116894475829, 5.517682794966475, 7.7869478903988, 47.13820010587551, 29.783784039458137, 18.15690637205932, 80.43096855100067, 34.28547426530711, 10.334555823966749, 24.289215505686222, 17.600550236151626, 10.760911609424396, 18.087657518538148, 57.92374781081311, 6.090828168149168, 66.01148141187498, 23.86269498714843, 65.9947821391257, 10.466467943198381, 16.98225258680005, 66.27174246381458, 14.479029807481709, 21.92162858939097, 7.180461103075563, 9.673195981664257, 61.88752222366695, 26.52392569434822, 25.01743233955976, 65.39885353598348, 16.669737343356267, 20.62571396515738, 6.338331055870419, 82.9843940427847, 13.43037790357525, 17.85103634702473, 14.338645822926875, 63.06569006243312, 55.65183730416213, 16.064599993697165, 17.060310050496724, 30.477269124773077, 60.56899401474277, 24.02168703671271, 14.735058466452665, 14.684736113082565, 14.974749348061238, 10.86343831092035, 55.81479606007634, 22.301654212060875, 45.73776259749554, 54.34065736672992, 87.81329028081355, 11.075890012975378, 49.1167675233733, 51.68738297486017, 15.68335056902278, 8.039214241282727, 67.14124935183598, 7.644924400683887, 194.5036392580581, 47.70096801529636, 10.76161360547197, 105.32474065323734, 20.6573491764062, 25.67488853981902, 10.972588719630076, 91.85482868689336, 6.797507502769349, 12.117938992377573, 73.84957761593724, 5.069914089171768, 10.922416636376838, 5.797282795532209, 16.074085745900092, 6.163159543245606, 24.405743570771325, 13.524875958467632, 48.797077583435126, 9.631178151901967, 31.512171705273325, 68.75926766749524, 11.149850304174004, 46.23264322450837, 90.01136415169415, 10.16419548769168, 53.10665339597363, 56.80067915676545, 6.850759383108725, 21.482162679971953, 14.99218065937609, 88.54245264246096, 28.151069688793143, 27.670727281111446, 45.60798645042822, 25.15242968031434, 17.194132939284017, 31.355070739158617, 58.21066504892859, 46.01939281541598, 11.282993634466182, 94.3890919646543, 10.921740427691443, 30.361696193778247, 14.239452501020235, 98.20440904692286, 43.63432202309737, 21.521951291331852, 20.914587401746637, 36.17486581689762, 60.512058614039766, 20.835740612227756, 23.68878169394596, 24.27539934192594, 61.375618829140514, 72.12489476051094, 13.77292468357932, 11.518038605138441, 136.4471669264095, 25.567053733363736, 43.53615282025707, 46.32432132151402, 74.47093522372911, 219.56214374254472, 7.152779649422089, 26.57459763470156, 15.037079552473394, 114.0126342987476, 49.073690190681475, 17.523382366792134, 53.67480188544398, 19.625742186662563, 11.291824814527327, 14.905611361794564, 5.258320872355714, 7.091659145878291, 98.93876345835716, 50.39899448411458, 17.63869597879026, 21.49940853071662, 49.91832971902348, 16.40924127828359, 32.3657741983633, 30.589722354151952, 10.567907402469736, 17.04626425964381, 29.490274164938256, 15.10194683296867, 32.44922525170951, 24.6525877721722, 48.3557521647233, 14.321706566691589, 67.45658139598788, 59.060906277716384, 32.681194650773165, 5.236174080873188, 112.74579097039053, 20.82262530981169, 13.23671926735414, 92.64116178389824, 33.38065492948969, 7.9492147110986435, 11.287534449191112, 21.44784906909497, 25.876974779365703, 35.38425507105683, 47.747897254904444, 104.23032632158653, 39.84027693398438, 10.558250839914061, 51.271045928314955, 89.56947876170675, 35.480632557619074, 6.742596514147881, 14.990862834095129, 14.870728552299013, 12.981371676696881, 25.372601893965076, 23.209935293021548, 8.082597566144281, 10.07811196911073, 25.824525491590933, 12.688471781542479, 24.93429939159262, 13.118411682325469, 11.72229163525564, 20.566294033095737, 16.869610670138574, 36.59170968980967, 85.58845588643904, 80.27689019350383, 12.404760768456757, 34.081618920669435, 36.507949958844605, 8.345994308837119, 19.240254704685146, 5.76298895181713, 38.29506406802797, 25.647493402968518, 51.23641511326977, 6.680369925114402, 6.382422737425263, 73.29789274375656, 24.237007649284433, 8.42483420224444, 15.727121134249707, 13.452964169902053, 63.01330227845795, 13.844931717102087, 6.5391809881559375, 66.49259660172233, 5.1024185762527186, 42.27724732313867, 5.299408685728283, 38.63174287767239, 12.62813194038197, 18.670442271035775, 18.537756761699846, 18.035653321992854, 10.745253108386201, 43.701486823603105, 26.729308339463767, 6.250601822821602, 35.76680502118255, 42.88248524279949, 29.132164434511928, 25.357234061147082, 114.68626039793905, 26.95609094729118, 53.90215661232843, 16.55514820717236, 15.775179776255877, 43.51155605254587, 9.312532345037788, 11.085134103873457, 63.26997250933617, 26.701876491423576, 9.94722765787609, 18.273947596617457, 14.15315138453467, 9.504046957917861, 38.40990853767094, 6.701690367962052, 83.78119207268956, 43.45129725674911, 10.235552517269916, 20.598651948047095, 31.827143945149196, 9.274138361044848, 5.686301636135329, 18.01718924773425, 23.890796830030446, 51.87812147467025, 24.37593550965758, 14.62583895770447, 30.461085433280417, 49.75969867059504, 6.950527625301467, 8.328819056553776, 21.608482467919366, 70.21296077477838, 23.0038729727792, 20.480448406660756, 65.483742367254, 77.75293523529196, 41.33301821505885, 22.030685648353987, 33.87223137224074, 13.64716041923305, 8.171824615230454, 41.00312116545291, 10.90391405759397, 7.469529897693893, 34.1830749330756, 173.28421911499103, 15.773069343579795, 51.24473664852229, 9.148724261309368, 33.53199734858598, 167.52136347497054, 24.05726735825811, 20.091051033622204, 16.55019212771372, 9.1818252608397, 26.511575292854054, 63.25222352665464, 37.74620164526952, 10.485443971716691, 22.941238103080156, 48.341007316819294, 61.615217998515575, 17.431036790043624, 26.649400433910575, 96.9928074028173, 18.99741908774076, 55.62356507812071, 11.16478165400631, 130.7405761478691, 5.622488510959171, 23.239688470779598, 58.654064525695084, 50.42055312408836, 88.81344801415108, 5.345601818148652, 13.749916723275124, 62.8215639746298, 13.62493966521088, 22.00248588428795, 5.163683100561028, 42.23319334930253, 54.32552708830379, 7.149024524310281, 10.436273709853122, 24.059691441875444, 11.844404664388072, 72.50316513765748, 42.66334257182875, 31.43056984897421, 22.310635579683527, 24.000050962381984, 5.6764911735645605, 111.12499530301803, 22.120929755314176, 8.504864716187797, 46.381429565501094, 13.987446284779706, 14.264361012137035, 7.42231163907869, 130.29039241904403, 42.2406268249037, 49.8622130556323, 99.30665773088484, 21.140148085925524, 59.684976505987024, 40.26899691177676, 7.12309169952402, 7.611397472308889, 75.2013482737093, 19.337877123695556, 17.704695674436785, 30.507911460794155, 11.579696785504057, 87.36690723184964, 21.525533381348275, 112.61180542513631, 95.85916557512536, 21.468737068192915, 5.548777704496716, 86.0183529664754, 100.10762422716468, 12.549643913894373, 7.742482915414579, 42.256802946803354, 21.178656422654903, 14.491088204966015, 67.61121583385767, 29.731589269828326, 67.83115770554718, 12.459889465607587, 24.073995607178702, 6.690338233039281, 70.75435555518546, 17.967509024554168, 109.58247969833567, 15.114038911768679, 86.66634611587122, 35.97658930111674, 84.14391818896435, 250.3313781767426, 29.375358750526345, 23.30763231927952, 11.166808424333448, 7.9780231705501095, 34.1708127972199, 8.34506737767383, 18.643006625122265, 18.219973705316768, 82.6142251353677, 28.620609439109735, 5.720153495411464, 29.206607508911354, 38.39014294827452, 18.940337611190152, 5.842188782101067, 41.99988456095114, 6.281584864442491, 24.917182137493366, 8.580117558441918, 77.37692959128165, 7.442033517682752, 31.281013480412945, 47.63117309830024, 54.97970629593909, 28.43630331103864, 7.309908518189166, 36.32787593051051, 5.285616379610379, 8.330789915166754, 39.78308727107745, 77.59013246967089, 44.61959330227394, 186.95808943621805, 6.207238808149669, 31.185054319526632, 110.23138948455203, 41.17942522720946, 17.126848646961065, 45.90027302232585, 25.048868079057804, 49.54019403897992, 26.421686330670383, 19.121750419712104, 19.606578552856952, 38.36024520026006, 6.184482403971854, 27.52702815594287, 5.954271017171359, 16.847624723661976, 7.153453072274177, 12.09412704177583, 8.304765316366359, 65.28839543928113, 40.67587829922515, 44.92164949923436, 14.290489995899362, 36.936587356717894, 8.65087943878028, 54.347990292919164, 66.70450666406194, 20.942336838380697, 22.376296569897157, 6.258849084808133, 17.60068104580115, 36.74708769153402, 24.043690935634352, 44.8594156730969, 78.52158485441059, 56.4151314501401, 49.22758008001346, 88.10171858997447, 11.510101661605812, 5.241027138695246, 21.89291379694984, 45.71262622117388, 13.441876175991416, 18.572550462144704, 5.652004504747058, 71.7834307929659, 69.46619478835416, 8.374322239917497, 18.779385968536552, 75.1371627417061, 38.563125971125785, 98.65005235979137, 27.252107710563546, 14.923949694566513, 84.21598934500496, 31.431285982305294, 5.607861455587392, 19.702251225123227, 54.430687472671295, 9.887843484400237, 7.261697336212311, 12.969597142422055, 59.50035723904523, 17.291276560072852, 34.28195900651012, 5.3201981704965995, 29.325562530560674, 8.740521262535982, 51.48009219870609, 72.20149252627574, 16.105060037866036, 12.970606071422743, 75.70707670705937, 10.940653824604725, 5.422516665133159, 50.33003722828853, 7.268617570404558, 5.190300802623693, 53.823658162336926, 17.22941809840662, 7.5610451780004855, 10.067314216741574, 39.326173357697634, 130.22945266945757, 5.746794045948539, 23.944069073381527, 5.26271534901228, 35.69485471953896, 100.65783759962252, 57.70762223239058, 14.072927676946698, 57.51898163397932, 65.64140780189057, 14.820786970805454, 56.18853988350381, 82.20993556077148, 5.476256744424069, 5.8116103261208005, 8.439508016427821, 64.28040752595713, 16.892044033017562, 20.789593863942414, 24.22394663706657, 20.411649668696974, 8.419184969639565, 7.939733139937911, 15.162628625166843, 9.462901792036723, 5.887819352361371, 24.627111191112668, 71.68659750324673, 11.598547829527371, 12.140292763599561, 101.21664283224735, 71.63050463410804, 45.71243409708497, 13.825106053781829, 22.982669202892176, 34.1837573978142, 8.716269329347028, 5.034067515252949, 5.15715040733622, 17.356551747104273, 106.374074693139, 57.1845167713642, 74.32456391343769, 9.314752615576998, 15.241486370689675, 6.140888521634251, 5.710626765648681, 6.812494327506382, 31.642162693791054, 58.005706391437414, 46.53735267106339, 22.922647770648283, 56.87341114093219, 80.63975304562473, 8.717061250637306, 6.052899150803193, 69.6590260900987, 10.658738219122359, 22.813370628747837, 93.33759659205417, 5.803890077414313, 48.27838372906953, 60.268713582348994, 17.990022442499498, 52.84059239191315, 31.270801064448037, 21.801436780965666, 52.815451228427136, 27.98608178557854, 116.073973780595, 10.077478974536275, 79.8016382303781, 17.246605739270287, 41.731939042386855, 55.61976832250942, 10.907761923458526, 81.83940270928714, 57.931012829004594, 39.779420111248925, 51.39715223757045, 78.4717706472036, 140.85630075585414, 10.243971887341951, 58.20020120941346, 13.135107352427775, 22.92729685184039, 6.105527166186602, 18.85439971737257, 29.172755424851967, 48.97353509677931, 12.644647628415292, 54.69646417303931, 52.781820275711546, 15.098605738002743, 5.957194090404376, 6.743050136603505, 27.800516269188194, 10.036552564875192, 58.243251157389636, 17.09615984459803, 28.98471856591917, 12.600303631167415, 88.65101947943086, 18.234296391240576, 9.99748356252506, 9.787577049281474, 55.984478006490434, 6.8722219895265315, 17.770978393370402, 38.68372386116976, 68.01071105467462, 14.872546468080321, 54.137372818324536, 10.470205429304091, 29.17026603834852, 35.520367745275024, 47.72381528810462, 77.41694335022028, 47.72852604358239, 12.827010037238686, 32.10026531349933, 6.357492499181385, 5.6851598567277835, 23.370741940459443, 8.667057257409313, 17.569098555927262, 30.563003489169798, 10.754067464279709, 82.9113502419649, 55.65067423348678, 24.905458624211256, 31.328637718085858, 34.329060741391416, 27.219933817239117, 21.091829823066305, 36.389664194273834, 18.07972058892011, 25.705889773930274, 61.529635252776195, 52.747741452465824, 51.12030677442969, 21.60193989919265, 27.86911899622678, 20.058236942495174, 44.78920948575915, 24.980192629394057, 24.084774914466472, 17.635506870644686, 6.66992725171353, 77.5047182058382, 45.11603831616904, 48.368529178375006, 96.80186377032352, 8.914752760253794, 63.75543507183354, 5.032086423471012, 51.11036430794377, ...])
caption, T_hit,count = 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, count, caption);
([7589207.8125, 7932578.125, 8333020.3125, 8552217.1875, 8613540.625, 8613568.75, 8679129.6875, 8872260.9375, 9346740.625, 14047751.5625, 14054546.875, 14065521.875, 14068731.25, 14069757.8125, 14080843.75, 14083564.0625, 14085482.8125, 14090412.5, 14092510.9375, 14093104.6875, 14095514.0625, 14097775.0, 14097953.125, 14099048.4375, 14105643.75, 14106835.9375, 14107107.8125, 14107525.0, 14107964.0625, 14108292.1875, 14108346.875, 14111117.1875, 14111164.0625, 14115076.5625, 14115315.625, 14116539.0625, 14116545.3125, 14116876.5625, 14116885.9375, 14118220.3125, 14118343.75, 14121685.9375, 14121732.8125, 14122392.1875, 14122454.6875, 14122501.5625, 14122982.8125, 14123550.0, 14124268.75, 14126271.875, 14127032.8125, 14133468.75, 14137210.9375, 14140325.0, 14145587.5, 14147123.4375, 14147451.5625, 14149601.5625, 14150360.9375, 14151390.625, 14151634.375, 14153645.3125, 14154295.3125, 14157340.625, 14159970.3125, 14160425.0, 14160804.6875, 14162310.9375, 14162962.5, 14164781.25, 14166251.5625, 14166932.8125, 14167437.5, 14168434.375, 14169218.75, 14172271.875, 14172551.5625, 14174257.8125, 14174418.75, 14174856.25, 14175837.5, 14175985.9375, 14176795.3125, 14178521.875, 14179685.9375, 14180795.3125, 14182107.8125, 14182192.1875, 14182379.6875, 14183035.9375, 14183832.8125, 14184218.75, 14184285.9375, 14185062.5, 14185514.0625, 14186229.6875, 14186800.0, 14186907.8125, 14187250.0, 14187737.5, 14188301.5625, 14189178.125, 14189756.25, 14189868.75, 14190282.8125, 14190651.5625, 14190731.25, 14190751.5625, 14190762.5, 14190851.5625, 14190895.3125, 14191453.125, 14191468.75, 14191509.375, 14191529.6875, 14191565.625, 14191628.125, 14191629.6875, 14191698.4375, 14191748.4375, 14191868.75, 14191881.25, 14191973.4375, 14192095.3125, 14192156.25, 14192406.25, 14192462.5, 14192465.625, 14192498.4375, 14192700.0, 14192800.0, 14192953.125, 14193020.3125, 14193025.0, 14193050.0, 14193232.8125, 14193271.875, 14193279.6875, 14193510.9375, 14193521.875, 14193539.0625, 14193559.375, 14193565.625, 14193604.6875, 14193640.625, 14193850.0, 14193878.125, 14193917.1875, 14193923.4375, 14193962.5, 14194007.8125, 14194106.25, 14194159.375, 14194284.375, 14194470.3125, 14194535.9375, 14194570.3125, 14194662.5, 14194767.1875, 14194795.3125, 14194935.9375, 14194945.3125, 14194975.0, 14194998.4375, 14195007.8125, 14195032.8125, 14195050.0, 14195054.6875, 14195171.875, 14195295.3125, 14195309.375, 14195403.125, 14195534.375, 14195551.5625, 14195559.375, 14195601.5625, 14195893.75, 14195923.4375, 14196081.25, 14196142.1875, 14196190.625, 14196201.5625, 14196231.25, 14196267.1875, 14196278.125, 14196303.125, 14196521.875, 14196542.1875, 14196554.6875, 14196559.375, 14196598.4375, 14196609.375, 14196639.0625, 14196840.625, 14196846.875, 14196853.125, 14196870.3125, 14196926.5625, 14197085.9375, 14197259.375, 14197318.75, 14197381.25, 14197392.1875, 14197801.5625, 14198265.625, 14198489.0625, 14199203.125, 14199729.6875, 14203735.9375, 14203753.125, 14205428.125, 14208392.1875, 14213376.5625, 14214784.375, 14215737.5, 14220246.875, 14221454.6875, 14223037.5, 14223567.1875, 14225381.25, 14225953.125, 14226104.6875, 14226289.0625, 14226390.625, 14226510.9375, 14227209.375, 14227704.6875, 14227729.6875, 14228048.4375, 14228651.5625, 14228954.6875, 14229134.375, 14229351.5625, 14230331.25, 14231918.75, 14234870.3125, 14234943.75, 14234990.625, 14235370.3125, 14235409.375, 14235876.5625, 14236651.5625, 14236996.875, 14237070.3125, 14237259.375, 14237507.8125, 14237542.1875, 14237714.0625, 14237759.375, 14238046.875, 14238182.8125, 14238431.25, 14238482.8125, 14238485.9375, 14239542.1875, 14239718.75, 14239732.8125, 14240271.875, 14240584.375, 14241173.4375, 14243907.8125, 14245381.25, 14245926.5625, 14246217.1875, 14246629.6875, 14247034.375, 14247271.875, 14249328.125, 14250334.375, 14251778.125, 14255865.625, 14256895.3125, 14257845.3125, 14260717.1875, 14263706.25, 14269257.8125, 14272703.125, 14272710.9375, 14273075.0, 14273389.0625, 14273814.0625, 14274023.4375, 14274093.75, 14274809.375, 14277364.0625, 14279948.4375, 14281639.0625, 14284728.125, 14285789.0625, 14286109.375, 14287382.8125, 14289876.5625, 14290421.875, 14290510.9375, 14294726.5625, 14295179.6875, 14295276.5625, 14295534.375, 14295607.8125, 14296256.25, 14300103.125, 14300451.5625, 14300692.1875, 14301534.375, 14301623.4375, 14301796.875, 14303793.75, 14304923.4375, 14305120.3125, 14307242.1875, 14309003.125, 14309146.875, 14311359.375, 14313490.625, 14314048.4375, 14314331.25, 14315079.6875, 14315195.3125, 14316479.6875, 14316539.0625, 14317168.75, 14317176.5625, 14317562.5, 14317643.75, 14317781.25, 14318639.0625, 14318806.25, 14318820.3125, 14319006.25, 14319060.9375, 14319568.75, 14319678.125, 14319943.75, 14320206.25, 14320576.5625, 14320834.375, 14320934.375, 14321037.5, 14321059.375, 14321407.8125, 14321460.9375, 14321962.5, 14322545.3125, 14322953.125, 14323079.6875, 14323189.0625, 14323731.25, 14323856.25, 14324382.8125, 14325925.0, 14326334.375, 14326340.625, 14326429.6875, 14327245.3125, 14327275.0, 14327550.0, 14327598.4375, 14327675.0, 14327682.8125, 14328445.3125, 14328515.625, 14329289.0625, 14329415.625, 14330001.5625, 14331170.3125, 14331254.6875, 14331350.0, 14331495.3125, 14332189.0625, 14332262.5, 14332331.25, 14332412.5, 14332435.9375, 14332582.8125, 14332700.0, 14332706.25, 14332706.25, 14332728.125, 14332750.0, 14332773.4375, 14332778.125, 14332781.25, 14333017.1875, 14333075.0, 14333089.0625, 14333090.625, 14333178.125, 14333189.0625, 14333210.9375, 14333239.0625, 14333271.875, 14333278.125, 14333304.6875, 14333318.75, 14333373.4375, 14333475.0, 14333606.25, 14334648.4375, 14334728.125, 14334990.625, 14335026.5625, 14335103.125, 14335309.375, 14335425.0, 14335445.3125, 14335459.375, 14335520.3125, 14335642.1875, 14335920.3125, 14335948.4375, 14336078.125, 14337184.375, 14337632.8125, 14340314.0625, 14340365.625, 14340392.1875, 14340856.25, 14346457.8125, 14348343.75, 14348710.9375, 14348759.375, 14349853.125, 14350050.0, 14350196.875, 14350300.0, 14350710.9375, 14350832.8125, 14350928.125, 14352375.0, 14353070.3125, 14353654.6875, 14353750.0, 14354106.25, 14354118.75, 14354592.1875, 14354609.375, 14354642.1875, 14354917.1875, 14355714.0625, 14357096.875, 14357634.375, 14360500.0, 14360789.0625, 14360801.5625, 14362150.0, 14362321.875, 14362806.25, 14363020.3125, 14363520.3125, 14363695.3125, 14365400.0, 14365579.6875, 14365668.75, 14366157.8125, 14366496.875, 14367128.125, 14367571.875, 14368101.5625, 14368117.1875, 14368139.0625, 14368145.3125, 14368448.4375, 14368817.1875, 14369539.0625, 14369692.1875, 14369714.0625, 14369859.375, 14369878.125, 14370192.1875, 14371195.3125, 14371860.9375, 14372026.5625, 14372478.125, 14373092.1875, 14373187.5, 14373651.5625, 14374242.1875, 14374859.375, 14375403.125, 14375712.5, 14376160.9375, 14376545.3125, 14376620.3125, 14377007.8125, 14377051.5625, 14377073.4375, 14377087.5, 14377525.0, 14377690.625, 14378081.25, 14378682.8125, 14378976.5625, 14378982.8125, 14379175.0, 14379246.875, 14379278.125, 14379328.125, 14379598.4375, 14379723.4375, 14379837.5, 14379906.25, 14379951.5625, 14380089.0625, 14381006.25, 14381073.4375, 14381082.8125, 14381159.375, 14381159.375, 14381426.5625, 14381775.0, 14381823.4375, 14381837.5, 14381995.3125, 14382076.5625, 14382239.0625, 14382531.25, 14382537.5, 14382648.4375, 14382703.125, 14382828.125, 14383154.6875, 14383200.0, 14383206.25, 14383403.125, 14383564.0625, 14383743.75, 14384045.3125, 14384328.125, 14384367.1875, 14384379.6875, 14384398.4375, 14384434.375, 14384471.875, 14384503.125, 14384929.6875, 14384965.625, 14384967.1875, 14385017.1875, 14385042.1875, 14385053.125, 14385417.1875, 14385423.4375, 14385490.625, 14385867.1875, 14386026.5625, 14386218.75, 14386248.4375, 14386250.0, 14386306.25, 14386742.1875, 14386751.5625, 14386845.3125, 14387307.8125, 14387481.25, 14387506.25, 14387645.3125, 14387795.3125, 14387818.75, 14387945.3125, 14387989.0625, 14388226.5625, 14388468.75, 14388601.5625, 14388710.9375, 14388987.5, 14389092.1875, 14389518.75, 14389651.5625, 14390571.875, 14390685.9375, 14390773.4375, 14390826.5625, 14390970.3125, 14391376.5625, 14391389.0625, 14391523.4375, 14391590.625, 14391818.75, 14391876.5625, 14392218.75, 14392943.75, 14393018.75, 14393343.75, 14393370.3125, 14393614.0625, 14394009.375, 14394614.0625, 14394667.1875, 14395121.875, 14395515.625, 14395660.9375, 14395737.5, 14395843.75, 14395846.875, 14395979.6875, 14396037.5, 14396039.0625, 14396557.8125, 14396575.0, 14396589.0625, 14396939.0625, 14397040.625, 14397057.8125, 14397145.3125, 14397440.625, 14397593.75, 14397621.875, 14397625.0, 14397676.5625, 14397812.5, 14397959.375, 14398389.0625, 14398620.3125, 14398928.125, 14398937.5, 14398946.875, 14399364.0625, 14399464.0625, 14399520.3125, 14399643.75, 14399732.8125, 14399815.625, 14399917.1875, 14400096.875, 14400098.4375, 14400129.6875, 14400148.4375, 14400215.625, 14400223.4375, 14400335.9375, 14400481.25, 14400485.9375, 14400567.1875, 14400621.875, 14400665.625, 14400725.0, 14400746.875, 14400764.0625, 14400778.125, 14400782.8125, 14400834.375, 14400940.625, 14401000.0, 14401020.3125, 14401132.8125, 14401135.9375, 14401307.8125, 14401368.75, 14401482.8125, 14401520.3125, 14401531.25, 14401700.0, 14401714.0625, 14401735.9375, 14401737.5, 14401870.3125, 14402068.75, 14402171.875, 14402317.1875, 14402371.875, 14402457.8125, 14402467.1875, 14402482.8125, 14402526.5625, 14402542.1875, 14402551.5625, 14402764.0625, 14402798.4375, 14402801.5625, 14402840.625, 14402981.25, 14402985.9375, 14403037.5, 14403057.8125, 14403179.6875, 14403190.625, 14403192.1875, 14403310.9375, 14403395.3125, 14403395.3125, 14403443.75, 14403459.375, 14403665.625, 14403704.6875, 14403762.5, 14403770.3125, 14404076.5625, 14404079.6875, 14404139.0625, 14404243.75, 14404285.9375, 14404326.5625, 14404623.4375, 14404867.1875, 14404940.625, 14405084.375, 14405092.1875, 14405110.9375, 14405137.5, 14405243.75, 14405276.5625, 14405368.75, 14405434.375, 14405459.375, 14405725.0, 14405820.3125, 14405895.3125, 14405960.9375, 14406032.8125, 14406039.0625, 14406062.5, 14406106.25, 14406248.4375, 14406250.0, 14406473.4375, 14406592.1875, 14406670.3125, 14406776.5625, 14406976.5625, 14406985.9375, 14407092.1875, 14407143.75, 14407250.0, 14407485.9375, 14407667.1875, 14407707.8125, 14407720.3125, 14407759.375, 14407831.25, 14407882.8125, 14407912.5, 14407960.9375, 14407987.5, 14408131.25, 14408364.0625, 14408364.0625, 14408409.375, 14408456.25, 14408496.875, 14408509.375, 14408540.625, 14408557.8125, 14408573.4375, 14408623.4375, 14408714.0625, 14408723.4375, 14408882.8125, 14408909.375, 14408945.3125, 14408948.4375, 14408964.0625, 14409012.5, 14409029.6875, 14409060.9375, 14409067.1875, 14409093.75, 14409100.0, 14409109.375, 14409110.9375, 14409140.625, 14409145.3125, 14409150.0, 14409170.3125, 14409175.0, 14409189.0625, 14409195.3125, 14409203.125, 14409212.5, 14409253.125, 14409256.25, 14409273.4375, 14409348.4375, 14409351.5625, 14409356.25, 14409404.6875, 14409431.25, 14409440.625, 14409453.125, 14409467.1875, 14409510.9375, 14409564.0625, 14409592.1875, 14409598.4375, 14409604.6875, 14409606.25, 14409606.25, 14409617.1875, 14409623.4375, 14409639.0625, 14409640.625, 14409640.625, 14409643.75, 14409646.875, 14409653.125, 14409656.25, 14409662.5, 14409665.625, 14409673.4375, 14409679.6875, 14409684.375, 14409687.5, 14409692.1875, 14409695.3125, 14409714.0625, 14409731.25, 14409731.25, 14409734.375, 14409742.1875, 14409764.0625, 14409776.5625, 14409801.5625, 14409806.25, 14409828.125, 14409831.25, 14409878.125, 14409879.6875, 14409896.875, 14409903.125, 14409907.8125, 14409920.3125, 14409954.6875, 14410090.625, 14410106.25, 14410107.8125, 14410120.3125, 14410151.5625, 14410153.125, 14410167.1875, 14410179.6875, 14410203.125, 14410206.25, 14410210.9375, 14410212.5, 14410225.0, 14410229.6875, 14410229.6875, 14410264.0625, 14410265.625, 14410293.75, 14410298.4375, 14410306.25, 14410307.8125, 14410326.5625, 14410370.3125, 14410417.1875, 14410432.8125, 14410437.5, 14410448.4375, 14410489.0625, 14410593.75, 14410635.9375, 14410678.125, 14410693.75, 14410712.5, 14410721.875, 14410745.3125, 14410754.6875, 14410764.0625, 14410785.9375, 14410806.25, 14410825.0, 14410835.9375, 14410850.0, 14410856.25, 14410862.5, 14410884.375, 14410887.5, 14410890.625, 14410921.875, 14410921.875, 14410940.625, 14410942.1875, 14410967.1875, 14410968.75, 14410970.3125, 14410984.375, 14410984.375, 14411012.5, 14411017.1875, 14411048.4375, 14411068.75, 14411085.9375, 14411184.375, 14411190.625, 14411195.3125, 14411239.0625, 14411273.4375, 14411331.25, 14411337.5, 14411354.6875, 14411356.25, 14411384.375, 14411406.25, 14411468.75, 14411470.3125, 14411490.625, 14411517.1875, 14411518.75, 14411521.875, 14411526.5625, 14411625.0, 14411654.6875, 14411725.0, 14411745.3125, 14411754.6875, 14411775.0, 14411832.8125, 14411839.0625, 14411842.1875, 14412039.0625, 14412471.875, 14412667.1875, 14412740.625, 14412768.75, 14412821.875, 14412960.9375, 14413001.5625, 14413292.1875, 14413489.0625, 14413528.125, 14413718.75, 14413757.8125, 14414107.8125, 14414268.75, 14414306.25, 14414712.5, 14415453.125, 14415553.125, 14415573.4375, 14415662.5, 14415668.75, 14415703.125, 14415871.875, 14415876.5625, 14416434.375, 14416575.0, 14416790.625, 14416867.1875, 14417018.75, 14417067.1875, 14417071.875, 14417132.8125, 14417140.625, 14417160.9375, 14417184.375, 14417192.1875, 14417221.875, 14417232.8125, 14417309.375, 14417456.25, 14417545.3125, 14417551.5625, 14417637.5, 14417762.5, 14417765.625, 14417840.625, 14418315.625, 14418345.3125, 14418726.5625, 14418831.25, 14418910.9375, 14419010.9375, 14419409.375, 14419431.25, 14419456.25, 14419475.0, 14419531.25, 14419707.8125, 14419779.6875, 14419865.625, 14419867.1875, 14419954.6875, 14420151.5625, 14420153.125, 14420190.625, 14420200.0, 14420548.4375, 14420778.125, 14420948.4375, 14420957.8125, 14421121.875, 14421168.75, 14421251.5625, 14421468.75, 14421521.875, 14421843.75, 14422404.6875, 14422535.9375, 14422540.625, 14422550.0, 14423014.0625, 14423065.625, 14423131.25, 14423318.75, 14423570.3125, 14423732.8125, 14424117.1875, 14424129.6875, 14424231.25, 14424326.5625, ...], [7.172745963226264, 5.298158186016628, 12.678688939999379, 138.11330515830625, 34.49917713539825, 6.517968971446579, 14.490251525338218, 20.361460969139294, 149.74801127279153, 68.3435463548384, 24.792324623571666, 15.023821017044133, 74.5021285392138, 5.352010459261726, 81.98986087682009, 31.381207794866704, 5.074687106145519, 7.72273078754815, 77.65121381314054, 15.261823729811926, 31.22288014966662, 60.48919968404234, 37.18462694118777, 40.92731044094651, 22.08869155715538, 115.28616015728274, 67.85387110880103, 30.794906994496095, 77.86771993892505, 100.62947989096168, 5.07588437008664, 89.40013718592965, 10.9876939493753, 25.730174107532694, 20.06105279244023, 22.343269737382474, 21.486232663180953, 24.63248590205996, 7.335025561900879, 6.082192005936918, 10.388083538864706, 13.78461479869418, 61.129709193383626, 102.48316112273247, 5.734480303679659, 9.134130423250081, 14.662142965647817, 31.255700710004437, 65.88265179065282, 23.52085173612128, 103.50749801191081, 12.992167916352798, 17.28866446924617, 39.39324948202177, 15.40286654800859, 64.15956120546257, 8.847012063314972, 189.91935200668007, 18.72079999519092, 24.579295975196445, 24.52769961522235, 47.0866051516702, 53.250443976748535, 106.33793704477046, 12.03351395896264, 66.07035554279332, 6.625192879876161, 57.83392715082266, 65.04942347139598, 25.92865582831478, 11.932794889794517, 40.681017278211385, 36.8636596288726, 79.34317813301249, 18.814723581202728, 11.736657691555257, 6.41899997151516, 47.686589676829385, 6.385836291281858, 22.88132383280083, 7.890959425861529, 35.13989445544059, 63.147741082257596, 22.730759740510496, 108.47255351829028, 16.759724535025928, 30.395249588546598, 9.087723442343352, 24.411759623495605, 14.072163923665125, 56.69629787361916, 55.50880430672853, 7.144679469244092, 10.248321422140219, 20.871849031665242, 91.02341857669926, 46.644003327535565, 48.44622311265396, 10.204927008603823, 93.2945187406538, 25.945288731895765, 24.09002584159625, 68.32420396175522, 65.95757186626768, 21.61349377241268, 11.216685360032313, 8.225834095037566, 66.74267884766384, 22.61314150555224, 16.506361345334383, 38.38949932452556, 13.367493053928285, 41.81556614044733, 6.44872277314884, 111.0123929266178, 37.72031564098603, 10.112313157007051, 61.022478124977724, 10.162384362789284, 28.332379017006918, 98.70186610517348, 7.194648139389431, 18.857040363884067, 38.9715166437134, 41.75673489180831, 28.536525692465677, 6.651964483021272, 5.6804074683783865, 10.34754842544624, 7.098737336320963, 60.29734166049437, 16.10846398416018, 32.173255886161236, 8.30915629259122, 73.78199892286209, 8.59347241294796, 12.567984667716381, 66.09410377750342, 10.399859339233775, 51.40840463189646, 29.5483170428471, 7.726765876926302, 7.598198786074699, 18.1461655359834, 70.80918519101738, 42.95349163339361, 64.30434004134487, 101.05998403228142, 8.771914168648586, 32.1497326108763, 76.61202149871845, 5.767903968269396, 25.077897127990514, 51.15442306384722, 16.568494107182328, 5.124718057448998, 18.142982759043488, 13.801706813463202, 20.72588485377122, 11.962542645969917, 85.28255225808448, 52.54513724241509, 17.226566740547224, 38.6845423361899, 16.05842084448375, 5.63500145230256, 71.31386892508255, 35.98734309519089, 93.92836751783801, 22.113055717949607, 66.4582840635565, 89.85961659855768, 52.7058701694683, 56.84142999615064, 35.83973376721007, 100.05887424764285, 22.541881318294827, 7.2295117866782945, 51.78187123044886, 30.532138270777295, 43.48878466973741, 85.67066015099154, 11.308549869001615, 43.78098080384218, 29.27505151317543, 5.547920268050843, 22.988703961796993, 84.04438208210732, 7.484898573815701, 5.493670101991433, 27.03491291003538, 73.45844222463016, 17.402785154925148, 40.91288106316301, 24.45662164875941, 25.355952060218215, 7.857463482781576, 16.781322630274765, 38.06520960078283, 25.841945914045212, 121.41418458910601, 12.05826843892513, 45.17614385335838, 23.11219614512906, 5.341582468287913, 79.64936271946898, 19.4620707184961, 15.099812807811826, 6.396503994498687, 8.902444136154132, 11.963211364237202, 10.572815815222258, 11.751536440313918, 9.822489081967511, 72.75568846929741, 42.63295317410847, 9.627669896504782, 11.970122019158591, 8.620372910986083, 39.46607858351049, 18.208813895135087, 28.402910217099095, 9.944482345063248, 15.052508865600577, 88.61598493200218, 64.27331648534123, 44.81792587945699, 51.3264172716255, 18.12966811743537, 65.9713671048631, 64.91429453590688, 37.7169265360341, 26.933524841360008, 11.561373531124588, 103.07883590416546, 10.657913899850213, 41.18946530868703, 23.68289539251273, 12.40481466021143, 16.876207735874782, 6.450886263789613, 5.236022916279894, 55.5085647825373, 5.1848798188951895, 10.942885791417241, 21.228620412123277, 52.72441445573778, 43.680592032552106, 47.550843649711936, 72.71941060308443, 33.407404521776606, 65.96548986039447, 74.53179633899781, 82.73512519392673, 19.530264406006076, 51.146531444841365, 22.44765526950483, 63.6038670543084, 10.46161956986976, 12.281750975846492, 11.209921670331129, 38.53611817295252, 23.60243454884577, 15.98329821360188, 9.477797493118063, 95.96004051561977, 12.561734526328229, 80.10998168443322, 13.141938800999489, 38.73795299947563, 25.1787122589268, 11.995526023698359, 30.20243698350371, 8.947409687619308, 14.272603272211429, 5.645220480088151, 20.789641683854185, 11.610538159140448, 25.98865688864363, 40.775891761494485, 19.381786869264815, 5.666944866177187, 82.56720737426487, 13.749223355083208, 12.172434478317484, 50.7477490783516, 16.118072899167828, 13.23014056939273, 37.324120347677685, 11.703658155917196, 9.969003809068527, 22.3780688741275, 70.43889740242936, 28.02890798346915, 55.15974778001467, 20.508040402323232, 11.569962382787631, 15.783181880525342, 16.1622751763741, 9.990549290991998, 21.524146132411648, 5.588108644173606, 73.47154025692, 61.0608965083044, 22.781146573562072, 13.198707318721453, 58.85272940134922, 19.035333207786554, 155.1164105787868, 9.805937966111225, 10.896915355016715, 15.439518178680995, 6.577750761517471, 35.207249044071524, 11.437116567489877, 44.493330086506596, 99.00208705014596, 78.7499889433097, 40.87326715216046, 9.61165921474753, 8.987252584743626, 15.472766571748304, 70.66243088197434, 8.537474854251078, 153.3634840384738, 19.807736972710675, 15.65922415688272, 64.89565968912429, 76.04657797055341, 57.846649443410115, 6.682006055906182, 9.570892838832453, 137.80907434225446, 71.18123197782194, 10.034134245572474, 25.91701618899975, 69.65658304973533, 50.9183075014123, 5.076710309524955, 67.66208708162623, 5.638079383760781, 33.11051498299543, 44.40661679794254, 39.85637756051392, 12.547013874465037, 101.47586967466178, 5.158332238880376, 26.172739726542623, 96.19306641374106, 69.60548095357659, 11.209243122260881, 15.431579475822696, 60.158029127365474, 10.60677929554731, 49.998546213401625, 81.75973883485933, 5.5247958426837505, 6.982922439095927, 79.0956928123427, 7.180116894475829, 5.517682794966475, 7.7869478903988, 47.13820010587551, 29.783784039458137, 18.15690637205932, 80.43096855100067, 34.28547426530711, 10.334555823966749, 24.289215505686222, 17.600550236151626, 10.760911609424396, 18.087657518538148, 57.92374781081311, 6.090828168149168, 66.01148141187498, 23.86269498714843, 65.9947821391257, 10.466467943198381, 16.98225258680005, 66.27174246381458, 14.479029807481709, 21.92162858939097, 7.180461103075563, 9.673195981664257, 61.88752222366695, 26.52392569434822, 25.01743233955976, 65.39885353598348, 16.669737343356267, 20.62571396515738, 6.338331055870419, 82.9843940427847, 13.43037790357525, 17.85103634702473, 14.338645822926875, 63.06569006243312, 55.65183730416213, 16.064599993697165, 17.060310050496724, 30.477269124773077, 60.56899401474277, 24.02168703671271, 14.735058466452665, 14.684736113082565, 14.974749348061238, 10.86343831092035, 55.81479606007634, 22.301654212060875, 45.73776259749554, 54.34065736672992, 87.81329028081355, 11.075890012975378, 49.1167675233733, 51.68738297486017, 15.68335056902278, 8.039214241282727, 67.14124935183598, 7.644924400683887, 194.5036392580581, 47.70096801529636, 10.76161360547197, 105.32474065323734, 20.6573491764062, 25.67488853981902, 10.972588719630076, 91.85482868689336, 6.797507502769349, 12.117938992377573, 73.84957761593724, 5.069914089171768, 10.922416636376838, 5.797282795532209, 16.074085745900092, 6.163159543245606, 24.405743570771325, 13.524875958467632, 48.797077583435126, 9.631178151901967, 31.512171705273325, 68.75926766749524, 11.149850304174004, 46.23264322450837, 90.01136415169415, 10.16419548769168, 53.10665339597363, 56.80067915676545, 6.850759383108725, 21.482162679971953, 14.99218065937609, 88.54245264246096, 28.151069688793143, 27.670727281111446, 45.60798645042822, 25.15242968031434, 17.194132939284017, 31.355070739158617, 58.21066504892859, 46.01939281541598, 11.282993634466182, 94.3890919646543, 10.921740427691443, 30.361696193778247, 14.239452501020235, 98.20440904692286, 43.63432202309737, 21.521951291331852, 20.914587401746637, 36.17486581689762, 60.512058614039766, 20.835740612227756, 23.68878169394596, 24.27539934192594, 61.375618829140514, 72.12489476051094, 13.77292468357932, 11.518038605138441, 136.4471669264095, 25.567053733363736, 43.53615282025707, 46.32432132151402, 74.47093522372911, 219.56214374254472, 7.152779649422089, 26.57459763470156, 15.037079552473394, 114.0126342987476, 49.073690190681475, 17.523382366792134, 53.67480188544398, 19.625742186662563, 11.291824814527327, 14.905611361794564, 5.258320872355714, 7.091659145878291, 98.93876345835716, 50.39899448411458, 17.63869597879026, 21.49940853071662, 49.91832971902348, 16.40924127828359, 32.3657741983633, 30.589722354151952, 10.567907402469736, 17.04626425964381, 29.490274164938256, 15.10194683296867, 32.44922525170951, 24.6525877721722, 48.3557521647233, 14.321706566691589, 67.45658139598788, 59.060906277716384, 32.681194650773165, 5.236174080873188, 112.74579097039053, 20.82262530981169, 13.23671926735414, 92.64116178389824, 33.38065492948969, 7.9492147110986435, 11.287534449191112, 21.44784906909497, 25.876974779365703, 35.38425507105683, 47.747897254904444, 104.23032632158653, 39.84027693398438, 10.558250839914061, 51.271045928314955, 89.56947876170675, 35.480632557619074, 6.742596514147881, 14.990862834095129, 14.870728552299013, 12.981371676696881, 25.372601893965076, 23.209935293021548, 8.082597566144281, 10.07811196911073, 25.824525491590933, 12.688471781542479, 24.93429939159262, 13.118411682325469, 11.72229163525564, 20.566294033095737, 16.869610670138574, 36.59170968980967, 85.58845588643904, 80.27689019350383, 12.404760768456757, 34.081618920669435, 36.507949958844605, 8.345994308837119, 19.240254704685146, 5.76298895181713, 38.29506406802797, 25.647493402968518, 51.23641511326977, 6.680369925114402, 6.382422737425263, 73.29789274375656, 24.237007649284433, 8.42483420224444, 15.727121134249707, 13.452964169902053, 63.01330227845795, 13.844931717102087, 6.5391809881559375, 66.49259660172233, 5.1024185762527186, 42.27724732313867, 5.299408685728283, 38.63174287767239, 12.62813194038197, 18.670442271035775, 18.537756761699846, 18.035653321992854, 10.745253108386201, 43.701486823603105, 26.729308339463767, 6.250601822821602, 35.76680502118255, 42.88248524279949, 29.132164434511928, 25.357234061147082, 114.68626039793905, 26.95609094729118, 53.90215661232843, 16.55514820717236, 15.775179776255877, 43.51155605254587, 9.312532345037788, 11.085134103873457, 63.26997250933617, 26.701876491423576, 9.94722765787609, 18.273947596617457, 14.15315138453467, 9.504046957917861, 38.40990853767094, 6.701690367962052, 83.78119207268956, 43.45129725674911, 10.235552517269916, 20.598651948047095, 31.827143945149196, 9.274138361044848, 5.686301636135329, 18.01718924773425, 23.890796830030446, 51.87812147467025, 24.37593550965758, 14.62583895770447, 30.461085433280417, 49.75969867059504, 6.950527625301467, 8.328819056553776, 21.608482467919366, 70.21296077477838, 23.0038729727792, 20.480448406660756, 65.483742367254, 77.75293523529196, 41.33301821505885, 22.030685648353987, 33.87223137224074, 13.64716041923305, 8.171824615230454, 41.00312116545291, 10.90391405759397, 7.469529897693893, 34.1830749330756, 173.28421911499103, 15.773069343579795, 51.24473664852229, 9.148724261309368, 33.53199734858598, 167.52136347497054, 24.05726735825811, 20.091051033622204, 16.55019212771372, 9.1818252608397, 26.511575292854054, 63.25222352665464, 37.74620164526952, 10.485443971716691, 22.941238103080156, 48.341007316819294, 61.615217998515575, 17.431036790043624, 26.649400433910575, 96.9928074028173, 18.99741908774076, 55.62356507812071, 11.16478165400631, 130.7405761478691, 5.622488510959171, 23.239688470779598, 58.654064525695084, 50.42055312408836, 88.81344801415108, 5.345601818148652, 13.749916723275124, 62.8215639746298, 13.62493966521088, 22.00248588428795, 5.163683100561028, 42.23319334930253, 54.32552708830379, 7.149024524310281, 10.436273709853122, 24.059691441875444, 11.844404664388072, 72.50316513765748, 42.66334257182875, 31.43056984897421, 22.310635579683527, 24.000050962381984, 5.6764911735645605, 111.12499530301803, 22.120929755314176, 8.504864716187797, 46.381429565501094, 13.987446284779706, 14.264361012137035, 7.42231163907869, 130.29039241904403, 42.2406268249037, 49.8622130556323, 99.30665773088484, 21.140148085925524, 59.684976505987024, 40.26899691177676, 7.12309169952402, 7.611397472308889, 75.2013482737093, 19.337877123695556, 17.704695674436785, 30.507911460794155, 11.579696785504057, 87.36690723184964, 21.525533381348275, 112.61180542513631, 95.85916557512536, 21.468737068192915, 5.548777704496716, 86.0183529664754, 100.10762422716468, 12.549643913894373, 7.742482915414579, 42.256802946803354, 21.178656422654903, 14.491088204966015, 67.61121583385767, 29.731589269828326, 67.83115770554718, 12.459889465607587, 24.073995607178702, 6.690338233039281, 70.75435555518546, 17.967509024554168, 109.58247969833567, 15.114038911768679, 86.66634611587122, 35.97658930111674, 84.14391818896435, 250.3313781767426, 29.375358750526345, 23.30763231927952, 11.166808424333448, 7.9780231705501095, 34.1708127972199, 8.34506737767383, 18.643006625122265, 18.219973705316768, 82.6142251353677, 28.620609439109735, 5.720153495411464, 29.206607508911354, 38.39014294827452, 18.940337611190152, 5.842188782101067, 41.99988456095114, 6.281584864442491, 24.917182137493366, 8.580117558441918, 77.37692959128165, 7.442033517682752, 31.281013480412945, 47.63117309830024, 54.97970629593909, 28.43630331103864, 7.309908518189166, 36.32787593051051, 5.285616379610379, 8.330789915166754, 39.78308727107745, 77.59013246967089, 44.61959330227394, 186.95808943621805, 6.207238808149669, 31.185054319526632, 110.23138948455203, 41.17942522720946, 17.126848646961065, 45.90027302232585, 25.048868079057804, 49.54019403897992, 26.421686330670383, 19.121750419712104, 19.606578552856952, 38.36024520026006, 6.184482403971854, 27.52702815594287, 5.954271017171359, 16.847624723661976, 7.153453072274177, 12.09412704177583, 8.304765316366359, 65.28839543928113, 40.67587829922515, 44.92164949923436, 14.290489995899362, 36.936587356717894, 8.65087943878028, 54.347990292919164, 66.70450666406194, 20.942336838380697, 22.376296569897157, 6.258849084808133, 17.60068104580115, 36.74708769153402, 24.043690935634352, 44.8594156730969, 78.52158485441059, 56.4151314501401, 49.22758008001346, 88.10171858997447, 11.510101661605812, 5.241027138695246, 21.89291379694984, 45.71262622117388, 13.441876175991416, 18.572550462144704, 5.652004504747058, 71.7834307929659, 69.46619478835416, 8.374322239917497, 18.779385968536552, 75.1371627417061, 38.563125971125785, 98.65005235979137, 27.252107710563546, 14.923949694566513, 84.21598934500496, 31.431285982305294, 5.607861455587392, 19.702251225123227, 54.430687472671295, 9.887843484400237, 7.261697336212311, 12.969597142422055, 59.50035723904523, 17.291276560072852, 34.28195900651012, 5.3201981704965995, 29.325562530560674, 8.740521262535982, 51.48009219870609, 72.20149252627574, 16.105060037866036, 12.970606071422743, 75.70707670705937, 10.940653824604725, 5.422516665133159, 50.33003722828853, 7.268617570404558, 5.190300802623693, 53.823658162336926, 17.22941809840662, 7.5610451780004855, 10.067314216741574, 39.326173357697634, 130.22945266945757, 5.746794045948539, 23.944069073381527, 5.26271534901228, 35.69485471953896, 100.65783759962252, 57.70762223239058, 14.072927676946698, 57.51898163397932, 65.64140780189057, 14.820786970805454, 56.18853988350381, 82.20993556077148, 5.476256744424069, 5.8116103261208005, 8.439508016427821, 64.28040752595713, 16.892044033017562, 20.789593863942414, 24.22394663706657, 20.411649668696974, 8.419184969639565, 7.939733139937911, 15.162628625166843, 9.462901792036723, 5.887819352361371, 24.627111191112668, 71.68659750324673, 11.598547829527371, 12.140292763599561, 101.21664283224735, 71.63050463410804, 45.71243409708497, 13.825106053781829, 22.982669202892176, 34.1837573978142, 8.716269329347028, 5.034067515252949, 5.15715040733622, 17.356551747104273, 106.374074693139, 57.1845167713642, 74.32456391343769, 9.314752615576998, 15.241486370689675, 6.140888521634251, 5.710626765648681, 6.812494327506382, 31.642162693791054, 58.005706391437414, 46.53735267106339, 22.922647770648283, 56.87341114093219, 80.63975304562473, 8.717061250637306, 6.052899150803193, 69.6590260900987, 10.658738219122359, 22.813370628747837, 93.33759659205417, 5.803890077414313, 48.27838372906953, 60.268713582348994, 17.990022442499498, 52.84059239191315, 31.270801064448037, 21.801436780965666, 52.815451228427136, 27.98608178557854, 116.073973780595, 10.077478974536275, 79.8016382303781, 17.246605739270287, 41.731939042386855, 55.61976832250942, 10.907761923458526, 81.83940270928714, 57.931012829004594, 39.779420111248925, 51.39715223757045, 78.4717706472036, 140.85630075585414, 10.243971887341951, 58.20020120941346, 13.135107352427775, 22.92729685184039, 6.105527166186602, 18.85439971737257, 29.172755424851967, 48.97353509677931, 12.644647628415292, 54.69646417303931, 52.781820275711546, 15.098605738002743, 5.957194090404376, 6.743050136603505, 27.800516269188194, 10.036552564875192, 58.243251157389636, 17.09615984459803, 28.98471856591917, 12.600303631167415, 88.65101947943086, 18.234296391240576, 9.99748356252506, 9.787577049281474, 55.984478006490434, 6.8722219895265315, 17.770978393370402, 38.68372386116976, 68.01071105467462, 14.872546468080321, 54.137372818324536, 10.470205429304091, 29.17026603834852, 35.520367745275024, 47.72381528810462, 77.41694335022028, 47.72852604358239, 12.827010037238686, 32.10026531349933, 6.357492499181385, 5.6851598567277835, 23.370741940459443, 8.667057257409313, 17.569098555927262, 30.563003489169798, 10.754067464279709, 82.9113502419649, 55.65067423348678, 24.905458624211256, 31.328637718085858, 34.329060741391416, 27.219933817239117, 21.091829823066305, 36.389664194273834, 18.07972058892011, 25.705889773930274, 61.529635252776195, 52.747741452465824, 51.12030677442969, 21.60193989919265, 27.86911899622678, 20.058236942495174, 44.78920948575915, 24.980192629394057, 24.084774914466472, 17.635506870644686, 6.66992725171353, 77.5047182058382, 45.11603831616904, 48.368529178375006, 96.80186377032352, 8.914752760253794, 63.75543507183354, 5.032086423471012, 51.11036430794377, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)