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 = 44342
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)
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);
([4441631.25, 4448610.9375, 4452560.9375, 4459182.8125, 4595587.5, 4602615.625, 4649554.6875, 4727467.1875, 4793884.375, 4831679.6875, 4832271.875, 4836543.75, 4836668.75, 4865025.0, 4865079.6875, 4873425.0, 4880982.8125, 4888225.0, 4980528.125, 5011695.3125, 5042310.9375, 5050426.5625, 5056646.875, 5063201.5625, 5072839.0625, 5076514.0625, 5096989.0625, 5101601.5625, 5119067.1875, 5119282.8125, 5124632.8125, 5150264.0625, 5153337.5, 5183560.9375, 5194603.125, 5212325.0, 5249745.3125, 5258514.0625, 5274687.5, 5275534.375, 5285373.4375, 5286435.9375, 5292210.9375, 5293535.9375, 5299976.5625, 5341176.5625, 5345346.875, 5350726.5625, 5354593.75, 5356785.9375, 5357685.9375, 5358159.375, 5359548.4375, 5360367.1875, 5363710.9375, 5388664.0625, 5397543.75, 5398503.125, 5398503.125, 5398512.5, 5405934.375, 5419160.9375, 5422032.8125, 5432603.125, 5437962.5, 5478117.1875, 5494457.8125, 5520732.8125, 5530235.9375, 5542489.0625, 5571610.9375, 5637382.8125, 5650742.1875, 5738835.9375, 5800682.8125, 5800696.875, 5883189.0625, 6433092.1875, 6674176.5625, 6786025.0, 6790623.4375, 6792378.125, 6967729.6875, 6994865.625, 7014546.875, 7016345.3125, 7018643.75, 7020578.125, 7021537.5, 7021857.8125, 7022496.875, 7022534.375, 7023501.5625, 7027989.0625, 7028150.0, 7028387.5, 7029148.4375, 7030167.1875, 7031079.6875, 7048909.375, 7058618.75, 7073723.4375, 7076278.125, 7078434.375, 7085017.1875, 7098312.5, 7112829.6875, 7117028.125, 7129809.375, 7141415.625, 7141415.625, 7141801.5625, 7145159.375, 7146603.125, 7147510.9375, 7147515.625, 7147575.0, 7148335.9375, 7148360.9375, 7149112.5, 7149446.875, 7149584.375, 7150003.125, 7150496.875, 7150884.375, 7151165.625, 7151385.9375, 7151432.8125, 7151679.6875, 7152017.1875, 7152170.3125, 7153154.6875, 7181076.5625, 7187985.9375, 7188496.875, 7189440.625, 7189445.3125, 7189481.25, 7189693.75, 7189909.375, 7189917.1875, 7190185.9375, 7190475.0, 7190496.875, 7190696.875, 7190767.1875, 7190878.125, 7190956.25, 7191003.125, 7191028.125, 7191107.8125, 7191312.5, 7191325.0, 7191489.0625, 7191550.0, 7191946.875, 7192251.5625, 7192398.4375, 7193739.0625, 7194865.625, 7194926.5625, 7194932.8125, 7195126.5625, 7195528.125, 7195704.6875, 7195707.8125, 7196668.75, 7197417.1875, 7197464.0625, 7200478.125, 7202718.75, 7206376.5625, 7207293.75, 7207893.75, 7207914.0625, 7208232.8125, 7243435.9375, 7244935.9375, 7256445.3125, 7272946.875, 7273073.4375, 7280265.625, 7280340.625, 7280450.0, 7281075.0, 7300707.8125, 7302432.8125, 7303225.0, 7304685.9375, 7305710.9375, 7306017.1875, 7306712.5, 7309221.875, 7310832.8125, 7312540.625, 7312582.8125, 7312676.5625, 7313170.3125, 7313445.3125, 7315223.4375, 7315229.6875, 7320043.75, 7320709.375, 7320881.25, 7322756.25, 7326042.1875, 7327034.375, 7342065.625, 7344659.375, 7347032.8125, 7348087.5, 7348140.625, 7348187.5, 7348262.5, 7349100.0, 7349492.1875, 7349839.0625, 7350118.75, 7350671.875, 7350798.4375, 7351712.5, 7353050.0, 7353218.75, 7353468.75, 7356831.25, 7357201.5625, 7357576.5625, 7369131.25, 7369898.4375, 7376323.4375, 7379873.4375, 7385478.125, 7387876.5625, 7392621.875, 7395023.4375, 7396451.5625, 7405062.5, 7410206.25, 7414118.75, 7415295.3125, 7417773.4375, 7422421.875, 7425334.375, 7427240.625, 7427618.75, 7430048.4375, 7432014.0625, 7440537.5, 7443117.1875, 7443131.25, 7450942.1875, 7452903.125, 7453273.4375, 7453610.9375, 7453843.75, 7454245.3125, 7454278.125, 7455893.75, 7456234.375, 7456882.8125, 7461893.75, 7467632.8125, 7468042.1875, 7471120.3125, 7471182.8125, 7472476.5625, 7480132.8125, 7488593.75, 7489446.875, 7490989.0625, 7492371.875, 7499265.625, 7499579.6875, 7500289.0625, 7500312.5, 7501693.75, 7502903.125, 7511853.125, 7517271.875, 7519473.4375, 7519509.375, 7530159.375, 7533125.0, 7538776.5625, 7541300.0, 7542406.25, 7542943.75, 7544084.375, 7545156.25, 7546140.625, 7546165.625, 7546395.3125, 7547176.5625, 7548145.3125, 7549073.4375, 7549348.4375, 7550207.8125, 7550420.3125, 7551001.5625, 7551182.8125, 7551193.75, 7551509.375, 7551773.4375, 7552568.75, 7552668.75, 7552803.125, 7553023.4375, 7553429.6875, 7555201.5625, 7558864.0625, 7562293.75, 7562295.3125, 7562295.3125, 7562562.5, 7562967.1875, 7563848.4375, 7567710.9375, 7568857.8125, 7569593.75, 7571996.875, 7573454.6875, 7579398.4375, 7579970.3125, 7580325.0, 7582034.375, 7583731.25, 7584593.75, 7585445.3125, 7586989.0625, 7587323.4375, 7589129.6875, 7591062.5, 7592060.9375, 7596696.875, 7601934.375, 7605303.125, 7605348.4375, 7607006.25, 7608339.0625, 7611029.6875, 7611060.9375, 7611635.9375, 7611671.875, 7611723.4375, 7616773.4375, 7616887.5, 7617612.5, 7618125.0, 7621582.8125, 7621889.0625, 7622253.125, 7622314.0625, 7627193.75, 7628665.625, 7629042.1875, 7630378.125, 7631040.625, 7631612.5, 7631701.5625, 7632450.0, 7632754.6875, 7633759.375, 7634018.75, 7634028.125, 7635454.6875, 7637626.5625, 7638362.5, 7638660.9375, 7640206.25, 7641306.25, 7641431.25, 7642253.125, 7643295.3125, 7644084.375, 7644225.0, 7644379.6875, 7646021.875, 7647757.8125, 7648503.125, 7648740.625, 7654254.6875, 7664754.6875, 7667542.1875, 7670196.875, 7674556.25, 7675956.25, 7675964.0625, 7677004.6875, 7677587.5, 7679443.75, 7679445.3125, 7680318.75, 7680585.9375, 7681259.375, 7681481.25, 7683764.0625, 7686184.375, 7687818.75, 7688290.625, 7688839.0625, 7689229.6875, 7691629.6875, 7692326.5625, 7694090.625, 7697176.5625, 7699135.9375, 7700564.0625, 7702682.8125, 7703387.5, 7704306.25, 7707120.3125, 7711843.75, 7712243.75, 7713887.5, 7719020.3125, 7723943.75, 7733123.4375, 7737771.875, 7738079.6875, 7740273.4375, 7740732.8125, 7743429.6875, 7743595.3125, 7743750.0, 7743868.75, 7744357.8125, 7745312.5, 7745570.3125, 7745676.5625, 7745681.25, 7745987.5, 7746135.9375, 7746212.5, 7746840.625, 7747139.0625, 7749506.25, 7750092.1875, 7750245.3125, 7751062.5, 7751281.25, 7751834.375, 7752028.125, 7752095.3125, 7752456.25, 7752614.0625, 7752617.1875, 7756929.6875, 7758600.0, 7758664.0625, 7760814.0625, 7762750.0, 7763465.625, 7764570.3125, 7764784.375, 7765800.0, 7766614.0625, 7770851.5625, 7770937.5, 7776471.875, 7778414.0625, 7779943.75, 7786201.5625, 7786214.0625, 7794335.9375, 7798085.9375, 7803559.375, 7810403.125, 7810887.5, 7810904.6875, 7810971.875, 7814503.125, 7817287.5, 7825195.3125, 7825892.1875, 7825953.125, 7830559.375, 7832937.5, 7833892.1875, 7834543.75, 7836414.0625, 7850303.125, 7850473.4375, 7850787.5, 7851906.25, 7853571.875, 7854682.8125, 7858187.5, 7858201.5625, 7863884.375, 7865162.5, 7865514.0625, 7871950.0, 7872878.125, 7872929.6875, 7876287.5, 7877037.5, 7877381.25, 7877504.6875, 7883117.1875, 7887040.625, 7903717.1875, 7906053.125, 7910728.125, 7911046.875, 7911898.4375, 7914492.1875, 7915014.0625, 7915870.3125, 7920970.3125, 7922578.125, 7922971.875, 7928501.5625, 7930646.875, 7932950.0, 7934014.0625, 7935460.9375, 7936617.1875, 7937342.1875, 7937360.9375, 7938507.8125, 7938531.25, 7941229.6875, 7945793.75, 7946689.0625, 7949110.9375, 7953190.625, 7953642.1875, 7953767.1875, 7954301.5625, 7955970.3125, 7958260.9375, 7962734.375, 7966235.9375, 7966428.125, 7966801.5625, 7973693.75, 7976023.4375, 7978068.75, 7978153.125, 7978173.4375, 7979400.0, 7980560.9375, 7984409.375, 7985118.75, 7985353.125, 7988237.5, 7989028.125, 7990085.9375, 7993787.5, 7994168.75, 7996992.1875, 7998573.4375, 7999859.375, 7999868.75, 8000914.0625, 8002684.375, 8005010.9375, 8005123.4375, 8005493.75, 8005975.0, 8005992.1875, 8006984.375, 8008765.625, 8008801.5625, 8011854.6875, 8012301.5625, 8018718.75, 8022078.125, 8023054.6875, 8023076.5625, 8026354.6875, 8029231.25, 8037317.1875, 8039698.4375, 8039795.3125, 8040768.75, 8044276.5625, 8047295.3125, 8047667.1875, 8048921.875, 8049950.0, 8050039.0625, 8050118.75, 8051640.625, 8051878.125, 8053528.125, 8054637.5, 8055459.375, 8055653.125, 8055657.8125, 8056723.4375, 8058053.125, 8058503.125, 8059507.8125, 8062956.25, 8066146.875, 8080320.3125, 8080490.625, 8080562.5, 8081475.0, 8081981.25, 8081989.0625, 8082312.5, 8082806.25, 8083070.3125, 8083393.75, 8083850.0, 8084129.6875, 8084393.75, 8084487.5, 8086615.625, 8086790.625, 8086848.4375, 8087818.75, 8087862.5, 8090165.625, 8093148.4375, 8095246.875, 8100082.8125, 8102912.5, 8107940.625, 8108889.0625, 8109806.25, 8120803.125, 8121314.0625, 8121331.25, 8124282.8125, 8125928.125, 8134250.0, 8135168.75, 8135740.625, 8136103.125, 8136543.75, 8138517.1875, 8138785.9375, 8139021.875, 8139475.0, 8140778.125, 8141034.375, 8141215.625, 8142070.3125, 8142600.0, 8142601.5625, 8144171.875, 8144534.375, 8146046.875, 8146789.0625, 8148446.875, 8152803.125, 8153693.75, 8155718.75, 8156270.3125, 8156954.6875, 8157015.625, 8157753.125, 8158106.25, 8158142.1875, 8158370.3125, 8158532.8125, 8158564.0625, 8158715.625, 8158895.3125, 8159051.5625, 8159112.5, 8159148.4375, 8159175.0, 8159643.75, 8159657.8125, 8159712.5, 8159750.0, 8160059.375, 8160107.8125, 8160154.6875, 8160609.375, 8160923.4375, 8161026.5625, 8161465.625, 8161632.8125, 8161751.5625, 8161848.4375, 8161975.0, 8162010.9375, 8162120.3125, 8162843.75, 8164378.125, 8166137.5, 8166807.8125, 8167198.4375, 8167264.0625, 8167425.0, 8168121.875, 8168315.625, 8168356.25, 8168656.25, 8169346.875, 8170526.5625, 8170859.375, 8171145.3125, 8173143.75, 8173679.6875, 8176629.6875, 8185343.75, 8189521.875, 8192309.375, 8198089.0625, 8198148.4375, 8198281.25, 8198529.6875, 8198810.9375, 8201109.375, 8204335.9375, 8204839.0625, 8205118.75, 8205662.5, 8205725.0, 8206106.25, 8206129.6875, 8211365.625, 8211906.25, 8213465.625, 8213521.875, 8223812.5, 8223814.0625, 8224512.5, 8224964.0625, 8225018.75, 8225121.875, 8226168.75, 8227456.25, 8227925.0, 8229443.75, 8230415.625, 8230462.5, 8230690.625, 8233042.1875, 8233431.25, 8234790.625, 8235487.5, 8236343.75, 8236376.5625, 8236565.625, 8237143.75, 8238659.375, 8238896.875, 8238926.5625, 8239129.6875, 8239500.0, 8240807.8125, 8241050.0, 8241103.125, 8241400.0, 8241714.0625, 8241868.75, 8243471.875, 8243540.625, 8243803.125, 8243839.0625, 8243892.1875, 8243971.875, 8244560.9375, 8245762.5, 8245776.5625, 8245914.0625, 8246067.1875, 8246078.125, 8246259.375, 8246723.4375, 8247007.8125, 8247346.875, 8247537.5, 8247835.9375, 8250165.625, 8250417.1875, 8250709.375, 8250832.8125, 8253543.75, 8253564.0625, 8253571.875, 8259487.5, 8259921.875, 8259982.8125, 8263226.5625, 8266673.4375, 8266725.0, 8266843.75, 8276335.9375, 8277757.8125, 8278426.5625, 8280528.125, 8285603.125, 8287090.625, 8287190.625, 8287262.5, 8287317.1875, 8293104.6875, 8295026.5625, 8306073.4375, 8306290.625, 8314039.0625, 8316517.1875, 8316787.5, 8317334.375, 8317362.5, 8317528.125, 8318670.3125, 8318982.8125, 8319115.625, 8320123.4375, 8322306.25, 8323581.25, 8324021.875, 8330532.8125, 8335514.0625, 8335528.125, 8335745.3125, 8339737.5, 8341050.0, 8344739.0625, 8345293.75, 8345301.5625, 8345631.25, 8346287.5, 8346718.75, 8346798.4375, 8352612.5, 8354703.125, 8355981.25, 8356059.375, 8356339.0625, 8357045.3125, 8359757.8125, 8367514.0625, 8371137.5, 8371259.375, 8373590.625, 8376150.0, 8379242.1875, 8380207.8125, 8380467.1875, 8381032.8125, 8381871.875, 8382034.375, 8382050.0, 8382267.1875, 8382607.8125, 8382865.625, 8382900.0, 8382956.25, 8382984.375, 8383565.625, 8383909.375, 8384032.8125, 8384226.5625, 8384501.5625, 8384723.4375, 8384756.25, 8385003.125, 8385135.9375, 8385410.9375, 8385584.375, 8385625.0, 8385717.1875, 8386707.8125, 8387062.5, 8387606.25, 8388025.0, 8388695.3125, 8388992.1875, 8389087.5, 8389528.125, 8389796.875, 8390654.6875, 8392103.125, 8392615.625, 8396195.3125, 8397245.3125, 8400412.5, 8400564.0625, 8401276.5625, 8403918.75, 8405293.75, 8406667.1875, 8407820.3125, 8408834.375, 8409725.0, 8410100.0, 8410151.5625, 8410243.75, 8410845.3125, 8410979.6875, 8411501.5625, 8411975.0, 8412325.0, 8412906.25, 8413042.1875, 8413281.25, 8413509.375, 8414829.6875, 8416343.75, 8418406.25, 8425367.1875, 8429273.4375, 8429479.6875, 8429504.6875, 8430920.3125, 8431142.1875, 8432420.3125, 8433250.0, 8433676.5625, 8434579.6875, 8435223.4375, 8435382.8125, 8435717.1875, 8438595.3125, 8438760.9375, 8439935.9375, 8440395.3125, 8440890.625, 8441101.5625, 8442912.5, 8442942.1875, 8444221.875, 8447150.0, 8448464.0625, 8448528.125, 8453568.75, 8455751.5625, 8456128.125, 8457100.0, 8458587.5, 8459725.0, 8468670.3125, 8472575.0, 8474960.9375, 8475396.875, 8478956.25, 8481828.125, 8483026.5625, 8483917.1875, 8484843.75, 8485576.5625, 8485653.125, 8485889.0625, 8485932.8125, 8485940.625, 8487120.3125, 8487375.0, 8487856.25, 8488114.0625, 8488115.625, 8488142.1875, 8488696.875, 8489153.125, 8490232.8125, 8490820.3125, 8491060.9375, 8492690.625, 8499992.1875, 8500512.5, 8500554.6875, 8513798.4375, 8517606.25, 8517914.0625, 8518145.3125, 8518471.875, 8536604.6875, 8538415.625, 8538740.625, 8539193.75, 8539467.1875, 8539484.375, 8539728.125, 8539979.6875, 8540643.75, 8541507.8125, 8542417.1875, 8543182.8125, 8550632.8125, 8552257.8125, 8556751.5625, 8556965.625, 8556967.1875, 8557014.0625, 8557175.0, 8564934.375, 8566990.625, 8567001.5625, 8567357.8125, 8567853.125, 8568282.8125, 8569907.8125, 8571065.625, 8571279.6875, 8571331.25, 8571701.5625, 8575309.375, 8577542.1875, 8578467.1875, 8582485.9375, 8582492.1875, ...], [63.3067210705951, 12.277635456397201, 6.7919253861229825, 60.91360652588196, 19.15534829415278, 75.02722117709058, 24.319428340329587, 5.2763348222139586, 36.05361154638454, 23.94139015379602, 96.72592474147054, 12.30639185095993, 79.97151853509365, 78.63085561541607, 5.15555159098011, 24.068194332617956, 17.344301621096513, 62.222465015435205, 22.021495781831923, 8.39385496867488, 107.8703982572567, 8.286427264570609, 5.2290097419875305, 17.903315007644704, 41.26209478590454, 83.03361413462562, 7.653315559682112, 19.063808820953014, 35.619220246731764, 75.36026021191232, 5.780248860576396, 30.33335401419433, 55.07386020528905, 23.869818241423147, 21.91124199218889, 18.07886457298006, 69.73261089132343, 9.572749388373056, 71.68730477266037, 49.381153804831754, 12.81417959397707, 12.936904904379873, 18.9351097387581, 27.192732537740138, 8.64442612417909, 76.3104287605151, 5.901933598328168, 5.624180895700564, 23.406364034373524, 31.358865840662208, 52.859988032305, 43.47487326606661, 18.582810648388694, 16.287509047040015, 62.20976098424684, 31.742110021698156, 23.852482021779213, 19.739059488288284, 59.232637573293765, 43.887020313592686, 200.00608641566194, 50.80242493430099, 26.664356609544136, 17.059996183398304, 8.30749123245022, 10.462032998103531, 14.983557827818855, 22.06833338470265, 145.38811997090286, 31.834006134328725, 10.519927235658555, 99.2063865572601, 55.04953947417123, 25.933136733646997, 33.6875378637872, 78.1945177337421, 74.80685746315328, 44.64321935683591, 8.219794685843745, 14.498499134960378, 85.87132947257899, 34.904856962154234, 40.90416025012634, 146.10639958323634, 70.3517139243224, 40.031977365846515, 27.72830877038064, 18.42303005797691, 9.577888944283455, 69.33560676760922, 27.33973697861462, 24.10487617849803, 72.94445016861181, 66.51251630992296, 7.061758587782607, 89.15542745534796, 40.32119910407605, 54.22510942963209, 108.97791190484415, 19.529718227803293, 89.51210019195182, 57.445003871148366, 100.77353150364634, 146.61498246970996, 64.99542718225968, 154.29510415601422, 18.30952222383257, 9.78416475230215, 29.546450653955127, 21.355732207374672, 76.77783331678955, 23.352998349865373, 60.44531469408467, 5.440077869290414, 22.884079135035034, 27.980255212884682, 5.239381211645927, 74.12227849006729, 57.63251296971771, 174.3028516147148, 7.597016735468375, 11.242567034524725, 104.10563631023626, 38.76321733695028, 45.6027664665267, 67.40148801554605, 9.167660170755394, 13.919237711896457, 11.822048305157082, 94.60510355591269, 68.16613466176956, 20.189464630993747, 23.81402490721827, 89.17751530542627, 49.28536879967935, 8.926386301748673, 6.014298469396055, 22.09760778588493, 78.39676851360065, 113.82157996612281, 6.99114038596807, 45.73440997759056, 18.75883549082836, 5.9799314913260435, 88.09133528219972, 18.032925723984842, 51.033514259538755, 203.75883566102604, 7.541823091657745, 18.057642080729583, 17.932256059411415, 33.034485589021145, 11.127248691938057, 25.163019115302458, 5.392001180650475, 10.35741279157816, 34.17658900263178, 35.06454150259202, 24.44245764610078, 38.51969436048934, 5.2113634437570715, 51.29922436419415, 17.75236349497464, 17.1968195136057, 24.8714975632091, 31.007107582610946, 52.34317085175196, 73.00231172213567, 74.52320832678147, 29.106165157235463, 26.991184171351115, 21.151008775945137, 6.327070032361717, 32.050813096975936, 10.242855438995376, 19.69465233699812, 15.214428213210395, 18.896877029784847, 11.675905757218391, 14.7110021398206, 5.476825234261335, 95.6452005213436, 65.21721988778077, 5.48008245096049, 105.06709879748385, 65.6867692178249, 22.260512451009653, 36.83749097044309, 14.227416455054216, 6.144981676016661, 13.234749966255578, 129.91466723693642, 36.45068058237319, 46.493488548313316, 85.36611114716705, 34.663959931843806, 42.582416972689884, 37.21868167068623, 22.316097654753744, 20.151823142540664, 67.16305314004985, 18.22237365702793, 18.061162405427797, 37.12110735827412, 25.07829321449895, 130.37830390659488, 26.76621978077766, 70.06320501282644, 151.19768190231275, 26.133883865977896, 15.818172037843707, 33.54812651002076, 34.52726011135918, 5.10087620550814, 279.90616417092303, 38.35410467788293, 11.725977627761223, 5.686467522778309, 14.820190768600892, 21.20139700748574, 11.479165196827621, 27.985890240720526, 15.13821890392399, 7.320350535186755, 34.89102668263731, 105.56223740898076, 25.232937275045877, 53.92870281726362, 125.87897955757956, 21.27579052979051, 19.500826530792768, 148.70553269242063, 16.906568845439633, 113.27500105006425, 10.37352381617002, 6.252409589207865, 31.82554164179894, 69.55156760631085, 121.9538158724548, 19.798390492005034, 59.20546259531308, 13.79774308162048, 21.605178942956233, 44.62020749930579, 28.584178339872217, 32.81123223444026, 9.076679224238028, 16.634249838722997, 95.99944058398047, 49.29246394221269, 112.15990062528978, 139.38516324347333, 107.94458176846766, 23.45557199138679, 47.33258270820525, 6.672826050545924, 16.389016871747142, 27.30005776248723, 17.095298455809683, 78.40607842836698, 12.483903169313344, 24.769962043816804, 48.91664376263723, 15.752352307223497, 5.141113270046565, 73.97475270538423, 14.978327491226539, 77.50804717311195, 37.01667300089559, 27.166206404705573, 5.972244425269864, 34.86083033316656, 93.41357396957257, 18.986678236037196, 80.48753829556424, 32.16302087883143, 21.716818320865094, 29.177915055056094, 41.71627818010279, 24.11607621983697, 15.822655617845722, 44.429034411609415, 13.16529168728201, 20.99613991422761, 18.51405058806465, 64.84244866672204, 46.687821166279946, 102.2063425121743, 23.249845375100623, 22.037312112266825, 55.469285991403964, 39.81439519102746, 51.227720255006254, 108.42254315090624, 32.11434465425948, 22.800621398242043, 68.29362852537146, 26.272329569806743, 12.925896941568244, 25.033856339489223, 10.57327753935039, 24.029238114228885, 61.504628459929364, 43.108771657283896, 70.89614325653214, 114.93463147843397, 32.52931654581742, 87.98592837310807, 27.403093355668545, 29.1300026837744, 31.999001731528274, 13.102087648593367, 15.860613990179424, 35.47702671585314, 74.62768139708874, 28.460683455884503, 24.184834842334467, 12.756008546769417, 11.917010023564584, 21.055310741519325, 34.09485634034167, 52.411634666016425, 36.28249733059275, 49.15919641514186, 10.527869954499739, 8.003446848065375, 29.80014924003669, 5.499624663075436, 73.1697722123923, 29.304138147171194, 36.3076024258747, 9.058646700840699, 145.75861700339593, 16.15920688181549, 27.326927695219265, 35.11725673990415, 5.656085588643664, 77.81894939998412, 11.50060183501323, 30.820563071575762, 248.15045788807132, 39.547219119950476, 94.28547420796403, 5.243298511153299, 26.539268293821955, 69.43822324773836, 54.068279209845976, 6.738605953774197, 19.502421049990474, 28.502034235672184, 12.450291876916538, 40.26061953761467, 150.0085220034912, 18.488289344789077, 6.705366988928226, 87.92455546478676, 61.00137599376573, 51.157247604013655, 333.160079862209, 6.038817475617991, 157.9509899145752, 35.03927719265051, 15.51438441971649, 17.019506134742503, 6.565406069380225, 26.903139426472382, 55.977752014300805, 161.33158333111484, 11.449180356645778, 18.244356317764527, 38.743240340699316, 10.429279794417214, 36.541987547907496, 7.647164874498982, 17.158636165915997, 13.81409892106804, 8.926157388098785, 199.4263944000832, 20.325604611464396, 13.64969365270866, 14.09124691533521, 148.6351975332769, 41.395583967230536, 43.70495967157474, 42.44668891385001, 15.419172832988282, 47.03136048387327, 155.5529755594108, 48.19735941675631, 35.18653586539298, 16.46882273490781, 28.13553596939012, 47.139349492378486, 52.38394726006926, 114.24051987457413, 60.65205455146552, 7.851113283183761, 9.230840121202636, 38.40771354906405, 64.68995824028883, 40.48599652092055, 28.42963845483475, 70.04707615731141, 78.6695977718332, 23.419518928154265, 26.640091846807746, 24.650603857218847, 53.70656684269738, 57.904816535314666, 50.002188399361216, 240.96358600778905, 66.1948265678132, 71.83424870591232, 139.42396080466972, 76.31279921288571, 16.360928105861035, 53.57213214623078, 40.43708316958364, 23.470506350634537, 34.39358511182418, 27.458428083215704, 51.509910111982386, 109.71633738300756, 11.350260042782311, 14.521186222104046, 96.61571147659795, 71.09344804056038, 50.679607525442606, 32.884794913042654, 37.05183345950687, 98.94263931466585, 31.431362687268134, 64.24327283075444, 35.73998576162289, 13.66061441497124, 80.49499469906652, 65.86574868808589, 37.20998023975153, 23.35980556419389, 26.965733118886483, 11.987078167692127, 6.1346731260370735, 57.15737466250975, 12.233010132723361, 228.87213452295612, 15.772697068791844, 91.4752501738992, 22.629844027436175, 5.153645771245259, 21.009580486286488, 58.074481203945176, 22.323304496367548, 5.037527119941137, 35.695094082661484, 10.458097184762956, 65.42931271938326, 7.419790394964418, 5.5253923407295, 8.694755668047053, 109.50899780523955, 30.216939848991878, 26.44109690909653, 91.63064795511367, 110.16173376198289, 28.885814781911918, 6.717305258063345, 48.621008856580175, 25.575700356714535, 103.00965040352149, 6.446306287426157, 69.82020697583008, 123.31260533108983, 123.53778676175332, 87.39907459037852, 95.36160906823534, 37.943657127763174, 281.02480361925564, 272.9026931392034, 159.26622830336373, 59.52860823974967, 24.338405355337496, 70.26550051133681, 147.66064695865592, 31.906180029032484, 58.72226222142232, 6.181436313075751, 58.58282486416636, 93.55838571162882, 42.699597871981155, 10.35727206627958, 38.15565455740591, 56.6040002829805, 81.3134064909413, 5.493173899111685, 20.383838762924164, 57.98699405263042, 7.569570057021596, 11.064702701065565, 7.125641494335571, 50.21615338327135, 5.478379959061476, 110.50333807420013, 43.19933025657251, 39.92016844719703, 57.47292774942031, 120.48105560386028, 77.34545010690172, 79.77253095384687, 106.59188937901544, 13.60125993869844, 17.563836995308787, 78.76628820085598, 36.15806902324667, 82.69072734401243, 240.592334752947, 32.593026437179425, 11.392965755491266, 46.45382847620661, 15.369518232647259, 55.13027466402256, 106.72038992159987, 58.53914931827756, 69.95693978090318, 18.431235359474215, 97.43267740196066, 120.66392661501857, 30.26653421186807, 6.897726085805314, 20.081260497868474, 62.9269098343339, 39.68348056442828, 39.89190952364721, 50.8031601296161, 29.00453492146473, 184.03512416468286, 54.638266143197875, 55.838997684144665, 64.82526244797673, 149.90749734629682, 13.644425596591327, 52.5082115611486, 21.635074806078393, 14.737252696173735, 54.44723488927849, 45.01355128747243, 8.82830408727395, 102.5175476185393, 20.949584203983335, 12.696269324853247, 11.396905928324768, 6.928211769797076, 16.49670097969004, 13.558997549980191, 8.38952523699236, 7.577796302568668, 18.51959785606064, 93.61088566884261, 9.68206574699261, 17.8919355808051, 82.80547850697036, 16.386376288318573, 28.939314790958797, 20.856912875352158, 12.756936376533448, 69.54686679755557, 30.361546258134805, 19.65862909387453, 79.71578396961601, 81.40591502895225, 11.94508126878921, 42.66668145889373, 26.511230615763992, 25.346292708444288, 85.38044884017096, 9.207511169609282, 106.33746568829515, 12.44290305300056, 86.82725550411729, 16.14667924163297, 14.142994686344386, 6.698407103264305, 53.53033705654359, 23.401291618943283, 66.63918765208922, 27.078817251165592, 38.46692367276563, 10.063569860490766, 198.04526361941657, 81.419775455816, 67.70935965407425, 39.26089299985946, 10.145765780892111, 88.95324888208187, 156.74787506135624, 14.108589936273967, 121.4395888375879, 86.81764747339241, 5.566811869532374, 5.082970755164693, 21.295292383870688, 21.032763200540497, 41.21609150467998, 184.06813767780207, 30.37653491172993, 19.29663160027438, 38.60846573117313, 29.364113271710075, 7.208442142159763, 78.9753060206409, 44.51040627494617, 31.573740158778076, 9.864236190611393, 5.365748678831288, 12.030606797802424, 39.04091064547103, 19.727717354151707, 26.141085713910535, 19.21458126487206, 77.77645417594124, 59.25292612236522, 22.258038296203335, 48.630223083071165, 66.57595026894627, 46.32811512577232, 54.004619861184345, 13.391475522179137, 29.937892823197437, 7.369592683056691, 65.1060236981139, 103.75532514912561, 122.96119616329538, 59.65229294250579, 24.880339957214087, 68.86621333219561, 5.969331580469054, 51.98577672748674, 138.02334623805405, 21.544222594228128, 52.38663270974142, 27.19581234452489, 49.96226297388533, 79.4025212400273, 45.398311413157224, 27.662660014852612, 36.69602906294912, 16.07801054733686, 28.980517299613275, 57.092660142580165, 81.27908804161426, 23.667318989165757, 28.68077535754326, 73.91251133629794, 17.994186899500882, 50.251437450435695, 19.060104093813763, 40.25598172493655, 21.996191138162782, 11.360911614605797, 57.6728693015184, 14.42820623474622, 19.613145193449892, 142.37612873115185, 51.80720247295513, 66.56768796540648, 18.502794063828183, 16.121515495931856, 24.593395450766472, 87.9340195050008, 5.255343769543058, 67.52828002468604, 5.207194151374256, 21.680042334053695, 19.184104298053562, 42.341105640719846, 10.437171525320675, 26.773226349022217, 35.075142410012575, 11.433832567168949, 53.00788207769417, 13.820175540234835, 30.64954845458056, 7.357871646312281, 10.605731620180597, 5.290982907937716, 8.46029097756291, 85.52934620782392, 43.939587230388646, 105.99141152682031, 5.221476571614128, 47.64329944975389, 149.16558425792226, 69.97887302181286, 37.35535143112644, 75.61358553639276, 6.437927289187637, 18.63021446835274, 80.5207594503157, 20.133934614514313, 10.139846048004454, 66.24912948597776, 120.32028977665144, 6.387916942077359, 17.61369708623006, 9.622169552658004, 25.7074778304142, 33.8212503494571, 111.5813900515468, 21.670025809009115, 24.018335788520282, 36.06469838259656, 14.47096607935273, 113.16426387706335, 13.028055098906153, 32.902014661946694, 5.107062380432742, 23.259953161137403, 12.438053435023082, 35.20995849785271, 65.40422208839871, 17.3970203457293, 5.390167808738427, 28.57183518957457, 67.14399475841431, 5.523491766685123, 29.583123469340613, 29.6149962732647, 67.1529687902571, 32.16280774925764, 5.840898017351034, 50.856334266633965, 8.901769695248314, 59.84649482979935, 238.88137889552038, 11.245540752707578, 13.177424181138612, 26.573298684429904, 156.59801018712807, 63.95213339853251, 105.5306398439012, 77.23349033642486, 52.338082432886935, 19.96326668899718, 59.17027292165025, 19.031356646075153, 13.326902556033035, 7.330866157700316, 62.854964607279335, 65.68882917171892, 5.6961491428500315, 15.242111268259332, 59.81045909825528, 11.429274497203131, 7.474988882090152, 7.473156512040544, 14.439214647218277, 48.82338860638711, 64.07746124596551, 34.04430797723312, 130.5971838850591, 28.797651622820304, 18.632029826466145, 110.11718466681207, 85.45774375738088, 32.964917682320674, 10.101350407958837, 5.279417029373103, 99.1099028685166, 30.273754714609748, 9.592193575072946, 11.306326797499246, 12.45231064874012, 15.430001617708111, 11.616579053475984, 5.7973427694369715, 26.088780216724736, 92.27068306539492, 9.785846989312427, 44.39239065689844, 7.693570161382036, 31.84625776829435, 6.592745519691982, 47.62829435660561, 5.56710827768435, 8.300416762564684, 63.21865337406027, 88.56222528090663, 7.8885787741721645, 9.698992560078914, 129.12614730759458, 27.860198923762592, 50.908947582993164, 49.51941402621811, 5.307522621517744, 15.447592267004964, 22.097954832835065, 29.5901125027215, 18.83378817758292, 50.00181411006887, 9.487870570866692, 153.3618089451998, 40.74226003061296, 49.45623928250359, 23.991200159358566, 14.629819243955154, 45.70756074626691, 66.73533869549021, 41.86413872115393, 14.973357395391771, 126.6167581072934, 45.49853324463058, 53.46673247747688, 62.17209455217563, 44.109600653861605, 5.705209246433812, 34.80376718959453, 39.31807714425226, 10.63856379763177, 59.42219539541428, 14.46577911181455, 12.034739798272899, 70.38019472555816, 47.53185779043906, 14.934256076783084, 9.046857268249944, 129.11465048890287, 61.35176157077592, 61.976260277968954, 18.64038973160635, 5.692059797370926, 72.89906053347669, 11.162051375345444, 102.76452735482874, 25.51868756560377, 5.032820289920981, 39.70638628759573, 49.465634940579385, 14.327586167152278, 106.85346857723258, 13.303930392844466, 15.98140935922739, 73.74822408408218, 35.486972840258936, 38.734697277629046, 26.536636812360182, 70.30877723894662, 6.6762927242724635, 6.498356971520733, 23.299454060771126, 15.593206972261347, 11.471135490134207, 111.63454411443027, 82.08089121945906, 32.61805166015208, 29.467375354334912, 115.11331243467444, 17.751508267152122, 27.00600732675138, 112.62871657753001, 36.80859715493863, 56.53037499560078, 8.664210799625542, 22.862966254905448, 76.23010965989491, 21.53762811542854, 22.809876496963142, 136.96367243069173, 62.215226341484424, 10.372081892904125, 49.14765346983024, 13.605337446282757, 39.900675145123074, 74.98432311184665, 12.297568710445843, 12.300193696187021, 12.132588774014932, 14.24451816752138, 92.96791039965488, 81.557476585549, 22.91998260754276, 15.319310333614158, 9.358221395736159, 12.35554736237724, 26.305235792024444, 79.34422214065593, 32.94529188830723, 30.942258176426567, 5.280987138223854, 63.16068724074347, 146.26602835398333, 22.326303422871675, 152.13194286028104, 154.7013472719303, 11.900351388266479, 6.255284022037051, 50.35543981001016, 23.305312357218895, 57.137087827741915, 51.11505319669887, 8.040696120590475, 32.72731227854063, 33.110510261434044, 80.93757877629602, 100.18596066576508, 40.17550809703657, 9.76582345744629, 86.92272310405508, 98.10612076347388, 54.74016445037314, 30.9886803180259, 17.59112292793257, 123.43399649378124, 88.10803575438781, 5.63061443840166, 12.787352258653398, 101.32010471462762, 152.26429382265536, 16.794455019522044, 10.617335212808344, 50.188220465050584, 23.6399325028437, 43.5117130567979, 46.062990470150474, 5.065983368014685, 18.962248754074476, 7.508548285345253, 126.38504323295314, 76.15647286229488, 11.94906445818911, 79.35692845165848, 25.58590973103495, 34.36792618486202, 20.392906030226666, 92.11645398048958, 14.194780134744464, 113.69175107444444, 5.563920390669043, 272.6403374981239, 6.303764056232231, 145.5292900996991, 14.222432546979613, 17.364727457716103, 5.088780016242822, 81.87427871057437, 73.32277013434219, 96.7774339334591, 61.14338218241887, 23.230120279055335, 21.421023542072124, 54.71125639099067, 7.466975978357532, 9.950306752838776, 115.23161183486157, 9.494199505392881, 32.738484112141606, 18.27475088048793, 73.90876969308508, 20.245783903358273, 79.61659583908092, 70.39598865616627, 10.397444832492717, 92.58796421440404, 261.51175009220856, 48.77850765151972, 12.52353667205301, 19.930333497434358, 34.22036786517207, 89.20767568069843, 111.72383392571274, 52.562932177964356, 96.3939278277004, 48.248426839046665, 17.500662481824723, 31.911598372416204, 26.484348675513036, 42.760705352161914, 11.275159492725319, 254.0786577132718, 36.0836280887654, 34.40250552815873, 61.78474760291879, 10.922677370297611, 19.3729383035906, 5.626601303413272, 36.532628906955715, 46.74827530188212, 29.739695723506124, 48.43720871964159, 6.955682036375023, 145.7753823516297, 37.53036397893447, 23.509949994672773, 8.910978754794957, 13.673946887744242, 6.431189712102838, 5.873555875856751, 13.766748905444114, 163.15796797067296, 32.64532903175157, 64.86164230178329, 12.607072550910988, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4441631.25, 4448610.9375, 4452560.9375, 4459182.8125, 4595587.5, 4602615.625, 4649554.6875, 4727467.1875, 4793884.375, 4831679.6875, 4832271.875, 4836543.75, 4836668.75, 4865025.0, 4865079.6875, 4873425.0, 4880982.8125, 4888225.0, 4980528.125, 5011695.3125, 5042310.9375, 5050426.5625, 5056646.875, 5063201.5625, 5072839.0625, 5076514.0625, 5096989.0625, 5101601.5625, 5119067.1875, 5119282.8125, 5124632.8125, 5150264.0625, 5153337.5, 5183560.9375, 5194603.125, 5212325.0, 5249745.3125, 5258514.0625, 5274687.5, 5275534.375, 5285373.4375, 5286435.9375, 5292210.9375, 5293535.9375, 5299976.5625, 5341176.5625, 5345346.875, 5350726.5625, 5354593.75, 5356785.9375, 5357685.9375, 5358159.375, 5359548.4375, 5360367.1875, 5363710.9375, 5388664.0625, 5397543.75, 5398503.125, 5398503.125, 5398512.5, 5405934.375, 5419160.9375, 5422032.8125, 5432603.125, 5437962.5, 5478117.1875, 5494457.8125, 5520732.8125, 5530235.9375, 5542489.0625, 5571610.9375, 5637382.8125, 5650742.1875, 5738835.9375, 5800682.8125, 5800696.875, 5883189.0625, 6433092.1875, 6674176.5625, 6786025.0, 6790623.4375, 6792378.125, 6967729.6875, 6994865.625, 7014546.875, 7016345.3125, 7018643.75, 7020578.125, 7021537.5, 7021857.8125, 7022496.875, 7022534.375, 7023501.5625, 7027989.0625, 7028150.0, 7028387.5, 7029148.4375, 7030167.1875, 7031079.6875, 7048909.375, 7058618.75, 7073723.4375, 7076278.125, 7078434.375, 7085017.1875, 7098312.5, 7112829.6875, 7117028.125, 7129809.375, 7141415.625, 7141415.625, 7141801.5625, 7145159.375, 7146603.125, 7147510.9375, 7147515.625, 7147575.0, 7148335.9375, 7148360.9375, 7149112.5, 7149446.875, 7149584.375, 7150003.125, 7150496.875, 7150884.375, 7151165.625, 7151385.9375, 7151432.8125, 7151679.6875, 7152017.1875, 7152170.3125, 7153154.6875, 7181076.5625, 7187985.9375, 7188496.875, 7189440.625, 7189445.3125, 7189481.25, 7189693.75, 7189909.375, 7189917.1875, 7190185.9375, 7190475.0, 7190496.875, 7190696.875, 7190767.1875, 7190878.125, 7190956.25, 7191003.125, 7191028.125, 7191107.8125, 7191312.5, 7191325.0, 7191489.0625, 7191550.0, 7191946.875, 7192251.5625, 7192398.4375, 7193739.0625, 7194865.625, 7194926.5625, 7194932.8125, 7195126.5625, 7195528.125, 7195704.6875, 7195707.8125, 7196668.75, 7197417.1875, 7197464.0625, 7200478.125, 7202718.75, 7206376.5625, 7207293.75, 7207893.75, 7207914.0625, 7208232.8125, 7243435.9375, 7244935.9375, 7256445.3125, 7272946.875, 7273073.4375, 7280265.625, 7280340.625, 7280450.0, 7281075.0, 7300707.8125, 7302432.8125, 7303225.0, 7304685.9375, 7305710.9375, 7306017.1875, 7306712.5, 7309221.875, 7310832.8125, 7312540.625, 7312582.8125, 7312676.5625, 7313170.3125, 7313445.3125, 7315223.4375, 7315229.6875, 7320043.75, 7320709.375, 7320881.25, 7322756.25, 7326042.1875, 7327034.375, 7342065.625, 7344659.375, 7347032.8125, 7348087.5, 7348140.625, 7348187.5, 7348262.5, 7349100.0, 7349492.1875, 7349839.0625, 7350118.75, 7350671.875, 7350798.4375, 7351712.5, 7353050.0, 7353218.75, 7353468.75, 7356831.25, 7357201.5625, 7357576.5625, 7369131.25, 7369898.4375, 7376323.4375, 7379873.4375, 7385478.125, 7387876.5625, 7392621.875, 7395023.4375, 7396451.5625, 7405062.5, 7410206.25, 7414118.75, 7415295.3125, 7417773.4375, 7422421.875, 7425334.375, 7427240.625, 7427618.75, 7430048.4375, 7432014.0625, 7440537.5, 7443117.1875, 7443131.25, 7450942.1875, 7452903.125, 7453273.4375, 7453610.9375, 7453843.75, 7454245.3125, 7454278.125, 7455893.75, 7456234.375, 7456882.8125, 7461893.75, 7467632.8125, 7468042.1875, 7471120.3125, 7471182.8125, 7472476.5625, 7480132.8125, 7488593.75, 7489446.875, 7490989.0625, 7492371.875, 7499265.625, 7499579.6875, 7500289.0625, 7500312.5, 7501693.75, 7502903.125, 7511853.125, 7517271.875, 7519473.4375, 7519509.375, 7530159.375, 7533125.0, 7538776.5625, 7541300.0, 7542406.25, 7542943.75, 7544084.375, 7545156.25, 7546140.625, 7546165.625, 7546395.3125, 7547176.5625, 7548145.3125, 7549073.4375, 7549348.4375, 7550207.8125, 7550420.3125, 7551001.5625, 7551182.8125, 7551193.75, 7551509.375, 7551773.4375, 7552568.75, 7552668.75, 7552803.125, 7553023.4375, 7553429.6875, 7555201.5625, 7558864.0625, 7562293.75, 7562295.3125, 7562295.3125, 7562562.5, 7562967.1875, 7563848.4375, 7567710.9375, 7568857.8125, 7569593.75, 7571996.875, 7573454.6875, 7579398.4375, 7579970.3125, 7580325.0, 7582034.375, 7583731.25, 7584593.75, 7585445.3125, 7586989.0625, 7587323.4375, 7589129.6875, 7591062.5, 7592060.9375, 7596696.875, 7601934.375, 7605303.125, 7605348.4375, 7607006.25, 7608339.0625, 7611029.6875, 7611060.9375, 7611635.9375, 7611671.875, 7611723.4375, 7616773.4375, 7616887.5, 7617612.5, 7618125.0, 7621582.8125, 7621889.0625, 7622253.125, 7622314.0625, 7627193.75, 7628665.625, 7629042.1875, 7630378.125, 7631040.625, 7631612.5, 7631701.5625, 7632450.0, 7632754.6875, 7633759.375, 7634018.75, 7634028.125, 7635454.6875, 7637626.5625, 7638362.5, 7638660.9375, 7640206.25, 7641306.25, 7641431.25, 7642253.125, 7643295.3125, 7644084.375, 7644225.0, 7644379.6875, 7646021.875, 7647757.8125, 7648503.125, 7648740.625, 7654254.6875, 7664754.6875, 7667542.1875, 7670196.875, 7674556.25, 7675956.25, 7675964.0625, 7677004.6875, 7677587.5, 7679443.75, 7679445.3125, 7680318.75, 7680585.9375, 7681259.375, 7681481.25, 7683764.0625, 7686184.375, 7687818.75, 7688290.625, 7688839.0625, 7689229.6875, 7691629.6875, 7692326.5625, 7694090.625, 7697176.5625, 7699135.9375, 7700564.0625, 7702682.8125, 7703387.5, 7704306.25, 7707120.3125, 7711843.75, 7712243.75, 7713887.5, 7719020.3125, 7723943.75, 7733123.4375, 7737771.875, 7738079.6875, 7740273.4375, 7740732.8125, 7743429.6875, 7743595.3125, 7743750.0, 7743868.75, 7744357.8125, 7745312.5, 7745570.3125, 7745676.5625, 7745681.25, 7745987.5, 7746135.9375, 7746212.5, 7746840.625, 7747139.0625, 7749506.25, 7750092.1875, 7750245.3125, 7751062.5, 7751281.25, 7751834.375, 7752028.125, 7752095.3125, 7752456.25, 7752614.0625, 7752617.1875, 7756929.6875, 7758600.0, 7758664.0625, 7760814.0625, 7762750.0, 7763465.625, 7764570.3125, 7764784.375, 7765800.0, 7766614.0625, 7770851.5625, 7770937.5, 7776471.875, 7778414.0625, 7779943.75, 7786201.5625, 7786214.0625, 7794335.9375, 7798085.9375, 7803559.375, 7810403.125, 7810887.5, 7810904.6875, 7810971.875, 7814503.125, 7817287.5, 7825195.3125, 7825892.1875, 7825953.125, 7830559.375, 7832937.5, 7833892.1875, 7834543.75, 7836414.0625, 7850303.125, 7850473.4375, 7850787.5, 7851906.25, 7853571.875, 7854682.8125, 7858187.5, 7858201.5625, 7863884.375, 7865162.5, 7865514.0625, 7871950.0, 7872878.125, 7872929.6875, 7876287.5, 7877037.5, 7877381.25, 7877504.6875, 7883117.1875, 7887040.625, 7903717.1875, 7906053.125, 7910728.125, 7911046.875, 7911898.4375, 7914492.1875, 7915014.0625, 7915870.3125, 7920970.3125, 7922578.125, 7922971.875, 7928501.5625, 7930646.875, 7932950.0, 7934014.0625, 7935460.9375, 7936617.1875, 7937342.1875, 7937360.9375, 7938507.8125, 7938531.25, 7941229.6875, 7945793.75, 7946689.0625, 7949110.9375, 7953190.625, 7953642.1875, 7953767.1875, 7954301.5625, 7955970.3125, 7958260.9375, 7962734.375, 7966235.9375, 7966428.125, 7966801.5625, 7973693.75, 7976023.4375, 7978068.75, 7978153.125, 7978173.4375, 7979400.0, 7980560.9375, 7984409.375, 7985118.75, 7985353.125, 7988237.5, 7989028.125, 7990085.9375, 7993787.5, 7994168.75, 7996992.1875, 7998573.4375, 7999859.375, 7999868.75, 8000914.0625, 8002684.375, 8005010.9375, 8005123.4375, 8005493.75, 8005975.0, 8005992.1875, 8006984.375, 8008765.625, 8008801.5625, 8011854.6875, 8012301.5625, 8018718.75, 8022078.125, 8023054.6875, 8023076.5625, 8026354.6875, 8029231.25, 8037317.1875, 8039698.4375, 8039795.3125, 8040768.75, 8044276.5625, 8047295.3125, 8047667.1875, 8048921.875, 8049950.0, 8050039.0625, 8050118.75, 8051640.625, 8051878.125, 8053528.125, 8054637.5, 8055459.375, 8055653.125, 8055657.8125, 8056723.4375, 8058053.125, 8058503.125, 8059507.8125, 8062956.25, 8066146.875, 8080320.3125, 8080490.625, 8080562.5, 8081475.0, 8081981.25, 8081989.0625, 8082312.5, 8082806.25, 8083070.3125, 8083393.75, 8083850.0, 8084129.6875, 8084393.75, 8084487.5, 8086615.625, 8086790.625, 8086848.4375, 8087818.75, 8087862.5, 8090165.625, 8093148.4375, 8095246.875, 8100082.8125, 8102912.5, 8107940.625, 8108889.0625, 8109806.25, 8120803.125, 8121314.0625, 8121331.25, 8124282.8125, 8125928.125, 8134250.0, 8135168.75, 8135740.625, 8136103.125, 8136543.75, 8138517.1875, 8138785.9375, 8139021.875, 8139475.0, 8140778.125, 8141034.375, 8141215.625, 8142070.3125, 8142600.0, 8142601.5625, 8144171.875, 8144534.375, 8146046.875, 8146789.0625, 8148446.875, 8152803.125, 8153693.75, 8155718.75, 8156270.3125, 8156954.6875, 8157015.625, 8157753.125, 8158106.25, 8158142.1875, 8158370.3125, 8158532.8125, 8158564.0625, 8158715.625, 8158895.3125, 8159051.5625, 8159112.5, 8159148.4375, 8159175.0, 8159643.75, 8159657.8125, 8159712.5, 8159750.0, 8160059.375, 8160107.8125, 8160154.6875, 8160609.375, 8160923.4375, 8161026.5625, 8161465.625, 8161632.8125, 8161751.5625, 8161848.4375, 8161975.0, 8162010.9375, 8162120.3125, 8162843.75, 8164378.125, 8166137.5, 8166807.8125, 8167198.4375, 8167264.0625, 8167425.0, 8168121.875, 8168315.625, 8168356.25, 8168656.25, 8169346.875, 8170526.5625, 8170859.375, 8171145.3125, 8173143.75, 8173679.6875, 8176629.6875, 8185343.75, 8189521.875, 8192309.375, 8198089.0625, 8198148.4375, 8198281.25, 8198529.6875, 8198810.9375, 8201109.375, 8204335.9375, 8204839.0625, 8205118.75, 8205662.5, 8205725.0, 8206106.25, 8206129.6875, 8211365.625, 8211906.25, 8213465.625, 8213521.875, 8223812.5, 8223814.0625, 8224512.5, 8224964.0625, 8225018.75, 8225121.875, 8226168.75, 8227456.25, 8227925.0, 8229443.75, 8230415.625, 8230462.5, 8230690.625, 8233042.1875, 8233431.25, 8234790.625, 8235487.5, 8236343.75, 8236376.5625, 8236565.625, 8237143.75, 8238659.375, 8238896.875, 8238926.5625, 8239129.6875, 8239500.0, 8240807.8125, 8241050.0, 8241103.125, 8241400.0, 8241714.0625, 8241868.75, 8243471.875, 8243540.625, 8243803.125, 8243839.0625, 8243892.1875, 8243971.875, 8244560.9375, 8245762.5, 8245776.5625, 8245914.0625, 8246067.1875, 8246078.125, 8246259.375, 8246723.4375, 8247007.8125, 8247346.875, 8247537.5, 8247835.9375, 8250165.625, 8250417.1875, 8250709.375, 8250832.8125, 8253543.75, 8253564.0625, 8253571.875, 8259487.5, 8259921.875, 8259982.8125, 8263226.5625, 8266673.4375, 8266725.0, 8266843.75, 8276335.9375, 8277757.8125, 8278426.5625, 8280528.125, 8285603.125, 8287090.625, 8287190.625, 8287262.5, 8287317.1875, 8293104.6875, 8295026.5625, 8306073.4375, 8306290.625, 8314039.0625, 8316517.1875, 8316787.5, 8317334.375, 8317362.5, 8317528.125, 8318670.3125, 8318982.8125, 8319115.625, 8320123.4375, 8322306.25, 8323581.25, 8324021.875, 8330532.8125, 8335514.0625, 8335528.125, 8335745.3125, 8339737.5, 8341050.0, 8344739.0625, 8345293.75, 8345301.5625, 8345631.25, 8346287.5, 8346718.75, 8346798.4375, 8352612.5, 8354703.125, 8355981.25, 8356059.375, 8356339.0625, 8357045.3125, 8359757.8125, 8367514.0625, 8371137.5, 8371259.375, 8373590.625, 8376150.0, 8379242.1875, 8380207.8125, 8380467.1875, 8381032.8125, 8381871.875, 8382034.375, 8382050.0, 8382267.1875, 8382607.8125, 8382865.625, 8382900.0, 8382956.25, 8382984.375, 8383565.625, 8383909.375, 8384032.8125, 8384226.5625, 8384501.5625, 8384723.4375, 8384756.25, 8385003.125, 8385135.9375, 8385410.9375, 8385584.375, 8385625.0, 8385717.1875, 8386707.8125, 8387062.5, 8387606.25, 8388025.0, 8388695.3125, 8388992.1875, 8389087.5, 8389528.125, 8389796.875, 8390654.6875, 8392103.125, 8392615.625, 8396195.3125, 8397245.3125, 8400412.5, 8400564.0625, 8401276.5625, 8403918.75, 8405293.75, 8406667.1875, 8407820.3125, 8408834.375, 8409725.0, 8410100.0, 8410151.5625, 8410243.75, 8410845.3125, 8410979.6875, 8411501.5625, 8411975.0, 8412325.0, 8412906.25, 8413042.1875, 8413281.25, 8413509.375, 8414829.6875, 8416343.75, 8418406.25, 8425367.1875, 8429273.4375, 8429479.6875, 8429504.6875, 8430920.3125, 8431142.1875, 8432420.3125, 8433250.0, 8433676.5625, 8434579.6875, 8435223.4375, 8435382.8125, 8435717.1875, 8438595.3125, 8438760.9375, 8439935.9375, 8440395.3125, 8440890.625, 8441101.5625, 8442912.5, 8442942.1875, 8444221.875, 8447150.0, 8448464.0625, 8448528.125, 8453568.75, 8455751.5625, 8456128.125, 8457100.0, 8458587.5, 8459725.0, 8468670.3125, 8472575.0, 8474960.9375, 8475396.875, 8478956.25, 8481828.125, 8483026.5625, 8483917.1875, 8484843.75, 8485576.5625, 8485653.125, 8485889.0625, 8485932.8125, 8485940.625, 8487120.3125, 8487375.0, 8487856.25, 8488114.0625, 8488115.625, 8488142.1875, 8488696.875, 8489153.125, 8490232.8125, 8490820.3125, 8491060.9375, 8492690.625, 8499992.1875, 8500512.5, 8500554.6875, 8513798.4375, 8517606.25, 8517914.0625, 8518145.3125, 8518471.875, 8536604.6875, 8538415.625, 8538740.625, 8539193.75, 8539467.1875, 8539484.375, 8539728.125, 8539979.6875, 8540643.75, 8541507.8125, 8542417.1875, 8543182.8125, 8550632.8125, 8552257.8125, 8556751.5625, 8556965.625, 8556967.1875, 8557014.0625, 8557175.0, 8564934.375, 8566990.625, 8567001.5625, 8567357.8125, 8567853.125, 8568282.8125, 8569907.8125, 8571065.625, 8571279.6875, 8571331.25, 8571701.5625, 8575309.375, 8577542.1875, 8578467.1875, 8582485.9375, 8582492.1875, ...], [63.3067210705951, 12.277635456397201, 6.7919253861229825, 60.91360652588196, 19.15534829415278, 75.02722117709058, 24.319428340329587, 5.2763348222139586, 36.05361154638454, 23.94139015379602, 96.72592474147054, 12.30639185095993, 79.97151853509365, 78.63085561541607, 5.15555159098011, 24.068194332617956, 17.344301621096513, 62.222465015435205, 22.021495781831923, 8.39385496867488, 107.8703982572567, 8.286427264570609, 5.2290097419875305, 17.903315007644704, 41.26209478590454, 83.03361413462562, 7.653315559682112, 19.063808820953014, 35.619220246731764, 75.36026021191232, 5.780248860576396, 30.33335401419433, 55.07386020528905, 23.869818241423147, 21.91124199218889, 18.07886457298006, 69.73261089132343, 9.572749388373056, 71.68730477266037, 49.381153804831754, 12.81417959397707, 12.936904904379873, 18.9351097387581, 27.192732537740138, 8.64442612417909, 76.3104287605151, 5.901933598328168, 5.624180895700564, 23.406364034373524, 31.358865840662208, 52.859988032305, 43.47487326606661, 18.582810648388694, 16.287509047040015, 62.20976098424684, 31.742110021698156, 23.852482021779213, 19.739059488288284, 59.232637573293765, 43.887020313592686, 200.00608641566194, 50.80242493430099, 26.664356609544136, 17.059996183398304, 8.30749123245022, 10.462032998103531, 14.983557827818855, 22.06833338470265, 145.38811997090286, 31.834006134328725, 10.519927235658555, 99.2063865572601, 55.04953947417123, 25.933136733646997, 33.6875378637872, 78.1945177337421, 74.80685746315328, 44.64321935683591, 8.219794685843745, 14.498499134960378, 85.87132947257899, 34.904856962154234, 40.90416025012634, 146.10639958323634, 70.3517139243224, 40.031977365846515, 27.72830877038064, 18.42303005797691, 9.577888944283455, 69.33560676760922, 27.33973697861462, 24.10487617849803, 72.94445016861181, 66.51251630992296, 7.061758587782607, 89.15542745534796, 40.32119910407605, 54.22510942963209, 108.97791190484415, 19.529718227803293, 89.51210019195182, 57.445003871148366, 100.77353150364634, 146.61498246970996, 64.99542718225968, 154.29510415601422, 18.30952222383257, 9.78416475230215, 29.546450653955127, 21.355732207374672, 76.77783331678955, 23.352998349865373, 60.44531469408467, 5.440077869290414, 22.884079135035034, 27.980255212884682, 5.239381211645927, 74.12227849006729, 57.63251296971771, 174.3028516147148, 7.597016735468375, 11.242567034524725, 104.10563631023626, 38.76321733695028, 45.6027664665267, 67.40148801554605, 9.167660170755394, 13.919237711896457, 11.822048305157082, 94.60510355591269, 68.16613466176956, 20.189464630993747, 23.81402490721827, 89.17751530542627, 49.28536879967935, 8.926386301748673, 6.014298469396055, 22.09760778588493, 78.39676851360065, 113.82157996612281, 6.99114038596807, 45.73440997759056, 18.75883549082836, 5.9799314913260435, 88.09133528219972, 18.032925723984842, 51.033514259538755, 203.75883566102604, 7.541823091657745, 18.057642080729583, 17.932256059411415, 33.034485589021145, 11.127248691938057, 25.163019115302458, 5.392001180650475, 10.35741279157816, 34.17658900263178, 35.06454150259202, 24.44245764610078, 38.51969436048934, 5.2113634437570715, 51.29922436419415, 17.75236349497464, 17.1968195136057, 24.8714975632091, 31.007107582610946, 52.34317085175196, 73.00231172213567, 74.52320832678147, 29.106165157235463, 26.991184171351115, 21.151008775945137, 6.327070032361717, 32.050813096975936, 10.242855438995376, 19.69465233699812, 15.214428213210395, 18.896877029784847, 11.675905757218391, 14.7110021398206, 5.476825234261335, 95.6452005213436, 65.21721988778077, 5.48008245096049, 105.06709879748385, 65.6867692178249, 22.260512451009653, 36.83749097044309, 14.227416455054216, 6.144981676016661, 13.234749966255578, 129.91466723693642, 36.45068058237319, 46.493488548313316, 85.36611114716705, 34.663959931843806, 42.582416972689884, 37.21868167068623, 22.316097654753744, 20.151823142540664, 67.16305314004985, 18.22237365702793, 18.061162405427797, 37.12110735827412, 25.07829321449895, 130.37830390659488, 26.76621978077766, 70.06320501282644, 151.19768190231275, 26.133883865977896, 15.818172037843707, 33.54812651002076, 34.52726011135918, 5.10087620550814, 279.90616417092303, 38.35410467788293, 11.725977627761223, 5.686467522778309, 14.820190768600892, 21.20139700748574, 11.479165196827621, 27.985890240720526, 15.13821890392399, 7.320350535186755, 34.89102668263731, 105.56223740898076, 25.232937275045877, 53.92870281726362, 125.87897955757956, 21.27579052979051, 19.500826530792768, 148.70553269242063, 16.906568845439633, 113.27500105006425, 10.37352381617002, 6.252409589207865, 31.82554164179894, 69.55156760631085, 121.9538158724548, 19.798390492005034, 59.20546259531308, 13.79774308162048, 21.605178942956233, 44.62020749930579, 28.584178339872217, 32.81123223444026, 9.076679224238028, 16.634249838722997, 95.99944058398047, 49.29246394221269, 112.15990062528978, 139.38516324347333, 107.94458176846766, 23.45557199138679, 47.33258270820525, 6.672826050545924, 16.389016871747142, 27.30005776248723, 17.095298455809683, 78.40607842836698, 12.483903169313344, 24.769962043816804, 48.91664376263723, 15.752352307223497, 5.141113270046565, 73.97475270538423, 14.978327491226539, 77.50804717311195, 37.01667300089559, 27.166206404705573, 5.972244425269864, 34.86083033316656, 93.41357396957257, 18.986678236037196, 80.48753829556424, 32.16302087883143, 21.716818320865094, 29.177915055056094, 41.71627818010279, 24.11607621983697, 15.822655617845722, 44.429034411609415, 13.16529168728201, 20.99613991422761, 18.51405058806465, 64.84244866672204, 46.687821166279946, 102.2063425121743, 23.249845375100623, 22.037312112266825, 55.469285991403964, 39.81439519102746, 51.227720255006254, 108.42254315090624, 32.11434465425948, 22.800621398242043, 68.29362852537146, 26.272329569806743, 12.925896941568244, 25.033856339489223, 10.57327753935039, 24.029238114228885, 61.504628459929364, 43.108771657283896, 70.89614325653214, 114.93463147843397, 32.52931654581742, 87.98592837310807, 27.403093355668545, 29.1300026837744, 31.999001731528274, 13.102087648593367, 15.860613990179424, 35.47702671585314, 74.62768139708874, 28.460683455884503, 24.184834842334467, 12.756008546769417, 11.917010023564584, 21.055310741519325, 34.09485634034167, 52.411634666016425, 36.28249733059275, 49.15919641514186, 10.527869954499739, 8.003446848065375, 29.80014924003669, 5.499624663075436, 73.1697722123923, 29.304138147171194, 36.3076024258747, 9.058646700840699, 145.75861700339593, 16.15920688181549, 27.326927695219265, 35.11725673990415, 5.656085588643664, 77.81894939998412, 11.50060183501323, 30.820563071575762, 248.15045788807132, 39.547219119950476, 94.28547420796403, 5.243298511153299, 26.539268293821955, 69.43822324773836, 54.068279209845976, 6.738605953774197, 19.502421049990474, 28.502034235672184, 12.450291876916538, 40.26061953761467, 150.0085220034912, 18.488289344789077, 6.705366988928226, 87.92455546478676, 61.00137599376573, 51.157247604013655, 333.160079862209, 6.038817475617991, 157.9509899145752, 35.03927719265051, 15.51438441971649, 17.019506134742503, 6.565406069380225, 26.903139426472382, 55.977752014300805, 161.33158333111484, 11.449180356645778, 18.244356317764527, 38.743240340699316, 10.429279794417214, 36.541987547907496, 7.647164874498982, 17.158636165915997, 13.81409892106804, 8.926157388098785, 199.4263944000832, 20.325604611464396, 13.64969365270866, 14.09124691533521, 148.6351975332769, 41.395583967230536, 43.70495967157474, 42.44668891385001, 15.419172832988282, 47.03136048387327, 155.5529755594108, 48.19735941675631, 35.18653586539298, 16.46882273490781, 28.13553596939012, 47.139349492378486, 52.38394726006926, 114.24051987457413, 60.65205455146552, 7.851113283183761, 9.230840121202636, 38.40771354906405, 64.68995824028883, 40.48599652092055, 28.42963845483475, 70.04707615731141, 78.6695977718332, 23.419518928154265, 26.640091846807746, 24.650603857218847, 53.70656684269738, 57.904816535314666, 50.002188399361216, 240.96358600778905, 66.1948265678132, 71.83424870591232, 139.42396080466972, 76.31279921288571, 16.360928105861035, 53.57213214623078, 40.43708316958364, 23.470506350634537, 34.39358511182418, 27.458428083215704, 51.509910111982386, 109.71633738300756, 11.350260042782311, 14.521186222104046, 96.61571147659795, 71.09344804056038, 50.679607525442606, 32.884794913042654, 37.05183345950687, 98.94263931466585, 31.431362687268134, 64.24327283075444, 35.73998576162289, 13.66061441497124, 80.49499469906652, 65.86574868808589, 37.20998023975153, 23.35980556419389, 26.965733118886483, 11.987078167692127, 6.1346731260370735, 57.15737466250975, 12.233010132723361, 228.87213452295612, 15.772697068791844, 91.4752501738992, 22.629844027436175, 5.153645771245259, 21.009580486286488, 58.074481203945176, 22.323304496367548, 5.037527119941137, 35.695094082661484, 10.458097184762956, 65.42931271938326, 7.419790394964418, 5.5253923407295, 8.694755668047053, 109.50899780523955, 30.216939848991878, 26.44109690909653, 91.63064795511367, 110.16173376198289, 28.885814781911918, 6.717305258063345, 48.621008856580175, 25.575700356714535, 103.00965040352149, 6.446306287426157, 69.82020697583008, 123.31260533108983, 123.53778676175332, 87.39907459037852, 95.36160906823534, 37.943657127763174, 281.02480361925564, 272.9026931392034, 159.26622830336373, 59.52860823974967, 24.338405355337496, 70.26550051133681, 147.66064695865592, 31.906180029032484, 58.72226222142232, 6.181436313075751, 58.58282486416636, 93.55838571162882, 42.699597871981155, 10.35727206627958, 38.15565455740591, 56.6040002829805, 81.3134064909413, 5.493173899111685, 20.383838762924164, 57.98699405263042, 7.569570057021596, 11.064702701065565, 7.125641494335571, 50.21615338327135, 5.478379959061476, 110.50333807420013, 43.19933025657251, 39.92016844719703, 57.47292774942031, 120.48105560386028, 77.34545010690172, 79.77253095384687, 106.59188937901544, 13.60125993869844, 17.563836995308787, 78.76628820085598, 36.15806902324667, 82.69072734401243, 240.592334752947, 32.593026437179425, 11.392965755491266, 46.45382847620661, 15.369518232647259, 55.13027466402256, 106.72038992159987, 58.53914931827756, 69.95693978090318, 18.431235359474215, 97.43267740196066, 120.66392661501857, 30.26653421186807, 6.897726085805314, 20.081260497868474, 62.9269098343339, 39.68348056442828, 39.89190952364721, 50.8031601296161, 29.00453492146473, 184.03512416468286, 54.638266143197875, 55.838997684144665, 64.82526244797673, 149.90749734629682, 13.644425596591327, 52.5082115611486, 21.635074806078393, 14.737252696173735, 54.44723488927849, 45.01355128747243, 8.82830408727395, 102.5175476185393, 20.949584203983335, 12.696269324853247, 11.396905928324768, 6.928211769797076, 16.49670097969004, 13.558997549980191, 8.38952523699236, 7.577796302568668, 18.51959785606064, 93.61088566884261, 9.68206574699261, 17.8919355808051, 82.80547850697036, 16.386376288318573, 28.939314790958797, 20.856912875352158, 12.756936376533448, 69.54686679755557, 30.361546258134805, 19.65862909387453, 79.71578396961601, 81.40591502895225, 11.94508126878921, 42.66668145889373, 26.511230615763992, 25.346292708444288, 85.38044884017096, 9.207511169609282, 106.33746568829515, 12.44290305300056, 86.82725550411729, 16.14667924163297, 14.142994686344386, 6.698407103264305, 53.53033705654359, 23.401291618943283, 66.63918765208922, 27.078817251165592, 38.46692367276563, 10.063569860490766, 198.04526361941657, 81.419775455816, 67.70935965407425, 39.26089299985946, 10.145765780892111, 88.95324888208187, 156.74787506135624, 14.108589936273967, 121.4395888375879, 86.81764747339241, 5.566811869532374, 5.082970755164693, 21.295292383870688, 21.032763200540497, 41.21609150467998, 184.06813767780207, 30.37653491172993, 19.29663160027438, 38.60846573117313, 29.364113271710075, 7.208442142159763, 78.9753060206409, 44.51040627494617, 31.573740158778076, 9.864236190611393, 5.365748678831288, 12.030606797802424, 39.04091064547103, 19.727717354151707, 26.141085713910535, 19.21458126487206, 77.77645417594124, 59.25292612236522, 22.258038296203335, 48.630223083071165, 66.57595026894627, 46.32811512577232, 54.004619861184345, 13.391475522179137, 29.937892823197437, 7.369592683056691, 65.1060236981139, 103.75532514912561, 122.96119616329538, 59.65229294250579, 24.880339957214087, 68.86621333219561, 5.969331580469054, 51.98577672748674, 138.02334623805405, 21.544222594228128, 52.38663270974142, 27.19581234452489, 49.96226297388533, 79.4025212400273, 45.398311413157224, 27.662660014852612, 36.69602906294912, 16.07801054733686, 28.980517299613275, 57.092660142580165, 81.27908804161426, 23.667318989165757, 28.68077535754326, 73.91251133629794, 17.994186899500882, 50.251437450435695, 19.060104093813763, 40.25598172493655, 21.996191138162782, 11.360911614605797, 57.6728693015184, 14.42820623474622, 19.613145193449892, 142.37612873115185, 51.80720247295513, 66.56768796540648, 18.502794063828183, 16.121515495931856, 24.593395450766472, 87.9340195050008, 5.255343769543058, 67.52828002468604, 5.207194151374256, 21.680042334053695, 19.184104298053562, 42.341105640719846, 10.437171525320675, 26.773226349022217, 35.075142410012575, 11.433832567168949, 53.00788207769417, 13.820175540234835, 30.64954845458056, 7.357871646312281, 10.605731620180597, 5.290982907937716, 8.46029097756291, 85.52934620782392, 43.939587230388646, 105.99141152682031, 5.221476571614128, 47.64329944975389, 149.16558425792226, 69.97887302181286, 37.35535143112644, 75.61358553639276, 6.437927289187637, 18.63021446835274, 80.5207594503157, 20.133934614514313, 10.139846048004454, 66.24912948597776, 120.32028977665144, 6.387916942077359, 17.61369708623006, 9.622169552658004, 25.7074778304142, 33.8212503494571, 111.5813900515468, 21.670025809009115, 24.018335788520282, 36.06469838259656, 14.47096607935273, 113.16426387706335, 13.028055098906153, 32.902014661946694, 5.107062380432742, 23.259953161137403, 12.438053435023082, 35.20995849785271, 65.40422208839871, 17.3970203457293, 5.390167808738427, 28.57183518957457, 67.14399475841431, 5.523491766685123, 29.583123469340613, 29.6149962732647, 67.1529687902571, 32.16280774925764, 5.840898017351034, 50.856334266633965, 8.901769695248314, 59.84649482979935, 238.88137889552038, 11.245540752707578, 13.177424181138612, 26.573298684429904, 156.59801018712807, 63.95213339853251, 105.5306398439012, 77.23349033642486, 52.338082432886935, 19.96326668899718, 59.17027292165025, 19.031356646075153, 13.326902556033035, 7.330866157700316, 62.854964607279335, 65.68882917171892, 5.6961491428500315, 15.242111268259332, 59.81045909825528, 11.429274497203131, 7.474988882090152, 7.473156512040544, 14.439214647218277, 48.82338860638711, 64.07746124596551, 34.04430797723312, 130.5971838850591, 28.797651622820304, 18.632029826466145, 110.11718466681207, 85.45774375738088, 32.964917682320674, 10.101350407958837, 5.279417029373103, 99.1099028685166, 30.273754714609748, 9.592193575072946, 11.306326797499246, 12.45231064874012, 15.430001617708111, 11.616579053475984, 5.7973427694369715, 26.088780216724736, 92.27068306539492, 9.785846989312427, 44.39239065689844, 7.693570161382036, 31.84625776829435, 6.592745519691982, 47.62829435660561, 5.56710827768435, 8.300416762564684, 63.21865337406027, 88.56222528090663, 7.8885787741721645, 9.698992560078914, 129.12614730759458, 27.860198923762592, 50.908947582993164, 49.51941402621811, 5.307522621517744, 15.447592267004964, 22.097954832835065, 29.5901125027215, 18.83378817758292, 50.00181411006887, 9.487870570866692, 153.3618089451998, 40.74226003061296, 49.45623928250359, 23.991200159358566, 14.629819243955154, 45.70756074626691, 66.73533869549021, 41.86413872115393, 14.973357395391771, 126.6167581072934, 45.49853324463058, 53.46673247747688, 62.17209455217563, 44.109600653861605, 5.705209246433812, 34.80376718959453, 39.31807714425226, 10.63856379763177, 59.42219539541428, 14.46577911181455, 12.034739798272899, 70.38019472555816, 47.53185779043906, 14.934256076783084, 9.046857268249944, 129.11465048890287, 61.35176157077592, 61.976260277968954, 18.64038973160635, 5.692059797370926, 72.89906053347669, 11.162051375345444, 102.76452735482874, 25.51868756560377, 5.032820289920981, 39.70638628759573, 49.465634940579385, 14.327586167152278, 106.85346857723258, 13.303930392844466, 15.98140935922739, 73.74822408408218, 35.486972840258936, 38.734697277629046, 26.536636812360182, 70.30877723894662, 6.6762927242724635, 6.498356971520733, 23.299454060771126, 15.593206972261347, 11.471135490134207, 111.63454411443027, 82.08089121945906, 32.61805166015208, 29.467375354334912, 115.11331243467444, 17.751508267152122, 27.00600732675138, 112.62871657753001, 36.80859715493863, 56.53037499560078, 8.664210799625542, 22.862966254905448, 76.23010965989491, 21.53762811542854, 22.809876496963142, 136.96367243069173, 62.215226341484424, 10.372081892904125, 49.14765346983024, 13.605337446282757, 39.900675145123074, 74.98432311184665, 12.297568710445843, 12.300193696187021, 12.132588774014932, 14.24451816752138, 92.96791039965488, 81.557476585549, 22.91998260754276, 15.319310333614158, 9.358221395736159, 12.35554736237724, 26.305235792024444, 79.34422214065593, 32.94529188830723, 30.942258176426567, 5.280987138223854, 63.16068724074347, 146.26602835398333, 22.326303422871675, 152.13194286028104, 154.7013472719303, 11.900351388266479, 6.255284022037051, 50.35543981001016, 23.305312357218895, 57.137087827741915, 51.11505319669887, 8.040696120590475, 32.72731227854063, 33.110510261434044, 80.93757877629602, 100.18596066576508, 40.17550809703657, 9.76582345744629, 86.92272310405508, 98.10612076347388, 54.74016445037314, 30.9886803180259, 17.59112292793257, 123.43399649378124, 88.10803575438781, 5.63061443840166, 12.787352258653398, 101.32010471462762, 152.26429382265536, 16.794455019522044, 10.617335212808344, 50.188220465050584, 23.6399325028437, 43.5117130567979, 46.062990470150474, 5.065983368014685, 18.962248754074476, 7.508548285345253, 126.38504323295314, 76.15647286229488, 11.94906445818911, 79.35692845165848, 25.58590973103495, 34.36792618486202, 20.392906030226666, 92.11645398048958, 14.194780134744464, 113.69175107444444, 5.563920390669043, 272.6403374981239, 6.303764056232231, 145.5292900996991, 14.222432546979613, 17.364727457716103, 5.088780016242822, 81.87427871057437, 73.32277013434219, 96.7774339334591, 61.14338218241887, 23.230120279055335, 21.421023542072124, 54.71125639099067, 7.466975978357532, 9.950306752838776, 115.23161183486157, 9.494199505392881, 32.738484112141606, 18.27475088048793, 73.90876969308508, 20.245783903358273, 79.61659583908092, 70.39598865616627, 10.397444832492717, 92.58796421440404, 261.51175009220856, 48.77850765151972, 12.52353667205301, 19.930333497434358, 34.22036786517207, 89.20767568069843, 111.72383392571274, 52.562932177964356, 96.3939278277004, 48.248426839046665, 17.500662481824723, 31.911598372416204, 26.484348675513036, 42.760705352161914, 11.275159492725319, 254.0786577132718, 36.0836280887654, 34.40250552815873, 61.78474760291879, 10.922677370297611, 19.3729383035906, 5.626601303413272, 36.532628906955715, 46.74827530188212, 29.739695723506124, 48.43720871964159, 6.955682036375023, 145.7753823516297, 37.53036397893447, 23.509949994672773, 8.910978754794957, 13.673946887744242, 6.431189712102838, 5.873555875856751, 13.766748905444114, 163.15796797067296, 32.64532903175157, 64.86164230178329, 12.607072550910988, ...])
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);
([4441631.25, 4448610.9375, 4452560.9375, 4459182.8125, 4595587.5, 4602615.625, 4649554.6875, 4727467.1875, 4793884.375, 4831679.6875, 4832271.875, 4836543.75, 4836668.75, 4865025.0, 4865079.6875, 4873425.0, 4880982.8125, 4888225.0, 4980528.125, 5011695.3125, 5042310.9375, 5050426.5625, 5056646.875, 5063201.5625, 5072839.0625, 5076514.0625, 5096989.0625, 5101601.5625, 5119067.1875, 5119282.8125, 5124632.8125, 5150264.0625, 5153337.5, 5183560.9375, 5194603.125, 5212325.0, 5249745.3125, 5258514.0625, 5274687.5, 5275534.375, 5285373.4375, 5286435.9375, 5292210.9375, 5293535.9375, 5299976.5625, 5341176.5625, 5345346.875, 5350726.5625, 5354593.75, 5356785.9375, 5357685.9375, 5358159.375, 5359548.4375, 5360367.1875, 5363710.9375, 5388664.0625, 5397543.75, 5398503.125, 5398503.125, 5398512.5, 5405934.375, 5419160.9375, 5422032.8125, 5432603.125, 5437962.5, 5478117.1875, 5494457.8125, 5520732.8125, 5530235.9375, 5542489.0625, 5571610.9375, 5637382.8125, 5650742.1875, 5738835.9375, 5800682.8125, 5800696.875, 5883189.0625, 6433092.1875, 6674176.5625, 6786025.0, 6790623.4375, 6792378.125, 6967729.6875, 6994865.625, 7014546.875, 7016345.3125, 7018643.75, 7020578.125, 7021537.5, 7021857.8125, 7022496.875, 7022534.375, 7023501.5625, 7027989.0625, 7028150.0, 7028387.5, 7029148.4375, 7030167.1875, 7031079.6875, 7048909.375, 7058618.75, 7073723.4375, 7076278.125, 7078434.375, 7085017.1875, 7098312.5, 7112829.6875, 7117028.125, 7129809.375, 7141415.625, 7141415.625, 7141801.5625, 7145159.375, 7146603.125, 7147510.9375, 7147515.625, 7147575.0, 7148335.9375, 7148360.9375, 7149112.5, 7149446.875, 7149584.375, 7150003.125, 7150496.875, 7150884.375, 7151165.625, 7151385.9375, 7151432.8125, 7151679.6875, 7152017.1875, 7152170.3125, 7153154.6875, 7181076.5625, 7187985.9375, 7188496.875, 7189440.625, 7189445.3125, 7189481.25, 7189693.75, 7189909.375, 7189917.1875, 7190185.9375, 7190475.0, 7190496.875, 7190696.875, 7190767.1875, 7190878.125, 7190956.25, 7191003.125, 7191028.125, 7191107.8125, 7191312.5, 7191325.0, 7191489.0625, 7191550.0, 7191946.875, 7192251.5625, 7192398.4375, 7193739.0625, 7194865.625, 7194926.5625, 7194932.8125, 7195126.5625, 7195528.125, 7195704.6875, 7195707.8125, 7196668.75, 7197417.1875, 7197464.0625, 7200478.125, 7202718.75, 7206376.5625, 7207293.75, 7207893.75, 7207914.0625, 7208232.8125, 7243435.9375, 7244935.9375, 7256445.3125, 7272946.875, 7273073.4375, 7280265.625, 7280340.625, 7280450.0, 7281075.0, 7300707.8125, 7302432.8125, 7303225.0, 7304685.9375, 7305710.9375, 7306017.1875, 7306712.5, 7309221.875, 7310832.8125, 7312540.625, 7312582.8125, 7312676.5625, 7313170.3125, 7313445.3125, 7315223.4375, 7315229.6875, 7320043.75, 7320709.375, 7320881.25, 7322756.25, 7326042.1875, 7327034.375, 7342065.625, 7344659.375, 7347032.8125, 7348087.5, 7348140.625, 7348187.5, 7348262.5, 7349100.0, 7349492.1875, 7349839.0625, 7350118.75, 7350671.875, 7350798.4375, 7351712.5, 7353050.0, 7353218.75, 7353468.75, 7356831.25, 7357201.5625, 7357576.5625, 7369131.25, 7369898.4375, 7376323.4375, 7379873.4375, 7385478.125, 7387876.5625, 7392621.875, 7395023.4375, 7396451.5625, 7405062.5, 7410206.25, 7414118.75, 7415295.3125, 7417773.4375, 7422421.875, 7425334.375, 7427240.625, 7427618.75, 7430048.4375, 7432014.0625, 7440537.5, 7443117.1875, 7443131.25, 7450942.1875, 7452903.125, 7453273.4375, 7453610.9375, 7453843.75, 7454245.3125, 7454278.125, 7455893.75, 7456234.375, 7456882.8125, 7461893.75, 7467632.8125, 7468042.1875, 7471120.3125, 7471182.8125, 7472476.5625, 7480132.8125, 7488593.75, 7489446.875, 7490989.0625, 7492371.875, 7499265.625, 7499579.6875, 7500289.0625, 7500312.5, 7501693.75, 7502903.125, 7511853.125, 7517271.875, 7519473.4375, 7519509.375, 7530159.375, 7533125.0, 7538776.5625, 7541300.0, 7542406.25, 7542943.75, 7544084.375, 7545156.25, 7546140.625, 7546165.625, 7546395.3125, 7547176.5625, 7548145.3125, 7549073.4375, 7549348.4375, 7550207.8125, 7550420.3125, 7551001.5625, 7551182.8125, 7551193.75, 7551509.375, 7551773.4375, 7552568.75, 7552668.75, 7552803.125, 7553023.4375, 7553429.6875, 7555201.5625, 7558864.0625, 7562293.75, 7562295.3125, 7562295.3125, 7562562.5, 7562967.1875, 7563848.4375, 7567710.9375, 7568857.8125, 7569593.75, 7571996.875, 7573454.6875, 7579398.4375, 7579970.3125, 7580325.0, 7582034.375, 7583731.25, 7584593.75, 7585445.3125, 7586989.0625, 7587323.4375, 7589129.6875, 7591062.5, 7592060.9375, 7596696.875, 7601934.375, 7605303.125, 7605348.4375, 7607006.25, 7608339.0625, 7611029.6875, 7611060.9375, 7611635.9375, 7611671.875, 7611723.4375, 7616773.4375, 7616887.5, 7617612.5, 7618125.0, 7621582.8125, 7621889.0625, 7622253.125, 7622314.0625, 7627193.75, 7628665.625, 7629042.1875, 7630378.125, 7631040.625, 7631612.5, 7631701.5625, 7632450.0, 7632754.6875, 7633759.375, 7634018.75, 7634028.125, 7635454.6875, 7637626.5625, 7638362.5, 7638660.9375, 7640206.25, 7641306.25, 7641431.25, 7642253.125, 7643295.3125, 7644084.375, 7644225.0, 7644379.6875, 7646021.875, 7647757.8125, 7648503.125, 7648740.625, 7654254.6875, 7664754.6875, 7667542.1875, 7670196.875, 7674556.25, 7675956.25, 7675964.0625, 7677004.6875, 7677587.5, 7679443.75, 7679445.3125, 7680318.75, 7680585.9375, 7681259.375, 7681481.25, 7683764.0625, 7686184.375, 7687818.75, 7688290.625, 7688839.0625, 7689229.6875, 7691629.6875, 7692326.5625, 7694090.625, 7697176.5625, 7699135.9375, 7700564.0625, 7702682.8125, 7703387.5, 7704306.25, 7707120.3125, 7711843.75, 7712243.75, 7713887.5, 7719020.3125, 7723943.75, 7733123.4375, 7737771.875, 7738079.6875, 7740273.4375, 7740732.8125, 7743429.6875, 7743595.3125, 7743750.0, 7743868.75, 7744357.8125, 7745312.5, 7745570.3125, 7745676.5625, 7745681.25, 7745987.5, 7746135.9375, 7746212.5, 7746840.625, 7747139.0625, 7749506.25, 7750092.1875, 7750245.3125, 7751062.5, 7751281.25, 7751834.375, 7752028.125, 7752095.3125, 7752456.25, 7752614.0625, 7752617.1875, 7756929.6875, 7758600.0, 7758664.0625, 7760814.0625, 7762750.0, 7763465.625, 7764570.3125, 7764784.375, 7765800.0, 7766614.0625, 7770851.5625, 7770937.5, 7776471.875, 7778414.0625, 7779943.75, 7786201.5625, 7786214.0625, 7794335.9375, 7798085.9375, 7803559.375, 7810403.125, 7810887.5, 7810904.6875, 7810971.875, 7814503.125, 7817287.5, 7825195.3125, 7825892.1875, 7825953.125, 7830559.375, 7832937.5, 7833892.1875, 7834543.75, 7836414.0625, 7850303.125, 7850473.4375, 7850787.5, 7851906.25, 7853571.875, 7854682.8125, 7858187.5, 7858201.5625, 7863884.375, 7865162.5, 7865514.0625, 7871950.0, 7872878.125, 7872929.6875, 7876287.5, 7877037.5, 7877381.25, 7877504.6875, 7883117.1875, 7887040.625, 7903717.1875, 7906053.125, 7910728.125, 7911046.875, 7911898.4375, 7914492.1875, 7915014.0625, 7915870.3125, 7920970.3125, 7922578.125, 7922971.875, 7928501.5625, 7930646.875, 7932950.0, 7934014.0625, 7935460.9375, 7936617.1875, 7937342.1875, 7937360.9375, 7938507.8125, 7938531.25, 7941229.6875, 7945793.75, 7946689.0625, 7949110.9375, 7953190.625, 7953642.1875, 7953767.1875, 7954301.5625, 7955970.3125, 7958260.9375, 7962734.375, 7966235.9375, 7966428.125, 7966801.5625, 7973693.75, 7976023.4375, 7978068.75, 7978153.125, 7978173.4375, 7979400.0, 7980560.9375, 7984409.375, 7985118.75, 7985353.125, 7988237.5, 7989028.125, 7990085.9375, 7993787.5, 7994168.75, 7996992.1875, 7998573.4375, 7999859.375, 7999868.75, 8000914.0625, 8002684.375, 8005010.9375, 8005123.4375, 8005493.75, 8005975.0, 8005992.1875, 8006984.375, 8008765.625, 8008801.5625, 8011854.6875, 8012301.5625, 8018718.75, 8022078.125, 8023054.6875, 8023076.5625, 8026354.6875, 8029231.25, 8037317.1875, 8039698.4375, 8039795.3125, 8040768.75, 8044276.5625, 8047295.3125, 8047667.1875, 8048921.875, 8049950.0, 8050039.0625, 8050118.75, 8051640.625, 8051878.125, 8053528.125, 8054637.5, 8055459.375, 8055653.125, 8055657.8125, 8056723.4375, 8058053.125, 8058503.125, 8059507.8125, 8062956.25, 8066146.875, 8080320.3125, 8080490.625, 8080562.5, 8081475.0, 8081981.25, 8081989.0625, 8082312.5, 8082806.25, 8083070.3125, 8083393.75, 8083850.0, 8084129.6875, 8084393.75, 8084487.5, 8086615.625, 8086790.625, 8086848.4375, 8087818.75, 8087862.5, 8090165.625, 8093148.4375, 8095246.875, 8100082.8125, 8102912.5, 8107940.625, 8108889.0625, 8109806.25, 8120803.125, 8121314.0625, 8121331.25, 8124282.8125, 8125928.125, 8134250.0, 8135168.75, 8135740.625, 8136103.125, 8136543.75, 8138517.1875, 8138785.9375, 8139021.875, 8139475.0, 8140778.125, 8141034.375, 8141215.625, 8142070.3125, 8142600.0, 8142601.5625, 8144171.875, 8144534.375, 8146046.875, 8146789.0625, 8148446.875, 8152803.125, 8153693.75, 8155718.75, 8156270.3125, 8156954.6875, 8157015.625, 8157753.125, 8158106.25, 8158142.1875, 8158370.3125, 8158532.8125, 8158564.0625, 8158715.625, 8158895.3125, 8159051.5625, 8159112.5, 8159148.4375, 8159175.0, 8159643.75, 8159657.8125, 8159712.5, 8159750.0, 8160059.375, 8160107.8125, 8160154.6875, 8160609.375, 8160923.4375, 8161026.5625, 8161465.625, 8161632.8125, 8161751.5625, 8161848.4375, 8161975.0, 8162010.9375, 8162120.3125, 8162843.75, 8164378.125, 8166137.5, 8166807.8125, 8167198.4375, 8167264.0625, 8167425.0, 8168121.875, 8168315.625, 8168356.25, 8168656.25, 8169346.875, 8170526.5625, 8170859.375, 8171145.3125, 8173143.75, 8173679.6875, 8176629.6875, 8185343.75, 8189521.875, 8192309.375, 8198089.0625, 8198148.4375, 8198281.25, 8198529.6875, 8198810.9375, 8201109.375, 8204335.9375, 8204839.0625, 8205118.75, 8205662.5, 8205725.0, 8206106.25, 8206129.6875, 8211365.625, 8211906.25, 8213465.625, 8213521.875, 8223812.5, 8223814.0625, 8224512.5, 8224964.0625, 8225018.75, 8225121.875, 8226168.75, 8227456.25, 8227925.0, 8229443.75, 8230415.625, 8230462.5, 8230690.625, 8233042.1875, 8233431.25, 8234790.625, 8235487.5, 8236343.75, 8236376.5625, 8236565.625, 8237143.75, 8238659.375, 8238896.875, 8238926.5625, 8239129.6875, 8239500.0, 8240807.8125, 8241050.0, 8241103.125, 8241400.0, 8241714.0625, 8241868.75, 8243471.875, 8243540.625, 8243803.125, 8243839.0625, 8243892.1875, 8243971.875, 8244560.9375, 8245762.5, 8245776.5625, 8245914.0625, 8246067.1875, 8246078.125, 8246259.375, 8246723.4375, 8247007.8125, 8247346.875, 8247537.5, 8247835.9375, 8250165.625, 8250417.1875, 8250709.375, 8250832.8125, 8253543.75, 8253564.0625, 8253571.875, 8259487.5, 8259921.875, 8259982.8125, 8263226.5625, 8266673.4375, 8266725.0, 8266843.75, 8276335.9375, 8277757.8125, 8278426.5625, 8280528.125, 8285603.125, 8287090.625, 8287190.625, 8287262.5, 8287317.1875, 8293104.6875, 8295026.5625, 8306073.4375, 8306290.625, 8314039.0625, 8316517.1875, 8316787.5, 8317334.375, 8317362.5, 8317528.125, 8318670.3125, 8318982.8125, 8319115.625, 8320123.4375, 8322306.25, 8323581.25, 8324021.875, 8330532.8125, 8335514.0625, 8335528.125, 8335745.3125, 8339737.5, 8341050.0, 8344739.0625, 8345293.75, 8345301.5625, 8345631.25, 8346287.5, 8346718.75, 8346798.4375, 8352612.5, 8354703.125, 8355981.25, 8356059.375, 8356339.0625, 8357045.3125, 8359757.8125, 8367514.0625, 8371137.5, 8371259.375, 8373590.625, 8376150.0, 8379242.1875, 8380207.8125, 8380467.1875, 8381032.8125, 8381871.875, 8382034.375, 8382050.0, 8382267.1875, 8382607.8125, 8382865.625, 8382900.0, 8382956.25, 8382984.375, 8383565.625, 8383909.375, 8384032.8125, 8384226.5625, 8384501.5625, 8384723.4375, 8384756.25, 8385003.125, 8385135.9375, 8385410.9375, 8385584.375, 8385625.0, 8385717.1875, 8386707.8125, 8387062.5, 8387606.25, 8388025.0, 8388695.3125, 8388992.1875, 8389087.5, 8389528.125, 8389796.875, 8390654.6875, 8392103.125, 8392615.625, 8396195.3125, 8397245.3125, 8400412.5, 8400564.0625, 8401276.5625, 8403918.75, 8405293.75, 8406667.1875, 8407820.3125, 8408834.375, 8409725.0, 8410100.0, 8410151.5625, 8410243.75, 8410845.3125, 8410979.6875, 8411501.5625, 8411975.0, 8412325.0, 8412906.25, 8413042.1875, 8413281.25, 8413509.375, 8414829.6875, 8416343.75, 8418406.25, 8425367.1875, 8429273.4375, 8429479.6875, 8429504.6875, 8430920.3125, 8431142.1875, 8432420.3125, 8433250.0, 8433676.5625, 8434579.6875, 8435223.4375, 8435382.8125, 8435717.1875, 8438595.3125, 8438760.9375, 8439935.9375, 8440395.3125, 8440890.625, 8441101.5625, 8442912.5, 8442942.1875, 8444221.875, 8447150.0, 8448464.0625, 8448528.125, 8453568.75, 8455751.5625, 8456128.125, 8457100.0, 8458587.5, 8459725.0, 8468670.3125, 8472575.0, 8474960.9375, 8475396.875, 8478956.25, 8481828.125, 8483026.5625, 8483917.1875, 8484843.75, 8485576.5625, 8485653.125, 8485889.0625, 8485932.8125, 8485940.625, 8487120.3125, 8487375.0, 8487856.25, 8488114.0625, 8488115.625, 8488142.1875, 8488696.875, 8489153.125, 8490232.8125, 8490820.3125, 8491060.9375, 8492690.625, 8499992.1875, 8500512.5, 8500554.6875, 8513798.4375, 8517606.25, 8517914.0625, 8518145.3125, 8518471.875, 8536604.6875, 8538415.625, 8538740.625, 8539193.75, 8539467.1875, 8539484.375, 8539728.125, 8539979.6875, 8540643.75, 8541507.8125, 8542417.1875, 8543182.8125, 8550632.8125, 8552257.8125, 8556751.5625, 8556965.625, 8556967.1875, 8557014.0625, 8557175.0, 8564934.375, 8566990.625, 8567001.5625, 8567357.8125, 8567853.125, 8568282.8125, 8569907.8125, 8571065.625, 8571279.6875, 8571331.25, 8571701.5625, 8575309.375, 8577542.1875, 8578467.1875, 8582485.9375, 8582492.1875, ...], [63.3067210705951, 12.277635456397201, 6.7919253861229825, 60.91360652588196, 19.15534829415278, 75.02722117709058, 24.319428340329587, 5.2763348222139586, 36.05361154638454, 23.94139015379602, 96.72592474147054, 12.30639185095993, 79.97151853509365, 78.63085561541607, 5.15555159098011, 24.068194332617956, 17.344301621096513, 62.222465015435205, 22.021495781831923, 8.39385496867488, 107.8703982572567, 8.286427264570609, 5.2290097419875305, 17.903315007644704, 41.26209478590454, 83.03361413462562, 7.653315559682112, 19.063808820953014, 35.619220246731764, 75.36026021191232, 5.780248860576396, 30.33335401419433, 55.07386020528905, 23.869818241423147, 21.91124199218889, 18.07886457298006, 69.73261089132343, 9.572749388373056, 71.68730477266037, 49.381153804831754, 12.81417959397707, 12.936904904379873, 18.9351097387581, 27.192732537740138, 8.64442612417909, 76.3104287605151, 5.901933598328168, 5.624180895700564, 23.406364034373524, 31.358865840662208, 52.859988032305, 43.47487326606661, 18.582810648388694, 16.287509047040015, 62.20976098424684, 31.742110021698156, 23.852482021779213, 19.739059488288284, 59.232637573293765, 43.887020313592686, 200.00608641566194, 50.80242493430099, 26.664356609544136, 17.059996183398304, 8.30749123245022, 10.462032998103531, 14.983557827818855, 22.06833338470265, 145.38811997090286, 31.834006134328725, 10.519927235658555, 99.2063865572601, 55.04953947417123, 25.933136733646997, 33.6875378637872, 78.1945177337421, 74.80685746315328, 44.64321935683591, 8.219794685843745, 14.498499134960378, 85.87132947257899, 34.904856962154234, 40.90416025012634, 146.10639958323634, 70.3517139243224, 40.031977365846515, 27.72830877038064, 18.42303005797691, 9.577888944283455, 69.33560676760922, 27.33973697861462, 24.10487617849803, 72.94445016861181, 66.51251630992296, 7.061758587782607, 89.15542745534796, 40.32119910407605, 54.22510942963209, 108.97791190484415, 19.529718227803293, 89.51210019195182, 57.445003871148366, 100.77353150364634, 146.61498246970996, 64.99542718225968, 154.29510415601422, 18.30952222383257, 9.78416475230215, 29.546450653955127, 21.355732207374672, 76.77783331678955, 23.352998349865373, 60.44531469408467, 5.440077869290414, 22.884079135035034, 27.980255212884682, 5.239381211645927, 74.12227849006729, 57.63251296971771, 174.3028516147148, 7.597016735468375, 11.242567034524725, 104.10563631023626, 38.76321733695028, 45.6027664665267, 67.40148801554605, 9.167660170755394, 13.919237711896457, 11.822048305157082, 94.60510355591269, 68.16613466176956, 20.189464630993747, 23.81402490721827, 89.17751530542627, 49.28536879967935, 8.926386301748673, 6.014298469396055, 22.09760778588493, 78.39676851360065, 113.82157996612281, 6.99114038596807, 45.73440997759056, 18.75883549082836, 5.9799314913260435, 88.09133528219972, 18.032925723984842, 51.033514259538755, 203.75883566102604, 7.541823091657745, 18.057642080729583, 17.932256059411415, 33.034485589021145, 11.127248691938057, 25.163019115302458, 5.392001180650475, 10.35741279157816, 34.17658900263178, 35.06454150259202, 24.44245764610078, 38.51969436048934, 5.2113634437570715, 51.29922436419415, 17.75236349497464, 17.1968195136057, 24.8714975632091, 31.007107582610946, 52.34317085175196, 73.00231172213567, 74.52320832678147, 29.106165157235463, 26.991184171351115, 21.151008775945137, 6.327070032361717, 32.050813096975936, 10.242855438995376, 19.69465233699812, 15.214428213210395, 18.896877029784847, 11.675905757218391, 14.7110021398206, 5.476825234261335, 95.6452005213436, 65.21721988778077, 5.48008245096049, 105.06709879748385, 65.6867692178249, 22.260512451009653, 36.83749097044309, 14.227416455054216, 6.144981676016661, 13.234749966255578, 129.91466723693642, 36.45068058237319, 46.493488548313316, 85.36611114716705, 34.663959931843806, 42.582416972689884, 37.21868167068623, 22.316097654753744, 20.151823142540664, 67.16305314004985, 18.22237365702793, 18.061162405427797, 37.12110735827412, 25.07829321449895, 130.37830390659488, 26.76621978077766, 70.06320501282644, 151.19768190231275, 26.133883865977896, 15.818172037843707, 33.54812651002076, 34.52726011135918, 5.10087620550814, 279.90616417092303, 38.35410467788293, 11.725977627761223, 5.686467522778309, 14.820190768600892, 21.20139700748574, 11.479165196827621, 27.985890240720526, 15.13821890392399, 7.320350535186755, 34.89102668263731, 105.56223740898076, 25.232937275045877, 53.92870281726362, 125.87897955757956, 21.27579052979051, 19.500826530792768, 148.70553269242063, 16.906568845439633, 113.27500105006425, 10.37352381617002, 6.252409589207865, 31.82554164179894, 69.55156760631085, 121.9538158724548, 19.798390492005034, 59.20546259531308, 13.79774308162048, 21.605178942956233, 44.62020749930579, 28.584178339872217, 32.81123223444026, 9.076679224238028, 16.634249838722997, 95.99944058398047, 49.29246394221269, 112.15990062528978, 139.38516324347333, 107.94458176846766, 23.45557199138679, 47.33258270820525, 6.672826050545924, 16.389016871747142, 27.30005776248723, 17.095298455809683, 78.40607842836698, 12.483903169313344, 24.769962043816804, 48.91664376263723, 15.752352307223497, 5.141113270046565, 73.97475270538423, 14.978327491226539, 77.50804717311195, 37.01667300089559, 27.166206404705573, 5.972244425269864, 34.86083033316656, 93.41357396957257, 18.986678236037196, 80.48753829556424, 32.16302087883143, 21.716818320865094, 29.177915055056094, 41.71627818010279, 24.11607621983697, 15.822655617845722, 44.429034411609415, 13.16529168728201, 20.99613991422761, 18.51405058806465, 64.84244866672204, 46.687821166279946, 102.2063425121743, 23.249845375100623, 22.037312112266825, 55.469285991403964, 39.81439519102746, 51.227720255006254, 108.42254315090624, 32.11434465425948, 22.800621398242043, 68.29362852537146, 26.272329569806743, 12.925896941568244, 25.033856339489223, 10.57327753935039, 24.029238114228885, 61.504628459929364, 43.108771657283896, 70.89614325653214, 114.93463147843397, 32.52931654581742, 87.98592837310807, 27.403093355668545, 29.1300026837744, 31.999001731528274, 13.102087648593367, 15.860613990179424, 35.47702671585314, 74.62768139708874, 28.460683455884503, 24.184834842334467, 12.756008546769417, 11.917010023564584, 21.055310741519325, 34.09485634034167, 52.411634666016425, 36.28249733059275, 49.15919641514186, 10.527869954499739, 8.003446848065375, 29.80014924003669, 5.499624663075436, 73.1697722123923, 29.304138147171194, 36.3076024258747, 9.058646700840699, 145.75861700339593, 16.15920688181549, 27.326927695219265, 35.11725673990415, 5.656085588643664, 77.81894939998412, 11.50060183501323, 30.820563071575762, 248.15045788807132, 39.547219119950476, 94.28547420796403, 5.243298511153299, 26.539268293821955, 69.43822324773836, 54.068279209845976, 6.738605953774197, 19.502421049990474, 28.502034235672184, 12.450291876916538, 40.26061953761467, 150.0085220034912, 18.488289344789077, 6.705366988928226, 87.92455546478676, 61.00137599376573, 51.157247604013655, 333.160079862209, 6.038817475617991, 157.9509899145752, 35.03927719265051, 15.51438441971649, 17.019506134742503, 6.565406069380225, 26.903139426472382, 55.977752014300805, 161.33158333111484, 11.449180356645778, 18.244356317764527, 38.743240340699316, 10.429279794417214, 36.541987547907496, 7.647164874498982, 17.158636165915997, 13.81409892106804, 8.926157388098785, 199.4263944000832, 20.325604611464396, 13.64969365270866, 14.09124691533521, 148.6351975332769, 41.395583967230536, 43.70495967157474, 42.44668891385001, 15.419172832988282, 47.03136048387327, 155.5529755594108, 48.19735941675631, 35.18653586539298, 16.46882273490781, 28.13553596939012, 47.139349492378486, 52.38394726006926, 114.24051987457413, 60.65205455146552, 7.851113283183761, 9.230840121202636, 38.40771354906405, 64.68995824028883, 40.48599652092055, 28.42963845483475, 70.04707615731141, 78.6695977718332, 23.419518928154265, 26.640091846807746, 24.650603857218847, 53.70656684269738, 57.904816535314666, 50.002188399361216, 240.96358600778905, 66.1948265678132, 71.83424870591232, 139.42396080466972, 76.31279921288571, 16.360928105861035, 53.57213214623078, 40.43708316958364, 23.470506350634537, 34.39358511182418, 27.458428083215704, 51.509910111982386, 109.71633738300756, 11.350260042782311, 14.521186222104046, 96.61571147659795, 71.09344804056038, 50.679607525442606, 32.884794913042654, 37.05183345950687, 98.94263931466585, 31.431362687268134, 64.24327283075444, 35.73998576162289, 13.66061441497124, 80.49499469906652, 65.86574868808589, 37.20998023975153, 23.35980556419389, 26.965733118886483, 11.987078167692127, 6.1346731260370735, 57.15737466250975, 12.233010132723361, 228.87213452295612, 15.772697068791844, 91.4752501738992, 22.629844027436175, 5.153645771245259, 21.009580486286488, 58.074481203945176, 22.323304496367548, 5.037527119941137, 35.695094082661484, 10.458097184762956, 65.42931271938326, 7.419790394964418, 5.5253923407295, 8.694755668047053, 109.50899780523955, 30.216939848991878, 26.44109690909653, 91.63064795511367, 110.16173376198289, 28.885814781911918, 6.717305258063345, 48.621008856580175, 25.575700356714535, 103.00965040352149, 6.446306287426157, 69.82020697583008, 123.31260533108983, 123.53778676175332, 87.39907459037852, 95.36160906823534, 37.943657127763174, 281.02480361925564, 272.9026931392034, 159.26622830336373, 59.52860823974967, 24.338405355337496, 70.26550051133681, 147.66064695865592, 31.906180029032484, 58.72226222142232, 6.181436313075751, 58.58282486416636, 93.55838571162882, 42.699597871981155, 10.35727206627958, 38.15565455740591, 56.6040002829805, 81.3134064909413, 5.493173899111685, 20.383838762924164, 57.98699405263042, 7.569570057021596, 11.064702701065565, 7.125641494335571, 50.21615338327135, 5.478379959061476, 110.50333807420013, 43.19933025657251, 39.92016844719703, 57.47292774942031, 120.48105560386028, 77.34545010690172, 79.77253095384687, 106.59188937901544, 13.60125993869844, 17.563836995308787, 78.76628820085598, 36.15806902324667, 82.69072734401243, 240.592334752947, 32.593026437179425, 11.392965755491266, 46.45382847620661, 15.369518232647259, 55.13027466402256, 106.72038992159987, 58.53914931827756, 69.95693978090318, 18.431235359474215, 97.43267740196066, 120.66392661501857, 30.26653421186807, 6.897726085805314, 20.081260497868474, 62.9269098343339, 39.68348056442828, 39.89190952364721, 50.8031601296161, 29.00453492146473, 184.03512416468286, 54.638266143197875, 55.838997684144665, 64.82526244797673, 149.90749734629682, 13.644425596591327, 52.5082115611486, 21.635074806078393, 14.737252696173735, 54.44723488927849, 45.01355128747243, 8.82830408727395, 102.5175476185393, 20.949584203983335, 12.696269324853247, 11.396905928324768, 6.928211769797076, 16.49670097969004, 13.558997549980191, 8.38952523699236, 7.577796302568668, 18.51959785606064, 93.61088566884261, 9.68206574699261, 17.8919355808051, 82.80547850697036, 16.386376288318573, 28.939314790958797, 20.856912875352158, 12.756936376533448, 69.54686679755557, 30.361546258134805, 19.65862909387453, 79.71578396961601, 81.40591502895225, 11.94508126878921, 42.66668145889373, 26.511230615763992, 25.346292708444288, 85.38044884017096, 9.207511169609282, 106.33746568829515, 12.44290305300056, 86.82725550411729, 16.14667924163297, 14.142994686344386, 6.698407103264305, 53.53033705654359, 23.401291618943283, 66.63918765208922, 27.078817251165592, 38.46692367276563, 10.063569860490766, 198.04526361941657, 81.419775455816, 67.70935965407425, 39.26089299985946, 10.145765780892111, 88.95324888208187, 156.74787506135624, 14.108589936273967, 121.4395888375879, 86.81764747339241, 5.566811869532374, 5.082970755164693, 21.295292383870688, 21.032763200540497, 41.21609150467998, 184.06813767780207, 30.37653491172993, 19.29663160027438, 38.60846573117313, 29.364113271710075, 7.208442142159763, 78.9753060206409, 44.51040627494617, 31.573740158778076, 9.864236190611393, 5.365748678831288, 12.030606797802424, 39.04091064547103, 19.727717354151707, 26.141085713910535, 19.21458126487206, 77.77645417594124, 59.25292612236522, 22.258038296203335, 48.630223083071165, 66.57595026894627, 46.32811512577232, 54.004619861184345, 13.391475522179137, 29.937892823197437, 7.369592683056691, 65.1060236981139, 103.75532514912561, 122.96119616329538, 59.65229294250579, 24.880339957214087, 68.86621333219561, 5.969331580469054, 51.98577672748674, 138.02334623805405, 21.544222594228128, 52.38663270974142, 27.19581234452489, 49.96226297388533, 79.4025212400273, 45.398311413157224, 27.662660014852612, 36.69602906294912, 16.07801054733686, 28.980517299613275, 57.092660142580165, 81.27908804161426, 23.667318989165757, 28.68077535754326, 73.91251133629794, 17.994186899500882, 50.251437450435695, 19.060104093813763, 40.25598172493655, 21.996191138162782, 11.360911614605797, 57.6728693015184, 14.42820623474622, 19.613145193449892, 142.37612873115185, 51.80720247295513, 66.56768796540648, 18.502794063828183, 16.121515495931856, 24.593395450766472, 87.9340195050008, 5.255343769543058, 67.52828002468604, 5.207194151374256, 21.680042334053695, 19.184104298053562, 42.341105640719846, 10.437171525320675, 26.773226349022217, 35.075142410012575, 11.433832567168949, 53.00788207769417, 13.820175540234835, 30.64954845458056, 7.357871646312281, 10.605731620180597, 5.290982907937716, 8.46029097756291, 85.52934620782392, 43.939587230388646, 105.99141152682031, 5.221476571614128, 47.64329944975389, 149.16558425792226, 69.97887302181286, 37.35535143112644, 75.61358553639276, 6.437927289187637, 18.63021446835274, 80.5207594503157, 20.133934614514313, 10.139846048004454, 66.24912948597776, 120.32028977665144, 6.387916942077359, 17.61369708623006, 9.622169552658004, 25.7074778304142, 33.8212503494571, 111.5813900515468, 21.670025809009115, 24.018335788520282, 36.06469838259656, 14.47096607935273, 113.16426387706335, 13.028055098906153, 32.902014661946694, 5.107062380432742, 23.259953161137403, 12.438053435023082, 35.20995849785271, 65.40422208839871, 17.3970203457293, 5.390167808738427, 28.57183518957457, 67.14399475841431, 5.523491766685123, 29.583123469340613, 29.6149962732647, 67.1529687902571, 32.16280774925764, 5.840898017351034, 50.856334266633965, 8.901769695248314, 59.84649482979935, 238.88137889552038, 11.245540752707578, 13.177424181138612, 26.573298684429904, 156.59801018712807, 63.95213339853251, 105.5306398439012, 77.23349033642486, 52.338082432886935, 19.96326668899718, 59.17027292165025, 19.031356646075153, 13.326902556033035, 7.330866157700316, 62.854964607279335, 65.68882917171892, 5.6961491428500315, 15.242111268259332, 59.81045909825528, 11.429274497203131, 7.474988882090152, 7.473156512040544, 14.439214647218277, 48.82338860638711, 64.07746124596551, 34.04430797723312, 130.5971838850591, 28.797651622820304, 18.632029826466145, 110.11718466681207, 85.45774375738088, 32.964917682320674, 10.101350407958837, 5.279417029373103, 99.1099028685166, 30.273754714609748, 9.592193575072946, 11.306326797499246, 12.45231064874012, 15.430001617708111, 11.616579053475984, 5.7973427694369715, 26.088780216724736, 92.27068306539492, 9.785846989312427, 44.39239065689844, 7.693570161382036, 31.84625776829435, 6.592745519691982, 47.62829435660561, 5.56710827768435, 8.300416762564684, 63.21865337406027, 88.56222528090663, 7.8885787741721645, 9.698992560078914, 129.12614730759458, 27.860198923762592, 50.908947582993164, 49.51941402621811, 5.307522621517744, 15.447592267004964, 22.097954832835065, 29.5901125027215, 18.83378817758292, 50.00181411006887, 9.487870570866692, 153.3618089451998, 40.74226003061296, 49.45623928250359, 23.991200159358566, 14.629819243955154, 45.70756074626691, 66.73533869549021, 41.86413872115393, 14.973357395391771, 126.6167581072934, 45.49853324463058, 53.46673247747688, 62.17209455217563, 44.109600653861605, 5.705209246433812, 34.80376718959453, 39.31807714425226, 10.63856379763177, 59.42219539541428, 14.46577911181455, 12.034739798272899, 70.38019472555816, 47.53185779043906, 14.934256076783084, 9.046857268249944, 129.11465048890287, 61.35176157077592, 61.976260277968954, 18.64038973160635, 5.692059797370926, 72.89906053347669, 11.162051375345444, 102.76452735482874, 25.51868756560377, 5.032820289920981, 39.70638628759573, 49.465634940579385, 14.327586167152278, 106.85346857723258, 13.303930392844466, 15.98140935922739, 73.74822408408218, 35.486972840258936, 38.734697277629046, 26.536636812360182, 70.30877723894662, 6.6762927242724635, 6.498356971520733, 23.299454060771126, 15.593206972261347, 11.471135490134207, 111.63454411443027, 82.08089121945906, 32.61805166015208, 29.467375354334912, 115.11331243467444, 17.751508267152122, 27.00600732675138, 112.62871657753001, 36.80859715493863, 56.53037499560078, 8.664210799625542, 22.862966254905448, 76.23010965989491, 21.53762811542854, 22.809876496963142, 136.96367243069173, 62.215226341484424, 10.372081892904125, 49.14765346983024, 13.605337446282757, 39.900675145123074, 74.98432311184665, 12.297568710445843, 12.300193696187021, 12.132588774014932, 14.24451816752138, 92.96791039965488, 81.557476585549, 22.91998260754276, 15.319310333614158, 9.358221395736159, 12.35554736237724, 26.305235792024444, 79.34422214065593, 32.94529188830723, 30.942258176426567, 5.280987138223854, 63.16068724074347, 146.26602835398333, 22.326303422871675, 152.13194286028104, 154.7013472719303, 11.900351388266479, 6.255284022037051, 50.35543981001016, 23.305312357218895, 57.137087827741915, 51.11505319669887, 8.040696120590475, 32.72731227854063, 33.110510261434044, 80.93757877629602, 100.18596066576508, 40.17550809703657, 9.76582345744629, 86.92272310405508, 98.10612076347388, 54.74016445037314, 30.9886803180259, 17.59112292793257, 123.43399649378124, 88.10803575438781, 5.63061443840166, 12.787352258653398, 101.32010471462762, 152.26429382265536, 16.794455019522044, 10.617335212808344, 50.188220465050584, 23.6399325028437, 43.5117130567979, 46.062990470150474, 5.065983368014685, 18.962248754074476, 7.508548285345253, 126.38504323295314, 76.15647286229488, 11.94906445818911, 79.35692845165848, 25.58590973103495, 34.36792618486202, 20.392906030226666, 92.11645398048958, 14.194780134744464, 113.69175107444444, 5.563920390669043, 272.6403374981239, 6.303764056232231, 145.5292900996991, 14.222432546979613, 17.364727457716103, 5.088780016242822, 81.87427871057437, 73.32277013434219, 96.7774339334591, 61.14338218241887, 23.230120279055335, 21.421023542072124, 54.71125639099067, 7.466975978357532, 9.950306752838776, 115.23161183486157, 9.494199505392881, 32.738484112141606, 18.27475088048793, 73.90876969308508, 20.245783903358273, 79.61659583908092, 70.39598865616627, 10.397444832492717, 92.58796421440404, 261.51175009220856, 48.77850765151972, 12.52353667205301, 19.930333497434358, 34.22036786517207, 89.20767568069843, 111.72383392571274, 52.562932177964356, 96.3939278277004, 48.248426839046665, 17.500662481824723, 31.911598372416204, 26.484348675513036, 42.760705352161914, 11.275159492725319, 254.0786577132718, 36.0836280887654, 34.40250552815873, 61.78474760291879, 10.922677370297611, 19.3729383035906, 5.626601303413272, 36.532628906955715, 46.74827530188212, 29.739695723506124, 48.43720871964159, 6.955682036375023, 145.7753823516297, 37.53036397893447, 23.509949994672773, 8.910978754794957, 13.673946887744242, 6.431189712102838, 5.873555875856751, 13.766748905444114, 163.15796797067296, 32.64532903175157, 64.86164230178329, 12.607072550910988, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)