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 = 44354
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);
([3914392.1875, 4210445.3125, 4250709.375, 4284740.625, 4351318.75, 4376414.0625, 4597050.0, 4877331.25, 4880667.1875, 4880693.75, 5424607.8125, 6217464.0625, 6495059.375, 6555164.0625, 6555220.3125, 6590229.6875, 6593309.375, 6629450.0, 6643354.6875, 6647015.625, 6650387.5, 6661790.625, 6684689.0625, 6720587.5, 6851964.0625, 6862609.375, 6862628.125, 6862665.625, 6862900.0, 6862907.8125, 6864103.125, 6921273.4375, 6951082.8125, 6953881.25, 6959421.875, 6965096.875, 6978535.9375, 6990675.0, 6993134.375, 7001948.4375, 7002175.0, 7004300.0, 7007306.25, 7011637.5, 7011910.9375, 7017340.625, 7024995.3125, 7026545.3125, 7034878.125, 7035092.1875, 7038417.1875, 7043337.5, 7046585.9375, 7047704.6875, 7051142.1875, 7064428.125, 7071507.8125, 7086035.9375, 7086387.5, 7095129.6875, 7110010.9375, 7126853.125, 7138564.0625, 7147812.5, 7149909.375, 7153496.875, 7159154.6875, 7165307.8125, 7166420.3125, 7168528.125, 7169381.25, 7174018.75, 7181065.625, 7186460.9375, 7188229.6875, 7200681.25, 7205989.0625, 7205996.875, 7220517.1875, 7228460.9375, 7250628.125, 7253981.25, 7257646.875, 7294160.9375, 7335300.0, 7351903.125, 7359256.25, 7363220.3125, 7363848.4375, 7366604.6875, 7383125.0, 7410457.8125, 7419107.8125, 7424523.4375, 7437823.4375, 7457357.8125, 7530485.9375, 7539665.625, 7568429.6875, 7569192.1875, 7595150.0, 7597259.375, 7614664.0625, 7615998.4375, 7616009.375, 7621290.625, 7643879.6875, 7647142.1875, 7647167.1875, 7654060.9375, 7688553.125, 7731856.25, 7739771.875, 7831818.75, 7836837.5, 7877910.9375, 7887671.875, 7890059.375, 7894695.3125, 7897006.25, 7897045.3125, 7898156.25, 7920540.625, 7932045.3125, 7945879.6875, 7946743.75, 7953092.1875, 7969353.125, 7979854.6875, 7985918.75, 7986829.6875, 7987842.1875, 7988059.375, 7990315.625, 7991462.5, 7993160.9375, 8018906.25, 8020220.3125, 8020985.9375, 8021067.1875, 8021389.0625, 8021470.3125, 8038484.375, 8050376.5625, 8050457.8125, 8050678.125, 8050918.75, 8052404.6875, 8052434.375, 8055656.25, 8064159.375, 8066117.1875, 8067850.0, 8086817.1875, 8086831.25, 8091431.25, 8095418.75, 8096237.5, 8097843.75, 8123881.25, 8127692.1875, 8135940.625, 8137403.125, 8139498.4375, 8151660.9375, 8156971.875, 8160545.3125, 8162754.6875, 8164342.1875, 8164659.375, 8196756.25, 8207421.875, 8207439.0625, 8215851.5625, 8218434.375, 8245031.25, 8256631.25, 8274265.625, 8280153.125, 8282723.4375, 8294950.0, 8304276.5625, 8305162.5, 8320518.75, 8372926.5625, 8400637.5, 8405059.375, 8405064.0625, 8405067.1875, 8429453.125, 8454553.125, 8487185.9375, 8487267.1875, 8488760.9375, 8491931.25, 8520707.8125, 8527312.5, 8529401.5625, 8531637.5, 8561323.4375, 8567293.75, 8568396.875, 8578784.375, 8602859.375, 8607467.1875, 8607610.9375, 8623207.8125, 8649617.1875, 8652401.5625, 8652426.5625, 8684828.125, 8688709.375, 8688720.3125, 8691350.0, 8698126.5625, 8762400.0, 8762854.6875, 8798925.0, 8833357.8125, 8834085.9375, 8836489.0625, 8838857.8125, 8840021.875, 8842070.3125, 8846387.5, 8846698.4375, 8877546.875, 8927004.6875, 8928812.5, 8929682.8125, 8931434.375, 8934054.6875, 8934339.0625, 8936064.0625, 8939757.8125, 8940278.125, 8980656.25, 8982757.8125, 8997892.1875, 9000231.25, 9003718.75, 9044175.0, 9067525.0, 9072237.5, 9091681.25, 9112717.1875, 9124984.375, 9125223.4375, 9152228.125, 9154354.6875, 9167920.3125, 9170490.625, 9171132.8125, 9173846.875, 9177587.5, 9179748.4375, 9184667.1875, 9186440.625, 9186903.125, 9186907.8125, 9192285.9375, 9197029.6875, 9223943.75, 9256450.0, 9262576.5625, 9271039.0625, 9272371.875, 9274021.875, 9281353.125, 9333760.9375, 9335017.1875, 9337889.0625, 9347350.0, 9389132.8125, 9389310.9375, 9391704.6875, 9400407.8125, 9429168.75, 9431773.4375, 9459710.9375, 9460920.3125, 9461334.375, 9463034.375, 9464337.5, 9464373.4375, 9464457.8125, 9464748.4375, 9499425.0, 9503457.8125, 9504571.875, 9505553.125, 9505845.3125, 9507470.3125, 9508139.0625, 9508165.625, 9508709.375, 9508779.6875, 9510403.125, 9511857.8125, 9545371.875, 9545614.0625, 9545757.8125, 9551432.8125, 9560309.375, 9562017.1875, 9564006.25, 9573848.4375, 9574470.3125, 9575301.5625, 9575762.5, 9578865.625, 9581651.5625, 9584000.0, 9592114.0625, 9601501.5625, 9608265.625, 9609470.3125, 9609600.0, 9609845.3125, 9614679.6875, 9618851.5625, 9633778.125, 9640006.25, 9642948.4375, 9646015.625, 9647192.1875, 9652987.5, 9662356.25, 9663993.75, 9664240.625, 9664953.125, 9666835.9375, 9666925.0, 9668328.125, 9672237.5, 9675745.3125, 9677676.5625, 9677826.5625, 9682737.5, 9703801.5625, 9706835.9375, 9722939.0625, 9730198.4375, 9731801.5625, 9738839.0625, 9741685.9375, 9744475.0, 9748978.125, 9750501.5625, 9750557.8125, 9752215.625, 9752656.25, 9770381.25, 9796479.6875, 9797670.3125, 9798160.9375, 9808492.1875, 9817131.25, 9818739.0625, 9819689.0625, 9821618.75, 9829421.875, 9833668.75, 9834390.625, 9834553.125, 9835701.5625, 9837845.3125, 9840596.875, 9851923.4375, 9876810.9375, 9878306.25, 9878695.3125, 9887843.75, 9888237.5, 9891220.3125, 9891850.0, 9891989.0625, 9894046.875, 9899584.375, 9900576.5625, 9900860.9375, 9901542.1875, 9902417.1875, 9902717.1875, 9902728.125, 9903168.75, 9903562.5, 9904810.9375, 9906279.6875, 9907031.25, 9907051.5625, 9940860.9375, 9944390.625, 9948193.75, 9950817.1875, 9968682.8125, 9972432.8125, 9972546.875, 9972587.5, 9974281.25, 9977512.5, 9977629.6875, 9978250.0, 9978818.75, 9981206.25, 9992170.3125, 9992664.0625, 9996632.8125, 10013878.125, 10015479.6875, 10015728.125, 10016559.375, 10017885.9375, 10022851.5625, 10023084.375, 10025170.3125, 10027617.1875, 10040312.5, 10043553.125, 10046153.125, 10047609.375, 10052467.1875, 10053337.5, 10055595.3125, 10056814.0625, 10058901.5625, 10059745.3125, 10059828.125, 10065309.375, 10071910.9375, 10073181.25, 10073615.625, 10081443.75, 10088470.3125, 10088495.3125, 10088546.875, 10089007.8125, 10089139.0625, 10089570.3125, 10101450.0, 10101668.75, 10103485.9375, 10106387.5, 10107401.5625, 10108487.5, 10116018.75, 10123195.3125, 10123210.9375, 10123659.375, 10124020.3125, 10124265.625, 10124720.3125, 10125193.75, 10128423.4375, 10128442.1875, 10142115.625, 10154584.375, 10156773.4375, 10162817.1875, 10173665.625, 10189471.875, 10191270.3125, 10191364.0625, 10200062.5, 10205400.0, 10205407.8125, 10223592.1875, 10229376.5625, 10231709.375, 10233290.625, 10253025.0, 10262234.375, 10270957.8125, 10273929.6875, 10276593.75, 10276764.0625, 10284060.9375, 10285601.5625, 10293095.3125, 10301235.9375, 10309290.625, 10319832.8125, 10327584.375, 10328467.1875, 10331539.0625, 10333795.3125, 10336670.3125, 10338443.75, 10341007.8125, 10342157.8125, 10357804.6875, 10358631.25, 10378546.875, 10380464.0625, 10386879.6875, 10387754.6875, 10389350.0, 10389935.9375, 10391446.875, 10392971.875, 10393007.8125, 10395025.0, 10395264.0625, 10395323.4375, 10396048.4375, 10396206.25, 10402212.5, 10404918.75, 10408373.4375, 10415706.25, 10415871.875, 10423648.4375, 10424846.875, 10426404.6875, 10429500.0, 10430375.0, 10430379.6875, 10435240.625, 10438551.5625, 10441162.5, 10445300.0, 10445521.875, 10445625.0, 10446342.1875, 10460895.3125, 10464423.4375, 10471300.0, 10485648.4375, 10499979.6875, 10503859.375, 10507093.75, 10508045.3125, 10508196.875, 10511540.625, 10511748.4375, 10517785.9375, 10521487.5, 10523840.625, 10524090.625, 10525496.875, 10529104.6875, 10532189.0625, 10535095.3125, 10536023.4375, 10542556.25, 10544618.75, 10545500.0, 10551776.5625, 10552348.4375, 10562865.625, 10565206.25, 10565387.5, 10567118.75, 10567154.6875, 10576679.6875, 10576692.1875, 10577070.3125, 10577307.8125, 10578926.5625, 10602490.625, 10613092.1875, 10614735.9375, 10617906.25, 10622217.1875, 10623510.9375, 10624135.9375, 10624876.5625, 10625662.5, 10635942.1875, 10636656.25, 10638142.1875, 10655107.8125, 10658118.75, 10660231.25, 10661629.6875, 10664770.3125, 10666976.5625, 10666995.3125, 10669725.0, 10672354.6875, 10686471.875, 10696887.5, 10705182.8125, 10712315.625, 10713712.5, 10716123.4375, 10723995.3125, 10728559.375, 10730778.125, 10756031.25, 10757040.625, 10757065.625, 10773210.9375, 10780284.375, 10782843.75, 10783329.6875, 10783745.3125, 10785410.9375, 10785540.625, 10785590.625, 10787259.375, 10788268.75, 10789015.625, 10790131.25, 10791626.5625, 10795643.75, 10806234.375, 10821757.8125, 10860914.0625, 10863412.5, 10870507.8125, 10878456.25, 10879557.8125, 10883901.5625, 10889296.875, 10890592.1875, 10910943.75, 10915585.9375, 10916271.875, 10916834.375, 10917089.0625, 10920850.0, 10924146.875, 10924212.5, 10925607.8125, 10954100.0, 10954618.75, 10957351.5625, 10958835.9375, 10970226.5625, 10971993.75, 10981084.375, 10982232.8125, 10982745.3125, 10983912.5, 10994448.4375, 10995500.0, 10996650.0, 10998484.375, 10999679.6875, 11015690.625, 11026735.9375, 11030279.6875, 11031345.3125, 11031581.25, 11033114.0625, 11036209.375, 11037170.3125, 11039131.25, 11039748.4375, 11039870.3125, 11040070.3125, 11041642.1875, 11050689.0625, 11051542.1875, 11052300.0, 11052770.3125, 11056004.6875, 11060731.25, 11061771.875, 11062767.1875, 11064379.6875, 11065756.25, 11066529.6875, 11074273.4375, 11075154.6875, 11079473.4375, 11080123.4375, 11080234.375, 11080756.25, 11081662.5, 11082259.375, 11082351.5625, 11082828.125, 11083029.6875, 11083653.125, 11083898.4375, 11095534.375, 11103793.75, 11106620.3125, 11106778.125, 11106909.375, 11108303.125, 11111323.4375, 11112276.5625, 11132273.4375, 11133642.1875, 11151471.875, 11151931.25, 11152023.4375, 11152918.75, 11153134.375, 11156457.8125, 11157426.5625, 11160584.375, 11162246.875, 11170981.25, 11171987.5, 11175885.9375, 11183956.25, 11184862.5, 11190876.5625, 11190998.4375, 11191526.5625, 11192075.0, 11192571.875, 11193573.4375, 11194146.875, 11195040.625, 11199842.1875, 11200567.1875, 11202651.5625, 11203210.9375, 11203373.4375, 11206745.3125, 11230223.4375, 11235859.375, 11235884.375, 11236910.9375, 11237392.1875, 11237657.8125, 11241779.6875, 11241845.3125, 11242073.4375, 11248153.125, 11254135.9375, 11256312.5, 11261429.6875, 11265660.9375, 11265967.1875, 11266001.5625, 11270101.5625, 11271818.75, 11271875.0, 11275190.625, 11275507.8125, 11279750.0, 11280923.4375, 11280932.8125, 11293567.1875, 11294473.4375, 11294550.0, 11296326.5625, 11300165.625, 11300451.5625, 11301037.5, 11301846.875, 11302100.0, 11302109.375, 11302287.5, 11303306.25, 11303970.3125, 11304157.8125, 11305854.6875, 11306471.875, 11310496.875, 11312171.875, 11316334.375, 11334181.25, 11334451.5625, 11336210.9375, 11337320.3125, 11339173.4375, 11340090.625, 11341781.25, 11342018.75, 11342076.5625, 11342198.4375, 11343362.5, 11344248.4375, 11344392.1875, 11350359.375, 11351156.25, 11365650.0, 11365653.125, 11371937.5, 11374004.6875, 11374221.875, 11374640.625, 11375168.75, 11375606.25, 11376475.0, 11377667.1875, 11377684.375, 11377975.0, 11378956.25, 11379475.0, 11381660.9375, 11384073.4375, 11384521.875, 11386128.125, 11393789.0625, 11414942.1875, 11419478.125, 11421618.75, 11421921.875, 11423450.0, 11425567.1875, 11425754.6875, 11426781.25, 11426853.125, 11427215.625, 11427753.125, 11430582.8125, 11432992.1875, 11434879.6875, 11435739.0625, 11437971.875, 11442560.9375, 11445256.25, 11450184.375, 11451510.9375, 11451762.5, 11455295.3125, 11455576.5625, 11455690.625, 11456945.3125, 11458245.3125, 11465100.0, 11467029.6875, 11468140.625, 11468220.3125, 11473701.5625, 11478035.9375, 11485248.4375, 11490628.125, 11491035.9375, 11491551.5625, 11491712.5, 11491954.6875, 11492389.0625, 11495431.25, 11496217.1875, 11496223.4375, 11499287.5, 11508340.625, 11509059.375, 11514348.4375, 11516425.0, 11516429.6875, 11517348.4375, 11517643.75, 11517693.75, 11517746.875, 11518193.75, 11518214.0625, 11519082.8125, 11519371.875, 11519996.875, 11520143.75, 11537260.9375, 11540865.625, 11540890.625, 11541534.375, 11541656.25, 11541946.875, 11542417.1875, 11543468.75, 11543693.75, 11552478.125, 11553079.6875, 11553842.1875, 11554631.25, 11554685.9375, 11559146.875, 11561059.375, 11563339.0625, 11564876.5625, 11565606.25, 11568865.625, 11568887.5, 11568959.375, 11570039.0625, 11571979.6875, 11572006.25, 11580489.0625, 11587631.25, 11589143.75, 11592417.1875, 11592937.5, 11593278.125, 11601101.5625, 11601585.9375, 11604587.5, 11616145.3125, 11616950.0, 11618004.6875, 11620401.5625, 11620867.1875, 11621629.6875, 11622335.9375, 11623228.125, 11624473.4375, 11625304.6875, 11629257.8125, 11634881.25, 11646926.5625, 11647592.1875, 11648243.75, 11666450.0, 11666479.6875, 11667601.5625, 11669078.125, 11669396.875, 11675615.625, 11677371.875, 11677446.875, 11677732.8125, 11682106.25, 11682748.4375, 11693123.4375, 11697801.5625, 11700303.125, 11702134.375, 11702975.0, 11704229.6875, 11705321.875, 11724628.125, 11727604.6875, 11727609.375, 11730203.125, 11757195.3125, 11759134.375, 11777179.6875, 11784709.375, 11784709.375, 11785037.5, 11828696.875, 11861317.1875, 11864268.75, 11887490.625, 11888996.875, 11898950.0, 11918725.0, 11940482.8125, 11964626.5625, 12028920.3125, 12046175.0, 12047303.125, 12077092.1875, 12078153.125, 12081690.625, 12081695.3125, 12109907.8125, 12133837.5, 12157075.0, 12157093.75, 12187606.25, 12188209.375, 12194018.75, 12197157.8125, 12197823.4375, 12208926.5625, 12208992.1875, 12221957.8125, 12224507.8125, 12227246.875, 12232753.125, 12238640.625, 12258921.875, 12279264.0625, 12280304.6875, 12280323.4375, 12312262.5, 12323937.5, 12339154.6875, 12371954.6875, 12396995.3125, 12411170.3125, 12444076.5625, 12478848.4375, 12490128.125, 12644817.1875, 12992507.8125, 13045675.0, 13082971.875, 13360492.1875, 13434270.3125, 13484651.5625, 13537067.1875, 13545068.75, 13560998.4375, 13638703.125, 13692318.75, 13697203.125, 13734979.6875, 13769634.375, 13790723.4375, 13815489.0625, 14138832.8125, 14263756.25, 14298807.8125, 14309365.625, 14352303.125, 14389365.625, 14403873.4375, 14404301.5625, 14477553.125, 14559079.6875, 14560871.875, ...], [13.324374735397384, 43.998036913480405, 5.515691526292055, 9.565934293996326, 123.28205335062938, 55.48913947334838, 22.201233899737808, 14.46316130980232, 21.826317149344746, 17.019715769119742, 11.447379536636602, 5.47015359602036, 9.355386887872053, 17.708598237724864, 5.4206915871330565, 8.865854802587505, 66.72825706476154, 73.17263644233883, 6.0519486200557076, 101.95965178374882, 115.32567260946081, 220.3512304149899, 109.30558567081519, 161.711361293859, 20.149656847927726, 156.04460018125968, 95.09236495190345, 6.06460164890565, 53.20931873454428, 12.606242381614303, 78.44781391790715, 27.68069786820357, 10.759596256488805, 15.696963962885517, 47.13495745079625, 98.17364394364759, 16.273904427267937, 10.290392483927171, 5.935988003565356, 76.4718248770556, 6.967539655861507, 119.91371277568018, 12.836992342757453, 21.794458837625985, 38.60882504051817, 49.38364219796992, 31.014946362722476, 11.130675595455276, 32.65867618463055, 65.58734667759387, 38.84301853798944, 45.16425215400811, 35.769706908803116, 107.49884659065614, 19.869064223890355, 43.45996039598333, 56.56189248529456, 17.30958828869042, 25.23241705338865, 27.06582808468482, 78.45591796117435, 33.3384634659494, 6.878513310378574, 67.75528435812448, 21.857545791364828, 48.91981920985408, 5.677493714982998, 8.82534284312056, 188.0025890705693, 88.77346114411651, 88.31258724666978, 71.01499822810268, 28.91844048013588, 8.197487784968338, 117.91107512308344, 48.27425787544278, 85.21166656292348, 13.587158637111239, 7.407075871620945, 88.11004765747033, 95.1051227635501, 33.49239509785562, 8.36870786107008, 128.52794014145627, 53.49452818894534, 9.459162801855443, 7.482547139492452, 15.072329734450067, 50.80590408479135, 103.40397369437011, 31.860029281880408, 32.16465482246737, 5.222759362715525, 92.13959942354172, 26.427002081846336, 10.257466853032096, 11.647273986936959, 9.845300112139961, 22.08315983824425, 99.2371331698586, 16.04721950223747, 19.040252487631438, 45.77358555599881, 18.40818407810303, 12.530027983101794, 15.23640444341066, 155.58400552063287, 86.75347455054114, 28.167930925231246, 38.3252020864203, 12.077393615263734, 25.58656633526381, 25.31801242677775, 19.73490673501913, 10.408548377227417, 235.45159815326213, 23.456581573586313, 24.786169146518294, 5.668091804017302, 99.44547705492948, 52.00355257225095, 149.46193079380834, 44.154060214166144, 141.9633338901781, 8.67534154820863, 46.845373309385714, 76.22773676855462, 35.412419563106226, 72.0141494795972, 5.97593968116521, 24.393612897821164, 20.841220095851796, 10.577544687501652, 34.14516937340117, 52.19678081766772, 18.98193902075201, 38.626782320809134, 27.259621760441618, 99.13971971549752, 5.281781251349507, 42.591203305207394, 5.16975519424286, 73.6701090887221, 48.91126181917467, 6.254731448788722, 57.60287422922403, 128.5343950972363, 76.4670799533948, 11.258421160194404, 106.11937158101401, 17.616907122542415, 48.41474129163413, 66.40598194373457, 15.660199535738123, 5.93196146776874, 12.041039335699322, 14.625093574530446, 40.671147857167966, 138.6185788504445, 30.220447659988384, 13.257587732437898, 67.16645938217535, 36.234022892821415, 32.94251175353607, 42.512993498217526, 63.64887076042611, 113.78744068012954, 84.75251339260592, 9.98533386732685, 99.12764090340544, 5.95404047983219, 5.5177903931545345, 60.46886339440926, 176.23057150279593, 67.41799322801604, 12.911731190252928, 84.22271528005152, 21.0383700233711, 32.38754043241018, 21.609794838830688, 11.88865462078468, 51.053925734254506, 15.330714564250085, 53.36645072974704, 30.487085383614314, 40.99020513884653, 25.177591622587776, 73.01067260532322, 42.26124356782171, 30.603529326727376, 28.769508296351585, 95.24579018263942, 9.07714563016924, 16.635780362784917, 47.886610073479986, 5.3635487886808475, 54.95892960329806, 143.1954046267521, 35.95993564084988, 128.5234945135293, 134.5870208158915, 14.511541074884722, 288.4049915093834, 223.52158487126954, 53.61428361664384, 88.2798320562845, 109.1460430055787, 32.86131768903339, 142.11278666326868, 26.152291585007266, 138.4063007232978, 23.208243758021144, 144.56566459111687, 19.232123992914612, 29.312016063420668, 83.70317687563164, 58.4725439983933, 12.350085523825664, 102.70653439005594, 17.717146006572, 12.737886204786879, 92.43694477117748, 57.40411405036468, 37.53647277034701, 15.42926929583421, 41.78110584613079, 17.20029575943159, 8.617519629412115, 166.933273912234, 20.74046023785257, 33.248054303520085, 5.387776994205888, 48.56025179112149, 15.811691158391778, 18.053192220738303, 110.50465112067968, 8.847809635721578, 96.96344405653285, 20.8412309291244, 86.28386605212039, 13.914181338188722, 55.39687193350231, 30.87417939118868, 57.71222442717077, 56.988672722814826, 57.6193786912833, 12.594177652579924, 12.925254279476691, 45.4746838741382, 86.80892856266615, 31.197561203385536, 155.2646667071984, 5.491644378915024, 16.669934914421166, 67.50114188440311, 8.953915431828735, 95.51994243797292, 15.789960811641256, 46.36125102117164, 37.753325919912655, 16.458105533362517, 150.45477927151325, 20.955827464418878, 35.79812071419674, 14.132507628702552, 69.575139541637, 35.41853421352542, 43.57582601576572, 68.53408407965455, 28.971902475124132, 12.43220521906144, 145.70138283753866, 94.1113719695496, 59.644378517956945, 55.473104129346964, 9.444869826627937, 10.631052225800213, 37.349985833244375, 77.89313738438739, 35.0029852606572, 49.06236585649961, 33.84537150533349, 57.11627938670283, 5.787631030907019, 16.12904015594579, 5.066681875122369, 66.13014762804785, 34.02323494325775, 25.90104834957779, 127.92506104281026, 103.02703178545457, 17.680204986309793, 9.641373155017071, 20.758768382728356, 80.51015701940942, 11.758200702576936, 5.0359237241294865, 43.03575884222107, 23.540194328455954, 53.97087736374735, 10.025563430403656, 38.975087101821636, 93.10018583803611, 14.690424184315157, 55.21624563152795, 183.33220600143238, 15.219518487413724, 14.453392560364588, 29.633707845799126, 15.033553448329627, 6.068789368297628, 10.202864503931227, 30.137527950370593, 27.730272162643196, 5.167974111765538, 37.273954854114656, 72.97843586978665, 15.54389163943097, 72.27797619222584, 155.37883453911263, 70.36660436731883, 12.121340519937085, 24.71774311416157, 55.71770845828105, 9.311872390127938, 46.23725606470437, 43.69316435729553, 20.225178035609048, 8.472524430326025, 48.180794850702654, 31.98986578564798, 95.59819361083615, 54.99379687901816, 101.06215167762758, 17.345344601174546, 5.036676313947625, 29.879194428449853, 30.495778487452306, 17.5072012896133, 59.56139250899804, 12.71904990883023, 62.37863015569691, 31.240013994110132, 355.96145665804534, 50.329655776748865, 63.89703442863916, 81.04221481611297, 50.80441094185618, 93.03443156725174, 5.233881126786373, 10.499095879541951, 218.68302575357134, 14.107350390930474, 132.20530295105567, 54.330787421461565, 23.574530600472922, 53.70803138093727, 109.35231937030365, 86.17133370708073, 42.399914400493884, 36.29556813461439, 30.62487296282904, 16.081567030337894, 39.249067210207876, 173.00462749906006, 13.507764075921864, 18.534872219967383, 33.71772510956289, 63.66262427360141, 116.30404867098709, 13.47564171199517, 36.92793909999746, 246.56223073952782, 37.96759929419639, 9.99501633114343, 47.723091316471425, 86.1368155607713, 24.091052300064558, 79.72956229602305, 11.400816526019984, 261.7488522954104, 17.851656980010077, 238.09707819435465, 12.939859931880445, 7.947594479168817, 199.20812904457296, 68.5266878335356, 31.759233536680128, 23.553922186112032, 8.928801871946709, 34.405766077887726, 30.320543812313144, 18.01824085989296, 22.689712798735194, 38.53625009081995, 6.04754249590039, 9.84425375116182, 148.13842142756533, 57.169993876146435, 146.60537727247493, 186.59620842942482, 33.57775598497233, 7.47271743426994, 16.25945361628771, 48.26021796298878, 17.791948071507882, 104.4394859599539, 47.55124442010468, 304.79636118515447, 81.84173801682147, 96.76160591539274, 13.334498025552223, 59.91600531797442, 5.521468467182778, 50.15280064882995, 78.94301026442378, 12.107220268597928, 317.3522169875655, 108.36731836894178, 69.33297834928248, 12.279290468634242, 61.00629062502797, 57.3459225020222, 13.85468445401584, 14.198929815506647, 32.35647111028233, 41.963201519912694, 17.560193868442177, 6.160474278141372, 56.03815344539816, 35.39346788891584, 62.01081154646765, 40.13004009279741, 43.85728258818124, 15.218391454657695, 5.11769689122159, 84.94265543747271, 81.39622914785647, 75.04926610996472, 180.57439016516287, 18.410492940329707, 115.45731315881713, 41.73501840643812, 19.010006553602853, 94.41821608480019, 53.957686664214705, 116.51248989139314, 12.230995928803756, 27.04112226178999, 15.370981216159876, 49.92415135367561, 74.25167064470305, 16.490698410519034, 81.16522896836878, 44.02779334550378, 33.384221374830666, 30.407851141904878, 17.069252209259187, 11.41774123651965, 59.38511242268383, 57.70304451699758, 62.33411646881579, 30.313079885795844, 55.123073422980156, 46.11060612230129, 124.27773467735165, 18.9042898330685, 28.030997591607598, 12.879496037026911, 56.057436007923464, 107.80568962558038, 19.24344095805065, 144.8952403561467, 27.281453366193414, 171.6846996940525, 34.45940048996615, 12.02799750956841, 140.21738117345546, 34.877187726304484, 43.82385417786706, 26.576902330124234, 24.908531861018716, 19.803451275406726, 28.743301506290305, 64.92901173574411, 25.612809222347888, 22.719445004725948, 120.1870941357061, 26.362913454655786, 80.35132971665914, 9.281600433781545, 9.604844928406594, 19.324222775146623, 99.36571273928232, 144.34540349663754, 68.21881727588278, 136.88446080109014, 7.107511941562465, 14.270610830546131, 153.9329891688164, 9.245859938489039, 25.23813648427759, 11.90660188129084, 5.151608523599793, 50.89883397794345, 46.0105742380572, 13.767566238581711, 61.45441168901837, 253.93569290111526, 8.065291356794727, 38.95054768945447, 12.2821855624095, 39.95136498560345, 6.145421906494793, 42.67683351939493, 26.834747075949636, 8.495287389443742, 6.035944205815919, 48.070301631893365, 13.123875564957334, 31.916022806731185, 56.72899551551172, 32.82288601611796, 6.080132134802781, 17.878194880365147, 261.6993117250471, 17.430174378025868, 34.42685419860487, 148.7470366273132, 115.60433765902822, 75.01240470068912, 9.021511312243625, 29.651572522966713, 48.32011825254267, 80.907259011237, 40.37614275256179, 57.82257778042939, 39.27146124202255, 51.37371206774847, 53.63782551707631, 76.39600574513048, 69.64407404070165, 244.1433748364139, 24.931203370626104, 8.474760911377507, 105.31857295375623, 14.333065414425105, 65.33239213800073, 27.966763635950585, 53.87912593847528, 32.759286205809836, 8.71117076021601, 44.62856306846538, 19.35544304470714, 209.9704807455858, 17.445061494558253, 38.682386457552894, 189.7507462948773, 30.735744812870568, 94.1708969463515, 11.675930380940803, 37.22397220324795, 31.319727934843858, 5.809437839020029, 218.4353552657919, 7.636859689947459, 27.447510735376312, 51.82653174126504, 44.20539917471172, 29.01054647347128, 49.482315102872974, 94.84509452116967, 128.14828072434608, 160.3906186224264, 46.908225419935086, 151.99741879245025, 18.557196685362594, 5.318587932309022, 53.167448092666184, 61.906994281826115, 265.51385741262897, 18.906823193163376, 104.19990484601854, 34.78263797072269, 10.052169789372666, 76.25423602451914, 37.753491447516964, 17.528080810070968, 20.81310203558307, 16.50990646588842, 44.143924710365866, 221.06409860950203, 23.23161653533728, 19.127693519131572, 42.81780483430584, 9.428977961248048, 9.43382377403997, 11.55784505838068, 46.90425099802552, 32.90068502645332, 16.46965952712649, 6.794148541308112, 157.16763232242823, 12.738940870092494, 12.171341779708788, 10.534893199934487, 19.666691685038387, 21.85991592078787, 294.55503364717094, 37.45219243638411, 31.856333574010844, 61.99340927416107, 18.817171387500995, 47.79476564821016, 102.89077428659262, 63.95029292268568, 29.99579036246679, 73.21925195800767, 5.5116200375617606, 16.175957464441318, 30.221811973422554, 7.51960733631123, 16.1724858664445, 6.080992635626819, 104.26631012163432, 40.45587300934527, 18.224343063345678, 137.23318810825157, 18.210023272926854, 171.52246735073092, 28.372149716495784, 291.0737022318307, 47.15796408519614, 38.2326369464287, 127.25924366360769, 155.59178892454588, 291.38781052842205, 84.10234059523887, 61.7061934164798, 49.794591428226674, 80.92551617113617, 23.205961352062882, 75.0958754806432, 8.57595325617424, 14.061139406907463, 60.58922232613482, 406.31679757496653, 72.26144592934978, 47.42583438326047, 11.731069392976893, 19.655968144519118, 149.19734090720047, 32.75640310958805, 39.34231260627587, 48.599068133675786, 35.849945393391025, 57.972839967248035, 74.32538247703533, 56.89630522563321, 27.105924118067357, 38.22878902007986, 37.194584919725784, 76.08838850641172, 13.989850004393567, 343.1947978574011, 18.430851172849586, 46.67560808778761, 45.318239235561, 246.396189542149, 86.3055684110546, 93.96910720097551, 14.310043010274816, 54.275976855690935, 125.0391385113628, 25.289993819790702, 6.772476434134563, 107.50759416819842, 29.840134934590374, 16.840699237965836, 57.79824549097549, 150.1091842316449, 147.51361908341352, 55.193719867838894, 157.4570330049096, 281.376331945965, 32.45936595357043, 129.99751377459756, 104.53275908453575, 83.98044960858633, 122.64676828612095, 57.49648047559158, 68.72793923508301, 29.93516801009597, 196.71686780826047, 142.65250764585662, 51.70529652782128, 27.91564084170028, 47.178071545553344, 190.20665042750576, 9.181539278709216, 60.144414254687916, 26.07923293881765, 61.01347469437658, 17.953155668142088, 60.339525304349955, 85.81886284783073, 22.885790484521515, 168.7167228083631, 10.867707179814444, 119.19297738087472, 67.37489503241488, 10.891755240485278, 64.55145130827587, 6.972734395846236, 94.10241985345695, 147.72228562989474, 35.79596237684795, 45.33008702081317, 102.38341736396896, 8.530687992350575, 13.940085070690921, 13.693861437329113, 5.280110159927671, 27.45725527098452, 55.31618730421284, 5.253495071221241, 135.10404315897753, 80.94523594484318, 13.361189147787393, 70.00034889594994, 68.94605352698815, 17.99714204706259, 142.78191170396778, 10.617961517344694, 19.44756869906301, 15.426358334540977, 164.9614753061485, 50.52703813142129, 19.702056437472255, 24.23579709448117, 114.09915366650885, 5.2997689899223985, 35.09119741445651, 12.896837933124718, 105.18052149161534, 25.12582873413648, 10.0747802112351, 7.140171454982022, 7.967435860342792, 20.594289042604842, 17.78261289411805, 35.82427252985079, 83.330967062175, 30.240504553361767, 64.5382995197675, 16.21962879305925, 10.959509311961693, 28.503036769021687, 89.55202609408482, 17.280742689423494, 45.63702771563249, 59.34403070340278, 12.949668252479416, 41.957391727115485, 96.08509624478157, 48.202356908322436, 7.470084781147277, 60.743913154511176, 22.192435363733374, 99.17503899065557, 5.894043038134498, 15.671640909147353, 6.696421940855466, 26.905450702074393, 296.8168256446175, 11.429950768898397, 123.49058084328125, 107.26444719365506, 24.893037265767383, 230.85119087292887, 110.91077511093795, 81.02401067931102, 28.57449761210265, 97.52309581426348, 91.73452890212391, 5.600842058108813, 68.3638228302191, 25.371108338121868, 42.58829714165245, 6.231025875030936, 154.88520855139473, 74.88143874007774, 39.19607621642622, 52.82607587392765, 139.24221065777817, 13.230985702743375, 131.07505111882745, 8.028688370709522, 21.56762817854454, 94.59561277850317, 20.091564480321978, 53.215431167003864, 179.5441059501015, 51.73031955252456, 39.28901124607699, 36.29795262871217, 13.273881472357596, 47.23068943184208, 133.21761265094744, 97.43388107030064, 71.90786039775561, 8.64844918757395, 179.9965304712248, 76.13825777023852, 25.756790249649107, 27.171691413074345, 48.840674277012184, 8.489882615364097, 12.79994222116682, 43.62177750433884, 86.60104231380386, 6.128406641583225, 10.359858580080001, 8.811263493729404, 8.540171730618427, 11.054521120877531, 20.764278764792234, 83.79926259130598, 16.16110955648456, 305.323061394567, 15.740214731145334, 51.54702029600337, 18.65700998094883, 16.636878398381757, 22.969389554027494, 104.40696193877999, 24.418294501287964, 72.46244893212496, 7.096428005812711, 42.24942497797697, 53.80619963406075, 221.0842898426223, 10.374461897353996, 7.757009194475521, 6.2011400189002055, 69.70298549129252, 5.391635383083381, 5.2261855245151985, 162.75904670911356, 11.941526084483275, 53.536343190103324, 27.306540625150355, 89.34124537174569, 108.76107328076722, 133.73852873597255, 6.889402938376635, 44.66534289583991, 13.022303365027177, 70.14588057132161, 217.69336731236947, 79.35239873946873, 46.28779522048575, 233.95648021704596, 5.091157312464996, 34.01376955181799, 45.67251734338373, 32.47224824163339, 240.8092944806979, 32.46018606335363, 33.39271911653502, 42.29275523236547, 5.399242058636223, 125.7613162600294, 56.461992141115175, 85.09395156970606, 13.734999837287358, 38.409512883916754, 93.1040309229396, 91.13192369211302, 13.883961441018402, 31.11583501182684, 152.33974358744254, 27.918884669171014, 111.81525857982037, 14.588004542030346, 144.0033813562276, 58.729029284222754, 11.854893112198118, 319.69771977114794, 106.9453384411529, 11.837900698365837, 116.73703775923907, 18.10283786138076, 7.99679230645474, 11.630302012829675, 41.68991830321918, 26.761884501092425, 9.433379017715195, 161.32168692393634, 69.61659569741575, 22.24855704381948, 25.374461908008527, 169.3236494992011, 54.07538548710091, 39.90451494837914, 68.38532093635312, 5.114602500512523, 10.328667180819313, 212.74617174476612, 46.34918008105474, 39.32838643909923, 107.47658949819947, 68.97555524149257, 42.32441010222634, 257.82478549339476, 146.0044097424488, 7.295999107664863, 35.509251791506344, 83.75053415974632, 39.77205043544513, 122.54460015707241, 106.11796376593745, 21.857658779309947, 28.254061580367708, 99.96808400571662, 313.9802802272854, 77.92306962076256, 50.62057724748988, 7.3099470957129515, 60.79956987596485, 28.237080337082702, 18.76934436357183, 14.752170188632132, 203.63902863876174, 195.62191063079976, 73.71585737315866, 122.94555905820519, 15.98987731784504, 31.426196308139996, 110.72117418143789, 329.84889485269593, 97.51190208301134, 66.71189693909632, 60.03305602214933, 12.149159412479074, 21.030566778918313, 7.153844429526404, 101.95379693278574, 39.07711279389282, 30.177103842599095, 122.8001255707332, 29.750702985091326, 34.36795881684985, 57.400471854312904, 44.938692606680334, 121.42962395750757, 234.9072944647697, 24.388976178935234, 106.92695212098675, 26.48614931016283, 58.21433465490527, 22.166438454505656, 104.08148226858499, 69.79030845181613, 31.337864621980202, 29.84793955063901, 146.66476931597103, 29.377457588465305, 17.199901228226178, 169.75963660415252, 65.32923890685602, 175.2972096106421, 161.61540571280122, 64.38657902460976, 71.64250939172928, 70.57064740113296, 53.55322930344987, 22.71992047534115, 43.48236811510557, 16.731686706455665, 63.38984580263356, 27.94202723742777, 40.38383310102549, 49.69162186193294, 69.39278880306173, 6.455475216578506, 55.622276110671685, 23.327299951230113, 96.44955914581172, 9.769513620592345, 6.8849285256900075, 121.2593963789348, 21.28657982457591, 71.63543603425904, 60.52709688497063, 49.65192372525922, 13.199415237735266, 144.92135535161756, 27.25482935969207, 29.42315331294129, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3914392.1875, 4210445.3125, 4250709.375, 4284740.625, 4351318.75, 4376414.0625, 4597050.0, 4877331.25, 4880667.1875, 4880693.75, 5424607.8125, 6217464.0625, 6495059.375, 6555164.0625, 6555220.3125, 6590229.6875, 6593309.375, 6629450.0, 6643354.6875, 6647015.625, 6650387.5, 6661790.625, 6684689.0625, 6720587.5, 6851964.0625, 6862609.375, 6862628.125, 6862665.625, 6862900.0, 6862907.8125, 6864103.125, 6921273.4375, 6951082.8125, 6953881.25, 6959421.875, 6965096.875, 6978535.9375, 6990675.0, 6993134.375, 7001948.4375, 7002175.0, 7004300.0, 7007306.25, 7011637.5, 7011910.9375, 7017340.625, 7024995.3125, 7026545.3125, 7034878.125, 7035092.1875, 7038417.1875, 7043337.5, 7046585.9375, 7047704.6875, 7051142.1875, 7064428.125, 7071507.8125, 7086035.9375, 7086387.5, 7095129.6875, 7110010.9375, 7126853.125, 7138564.0625, 7147812.5, 7149909.375, 7153496.875, 7159154.6875, 7165307.8125, 7166420.3125, 7168528.125, 7169381.25, 7174018.75, 7181065.625, 7186460.9375, 7188229.6875, 7200681.25, 7205989.0625, 7205996.875, 7220517.1875, 7228460.9375, 7250628.125, 7253981.25, 7257646.875, 7294160.9375, 7335300.0, 7351903.125, 7359256.25, 7363220.3125, 7363848.4375, 7366604.6875, 7383125.0, 7410457.8125, 7419107.8125, 7424523.4375, 7437823.4375, 7457357.8125, 7530485.9375, 7539665.625, 7568429.6875, 7569192.1875, 7595150.0, 7597259.375, 7614664.0625, 7615998.4375, 7616009.375, 7621290.625, 7643879.6875, 7647142.1875, 7647167.1875, 7654060.9375, 7688553.125, 7731856.25, 7739771.875, 7831818.75, 7836837.5, 7877910.9375, 7887671.875, 7890059.375, 7894695.3125, 7897006.25, 7897045.3125, 7898156.25, 7920540.625, 7932045.3125, 7945879.6875, 7946743.75, 7953092.1875, 7969353.125, 7979854.6875, 7985918.75, 7986829.6875, 7987842.1875, 7988059.375, 7990315.625, 7991462.5, 7993160.9375, 8018906.25, 8020220.3125, 8020985.9375, 8021067.1875, 8021389.0625, 8021470.3125, 8038484.375, 8050376.5625, 8050457.8125, 8050678.125, 8050918.75, 8052404.6875, 8052434.375, 8055656.25, 8064159.375, 8066117.1875, 8067850.0, 8086817.1875, 8086831.25, 8091431.25, 8095418.75, 8096237.5, 8097843.75, 8123881.25, 8127692.1875, 8135940.625, 8137403.125, 8139498.4375, 8151660.9375, 8156971.875, 8160545.3125, 8162754.6875, 8164342.1875, 8164659.375, 8196756.25, 8207421.875, 8207439.0625, 8215851.5625, 8218434.375, 8245031.25, 8256631.25, 8274265.625, 8280153.125, 8282723.4375, 8294950.0, 8304276.5625, 8305162.5, 8320518.75, 8372926.5625, 8400637.5, 8405059.375, 8405064.0625, 8405067.1875, 8429453.125, 8454553.125, 8487185.9375, 8487267.1875, 8488760.9375, 8491931.25, 8520707.8125, 8527312.5, 8529401.5625, 8531637.5, 8561323.4375, 8567293.75, 8568396.875, 8578784.375, 8602859.375, 8607467.1875, 8607610.9375, 8623207.8125, 8649617.1875, 8652401.5625, 8652426.5625, 8684828.125, 8688709.375, 8688720.3125, 8691350.0, 8698126.5625, 8762400.0, 8762854.6875, 8798925.0, 8833357.8125, 8834085.9375, 8836489.0625, 8838857.8125, 8840021.875, 8842070.3125, 8846387.5, 8846698.4375, 8877546.875, 8927004.6875, 8928812.5, 8929682.8125, 8931434.375, 8934054.6875, 8934339.0625, 8936064.0625, 8939757.8125, 8940278.125, 8980656.25, 8982757.8125, 8997892.1875, 9000231.25, 9003718.75, 9044175.0, 9067525.0, 9072237.5, 9091681.25, 9112717.1875, 9124984.375, 9125223.4375, 9152228.125, 9154354.6875, 9167920.3125, 9170490.625, 9171132.8125, 9173846.875, 9177587.5, 9179748.4375, 9184667.1875, 9186440.625, 9186903.125, 9186907.8125, 9192285.9375, 9197029.6875, 9223943.75, 9256450.0, 9262576.5625, 9271039.0625, 9272371.875, 9274021.875, 9281353.125, 9333760.9375, 9335017.1875, 9337889.0625, 9347350.0, 9389132.8125, 9389310.9375, 9391704.6875, 9400407.8125, 9429168.75, 9431773.4375, 9459710.9375, 9460920.3125, 9461334.375, 9463034.375, 9464337.5, 9464373.4375, 9464457.8125, 9464748.4375, 9499425.0, 9503457.8125, 9504571.875, 9505553.125, 9505845.3125, 9507470.3125, 9508139.0625, 9508165.625, 9508709.375, 9508779.6875, 9510403.125, 9511857.8125, 9545371.875, 9545614.0625, 9545757.8125, 9551432.8125, 9560309.375, 9562017.1875, 9564006.25, 9573848.4375, 9574470.3125, 9575301.5625, 9575762.5, 9578865.625, 9581651.5625, 9584000.0, 9592114.0625, 9601501.5625, 9608265.625, 9609470.3125, 9609600.0, 9609845.3125, 9614679.6875, 9618851.5625, 9633778.125, 9640006.25, 9642948.4375, 9646015.625, 9647192.1875, 9652987.5, 9662356.25, 9663993.75, 9664240.625, 9664953.125, 9666835.9375, 9666925.0, 9668328.125, 9672237.5, 9675745.3125, 9677676.5625, 9677826.5625, 9682737.5, 9703801.5625, 9706835.9375, 9722939.0625, 9730198.4375, 9731801.5625, 9738839.0625, 9741685.9375, 9744475.0, 9748978.125, 9750501.5625, 9750557.8125, 9752215.625, 9752656.25, 9770381.25, 9796479.6875, 9797670.3125, 9798160.9375, 9808492.1875, 9817131.25, 9818739.0625, 9819689.0625, 9821618.75, 9829421.875, 9833668.75, 9834390.625, 9834553.125, 9835701.5625, 9837845.3125, 9840596.875, 9851923.4375, 9876810.9375, 9878306.25, 9878695.3125, 9887843.75, 9888237.5, 9891220.3125, 9891850.0, 9891989.0625, 9894046.875, 9899584.375, 9900576.5625, 9900860.9375, 9901542.1875, 9902417.1875, 9902717.1875, 9902728.125, 9903168.75, 9903562.5, 9904810.9375, 9906279.6875, 9907031.25, 9907051.5625, 9940860.9375, 9944390.625, 9948193.75, 9950817.1875, 9968682.8125, 9972432.8125, 9972546.875, 9972587.5, 9974281.25, 9977512.5, 9977629.6875, 9978250.0, 9978818.75, 9981206.25, 9992170.3125, 9992664.0625, 9996632.8125, 10013878.125, 10015479.6875, 10015728.125, 10016559.375, 10017885.9375, 10022851.5625, 10023084.375, 10025170.3125, 10027617.1875, 10040312.5, 10043553.125, 10046153.125, 10047609.375, 10052467.1875, 10053337.5, 10055595.3125, 10056814.0625, 10058901.5625, 10059745.3125, 10059828.125, 10065309.375, 10071910.9375, 10073181.25, 10073615.625, 10081443.75, 10088470.3125, 10088495.3125, 10088546.875, 10089007.8125, 10089139.0625, 10089570.3125, 10101450.0, 10101668.75, 10103485.9375, 10106387.5, 10107401.5625, 10108487.5, 10116018.75, 10123195.3125, 10123210.9375, 10123659.375, 10124020.3125, 10124265.625, 10124720.3125, 10125193.75, 10128423.4375, 10128442.1875, 10142115.625, 10154584.375, 10156773.4375, 10162817.1875, 10173665.625, 10189471.875, 10191270.3125, 10191364.0625, 10200062.5, 10205400.0, 10205407.8125, 10223592.1875, 10229376.5625, 10231709.375, 10233290.625, 10253025.0, 10262234.375, 10270957.8125, 10273929.6875, 10276593.75, 10276764.0625, 10284060.9375, 10285601.5625, 10293095.3125, 10301235.9375, 10309290.625, 10319832.8125, 10327584.375, 10328467.1875, 10331539.0625, 10333795.3125, 10336670.3125, 10338443.75, 10341007.8125, 10342157.8125, 10357804.6875, 10358631.25, 10378546.875, 10380464.0625, 10386879.6875, 10387754.6875, 10389350.0, 10389935.9375, 10391446.875, 10392971.875, 10393007.8125, 10395025.0, 10395264.0625, 10395323.4375, 10396048.4375, 10396206.25, 10402212.5, 10404918.75, 10408373.4375, 10415706.25, 10415871.875, 10423648.4375, 10424846.875, 10426404.6875, 10429500.0, 10430375.0, 10430379.6875, 10435240.625, 10438551.5625, 10441162.5, 10445300.0, 10445521.875, 10445625.0, 10446342.1875, 10460895.3125, 10464423.4375, 10471300.0, 10485648.4375, 10499979.6875, 10503859.375, 10507093.75, 10508045.3125, 10508196.875, 10511540.625, 10511748.4375, 10517785.9375, 10521487.5, 10523840.625, 10524090.625, 10525496.875, 10529104.6875, 10532189.0625, 10535095.3125, 10536023.4375, 10542556.25, 10544618.75, 10545500.0, 10551776.5625, 10552348.4375, 10562865.625, 10565206.25, 10565387.5, 10567118.75, 10567154.6875, 10576679.6875, 10576692.1875, 10577070.3125, 10577307.8125, 10578926.5625, 10602490.625, 10613092.1875, 10614735.9375, 10617906.25, 10622217.1875, 10623510.9375, 10624135.9375, 10624876.5625, 10625662.5, 10635942.1875, 10636656.25, 10638142.1875, 10655107.8125, 10658118.75, 10660231.25, 10661629.6875, 10664770.3125, 10666976.5625, 10666995.3125, 10669725.0, 10672354.6875, 10686471.875, 10696887.5, 10705182.8125, 10712315.625, 10713712.5, 10716123.4375, 10723995.3125, 10728559.375, 10730778.125, 10756031.25, 10757040.625, 10757065.625, 10773210.9375, 10780284.375, 10782843.75, 10783329.6875, 10783745.3125, 10785410.9375, 10785540.625, 10785590.625, 10787259.375, 10788268.75, 10789015.625, 10790131.25, 10791626.5625, 10795643.75, 10806234.375, 10821757.8125, 10860914.0625, 10863412.5, 10870507.8125, 10878456.25, 10879557.8125, 10883901.5625, 10889296.875, 10890592.1875, 10910943.75, 10915585.9375, 10916271.875, 10916834.375, 10917089.0625, 10920850.0, 10924146.875, 10924212.5, 10925607.8125, 10954100.0, 10954618.75, 10957351.5625, 10958835.9375, 10970226.5625, 10971993.75, 10981084.375, 10982232.8125, 10982745.3125, 10983912.5, 10994448.4375, 10995500.0, 10996650.0, 10998484.375, 10999679.6875, 11015690.625, 11026735.9375, 11030279.6875, 11031345.3125, 11031581.25, 11033114.0625, 11036209.375, 11037170.3125, 11039131.25, 11039748.4375, 11039870.3125, 11040070.3125, 11041642.1875, 11050689.0625, 11051542.1875, 11052300.0, 11052770.3125, 11056004.6875, 11060731.25, 11061771.875, 11062767.1875, 11064379.6875, 11065756.25, 11066529.6875, 11074273.4375, 11075154.6875, 11079473.4375, 11080123.4375, 11080234.375, 11080756.25, 11081662.5, 11082259.375, 11082351.5625, 11082828.125, 11083029.6875, 11083653.125, 11083898.4375, 11095534.375, 11103793.75, 11106620.3125, 11106778.125, 11106909.375, 11108303.125, 11111323.4375, 11112276.5625, 11132273.4375, 11133642.1875, 11151471.875, 11151931.25, 11152023.4375, 11152918.75, 11153134.375, 11156457.8125, 11157426.5625, 11160584.375, 11162246.875, 11170981.25, 11171987.5, 11175885.9375, 11183956.25, 11184862.5, 11190876.5625, 11190998.4375, 11191526.5625, 11192075.0, 11192571.875, 11193573.4375, 11194146.875, 11195040.625, 11199842.1875, 11200567.1875, 11202651.5625, 11203210.9375, 11203373.4375, 11206745.3125, 11230223.4375, 11235859.375, 11235884.375, 11236910.9375, 11237392.1875, 11237657.8125, 11241779.6875, 11241845.3125, 11242073.4375, 11248153.125, 11254135.9375, 11256312.5, 11261429.6875, 11265660.9375, 11265967.1875, 11266001.5625, 11270101.5625, 11271818.75, 11271875.0, 11275190.625, 11275507.8125, 11279750.0, 11280923.4375, 11280932.8125, 11293567.1875, 11294473.4375, 11294550.0, 11296326.5625, 11300165.625, 11300451.5625, 11301037.5, 11301846.875, 11302100.0, 11302109.375, 11302287.5, 11303306.25, 11303970.3125, 11304157.8125, 11305854.6875, 11306471.875, 11310496.875, 11312171.875, 11316334.375, 11334181.25, 11334451.5625, 11336210.9375, 11337320.3125, 11339173.4375, 11340090.625, 11341781.25, 11342018.75, 11342076.5625, 11342198.4375, 11343362.5, 11344248.4375, 11344392.1875, 11350359.375, 11351156.25, 11365650.0, 11365653.125, 11371937.5, 11374004.6875, 11374221.875, 11374640.625, 11375168.75, 11375606.25, 11376475.0, 11377667.1875, 11377684.375, 11377975.0, 11378956.25, 11379475.0, 11381660.9375, 11384073.4375, 11384521.875, 11386128.125, 11393789.0625, 11414942.1875, 11419478.125, 11421618.75, 11421921.875, 11423450.0, 11425567.1875, 11425754.6875, 11426781.25, 11426853.125, 11427215.625, 11427753.125, 11430582.8125, 11432992.1875, 11434879.6875, 11435739.0625, 11437971.875, 11442560.9375, 11445256.25, 11450184.375, 11451510.9375, 11451762.5, 11455295.3125, 11455576.5625, 11455690.625, 11456945.3125, 11458245.3125, 11465100.0, 11467029.6875, 11468140.625, 11468220.3125, 11473701.5625, 11478035.9375, 11485248.4375, 11490628.125, 11491035.9375, 11491551.5625, 11491712.5, 11491954.6875, 11492389.0625, 11495431.25, 11496217.1875, 11496223.4375, 11499287.5, 11508340.625, 11509059.375, 11514348.4375, 11516425.0, 11516429.6875, 11517348.4375, 11517643.75, 11517693.75, 11517746.875, 11518193.75, 11518214.0625, 11519082.8125, 11519371.875, 11519996.875, 11520143.75, 11537260.9375, 11540865.625, 11540890.625, 11541534.375, 11541656.25, 11541946.875, 11542417.1875, 11543468.75, 11543693.75, 11552478.125, 11553079.6875, 11553842.1875, 11554631.25, 11554685.9375, 11559146.875, 11561059.375, 11563339.0625, 11564876.5625, 11565606.25, 11568865.625, 11568887.5, 11568959.375, 11570039.0625, 11571979.6875, 11572006.25, 11580489.0625, 11587631.25, 11589143.75, 11592417.1875, 11592937.5, 11593278.125, 11601101.5625, 11601585.9375, 11604587.5, 11616145.3125, 11616950.0, 11618004.6875, 11620401.5625, 11620867.1875, 11621629.6875, 11622335.9375, 11623228.125, 11624473.4375, 11625304.6875, 11629257.8125, 11634881.25, 11646926.5625, 11647592.1875, 11648243.75, 11666450.0, 11666479.6875, 11667601.5625, 11669078.125, 11669396.875, 11675615.625, 11677371.875, 11677446.875, 11677732.8125, 11682106.25, 11682748.4375, 11693123.4375, 11697801.5625, 11700303.125, 11702134.375, 11702975.0, 11704229.6875, 11705321.875, 11724628.125, 11727604.6875, 11727609.375, 11730203.125, 11757195.3125, 11759134.375, 11777179.6875, 11784709.375, 11784709.375, 11785037.5, 11828696.875, 11861317.1875, 11864268.75, 11887490.625, 11888996.875, 11898950.0, 11918725.0, 11940482.8125, 11964626.5625, 12028920.3125, 12046175.0, 12047303.125, 12077092.1875, 12078153.125, 12081690.625, 12081695.3125, 12109907.8125, 12133837.5, 12157075.0, 12157093.75, 12187606.25, 12188209.375, 12194018.75, 12197157.8125, 12197823.4375, 12208926.5625, 12208992.1875, 12221957.8125, 12224507.8125, 12227246.875, 12232753.125, 12238640.625, 12258921.875, 12279264.0625, 12280304.6875, 12280323.4375, 12312262.5, 12323937.5, 12339154.6875, 12371954.6875, 12396995.3125, 12411170.3125, 12444076.5625, 12478848.4375, 12490128.125, 12644817.1875, 12992507.8125, 13045675.0, 13082971.875, 13360492.1875, 13434270.3125, 13484651.5625, 13537067.1875, 13545068.75, 13560998.4375, 13638703.125, 13692318.75, 13697203.125, 13734979.6875, 13769634.375, 13790723.4375, 13815489.0625, 14138832.8125, 14263756.25, 14298807.8125, 14309365.625, 14352303.125, 14389365.625, 14403873.4375, 14404301.5625, 14477553.125, 14559079.6875, 14560871.875, ...], [13.324374735397384, 43.998036913480405, 5.515691526292055, 9.565934293996326, 123.28205335062938, 55.48913947334838, 22.201233899737808, 14.46316130980232, 21.826317149344746, 17.019715769119742, 11.447379536636602, 5.47015359602036, 9.355386887872053, 17.708598237724864, 5.4206915871330565, 8.865854802587505, 66.72825706476154, 73.17263644233883, 6.0519486200557076, 101.95965178374882, 115.32567260946081, 220.3512304149899, 109.30558567081519, 161.711361293859, 20.149656847927726, 156.04460018125968, 95.09236495190345, 6.06460164890565, 53.20931873454428, 12.606242381614303, 78.44781391790715, 27.68069786820357, 10.759596256488805, 15.696963962885517, 47.13495745079625, 98.17364394364759, 16.273904427267937, 10.290392483927171, 5.935988003565356, 76.4718248770556, 6.967539655861507, 119.91371277568018, 12.836992342757453, 21.794458837625985, 38.60882504051817, 49.38364219796992, 31.014946362722476, 11.130675595455276, 32.65867618463055, 65.58734667759387, 38.84301853798944, 45.16425215400811, 35.769706908803116, 107.49884659065614, 19.869064223890355, 43.45996039598333, 56.56189248529456, 17.30958828869042, 25.23241705338865, 27.06582808468482, 78.45591796117435, 33.3384634659494, 6.878513310378574, 67.75528435812448, 21.857545791364828, 48.91981920985408, 5.677493714982998, 8.82534284312056, 188.0025890705693, 88.77346114411651, 88.31258724666978, 71.01499822810268, 28.91844048013588, 8.197487784968338, 117.91107512308344, 48.27425787544278, 85.21166656292348, 13.587158637111239, 7.407075871620945, 88.11004765747033, 95.1051227635501, 33.49239509785562, 8.36870786107008, 128.52794014145627, 53.49452818894534, 9.459162801855443, 7.482547139492452, 15.072329734450067, 50.80590408479135, 103.40397369437011, 31.860029281880408, 32.16465482246737, 5.222759362715525, 92.13959942354172, 26.427002081846336, 10.257466853032096, 11.647273986936959, 9.845300112139961, 22.08315983824425, 99.2371331698586, 16.04721950223747, 19.040252487631438, 45.77358555599881, 18.40818407810303, 12.530027983101794, 15.23640444341066, 155.58400552063287, 86.75347455054114, 28.167930925231246, 38.3252020864203, 12.077393615263734, 25.58656633526381, 25.31801242677775, 19.73490673501913, 10.408548377227417, 235.45159815326213, 23.456581573586313, 24.786169146518294, 5.668091804017302, 99.44547705492948, 52.00355257225095, 149.46193079380834, 44.154060214166144, 141.9633338901781, 8.67534154820863, 46.845373309385714, 76.22773676855462, 35.412419563106226, 72.0141494795972, 5.97593968116521, 24.393612897821164, 20.841220095851796, 10.577544687501652, 34.14516937340117, 52.19678081766772, 18.98193902075201, 38.626782320809134, 27.259621760441618, 99.13971971549752, 5.281781251349507, 42.591203305207394, 5.16975519424286, 73.6701090887221, 48.91126181917467, 6.254731448788722, 57.60287422922403, 128.5343950972363, 76.4670799533948, 11.258421160194404, 106.11937158101401, 17.616907122542415, 48.41474129163413, 66.40598194373457, 15.660199535738123, 5.93196146776874, 12.041039335699322, 14.625093574530446, 40.671147857167966, 138.6185788504445, 30.220447659988384, 13.257587732437898, 67.16645938217535, 36.234022892821415, 32.94251175353607, 42.512993498217526, 63.64887076042611, 113.78744068012954, 84.75251339260592, 9.98533386732685, 99.12764090340544, 5.95404047983219, 5.5177903931545345, 60.46886339440926, 176.23057150279593, 67.41799322801604, 12.911731190252928, 84.22271528005152, 21.0383700233711, 32.38754043241018, 21.609794838830688, 11.88865462078468, 51.053925734254506, 15.330714564250085, 53.36645072974704, 30.487085383614314, 40.99020513884653, 25.177591622587776, 73.01067260532322, 42.26124356782171, 30.603529326727376, 28.769508296351585, 95.24579018263942, 9.07714563016924, 16.635780362784917, 47.886610073479986, 5.3635487886808475, 54.95892960329806, 143.1954046267521, 35.95993564084988, 128.5234945135293, 134.5870208158915, 14.511541074884722, 288.4049915093834, 223.52158487126954, 53.61428361664384, 88.2798320562845, 109.1460430055787, 32.86131768903339, 142.11278666326868, 26.152291585007266, 138.4063007232978, 23.208243758021144, 144.56566459111687, 19.232123992914612, 29.312016063420668, 83.70317687563164, 58.4725439983933, 12.350085523825664, 102.70653439005594, 17.717146006572, 12.737886204786879, 92.43694477117748, 57.40411405036468, 37.53647277034701, 15.42926929583421, 41.78110584613079, 17.20029575943159, 8.617519629412115, 166.933273912234, 20.74046023785257, 33.248054303520085, 5.387776994205888, 48.56025179112149, 15.811691158391778, 18.053192220738303, 110.50465112067968, 8.847809635721578, 96.96344405653285, 20.8412309291244, 86.28386605212039, 13.914181338188722, 55.39687193350231, 30.87417939118868, 57.71222442717077, 56.988672722814826, 57.6193786912833, 12.594177652579924, 12.925254279476691, 45.4746838741382, 86.80892856266615, 31.197561203385536, 155.2646667071984, 5.491644378915024, 16.669934914421166, 67.50114188440311, 8.953915431828735, 95.51994243797292, 15.789960811641256, 46.36125102117164, 37.753325919912655, 16.458105533362517, 150.45477927151325, 20.955827464418878, 35.79812071419674, 14.132507628702552, 69.575139541637, 35.41853421352542, 43.57582601576572, 68.53408407965455, 28.971902475124132, 12.43220521906144, 145.70138283753866, 94.1113719695496, 59.644378517956945, 55.473104129346964, 9.444869826627937, 10.631052225800213, 37.349985833244375, 77.89313738438739, 35.0029852606572, 49.06236585649961, 33.84537150533349, 57.11627938670283, 5.787631030907019, 16.12904015594579, 5.066681875122369, 66.13014762804785, 34.02323494325775, 25.90104834957779, 127.92506104281026, 103.02703178545457, 17.680204986309793, 9.641373155017071, 20.758768382728356, 80.51015701940942, 11.758200702576936, 5.0359237241294865, 43.03575884222107, 23.540194328455954, 53.97087736374735, 10.025563430403656, 38.975087101821636, 93.10018583803611, 14.690424184315157, 55.21624563152795, 183.33220600143238, 15.219518487413724, 14.453392560364588, 29.633707845799126, 15.033553448329627, 6.068789368297628, 10.202864503931227, 30.137527950370593, 27.730272162643196, 5.167974111765538, 37.273954854114656, 72.97843586978665, 15.54389163943097, 72.27797619222584, 155.37883453911263, 70.36660436731883, 12.121340519937085, 24.71774311416157, 55.71770845828105, 9.311872390127938, 46.23725606470437, 43.69316435729553, 20.225178035609048, 8.472524430326025, 48.180794850702654, 31.98986578564798, 95.59819361083615, 54.99379687901816, 101.06215167762758, 17.345344601174546, 5.036676313947625, 29.879194428449853, 30.495778487452306, 17.5072012896133, 59.56139250899804, 12.71904990883023, 62.37863015569691, 31.240013994110132, 355.96145665804534, 50.329655776748865, 63.89703442863916, 81.04221481611297, 50.80441094185618, 93.03443156725174, 5.233881126786373, 10.499095879541951, 218.68302575357134, 14.107350390930474, 132.20530295105567, 54.330787421461565, 23.574530600472922, 53.70803138093727, 109.35231937030365, 86.17133370708073, 42.399914400493884, 36.29556813461439, 30.62487296282904, 16.081567030337894, 39.249067210207876, 173.00462749906006, 13.507764075921864, 18.534872219967383, 33.71772510956289, 63.66262427360141, 116.30404867098709, 13.47564171199517, 36.92793909999746, 246.56223073952782, 37.96759929419639, 9.99501633114343, 47.723091316471425, 86.1368155607713, 24.091052300064558, 79.72956229602305, 11.400816526019984, 261.7488522954104, 17.851656980010077, 238.09707819435465, 12.939859931880445, 7.947594479168817, 199.20812904457296, 68.5266878335356, 31.759233536680128, 23.553922186112032, 8.928801871946709, 34.405766077887726, 30.320543812313144, 18.01824085989296, 22.689712798735194, 38.53625009081995, 6.04754249590039, 9.84425375116182, 148.13842142756533, 57.169993876146435, 146.60537727247493, 186.59620842942482, 33.57775598497233, 7.47271743426994, 16.25945361628771, 48.26021796298878, 17.791948071507882, 104.4394859599539, 47.55124442010468, 304.79636118515447, 81.84173801682147, 96.76160591539274, 13.334498025552223, 59.91600531797442, 5.521468467182778, 50.15280064882995, 78.94301026442378, 12.107220268597928, 317.3522169875655, 108.36731836894178, 69.33297834928248, 12.279290468634242, 61.00629062502797, 57.3459225020222, 13.85468445401584, 14.198929815506647, 32.35647111028233, 41.963201519912694, 17.560193868442177, 6.160474278141372, 56.03815344539816, 35.39346788891584, 62.01081154646765, 40.13004009279741, 43.85728258818124, 15.218391454657695, 5.11769689122159, 84.94265543747271, 81.39622914785647, 75.04926610996472, 180.57439016516287, 18.410492940329707, 115.45731315881713, 41.73501840643812, 19.010006553602853, 94.41821608480019, 53.957686664214705, 116.51248989139314, 12.230995928803756, 27.04112226178999, 15.370981216159876, 49.92415135367561, 74.25167064470305, 16.490698410519034, 81.16522896836878, 44.02779334550378, 33.384221374830666, 30.407851141904878, 17.069252209259187, 11.41774123651965, 59.38511242268383, 57.70304451699758, 62.33411646881579, 30.313079885795844, 55.123073422980156, 46.11060612230129, 124.27773467735165, 18.9042898330685, 28.030997591607598, 12.879496037026911, 56.057436007923464, 107.80568962558038, 19.24344095805065, 144.8952403561467, 27.281453366193414, 171.6846996940525, 34.45940048996615, 12.02799750956841, 140.21738117345546, 34.877187726304484, 43.82385417786706, 26.576902330124234, 24.908531861018716, 19.803451275406726, 28.743301506290305, 64.92901173574411, 25.612809222347888, 22.719445004725948, 120.1870941357061, 26.362913454655786, 80.35132971665914, 9.281600433781545, 9.604844928406594, 19.324222775146623, 99.36571273928232, 144.34540349663754, 68.21881727588278, 136.88446080109014, 7.107511941562465, 14.270610830546131, 153.9329891688164, 9.245859938489039, 25.23813648427759, 11.90660188129084, 5.151608523599793, 50.89883397794345, 46.0105742380572, 13.767566238581711, 61.45441168901837, 253.93569290111526, 8.065291356794727, 38.95054768945447, 12.2821855624095, 39.95136498560345, 6.145421906494793, 42.67683351939493, 26.834747075949636, 8.495287389443742, 6.035944205815919, 48.070301631893365, 13.123875564957334, 31.916022806731185, 56.72899551551172, 32.82288601611796, 6.080132134802781, 17.878194880365147, 261.6993117250471, 17.430174378025868, 34.42685419860487, 148.7470366273132, 115.60433765902822, 75.01240470068912, 9.021511312243625, 29.651572522966713, 48.32011825254267, 80.907259011237, 40.37614275256179, 57.82257778042939, 39.27146124202255, 51.37371206774847, 53.63782551707631, 76.39600574513048, 69.64407404070165, 244.1433748364139, 24.931203370626104, 8.474760911377507, 105.31857295375623, 14.333065414425105, 65.33239213800073, 27.966763635950585, 53.87912593847528, 32.759286205809836, 8.71117076021601, 44.62856306846538, 19.35544304470714, 209.9704807455858, 17.445061494558253, 38.682386457552894, 189.7507462948773, 30.735744812870568, 94.1708969463515, 11.675930380940803, 37.22397220324795, 31.319727934843858, 5.809437839020029, 218.4353552657919, 7.636859689947459, 27.447510735376312, 51.82653174126504, 44.20539917471172, 29.01054647347128, 49.482315102872974, 94.84509452116967, 128.14828072434608, 160.3906186224264, 46.908225419935086, 151.99741879245025, 18.557196685362594, 5.318587932309022, 53.167448092666184, 61.906994281826115, 265.51385741262897, 18.906823193163376, 104.19990484601854, 34.78263797072269, 10.052169789372666, 76.25423602451914, 37.753491447516964, 17.528080810070968, 20.81310203558307, 16.50990646588842, 44.143924710365866, 221.06409860950203, 23.23161653533728, 19.127693519131572, 42.81780483430584, 9.428977961248048, 9.43382377403997, 11.55784505838068, 46.90425099802552, 32.90068502645332, 16.46965952712649, 6.794148541308112, 157.16763232242823, 12.738940870092494, 12.171341779708788, 10.534893199934487, 19.666691685038387, 21.85991592078787, 294.55503364717094, 37.45219243638411, 31.856333574010844, 61.99340927416107, 18.817171387500995, 47.79476564821016, 102.89077428659262, 63.95029292268568, 29.99579036246679, 73.21925195800767, 5.5116200375617606, 16.175957464441318, 30.221811973422554, 7.51960733631123, 16.1724858664445, 6.080992635626819, 104.26631012163432, 40.45587300934527, 18.224343063345678, 137.23318810825157, 18.210023272926854, 171.52246735073092, 28.372149716495784, 291.0737022318307, 47.15796408519614, 38.2326369464287, 127.25924366360769, 155.59178892454588, 291.38781052842205, 84.10234059523887, 61.7061934164798, 49.794591428226674, 80.92551617113617, 23.205961352062882, 75.0958754806432, 8.57595325617424, 14.061139406907463, 60.58922232613482, 406.31679757496653, 72.26144592934978, 47.42583438326047, 11.731069392976893, 19.655968144519118, 149.19734090720047, 32.75640310958805, 39.34231260627587, 48.599068133675786, 35.849945393391025, 57.972839967248035, 74.32538247703533, 56.89630522563321, 27.105924118067357, 38.22878902007986, 37.194584919725784, 76.08838850641172, 13.989850004393567, 343.1947978574011, 18.430851172849586, 46.67560808778761, 45.318239235561, 246.396189542149, 86.3055684110546, 93.96910720097551, 14.310043010274816, 54.275976855690935, 125.0391385113628, 25.289993819790702, 6.772476434134563, 107.50759416819842, 29.840134934590374, 16.840699237965836, 57.79824549097549, 150.1091842316449, 147.51361908341352, 55.193719867838894, 157.4570330049096, 281.376331945965, 32.45936595357043, 129.99751377459756, 104.53275908453575, 83.98044960858633, 122.64676828612095, 57.49648047559158, 68.72793923508301, 29.93516801009597, 196.71686780826047, 142.65250764585662, 51.70529652782128, 27.91564084170028, 47.178071545553344, 190.20665042750576, 9.181539278709216, 60.144414254687916, 26.07923293881765, 61.01347469437658, 17.953155668142088, 60.339525304349955, 85.81886284783073, 22.885790484521515, 168.7167228083631, 10.867707179814444, 119.19297738087472, 67.37489503241488, 10.891755240485278, 64.55145130827587, 6.972734395846236, 94.10241985345695, 147.72228562989474, 35.79596237684795, 45.33008702081317, 102.38341736396896, 8.530687992350575, 13.940085070690921, 13.693861437329113, 5.280110159927671, 27.45725527098452, 55.31618730421284, 5.253495071221241, 135.10404315897753, 80.94523594484318, 13.361189147787393, 70.00034889594994, 68.94605352698815, 17.99714204706259, 142.78191170396778, 10.617961517344694, 19.44756869906301, 15.426358334540977, 164.9614753061485, 50.52703813142129, 19.702056437472255, 24.23579709448117, 114.09915366650885, 5.2997689899223985, 35.09119741445651, 12.896837933124718, 105.18052149161534, 25.12582873413648, 10.0747802112351, 7.140171454982022, 7.967435860342792, 20.594289042604842, 17.78261289411805, 35.82427252985079, 83.330967062175, 30.240504553361767, 64.5382995197675, 16.21962879305925, 10.959509311961693, 28.503036769021687, 89.55202609408482, 17.280742689423494, 45.63702771563249, 59.34403070340278, 12.949668252479416, 41.957391727115485, 96.08509624478157, 48.202356908322436, 7.470084781147277, 60.743913154511176, 22.192435363733374, 99.17503899065557, 5.894043038134498, 15.671640909147353, 6.696421940855466, 26.905450702074393, 296.8168256446175, 11.429950768898397, 123.49058084328125, 107.26444719365506, 24.893037265767383, 230.85119087292887, 110.91077511093795, 81.02401067931102, 28.57449761210265, 97.52309581426348, 91.73452890212391, 5.600842058108813, 68.3638228302191, 25.371108338121868, 42.58829714165245, 6.231025875030936, 154.88520855139473, 74.88143874007774, 39.19607621642622, 52.82607587392765, 139.24221065777817, 13.230985702743375, 131.07505111882745, 8.028688370709522, 21.56762817854454, 94.59561277850317, 20.091564480321978, 53.215431167003864, 179.5441059501015, 51.73031955252456, 39.28901124607699, 36.29795262871217, 13.273881472357596, 47.23068943184208, 133.21761265094744, 97.43388107030064, 71.90786039775561, 8.64844918757395, 179.9965304712248, 76.13825777023852, 25.756790249649107, 27.171691413074345, 48.840674277012184, 8.489882615364097, 12.79994222116682, 43.62177750433884, 86.60104231380386, 6.128406641583225, 10.359858580080001, 8.811263493729404, 8.540171730618427, 11.054521120877531, 20.764278764792234, 83.79926259130598, 16.16110955648456, 305.323061394567, 15.740214731145334, 51.54702029600337, 18.65700998094883, 16.636878398381757, 22.969389554027494, 104.40696193877999, 24.418294501287964, 72.46244893212496, 7.096428005812711, 42.24942497797697, 53.80619963406075, 221.0842898426223, 10.374461897353996, 7.757009194475521, 6.2011400189002055, 69.70298549129252, 5.391635383083381, 5.2261855245151985, 162.75904670911356, 11.941526084483275, 53.536343190103324, 27.306540625150355, 89.34124537174569, 108.76107328076722, 133.73852873597255, 6.889402938376635, 44.66534289583991, 13.022303365027177, 70.14588057132161, 217.69336731236947, 79.35239873946873, 46.28779522048575, 233.95648021704596, 5.091157312464996, 34.01376955181799, 45.67251734338373, 32.47224824163339, 240.8092944806979, 32.46018606335363, 33.39271911653502, 42.29275523236547, 5.399242058636223, 125.7613162600294, 56.461992141115175, 85.09395156970606, 13.734999837287358, 38.409512883916754, 93.1040309229396, 91.13192369211302, 13.883961441018402, 31.11583501182684, 152.33974358744254, 27.918884669171014, 111.81525857982037, 14.588004542030346, 144.0033813562276, 58.729029284222754, 11.854893112198118, 319.69771977114794, 106.9453384411529, 11.837900698365837, 116.73703775923907, 18.10283786138076, 7.99679230645474, 11.630302012829675, 41.68991830321918, 26.761884501092425, 9.433379017715195, 161.32168692393634, 69.61659569741575, 22.24855704381948, 25.374461908008527, 169.3236494992011, 54.07538548710091, 39.90451494837914, 68.38532093635312, 5.114602500512523, 10.328667180819313, 212.74617174476612, 46.34918008105474, 39.32838643909923, 107.47658949819947, 68.97555524149257, 42.32441010222634, 257.82478549339476, 146.0044097424488, 7.295999107664863, 35.509251791506344, 83.75053415974632, 39.77205043544513, 122.54460015707241, 106.11796376593745, 21.857658779309947, 28.254061580367708, 99.96808400571662, 313.9802802272854, 77.92306962076256, 50.62057724748988, 7.3099470957129515, 60.79956987596485, 28.237080337082702, 18.76934436357183, 14.752170188632132, 203.63902863876174, 195.62191063079976, 73.71585737315866, 122.94555905820519, 15.98987731784504, 31.426196308139996, 110.72117418143789, 329.84889485269593, 97.51190208301134, 66.71189693909632, 60.03305602214933, 12.149159412479074, 21.030566778918313, 7.153844429526404, 101.95379693278574, 39.07711279389282, 30.177103842599095, 122.8001255707332, 29.750702985091326, 34.36795881684985, 57.400471854312904, 44.938692606680334, 121.42962395750757, 234.9072944647697, 24.388976178935234, 106.92695212098675, 26.48614931016283, 58.21433465490527, 22.166438454505656, 104.08148226858499, 69.79030845181613, 31.337864621980202, 29.84793955063901, 146.66476931597103, 29.377457588465305, 17.199901228226178, 169.75963660415252, 65.32923890685602, 175.2972096106421, 161.61540571280122, 64.38657902460976, 71.64250939172928, 70.57064740113296, 53.55322930344987, 22.71992047534115, 43.48236811510557, 16.731686706455665, 63.38984580263356, 27.94202723742777, 40.38383310102549, 49.69162186193294, 69.39278880306173, 6.455475216578506, 55.622276110671685, 23.327299951230113, 96.44955914581172, 9.769513620592345, 6.8849285256900075, 121.2593963789348, 21.28657982457591, 71.63543603425904, 60.52709688497063, 49.65192372525922, 13.199415237735266, 144.92135535161756, 27.25482935969207, 29.42315331294129, ...])
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);
([3914392.1875, 4210445.3125, 4250709.375, 4284740.625, 4351318.75, 4376414.0625, 4597050.0, 4877331.25, 4880667.1875, 4880693.75, 5424607.8125, 6217464.0625, 6495059.375, 6555164.0625, 6555220.3125, 6590229.6875, 6593309.375, 6629450.0, 6643354.6875, 6647015.625, 6650387.5, 6661790.625, 6684689.0625, 6720587.5, 6851964.0625, 6862609.375, 6862628.125, 6862665.625, 6862900.0, 6862907.8125, 6864103.125, 6921273.4375, 6951082.8125, 6953881.25, 6959421.875, 6965096.875, 6978535.9375, 6990675.0, 6993134.375, 7001948.4375, 7002175.0, 7004300.0, 7007306.25, 7011637.5, 7011910.9375, 7017340.625, 7024995.3125, 7026545.3125, 7034878.125, 7035092.1875, 7038417.1875, 7043337.5, 7046585.9375, 7047704.6875, 7051142.1875, 7064428.125, 7071507.8125, 7086035.9375, 7086387.5, 7095129.6875, 7110010.9375, 7126853.125, 7138564.0625, 7147812.5, 7149909.375, 7153496.875, 7159154.6875, 7165307.8125, 7166420.3125, 7168528.125, 7169381.25, 7174018.75, 7181065.625, 7186460.9375, 7188229.6875, 7200681.25, 7205989.0625, 7205996.875, 7220517.1875, 7228460.9375, 7250628.125, 7253981.25, 7257646.875, 7294160.9375, 7335300.0, 7351903.125, 7359256.25, 7363220.3125, 7363848.4375, 7366604.6875, 7383125.0, 7410457.8125, 7419107.8125, 7424523.4375, 7437823.4375, 7457357.8125, 7530485.9375, 7539665.625, 7568429.6875, 7569192.1875, 7595150.0, 7597259.375, 7614664.0625, 7615998.4375, 7616009.375, 7621290.625, 7643879.6875, 7647142.1875, 7647167.1875, 7654060.9375, 7688553.125, 7731856.25, 7739771.875, 7831818.75, 7836837.5, 7877910.9375, 7887671.875, 7890059.375, 7894695.3125, 7897006.25, 7897045.3125, 7898156.25, 7920540.625, 7932045.3125, 7945879.6875, 7946743.75, 7953092.1875, 7969353.125, 7979854.6875, 7985918.75, 7986829.6875, 7987842.1875, 7988059.375, 7990315.625, 7991462.5, 7993160.9375, 8018906.25, 8020220.3125, 8020985.9375, 8021067.1875, 8021389.0625, 8021470.3125, 8038484.375, 8050376.5625, 8050457.8125, 8050678.125, 8050918.75, 8052404.6875, 8052434.375, 8055656.25, 8064159.375, 8066117.1875, 8067850.0, 8086817.1875, 8086831.25, 8091431.25, 8095418.75, 8096237.5, 8097843.75, 8123881.25, 8127692.1875, 8135940.625, 8137403.125, 8139498.4375, 8151660.9375, 8156971.875, 8160545.3125, 8162754.6875, 8164342.1875, 8164659.375, 8196756.25, 8207421.875, 8207439.0625, 8215851.5625, 8218434.375, 8245031.25, 8256631.25, 8274265.625, 8280153.125, 8282723.4375, 8294950.0, 8304276.5625, 8305162.5, 8320518.75, 8372926.5625, 8400637.5, 8405059.375, 8405064.0625, 8405067.1875, 8429453.125, 8454553.125, 8487185.9375, 8487267.1875, 8488760.9375, 8491931.25, 8520707.8125, 8527312.5, 8529401.5625, 8531637.5, 8561323.4375, 8567293.75, 8568396.875, 8578784.375, 8602859.375, 8607467.1875, 8607610.9375, 8623207.8125, 8649617.1875, 8652401.5625, 8652426.5625, 8684828.125, 8688709.375, 8688720.3125, 8691350.0, 8698126.5625, 8762400.0, 8762854.6875, 8798925.0, 8833357.8125, 8834085.9375, 8836489.0625, 8838857.8125, 8840021.875, 8842070.3125, 8846387.5, 8846698.4375, 8877546.875, 8927004.6875, 8928812.5, 8929682.8125, 8931434.375, 8934054.6875, 8934339.0625, 8936064.0625, 8939757.8125, 8940278.125, 8980656.25, 8982757.8125, 8997892.1875, 9000231.25, 9003718.75, 9044175.0, 9067525.0, 9072237.5, 9091681.25, 9112717.1875, 9124984.375, 9125223.4375, 9152228.125, 9154354.6875, 9167920.3125, 9170490.625, 9171132.8125, 9173846.875, 9177587.5, 9179748.4375, 9184667.1875, 9186440.625, 9186903.125, 9186907.8125, 9192285.9375, 9197029.6875, 9223943.75, 9256450.0, 9262576.5625, 9271039.0625, 9272371.875, 9274021.875, 9281353.125, 9333760.9375, 9335017.1875, 9337889.0625, 9347350.0, 9389132.8125, 9389310.9375, 9391704.6875, 9400407.8125, 9429168.75, 9431773.4375, 9459710.9375, 9460920.3125, 9461334.375, 9463034.375, 9464337.5, 9464373.4375, 9464457.8125, 9464748.4375, 9499425.0, 9503457.8125, 9504571.875, 9505553.125, 9505845.3125, 9507470.3125, 9508139.0625, 9508165.625, 9508709.375, 9508779.6875, 9510403.125, 9511857.8125, 9545371.875, 9545614.0625, 9545757.8125, 9551432.8125, 9560309.375, 9562017.1875, 9564006.25, 9573848.4375, 9574470.3125, 9575301.5625, 9575762.5, 9578865.625, 9581651.5625, 9584000.0, 9592114.0625, 9601501.5625, 9608265.625, 9609470.3125, 9609600.0, 9609845.3125, 9614679.6875, 9618851.5625, 9633778.125, 9640006.25, 9642948.4375, 9646015.625, 9647192.1875, 9652987.5, 9662356.25, 9663993.75, 9664240.625, 9664953.125, 9666835.9375, 9666925.0, 9668328.125, 9672237.5, 9675745.3125, 9677676.5625, 9677826.5625, 9682737.5, 9703801.5625, 9706835.9375, 9722939.0625, 9730198.4375, 9731801.5625, 9738839.0625, 9741685.9375, 9744475.0, 9748978.125, 9750501.5625, 9750557.8125, 9752215.625, 9752656.25, 9770381.25, 9796479.6875, 9797670.3125, 9798160.9375, 9808492.1875, 9817131.25, 9818739.0625, 9819689.0625, 9821618.75, 9829421.875, 9833668.75, 9834390.625, 9834553.125, 9835701.5625, 9837845.3125, 9840596.875, 9851923.4375, 9876810.9375, 9878306.25, 9878695.3125, 9887843.75, 9888237.5, 9891220.3125, 9891850.0, 9891989.0625, 9894046.875, 9899584.375, 9900576.5625, 9900860.9375, 9901542.1875, 9902417.1875, 9902717.1875, 9902728.125, 9903168.75, 9903562.5, 9904810.9375, 9906279.6875, 9907031.25, 9907051.5625, 9940860.9375, 9944390.625, 9948193.75, 9950817.1875, 9968682.8125, 9972432.8125, 9972546.875, 9972587.5, 9974281.25, 9977512.5, 9977629.6875, 9978250.0, 9978818.75, 9981206.25, 9992170.3125, 9992664.0625, 9996632.8125, 10013878.125, 10015479.6875, 10015728.125, 10016559.375, 10017885.9375, 10022851.5625, 10023084.375, 10025170.3125, 10027617.1875, 10040312.5, 10043553.125, 10046153.125, 10047609.375, 10052467.1875, 10053337.5, 10055595.3125, 10056814.0625, 10058901.5625, 10059745.3125, 10059828.125, 10065309.375, 10071910.9375, 10073181.25, 10073615.625, 10081443.75, 10088470.3125, 10088495.3125, 10088546.875, 10089007.8125, 10089139.0625, 10089570.3125, 10101450.0, 10101668.75, 10103485.9375, 10106387.5, 10107401.5625, 10108487.5, 10116018.75, 10123195.3125, 10123210.9375, 10123659.375, 10124020.3125, 10124265.625, 10124720.3125, 10125193.75, 10128423.4375, 10128442.1875, 10142115.625, 10154584.375, 10156773.4375, 10162817.1875, 10173665.625, 10189471.875, 10191270.3125, 10191364.0625, 10200062.5, 10205400.0, 10205407.8125, 10223592.1875, 10229376.5625, 10231709.375, 10233290.625, 10253025.0, 10262234.375, 10270957.8125, 10273929.6875, 10276593.75, 10276764.0625, 10284060.9375, 10285601.5625, 10293095.3125, 10301235.9375, 10309290.625, 10319832.8125, 10327584.375, 10328467.1875, 10331539.0625, 10333795.3125, 10336670.3125, 10338443.75, 10341007.8125, 10342157.8125, 10357804.6875, 10358631.25, 10378546.875, 10380464.0625, 10386879.6875, 10387754.6875, 10389350.0, 10389935.9375, 10391446.875, 10392971.875, 10393007.8125, 10395025.0, 10395264.0625, 10395323.4375, 10396048.4375, 10396206.25, 10402212.5, 10404918.75, 10408373.4375, 10415706.25, 10415871.875, 10423648.4375, 10424846.875, 10426404.6875, 10429500.0, 10430375.0, 10430379.6875, 10435240.625, 10438551.5625, 10441162.5, 10445300.0, 10445521.875, 10445625.0, 10446342.1875, 10460895.3125, 10464423.4375, 10471300.0, 10485648.4375, 10499979.6875, 10503859.375, 10507093.75, 10508045.3125, 10508196.875, 10511540.625, 10511748.4375, 10517785.9375, 10521487.5, 10523840.625, 10524090.625, 10525496.875, 10529104.6875, 10532189.0625, 10535095.3125, 10536023.4375, 10542556.25, 10544618.75, 10545500.0, 10551776.5625, 10552348.4375, 10562865.625, 10565206.25, 10565387.5, 10567118.75, 10567154.6875, 10576679.6875, 10576692.1875, 10577070.3125, 10577307.8125, 10578926.5625, 10602490.625, 10613092.1875, 10614735.9375, 10617906.25, 10622217.1875, 10623510.9375, 10624135.9375, 10624876.5625, 10625662.5, 10635942.1875, 10636656.25, 10638142.1875, 10655107.8125, 10658118.75, 10660231.25, 10661629.6875, 10664770.3125, 10666976.5625, 10666995.3125, 10669725.0, 10672354.6875, 10686471.875, 10696887.5, 10705182.8125, 10712315.625, 10713712.5, 10716123.4375, 10723995.3125, 10728559.375, 10730778.125, 10756031.25, 10757040.625, 10757065.625, 10773210.9375, 10780284.375, 10782843.75, 10783329.6875, 10783745.3125, 10785410.9375, 10785540.625, 10785590.625, 10787259.375, 10788268.75, 10789015.625, 10790131.25, 10791626.5625, 10795643.75, 10806234.375, 10821757.8125, 10860914.0625, 10863412.5, 10870507.8125, 10878456.25, 10879557.8125, 10883901.5625, 10889296.875, 10890592.1875, 10910943.75, 10915585.9375, 10916271.875, 10916834.375, 10917089.0625, 10920850.0, 10924146.875, 10924212.5, 10925607.8125, 10954100.0, 10954618.75, 10957351.5625, 10958835.9375, 10970226.5625, 10971993.75, 10981084.375, 10982232.8125, 10982745.3125, 10983912.5, 10994448.4375, 10995500.0, 10996650.0, 10998484.375, 10999679.6875, 11015690.625, 11026735.9375, 11030279.6875, 11031345.3125, 11031581.25, 11033114.0625, 11036209.375, 11037170.3125, 11039131.25, 11039748.4375, 11039870.3125, 11040070.3125, 11041642.1875, 11050689.0625, 11051542.1875, 11052300.0, 11052770.3125, 11056004.6875, 11060731.25, 11061771.875, 11062767.1875, 11064379.6875, 11065756.25, 11066529.6875, 11074273.4375, 11075154.6875, 11079473.4375, 11080123.4375, 11080234.375, 11080756.25, 11081662.5, 11082259.375, 11082351.5625, 11082828.125, 11083029.6875, 11083653.125, 11083898.4375, 11095534.375, 11103793.75, 11106620.3125, 11106778.125, 11106909.375, 11108303.125, 11111323.4375, 11112276.5625, 11132273.4375, 11133642.1875, 11151471.875, 11151931.25, 11152023.4375, 11152918.75, 11153134.375, 11156457.8125, 11157426.5625, 11160584.375, 11162246.875, 11170981.25, 11171987.5, 11175885.9375, 11183956.25, 11184862.5, 11190876.5625, 11190998.4375, 11191526.5625, 11192075.0, 11192571.875, 11193573.4375, 11194146.875, 11195040.625, 11199842.1875, 11200567.1875, 11202651.5625, 11203210.9375, 11203373.4375, 11206745.3125, 11230223.4375, 11235859.375, 11235884.375, 11236910.9375, 11237392.1875, 11237657.8125, 11241779.6875, 11241845.3125, 11242073.4375, 11248153.125, 11254135.9375, 11256312.5, 11261429.6875, 11265660.9375, 11265967.1875, 11266001.5625, 11270101.5625, 11271818.75, 11271875.0, 11275190.625, 11275507.8125, 11279750.0, 11280923.4375, 11280932.8125, 11293567.1875, 11294473.4375, 11294550.0, 11296326.5625, 11300165.625, 11300451.5625, 11301037.5, 11301846.875, 11302100.0, 11302109.375, 11302287.5, 11303306.25, 11303970.3125, 11304157.8125, 11305854.6875, 11306471.875, 11310496.875, 11312171.875, 11316334.375, 11334181.25, 11334451.5625, 11336210.9375, 11337320.3125, 11339173.4375, 11340090.625, 11341781.25, 11342018.75, 11342076.5625, 11342198.4375, 11343362.5, 11344248.4375, 11344392.1875, 11350359.375, 11351156.25, 11365650.0, 11365653.125, 11371937.5, 11374004.6875, 11374221.875, 11374640.625, 11375168.75, 11375606.25, 11376475.0, 11377667.1875, 11377684.375, 11377975.0, 11378956.25, 11379475.0, 11381660.9375, 11384073.4375, 11384521.875, 11386128.125, 11393789.0625, 11414942.1875, 11419478.125, 11421618.75, 11421921.875, 11423450.0, 11425567.1875, 11425754.6875, 11426781.25, 11426853.125, 11427215.625, 11427753.125, 11430582.8125, 11432992.1875, 11434879.6875, 11435739.0625, 11437971.875, 11442560.9375, 11445256.25, 11450184.375, 11451510.9375, 11451762.5, 11455295.3125, 11455576.5625, 11455690.625, 11456945.3125, 11458245.3125, 11465100.0, 11467029.6875, 11468140.625, 11468220.3125, 11473701.5625, 11478035.9375, 11485248.4375, 11490628.125, 11491035.9375, 11491551.5625, 11491712.5, 11491954.6875, 11492389.0625, 11495431.25, 11496217.1875, 11496223.4375, 11499287.5, 11508340.625, 11509059.375, 11514348.4375, 11516425.0, 11516429.6875, 11517348.4375, 11517643.75, 11517693.75, 11517746.875, 11518193.75, 11518214.0625, 11519082.8125, 11519371.875, 11519996.875, 11520143.75, 11537260.9375, 11540865.625, 11540890.625, 11541534.375, 11541656.25, 11541946.875, 11542417.1875, 11543468.75, 11543693.75, 11552478.125, 11553079.6875, 11553842.1875, 11554631.25, 11554685.9375, 11559146.875, 11561059.375, 11563339.0625, 11564876.5625, 11565606.25, 11568865.625, 11568887.5, 11568959.375, 11570039.0625, 11571979.6875, 11572006.25, 11580489.0625, 11587631.25, 11589143.75, 11592417.1875, 11592937.5, 11593278.125, 11601101.5625, 11601585.9375, 11604587.5, 11616145.3125, 11616950.0, 11618004.6875, 11620401.5625, 11620867.1875, 11621629.6875, 11622335.9375, 11623228.125, 11624473.4375, 11625304.6875, 11629257.8125, 11634881.25, 11646926.5625, 11647592.1875, 11648243.75, 11666450.0, 11666479.6875, 11667601.5625, 11669078.125, 11669396.875, 11675615.625, 11677371.875, 11677446.875, 11677732.8125, 11682106.25, 11682748.4375, 11693123.4375, 11697801.5625, 11700303.125, 11702134.375, 11702975.0, 11704229.6875, 11705321.875, 11724628.125, 11727604.6875, 11727609.375, 11730203.125, 11757195.3125, 11759134.375, 11777179.6875, 11784709.375, 11784709.375, 11785037.5, 11828696.875, 11861317.1875, 11864268.75, 11887490.625, 11888996.875, 11898950.0, 11918725.0, 11940482.8125, 11964626.5625, 12028920.3125, 12046175.0, 12047303.125, 12077092.1875, 12078153.125, 12081690.625, 12081695.3125, 12109907.8125, 12133837.5, 12157075.0, 12157093.75, 12187606.25, 12188209.375, 12194018.75, 12197157.8125, 12197823.4375, 12208926.5625, 12208992.1875, 12221957.8125, 12224507.8125, 12227246.875, 12232753.125, 12238640.625, 12258921.875, 12279264.0625, 12280304.6875, 12280323.4375, 12312262.5, 12323937.5, 12339154.6875, 12371954.6875, 12396995.3125, 12411170.3125, 12444076.5625, 12478848.4375, 12490128.125, 12644817.1875, 12992507.8125, 13045675.0, 13082971.875, 13360492.1875, 13434270.3125, 13484651.5625, 13537067.1875, 13545068.75, 13560998.4375, 13638703.125, 13692318.75, 13697203.125, 13734979.6875, 13769634.375, 13790723.4375, 13815489.0625, 14138832.8125, 14263756.25, 14298807.8125, 14309365.625, 14352303.125, 14389365.625, 14403873.4375, 14404301.5625, 14477553.125, 14559079.6875, 14560871.875, ...], [13.324374735397384, 43.998036913480405, 5.515691526292055, 9.565934293996326, 123.28205335062938, 55.48913947334838, 22.201233899737808, 14.46316130980232, 21.826317149344746, 17.019715769119742, 11.447379536636602, 5.47015359602036, 9.355386887872053, 17.708598237724864, 5.4206915871330565, 8.865854802587505, 66.72825706476154, 73.17263644233883, 6.0519486200557076, 101.95965178374882, 115.32567260946081, 220.3512304149899, 109.30558567081519, 161.711361293859, 20.149656847927726, 156.04460018125968, 95.09236495190345, 6.06460164890565, 53.20931873454428, 12.606242381614303, 78.44781391790715, 27.68069786820357, 10.759596256488805, 15.696963962885517, 47.13495745079625, 98.17364394364759, 16.273904427267937, 10.290392483927171, 5.935988003565356, 76.4718248770556, 6.967539655861507, 119.91371277568018, 12.836992342757453, 21.794458837625985, 38.60882504051817, 49.38364219796992, 31.014946362722476, 11.130675595455276, 32.65867618463055, 65.58734667759387, 38.84301853798944, 45.16425215400811, 35.769706908803116, 107.49884659065614, 19.869064223890355, 43.45996039598333, 56.56189248529456, 17.30958828869042, 25.23241705338865, 27.06582808468482, 78.45591796117435, 33.3384634659494, 6.878513310378574, 67.75528435812448, 21.857545791364828, 48.91981920985408, 5.677493714982998, 8.82534284312056, 188.0025890705693, 88.77346114411651, 88.31258724666978, 71.01499822810268, 28.91844048013588, 8.197487784968338, 117.91107512308344, 48.27425787544278, 85.21166656292348, 13.587158637111239, 7.407075871620945, 88.11004765747033, 95.1051227635501, 33.49239509785562, 8.36870786107008, 128.52794014145627, 53.49452818894534, 9.459162801855443, 7.482547139492452, 15.072329734450067, 50.80590408479135, 103.40397369437011, 31.860029281880408, 32.16465482246737, 5.222759362715525, 92.13959942354172, 26.427002081846336, 10.257466853032096, 11.647273986936959, 9.845300112139961, 22.08315983824425, 99.2371331698586, 16.04721950223747, 19.040252487631438, 45.77358555599881, 18.40818407810303, 12.530027983101794, 15.23640444341066, 155.58400552063287, 86.75347455054114, 28.167930925231246, 38.3252020864203, 12.077393615263734, 25.58656633526381, 25.31801242677775, 19.73490673501913, 10.408548377227417, 235.45159815326213, 23.456581573586313, 24.786169146518294, 5.668091804017302, 99.44547705492948, 52.00355257225095, 149.46193079380834, 44.154060214166144, 141.9633338901781, 8.67534154820863, 46.845373309385714, 76.22773676855462, 35.412419563106226, 72.0141494795972, 5.97593968116521, 24.393612897821164, 20.841220095851796, 10.577544687501652, 34.14516937340117, 52.19678081766772, 18.98193902075201, 38.626782320809134, 27.259621760441618, 99.13971971549752, 5.281781251349507, 42.591203305207394, 5.16975519424286, 73.6701090887221, 48.91126181917467, 6.254731448788722, 57.60287422922403, 128.5343950972363, 76.4670799533948, 11.258421160194404, 106.11937158101401, 17.616907122542415, 48.41474129163413, 66.40598194373457, 15.660199535738123, 5.93196146776874, 12.041039335699322, 14.625093574530446, 40.671147857167966, 138.6185788504445, 30.220447659988384, 13.257587732437898, 67.16645938217535, 36.234022892821415, 32.94251175353607, 42.512993498217526, 63.64887076042611, 113.78744068012954, 84.75251339260592, 9.98533386732685, 99.12764090340544, 5.95404047983219, 5.5177903931545345, 60.46886339440926, 176.23057150279593, 67.41799322801604, 12.911731190252928, 84.22271528005152, 21.0383700233711, 32.38754043241018, 21.609794838830688, 11.88865462078468, 51.053925734254506, 15.330714564250085, 53.36645072974704, 30.487085383614314, 40.99020513884653, 25.177591622587776, 73.01067260532322, 42.26124356782171, 30.603529326727376, 28.769508296351585, 95.24579018263942, 9.07714563016924, 16.635780362784917, 47.886610073479986, 5.3635487886808475, 54.95892960329806, 143.1954046267521, 35.95993564084988, 128.5234945135293, 134.5870208158915, 14.511541074884722, 288.4049915093834, 223.52158487126954, 53.61428361664384, 88.2798320562845, 109.1460430055787, 32.86131768903339, 142.11278666326868, 26.152291585007266, 138.4063007232978, 23.208243758021144, 144.56566459111687, 19.232123992914612, 29.312016063420668, 83.70317687563164, 58.4725439983933, 12.350085523825664, 102.70653439005594, 17.717146006572, 12.737886204786879, 92.43694477117748, 57.40411405036468, 37.53647277034701, 15.42926929583421, 41.78110584613079, 17.20029575943159, 8.617519629412115, 166.933273912234, 20.74046023785257, 33.248054303520085, 5.387776994205888, 48.56025179112149, 15.811691158391778, 18.053192220738303, 110.50465112067968, 8.847809635721578, 96.96344405653285, 20.8412309291244, 86.28386605212039, 13.914181338188722, 55.39687193350231, 30.87417939118868, 57.71222442717077, 56.988672722814826, 57.6193786912833, 12.594177652579924, 12.925254279476691, 45.4746838741382, 86.80892856266615, 31.197561203385536, 155.2646667071984, 5.491644378915024, 16.669934914421166, 67.50114188440311, 8.953915431828735, 95.51994243797292, 15.789960811641256, 46.36125102117164, 37.753325919912655, 16.458105533362517, 150.45477927151325, 20.955827464418878, 35.79812071419674, 14.132507628702552, 69.575139541637, 35.41853421352542, 43.57582601576572, 68.53408407965455, 28.971902475124132, 12.43220521906144, 145.70138283753866, 94.1113719695496, 59.644378517956945, 55.473104129346964, 9.444869826627937, 10.631052225800213, 37.349985833244375, 77.89313738438739, 35.0029852606572, 49.06236585649961, 33.84537150533349, 57.11627938670283, 5.787631030907019, 16.12904015594579, 5.066681875122369, 66.13014762804785, 34.02323494325775, 25.90104834957779, 127.92506104281026, 103.02703178545457, 17.680204986309793, 9.641373155017071, 20.758768382728356, 80.51015701940942, 11.758200702576936, 5.0359237241294865, 43.03575884222107, 23.540194328455954, 53.97087736374735, 10.025563430403656, 38.975087101821636, 93.10018583803611, 14.690424184315157, 55.21624563152795, 183.33220600143238, 15.219518487413724, 14.453392560364588, 29.633707845799126, 15.033553448329627, 6.068789368297628, 10.202864503931227, 30.137527950370593, 27.730272162643196, 5.167974111765538, 37.273954854114656, 72.97843586978665, 15.54389163943097, 72.27797619222584, 155.37883453911263, 70.36660436731883, 12.121340519937085, 24.71774311416157, 55.71770845828105, 9.311872390127938, 46.23725606470437, 43.69316435729553, 20.225178035609048, 8.472524430326025, 48.180794850702654, 31.98986578564798, 95.59819361083615, 54.99379687901816, 101.06215167762758, 17.345344601174546, 5.036676313947625, 29.879194428449853, 30.495778487452306, 17.5072012896133, 59.56139250899804, 12.71904990883023, 62.37863015569691, 31.240013994110132, 355.96145665804534, 50.329655776748865, 63.89703442863916, 81.04221481611297, 50.80441094185618, 93.03443156725174, 5.233881126786373, 10.499095879541951, 218.68302575357134, 14.107350390930474, 132.20530295105567, 54.330787421461565, 23.574530600472922, 53.70803138093727, 109.35231937030365, 86.17133370708073, 42.399914400493884, 36.29556813461439, 30.62487296282904, 16.081567030337894, 39.249067210207876, 173.00462749906006, 13.507764075921864, 18.534872219967383, 33.71772510956289, 63.66262427360141, 116.30404867098709, 13.47564171199517, 36.92793909999746, 246.56223073952782, 37.96759929419639, 9.99501633114343, 47.723091316471425, 86.1368155607713, 24.091052300064558, 79.72956229602305, 11.400816526019984, 261.7488522954104, 17.851656980010077, 238.09707819435465, 12.939859931880445, 7.947594479168817, 199.20812904457296, 68.5266878335356, 31.759233536680128, 23.553922186112032, 8.928801871946709, 34.405766077887726, 30.320543812313144, 18.01824085989296, 22.689712798735194, 38.53625009081995, 6.04754249590039, 9.84425375116182, 148.13842142756533, 57.169993876146435, 146.60537727247493, 186.59620842942482, 33.57775598497233, 7.47271743426994, 16.25945361628771, 48.26021796298878, 17.791948071507882, 104.4394859599539, 47.55124442010468, 304.79636118515447, 81.84173801682147, 96.76160591539274, 13.334498025552223, 59.91600531797442, 5.521468467182778, 50.15280064882995, 78.94301026442378, 12.107220268597928, 317.3522169875655, 108.36731836894178, 69.33297834928248, 12.279290468634242, 61.00629062502797, 57.3459225020222, 13.85468445401584, 14.198929815506647, 32.35647111028233, 41.963201519912694, 17.560193868442177, 6.160474278141372, 56.03815344539816, 35.39346788891584, 62.01081154646765, 40.13004009279741, 43.85728258818124, 15.218391454657695, 5.11769689122159, 84.94265543747271, 81.39622914785647, 75.04926610996472, 180.57439016516287, 18.410492940329707, 115.45731315881713, 41.73501840643812, 19.010006553602853, 94.41821608480019, 53.957686664214705, 116.51248989139314, 12.230995928803756, 27.04112226178999, 15.370981216159876, 49.92415135367561, 74.25167064470305, 16.490698410519034, 81.16522896836878, 44.02779334550378, 33.384221374830666, 30.407851141904878, 17.069252209259187, 11.41774123651965, 59.38511242268383, 57.70304451699758, 62.33411646881579, 30.313079885795844, 55.123073422980156, 46.11060612230129, 124.27773467735165, 18.9042898330685, 28.030997591607598, 12.879496037026911, 56.057436007923464, 107.80568962558038, 19.24344095805065, 144.8952403561467, 27.281453366193414, 171.6846996940525, 34.45940048996615, 12.02799750956841, 140.21738117345546, 34.877187726304484, 43.82385417786706, 26.576902330124234, 24.908531861018716, 19.803451275406726, 28.743301506290305, 64.92901173574411, 25.612809222347888, 22.719445004725948, 120.1870941357061, 26.362913454655786, 80.35132971665914, 9.281600433781545, 9.604844928406594, 19.324222775146623, 99.36571273928232, 144.34540349663754, 68.21881727588278, 136.88446080109014, 7.107511941562465, 14.270610830546131, 153.9329891688164, 9.245859938489039, 25.23813648427759, 11.90660188129084, 5.151608523599793, 50.89883397794345, 46.0105742380572, 13.767566238581711, 61.45441168901837, 253.93569290111526, 8.065291356794727, 38.95054768945447, 12.2821855624095, 39.95136498560345, 6.145421906494793, 42.67683351939493, 26.834747075949636, 8.495287389443742, 6.035944205815919, 48.070301631893365, 13.123875564957334, 31.916022806731185, 56.72899551551172, 32.82288601611796, 6.080132134802781, 17.878194880365147, 261.6993117250471, 17.430174378025868, 34.42685419860487, 148.7470366273132, 115.60433765902822, 75.01240470068912, 9.021511312243625, 29.651572522966713, 48.32011825254267, 80.907259011237, 40.37614275256179, 57.82257778042939, 39.27146124202255, 51.37371206774847, 53.63782551707631, 76.39600574513048, 69.64407404070165, 244.1433748364139, 24.931203370626104, 8.474760911377507, 105.31857295375623, 14.333065414425105, 65.33239213800073, 27.966763635950585, 53.87912593847528, 32.759286205809836, 8.71117076021601, 44.62856306846538, 19.35544304470714, 209.9704807455858, 17.445061494558253, 38.682386457552894, 189.7507462948773, 30.735744812870568, 94.1708969463515, 11.675930380940803, 37.22397220324795, 31.319727934843858, 5.809437839020029, 218.4353552657919, 7.636859689947459, 27.447510735376312, 51.82653174126504, 44.20539917471172, 29.01054647347128, 49.482315102872974, 94.84509452116967, 128.14828072434608, 160.3906186224264, 46.908225419935086, 151.99741879245025, 18.557196685362594, 5.318587932309022, 53.167448092666184, 61.906994281826115, 265.51385741262897, 18.906823193163376, 104.19990484601854, 34.78263797072269, 10.052169789372666, 76.25423602451914, 37.753491447516964, 17.528080810070968, 20.81310203558307, 16.50990646588842, 44.143924710365866, 221.06409860950203, 23.23161653533728, 19.127693519131572, 42.81780483430584, 9.428977961248048, 9.43382377403997, 11.55784505838068, 46.90425099802552, 32.90068502645332, 16.46965952712649, 6.794148541308112, 157.16763232242823, 12.738940870092494, 12.171341779708788, 10.534893199934487, 19.666691685038387, 21.85991592078787, 294.55503364717094, 37.45219243638411, 31.856333574010844, 61.99340927416107, 18.817171387500995, 47.79476564821016, 102.89077428659262, 63.95029292268568, 29.99579036246679, 73.21925195800767, 5.5116200375617606, 16.175957464441318, 30.221811973422554, 7.51960733631123, 16.1724858664445, 6.080992635626819, 104.26631012163432, 40.45587300934527, 18.224343063345678, 137.23318810825157, 18.210023272926854, 171.52246735073092, 28.372149716495784, 291.0737022318307, 47.15796408519614, 38.2326369464287, 127.25924366360769, 155.59178892454588, 291.38781052842205, 84.10234059523887, 61.7061934164798, 49.794591428226674, 80.92551617113617, 23.205961352062882, 75.0958754806432, 8.57595325617424, 14.061139406907463, 60.58922232613482, 406.31679757496653, 72.26144592934978, 47.42583438326047, 11.731069392976893, 19.655968144519118, 149.19734090720047, 32.75640310958805, 39.34231260627587, 48.599068133675786, 35.849945393391025, 57.972839967248035, 74.32538247703533, 56.89630522563321, 27.105924118067357, 38.22878902007986, 37.194584919725784, 76.08838850641172, 13.989850004393567, 343.1947978574011, 18.430851172849586, 46.67560808778761, 45.318239235561, 246.396189542149, 86.3055684110546, 93.96910720097551, 14.310043010274816, 54.275976855690935, 125.0391385113628, 25.289993819790702, 6.772476434134563, 107.50759416819842, 29.840134934590374, 16.840699237965836, 57.79824549097549, 150.1091842316449, 147.51361908341352, 55.193719867838894, 157.4570330049096, 281.376331945965, 32.45936595357043, 129.99751377459756, 104.53275908453575, 83.98044960858633, 122.64676828612095, 57.49648047559158, 68.72793923508301, 29.93516801009597, 196.71686780826047, 142.65250764585662, 51.70529652782128, 27.91564084170028, 47.178071545553344, 190.20665042750576, 9.181539278709216, 60.144414254687916, 26.07923293881765, 61.01347469437658, 17.953155668142088, 60.339525304349955, 85.81886284783073, 22.885790484521515, 168.7167228083631, 10.867707179814444, 119.19297738087472, 67.37489503241488, 10.891755240485278, 64.55145130827587, 6.972734395846236, 94.10241985345695, 147.72228562989474, 35.79596237684795, 45.33008702081317, 102.38341736396896, 8.530687992350575, 13.940085070690921, 13.693861437329113, 5.280110159927671, 27.45725527098452, 55.31618730421284, 5.253495071221241, 135.10404315897753, 80.94523594484318, 13.361189147787393, 70.00034889594994, 68.94605352698815, 17.99714204706259, 142.78191170396778, 10.617961517344694, 19.44756869906301, 15.426358334540977, 164.9614753061485, 50.52703813142129, 19.702056437472255, 24.23579709448117, 114.09915366650885, 5.2997689899223985, 35.09119741445651, 12.896837933124718, 105.18052149161534, 25.12582873413648, 10.0747802112351, 7.140171454982022, 7.967435860342792, 20.594289042604842, 17.78261289411805, 35.82427252985079, 83.330967062175, 30.240504553361767, 64.5382995197675, 16.21962879305925, 10.959509311961693, 28.503036769021687, 89.55202609408482, 17.280742689423494, 45.63702771563249, 59.34403070340278, 12.949668252479416, 41.957391727115485, 96.08509624478157, 48.202356908322436, 7.470084781147277, 60.743913154511176, 22.192435363733374, 99.17503899065557, 5.894043038134498, 15.671640909147353, 6.696421940855466, 26.905450702074393, 296.8168256446175, 11.429950768898397, 123.49058084328125, 107.26444719365506, 24.893037265767383, 230.85119087292887, 110.91077511093795, 81.02401067931102, 28.57449761210265, 97.52309581426348, 91.73452890212391, 5.600842058108813, 68.3638228302191, 25.371108338121868, 42.58829714165245, 6.231025875030936, 154.88520855139473, 74.88143874007774, 39.19607621642622, 52.82607587392765, 139.24221065777817, 13.230985702743375, 131.07505111882745, 8.028688370709522, 21.56762817854454, 94.59561277850317, 20.091564480321978, 53.215431167003864, 179.5441059501015, 51.73031955252456, 39.28901124607699, 36.29795262871217, 13.273881472357596, 47.23068943184208, 133.21761265094744, 97.43388107030064, 71.90786039775561, 8.64844918757395, 179.9965304712248, 76.13825777023852, 25.756790249649107, 27.171691413074345, 48.840674277012184, 8.489882615364097, 12.79994222116682, 43.62177750433884, 86.60104231380386, 6.128406641583225, 10.359858580080001, 8.811263493729404, 8.540171730618427, 11.054521120877531, 20.764278764792234, 83.79926259130598, 16.16110955648456, 305.323061394567, 15.740214731145334, 51.54702029600337, 18.65700998094883, 16.636878398381757, 22.969389554027494, 104.40696193877999, 24.418294501287964, 72.46244893212496, 7.096428005812711, 42.24942497797697, 53.80619963406075, 221.0842898426223, 10.374461897353996, 7.757009194475521, 6.2011400189002055, 69.70298549129252, 5.391635383083381, 5.2261855245151985, 162.75904670911356, 11.941526084483275, 53.536343190103324, 27.306540625150355, 89.34124537174569, 108.76107328076722, 133.73852873597255, 6.889402938376635, 44.66534289583991, 13.022303365027177, 70.14588057132161, 217.69336731236947, 79.35239873946873, 46.28779522048575, 233.95648021704596, 5.091157312464996, 34.01376955181799, 45.67251734338373, 32.47224824163339, 240.8092944806979, 32.46018606335363, 33.39271911653502, 42.29275523236547, 5.399242058636223, 125.7613162600294, 56.461992141115175, 85.09395156970606, 13.734999837287358, 38.409512883916754, 93.1040309229396, 91.13192369211302, 13.883961441018402, 31.11583501182684, 152.33974358744254, 27.918884669171014, 111.81525857982037, 14.588004542030346, 144.0033813562276, 58.729029284222754, 11.854893112198118, 319.69771977114794, 106.9453384411529, 11.837900698365837, 116.73703775923907, 18.10283786138076, 7.99679230645474, 11.630302012829675, 41.68991830321918, 26.761884501092425, 9.433379017715195, 161.32168692393634, 69.61659569741575, 22.24855704381948, 25.374461908008527, 169.3236494992011, 54.07538548710091, 39.90451494837914, 68.38532093635312, 5.114602500512523, 10.328667180819313, 212.74617174476612, 46.34918008105474, 39.32838643909923, 107.47658949819947, 68.97555524149257, 42.32441010222634, 257.82478549339476, 146.0044097424488, 7.295999107664863, 35.509251791506344, 83.75053415974632, 39.77205043544513, 122.54460015707241, 106.11796376593745, 21.857658779309947, 28.254061580367708, 99.96808400571662, 313.9802802272854, 77.92306962076256, 50.62057724748988, 7.3099470957129515, 60.79956987596485, 28.237080337082702, 18.76934436357183, 14.752170188632132, 203.63902863876174, 195.62191063079976, 73.71585737315866, 122.94555905820519, 15.98987731784504, 31.426196308139996, 110.72117418143789, 329.84889485269593, 97.51190208301134, 66.71189693909632, 60.03305602214933, 12.149159412479074, 21.030566778918313, 7.153844429526404, 101.95379693278574, 39.07711279389282, 30.177103842599095, 122.8001255707332, 29.750702985091326, 34.36795881684985, 57.400471854312904, 44.938692606680334, 121.42962395750757, 234.9072944647697, 24.388976178935234, 106.92695212098675, 26.48614931016283, 58.21433465490527, 22.166438454505656, 104.08148226858499, 69.79030845181613, 31.337864621980202, 29.84793955063901, 146.66476931597103, 29.377457588465305, 17.199901228226178, 169.75963660415252, 65.32923890685602, 175.2972096106421, 161.61540571280122, 64.38657902460976, 71.64250939172928, 70.57064740113296, 53.55322930344987, 22.71992047534115, 43.48236811510557, 16.731686706455665, 63.38984580263356, 27.94202723742777, 40.38383310102549, 49.69162186193294, 69.39278880306173, 6.455475216578506, 55.622276110671685, 23.327299951230113, 96.44955914581172, 9.769513620592345, 6.8849285256900075, 121.2593963789348, 21.28657982457591, 71.63543603425904, 60.52709688497063, 49.65192372525922, 13.199415237735266, 144.92135535161756, 27.25482935969207, 29.42315331294129, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)