script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index Matrix Index ToA ToT FToA Overflow
0 4574 832 29 6 0
1 4831 832 35 7 0
2 4575 832 100 8 0
3 31031 1745 22 11 0
.
.
.
.t3pa_cls file example:
% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow
# 1, Nunmasked = 3, Nmasked = 0, Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, Tlast = 2.0790625000000000e+04 ns, dT = 3.125000 ns, Etot = 64.428148 keV
2 4575 [ 17, 223 ] 832 8 ( 2.0787500000000000e+04 ns ) 100 ( 37.867914 keV ) 0
1 4831 [ 18, 223 ] 832 7 ( 2.0789062500000000e+04 ns ) 35 ( 14.733453 keV ) 0
0 4574 [ 17, 222 ] 832 6 ( 2.0790625000000000e+04 ns ) 29 ( 11.826781 keV ) 0
# 2, Nunmasked = 3, Nmasked = 0, Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, Tlast = 4.3607812500000000e+04 ns, dT = 6.250000 ns, Etot = 63.577435 keV
5 30775 [ 120, 55 ] 1745 15 ( 4.3601562500000000e+04 ns ) 99 ( 37.617059 keV ) 0
4 30776 [ 120, 56 ] 1745 13 ( 4.3604687500000000e+04 ns ) 44 ( 14.715446 keV ) 0
3 31031 [ 121, 55 ] 1745 11 ( 4.3607812500000000e+04 ns ) 2 2 ( 11.244929 keV ) 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 = 44408
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);
([3578212.5, 3583982.8125, 3623931.25, 3636457.8125, 3643226.5625, 3664781.25, 3666239.0625, 3764270.3125, 3764760.9375, 3766128.125, 3774496.875, 3812032.8125, 3824914.0625, 3826175.0, 3827604.6875, 3827876.5625, 3832021.875, 3859067.1875, 3859090.625, 3861256.25, 3865501.5625, 3866185.9375, 3874212.5, 3881817.1875, 3885996.875, 3889043.75, 3895648.4375, 3901979.6875, 3906198.4375, 3906987.5, 3910917.1875, 3912070.3125, 3913756.25, 3914026.5625, 3920207.8125, 3923668.75, 3934806.25, 3956984.375, 3962814.0625, 3974610.9375, 3982812.5, 3992387.5, 4002885.9375, 4005337.5, 4006657.8125, 4008726.5625, 4011017.1875, 4014300.0, 4017573.4375, 4028378.125, 4037673.4375, 4048679.6875, 4049318.75, 4050859.375, 4054423.4375, 4069820.3125, 4072479.6875, 4078753.125, 4079435.9375, 4082678.125, 4084604.6875, 4084614.0625, 4088990.625, 4092300.0, 4097217.1875, 4111704.6875, 4113575.0, 4124459.375, 4134520.3125, 4141342.1875, 4162112.5, 4165142.1875, 4173914.0625, 4175053.125, 4189284.375, 4204192.1875, 4258365.625, 4259034.375, 4265735.9375, 4311365.625, 4311606.25, 4319398.4375, 4319406.25, 4321860.9375, 4329446.875, 4330039.0625, 4376582.8125, 4400417.1875, 4412073.4375, 4412714.0625, 4414609.375, 4414612.5, 4415179.6875, 4415948.4375, 4417210.9375, 4417581.25, 4421779.6875, 4426570.3125, 4427421.875, 4427460.9375, 4427914.0625, 4428337.5, 4429729.6875, 4440260.9375, 4443356.25, 4449471.875, 4450362.5, 4457182.8125, 4461700.0, 4462423.4375, 4466631.25, 4473017.1875, 4473584.375, 4474965.625, 4482775.0, 4482965.625, 4485676.5625, 4508721.875, 4521534.375, 4547598.4375, 4547932.8125, 4549854.6875, 4552342.1875, 4552378.125, 4555053.125, 4568487.5, 4577620.3125, 4579953.125, 4581820.3125, 4586040.625, 4589273.4375, 4607018.75, 4608267.1875, 4614665.625, 4617853.125, 4621281.25, 4625576.5625, 4626007.8125, 4628128.125, 4628517.1875, 4631868.75, 4632628.125, 4632701.5625, 4632723.4375, 4634625.0, 4640623.4375, 4647164.0625, 4662876.5625, 4702809.375, 4715115.625, 4723695.3125, 4723695.3125, 4731504.6875, 4768475.0, 4783028.125, 4811253.125, 4813043.75, 4814276.5625, 4830306.25, 4832657.8125, 4847262.5, 4862906.25, 4864867.1875, 4869568.75, 4869764.0625, 4877853.125, 4920454.6875, 4920945.3125, 4935648.4375, 4935685.9375, 4947618.75, 4965320.3125, 4967776.5625, 4975848.4375, 4977467.1875, 5011673.4375, 5011742.1875, 5036601.5625, 5049960.9375, 5050057.8125, 5052473.4375, 5066356.25, 5071048.4375, 5086062.5, 5086140.625, 5090387.5, 5099626.5625, 5119342.1875, 5120059.375, 5131273.4375, 5154390.625, 5162776.5625, 5165003.125, 5178993.75, 5180968.75, 5180995.3125, 5183957.8125, 5189617.1875, 5198060.9375, 5252387.5, 5256726.5625, 5280718.75, 5288953.125, 5305100.0, 5388731.25, 5444356.25, 5530054.6875, 5552662.5, 5554848.4375, 5589092.1875, 5600850.0, 5639087.5, 5646620.3125, 5649281.25, 5651732.8125, 5671396.875, 5685614.0625, 5704351.5625, 5745131.25, 5760650.0, 5760670.3125, 5767396.875, 5788489.0625, 5810739.0625, 5812314.0625, 5817535.9375, 5821048.4375, 5846957.8125, 5850825.0, 5852132.8125, 5856189.0625, 5859478.125, 5861412.5, 5873481.25, 5901465.625, 5920440.625, 5939354.6875, 5968109.375, 5977582.8125, 6007992.1875, 6010279.6875, 6017731.25, 6032250.0, 6040004.6875, 6042123.4375, 6045665.625, 6058684.375, 6061548.4375, 6063142.1875, 6065018.75, 6065140.625, 6066046.875, 6067268.75, 6068232.8125, 6072303.125, 6072637.5, 6075151.5625, 6079431.25, 6081237.5, 6094384.375, 6095918.75, 6115495.3125, 6117350.0, 6120042.1875, 6121768.75, 6126450.0, 6126675.0, 6127839.0625, 6142970.3125, 6149356.25, 6155725.0, 6156726.5625, 6157393.75, 6158176.5625, 6158815.625, 6159095.3125, 6165612.5, 6166335.9375, 6168956.25, 6169210.9375, 6171239.0625, 6174909.375, 6176676.5625, 6178567.1875, 6178793.75, 6179679.6875, 6179884.375, 6184501.5625, 6205126.5625, 6226676.5625, 6233868.75, 6234165.625, 6241025.0, 6241989.0625, 6248060.9375, 6256926.5625, 6257509.375, 6258012.5, 6261109.375, 6264731.25, 6268646.875, 6274931.25, 6275045.3125, 6276767.1875, 6282565.625, 6284128.125, 6288376.5625, 6296057.8125, 6299801.5625, 6299968.75, 6302878.125, 6304920.3125, 6305168.75, 6309343.75, 6311457.8125, 6312496.875, 6313015.625, 6313031.25, 6314042.1875, 6320546.875, 6324721.875, 6325100.0, 6325379.6875, 6331423.4375, 6353198.4375, 6362026.5625, 6365303.125, 6369454.6875, 6389664.0625, 6397359.375, 6401821.875, 6409850.0, 6419042.1875, 6425275.0, 6430671.875, 6437825.0, 6441000.0, 6443114.0625, 6444095.3125, 6445000.0, 6448870.3125, 6449831.25, 6453120.3125, 6459525.0, 6461037.5, 6465375.0, 6472423.4375, 6474510.9375, 6475532.8125, 6481823.4375, 6488017.1875, 6492785.9375, 6495142.1875, 6495476.5625, 6498143.75, 6505637.5, 6506848.4375, 6516250.0, 6516828.125, 6519210.9375, 6520659.375, 6534156.25, 6537128.125, 6537946.875, 6538331.25, 6545667.1875, 6551220.3125, 6551701.5625, 6553500.0, 6557593.75, 6563415.625, 6563821.875, 6566276.5625, 6586010.9375, 6586578.125, 6587432.8125, 6588521.875, 6590381.25, 6611139.0625, 6613148.4375, 6638375.0, 6643054.6875, 6648320.3125, 6648898.4375, 6653553.125, 6654928.125, 6655440.625, 6656389.0625, 6658362.5, 6660887.5, 6661293.75, 6661295.3125, 6661331.25, 6668646.875, 6669328.125, 6669504.6875, 6669717.1875, 6671321.875, 6673085.9375, 6673278.125, 6674546.875, 6675967.1875, 6676921.875, 6677839.0625, 6677850.0, 6679064.0625, 6681846.875, 6684956.25, 6686621.875, 6686795.3125, 6686834.375, 6687759.375, 6688298.4375, 6688357.8125, 6688359.375, 6688700.0, 6689271.875, 6689484.375, 6690395.3125, 6691300.0, 6691392.1875, 6691393.75, 6691757.8125, 6691909.375, 6691946.875, 6691987.5, 6692032.8125, 6692189.0625, 6692418.75, 6692439.0625, 6692564.0625, 6692598.4375, 6692779.6875, 6692807.8125, 6692818.75, 6693473.4375, 6693670.3125, 6693745.3125, 6694251.5625, 6695237.5, 6695284.375, 6695978.125, 6705818.75, 6713948.4375, 6716318.75, 6716942.1875, 6717371.875, 6717864.0625, 6717885.9375, 6717903.125, 6717946.875, 6718017.1875, 6718379.6875, 6718682.8125, 6719231.25, 6719568.75, 6719946.875, 6720295.3125, 6720301.5625, 6720370.3125, 6720904.6875, 6720943.75, 6721525.0, 6727532.8125, 6727712.5, 6728720.3125, 6729187.5, 6730237.5, 6730237.5, 6731659.375, 6735743.75, 6737770.3125, 6738175.0, 6738300.0, 6738643.75, 6739823.4375, 6740300.0, 6740923.4375, 6741217.1875, 6742160.9375, 6742223.4375, 6742226.5625, 6742253.125, 6744428.125, 6745987.5, 6746559.375, 6746814.0625, 6747003.125, 6747465.625, 6747668.75, 6747725.0, 6748732.8125, 6749621.875, 6750059.375, 6750100.0, 6750678.125, 6750859.375, 6751087.5, 6751370.3125, 6753101.5625, 6753110.9375, 6753132.8125, 6753476.5625, 6754931.25, 6754935.9375, 6755421.875, 6756875.0, 6757326.5625, 6758000.0, 6759915.625, 6761751.5625, 6762985.9375, 6763031.25, 6764096.875, 6764181.25, 6764204.6875, 6764429.6875, 6764453.125, 6764646.875, 6764879.6875, 6766015.625, 6766507.8125, 6766765.625, 6767995.3125, 6769220.3125, 6769292.1875, 6770728.125, 6770742.1875, 6771756.25, 6771803.125, 6772100.0, 6772745.3125, 6773287.5, 6774432.8125, 6774439.0625, 6774493.75, 6774496.875, 6775060.9375, 6775332.8125, 6776376.5625, 6776984.375, 6777007.8125, 6777203.125, 6777806.25, 6777934.375, 6777954.6875, 6779285.9375, 6779290.625, 6779409.375, 6779626.5625, 6779650.0, 6780084.375, 6780212.5, 6781573.4375, 6782059.375, 6782484.375, 6782764.0625, 6784750.0, 6785440.625, 6786426.5625, 6786456.25, 6789920.3125, 6789934.375, 6790650.0, 6792521.875, 6794773.4375, 6795900.0, 6795981.25, 6796056.25, 6796059.375, 6797106.25, 6798625.0, 6799490.625, 6800517.1875, 6800945.3125, 6802021.875, 6803193.75, 6803262.5, 6805645.3125, 6806750.0, 6808640.625, 6809520.3125, 6810040.625, 6811134.375, 6812879.6875, 6816475.0, 6816528.125, 6819367.1875, 6821229.6875, 6821232.8125, 6822973.4375, 6828239.0625, 6828476.5625, 6833867.1875, 6837029.6875, 6837043.75, 6843082.8125, 6845712.5, 6846873.4375, 6847164.0625, 6847793.75, 6848256.25, 6848332.8125, 6848567.1875, 6848785.9375, 6849198.4375, 6850128.125, 6850873.4375, 6851382.8125, 6851675.0, 6852993.75, 6853028.125, 6854675.0, 6854884.375, 6854973.4375, 6855043.75, 6856023.4375, 6856337.5, 6858190.625, 6861448.4375, 6862550.0, 6865496.875, 6865501.5625, 6865528.125, 6865546.875, 6867750.0, 6867845.3125, 6868409.375, 6869159.375, 6869373.4375, 6869498.4375, 6869559.375, 6870340.625, 6870471.875, 6870806.25, 6871104.6875, 6871139.0625, 6871325.0, 6871464.0625, 6871585.9375, 6871764.0625, 6871790.625, 6872528.125, 6873117.1875, 6873135.9375, 6873150.0, 6873571.875, 6873784.375, 6874360.9375, 6874620.3125, 6874995.3125, 6875142.1875, 6875231.25, 6875420.3125, 6875751.5625, 6875825.0, 6875943.75, 6876071.875, 6876126.5625, 6877328.125, 6877612.5, 6877940.625, 6878035.9375, 6878639.0625, 6879153.125, 6880621.875, 6881303.125, 6881429.6875, 6881907.8125, 6888000.0, 6888342.1875, 6889925.0, 6892220.3125, 6892826.5625, 6893834.375, 6894175.0, 6896076.5625, 6896831.25, 6896987.5, 6898007.8125, 6900426.5625, 6901414.0625, 6905190.625, 6910254.6875, 6910467.1875, 6915490.625, 6915801.5625, 6918689.0625, 6921784.375, 6921925.0, 6921954.6875, 6922528.125, 6922803.125, 6926351.5625, 6928320.3125, 6928989.0625, 6935028.125, 6938210.9375, 6945907.8125, 6947668.75, 6952915.625, 6962214.0625, 6993450.0, 6993457.8125, 7003265.625, 7003512.5, 7003676.5625, 7003737.5, 7004012.5, 7010064.0625, 7012418.75, 7021409.375, 7030265.625, 7032275.0, 7033318.75, 7033579.6875, 7035159.375, 7035782.8125, 7039029.6875, 7039470.3125, 7040943.75, 7041645.3125, 7041670.3125, 7046431.25, 7051375.0, 7053550.0, 7054526.5625, 7058203.125, 7058717.1875, 7063470.3125, 7065148.4375, 7072060.9375, 7074762.5, 7078975.0, 7080571.875, 7080668.75, 7083073.4375, 7087482.8125, 7087950.0, 7088406.25, 7090725.0, 7105925.0, 7107870.3125, 7109887.5, 7109904.6875, 7110840.625, 7111700.0, 7111909.375, 7113210.9375, 7113626.5625, 7114504.6875, 7114793.75, 7115520.3125, 7116893.75, 7117418.75, 7118557.8125, 7118740.625, 7121140.625, 7126493.75, 7129864.0625, 7145357.8125, 7146618.75, 7147054.6875, 7151715.625, 7153614.0625, 7156818.75, 7156945.3125, 7160842.1875, 7161581.25, 7162270.3125, 7169351.5625, 7169460.9375, 7172792.1875, 7174484.375, 7176231.25, 7178285.9375, 7186645.3125, 7188776.5625, 7190157.8125, 7190832.8125, 7191043.75, 7191440.625, 7194017.1875, 7195103.125, 7198081.25, 7208751.5625, 7208778.125, 7213770.3125, 7214503.125, 7216351.5625, 7234131.25, 7234145.3125, 7238239.0625, 7258375.0, 7263118.75, 7266092.1875, 7267412.5, 7268081.25, 7268679.6875, 7270845.3125, 7283790.625, 7286942.1875, 7311254.6875, 7327168.75, 7328532.8125, 7338414.0625, 7345840.625, 7348515.625, 7348667.1875, 7351871.875, 7353445.3125, 7358335.9375, 7358954.6875, 7369820.3125, 7381662.5, 7383481.25, 7384846.875, 7385790.625, 7389190.625, 7389279.6875, 7395645.3125, 7395679.6875, 7395728.125, 7419401.5625, 7436717.1875, 7442012.5, 7464012.5, 7467639.0625, 7477676.5625, 7487070.3125, 7488292.1875, 7489684.375, 7491004.6875, 7491531.25, 7492884.375, 7494364.0625, 7527321.875, 7536146.875, 7539875.0, 7560909.375, 7568389.0625, 7580543.75, 7581306.25, 7586034.375, 7601081.25, 7608265.625, 7609529.6875, 7610767.1875, 7610773.4375, 7614429.6875, 7633626.5625, 7679939.0625, 7685598.4375, 7693879.6875, 7718489.0625, 7760968.75, 7763065.625, 7763271.875, 7792476.5625, 7795235.9375, 7840237.5, 7841557.8125, 7842289.0625, 7842543.75, 7842728.125, 7843204.6875, 7843251.5625, 7843720.3125, 7843853.125, 7844015.625, 7844078.125, 7844171.875, 7844464.0625, 7844870.3125, 7845287.5, 7845423.4375, 7845464.0625, 7845576.5625, 7845806.25, 7847171.875, 7847265.625, 7847618.75, 7849100.0, 7864150.0, 7877109.375, 7879493.75, 7882462.5, 7882803.125, 7885440.625, 7886978.125, 7887406.25, 7887467.1875, 7887656.25, 7913871.875, 7915107.8125, 7921271.875, 7921679.6875, 7923923.4375, 7924312.5, 7924403.125, 7924537.5, 7925285.9375, 7925304.6875, 7926490.625, 7927367.1875, 7930548.4375, 7936500.0, 7942739.0625, 7949529.6875, 7953953.125, 7955064.0625, 7955740.625, 7957351.5625, 7957540.625, 7957785.9375, 7957993.75, 7959900.0, 7959910.9375, 7959925.0, 7960045.3125, 7960114.0625, 7960648.4375, 7964520.3125, 7968268.75, 7968393.75, 7969423.4375, 7969431.25, 7970646.875, 7978553.125, 7979206.25, 7979545.3125, 7980235.9375, 7981035.9375, 7981339.0625, 7981510.9375, 7981525.0, 7982085.9375, 7982884.375, 7984612.5, 7984626.5625, 7993545.3125, 8003156.25, 8003210.9375, 8005450.0, 8006671.875, 8007104.6875, 8007837.5, 8008112.5, 8017107.8125, 8024895.3125, 8028900.0, 8029467.1875, 8032103.125, 8034793.75, 8035101.5625, 8035223.4375, 8035354.6875, 8035495.3125, 8036659.375, 8037454.6875, 8037496.875, 8038381.25, 8038657.8125, 8039703.125, 8040914.0625, 8041368.75, 8042431.25, 8056218.75, 8058050.0, 8060379.6875, 8066846.875, 8066871.875, 8070343.75, 8070346.875, 8089284.375, 8120385.9375, 8129471.875, 8134187.5, 8135023.4375, 8146123.4375, 8156226.5625, 8157076.5625, 8165979.6875, 8168042.1875, 8168045.3125, 8168393.75, 8176860.9375, 8176968.75, 8176976.5625, 8177153.125, 8179095.3125, 8180421.875, 8180654.6875, 8182607.8125, 8182807.8125, 8195126.5625, 8196473.4375, 8203904.6875, 8204201.5625, 8206642.1875, ...], [49.05682599119075, 8.825276864734047, 13.668055186993655, 56.89416763545418, 86.60427698952662, 89.36061904092251, 18.96361345967424, 32.31133792909381, 51.88411329514668, 18.98685336912833, 24.98680719863308, 8.226466667998336, 103.96644572676608, 35.3177179448395, 25.29543309769276, 67.3304225937725, 65.36601531349929, 48.07012610247923, 6.17157598770138, 22.31700658703739, 53.27496562957385, 15.174273843073735, 48.1817804229235, 64.24190235771208, 61.30600263103919, 5.2989103087774625, 91.22889520311794, 67.30194827975006, 49.54139150674759, 12.079311599580619, 77.41476477716238, 25.232678494687182, 5.732048620186901, 35.05231119465988, 22.3308157705751, 10.669852230282277, 36.08629967280926, 12.792985631042427, 23.07161600001516, 10.81271787724337, 148.2402991015457, 27.513611803898986, 26.32498985156207, 5.289144934202778, 67.2195889824347, 64.19661009787126, 64.33510050332144, 57.948363813679144, 24.303014970814655, 26.739388471679938, 8.215234705611662, 17.524864046459022, 14.057759644438994, 11.399471281067713, 50.08095848497045, 10.37069514907513, 124.35578036962696, 74.49619845524158, 14.140751976622601, 66.701533364432, 9.765545340322191, 26.85220448934744, 9.795193355323796, 7.247879876778149, 20.818164929325295, 76.06030070210564, 53.858094810659736, 5.238830142392948, 9.736238626582763, 40.067623112138534, 94.9637921094955, 23.42333684807506, 25.07067860306754, 7.324708827235717, 27.216262893034603, 15.542032375390107, 10.321433691327757, 22.152565499149375, 81.99378165617819, 29.41191626768358, 107.29338640162256, 17.926230957960513, 18.43456159881199, 13.07474998634638, 68.21843365522454, 18.701137385951352, 87.2919214272237, 8.090570939709417, 21.72090167624845, 114.56739757214825, 35.10616656075779, 14.656862878431733, 66.51933414880142, 17.052990909539773, 20.034880355141954, 47.88656037038563, 14.532260952691683, 53.22677356938051, 5.784578362971042, 27.058054681607807, 6.708623544588075, 26.99011732566565, 16.67995375779606, 24.943434654634906, 17.354203318056395, 70.5507627122432, 23.308654250383658, 32.67753925744614, 41.372554775294105, 64.35789649668938, 12.69759048571316, 15.108966203025728, 9.100434978723099, 54.491533724067025, 50.13210776985307, 22.947889921799916, 21.562422409195538, 28.61968785751533, 7.599271165193929, 44.77886286763067, 6.535089092726998, 18.689264708669754, 11.702144198585922, 14.53627713418216, 58.10339237316652, 21.796889626488415, 9.745790247918261, 31.035274319628098, 83.19621437246477, 19.328947991290086, 24.93864746009955, 133.19148411372507, 41.66082543086942, 72.19339594540162, 47.05820845793666, 144.16372786445473, 24.38061265520373, 14.615367884620888, 114.40087742917606, 7.7419083607132695, 12.92355698083675, 7.959311524645842, 18.469887525099892, 15.264149447201776, 48.05302635309047, 19.706382901063815, 32.726537760633036, 49.38284532582519, 6.123579598760503, 16.551535843316298, 5.902843138412401, 66.57338031725699, 101.18395174710781, 20.620812109407524, 20.393963775897905, 11.289197031105138, 6.177426882142631, 12.990413357296358, 95.45897857669776, 37.80619299099975, 6.063500190723322, 53.48174592188103, 53.89375440181634, 126.46680031692578, 34.54959662292842, 11.853342246580606, 39.272998180911806, 11.658294838525492, 57.940602596071884, 44.530224195985916, 31.297261678925977, 21.357339106841668, 19.445502647629198, 19.135653981515624, 13.239937345995756, 8.005146592449336, 5.094003061719563, 49.96980703654826, 15.368771993202762, 5.111257521453998, 20.06615305740253, 19.595606271278, 8.977141478125489, 6.10234297501986, 5.040179149803078, 71.78535937043411, 46.6666983737777, 28.580712449288555, 20.63408584224938, 9.149037979162793, 112.03323217807895, 9.599706612564544, 17.44480344682651, 27.303103123194504, 31.951889364709707, 21.695267984970002, 30.546247372894864, 33.53583651861803, 142.13040261582557, 46.952606741550504, 6.275157351630739, 97.62941595320964, 26.034236642307363, 55.17907482025389, 29.853165535069603, 47.839777268280194, 59.23823741633999, 18.268741367895068, 133.04671104443696, 13.117039108209356, 85.33358729742888, 95.81787151905388, 8.016558165514297, 8.991040649988705, 45.30777206803379, 67.09348040655718, 38.82293922860524, 8.85665821287226, 29.716550378933125, 94.72739867973414, 83.01643758541448, 38.563684067458546, 30.40925020060011, 19.997617785460893, 142.59916496112135, 23.854664548478816, 11.30295142473017, 45.894399575542856, 95.24516683580536, 12.690097320079005, 54.29085997483108, 6.233110268374845, 72.92502001564576, 17.22220169218094, 94.4781056314428, 28.189852241420905, 47.030912902709005, 59.83884763358009, 64.04888847287717, 58.413964874565686, 13.23154227773616, 34.460265302927176, 22.43690340974479, 51.78911198466805, 51.13820421258308, 9.310704028758776, 9.36382104735307, 35.556001272384755, 8.755205583829758, 21.962381352517177, 49.38788009599072, 24.04369082537512, 55.84291916889771, 5.307255482317072, 12.132222677577671, 15.668360639020271, 151.47732995991626, 13.390791549230697, 27.7810891157399, 58.09806832679695, 20.16709852119085, 31.97090797219801, 6.704471956675355, 16.7407483650711, 17.995586071260423, 38.94487479660989, 14.457045759288478, 51.218897571886785, 6.904614635385192, 17.623618388741377, 114.2526467350883, 13.449029323481993, 14.393656579024931, 12.138699285809572, 6.296965122651166, 11.288166642861363, 72.12706814705912, 44.489422368555886, 65.44240883842355, 37.68418516468022, 44.12828754353586, 11.012650257779132, 11.193808691738079, 13.341787421999257, 54.553296538653555, 84.55768504452831, 84.24988305113263, 125.0947245535505, 38.68017436233717, 38.24759078267209, 18.00786847229977, 78.01922423820595, 63.867736876325274, 18.915185375973074, 8.989509755253504, 156.7082785425999, 15.74241946016081, 150.7401152888285, 10.048664070100285, 108.46600327318096, 25.140927810140134, 33.97236352857199, 47.18727424965246, 11.897123536985685, 30.427400557384523, 193.0631183249236, 27.37473003261173, 19.477759488735327, 107.8766150474079, 82.10167424601198, 62.5173784316554, 18.97207375487795, 22.342637503876, 48.08963399564917, 55.10306615927023, 154.88048962181713, 83.11406739384535, 28.89408216524533, 43.66335627611452, 30.434874373312038, 30.09695407095753, 9.787052745390353, 5.6081741735399335, 49.76454680024481, 30.21765151323596, 63.05007880934006, 20.4467706141609, 76.34297762388583, 43.13470559063855, 86.90258378956446, 23.136265598754346, 40.77575408734368, 35.106200048089576, 27.83579981673639, 19.82740164559678, 104.42807612017982, 52.675031464033694, 15.96982014431619, 16.68642322181118, 11.011688141658702, 11.711735816522165, 16.02289436380225, 13.794438645630523, 84.19661083624896, 29.29035524605125, 64.74185830798498, 6.227087633799472, 50.657583542520456, 45.563120109896275, 10.656724492234579, 10.556044299561629, 13.422647385804476, 6.733336974848134, 76.64313301491266, 43.44296609766138, 71.70285666313148, 24.19030164749188, 13.036450775712657, 23.928011336848385, 8.791758868808243, 75.29281764466987, 30.24024279887323, 53.422463436751904, 5.955397340213279, 64.02440103493231, 42.777886552790115, 119.93151147051836, 54.64186550988151, 80.23861795216513, 8.605227792244076, 19.874529104661697, 29.817045813203965, 24.51059412066937, 7.435263961096693, 35.48253868067042, 65.4675324623127, 65.52347052678986, 13.792524016902137, 8.446939974387345, 77.15727662175689, 9.844684994470889, 36.28125606515944, 7.822317744718458, 25.47892448512976, 59.75215735619841, 27.056174002888064, 16.835321066180974, 6.956235060522179, 24.462535380803438, 19.802399334078, 78.99317389907873, 36.405885750048704, 60.19228081242076, 58.50719046770162, 13.453053711569167, 30.786319979585635, 5.95059784892571, 20.580742260986305, 16.312777146116684, 59.51709522761486, 40.83242197595382, 51.61135827658465, 14.35127120371151, 45.44147700809746, 5.603531018870377, 9.628865623450677, 88.34108444693699, 50.522785074911994, 73.53572017907253, 19.95378355029308, 61.81921471396828, 22.716718753606532, 60.52436513201579, 6.505033327047175, 20.64043003770067, 46.861363848051994, 30.177776017122447, 39.20597448350377, 50.058986615030065, 11.623407639182243, 39.669463084664244, 31.414438373421458, 27.191641061689978, 59.86724391835548, 10.39159032299499, 208.01264533003467, 115.81822331164716, 34.6751178436691, 91.96850073377841, 8.132589640905843, 37.92990783852565, 24.74157601639254, 45.9521887177788, 12.081791564102103, 80.17880713351188, 30.19328745782756, 14.452681527648483, 29.635310886389505, 45.410616484683636, 9.78476367233623, 58.93879791215979, 44.93092396563453, 7.013442842394609, 25.078294468749316, 96.43723534198918, 55.02666767556133, 281.89340936920735, 106.9016895876641, 72.9193903366371, 11.36408909771484, 22.455801431718307, 6.152621030450677, 7.543773114532999, 21.78200789249542, 13.602146273008126, 22.38561566430494, 164.44491640543697, 34.60185192465899, 19.58641809921082, 29.256105270331332, 6.634525806943061, 56.117734383179005, 13.83865584185989, 10.195571163459428, 23.293027096159406, 47.41586871584852, 92.05940914324133, 19.271169037797037, 13.181316404333097, 6.755763910248422, 67.218100447904, 22.700193748912767, 40.575503045863535, 48.323055873718815, 59.81157543148819, 13.271626645328404, 29.000952544565067, 30.186832370227528, 80.71306729023145, 86.79595324258837, 5.2707610017605555, 20.05798610646885, 50.03704698875578, 59.1528306333559, 19.82588891458588, 28.478616776467398, 27.69731721988723, 15.596930691817498, 74.70398946715918, 12.84208169125169, 5.0608710187079025, 19.823984193503424, 10.865403499270988, 16.09124324825526, 64.84800565366892, 9.838490934886645, 23.509222539184787, 13.072179867423985, 23.186006325960587, 21.08680616152172, 113.24841258065754, 43.62201933028578, 15.125566584816468, 52.372317394430176, 107.97772643705818, 17.273327452583274, 45.00646104326812, 5.596122616788309, 32.951551139353526, 119.7518396570003, 5.335602216930991, 18.182548783819392, 7.151460261278984, 56.85964608271973, 45.54373193693192, 11.580523378007486, 13.663913416293536, 17.554587375851188, 131.86373068444527, 18.79370669468713, 10.83626319493654, 48.39599500968323, 12.943384902588106, 11.21900605958421, 12.222776346153822, 8.293280259621703, 32.05094766256329, 23.09351666069905, 25.760864312032762, 23.15420983114845, 36.22761400602327, 12.657103309199318, 23.395072098431985, 12.400423531288991, 18.93119664268921, 5.268179677047422, 75.06914162423645, 31.732932034541136, 69.86872454397609, 14.682943219817668, 50.14095283954199, 29.44890932403688, 73.64857040501884, 36.63310661151732, 109.07862488484339, 20.520648955111255, 45.1606804199215, 11.93162846348438, 102.47331881746899, 14.661426291668159, 30.67345332826123, 17.16095290031393, 28.519323305387413, 5.392557894494056, 5.803294741719243, 34.03875512994739, 16.576372960382752, 7.5314316970811, 68.56410161158385, 27.36399536579961, 50.38497373169472, 16.804927146785406, 10.938281255665814, 91.17371705054833, 13.507676970239682, 11.559397697321366, 51.33416403332988, 87.4117862149378, 5.036585955450398, 84.97205209344513, 85.80085739625085, 8.199999041775861, 9.77895070261633, 17.843357341964886, 39.18849563823572, 17.97944578319666, 42.50442796701706, 5.1744707023624965, 61.076076028965836, 37.93316726683639, 22.596787421999863, 60.45319374919194, 93.37602947572566, 33.29106508960695, 6.995818691349037, 11.714473110570424, 5.226748329898467, 189.15534357824237, 79.56866361284486, 5.835939333439264, 11.45115500883923, 5.607879923959345, 24.28339399700338, 26.916078543499616, 13.373415063601376, 34.07143018179212, 33.172771749622115, 53.58408377137325, 50.918503106719676, 55.74414291973489, 43.37643216015694, 21.769679044972225, 25.979066907371163, 14.298334723477282, 67.75595140962477, 12.99798777845458, 60.094671853890155, 43.52283904778457, 102.88098781494445, 59.945166556055284, 48.28180202951095, 5.944523517331239, 5.747909394723597, 57.71516900521681, 38.55172900798261, 107.65252401764147, 99.75837629491156, 26.601414891462756, 12.865464556998585, 11.019473176395316, 35.664194585064905, 25.97201309679354, 15.563727415318825, 124.56491129809791, 18.94993522459408, 23.14361916652031, 20.96358276411503, 19.337380583411548, 42.213129649209165, 8.145426337154364, 62.549830211368985, 26.66523583365149, 56.03426327761355, 12.89760719506642, 10.3877137339052, 89.20520376821956, 5.328989477759476, 13.506753604736414, 18.99167969282262, 25.24387711626612, 15.191137232801367, 58.730289480065835, 63.48176085553978, 69.00530004634395, 55.264124913474326, 11.631279270152493, 9.120227990632465, 18.08458594604287, 45.583721659160716, 74.93306177821536, 74.60971198438303, 90.1467126400521, 5.378515638578612, 7.030005727428354, 49.04739848678478, 119.93969536706341, 16.199425333884122, 19.196323123211357, 52.10770636281049, 52.81646156595102, 6.660032313308943, 93.76632845340995, 35.09548396523495, 43.37629519161465, 16.963284762548664, 6.659845839746144, 11.253307940915526, 19.107338060752948, 16.846336032347867, 75.47821086389378, 21.396466794963597, 28.696157035660743, 22.67996940246471, 31.06052490057934, 52.473701881009184, 40.59739418422286, 34.780748413260135, 129.28870983886026, 91.51311945938257, 50.47592973502501, 19.805258148781437, 36.20571505913627, 6.460638456134823, 21.168535343051573, 55.52360561604783, 10.419500211678336, 72.54590118048259, 13.534876057720261, 8.543500204471197, 70.39519886546131, 16.170347560260446, 11.66705058171189, 64.56968392857233, 10.080413028909746, 23.47974359134307, 29.351563543827275, 29.46325201234924, 62.93932634127755, 16.155888666005726, 27.707916212577956, 10.510045309502042, 7.401033426996926, 19.613206894762616, 77.46414049297312, 15.194000990428187, 40.727135912863204, 58.75473641190569, 91.95122005230434, 39.11591903729101, 11.065734547625652, 44.09428005668213, 17.623145704676528, 5.038287072418729, 37.95539100840064, 40.853760388738024, 19.982102839972004, 10.819010331503895, 7.216791813978489, 25.804126625483736, 26.429967212757234, 99.20086199469327, 21.492894027484827, 5.773166902563871, 33.816667685481875, 26.901606357636684, 60.773560402838534, 48.859530871728005, 104.37796604246665, 21.397104882265374, 6.68597638392793, 27.856079076016574, 70.1286003812079, 70.1459306093744, 17.858738331085995, 18.671070939912646, 25.237904337526487, 50.81650696841142, 33.44638302866377, 108.82454686207721, 24.02114353474933, 42.59389138079028, 23.84593052741585, 8.910778787933324, 28.53313458000619, 16.6449473948305, 14.071324407171625, 7.309656159525518, 9.12959981999654, 53.54687162735206, 35.1698571772245, 28.66916839075887, 18.40831586471937, 28.513750425401874, 39.670979710846375, 16.98449799447132, 21.98789901483701, 69.03798997690077, 61.66224737216538, 25.40781489142205, 22.658208056910304, 9.065025045529744, 25.972580263686375, 17.618965560234173, 8.755641862694018, 7.763304468027499, 70.55050775306631, 9.557207833824405, 7.203798508021057, 38.89549305828115, 14.915175156649386, 74.68640388510009, 5.488251597891009, 63.220238824799, 75.22800094009304, 145.60579918442312, 21.594081363061257, 49.8033520011593, 39.052170601819796, 24.941865998478754, 89.73247213898685, 39.08524461027862, 12.7442066280653, 5.379099835368319, 7.580352324147101, 31.73248602984996, 54.691280256755086, 103.10213374280023, 56.26194052591507, 15.369087857679478, 52.55766671844728, 11.647971673340454, 18.99914007535628, 21.950546046427256, 142.9278386260712, 65.90790672430849, 5.531051678771482, 31.23316014833331, 54.46984073800224, 48.49877733129736, 12.759778878893366, 8.24949252164389, 6.562455525584276, 43.11557269032774, 91.85646694139417, 23.058975235423688, 19.520089866384783, 7.996391498710919, 123.05946416614944, 9.447011394894899, 6.951148002265597, 58.68022331471079, 12.802051716539168, 19.15673001276124, 70.33528939410029, 21.49237557594836, 19.53922488921392, 70.21321152824194, 56.17632638671392, 67.09350122747105, 43.45134300114427, 19.582997916592358, 11.743219092571078, 5.190476212806153, 17.428448596863504, 68.93738548361503, 16.714222235470736, 15.176727620262717, 47.83866921146621, 7.204800709979401, 38.31195683669648, 38.7291647764988, 59.99080881688293, 24.807189947642517, 186.21890871068328, 31.492405583830454, 76.95562802999937, 6.858060584388495, 5.830180192308334, 147.62073770729273, 11.365149485392948, 42.68556934770724, 42.20354149484264, 65.03306582774634, 98.15801080480706, 23.34459917199012, 17.884326367395918, 41.62036523090187, 11.133937910487491, 44.20117615617214, 74.2696799775897, 96.23228707375753, 74.65878296816756, 71.35701002216615, 11.966043314190951, 13.98924704786269, 19.20825822983206, 192.01554405617722, 8.391617819477256, 11.041172679303413, 45.7946554438643, 71.80608900967661, 29.001434460998507, 27.396237041187696, 31.105041578108914, 50.32879877822036, 9.192890222369229, 49.93002372931887, 93.05134781363202, 53.80225091202898, 16.000605834609665, 56.709445860304996, 44.00988143370808, 7.9580499522762915, 78.90420829837463, 41.64588222080561, 17.034390357861668, 29.24729009266069, 55.430219694666924, 44.81977431457334, 247.36913901040677, 17.80863295335839, 36.57445017232055, 108.30282556123653, 30.12853441700454, 11.559084847262119, 27.520638205528417, 43.561728355153264, 116.6048714859864, 49.968661467633794, 82.14550687712374, 39.79173477357173, 5.041099707742412, 6.188410511611917, 35.69399777606412, 15.38237940234512, 26.658837340389614, 24.89123313764278, 17.392496952149656, 98.60292758838253, 25.946175114380964, 37.97248671116273, 16.25541701151789, 23.509373042109054, 90.03314837765525, 171.3638078338818, 68.27530954578376, 38.897235615691415, 6.755122237409778, 10.52449369545621, 54.90712732992512, 19.639896078347665, 222.12374176575534, 19.16446672447969, 33.59149548829748, 45.780124203246984, 87.61039834388417, 20.216956335451563, 72.36340094373841, 106.56728108023614, 46.06883441573942, 15.196541331266719, 103.09052513804615, 241.1399978143464, 22.457910492361144, 66.87977695153575, 12.756034802042743, 78.62084688484609, 8.113808247747384, 23.512007290740772, 14.971612800172963, 69.71808423857475, 28.430641549432185, 24.162171294433854, 96.92512081796139, 68.81971245618378, 113.327794003029, 5.132152978691314, 9.418631914507712, 74.95193913218814, 22.612319006716447, 10.646556948342573, 57.29770362076395, 5.824668434410815, 13.574632410643318, 21.912264030910414, 93.50539466148325, 13.940533171955874, 57.326694637455034, 67.66700559892809, 27.763511754616516, 64.10641283081203, 56.02938061062454, 27.444500443023777, 10.680993335935499, 32.1449387356649, 58.948739313649746, 97.17735803305825, 97.40148151931741, 16.287582639429118, 85.39837628396393, 7.839065611044427, 52.96965456253473, 9.658091437417681, 33.48709307691664, 48.73957993166693, 35.038605158355494, 13.150047411194715, 19.04464808603014, 95.52523421803167, 19.19439088665371, 57.207690372598485, 25.31057915148164, 76.99325842155997, 15.497302998114918, 28.406994318374796, 66.5575329877677, 117.08519469996548, 11.318247348058103, 9.320901503349583, 13.958508283936476, 46.20438472050172, 30.123994774360614, 87.11363329099024, 40.7607085676269, 13.931912777816503, 6.519770156695393, 13.59275037146875, 279.15180676534777, 13.985201066564688, 15.383549074916772, 102.18207278465272, 10.663117453055351, 55.30909230784411, 17.983441559606568, 27.036693848151398, 21.466459496071916, 15.399445875760586, 35.25977561227223, 108.22993184782186, 61.099973179310766, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3578212.5, 3583982.8125, 3623931.25, 3636457.8125, 3643226.5625, 3664781.25, 3666239.0625, 3764270.3125, 3764760.9375, 3766128.125, 3774496.875, 3812032.8125, 3824914.0625, 3826175.0, 3827604.6875, 3827876.5625, 3832021.875, 3859067.1875, 3859090.625, 3861256.25, 3865501.5625, 3866185.9375, 3874212.5, 3881817.1875, 3885996.875, 3889043.75, 3895648.4375, 3901979.6875, 3906198.4375, 3906987.5, 3910917.1875, 3912070.3125, 3913756.25, 3914026.5625, 3920207.8125, 3923668.75, 3934806.25, 3956984.375, 3962814.0625, 3974610.9375, 3982812.5, 3992387.5, 4002885.9375, 4005337.5, 4006657.8125, 4008726.5625, 4011017.1875, 4014300.0, 4017573.4375, 4028378.125, 4037673.4375, 4048679.6875, 4049318.75, 4050859.375, 4054423.4375, 4069820.3125, 4072479.6875, 4078753.125, 4079435.9375, 4082678.125, 4084604.6875, 4084614.0625, 4088990.625, 4092300.0, 4097217.1875, 4111704.6875, 4113575.0, 4124459.375, 4134520.3125, 4141342.1875, 4162112.5, 4165142.1875, 4173914.0625, 4175053.125, 4189284.375, 4204192.1875, 4258365.625, 4259034.375, 4265735.9375, 4311365.625, 4311606.25, 4319398.4375, 4319406.25, 4321860.9375, 4329446.875, 4330039.0625, 4376582.8125, 4400417.1875, 4412073.4375, 4412714.0625, 4414609.375, 4414612.5, 4415179.6875, 4415948.4375, 4417210.9375, 4417581.25, 4421779.6875, 4426570.3125, 4427421.875, 4427460.9375, 4427914.0625, 4428337.5, 4429729.6875, 4440260.9375, 4443356.25, 4449471.875, 4450362.5, 4457182.8125, 4461700.0, 4462423.4375, 4466631.25, 4473017.1875, 4473584.375, 4474965.625, 4482775.0, 4482965.625, 4485676.5625, 4508721.875, 4521534.375, 4547598.4375, 4547932.8125, 4549854.6875, 4552342.1875, 4552378.125, 4555053.125, 4568487.5, 4577620.3125, 4579953.125, 4581820.3125, 4586040.625, 4589273.4375, 4607018.75, 4608267.1875, 4614665.625, 4617853.125, 4621281.25, 4625576.5625, 4626007.8125, 4628128.125, 4628517.1875, 4631868.75, 4632628.125, 4632701.5625, 4632723.4375, 4634625.0, 4640623.4375, 4647164.0625, 4662876.5625, 4702809.375, 4715115.625, 4723695.3125, 4723695.3125, 4731504.6875, 4768475.0, 4783028.125, 4811253.125, 4813043.75, 4814276.5625, 4830306.25, 4832657.8125, 4847262.5, 4862906.25, 4864867.1875, 4869568.75, 4869764.0625, 4877853.125, 4920454.6875, 4920945.3125, 4935648.4375, 4935685.9375, 4947618.75, 4965320.3125, 4967776.5625, 4975848.4375, 4977467.1875, 5011673.4375, 5011742.1875, 5036601.5625, 5049960.9375, 5050057.8125, 5052473.4375, 5066356.25, 5071048.4375, 5086062.5, 5086140.625, 5090387.5, 5099626.5625, 5119342.1875, 5120059.375, 5131273.4375, 5154390.625, 5162776.5625, 5165003.125, 5178993.75, 5180968.75, 5180995.3125, 5183957.8125, 5189617.1875, 5198060.9375, 5252387.5, 5256726.5625, 5280718.75, 5288953.125, 5305100.0, 5388731.25, 5444356.25, 5530054.6875, 5552662.5, 5554848.4375, 5589092.1875, 5600850.0, 5639087.5, 5646620.3125, 5649281.25, 5651732.8125, 5671396.875, 5685614.0625, 5704351.5625, 5745131.25, 5760650.0, 5760670.3125, 5767396.875, 5788489.0625, 5810739.0625, 5812314.0625, 5817535.9375, 5821048.4375, 5846957.8125, 5850825.0, 5852132.8125, 5856189.0625, 5859478.125, 5861412.5, 5873481.25, 5901465.625, 5920440.625, 5939354.6875, 5968109.375, 5977582.8125, 6007992.1875, 6010279.6875, 6017731.25, 6032250.0, 6040004.6875, 6042123.4375, 6045665.625, 6058684.375, 6061548.4375, 6063142.1875, 6065018.75, 6065140.625, 6066046.875, 6067268.75, 6068232.8125, 6072303.125, 6072637.5, 6075151.5625, 6079431.25, 6081237.5, 6094384.375, 6095918.75, 6115495.3125, 6117350.0, 6120042.1875, 6121768.75, 6126450.0, 6126675.0, 6127839.0625, 6142970.3125, 6149356.25, 6155725.0, 6156726.5625, 6157393.75, 6158176.5625, 6158815.625, 6159095.3125, 6165612.5, 6166335.9375, 6168956.25, 6169210.9375, 6171239.0625, 6174909.375, 6176676.5625, 6178567.1875, 6178793.75, 6179679.6875, 6179884.375, 6184501.5625, 6205126.5625, 6226676.5625, 6233868.75, 6234165.625, 6241025.0, 6241989.0625, 6248060.9375, 6256926.5625, 6257509.375, 6258012.5, 6261109.375, 6264731.25, 6268646.875, 6274931.25, 6275045.3125, 6276767.1875, 6282565.625, 6284128.125, 6288376.5625, 6296057.8125, 6299801.5625, 6299968.75, 6302878.125, 6304920.3125, 6305168.75, 6309343.75, 6311457.8125, 6312496.875, 6313015.625, 6313031.25, 6314042.1875, 6320546.875, 6324721.875, 6325100.0, 6325379.6875, 6331423.4375, 6353198.4375, 6362026.5625, 6365303.125, 6369454.6875, 6389664.0625, 6397359.375, 6401821.875, 6409850.0, 6419042.1875, 6425275.0, 6430671.875, 6437825.0, 6441000.0, 6443114.0625, 6444095.3125, 6445000.0, 6448870.3125, 6449831.25, 6453120.3125, 6459525.0, 6461037.5, 6465375.0, 6472423.4375, 6474510.9375, 6475532.8125, 6481823.4375, 6488017.1875, 6492785.9375, 6495142.1875, 6495476.5625, 6498143.75, 6505637.5, 6506848.4375, 6516250.0, 6516828.125, 6519210.9375, 6520659.375, 6534156.25, 6537128.125, 6537946.875, 6538331.25, 6545667.1875, 6551220.3125, 6551701.5625, 6553500.0, 6557593.75, 6563415.625, 6563821.875, 6566276.5625, 6586010.9375, 6586578.125, 6587432.8125, 6588521.875, 6590381.25, 6611139.0625, 6613148.4375, 6638375.0, 6643054.6875, 6648320.3125, 6648898.4375, 6653553.125, 6654928.125, 6655440.625, 6656389.0625, 6658362.5, 6660887.5, 6661293.75, 6661295.3125, 6661331.25, 6668646.875, 6669328.125, 6669504.6875, 6669717.1875, 6671321.875, 6673085.9375, 6673278.125, 6674546.875, 6675967.1875, 6676921.875, 6677839.0625, 6677850.0, 6679064.0625, 6681846.875, 6684956.25, 6686621.875, 6686795.3125, 6686834.375, 6687759.375, 6688298.4375, 6688357.8125, 6688359.375, 6688700.0, 6689271.875, 6689484.375, 6690395.3125, 6691300.0, 6691392.1875, 6691393.75, 6691757.8125, 6691909.375, 6691946.875, 6691987.5, 6692032.8125, 6692189.0625, 6692418.75, 6692439.0625, 6692564.0625, 6692598.4375, 6692779.6875, 6692807.8125, 6692818.75, 6693473.4375, 6693670.3125, 6693745.3125, 6694251.5625, 6695237.5, 6695284.375, 6695978.125, 6705818.75, 6713948.4375, 6716318.75, 6716942.1875, 6717371.875, 6717864.0625, 6717885.9375, 6717903.125, 6717946.875, 6718017.1875, 6718379.6875, 6718682.8125, 6719231.25, 6719568.75, 6719946.875, 6720295.3125, 6720301.5625, 6720370.3125, 6720904.6875, 6720943.75, 6721525.0, 6727532.8125, 6727712.5, 6728720.3125, 6729187.5, 6730237.5, 6730237.5, 6731659.375, 6735743.75, 6737770.3125, 6738175.0, 6738300.0, 6738643.75, 6739823.4375, 6740300.0, 6740923.4375, 6741217.1875, 6742160.9375, 6742223.4375, 6742226.5625, 6742253.125, 6744428.125, 6745987.5, 6746559.375, 6746814.0625, 6747003.125, 6747465.625, 6747668.75, 6747725.0, 6748732.8125, 6749621.875, 6750059.375, 6750100.0, 6750678.125, 6750859.375, 6751087.5, 6751370.3125, 6753101.5625, 6753110.9375, 6753132.8125, 6753476.5625, 6754931.25, 6754935.9375, 6755421.875, 6756875.0, 6757326.5625, 6758000.0, 6759915.625, 6761751.5625, 6762985.9375, 6763031.25, 6764096.875, 6764181.25, 6764204.6875, 6764429.6875, 6764453.125, 6764646.875, 6764879.6875, 6766015.625, 6766507.8125, 6766765.625, 6767995.3125, 6769220.3125, 6769292.1875, 6770728.125, 6770742.1875, 6771756.25, 6771803.125, 6772100.0, 6772745.3125, 6773287.5, 6774432.8125, 6774439.0625, 6774493.75, 6774496.875, 6775060.9375, 6775332.8125, 6776376.5625, 6776984.375, 6777007.8125, 6777203.125, 6777806.25, 6777934.375, 6777954.6875, 6779285.9375, 6779290.625, 6779409.375, 6779626.5625, 6779650.0, 6780084.375, 6780212.5, 6781573.4375, 6782059.375, 6782484.375, 6782764.0625, 6784750.0, 6785440.625, 6786426.5625, 6786456.25, 6789920.3125, 6789934.375, 6790650.0, 6792521.875, 6794773.4375, 6795900.0, 6795981.25, 6796056.25, 6796059.375, 6797106.25, 6798625.0, 6799490.625, 6800517.1875, 6800945.3125, 6802021.875, 6803193.75, 6803262.5, 6805645.3125, 6806750.0, 6808640.625, 6809520.3125, 6810040.625, 6811134.375, 6812879.6875, 6816475.0, 6816528.125, 6819367.1875, 6821229.6875, 6821232.8125, 6822973.4375, 6828239.0625, 6828476.5625, 6833867.1875, 6837029.6875, 6837043.75, 6843082.8125, 6845712.5, 6846873.4375, 6847164.0625, 6847793.75, 6848256.25, 6848332.8125, 6848567.1875, 6848785.9375, 6849198.4375, 6850128.125, 6850873.4375, 6851382.8125, 6851675.0, 6852993.75, 6853028.125, 6854675.0, 6854884.375, 6854973.4375, 6855043.75, 6856023.4375, 6856337.5, 6858190.625, 6861448.4375, 6862550.0, 6865496.875, 6865501.5625, 6865528.125, 6865546.875, 6867750.0, 6867845.3125, 6868409.375, 6869159.375, 6869373.4375, 6869498.4375, 6869559.375, 6870340.625, 6870471.875, 6870806.25, 6871104.6875, 6871139.0625, 6871325.0, 6871464.0625, 6871585.9375, 6871764.0625, 6871790.625, 6872528.125, 6873117.1875, 6873135.9375, 6873150.0, 6873571.875, 6873784.375, 6874360.9375, 6874620.3125, 6874995.3125, 6875142.1875, 6875231.25, 6875420.3125, 6875751.5625, 6875825.0, 6875943.75, 6876071.875, 6876126.5625, 6877328.125, 6877612.5, 6877940.625, 6878035.9375, 6878639.0625, 6879153.125, 6880621.875, 6881303.125, 6881429.6875, 6881907.8125, 6888000.0, 6888342.1875, 6889925.0, 6892220.3125, 6892826.5625, 6893834.375, 6894175.0, 6896076.5625, 6896831.25, 6896987.5, 6898007.8125, 6900426.5625, 6901414.0625, 6905190.625, 6910254.6875, 6910467.1875, 6915490.625, 6915801.5625, 6918689.0625, 6921784.375, 6921925.0, 6921954.6875, 6922528.125, 6922803.125, 6926351.5625, 6928320.3125, 6928989.0625, 6935028.125, 6938210.9375, 6945907.8125, 6947668.75, 6952915.625, 6962214.0625, 6993450.0, 6993457.8125, 7003265.625, 7003512.5, 7003676.5625, 7003737.5, 7004012.5, 7010064.0625, 7012418.75, 7021409.375, 7030265.625, 7032275.0, 7033318.75, 7033579.6875, 7035159.375, 7035782.8125, 7039029.6875, 7039470.3125, 7040943.75, 7041645.3125, 7041670.3125, 7046431.25, 7051375.0, 7053550.0, 7054526.5625, 7058203.125, 7058717.1875, 7063470.3125, 7065148.4375, 7072060.9375, 7074762.5, 7078975.0, 7080571.875, 7080668.75, 7083073.4375, 7087482.8125, 7087950.0, 7088406.25, 7090725.0, 7105925.0, 7107870.3125, 7109887.5, 7109904.6875, 7110840.625, 7111700.0, 7111909.375, 7113210.9375, 7113626.5625, 7114504.6875, 7114793.75, 7115520.3125, 7116893.75, 7117418.75, 7118557.8125, 7118740.625, 7121140.625, 7126493.75, 7129864.0625, 7145357.8125, 7146618.75, 7147054.6875, 7151715.625, 7153614.0625, 7156818.75, 7156945.3125, 7160842.1875, 7161581.25, 7162270.3125, 7169351.5625, 7169460.9375, 7172792.1875, 7174484.375, 7176231.25, 7178285.9375, 7186645.3125, 7188776.5625, 7190157.8125, 7190832.8125, 7191043.75, 7191440.625, 7194017.1875, 7195103.125, 7198081.25, 7208751.5625, 7208778.125, 7213770.3125, 7214503.125, 7216351.5625, 7234131.25, 7234145.3125, 7238239.0625, 7258375.0, 7263118.75, 7266092.1875, 7267412.5, 7268081.25, 7268679.6875, 7270845.3125, 7283790.625, 7286942.1875, 7311254.6875, 7327168.75, 7328532.8125, 7338414.0625, 7345840.625, 7348515.625, 7348667.1875, 7351871.875, 7353445.3125, 7358335.9375, 7358954.6875, 7369820.3125, 7381662.5, 7383481.25, 7384846.875, 7385790.625, 7389190.625, 7389279.6875, 7395645.3125, 7395679.6875, 7395728.125, 7419401.5625, 7436717.1875, 7442012.5, 7464012.5, 7467639.0625, 7477676.5625, 7487070.3125, 7488292.1875, 7489684.375, 7491004.6875, 7491531.25, 7492884.375, 7494364.0625, 7527321.875, 7536146.875, 7539875.0, 7560909.375, 7568389.0625, 7580543.75, 7581306.25, 7586034.375, 7601081.25, 7608265.625, 7609529.6875, 7610767.1875, 7610773.4375, 7614429.6875, 7633626.5625, 7679939.0625, 7685598.4375, 7693879.6875, 7718489.0625, 7760968.75, 7763065.625, 7763271.875, 7792476.5625, 7795235.9375, 7840237.5, 7841557.8125, 7842289.0625, 7842543.75, 7842728.125, 7843204.6875, 7843251.5625, 7843720.3125, 7843853.125, 7844015.625, 7844078.125, 7844171.875, 7844464.0625, 7844870.3125, 7845287.5, 7845423.4375, 7845464.0625, 7845576.5625, 7845806.25, 7847171.875, 7847265.625, 7847618.75, 7849100.0, 7864150.0, 7877109.375, 7879493.75, 7882462.5, 7882803.125, 7885440.625, 7886978.125, 7887406.25, 7887467.1875, 7887656.25, 7913871.875, 7915107.8125, 7921271.875, 7921679.6875, 7923923.4375, 7924312.5, 7924403.125, 7924537.5, 7925285.9375, 7925304.6875, 7926490.625, 7927367.1875, 7930548.4375, 7936500.0, 7942739.0625, 7949529.6875, 7953953.125, 7955064.0625, 7955740.625, 7957351.5625, 7957540.625, 7957785.9375, 7957993.75, 7959900.0, 7959910.9375, 7959925.0, 7960045.3125, 7960114.0625, 7960648.4375, 7964520.3125, 7968268.75, 7968393.75, 7969423.4375, 7969431.25, 7970646.875, 7978553.125, 7979206.25, 7979545.3125, 7980235.9375, 7981035.9375, 7981339.0625, 7981510.9375, 7981525.0, 7982085.9375, 7982884.375, 7984612.5, 7984626.5625, 7993545.3125, 8003156.25, 8003210.9375, 8005450.0, 8006671.875, 8007104.6875, 8007837.5, 8008112.5, 8017107.8125, 8024895.3125, 8028900.0, 8029467.1875, 8032103.125, 8034793.75, 8035101.5625, 8035223.4375, 8035354.6875, 8035495.3125, 8036659.375, 8037454.6875, 8037496.875, 8038381.25, 8038657.8125, 8039703.125, 8040914.0625, 8041368.75, 8042431.25, 8056218.75, 8058050.0, 8060379.6875, 8066846.875, 8066871.875, 8070343.75, 8070346.875, 8089284.375, 8120385.9375, 8129471.875, 8134187.5, 8135023.4375, 8146123.4375, 8156226.5625, 8157076.5625, 8165979.6875, 8168042.1875, 8168045.3125, 8168393.75, 8176860.9375, 8176968.75, 8176976.5625, 8177153.125, 8179095.3125, 8180421.875, 8180654.6875, 8182607.8125, 8182807.8125, 8195126.5625, 8196473.4375, 8203904.6875, 8204201.5625, 8206642.1875, ...], [49.05682599119075, 8.825276864734047, 13.668055186993655, 56.89416763545418, 86.60427698952662, 89.36061904092251, 18.96361345967424, 32.31133792909381, 51.88411329514668, 18.98685336912833, 24.98680719863308, 8.226466667998336, 103.96644572676608, 35.3177179448395, 25.29543309769276, 67.3304225937725, 65.36601531349929, 48.07012610247923, 6.17157598770138, 22.31700658703739, 53.27496562957385, 15.174273843073735, 48.1817804229235, 64.24190235771208, 61.30600263103919, 5.2989103087774625, 91.22889520311794, 67.30194827975006, 49.54139150674759, 12.079311599580619, 77.41476477716238, 25.232678494687182, 5.732048620186901, 35.05231119465988, 22.3308157705751, 10.669852230282277, 36.08629967280926, 12.792985631042427, 23.07161600001516, 10.81271787724337, 148.2402991015457, 27.513611803898986, 26.32498985156207, 5.289144934202778, 67.2195889824347, 64.19661009787126, 64.33510050332144, 57.948363813679144, 24.303014970814655, 26.739388471679938, 8.215234705611662, 17.524864046459022, 14.057759644438994, 11.399471281067713, 50.08095848497045, 10.37069514907513, 124.35578036962696, 74.49619845524158, 14.140751976622601, 66.701533364432, 9.765545340322191, 26.85220448934744, 9.795193355323796, 7.247879876778149, 20.818164929325295, 76.06030070210564, 53.858094810659736, 5.238830142392948, 9.736238626582763, 40.067623112138534, 94.9637921094955, 23.42333684807506, 25.07067860306754, 7.324708827235717, 27.216262893034603, 15.542032375390107, 10.321433691327757, 22.152565499149375, 81.99378165617819, 29.41191626768358, 107.29338640162256, 17.926230957960513, 18.43456159881199, 13.07474998634638, 68.21843365522454, 18.701137385951352, 87.2919214272237, 8.090570939709417, 21.72090167624845, 114.56739757214825, 35.10616656075779, 14.656862878431733, 66.51933414880142, 17.052990909539773, 20.034880355141954, 47.88656037038563, 14.532260952691683, 53.22677356938051, 5.784578362971042, 27.058054681607807, 6.708623544588075, 26.99011732566565, 16.67995375779606, 24.943434654634906, 17.354203318056395, 70.5507627122432, 23.308654250383658, 32.67753925744614, 41.372554775294105, 64.35789649668938, 12.69759048571316, 15.108966203025728, 9.100434978723099, 54.491533724067025, 50.13210776985307, 22.947889921799916, 21.562422409195538, 28.61968785751533, 7.599271165193929, 44.77886286763067, 6.535089092726998, 18.689264708669754, 11.702144198585922, 14.53627713418216, 58.10339237316652, 21.796889626488415, 9.745790247918261, 31.035274319628098, 83.19621437246477, 19.328947991290086, 24.93864746009955, 133.19148411372507, 41.66082543086942, 72.19339594540162, 47.05820845793666, 144.16372786445473, 24.38061265520373, 14.615367884620888, 114.40087742917606, 7.7419083607132695, 12.92355698083675, 7.959311524645842, 18.469887525099892, 15.264149447201776, 48.05302635309047, 19.706382901063815, 32.726537760633036, 49.38284532582519, 6.123579598760503, 16.551535843316298, 5.902843138412401, 66.57338031725699, 101.18395174710781, 20.620812109407524, 20.393963775897905, 11.289197031105138, 6.177426882142631, 12.990413357296358, 95.45897857669776, 37.80619299099975, 6.063500190723322, 53.48174592188103, 53.89375440181634, 126.46680031692578, 34.54959662292842, 11.853342246580606, 39.272998180911806, 11.658294838525492, 57.940602596071884, 44.530224195985916, 31.297261678925977, 21.357339106841668, 19.445502647629198, 19.135653981515624, 13.239937345995756, 8.005146592449336, 5.094003061719563, 49.96980703654826, 15.368771993202762, 5.111257521453998, 20.06615305740253, 19.595606271278, 8.977141478125489, 6.10234297501986, 5.040179149803078, 71.78535937043411, 46.6666983737777, 28.580712449288555, 20.63408584224938, 9.149037979162793, 112.03323217807895, 9.599706612564544, 17.44480344682651, 27.303103123194504, 31.951889364709707, 21.695267984970002, 30.546247372894864, 33.53583651861803, 142.13040261582557, 46.952606741550504, 6.275157351630739, 97.62941595320964, 26.034236642307363, 55.17907482025389, 29.853165535069603, 47.839777268280194, 59.23823741633999, 18.268741367895068, 133.04671104443696, 13.117039108209356, 85.33358729742888, 95.81787151905388, 8.016558165514297, 8.991040649988705, 45.30777206803379, 67.09348040655718, 38.82293922860524, 8.85665821287226, 29.716550378933125, 94.72739867973414, 83.01643758541448, 38.563684067458546, 30.40925020060011, 19.997617785460893, 142.59916496112135, 23.854664548478816, 11.30295142473017, 45.894399575542856, 95.24516683580536, 12.690097320079005, 54.29085997483108, 6.233110268374845, 72.92502001564576, 17.22220169218094, 94.4781056314428, 28.189852241420905, 47.030912902709005, 59.83884763358009, 64.04888847287717, 58.413964874565686, 13.23154227773616, 34.460265302927176, 22.43690340974479, 51.78911198466805, 51.13820421258308, 9.310704028758776, 9.36382104735307, 35.556001272384755, 8.755205583829758, 21.962381352517177, 49.38788009599072, 24.04369082537512, 55.84291916889771, 5.307255482317072, 12.132222677577671, 15.668360639020271, 151.47732995991626, 13.390791549230697, 27.7810891157399, 58.09806832679695, 20.16709852119085, 31.97090797219801, 6.704471956675355, 16.7407483650711, 17.995586071260423, 38.94487479660989, 14.457045759288478, 51.218897571886785, 6.904614635385192, 17.623618388741377, 114.2526467350883, 13.449029323481993, 14.393656579024931, 12.138699285809572, 6.296965122651166, 11.288166642861363, 72.12706814705912, 44.489422368555886, 65.44240883842355, 37.68418516468022, 44.12828754353586, 11.012650257779132, 11.193808691738079, 13.341787421999257, 54.553296538653555, 84.55768504452831, 84.24988305113263, 125.0947245535505, 38.68017436233717, 38.24759078267209, 18.00786847229977, 78.01922423820595, 63.867736876325274, 18.915185375973074, 8.989509755253504, 156.7082785425999, 15.74241946016081, 150.7401152888285, 10.048664070100285, 108.46600327318096, 25.140927810140134, 33.97236352857199, 47.18727424965246, 11.897123536985685, 30.427400557384523, 193.0631183249236, 27.37473003261173, 19.477759488735327, 107.8766150474079, 82.10167424601198, 62.5173784316554, 18.97207375487795, 22.342637503876, 48.08963399564917, 55.10306615927023, 154.88048962181713, 83.11406739384535, 28.89408216524533, 43.66335627611452, 30.434874373312038, 30.09695407095753, 9.787052745390353, 5.6081741735399335, 49.76454680024481, 30.21765151323596, 63.05007880934006, 20.4467706141609, 76.34297762388583, 43.13470559063855, 86.90258378956446, 23.136265598754346, 40.77575408734368, 35.106200048089576, 27.83579981673639, 19.82740164559678, 104.42807612017982, 52.675031464033694, 15.96982014431619, 16.68642322181118, 11.011688141658702, 11.711735816522165, 16.02289436380225, 13.794438645630523, 84.19661083624896, 29.29035524605125, 64.74185830798498, 6.227087633799472, 50.657583542520456, 45.563120109896275, 10.656724492234579, 10.556044299561629, 13.422647385804476, 6.733336974848134, 76.64313301491266, 43.44296609766138, 71.70285666313148, 24.19030164749188, 13.036450775712657, 23.928011336848385, 8.791758868808243, 75.29281764466987, 30.24024279887323, 53.422463436751904, 5.955397340213279, 64.02440103493231, 42.777886552790115, 119.93151147051836, 54.64186550988151, 80.23861795216513, 8.605227792244076, 19.874529104661697, 29.817045813203965, 24.51059412066937, 7.435263961096693, 35.48253868067042, 65.4675324623127, 65.52347052678986, 13.792524016902137, 8.446939974387345, 77.15727662175689, 9.844684994470889, 36.28125606515944, 7.822317744718458, 25.47892448512976, 59.75215735619841, 27.056174002888064, 16.835321066180974, 6.956235060522179, 24.462535380803438, 19.802399334078, 78.99317389907873, 36.405885750048704, 60.19228081242076, 58.50719046770162, 13.453053711569167, 30.786319979585635, 5.95059784892571, 20.580742260986305, 16.312777146116684, 59.51709522761486, 40.83242197595382, 51.61135827658465, 14.35127120371151, 45.44147700809746, 5.603531018870377, 9.628865623450677, 88.34108444693699, 50.522785074911994, 73.53572017907253, 19.95378355029308, 61.81921471396828, 22.716718753606532, 60.52436513201579, 6.505033327047175, 20.64043003770067, 46.861363848051994, 30.177776017122447, 39.20597448350377, 50.058986615030065, 11.623407639182243, 39.669463084664244, 31.414438373421458, 27.191641061689978, 59.86724391835548, 10.39159032299499, 208.01264533003467, 115.81822331164716, 34.6751178436691, 91.96850073377841, 8.132589640905843, 37.92990783852565, 24.74157601639254, 45.9521887177788, 12.081791564102103, 80.17880713351188, 30.19328745782756, 14.452681527648483, 29.635310886389505, 45.410616484683636, 9.78476367233623, 58.93879791215979, 44.93092396563453, 7.013442842394609, 25.078294468749316, 96.43723534198918, 55.02666767556133, 281.89340936920735, 106.9016895876641, 72.9193903366371, 11.36408909771484, 22.455801431718307, 6.152621030450677, 7.543773114532999, 21.78200789249542, 13.602146273008126, 22.38561566430494, 164.44491640543697, 34.60185192465899, 19.58641809921082, 29.256105270331332, 6.634525806943061, 56.117734383179005, 13.83865584185989, 10.195571163459428, 23.293027096159406, 47.41586871584852, 92.05940914324133, 19.271169037797037, 13.181316404333097, 6.755763910248422, 67.218100447904, 22.700193748912767, 40.575503045863535, 48.323055873718815, 59.81157543148819, 13.271626645328404, 29.000952544565067, 30.186832370227528, 80.71306729023145, 86.79595324258837, 5.2707610017605555, 20.05798610646885, 50.03704698875578, 59.1528306333559, 19.82588891458588, 28.478616776467398, 27.69731721988723, 15.596930691817498, 74.70398946715918, 12.84208169125169, 5.0608710187079025, 19.823984193503424, 10.865403499270988, 16.09124324825526, 64.84800565366892, 9.838490934886645, 23.509222539184787, 13.072179867423985, 23.186006325960587, 21.08680616152172, 113.24841258065754, 43.62201933028578, 15.125566584816468, 52.372317394430176, 107.97772643705818, 17.273327452583274, 45.00646104326812, 5.596122616788309, 32.951551139353526, 119.7518396570003, 5.335602216930991, 18.182548783819392, 7.151460261278984, 56.85964608271973, 45.54373193693192, 11.580523378007486, 13.663913416293536, 17.554587375851188, 131.86373068444527, 18.79370669468713, 10.83626319493654, 48.39599500968323, 12.943384902588106, 11.21900605958421, 12.222776346153822, 8.293280259621703, 32.05094766256329, 23.09351666069905, 25.760864312032762, 23.15420983114845, 36.22761400602327, 12.657103309199318, 23.395072098431985, 12.400423531288991, 18.93119664268921, 5.268179677047422, 75.06914162423645, 31.732932034541136, 69.86872454397609, 14.682943219817668, 50.14095283954199, 29.44890932403688, 73.64857040501884, 36.63310661151732, 109.07862488484339, 20.520648955111255, 45.1606804199215, 11.93162846348438, 102.47331881746899, 14.661426291668159, 30.67345332826123, 17.16095290031393, 28.519323305387413, 5.392557894494056, 5.803294741719243, 34.03875512994739, 16.576372960382752, 7.5314316970811, 68.56410161158385, 27.36399536579961, 50.38497373169472, 16.804927146785406, 10.938281255665814, 91.17371705054833, 13.507676970239682, 11.559397697321366, 51.33416403332988, 87.4117862149378, 5.036585955450398, 84.97205209344513, 85.80085739625085, 8.199999041775861, 9.77895070261633, 17.843357341964886, 39.18849563823572, 17.97944578319666, 42.50442796701706, 5.1744707023624965, 61.076076028965836, 37.93316726683639, 22.596787421999863, 60.45319374919194, 93.37602947572566, 33.29106508960695, 6.995818691349037, 11.714473110570424, 5.226748329898467, 189.15534357824237, 79.56866361284486, 5.835939333439264, 11.45115500883923, 5.607879923959345, 24.28339399700338, 26.916078543499616, 13.373415063601376, 34.07143018179212, 33.172771749622115, 53.58408377137325, 50.918503106719676, 55.74414291973489, 43.37643216015694, 21.769679044972225, 25.979066907371163, 14.298334723477282, 67.75595140962477, 12.99798777845458, 60.094671853890155, 43.52283904778457, 102.88098781494445, 59.945166556055284, 48.28180202951095, 5.944523517331239, 5.747909394723597, 57.71516900521681, 38.55172900798261, 107.65252401764147, 99.75837629491156, 26.601414891462756, 12.865464556998585, 11.019473176395316, 35.664194585064905, 25.97201309679354, 15.563727415318825, 124.56491129809791, 18.94993522459408, 23.14361916652031, 20.96358276411503, 19.337380583411548, 42.213129649209165, 8.145426337154364, 62.549830211368985, 26.66523583365149, 56.03426327761355, 12.89760719506642, 10.3877137339052, 89.20520376821956, 5.328989477759476, 13.506753604736414, 18.99167969282262, 25.24387711626612, 15.191137232801367, 58.730289480065835, 63.48176085553978, 69.00530004634395, 55.264124913474326, 11.631279270152493, 9.120227990632465, 18.08458594604287, 45.583721659160716, 74.93306177821536, 74.60971198438303, 90.1467126400521, 5.378515638578612, 7.030005727428354, 49.04739848678478, 119.93969536706341, 16.199425333884122, 19.196323123211357, 52.10770636281049, 52.81646156595102, 6.660032313308943, 93.76632845340995, 35.09548396523495, 43.37629519161465, 16.963284762548664, 6.659845839746144, 11.253307940915526, 19.107338060752948, 16.846336032347867, 75.47821086389378, 21.396466794963597, 28.696157035660743, 22.67996940246471, 31.06052490057934, 52.473701881009184, 40.59739418422286, 34.780748413260135, 129.28870983886026, 91.51311945938257, 50.47592973502501, 19.805258148781437, 36.20571505913627, 6.460638456134823, 21.168535343051573, 55.52360561604783, 10.419500211678336, 72.54590118048259, 13.534876057720261, 8.543500204471197, 70.39519886546131, 16.170347560260446, 11.66705058171189, 64.56968392857233, 10.080413028909746, 23.47974359134307, 29.351563543827275, 29.46325201234924, 62.93932634127755, 16.155888666005726, 27.707916212577956, 10.510045309502042, 7.401033426996926, 19.613206894762616, 77.46414049297312, 15.194000990428187, 40.727135912863204, 58.75473641190569, 91.95122005230434, 39.11591903729101, 11.065734547625652, 44.09428005668213, 17.623145704676528, 5.038287072418729, 37.95539100840064, 40.853760388738024, 19.982102839972004, 10.819010331503895, 7.216791813978489, 25.804126625483736, 26.429967212757234, 99.20086199469327, 21.492894027484827, 5.773166902563871, 33.816667685481875, 26.901606357636684, 60.773560402838534, 48.859530871728005, 104.37796604246665, 21.397104882265374, 6.68597638392793, 27.856079076016574, 70.1286003812079, 70.1459306093744, 17.858738331085995, 18.671070939912646, 25.237904337526487, 50.81650696841142, 33.44638302866377, 108.82454686207721, 24.02114353474933, 42.59389138079028, 23.84593052741585, 8.910778787933324, 28.53313458000619, 16.6449473948305, 14.071324407171625, 7.309656159525518, 9.12959981999654, 53.54687162735206, 35.1698571772245, 28.66916839075887, 18.40831586471937, 28.513750425401874, 39.670979710846375, 16.98449799447132, 21.98789901483701, 69.03798997690077, 61.66224737216538, 25.40781489142205, 22.658208056910304, 9.065025045529744, 25.972580263686375, 17.618965560234173, 8.755641862694018, 7.763304468027499, 70.55050775306631, 9.557207833824405, 7.203798508021057, 38.89549305828115, 14.915175156649386, 74.68640388510009, 5.488251597891009, 63.220238824799, 75.22800094009304, 145.60579918442312, 21.594081363061257, 49.8033520011593, 39.052170601819796, 24.941865998478754, 89.73247213898685, 39.08524461027862, 12.7442066280653, 5.379099835368319, 7.580352324147101, 31.73248602984996, 54.691280256755086, 103.10213374280023, 56.26194052591507, 15.369087857679478, 52.55766671844728, 11.647971673340454, 18.99914007535628, 21.950546046427256, 142.9278386260712, 65.90790672430849, 5.531051678771482, 31.23316014833331, 54.46984073800224, 48.49877733129736, 12.759778878893366, 8.24949252164389, 6.562455525584276, 43.11557269032774, 91.85646694139417, 23.058975235423688, 19.520089866384783, 7.996391498710919, 123.05946416614944, 9.447011394894899, 6.951148002265597, 58.68022331471079, 12.802051716539168, 19.15673001276124, 70.33528939410029, 21.49237557594836, 19.53922488921392, 70.21321152824194, 56.17632638671392, 67.09350122747105, 43.45134300114427, 19.582997916592358, 11.743219092571078, 5.190476212806153, 17.428448596863504, 68.93738548361503, 16.714222235470736, 15.176727620262717, 47.83866921146621, 7.204800709979401, 38.31195683669648, 38.7291647764988, 59.99080881688293, 24.807189947642517, 186.21890871068328, 31.492405583830454, 76.95562802999937, 6.858060584388495, 5.830180192308334, 147.62073770729273, 11.365149485392948, 42.68556934770724, 42.20354149484264, 65.03306582774634, 98.15801080480706, 23.34459917199012, 17.884326367395918, 41.62036523090187, 11.133937910487491, 44.20117615617214, 74.2696799775897, 96.23228707375753, 74.65878296816756, 71.35701002216615, 11.966043314190951, 13.98924704786269, 19.20825822983206, 192.01554405617722, 8.391617819477256, 11.041172679303413, 45.7946554438643, 71.80608900967661, 29.001434460998507, 27.396237041187696, 31.105041578108914, 50.32879877822036, 9.192890222369229, 49.93002372931887, 93.05134781363202, 53.80225091202898, 16.000605834609665, 56.709445860304996, 44.00988143370808, 7.9580499522762915, 78.90420829837463, 41.64588222080561, 17.034390357861668, 29.24729009266069, 55.430219694666924, 44.81977431457334, 247.36913901040677, 17.80863295335839, 36.57445017232055, 108.30282556123653, 30.12853441700454, 11.559084847262119, 27.520638205528417, 43.561728355153264, 116.6048714859864, 49.968661467633794, 82.14550687712374, 39.79173477357173, 5.041099707742412, 6.188410511611917, 35.69399777606412, 15.38237940234512, 26.658837340389614, 24.89123313764278, 17.392496952149656, 98.60292758838253, 25.946175114380964, 37.97248671116273, 16.25541701151789, 23.509373042109054, 90.03314837765525, 171.3638078338818, 68.27530954578376, 38.897235615691415, 6.755122237409778, 10.52449369545621, 54.90712732992512, 19.639896078347665, 222.12374176575534, 19.16446672447969, 33.59149548829748, 45.780124203246984, 87.61039834388417, 20.216956335451563, 72.36340094373841, 106.56728108023614, 46.06883441573942, 15.196541331266719, 103.09052513804615, 241.1399978143464, 22.457910492361144, 66.87977695153575, 12.756034802042743, 78.62084688484609, 8.113808247747384, 23.512007290740772, 14.971612800172963, 69.71808423857475, 28.430641549432185, 24.162171294433854, 96.92512081796139, 68.81971245618378, 113.327794003029, 5.132152978691314, 9.418631914507712, 74.95193913218814, 22.612319006716447, 10.646556948342573, 57.29770362076395, 5.824668434410815, 13.574632410643318, 21.912264030910414, 93.50539466148325, 13.940533171955874, 57.326694637455034, 67.66700559892809, 27.763511754616516, 64.10641283081203, 56.02938061062454, 27.444500443023777, 10.680993335935499, 32.1449387356649, 58.948739313649746, 97.17735803305825, 97.40148151931741, 16.287582639429118, 85.39837628396393, 7.839065611044427, 52.96965456253473, 9.658091437417681, 33.48709307691664, 48.73957993166693, 35.038605158355494, 13.150047411194715, 19.04464808603014, 95.52523421803167, 19.19439088665371, 57.207690372598485, 25.31057915148164, 76.99325842155997, 15.497302998114918, 28.406994318374796, 66.5575329877677, 117.08519469996548, 11.318247348058103, 9.320901503349583, 13.958508283936476, 46.20438472050172, 30.123994774360614, 87.11363329099024, 40.7607085676269, 13.931912777816503, 6.519770156695393, 13.59275037146875, 279.15180676534777, 13.985201066564688, 15.383549074916772, 102.18207278465272, 10.663117453055351, 55.30909230784411, 17.983441559606568, 27.036693848151398, 21.466459496071916, 15.399445875760586, 35.25977561227223, 108.22993184782186, 61.099973179310766, ...])
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);
([3578212.5, 3583982.8125, 3623931.25, 3636457.8125, 3643226.5625, 3664781.25, 3666239.0625, 3764270.3125, 3764760.9375, 3766128.125, 3774496.875, 3812032.8125, 3824914.0625, 3826175.0, 3827604.6875, 3827876.5625, 3832021.875, 3859067.1875, 3859090.625, 3861256.25, 3865501.5625, 3866185.9375, 3874212.5, 3881817.1875, 3885996.875, 3889043.75, 3895648.4375, 3901979.6875, 3906198.4375, 3906987.5, 3910917.1875, 3912070.3125, 3913756.25, 3914026.5625, 3920207.8125, 3923668.75, 3934806.25, 3956984.375, 3962814.0625, 3974610.9375, 3982812.5, 3992387.5, 4002885.9375, 4005337.5, 4006657.8125, 4008726.5625, 4011017.1875, 4014300.0, 4017573.4375, 4028378.125, 4037673.4375, 4048679.6875, 4049318.75, 4050859.375, 4054423.4375, 4069820.3125, 4072479.6875, 4078753.125, 4079435.9375, 4082678.125, 4084604.6875, 4084614.0625, 4088990.625, 4092300.0, 4097217.1875, 4111704.6875, 4113575.0, 4124459.375, 4134520.3125, 4141342.1875, 4162112.5, 4165142.1875, 4173914.0625, 4175053.125, 4189284.375, 4204192.1875, 4258365.625, 4259034.375, 4265735.9375, 4311365.625, 4311606.25, 4319398.4375, 4319406.25, 4321860.9375, 4329446.875, 4330039.0625, 4376582.8125, 4400417.1875, 4412073.4375, 4412714.0625, 4414609.375, 4414612.5, 4415179.6875, 4415948.4375, 4417210.9375, 4417581.25, 4421779.6875, 4426570.3125, 4427421.875, 4427460.9375, 4427914.0625, 4428337.5, 4429729.6875, 4440260.9375, 4443356.25, 4449471.875, 4450362.5, 4457182.8125, 4461700.0, 4462423.4375, 4466631.25, 4473017.1875, 4473584.375, 4474965.625, 4482775.0, 4482965.625, 4485676.5625, 4508721.875, 4521534.375, 4547598.4375, 4547932.8125, 4549854.6875, 4552342.1875, 4552378.125, 4555053.125, 4568487.5, 4577620.3125, 4579953.125, 4581820.3125, 4586040.625, 4589273.4375, 4607018.75, 4608267.1875, 4614665.625, 4617853.125, 4621281.25, 4625576.5625, 4626007.8125, 4628128.125, 4628517.1875, 4631868.75, 4632628.125, 4632701.5625, 4632723.4375, 4634625.0, 4640623.4375, 4647164.0625, 4662876.5625, 4702809.375, 4715115.625, 4723695.3125, 4723695.3125, 4731504.6875, 4768475.0, 4783028.125, 4811253.125, 4813043.75, 4814276.5625, 4830306.25, 4832657.8125, 4847262.5, 4862906.25, 4864867.1875, 4869568.75, 4869764.0625, 4877853.125, 4920454.6875, 4920945.3125, 4935648.4375, 4935685.9375, 4947618.75, 4965320.3125, 4967776.5625, 4975848.4375, 4977467.1875, 5011673.4375, 5011742.1875, 5036601.5625, 5049960.9375, 5050057.8125, 5052473.4375, 5066356.25, 5071048.4375, 5086062.5, 5086140.625, 5090387.5, 5099626.5625, 5119342.1875, 5120059.375, 5131273.4375, 5154390.625, 5162776.5625, 5165003.125, 5178993.75, 5180968.75, 5180995.3125, 5183957.8125, 5189617.1875, 5198060.9375, 5252387.5, 5256726.5625, 5280718.75, 5288953.125, 5305100.0, 5388731.25, 5444356.25, 5530054.6875, 5552662.5, 5554848.4375, 5589092.1875, 5600850.0, 5639087.5, 5646620.3125, 5649281.25, 5651732.8125, 5671396.875, 5685614.0625, 5704351.5625, 5745131.25, 5760650.0, 5760670.3125, 5767396.875, 5788489.0625, 5810739.0625, 5812314.0625, 5817535.9375, 5821048.4375, 5846957.8125, 5850825.0, 5852132.8125, 5856189.0625, 5859478.125, 5861412.5, 5873481.25, 5901465.625, 5920440.625, 5939354.6875, 5968109.375, 5977582.8125, 6007992.1875, 6010279.6875, 6017731.25, 6032250.0, 6040004.6875, 6042123.4375, 6045665.625, 6058684.375, 6061548.4375, 6063142.1875, 6065018.75, 6065140.625, 6066046.875, 6067268.75, 6068232.8125, 6072303.125, 6072637.5, 6075151.5625, 6079431.25, 6081237.5, 6094384.375, 6095918.75, 6115495.3125, 6117350.0, 6120042.1875, 6121768.75, 6126450.0, 6126675.0, 6127839.0625, 6142970.3125, 6149356.25, 6155725.0, 6156726.5625, 6157393.75, 6158176.5625, 6158815.625, 6159095.3125, 6165612.5, 6166335.9375, 6168956.25, 6169210.9375, 6171239.0625, 6174909.375, 6176676.5625, 6178567.1875, 6178793.75, 6179679.6875, 6179884.375, 6184501.5625, 6205126.5625, 6226676.5625, 6233868.75, 6234165.625, 6241025.0, 6241989.0625, 6248060.9375, 6256926.5625, 6257509.375, 6258012.5, 6261109.375, 6264731.25, 6268646.875, 6274931.25, 6275045.3125, 6276767.1875, 6282565.625, 6284128.125, 6288376.5625, 6296057.8125, 6299801.5625, 6299968.75, 6302878.125, 6304920.3125, 6305168.75, 6309343.75, 6311457.8125, 6312496.875, 6313015.625, 6313031.25, 6314042.1875, 6320546.875, 6324721.875, 6325100.0, 6325379.6875, 6331423.4375, 6353198.4375, 6362026.5625, 6365303.125, 6369454.6875, 6389664.0625, 6397359.375, 6401821.875, 6409850.0, 6419042.1875, 6425275.0, 6430671.875, 6437825.0, 6441000.0, 6443114.0625, 6444095.3125, 6445000.0, 6448870.3125, 6449831.25, 6453120.3125, 6459525.0, 6461037.5, 6465375.0, 6472423.4375, 6474510.9375, 6475532.8125, 6481823.4375, 6488017.1875, 6492785.9375, 6495142.1875, 6495476.5625, 6498143.75, 6505637.5, 6506848.4375, 6516250.0, 6516828.125, 6519210.9375, 6520659.375, 6534156.25, 6537128.125, 6537946.875, 6538331.25, 6545667.1875, 6551220.3125, 6551701.5625, 6553500.0, 6557593.75, 6563415.625, 6563821.875, 6566276.5625, 6586010.9375, 6586578.125, 6587432.8125, 6588521.875, 6590381.25, 6611139.0625, 6613148.4375, 6638375.0, 6643054.6875, 6648320.3125, 6648898.4375, 6653553.125, 6654928.125, 6655440.625, 6656389.0625, 6658362.5, 6660887.5, 6661293.75, 6661295.3125, 6661331.25, 6668646.875, 6669328.125, 6669504.6875, 6669717.1875, 6671321.875, 6673085.9375, 6673278.125, 6674546.875, 6675967.1875, 6676921.875, 6677839.0625, 6677850.0, 6679064.0625, 6681846.875, 6684956.25, 6686621.875, 6686795.3125, 6686834.375, 6687759.375, 6688298.4375, 6688357.8125, 6688359.375, 6688700.0, 6689271.875, 6689484.375, 6690395.3125, 6691300.0, 6691392.1875, 6691393.75, 6691757.8125, 6691909.375, 6691946.875, 6691987.5, 6692032.8125, 6692189.0625, 6692418.75, 6692439.0625, 6692564.0625, 6692598.4375, 6692779.6875, 6692807.8125, 6692818.75, 6693473.4375, 6693670.3125, 6693745.3125, 6694251.5625, 6695237.5, 6695284.375, 6695978.125, 6705818.75, 6713948.4375, 6716318.75, 6716942.1875, 6717371.875, 6717864.0625, 6717885.9375, 6717903.125, 6717946.875, 6718017.1875, 6718379.6875, 6718682.8125, 6719231.25, 6719568.75, 6719946.875, 6720295.3125, 6720301.5625, 6720370.3125, 6720904.6875, 6720943.75, 6721525.0, 6727532.8125, 6727712.5, 6728720.3125, 6729187.5, 6730237.5, 6730237.5, 6731659.375, 6735743.75, 6737770.3125, 6738175.0, 6738300.0, 6738643.75, 6739823.4375, 6740300.0, 6740923.4375, 6741217.1875, 6742160.9375, 6742223.4375, 6742226.5625, 6742253.125, 6744428.125, 6745987.5, 6746559.375, 6746814.0625, 6747003.125, 6747465.625, 6747668.75, 6747725.0, 6748732.8125, 6749621.875, 6750059.375, 6750100.0, 6750678.125, 6750859.375, 6751087.5, 6751370.3125, 6753101.5625, 6753110.9375, 6753132.8125, 6753476.5625, 6754931.25, 6754935.9375, 6755421.875, 6756875.0, 6757326.5625, 6758000.0, 6759915.625, 6761751.5625, 6762985.9375, 6763031.25, 6764096.875, 6764181.25, 6764204.6875, 6764429.6875, 6764453.125, 6764646.875, 6764879.6875, 6766015.625, 6766507.8125, 6766765.625, 6767995.3125, 6769220.3125, 6769292.1875, 6770728.125, 6770742.1875, 6771756.25, 6771803.125, 6772100.0, 6772745.3125, 6773287.5, 6774432.8125, 6774439.0625, 6774493.75, 6774496.875, 6775060.9375, 6775332.8125, 6776376.5625, 6776984.375, 6777007.8125, 6777203.125, 6777806.25, 6777934.375, 6777954.6875, 6779285.9375, 6779290.625, 6779409.375, 6779626.5625, 6779650.0, 6780084.375, 6780212.5, 6781573.4375, 6782059.375, 6782484.375, 6782764.0625, 6784750.0, 6785440.625, 6786426.5625, 6786456.25, 6789920.3125, 6789934.375, 6790650.0, 6792521.875, 6794773.4375, 6795900.0, 6795981.25, 6796056.25, 6796059.375, 6797106.25, 6798625.0, 6799490.625, 6800517.1875, 6800945.3125, 6802021.875, 6803193.75, 6803262.5, 6805645.3125, 6806750.0, 6808640.625, 6809520.3125, 6810040.625, 6811134.375, 6812879.6875, 6816475.0, 6816528.125, 6819367.1875, 6821229.6875, 6821232.8125, 6822973.4375, 6828239.0625, 6828476.5625, 6833867.1875, 6837029.6875, 6837043.75, 6843082.8125, 6845712.5, 6846873.4375, 6847164.0625, 6847793.75, 6848256.25, 6848332.8125, 6848567.1875, 6848785.9375, 6849198.4375, 6850128.125, 6850873.4375, 6851382.8125, 6851675.0, 6852993.75, 6853028.125, 6854675.0, 6854884.375, 6854973.4375, 6855043.75, 6856023.4375, 6856337.5, 6858190.625, 6861448.4375, 6862550.0, 6865496.875, 6865501.5625, 6865528.125, 6865546.875, 6867750.0, 6867845.3125, 6868409.375, 6869159.375, 6869373.4375, 6869498.4375, 6869559.375, 6870340.625, 6870471.875, 6870806.25, 6871104.6875, 6871139.0625, 6871325.0, 6871464.0625, 6871585.9375, 6871764.0625, 6871790.625, 6872528.125, 6873117.1875, 6873135.9375, 6873150.0, 6873571.875, 6873784.375, 6874360.9375, 6874620.3125, 6874995.3125, 6875142.1875, 6875231.25, 6875420.3125, 6875751.5625, 6875825.0, 6875943.75, 6876071.875, 6876126.5625, 6877328.125, 6877612.5, 6877940.625, 6878035.9375, 6878639.0625, 6879153.125, 6880621.875, 6881303.125, 6881429.6875, 6881907.8125, 6888000.0, 6888342.1875, 6889925.0, 6892220.3125, 6892826.5625, 6893834.375, 6894175.0, 6896076.5625, 6896831.25, 6896987.5, 6898007.8125, 6900426.5625, 6901414.0625, 6905190.625, 6910254.6875, 6910467.1875, 6915490.625, 6915801.5625, 6918689.0625, 6921784.375, 6921925.0, 6921954.6875, 6922528.125, 6922803.125, 6926351.5625, 6928320.3125, 6928989.0625, 6935028.125, 6938210.9375, 6945907.8125, 6947668.75, 6952915.625, 6962214.0625, 6993450.0, 6993457.8125, 7003265.625, 7003512.5, 7003676.5625, 7003737.5, 7004012.5, 7010064.0625, 7012418.75, 7021409.375, 7030265.625, 7032275.0, 7033318.75, 7033579.6875, 7035159.375, 7035782.8125, 7039029.6875, 7039470.3125, 7040943.75, 7041645.3125, 7041670.3125, 7046431.25, 7051375.0, 7053550.0, 7054526.5625, 7058203.125, 7058717.1875, 7063470.3125, 7065148.4375, 7072060.9375, 7074762.5, 7078975.0, 7080571.875, 7080668.75, 7083073.4375, 7087482.8125, 7087950.0, 7088406.25, 7090725.0, 7105925.0, 7107870.3125, 7109887.5, 7109904.6875, 7110840.625, 7111700.0, 7111909.375, 7113210.9375, 7113626.5625, 7114504.6875, 7114793.75, 7115520.3125, 7116893.75, 7117418.75, 7118557.8125, 7118740.625, 7121140.625, 7126493.75, 7129864.0625, 7145357.8125, 7146618.75, 7147054.6875, 7151715.625, 7153614.0625, 7156818.75, 7156945.3125, 7160842.1875, 7161581.25, 7162270.3125, 7169351.5625, 7169460.9375, 7172792.1875, 7174484.375, 7176231.25, 7178285.9375, 7186645.3125, 7188776.5625, 7190157.8125, 7190832.8125, 7191043.75, 7191440.625, 7194017.1875, 7195103.125, 7198081.25, 7208751.5625, 7208778.125, 7213770.3125, 7214503.125, 7216351.5625, 7234131.25, 7234145.3125, 7238239.0625, 7258375.0, 7263118.75, 7266092.1875, 7267412.5, 7268081.25, 7268679.6875, 7270845.3125, 7283790.625, 7286942.1875, 7311254.6875, 7327168.75, 7328532.8125, 7338414.0625, 7345840.625, 7348515.625, 7348667.1875, 7351871.875, 7353445.3125, 7358335.9375, 7358954.6875, 7369820.3125, 7381662.5, 7383481.25, 7384846.875, 7385790.625, 7389190.625, 7389279.6875, 7395645.3125, 7395679.6875, 7395728.125, 7419401.5625, 7436717.1875, 7442012.5, 7464012.5, 7467639.0625, 7477676.5625, 7487070.3125, 7488292.1875, 7489684.375, 7491004.6875, 7491531.25, 7492884.375, 7494364.0625, 7527321.875, 7536146.875, 7539875.0, 7560909.375, 7568389.0625, 7580543.75, 7581306.25, 7586034.375, 7601081.25, 7608265.625, 7609529.6875, 7610767.1875, 7610773.4375, 7614429.6875, 7633626.5625, 7679939.0625, 7685598.4375, 7693879.6875, 7718489.0625, 7760968.75, 7763065.625, 7763271.875, 7792476.5625, 7795235.9375, 7840237.5, 7841557.8125, 7842289.0625, 7842543.75, 7842728.125, 7843204.6875, 7843251.5625, 7843720.3125, 7843853.125, 7844015.625, 7844078.125, 7844171.875, 7844464.0625, 7844870.3125, 7845287.5, 7845423.4375, 7845464.0625, 7845576.5625, 7845806.25, 7847171.875, 7847265.625, 7847618.75, 7849100.0, 7864150.0, 7877109.375, 7879493.75, 7882462.5, 7882803.125, 7885440.625, 7886978.125, 7887406.25, 7887467.1875, 7887656.25, 7913871.875, 7915107.8125, 7921271.875, 7921679.6875, 7923923.4375, 7924312.5, 7924403.125, 7924537.5, 7925285.9375, 7925304.6875, 7926490.625, 7927367.1875, 7930548.4375, 7936500.0, 7942739.0625, 7949529.6875, 7953953.125, 7955064.0625, 7955740.625, 7957351.5625, 7957540.625, 7957785.9375, 7957993.75, 7959900.0, 7959910.9375, 7959925.0, 7960045.3125, 7960114.0625, 7960648.4375, 7964520.3125, 7968268.75, 7968393.75, 7969423.4375, 7969431.25, 7970646.875, 7978553.125, 7979206.25, 7979545.3125, 7980235.9375, 7981035.9375, 7981339.0625, 7981510.9375, 7981525.0, 7982085.9375, 7982884.375, 7984612.5, 7984626.5625, 7993545.3125, 8003156.25, 8003210.9375, 8005450.0, 8006671.875, 8007104.6875, 8007837.5, 8008112.5, 8017107.8125, 8024895.3125, 8028900.0, 8029467.1875, 8032103.125, 8034793.75, 8035101.5625, 8035223.4375, 8035354.6875, 8035495.3125, 8036659.375, 8037454.6875, 8037496.875, 8038381.25, 8038657.8125, 8039703.125, 8040914.0625, 8041368.75, 8042431.25, 8056218.75, 8058050.0, 8060379.6875, 8066846.875, 8066871.875, 8070343.75, 8070346.875, 8089284.375, 8120385.9375, 8129471.875, 8134187.5, 8135023.4375, 8146123.4375, 8156226.5625, 8157076.5625, 8165979.6875, 8168042.1875, 8168045.3125, 8168393.75, 8176860.9375, 8176968.75, 8176976.5625, 8177153.125, 8179095.3125, 8180421.875, 8180654.6875, 8182607.8125, 8182807.8125, 8195126.5625, 8196473.4375, 8203904.6875, 8204201.5625, 8206642.1875, ...], [49.05682599119075, 8.825276864734047, 13.668055186993655, 56.89416763545418, 86.60427698952662, 89.36061904092251, 18.96361345967424, 32.31133792909381, 51.88411329514668, 18.98685336912833, 24.98680719863308, 8.226466667998336, 103.96644572676608, 35.3177179448395, 25.29543309769276, 67.3304225937725, 65.36601531349929, 48.07012610247923, 6.17157598770138, 22.31700658703739, 53.27496562957385, 15.174273843073735, 48.1817804229235, 64.24190235771208, 61.30600263103919, 5.2989103087774625, 91.22889520311794, 67.30194827975006, 49.54139150674759, 12.079311599580619, 77.41476477716238, 25.232678494687182, 5.732048620186901, 35.05231119465988, 22.3308157705751, 10.669852230282277, 36.08629967280926, 12.792985631042427, 23.07161600001516, 10.81271787724337, 148.2402991015457, 27.513611803898986, 26.32498985156207, 5.289144934202778, 67.2195889824347, 64.19661009787126, 64.33510050332144, 57.948363813679144, 24.303014970814655, 26.739388471679938, 8.215234705611662, 17.524864046459022, 14.057759644438994, 11.399471281067713, 50.08095848497045, 10.37069514907513, 124.35578036962696, 74.49619845524158, 14.140751976622601, 66.701533364432, 9.765545340322191, 26.85220448934744, 9.795193355323796, 7.247879876778149, 20.818164929325295, 76.06030070210564, 53.858094810659736, 5.238830142392948, 9.736238626582763, 40.067623112138534, 94.9637921094955, 23.42333684807506, 25.07067860306754, 7.324708827235717, 27.216262893034603, 15.542032375390107, 10.321433691327757, 22.152565499149375, 81.99378165617819, 29.41191626768358, 107.29338640162256, 17.926230957960513, 18.43456159881199, 13.07474998634638, 68.21843365522454, 18.701137385951352, 87.2919214272237, 8.090570939709417, 21.72090167624845, 114.56739757214825, 35.10616656075779, 14.656862878431733, 66.51933414880142, 17.052990909539773, 20.034880355141954, 47.88656037038563, 14.532260952691683, 53.22677356938051, 5.784578362971042, 27.058054681607807, 6.708623544588075, 26.99011732566565, 16.67995375779606, 24.943434654634906, 17.354203318056395, 70.5507627122432, 23.308654250383658, 32.67753925744614, 41.372554775294105, 64.35789649668938, 12.69759048571316, 15.108966203025728, 9.100434978723099, 54.491533724067025, 50.13210776985307, 22.947889921799916, 21.562422409195538, 28.61968785751533, 7.599271165193929, 44.77886286763067, 6.535089092726998, 18.689264708669754, 11.702144198585922, 14.53627713418216, 58.10339237316652, 21.796889626488415, 9.745790247918261, 31.035274319628098, 83.19621437246477, 19.328947991290086, 24.93864746009955, 133.19148411372507, 41.66082543086942, 72.19339594540162, 47.05820845793666, 144.16372786445473, 24.38061265520373, 14.615367884620888, 114.40087742917606, 7.7419083607132695, 12.92355698083675, 7.959311524645842, 18.469887525099892, 15.264149447201776, 48.05302635309047, 19.706382901063815, 32.726537760633036, 49.38284532582519, 6.123579598760503, 16.551535843316298, 5.902843138412401, 66.57338031725699, 101.18395174710781, 20.620812109407524, 20.393963775897905, 11.289197031105138, 6.177426882142631, 12.990413357296358, 95.45897857669776, 37.80619299099975, 6.063500190723322, 53.48174592188103, 53.89375440181634, 126.46680031692578, 34.54959662292842, 11.853342246580606, 39.272998180911806, 11.658294838525492, 57.940602596071884, 44.530224195985916, 31.297261678925977, 21.357339106841668, 19.445502647629198, 19.135653981515624, 13.239937345995756, 8.005146592449336, 5.094003061719563, 49.96980703654826, 15.368771993202762, 5.111257521453998, 20.06615305740253, 19.595606271278, 8.977141478125489, 6.10234297501986, 5.040179149803078, 71.78535937043411, 46.6666983737777, 28.580712449288555, 20.63408584224938, 9.149037979162793, 112.03323217807895, 9.599706612564544, 17.44480344682651, 27.303103123194504, 31.951889364709707, 21.695267984970002, 30.546247372894864, 33.53583651861803, 142.13040261582557, 46.952606741550504, 6.275157351630739, 97.62941595320964, 26.034236642307363, 55.17907482025389, 29.853165535069603, 47.839777268280194, 59.23823741633999, 18.268741367895068, 133.04671104443696, 13.117039108209356, 85.33358729742888, 95.81787151905388, 8.016558165514297, 8.991040649988705, 45.30777206803379, 67.09348040655718, 38.82293922860524, 8.85665821287226, 29.716550378933125, 94.72739867973414, 83.01643758541448, 38.563684067458546, 30.40925020060011, 19.997617785460893, 142.59916496112135, 23.854664548478816, 11.30295142473017, 45.894399575542856, 95.24516683580536, 12.690097320079005, 54.29085997483108, 6.233110268374845, 72.92502001564576, 17.22220169218094, 94.4781056314428, 28.189852241420905, 47.030912902709005, 59.83884763358009, 64.04888847287717, 58.413964874565686, 13.23154227773616, 34.460265302927176, 22.43690340974479, 51.78911198466805, 51.13820421258308, 9.310704028758776, 9.36382104735307, 35.556001272384755, 8.755205583829758, 21.962381352517177, 49.38788009599072, 24.04369082537512, 55.84291916889771, 5.307255482317072, 12.132222677577671, 15.668360639020271, 151.47732995991626, 13.390791549230697, 27.7810891157399, 58.09806832679695, 20.16709852119085, 31.97090797219801, 6.704471956675355, 16.7407483650711, 17.995586071260423, 38.94487479660989, 14.457045759288478, 51.218897571886785, 6.904614635385192, 17.623618388741377, 114.2526467350883, 13.449029323481993, 14.393656579024931, 12.138699285809572, 6.296965122651166, 11.288166642861363, 72.12706814705912, 44.489422368555886, 65.44240883842355, 37.68418516468022, 44.12828754353586, 11.012650257779132, 11.193808691738079, 13.341787421999257, 54.553296538653555, 84.55768504452831, 84.24988305113263, 125.0947245535505, 38.68017436233717, 38.24759078267209, 18.00786847229977, 78.01922423820595, 63.867736876325274, 18.915185375973074, 8.989509755253504, 156.7082785425999, 15.74241946016081, 150.7401152888285, 10.048664070100285, 108.46600327318096, 25.140927810140134, 33.97236352857199, 47.18727424965246, 11.897123536985685, 30.427400557384523, 193.0631183249236, 27.37473003261173, 19.477759488735327, 107.8766150474079, 82.10167424601198, 62.5173784316554, 18.97207375487795, 22.342637503876, 48.08963399564917, 55.10306615927023, 154.88048962181713, 83.11406739384535, 28.89408216524533, 43.66335627611452, 30.434874373312038, 30.09695407095753, 9.787052745390353, 5.6081741735399335, 49.76454680024481, 30.21765151323596, 63.05007880934006, 20.4467706141609, 76.34297762388583, 43.13470559063855, 86.90258378956446, 23.136265598754346, 40.77575408734368, 35.106200048089576, 27.83579981673639, 19.82740164559678, 104.42807612017982, 52.675031464033694, 15.96982014431619, 16.68642322181118, 11.011688141658702, 11.711735816522165, 16.02289436380225, 13.794438645630523, 84.19661083624896, 29.29035524605125, 64.74185830798498, 6.227087633799472, 50.657583542520456, 45.563120109896275, 10.656724492234579, 10.556044299561629, 13.422647385804476, 6.733336974848134, 76.64313301491266, 43.44296609766138, 71.70285666313148, 24.19030164749188, 13.036450775712657, 23.928011336848385, 8.791758868808243, 75.29281764466987, 30.24024279887323, 53.422463436751904, 5.955397340213279, 64.02440103493231, 42.777886552790115, 119.93151147051836, 54.64186550988151, 80.23861795216513, 8.605227792244076, 19.874529104661697, 29.817045813203965, 24.51059412066937, 7.435263961096693, 35.48253868067042, 65.4675324623127, 65.52347052678986, 13.792524016902137, 8.446939974387345, 77.15727662175689, 9.844684994470889, 36.28125606515944, 7.822317744718458, 25.47892448512976, 59.75215735619841, 27.056174002888064, 16.835321066180974, 6.956235060522179, 24.462535380803438, 19.802399334078, 78.99317389907873, 36.405885750048704, 60.19228081242076, 58.50719046770162, 13.453053711569167, 30.786319979585635, 5.95059784892571, 20.580742260986305, 16.312777146116684, 59.51709522761486, 40.83242197595382, 51.61135827658465, 14.35127120371151, 45.44147700809746, 5.603531018870377, 9.628865623450677, 88.34108444693699, 50.522785074911994, 73.53572017907253, 19.95378355029308, 61.81921471396828, 22.716718753606532, 60.52436513201579, 6.505033327047175, 20.64043003770067, 46.861363848051994, 30.177776017122447, 39.20597448350377, 50.058986615030065, 11.623407639182243, 39.669463084664244, 31.414438373421458, 27.191641061689978, 59.86724391835548, 10.39159032299499, 208.01264533003467, 115.81822331164716, 34.6751178436691, 91.96850073377841, 8.132589640905843, 37.92990783852565, 24.74157601639254, 45.9521887177788, 12.081791564102103, 80.17880713351188, 30.19328745782756, 14.452681527648483, 29.635310886389505, 45.410616484683636, 9.78476367233623, 58.93879791215979, 44.93092396563453, 7.013442842394609, 25.078294468749316, 96.43723534198918, 55.02666767556133, 281.89340936920735, 106.9016895876641, 72.9193903366371, 11.36408909771484, 22.455801431718307, 6.152621030450677, 7.543773114532999, 21.78200789249542, 13.602146273008126, 22.38561566430494, 164.44491640543697, 34.60185192465899, 19.58641809921082, 29.256105270331332, 6.634525806943061, 56.117734383179005, 13.83865584185989, 10.195571163459428, 23.293027096159406, 47.41586871584852, 92.05940914324133, 19.271169037797037, 13.181316404333097, 6.755763910248422, 67.218100447904, 22.700193748912767, 40.575503045863535, 48.323055873718815, 59.81157543148819, 13.271626645328404, 29.000952544565067, 30.186832370227528, 80.71306729023145, 86.79595324258837, 5.2707610017605555, 20.05798610646885, 50.03704698875578, 59.1528306333559, 19.82588891458588, 28.478616776467398, 27.69731721988723, 15.596930691817498, 74.70398946715918, 12.84208169125169, 5.0608710187079025, 19.823984193503424, 10.865403499270988, 16.09124324825526, 64.84800565366892, 9.838490934886645, 23.509222539184787, 13.072179867423985, 23.186006325960587, 21.08680616152172, 113.24841258065754, 43.62201933028578, 15.125566584816468, 52.372317394430176, 107.97772643705818, 17.273327452583274, 45.00646104326812, 5.596122616788309, 32.951551139353526, 119.7518396570003, 5.335602216930991, 18.182548783819392, 7.151460261278984, 56.85964608271973, 45.54373193693192, 11.580523378007486, 13.663913416293536, 17.554587375851188, 131.86373068444527, 18.79370669468713, 10.83626319493654, 48.39599500968323, 12.943384902588106, 11.21900605958421, 12.222776346153822, 8.293280259621703, 32.05094766256329, 23.09351666069905, 25.760864312032762, 23.15420983114845, 36.22761400602327, 12.657103309199318, 23.395072098431985, 12.400423531288991, 18.93119664268921, 5.268179677047422, 75.06914162423645, 31.732932034541136, 69.86872454397609, 14.682943219817668, 50.14095283954199, 29.44890932403688, 73.64857040501884, 36.63310661151732, 109.07862488484339, 20.520648955111255, 45.1606804199215, 11.93162846348438, 102.47331881746899, 14.661426291668159, 30.67345332826123, 17.16095290031393, 28.519323305387413, 5.392557894494056, 5.803294741719243, 34.03875512994739, 16.576372960382752, 7.5314316970811, 68.56410161158385, 27.36399536579961, 50.38497373169472, 16.804927146785406, 10.938281255665814, 91.17371705054833, 13.507676970239682, 11.559397697321366, 51.33416403332988, 87.4117862149378, 5.036585955450398, 84.97205209344513, 85.80085739625085, 8.199999041775861, 9.77895070261633, 17.843357341964886, 39.18849563823572, 17.97944578319666, 42.50442796701706, 5.1744707023624965, 61.076076028965836, 37.93316726683639, 22.596787421999863, 60.45319374919194, 93.37602947572566, 33.29106508960695, 6.995818691349037, 11.714473110570424, 5.226748329898467, 189.15534357824237, 79.56866361284486, 5.835939333439264, 11.45115500883923, 5.607879923959345, 24.28339399700338, 26.916078543499616, 13.373415063601376, 34.07143018179212, 33.172771749622115, 53.58408377137325, 50.918503106719676, 55.74414291973489, 43.37643216015694, 21.769679044972225, 25.979066907371163, 14.298334723477282, 67.75595140962477, 12.99798777845458, 60.094671853890155, 43.52283904778457, 102.88098781494445, 59.945166556055284, 48.28180202951095, 5.944523517331239, 5.747909394723597, 57.71516900521681, 38.55172900798261, 107.65252401764147, 99.75837629491156, 26.601414891462756, 12.865464556998585, 11.019473176395316, 35.664194585064905, 25.97201309679354, 15.563727415318825, 124.56491129809791, 18.94993522459408, 23.14361916652031, 20.96358276411503, 19.337380583411548, 42.213129649209165, 8.145426337154364, 62.549830211368985, 26.66523583365149, 56.03426327761355, 12.89760719506642, 10.3877137339052, 89.20520376821956, 5.328989477759476, 13.506753604736414, 18.99167969282262, 25.24387711626612, 15.191137232801367, 58.730289480065835, 63.48176085553978, 69.00530004634395, 55.264124913474326, 11.631279270152493, 9.120227990632465, 18.08458594604287, 45.583721659160716, 74.93306177821536, 74.60971198438303, 90.1467126400521, 5.378515638578612, 7.030005727428354, 49.04739848678478, 119.93969536706341, 16.199425333884122, 19.196323123211357, 52.10770636281049, 52.81646156595102, 6.660032313308943, 93.76632845340995, 35.09548396523495, 43.37629519161465, 16.963284762548664, 6.659845839746144, 11.253307940915526, 19.107338060752948, 16.846336032347867, 75.47821086389378, 21.396466794963597, 28.696157035660743, 22.67996940246471, 31.06052490057934, 52.473701881009184, 40.59739418422286, 34.780748413260135, 129.28870983886026, 91.51311945938257, 50.47592973502501, 19.805258148781437, 36.20571505913627, 6.460638456134823, 21.168535343051573, 55.52360561604783, 10.419500211678336, 72.54590118048259, 13.534876057720261, 8.543500204471197, 70.39519886546131, 16.170347560260446, 11.66705058171189, 64.56968392857233, 10.080413028909746, 23.47974359134307, 29.351563543827275, 29.46325201234924, 62.93932634127755, 16.155888666005726, 27.707916212577956, 10.510045309502042, 7.401033426996926, 19.613206894762616, 77.46414049297312, 15.194000990428187, 40.727135912863204, 58.75473641190569, 91.95122005230434, 39.11591903729101, 11.065734547625652, 44.09428005668213, 17.623145704676528, 5.038287072418729, 37.95539100840064, 40.853760388738024, 19.982102839972004, 10.819010331503895, 7.216791813978489, 25.804126625483736, 26.429967212757234, 99.20086199469327, 21.492894027484827, 5.773166902563871, 33.816667685481875, 26.901606357636684, 60.773560402838534, 48.859530871728005, 104.37796604246665, 21.397104882265374, 6.68597638392793, 27.856079076016574, 70.1286003812079, 70.1459306093744, 17.858738331085995, 18.671070939912646, 25.237904337526487, 50.81650696841142, 33.44638302866377, 108.82454686207721, 24.02114353474933, 42.59389138079028, 23.84593052741585, 8.910778787933324, 28.53313458000619, 16.6449473948305, 14.071324407171625, 7.309656159525518, 9.12959981999654, 53.54687162735206, 35.1698571772245, 28.66916839075887, 18.40831586471937, 28.513750425401874, 39.670979710846375, 16.98449799447132, 21.98789901483701, 69.03798997690077, 61.66224737216538, 25.40781489142205, 22.658208056910304, 9.065025045529744, 25.972580263686375, 17.618965560234173, 8.755641862694018, 7.763304468027499, 70.55050775306631, 9.557207833824405, 7.203798508021057, 38.89549305828115, 14.915175156649386, 74.68640388510009, 5.488251597891009, 63.220238824799, 75.22800094009304, 145.60579918442312, 21.594081363061257, 49.8033520011593, 39.052170601819796, 24.941865998478754, 89.73247213898685, 39.08524461027862, 12.7442066280653, 5.379099835368319, 7.580352324147101, 31.73248602984996, 54.691280256755086, 103.10213374280023, 56.26194052591507, 15.369087857679478, 52.55766671844728, 11.647971673340454, 18.99914007535628, 21.950546046427256, 142.9278386260712, 65.90790672430849, 5.531051678771482, 31.23316014833331, 54.46984073800224, 48.49877733129736, 12.759778878893366, 8.24949252164389, 6.562455525584276, 43.11557269032774, 91.85646694139417, 23.058975235423688, 19.520089866384783, 7.996391498710919, 123.05946416614944, 9.447011394894899, 6.951148002265597, 58.68022331471079, 12.802051716539168, 19.15673001276124, 70.33528939410029, 21.49237557594836, 19.53922488921392, 70.21321152824194, 56.17632638671392, 67.09350122747105, 43.45134300114427, 19.582997916592358, 11.743219092571078, 5.190476212806153, 17.428448596863504, 68.93738548361503, 16.714222235470736, 15.176727620262717, 47.83866921146621, 7.204800709979401, 38.31195683669648, 38.7291647764988, 59.99080881688293, 24.807189947642517, 186.21890871068328, 31.492405583830454, 76.95562802999937, 6.858060584388495, 5.830180192308334, 147.62073770729273, 11.365149485392948, 42.68556934770724, 42.20354149484264, 65.03306582774634, 98.15801080480706, 23.34459917199012, 17.884326367395918, 41.62036523090187, 11.133937910487491, 44.20117615617214, 74.2696799775897, 96.23228707375753, 74.65878296816756, 71.35701002216615, 11.966043314190951, 13.98924704786269, 19.20825822983206, 192.01554405617722, 8.391617819477256, 11.041172679303413, 45.7946554438643, 71.80608900967661, 29.001434460998507, 27.396237041187696, 31.105041578108914, 50.32879877822036, 9.192890222369229, 49.93002372931887, 93.05134781363202, 53.80225091202898, 16.000605834609665, 56.709445860304996, 44.00988143370808, 7.9580499522762915, 78.90420829837463, 41.64588222080561, 17.034390357861668, 29.24729009266069, 55.430219694666924, 44.81977431457334, 247.36913901040677, 17.80863295335839, 36.57445017232055, 108.30282556123653, 30.12853441700454, 11.559084847262119, 27.520638205528417, 43.561728355153264, 116.6048714859864, 49.968661467633794, 82.14550687712374, 39.79173477357173, 5.041099707742412, 6.188410511611917, 35.69399777606412, 15.38237940234512, 26.658837340389614, 24.89123313764278, 17.392496952149656, 98.60292758838253, 25.946175114380964, 37.97248671116273, 16.25541701151789, 23.509373042109054, 90.03314837765525, 171.3638078338818, 68.27530954578376, 38.897235615691415, 6.755122237409778, 10.52449369545621, 54.90712732992512, 19.639896078347665, 222.12374176575534, 19.16446672447969, 33.59149548829748, 45.780124203246984, 87.61039834388417, 20.216956335451563, 72.36340094373841, 106.56728108023614, 46.06883441573942, 15.196541331266719, 103.09052513804615, 241.1399978143464, 22.457910492361144, 66.87977695153575, 12.756034802042743, 78.62084688484609, 8.113808247747384, 23.512007290740772, 14.971612800172963, 69.71808423857475, 28.430641549432185, 24.162171294433854, 96.92512081796139, 68.81971245618378, 113.327794003029, 5.132152978691314, 9.418631914507712, 74.95193913218814, 22.612319006716447, 10.646556948342573, 57.29770362076395, 5.824668434410815, 13.574632410643318, 21.912264030910414, 93.50539466148325, 13.940533171955874, 57.326694637455034, 67.66700559892809, 27.763511754616516, 64.10641283081203, 56.02938061062454, 27.444500443023777, 10.680993335935499, 32.1449387356649, 58.948739313649746, 97.17735803305825, 97.40148151931741, 16.287582639429118, 85.39837628396393, 7.839065611044427, 52.96965456253473, 9.658091437417681, 33.48709307691664, 48.73957993166693, 35.038605158355494, 13.150047411194715, 19.04464808603014, 95.52523421803167, 19.19439088665371, 57.207690372598485, 25.31057915148164, 76.99325842155997, 15.497302998114918, 28.406994318374796, 66.5575329877677, 117.08519469996548, 11.318247348058103, 9.320901503349583, 13.958508283936476, 46.20438472050172, 30.123994774360614, 87.11363329099024, 40.7607085676269, 13.931912777816503, 6.519770156695393, 13.59275037146875, 279.15180676534777, 13.985201066564688, 15.383549074916772, 102.18207278465272, 10.663117453055351, 55.30909230784411, 17.983441559606568, 27.036693848151398, 21.466459496071916, 15.399445875760586, 35.25977561227223, 108.22993184782186, 61.099973179310766, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)