script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 44395 #test discharge for which the notebook will definitely work
shot_no = 48186
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([5148065.262515805, 5695693.058306366, 5697165.999653786, 5730401.5625, 8061426.910855374, 8108560.9375, 8141037.5, 8151799.446014565, 8185094.133190427, 8187905.415124893, 8188356.051253176, 8188984.375, 8193583.988254112, 8198358.200598152, 8208486.733731434, 8209581.25, 8226188.365949724, 8226663.673040695, 8227289.525923017, 8227547.409543403, 8229913.379225701, 8229922.790562426, 8239238.68719389, 8239722.066728758, 8254310.264192994, 8254529.155212009, 8261289.0625, 8281409.375, 8282550.844971203, 8283224.452679876, 8295870.231412579, 8296901.041528309, 8297758.025779545, 8301675.594154628, 8306471.400939609, 8310016.34817504, 8314355.531735229, 8420735.539514815, 8421004.6875, 8421173.143373663, 8434110.439257085, 8434375.0, 8435067.1875, 8436485.9375, 8437314.0625, 8438072.695377693, 8439665.625, 8449282.8813837, 8451200.0, 8453953.545730254, 8470534.375, 8470551.5625, 8475391.472060608, 8475458.134146763, 8475545.414609069, 8476281.628173983, 8476284.375, 8476315.942386368, 8476540.625, 8476686.753248103, 8484544.66310865, 8490471.293182677, 8491646.875, 8492872.2214884, 8502526.5625, 8505745.887047881, 8507687.93603849, 8508319.980867533, 8508452.174338715, 8508487.5, 8508507.116326546, 8508791.811915077, 8508798.397050485, 8508948.986260517, 8509138.073800763, 8509466.672374832, 8509848.124421138, 8509966.96506509, 8510251.5625, 8512416.023358975, 8512578.709021261, 8513396.102774784, 8514783.573327297, 8516262.393127074, 8518646.169167962, 8518702.018153839, 8519685.9375, 9978871.765307939, 10009184.375, 10132042.943050431, 10132079.222385818, 10133426.306418715, 10152379.724725502, 10152737.604082612, 10157189.0625, 10227842.686027247, 10277234.810786545, 10281607.342291484, 10282718.147220237, 10283702.475697014, 10283988.230638029, 10284227.251172423, 10284256.31653672, 10284658.728569757, 10286763.49754415, 10286995.148722598, 10287220.611359237, 10287757.012748191, 10288574.63387044, 10288960.966357976, 10290679.214069482, 10291418.622856941, 10291673.284795474, 10292181.363994772, 10292480.811121415, 10292639.665903376, 10293004.6875, 10307907.8125, 10323412.03575065, 10325242.1875, 10327464.606822202, 10331874.357257908, 10332448.886651069, 10347188.794551903, 10358646.022920199, 10359984.375, 10381540.28180906, 10406789.172495719, 10413716.075475205, 10446253.125, 10448040.275971247, 10449199.461752426, 10449433.17150958, 10462244.064922176, 10464762.193330169, 10466048.4375, 10474213.59573936, 10475488.121964524, 10477332.634532195, 10477796.5965165, 10479491.186740372, 10481324.447264807, 10481703.371001596, 10482538.539294304, 10482617.015402941, 10487308.799522875, 10489889.06907316, 10493236.768819936, 10505345.241774341, 10506709.893844979, 10506820.72660604, 10508046.734122844, 10510055.567615978, 10511449.85467978, 10511627.474393342, 10512067.1875, 10512125.160158567, 10512138.464124687, 10512224.934056228, 10512226.41011913, 10512250.495314764, 10512331.25, 10512342.1875, 10512433.972262312, 10512458.8733951, 10512654.26005658, 10512715.881348383, 10512732.058682846, 10512758.806142053, 10512781.25, 10512850.0, 10512902.35470699, 10512934.288774038, 10512936.463221634, 10512936.931015003, 10513091.262872856, 10513180.287482653, 10513203.857524624, 10513568.75, 10513608.001995321, 10513612.5, 10514178.396241657, 10514479.6875, 10514739.470626762, 10515429.6875, 10515999.721027365, 10516559.524144903, 10517159.214085843, 10525666.06050394, 10527394.160913676, 10528329.21674479, 10529637.377211561, 10530006.370467648, 10530117.70328458, 10530219.959797673, 10530381.070808975, 10530518.358036267, 10530941.721305575, 10531273.829092478, 10531464.314230429, 10531622.345541969, 10531868.30954426, 10531944.174007636, 10532185.45276701, 10532250.950487776, 10532307.440011403, 10532365.136492271, 10532501.593131546, 10532650.26340445, 10532838.220328331, 10533097.279736582, 10533144.253678797, 10533146.66734333, 10533211.35352356, 10533223.890155582, 10533230.738879574, 10533239.284586878, 10533374.759363664, 10533375.130525433, 10533618.143953986, 10533761.562590107, 10533836.895211412, 10533914.0625, 10534050.748536823, 10534087.361766709, 10534135.338802611, 10534183.381525557, 10534225.18198611, 10534326.107530285, 10534375.846574957, 10534608.97651743, 10534653.11219906, 10534818.189492054, 10535123.073276732, 10535290.625, 10536452.381236155, 10536607.8125, 10537198.262929747, 10538720.532832699, 10539184.958658913, 10539485.329066018, 10539734.113682255, 10539927.391414588, 10540203.160242122, 10541100.0, 10541830.882424138, 10542005.415608136, 10542499.367803404, 10542645.309881972, 10543071.875, 10543107.8125, 10543274.239025598, 10543698.4375, 10544294.076286044, 10544315.06823151, 10544745.3125, 10544934.615818169, 10545000.179099286, 10545055.661233503, 10545074.18334044, 10545428.125, 10545881.645113705, 10545896.234037528, 10545896.408622522, 10546115.625, 10546389.0625, 10546738.988298018, 10546866.880411413, 10547076.85665397, 10547335.25170144, 10547570.3125, 10547635.9375, 10548320.3125, 10549152.037277024, 10549509.375, 10552004.50461447, 10552175.0, 10552217.625844095, 10552535.908312742, 10552603.125, 10552812.5, 10553354.175967732, 10553878.778563974, 10554510.67883511, 10554642.576993922, 10554714.059403699, 10555326.10713028, 10559060.904601632, 10560654.597293042, 10560954.468849877, 10561232.709852736, 10562246.875, 10562269.230195353, 10563401.5625, 10563744.767471025, 10563748.186254244, 10563941.417911075, 10566621.386821114, 10567457.231821077, 10571305.850837907, 10571843.930176519, 10579454.6875, 10582322.168630304, 10583066.229887525, 10585224.509138785, 10585328.352402534, 10585582.402009776, 10586495.22848871, 10586621.899909588, 10587051.5625, 10587248.4375, 10587418.75, 10587460.451276977, 10587756.25, 10587766.369388185, 10587785.022452177, 10587796.190316578, 10587926.41719036, 10587930.844694326, 10587953.449919727, 10588019.958008684, 10588365.358673817, 10588663.506201884, 10588782.8125, 10588816.442997128, 10588833.264910214, 10588838.656979663, 10588875.0, 10588877.396210244, 10588883.883421166, 10588887.712392695, 10589043.860870609, 10589045.703852538, 10589058.8337475, 10589309.821156831, 10589367.1875, 10589368.42427423, 10589397.543922627, 10589400.374892242, 10589477.466642836, 10589633.103952907, 10589666.566021718, 10589674.12993194, 10589700.0, 10589717.1875, 10589718.790834965, 10589724.809149293, 10589787.5, 10589917.1875, 10589939.0625, 10590100.0, 10590170.3125, 10590204.6875, 10590336.256230755, 10590404.078778448, 10590513.85382888, 10590578.4407615, 10590833.084353134, 10590894.599510444, 10591052.035481457, 10591072.083825124, 10591108.692086184, 10591117.586186564, 10591308.820582302, 10591424.731937692, 10591501.201086454, 10591584.33932712, 10591873.4375, 10592277.819432793, 10592404.182163106, 10592448.24242055, 10592463.029324714, 10596185.334867328, 10596297.215848103, 10604189.624647887, 10618282.625878857, 10621245.999556921, 10621497.686836263, 10640840.545447636, 10656257.536146933, 10659660.41082255, 10661228.125, 10663280.133928536, 10665407.902813803, 10671254.6875, 10672685.90922106, 10677513.827311134, 10678233.172639694, 10681729.071068134, 10682191.94192714, 10682542.1875, 10682840.625, 10684529.237684993, 10692792.1875, 10705137.5, 10711136.358329577, 10722943.75, 10724438.26612061, 10727155.027526041, 10754179.49161767, 10754190.444394302, 10754514.0625, 10757811.676920531, 10758131.53669519, 10758305.90647347, 10758484.344782464, 10759122.943442678, 10759560.612509644, 10761481.25, 10761524.611338964, 10761571.853394747, 10761831.04223806, 10762121.875, 10762174.644373033, 10763162.128396813, 10764123.32168102, 10783509.332585933, 10804884.250327595, 10805200.919968948, 10809434.375, 10813012.564922627, 10815073.22417877, 10815618.274452653, 10832564.133177485, 10836871.218590265, 10837209.936986832, 10838973.4375, 10847188.20377237, 10854710.9375, 10859733.902807457, 10864935.9375, 10873176.113566969, 10884160.11454537, 10885208.691602565, 10885264.0625, 10885904.6875, 10897285.9375, 10899404.129204946, 10900607.752563054, 10900887.5, 10901544.633434163, 10902121.234509084, 10902363.979277063, 10903192.346658042, 10904996.345272887, 10905406.110398607, 10906828.967292367, 10906911.824568206, 10906938.750424802, 10909224.834909784, 10912231.25, 10916055.181764126, 10921712.229457185, 10922415.607339099, 10930931.724925436, 10931201.5625, 10931268.588920388, 10931604.43131171, 10931717.491846433, 10932324.51589978, 10935530.78269202, 10937615.435660701, 10939940.625, 10951932.8125, 10951977.59563367, 10952085.358596154, 10952124.80078585, 10952676.5625, 10952856.23103633, 10953246.546289066, 10953304.103167038, 10953528.521248398, 10953554.6875, 10953653.766688766, 10954179.6875, 10954969.519504573, 10955289.872629793, 10955348.308719771, 10955356.25, 10955376.641203964, 10955796.706301788, 10955821.875, 10955871.085748423, 10955976.5625, 10956144.313442033, 10956388.618890526, 10956439.660955044, 10956440.625, 10956544.33863929, 10957424.844362993, 10957887.5, 10958881.901546566, 10959106.959885487, 10959129.6875, 10960342.1875, 10961266.897526424, 10961665.625, 10969848.329341134, 10970801.5625, 10974716.72805844, 10980061.32511129, 10980381.737443658, 10980916.098089729, 10983120.3125, 10983604.755786046, 10983895.807517648, 10983999.30838154, 10984211.022867976, 10984438.40611015, 10984450.0, 10984521.53211372, 10984589.800736228, 10984734.07624396, 10984764.607000917, 10984982.568344142, 10985221.875, 10985411.668997651, 10985620.307790251, 10985759.8467912, 10986421.839109318, 10986592.623077694, 10986798.4375, 10986851.5625, 10986948.4375, 10987051.696506944, 10987270.86706366, 10987646.875, 10987725.0, 10987959.783590695, 10988067.1875, 10988087.5, 10988193.75, 10988286.854523275, 10988318.92855498, 10988325.0, 10988331.25, 10988370.172825804, 10988632.689454744, 10988834.588251645, 10988933.381751295, 10989099.920744078, 10989301.520683236, 10989342.1875, 10989521.875, 10989850.68611296, 10989917.450633388, 10990064.0625, 10990220.46026748, 10990250.134989109, 10990261.275290249, 10990335.9375, 10990386.650143366, 10990925.37241484, 10990928.989774527, 10991055.01250737, 10991056.180684615, 10991258.363260815, 10991376.234814512, 10991393.75, 10991439.54756834, 10991508.654735494, 10991600.297255578, 10991722.349332629, 10992382.22390295, 10992411.749895006, 10992617.334903855, 10992748.446943996, 10992763.367811086, 10993180.902589599, 10993325.150496455, 10997597.341716632, 10997597.814121261, 10998442.726147015, 10998789.718989354, 11003040.876538178, 11003266.749577671, 11003660.841721695, 11003826.5625, 11003991.4283231, 11004009.90223319, 11004804.959891967, 11005530.219185416, 11006239.0625, 11006580.22323161, 11006865.625, 11007415.625, 11007424.176522441, 11007626.92432346, 11007682.8125, 11008055.715935495, 11008536.536682917, 11008601.480236875, 11008603.595886583, 11008729.39232395, 11008817.555785142, 11009297.929303914, 11009502.408789726, 11009933.754506165, 11010961.565283936, 11011028.375982365, 11011154.6875, 11012870.3125, 11014452.351977332, 11015381.182212718, 11015450.379102066, 11018365.625, 11019218.389850961, 11020175.306597203, 11021272.695296522, 11021730.551376227, 11022738.508119185, 11022819.016168686, 11023090.849219164, 11023531.25, 11023662.431178525, 11025930.969710866, 11025957.265874831, 11026729.150812155, 11026754.584052179, 11027359.11067259, 11027760.79679531, 11028391.488394035, 11029463.997163547, 11033178.115509616, 11033203.17923135, 11037560.327080326, 11037939.330225866, 11038012.162301488, 11038026.558328593, 11038057.033207355, 11038148.757005645, 11038386.422294883, 11038511.744072396, 11038622.286423786, 11038716.311611509, 11038846.062984524, 11039070.257955529, 11039139.026888745, 11039341.876535319, 11039370.063602565, 11039534.375, 11039902.041547583, 11040029.340877796, 11040122.857197138, 11040366.14185846, 11040537.5, 11040749.086054765, 11041156.172984784, 11041215.28086947, 11041225.245215053, 11041330.144466083, 11041364.846558312, 11041500.741674768, 11041518.40854149, 11041520.3125, 11041541.814733725, 11041563.479662329, 11041620.91565153, 11041665.150673773, 11041734.5324225, 11042103.055626374, 11042204.6875, 11042363.391899321, 11042380.330280306, 11042421.188751956, 11042594.933880873, 11042602.581361284, 11042625.039229799, 11042710.9375, 11042728.080191983, 11042737.787478859, 11042771.565515792, 11043253.125, 11043330.989493823, 11043350.9467681, 11043589.304998633, 11043691.75164836, 11044010.9375, 11044064.03394307, 11044075.53405438, 11044360.122389054, 11044444.406998001, 11044448.4375, 11044623.352914788, 11044785.9375, 11044884.896680508, 11044984.100035232, 11045140.315383848, 11045225.793655828, 11045255.120463112, 11045255.226033311, 11045279.147007423, 11045293.273782622, 11045354.6875, 11045454.531173885, 11045522.217649365, 11045682.8125, 11045703.125, 11045715.625, 11045718.436996005, 11045757.999840446, 11045767.987180952, 11045805.66095699, 11045809.375, 11045834.794477321, 11045835.9375, 11045886.739770243, 11045925.620098758, 11045948.4375, 11046006.52861807, 11046057.721458867, 11046123.988329463, 11046126.83447453, 11046166.880662685, 11046177.98064202, 11046237.32325512, 11046306.25, 11046381.25, 11046437.633989716, 11046444.546316486, 11046463.979901345, 11046519.851148402, 11046526.874958996, 11046604.25779247, 11046633.373712115, 11046636.840789527, 11046650.0, 11046655.712582774, 11046660.8192548, 11046690.120033612, 11046798.4375, 11046910.122322438, 11047031.354445778, 11047050.049111832, 11047051.498781716, 11047107.736571388, 11047124.884643497, 11047125.0, 11047128.171078, 11047151.204041645, 11047160.456273383, 11047165.93096474, 11047205.591460526, 11047231.850891303, 11047244.957936428, 11047273.4375, 11047294.951944858, 11047302.751246793, 11047311.439638898, 11047319.15592202, 11047343.75, 11047389.0625, 11047392.724406399, 11047414.407311857, 11047417.1875, 11047468.422461128, 11047470.006254122, 11047474.45570434, 11047485.523455651, 11047487.5, 11047491.111411355, 11047494.986947881, 11047506.592571268, 11047514.0625, 11047609.375, 11047621.875, 11047629.774846306, 11047631.39326692, 11047637.652339928, 11047647.765632553, 11047665.718808291, 11047671.875, 11047677.544091305, 11047698.556012243, 11047738.848842029, 11047786.892020918, 11047796.597592514, 11047881.015293872, 11047895.3125, 11047907.8125, 11047919.08042764, 11047928.125, 11047943.271877756, 11047951.5625, 11047965.156047024, 11047982.8125, 11047986.940866888, 11048001.5625, 11048001.5625, 11048009.97201288, 11048015.28285441, 11048073.4375, 11048081.544492746, 11048104.720535617, 11048115.972450802, 11048138.721076373, 11048145.872489667, 11048148.8144282, 11048214.364657696, 11048234.93407834, 11048238.29930687, 11048251.387142116, 11048255.986877637, 11048268.917394353, 11048271.165348925, 11048271.794286659, 11048273.271808429, 11048273.4375, 11048278.125, 11048309.0381514, 11048314.664589629, 11048360.9375, 11048442.863242516, 11048475.618532337, 11048484.375, 11048495.848143023, 11048565.601876687, 11048580.977993311, 11048601.11381807, 11048646.127289155, 11048698.4375, 11048710.657853825, 11048719.540518746, 11048808.717912082, 11048824.533617847, 11048870.558333868, 11048874.362458963, 11048890.180799853, 11048926.5625, 11049020.3125, 11049038.98840603, 11049052.376282807, 11049077.042606866, 11049102.530410988, 11049126.373367239, 11049143.218476452, 11049174.77290275, 11049187.49085603, 11049236.649182461, 11049240.856054332, 11049244.45366849, 11049251.988663865, 11049274.033826744, 11049282.311744204, 11049285.9375, 11049289.65776028, 11049290.524334438, 11049307.622863637, 11049309.589547228, 11049345.225791115, 11049420.762166984, 11049428.09897758, 11049470.889171638, 11049495.3125, 11049515.625, 11049537.275255213, 11049565.625, 11049634.299171971, 11049638.423319966, 11049646.875, 11049659.880181296, 11049694.7817351, 11049735.549791934, 11049802.251772625, 11049814.375724226, 11049974.28924328, 11050067.699789375, 11050068.909560245, 11050092.862870358, 11050096.72822025, 11050110.58433624, 11050118.832505371, 11050126.093330165, 11050132.871205356, 11050142.1875, 11050148.078923125, 11050320.647311518, 11050353.125, 11050362.5, 11050404.6875, 11050409.664353425, 11050470.3125, 11050485.782595016, 11050602.222227462, 11050629.6875, 11050632.8125, 11050727.191578574, 11050730.497642335, 11050752.142457535, 11050760.804598715, 11050856.204993803, 11050891.12433544, 11050894.660208132, 11050955.683264095, 11051012.49238803, 11051014.369031273, 11051021.217483925, 11051032.080052122, 11051036.879356034, 11051059.375, 11051077.923711201, 11051110.652580526, 11051116.287287269, 11051162.094432512, 11051182.8125, 11051216.238314228, 11051276.258710196, 11051302.798767114, 11051328.938476559, 11051357.041450102, 11051367.244934458, 11051385.191591404, 11051403.125, 11051407.781078167, 11051412.5, 11051418.908452565, 11051439.642992597, 11051441.190924026, 11051459.259417403, 11051460.9375, 11051485.813635055, 11051500.0, 11051544.186903745, 11051570.215742303, 11051570.3125, 11051582.8125, 11051585.9375, 11051623.894627402, 11051625.323717734, 11051718.992436796, 11051721.117273526, 11051727.323390214, 11051731.026396018, 11051753.021896953, 11051754.6875, 11051788.2578204, 11051861.462200224, 11051863.938777782, 11051878.119820267, 11051920.3125, 11051958.007023107, 11052002.260082442, 11052048.17976284, 11052056.218780037, 11052063.985827459, 11052125.81450868, 11052150.0, 11052151.227776503, 11052156.819121908, 11052165.31353997, 11052172.888687592, 11052178.30200019, 11052199.833168555, 11052201.5625, 11052206.18047383, 11052226.320012284, 11052229.450974582, 11052253.231537411, 11052254.6875, 11052255.921944918, 11052256.726454712, 11052262.5, 11052299.088207927, 11052341.732567336, 11052387.90332647, 11052414.701312007, 11052590.14776995, 11052590.770304441, 11052609.375, 11052629.6875, 11052676.66110423, 11052714.0625, 11052715.625, 11052743.997728333, 11052761.412260761, 11052774.48938281, 11052779.009367667, 11052787.177201757, 11052865.50295097, 11052895.8014804, 11052908.646306382, 11052925.0, 11053004.6875, 11053008.773661155, 11053020.3125, 11053096.875, 11053126.5625, 11053140.33175436, 11053169.921460817, 11053215.909131883, 11053232.8125, 11053257.563705634, 11053264.0625, 11053290.508881826, 11053297.194100972, 11053311.337839788, 11053354.504436158, 11053381.25, 11053404.325920109, 11053439.367908072, ...], [9.042622285697096, 12.830011141107654, 16.399807075506537, 30.408928271775515, 11.719669923230253, 31.114491453439655, 68.43864758586463, 8.903139193343819, 23.425805655081376, 43.219846681397556, 95.80139868437693, 46.801595616460844, 45.4352662554541, 122.63774449925627, 15.805023084792627, 80.72778751005255, 7.369344484622146, 44.50719129514974, 17.06085062069531, 12.080446501625138, 58.196339253256205, 12.940861609305975, 5.683281715312015, 22.29548902765545, 19.922531764750154, 17.145824827552126, 64.18920874033095, 74.95679473365713, 5.431789741256425, 5.774563564116428, 27.017578259832842, 10.400580447044991, 6.110562832316507, 56.599572407387186, 10.459614073515132, 17.53425361682487, 5.879203803036741, 13.614402579873746, 62.86016340622746, 13.927616541934118, 13.330860856819246, 51.611098992822924, 50.66113407034587, 63.85875677434412, 65.13004473037486, 84.7704315660907, 46.11044681241006, 49.64265112418362, 60.96640194596294, 17.672753852040856, 62.50536090632528, 71.40060707119466, 64.13746272642142, 44.360647137754945, 85.86719068652805, 6.841429997256013, 74.16990322185663, 5.475556035276468, 51.24346922804874, 10.131673256439479, 20.121942654308608, 20.713992164267328, 77.9904056790796, 16.450014277968265, 60.29065731188341, 7.281142673370727, 8.531456042028635, 23.354918770331256, 9.908520487614643, 42.85636505798398, 10.189819219913682, 22.83098904218196, 6.262101353882098, 51.6371305721234, 8.615260648632562, 78.90050376271768, 19.272732198124643, 100.80314430161364, 92.17923956737934, 40.757265488201895, 12.18232744083815, 17.87159121443245, 6.613359705118409, 47.56785206299885, 5.318303488647678, 29.786089525905147, 94.9825651807684, 10.960473088061601, 58.815260286251345, 18.89483150684767, 30.1282126215674, 85.9686756409995, 62.33393309726806, 7.641321436836549, 30.46610180368172, 5.216311698195087, 7.768844284564363, 8.963128797519625, 23.40077307172266, 55.39682888625131, 62.14085615888495, 8.68774362714866, 15.20132947356112, 10.248154376782415, 10.34625505589908, 25.662106991534497, 180.3411624284481, 7.337509416670903, 97.54055805939537, 11.17311527161265, 21.76230376555727, 14.478076561591664, 10.897123845935223, 6.10003443881962, 22.125285670751612, 14.010975756888957, 58.61087400595711, 71.09258253186248, 22.367009125721367, 72.8754550202975, 9.838371794622338, 42.08030248659732, 16.983017288133883, 16.827260735480724, 26.48927520076435, 59.68223646156597, 23.214281989090534, 6.7856668585051505, 6.560104458904302, 53.25328384043676, 78.35010186592469, 21.119860585480232, 16.51260356006076, 6.3078236711963305, 10.679964625680487, 121.16060782941975, 8.965631482136914, 12.262291880768368, 5.454179459125526, 10.71863828450196, 5.645895694969837, 45.84471928788563, 60.29002569365786, 21.26469285484558, 31.210376218208964, 20.61494701535485, 36.37429930703195, 59.83329594052708, 25.822047815410556, 17.372405386623857, 81.14765808900559, 22.859175824895097, 19.848159478651745, 6.4645497726201, 25.37785453192426, 38.97864474032353, 5.468682970938514, 10.305624582873316, 54.02871691164677, 5.2864034120552565, 114.06385076989584, 47.31007793726238, 30.91539945008834, 5.278806990979179, 69.7767629420893, 42.61380281110292, 11.553518757333904, 26.98281343463325, 8.00704325462974, 41.20491124212505, 49.122415916140454, 8.755209726692438, 66.99247995860289, 9.819355320033951, 6.9795058359590945, 5.219983398404395, 5.562925813504569, 18.731297978846893, 79.55695837576214, 55.57643436376702, 64.98858742967305, 16.087026907005836, 33.09952973698493, 7.757835653401039, 112.74818976504194, 142.6973412861566, 28.167806068189066, 10.885170063078592, 16.909476843000608, 9.70482915712859, 27.548632333797126, 143.78824658372713, 72.3914457098531, 17.35480391123605, 203.3858440385919, 7.075131204744483, 5.445190809799184, 21.837090262090353, 16.678547482402546, 15.99642979201832, 17.100033686114994, 14.27554306792302, 11.862128675443685, 53.93961254090871, 7.395929975977227, 10.59145619234805, 34.08029549232244, 9.35743887741366, 9.564521003685382, 59.60301886668236, 11.825320598595, 8.572189322642815, 18.046933829551982, 16.80597228585886, 94.41895798105082, 69.92480573316442, 61.99027178876957, 15.40674894896824, 24.567636494709888, 56.156852847821426, 8.647323135749028, 23.664276460532783, 47.68012663079621, 32.18899288579904, 29.40332151212779, 95.25732608863962, 9.863832386550365, 8.385217763686123, 5.900739713614395, 23.565004216731108, 34.95578061591671, 14.89294168011073, 13.163328576321947, 22.96363782728551, 46.454918110740124, 10.135076253632146, 89.00723123232015, 25.497048824694524, 23.98859358045221, 9.879025739119562, 27.834503682931885, 10.742422821899659, 19.44158730439347, 15.077559111808387, 50.88828073930587, 20.691829436827714, 10.03360941182536, 10.265061110282966, 14.9315401061191, 74.61006271482336, 56.65664628184027, 24.28438225213383, 47.11499504093738, 8.46700391020871, 13.17321373033911, 42.915029001181125, 13.877509225807746, 38.434869229888484, 31.693796152834373, 12.535095102634594, 112.0929037301949, 33.656077049271154, 12.95587987061974, 8.965909770965471, 34.65300625385288, 74.1654363208635, 85.63094705305448, 10.679393595583477, 65.22097802746772, 17.072867006353142, 110.18740907454847, 65.69958470875318, 97.89633149244018, 17.123458324633255, 47.22805096998197, 5.695216711453132, 68.97897415206313, 100.92969730931196, 5.704902967140719, 51.63466569238797, 80.05488483656468, 111.58718599894038, 18.19737110340091, 14.039459393054347, 110.06156075613133, 8.284940628914477, 75.17078685613737, 29.6277583909344, 9.256275318106093, 38.90136610986791, 5.930515955574912, 28.610788658368367, 21.500461003089146, 75.3326201720414, 43.54523615912041, 10.756461077575986, 8.755675690695375, 72.83219621881777, 10.327070693537449, 10.55628686910017, 18.057510062165534, 28.97645196222589, 121.4561822580103, 24.274343188371304, 5.154085248839463, 26.85620699725125, 10.541469953730319, 26.96671753180216, 5.204057002810108, 33.49711767490889, 152.74853492966744, 53.25910246115281, 24.56983387217123, 29.241869205882676, 10.05157403133144, 6.352618163807376, 94.86532224820112, 86.4271772729468, 13.593095690124084, 86.17731891091562, 10.615411390014732, 29.698235777562783, 23.027684945782738, 53.35945277073249, 42.07254719579408, 144.21400470663178, 14.270732038590202, 52.63435312545896, 19.478761052818903, 5.441055719235421, 9.51769093483335, 30.453063905103903, 16.677308943107473, 37.74239850237706, 9.739473608585541, 55.440133072527615, 10.654082981883152, 18.2980999620586, 11.769022567496433, 20.04658986024157, 24.982034884770716, 13.005219171096016, 18.45515193152157, 91.65845012044252, 45.757386996443635, 5.709361791322796, 5.453634207284088, 44.93084622482837, 99.8216805596106, 76.11452628079806, 36.318379636280376, 64.28001444775379, 31.147973840830602, 23.123460863369072, 7.396974252576731, 131.4015290582078, 6.8282268701958895, 5.724280694383365, 79.49428500735456, 22.44545800176352, 29.884156521171647, 12.85153097149592, 64.16231461777367, 26.566161602774347, 22.99460695709803, 18.85164856611396, 74.99184795766618, 57.582664291240675, 30.144149961469356, 8.937783817651972, 57.80246557601686, 17.43304042931497, 7.991685504332174, 58.95702687370022, 14.102484147003874, 5.335567269804416, 88.63965565946613, 19.310673356648206, 14.646721494352452, 24.057572281913128, 113.15508722176338, 107.92006757459711, 16.36095483008634, 20.585911749028543, 29.654774475531994, 59.445308596669875, 20.215208494194716, 5.105610963635702, 20.405273600231457, 26.68276573953878, 76.55339195069874, 64.96293319808093, 7.0080246202629235, 34.58207681307447, 57.39508354856876, 35.282180131394966, 88.60400264402844, 18.971153762218965, 9.636474123321408, 6.0679633310954815, 49.03956584750068, 100.73815482347106, 5.656303665284595, 21.852758461276352, 119.21573853085083, 14.82757172938298, 21.55258716202411, 23.436688240781027, 48.7973504044727, 35.16524183232985, 72.97384309653155, 101.19617227398173, 80.97259082535805, 23.065272112139958, 15.962417038777133, 35.26513817500904, 37.88857996937513, 111.87807129292774, 20.180089675424902, 57.01135262121369, 13.14434081669108, 43.179398080575865, 49.122374415106535, 15.21792023066127, 67.29878934982369, 12.773782311320371, 53.063080079241125, 12.440370047897568, 119.65004595975697, 21.775053146072587, 44.87032671318967, 18.08536274798072, 71.87022262849803, 12.850342757437435, 40.572278359067866, 74.65879786129518, 74.66308955588593, 61.91362268643014, 62.15576451543977, 30.105683568722558, 17.668306711668748, 88.89741969488264, 26.980408467083183, 15.58495159357006, 40.442853231060944, 6.465427917644772, 8.788603287361637, 19.905058517452687, 35.45413307478311, 14.525578444640143, 43.03706966075005, 33.11415182062765, 5.794229980109872, 21.527890054396906, 9.768086727577574, 47.87499151117491, 143.1763756905719, 24.326986264220984, 71.49377946039981, 67.88786980249944, 19.172884406695974, 66.24074716276073, 108.21822342304338, 38.65298817414508, 21.2050733894644, 28.472805275526525, 51.933407455231446, 48.422699231361236, 27.116255993118692, 13.82099508341665, 16.62011593041015, 18.054341771237997, 50.42460117737132, 9.940107731716022, 66.14970843912685, 25.552618222450455, 19.297717002187408, 93.3392547390651, 41.45934872365711, 6.499499948178572, 74.55776013401828, 63.76627780198749, 32.50133641588561, 42.92912681437091, 9.858057120058122, 13.483186036431366, 19.03483070661802, 51.6331126873517, 11.632638574548112, 25.788313969888723, 130.45546225223802, 16.094754755870675, 10.013634670486999, 47.28864293137957, 96.18945622042145, 7.047257072815739, 70.03778613454199, 5.806020545859869, 41.22543747096555, 90.91408030047651, 11.792911805705238, 8.562340474768165, 48.74443946231051, 70.35421110934783, 15.208332300763107, 5.739003556459395, 19.773222154204543, 218.19104442314108, 20.063062393944605, 42.40526138912709, 23.217962212580368, 24.092775666608237, 23.766644533525703, 18.417359445006664, 24.491282531555463, 64.32885448079045, 18.724089761970863, 11.12035313523099, 5.482387388368962, 27.83390263653012, 6.853697664224961, 33.981981907039874, 127.01498169570198, 49.11763515828242, 150.5266299230611, 17.58141257781573, 33.25611309435988, 30.699072658104114, 36.280910333764645, 80.98920107826977, 44.540677796798185, 98.95766238115343, 97.17270279434432, 15.668746717029506, 36.00964943831089, 32.541071542150355, 21.872008380761493, 34.07767808073897, 15.821792920598849, 273.1466846440161, 43.14157303530236, 11.062967588260431, 51.75535303908998, 42.02371226976371, 48.611654627538385, 25.29390118986622, 89.42568279291001, 9.459554501438392, 32.91813291407071, 80.75877523969481, 52.88728222623013, 29.705105659373665, 7.743726271530643, 15.436889810670191, 16.344123411114587, 9.273472840485281, 7.815373734095076, 23.40342448730244, 36.75840676119498, 9.778247204551189, 26.773745107719616, 21.846098733125743, 19.757512319992056, 20.652594793385536, 12.689564810646512, 11.366199582459178, 11.142500531274742, 81.89623310598587, 6.052701636752839, 11.371382804609473, 79.85514185738037, 20.344713157384312, 5.854940351952285, 86.33072620485972, 21.207947327481854, 10.505880216074415, 59.10530451373871, 65.69020697745042, 141.4342537847397, 17.42089400142144, 16.09241215107227, 6.145191869913352, 57.14186275269123, 24.269982683335595, 47.10740961521371, 34.141020589902844, 12.519592876189474, 29.62869404095531, 64.60410836331684, 6.987799457296827, 127.95791141789317, 14.636964998471697, 8.552343387676817, 9.093692915178513, 11.75667325294473, 21.411727690690483, 38.07166384506789, 20.369807256683185, 12.274700530002045, 9.553039418650432, 65.81286407462473, 48.584448194921656, 19.14267257970923, 11.023378613185491, 16.61440227102544, 47.08969612969283, 124.9042251569135, 53.266970486591106, 112.58146293864588, 8.803150080493522, 8.902859763152772, 6.529640975405992, 7.686398301190822, 61.90071422913258, 11.0218117566427, 41.844399991937024, 68.70295489611368, 26.416680734025093, 14.561348997004188, 14.021425534025445, 36.53781838640866, 19.712990638958058, 73.45396943666208, 28.338503667996353, 6.093757014729452, 30.616431784580875, 5.351180137080987, 7.035423045436262, 26.41589711903869, 19.09623582386397, 139.66744958253832, 27.977254600920315, 7.9235657717553805, 21.817737942008712, 211.48305538910463, 18.858534491668845, 27.4899686637293, 45.055675659668715, 23.086353810452003, 14.07072488653078, 77.46736458224731, 14.216966698782597, 9.05455870109947, 61.19148947914496, 17.360974771566298, 61.44100065590436, 18.723638390928315, 26.696064056022053, 5.330266272167557, 9.547725885224606, 138.18852579599843, 66.27043020584279, 18.79584211347032, 23.2352285197877, 81.5651963668073, 116.66088311601371, 147.59676894599568, 27.43561532113032, 13.396914770034915, 9.468157060485792, 81.09221166607541, 29.900348816446503, 30.484577472780494, 8.65849353657817, 19.816714654523594, 22.79588334802418, 14.395356478708809, 6.493258479328944, 91.17484692779155, 27.668221214017727, 16.16350192915126, 6.703254260261387, 113.28981396566776, 24.26867904236709, 10.631211469760878, 11.529153501852822, 13.505235231329047, 30.903521687546203, 32.031876714896086, 136.52959645385582, 6.169429640997367, 12.337585030210382, 80.42487153582204, 21.647377399329724, 108.48357711864035, 17.388756089287373, 13.98772854920893, 10.675949103140699, 6.619142514970944, 9.726451783225942, 17.486788248100098, 13.216497825294471, 5.898979509542608, 103.52307709105958, 28.207553263006822, 16.430952894103076, 49.915938910876505, 98.13078159480372, 36.25420251633753, 21.021202883949208, 9.49499817397706, 60.753049116632205, 20.64857230755478, 61.812626741525314, 8.521601943460237, 35.55294455336934, 12.665691447014876, 266.15537460329995, 113.17839331527173, 6.820435171025233, 26.845361873854625, 26.57433951738929, 11.581208101245856, 64.31982123013073, 167.1873862944755, 63.28776237772334, 30.468956958493134, 78.56308371552868, 15.478053559316475, 5.759383936167292, 77.20213548844431, 104.07222828393344, 42.25015840131927, 136.5784929462407, 140.86700634720643, 6.638669369669869, 62.01473977084805, 67.18104233248334, 66.54598747680862, 39.27167221350626, 68.39748818739027, 28.47689572405328, 35.49553162758032, 15.132064208134217, 11.02955050533375, 120.48280925957408, 9.235730981548818, 67.70973242767731, 11.200501677582002, 41.72778007466418, 35.02331794502882, 16.251788723519436, 20.04506509569611, 6.585600628523783, 10.615314846801374, 64.60397931991614, 31.24378353153178, 7.026551094470289, 70.31026332788115, 64.80256800211106, 49.03242159082629, 85.96965787763264, 17.477260381734315, 5.633409081991733, 49.78744401586258, 19.835019894106615, 21.63099066578715, 89.31827793281019, 102.96660965144854, 33.553919880047104, 8.561715789674059, 23.429745307751165, 63.13023925600527, 38.020959814033496, 30.158643393537293, 201.98110409572442, 7.635137836939181, 7.159628408917232, 24.220777140945835, 14.580562650383046, 7.6375226166994326, 62.600347832212734, 8.884189350620959, 30.314424169917565, 24.920069158519716, 20.47958287952057, 31.99266926789398, 51.82044679539671, 109.68727934820319, 64.91591689650508, 16.370667641264376, 61.380522442620475, 108.17405969647209, 75.64263471567477, 8.964039833704664, 36.527486395951044, 81.59925619815922, 51.02860553692039, 51.520705970389606, 17.838688021532807, 76.3108204928134, 52.37931419228621, 12.83736930447462, 22.29761763822993, 16.454802179898337, 134.79678394761387, 17.360990704202514, 8.496495678924596, 30.35148115759548, 41.2091355007762, 19.21606322343936, 5.335948503319687, 78.36385921951046, 6.105681477782469, 12.786333440942908, 6.747499050972941, 90.64230681559474, 90.48790506358603, 150.5917116382768, 23.29119332953591, 179.01583895687403, 43.95274240450329, 9.976583491980392, 167.54218127244565, 38.704948580231665, 75.62048579603007, 27.988177765128174, 24.816285298360988, 22.020770053348826, 47.47242202847083, 80.73516812453767, 6.708932697422264, 119.2899212792038, 73.70034277091932, 21.835141952156427, 5.832396578057952, 7.387852694494108, 26.616667986114667, 88.88791832337841, 54.509070848088705, 27.140161748331813, 12.692847804741962, 7.786632294411253, 127.66494681098182, 67.48187566604354, 35.49009469800606, 8.170027812672869, 27.878529120482295, 33.096440181867806, 21.52500896934869, 18.53147145826572, 9.719765598082967, 6.584818317326312, 24.14610521944337, 122.77120321326703, 116.95867473896604, 10.97392303794558, 112.24362755281659, 15.827587809168183, 99.39088566005546, 17.19452964883248, 5.6126061379651455, 8.617042711991626, 69.69827778094589, 49.74226090349407, 14.14890927273078, 87.10386655566086, 14.660156188982793, 5.374588316680193, 66.42992069920697, 9.798507850630727, 21.191597173623094, 10.571340572491266, 7.873131796947575, 161.1110306151556, 14.929744789946259, 96.17860810443311, 17.458851423834716, 5.312415015494314, 25.92734294567837, 58.44012131688191, 11.259164262496046, 67.02826774187294, 183.78681335144097, 37.46690800238478, 19.992911205968667, 23.74021476593673, 78.6723892808882, 42.77964913879308, 29.836257411548907, 73.67835201616023, 152.05772499648515, 25.79973633350101, 14.47937523234009, 52.37321424316013, 84.97026481121138, 9.92672007722942, 24.87943110354854, 6.88509065552462, 6.466457664159683, 27.664565618585083, 26.130418756581, 64.92574350907259, 20.85224103326859, 11.115829614313231, 23.375769609510748, 54.16212821716408, 28.17942673790484, 13.007344498998187, 30.117645764172345, 58.968311742431666, 23.94530497469357, 95.31170481643443, 8.083151220840566, 53.75151824124571, 17.94016296073927, 5.913379210030527, 86.48958891242181, 51.80303219551863, 12.640328816604638, 7.624143682242991, 19.34689540856784, 97.28369742175795, 71.17955748781779, 33.08467307507188, 5.953324343984015, 16.83830354976631, 5.178754520724088, 13.074451364089356, 44.80927900076496, 14.489515940888003, 121.39846311907621, 14.191610601301822, 6.472029833582564, 40.12596918890798, 53.891030809717456, 38.60043472305963, 5.481735096955124, 50.119238882513265, 7.18667334796523, 6.374527676671779, 96.99983407929943, 59.79736577472997, 39.625110705583836, 99.13691785869955, 5.266861979759732, 9.818314878396452, 9.228935114054762, 28.422960614067936, 62.67492982299507, 26.475756653325234, 12.426616548279915, 5.333166866548596, 27.921625688651282, 11.713165502206603, 12.694565960075673, 81.66460415396806, 37.802806828062955, 81.9510725585405, 38.94193237254346, 106.82610772546545, 99.04401796813421, 124.25921968344701, 46.291250761236455, 27.2209455452638, 114.69350531080582, 73.30513112751063, 21.44360704260551, 29.470537077588826, 13.82299496735321, 134.61781686113216, 72.24023002577513, 80.02173547484338, 81.72700097267045, 16.739421648258638, 55.59877610554334, 48.85834969611127, 111.02523657287051, 36.321347043058374, 78.67849310770477, 7.147615208205729, 137.681847415406, 41.61654761627071, 36.10586613537316, 11.960822087233563, 8.033831336439166, 50.93253017694962, 52.55844321684892, 36.48041503906173, 11.988939211167315, 12.740504552664374, 54.143146535351285, 88.33130667926147, 13.056814926487704, 125.5287804251535, 35.86558737540841, 53.06675880759743, 13.930362969197047, 66.28398395993051, 7.709341032331469, 36.64780915182294, 36.48923332390929, 74.09080279692165, 5.929356646340852, 16.315331496322003, 8.5102723769123, 25.368939623335248, 43.144401744758454, 47.01933539934387, 9.60372164002759, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5148065.262515805, 5695693.058306366, 5697165.999653786, 5730401.5625, 8061426.910855374, 8108560.9375, 8141037.5, 8151799.446014565, 8185094.133190427, 8187905.415124893, 8188356.051253176, 8188984.375, 8193583.988254112, 8198358.200598152, 8208486.733731434, 8209581.25, 8226188.365949724, 8226663.673040695, 8227289.525923017, 8227547.409543403, 8229913.379225701, 8229922.790562426, 8239238.68719389, 8239722.066728758, 8254310.264192994, 8254529.155212009, 8261289.0625, 8281409.375, 8282550.844971203, 8283224.452679876, 8295870.231412579, 8296901.041528309, 8297758.025779545, 8301675.594154628, 8306471.400939609, 8310016.34817504, 8314355.531735229, 8420735.539514815, 8421004.6875, 8421173.143373663, 8434110.439257085, 8434375.0, 8435067.1875, 8436485.9375, 8437314.0625, 8438072.695377693, 8439665.625, 8449282.8813837, 8451200.0, 8453953.545730254, 8470534.375, 8470551.5625, 8475391.472060608, 8475458.134146763, 8475545.414609069, 8476281.628173983, 8476284.375, 8476315.942386368, 8476540.625, 8476686.753248103, 8484544.66310865, 8490471.293182677, 8491646.875, 8492872.2214884, 8502526.5625, 8505745.887047881, 8507687.93603849, 8508319.980867533, 8508452.174338715, 8508487.5, 8508507.116326546, 8508791.811915077, 8508798.397050485, 8508948.986260517, 8509138.073800763, 8509466.672374832, 8509848.124421138, 8509966.96506509, 8510251.5625, 8512416.023358975, 8512578.709021261, 8513396.102774784, 8514783.573327297, 8516262.393127074, 8518646.169167962, 8518702.018153839, 8519685.9375, 9978871.765307939, 10009184.375, 10132042.943050431, 10132079.222385818, 10133426.306418715, 10152379.724725502, 10152737.604082612, 10157189.0625, 10227842.686027247, 10277234.810786545, 10281607.342291484, 10282718.147220237, 10283702.475697014, 10283988.230638029, 10284227.251172423, 10284256.31653672, 10284658.728569757, 10286763.49754415, 10286995.148722598, 10287220.611359237, 10287757.012748191, 10288574.63387044, 10288960.966357976, 10290679.214069482, 10291418.622856941, 10291673.284795474, 10292181.363994772, 10292480.811121415, 10292639.665903376, 10293004.6875, 10307907.8125, 10323412.03575065, 10325242.1875, 10327464.606822202, 10331874.357257908, 10332448.886651069, 10347188.794551903, 10358646.022920199, 10359984.375, 10381540.28180906, 10406789.172495719, 10413716.075475205, 10446253.125, 10448040.275971247, 10449199.461752426, 10449433.17150958, 10462244.064922176, 10464762.193330169, 10466048.4375, 10474213.59573936, 10475488.121964524, 10477332.634532195, 10477796.5965165, 10479491.186740372, 10481324.447264807, 10481703.371001596, 10482538.539294304, 10482617.015402941, 10487308.799522875, 10489889.06907316, 10493236.768819936, 10505345.241774341, 10506709.893844979, 10506820.72660604, 10508046.734122844, 10510055.567615978, 10511449.85467978, 10511627.474393342, 10512067.1875, 10512125.160158567, 10512138.464124687, 10512224.934056228, 10512226.41011913, 10512250.495314764, 10512331.25, 10512342.1875, 10512433.972262312, 10512458.8733951, 10512654.26005658, 10512715.881348383, 10512732.058682846, 10512758.806142053, 10512781.25, 10512850.0, 10512902.35470699, 10512934.288774038, 10512936.463221634, 10512936.931015003, 10513091.262872856, 10513180.287482653, 10513203.857524624, 10513568.75, 10513608.001995321, 10513612.5, 10514178.396241657, 10514479.6875, 10514739.470626762, 10515429.6875, 10515999.721027365, 10516559.524144903, 10517159.214085843, 10525666.06050394, 10527394.160913676, 10528329.21674479, 10529637.377211561, 10530006.370467648, 10530117.70328458, 10530219.959797673, 10530381.070808975, 10530518.358036267, 10530941.721305575, 10531273.829092478, 10531464.314230429, 10531622.345541969, 10531868.30954426, 10531944.174007636, 10532185.45276701, 10532250.950487776, 10532307.440011403, 10532365.136492271, 10532501.593131546, 10532650.26340445, 10532838.220328331, 10533097.279736582, 10533144.253678797, 10533146.66734333, 10533211.35352356, 10533223.890155582, 10533230.738879574, 10533239.284586878, 10533374.759363664, 10533375.130525433, 10533618.143953986, 10533761.562590107, 10533836.895211412, 10533914.0625, 10534050.748536823, 10534087.361766709, 10534135.338802611, 10534183.381525557, 10534225.18198611, 10534326.107530285, 10534375.846574957, 10534608.97651743, 10534653.11219906, 10534818.189492054, 10535123.073276732, 10535290.625, 10536452.381236155, 10536607.8125, 10537198.262929747, 10538720.532832699, 10539184.958658913, 10539485.329066018, 10539734.113682255, 10539927.391414588, 10540203.160242122, 10541100.0, 10541830.882424138, 10542005.415608136, 10542499.367803404, 10542645.309881972, 10543071.875, 10543107.8125, 10543274.239025598, 10543698.4375, 10544294.076286044, 10544315.06823151, 10544745.3125, 10544934.615818169, 10545000.179099286, 10545055.661233503, 10545074.18334044, 10545428.125, 10545881.645113705, 10545896.234037528, 10545896.408622522, 10546115.625, 10546389.0625, 10546738.988298018, 10546866.880411413, 10547076.85665397, 10547335.25170144, 10547570.3125, 10547635.9375, 10548320.3125, 10549152.037277024, 10549509.375, 10552004.50461447, 10552175.0, 10552217.625844095, 10552535.908312742, 10552603.125, 10552812.5, 10553354.175967732, 10553878.778563974, 10554510.67883511, 10554642.576993922, 10554714.059403699, 10555326.10713028, 10559060.904601632, 10560654.597293042, 10560954.468849877, 10561232.709852736, 10562246.875, 10562269.230195353, 10563401.5625, 10563744.767471025, 10563748.186254244, 10563941.417911075, 10566621.386821114, 10567457.231821077, 10571305.850837907, 10571843.930176519, 10579454.6875, 10582322.168630304, 10583066.229887525, 10585224.509138785, 10585328.352402534, 10585582.402009776, 10586495.22848871, 10586621.899909588, 10587051.5625, 10587248.4375, 10587418.75, 10587460.451276977, 10587756.25, 10587766.369388185, 10587785.022452177, 10587796.190316578, 10587926.41719036, 10587930.844694326, 10587953.449919727, 10588019.958008684, 10588365.358673817, 10588663.506201884, 10588782.8125, 10588816.442997128, 10588833.264910214, 10588838.656979663, 10588875.0, 10588877.396210244, 10588883.883421166, 10588887.712392695, 10589043.860870609, 10589045.703852538, 10589058.8337475, 10589309.821156831, 10589367.1875, 10589368.42427423, 10589397.543922627, 10589400.374892242, 10589477.466642836, 10589633.103952907, 10589666.566021718, 10589674.12993194, 10589700.0, 10589717.1875, 10589718.790834965, 10589724.809149293, 10589787.5, 10589917.1875, 10589939.0625, 10590100.0, 10590170.3125, 10590204.6875, 10590336.256230755, 10590404.078778448, 10590513.85382888, 10590578.4407615, 10590833.084353134, 10590894.599510444, 10591052.035481457, 10591072.083825124, 10591108.692086184, 10591117.586186564, 10591308.820582302, 10591424.731937692, 10591501.201086454, 10591584.33932712, 10591873.4375, 10592277.819432793, 10592404.182163106, 10592448.24242055, 10592463.029324714, 10596185.334867328, 10596297.215848103, 10604189.624647887, 10618282.625878857, 10621245.999556921, 10621497.686836263, 10640840.545447636, 10656257.536146933, 10659660.41082255, 10661228.125, 10663280.133928536, 10665407.902813803, 10671254.6875, 10672685.90922106, 10677513.827311134, 10678233.172639694, 10681729.071068134, 10682191.94192714, 10682542.1875, 10682840.625, 10684529.237684993, 10692792.1875, 10705137.5, 10711136.358329577, 10722943.75, 10724438.26612061, 10727155.027526041, 10754179.49161767, 10754190.444394302, 10754514.0625, 10757811.676920531, 10758131.53669519, 10758305.90647347, 10758484.344782464, 10759122.943442678, 10759560.612509644, 10761481.25, 10761524.611338964, 10761571.853394747, 10761831.04223806, 10762121.875, 10762174.644373033, 10763162.128396813, 10764123.32168102, 10783509.332585933, 10804884.250327595, 10805200.919968948, 10809434.375, 10813012.564922627, 10815073.22417877, 10815618.274452653, 10832564.133177485, 10836871.218590265, 10837209.936986832, 10838973.4375, 10847188.20377237, 10854710.9375, 10859733.902807457, 10864935.9375, 10873176.113566969, 10884160.11454537, 10885208.691602565, 10885264.0625, 10885904.6875, 10897285.9375, 10899404.129204946, 10900607.752563054, 10900887.5, 10901544.633434163, 10902121.234509084, 10902363.979277063, 10903192.346658042, 10904996.345272887, 10905406.110398607, 10906828.967292367, 10906911.824568206, 10906938.750424802, 10909224.834909784, 10912231.25, 10916055.181764126, 10921712.229457185, 10922415.607339099, 10930931.724925436, 10931201.5625, 10931268.588920388, 10931604.43131171, 10931717.491846433, 10932324.51589978, 10935530.78269202, 10937615.435660701, 10939940.625, 10951932.8125, 10951977.59563367, 10952085.358596154, 10952124.80078585, 10952676.5625, 10952856.23103633, 10953246.546289066, 10953304.103167038, 10953528.521248398, 10953554.6875, 10953653.766688766, 10954179.6875, 10954969.519504573, 10955289.872629793, 10955348.308719771, 10955356.25, 10955376.641203964, 10955796.706301788, 10955821.875, 10955871.085748423, 10955976.5625, 10956144.313442033, 10956388.618890526, 10956439.660955044, 10956440.625, 10956544.33863929, 10957424.844362993, 10957887.5, 10958881.901546566, 10959106.959885487, 10959129.6875, 10960342.1875, 10961266.897526424, 10961665.625, 10969848.329341134, 10970801.5625, 10974716.72805844, 10980061.32511129, 10980381.737443658, 10980916.098089729, 10983120.3125, 10983604.755786046, 10983895.807517648, 10983999.30838154, 10984211.022867976, 10984438.40611015, 10984450.0, 10984521.53211372, 10984589.800736228, 10984734.07624396, 10984764.607000917, 10984982.568344142, 10985221.875, 10985411.668997651, 10985620.307790251, 10985759.8467912, 10986421.839109318, 10986592.623077694, 10986798.4375, 10986851.5625, 10986948.4375, 10987051.696506944, 10987270.86706366, 10987646.875, 10987725.0, 10987959.783590695, 10988067.1875, 10988087.5, 10988193.75, 10988286.854523275, 10988318.92855498, 10988325.0, 10988331.25, 10988370.172825804, 10988632.689454744, 10988834.588251645, 10988933.381751295, 10989099.920744078, 10989301.520683236, 10989342.1875, 10989521.875, 10989850.68611296, 10989917.450633388, 10990064.0625, 10990220.46026748, 10990250.134989109, 10990261.275290249, 10990335.9375, 10990386.650143366, 10990925.37241484, 10990928.989774527, 10991055.01250737, 10991056.180684615, 10991258.363260815, 10991376.234814512, 10991393.75, 10991439.54756834, 10991508.654735494, 10991600.297255578, 10991722.349332629, 10992382.22390295, 10992411.749895006, 10992617.334903855, 10992748.446943996, 10992763.367811086, 10993180.902589599, 10993325.150496455, 10997597.341716632, 10997597.814121261, 10998442.726147015, 10998789.718989354, 11003040.876538178, 11003266.749577671, 11003660.841721695, 11003826.5625, 11003991.4283231, 11004009.90223319, 11004804.959891967, 11005530.219185416, 11006239.0625, 11006580.22323161, 11006865.625, 11007415.625, 11007424.176522441, 11007626.92432346, 11007682.8125, 11008055.715935495, 11008536.536682917, 11008601.480236875, 11008603.595886583, 11008729.39232395, 11008817.555785142, 11009297.929303914, 11009502.408789726, 11009933.754506165, 11010961.565283936, 11011028.375982365, 11011154.6875, 11012870.3125, 11014452.351977332, 11015381.182212718, 11015450.379102066, 11018365.625, 11019218.389850961, 11020175.306597203, 11021272.695296522, 11021730.551376227, 11022738.508119185, 11022819.016168686, 11023090.849219164, 11023531.25, 11023662.431178525, 11025930.969710866, 11025957.265874831, 11026729.150812155, 11026754.584052179, 11027359.11067259, 11027760.79679531, 11028391.488394035, 11029463.997163547, 11033178.115509616, 11033203.17923135, 11037560.327080326, 11037939.330225866, 11038012.162301488, 11038026.558328593, 11038057.033207355, 11038148.757005645, 11038386.422294883, 11038511.744072396, 11038622.286423786, 11038716.311611509, 11038846.062984524, 11039070.257955529, 11039139.026888745, 11039341.876535319, 11039370.063602565, 11039534.375, 11039902.041547583, 11040029.340877796, 11040122.857197138, 11040366.14185846, 11040537.5, 11040749.086054765, 11041156.172984784, 11041215.28086947, 11041225.245215053, 11041330.144466083, 11041364.846558312, 11041500.741674768, 11041518.40854149, 11041520.3125, 11041541.814733725, 11041563.479662329, 11041620.91565153, 11041665.150673773, 11041734.5324225, 11042103.055626374, 11042204.6875, 11042363.391899321, 11042380.330280306, 11042421.188751956, 11042594.933880873, 11042602.581361284, 11042625.039229799, 11042710.9375, 11042728.080191983, 11042737.787478859, 11042771.565515792, 11043253.125, 11043330.989493823, 11043350.9467681, 11043589.304998633, 11043691.75164836, 11044010.9375, 11044064.03394307, 11044075.53405438, 11044360.122389054, 11044444.406998001, 11044448.4375, 11044623.352914788, 11044785.9375, 11044884.896680508, 11044984.100035232, 11045140.315383848, 11045225.793655828, 11045255.120463112, 11045255.226033311, 11045279.147007423, 11045293.273782622, 11045354.6875, 11045454.531173885, 11045522.217649365, 11045682.8125, 11045703.125, 11045715.625, 11045718.436996005, 11045757.999840446, 11045767.987180952, 11045805.66095699, 11045809.375, 11045834.794477321, 11045835.9375, 11045886.739770243, 11045925.620098758, 11045948.4375, 11046006.52861807, 11046057.721458867, 11046123.988329463, 11046126.83447453, 11046166.880662685, 11046177.98064202, 11046237.32325512, 11046306.25, 11046381.25, 11046437.633989716, 11046444.546316486, 11046463.979901345, 11046519.851148402, 11046526.874958996, 11046604.25779247, 11046633.373712115, 11046636.840789527, 11046650.0, 11046655.712582774, 11046660.8192548, 11046690.120033612, 11046798.4375, 11046910.122322438, 11047031.354445778, 11047050.049111832, 11047051.498781716, 11047107.736571388, 11047124.884643497, 11047125.0, 11047128.171078, 11047151.204041645, 11047160.456273383, 11047165.93096474, 11047205.591460526, 11047231.850891303, 11047244.957936428, 11047273.4375, 11047294.951944858, 11047302.751246793, 11047311.439638898, 11047319.15592202, 11047343.75, 11047389.0625, 11047392.724406399, 11047414.407311857, 11047417.1875, 11047468.422461128, 11047470.006254122, 11047474.45570434, 11047485.523455651, 11047487.5, 11047491.111411355, 11047494.986947881, 11047506.592571268, 11047514.0625, 11047609.375, 11047621.875, 11047629.774846306, 11047631.39326692, 11047637.652339928, 11047647.765632553, 11047665.718808291, 11047671.875, 11047677.544091305, 11047698.556012243, 11047738.848842029, 11047786.892020918, 11047796.597592514, 11047881.015293872, 11047895.3125, 11047907.8125, 11047919.08042764, 11047928.125, 11047943.271877756, 11047951.5625, 11047965.156047024, 11047982.8125, 11047986.940866888, 11048001.5625, 11048001.5625, 11048009.97201288, 11048015.28285441, 11048073.4375, 11048081.544492746, 11048104.720535617, 11048115.972450802, 11048138.721076373, 11048145.872489667, 11048148.8144282, 11048214.364657696, 11048234.93407834, 11048238.29930687, 11048251.387142116, 11048255.986877637, 11048268.917394353, 11048271.165348925, 11048271.794286659, 11048273.271808429, 11048273.4375, 11048278.125, 11048309.0381514, 11048314.664589629, 11048360.9375, 11048442.863242516, 11048475.618532337, 11048484.375, 11048495.848143023, 11048565.601876687, 11048580.977993311, 11048601.11381807, 11048646.127289155, 11048698.4375, 11048710.657853825, 11048719.540518746, 11048808.717912082, 11048824.533617847, 11048870.558333868, 11048874.362458963, 11048890.180799853, 11048926.5625, 11049020.3125, 11049038.98840603, 11049052.376282807, 11049077.042606866, 11049102.530410988, 11049126.373367239, 11049143.218476452, 11049174.77290275, 11049187.49085603, 11049236.649182461, 11049240.856054332, 11049244.45366849, 11049251.988663865, 11049274.033826744, 11049282.311744204, 11049285.9375, 11049289.65776028, 11049290.524334438, 11049307.622863637, 11049309.589547228, 11049345.225791115, 11049420.762166984, 11049428.09897758, 11049470.889171638, 11049495.3125, 11049515.625, 11049537.275255213, 11049565.625, 11049634.299171971, 11049638.423319966, 11049646.875, 11049659.880181296, 11049694.7817351, 11049735.549791934, 11049802.251772625, 11049814.375724226, 11049974.28924328, 11050067.699789375, 11050068.909560245, 11050092.862870358, 11050096.72822025, 11050110.58433624, 11050118.832505371, 11050126.093330165, 11050132.871205356, 11050142.1875, 11050148.078923125, 11050320.647311518, 11050353.125, 11050362.5, 11050404.6875, 11050409.664353425, 11050470.3125, 11050485.782595016, 11050602.222227462, 11050629.6875, 11050632.8125, 11050727.191578574, 11050730.497642335, 11050752.142457535, 11050760.804598715, 11050856.204993803, 11050891.12433544, 11050894.660208132, 11050955.683264095, 11051012.49238803, 11051014.369031273, 11051021.217483925, 11051032.080052122, 11051036.879356034, 11051059.375, 11051077.923711201, 11051110.652580526, 11051116.287287269, 11051162.094432512, 11051182.8125, 11051216.238314228, 11051276.258710196, 11051302.798767114, 11051328.938476559, 11051357.041450102, 11051367.244934458, 11051385.191591404, 11051403.125, 11051407.781078167, 11051412.5, 11051418.908452565, 11051439.642992597, 11051441.190924026, 11051459.259417403, 11051460.9375, 11051485.813635055, 11051500.0, 11051544.186903745, 11051570.215742303, 11051570.3125, 11051582.8125, 11051585.9375, 11051623.894627402, 11051625.323717734, 11051718.992436796, 11051721.117273526, 11051727.323390214, 11051731.026396018, 11051753.021896953, 11051754.6875, 11051788.2578204, 11051861.462200224, 11051863.938777782, 11051878.119820267, 11051920.3125, 11051958.007023107, 11052002.260082442, 11052048.17976284, 11052056.218780037, 11052063.985827459, 11052125.81450868, 11052150.0, 11052151.227776503, 11052156.819121908, 11052165.31353997, 11052172.888687592, 11052178.30200019, 11052199.833168555, 11052201.5625, 11052206.18047383, 11052226.320012284, 11052229.450974582, 11052253.231537411, 11052254.6875, 11052255.921944918, 11052256.726454712, 11052262.5, 11052299.088207927, 11052341.732567336, 11052387.90332647, 11052414.701312007, 11052590.14776995, 11052590.770304441, 11052609.375, 11052629.6875, 11052676.66110423, 11052714.0625, 11052715.625, 11052743.997728333, 11052761.412260761, 11052774.48938281, 11052779.009367667, 11052787.177201757, 11052865.50295097, 11052895.8014804, 11052908.646306382, 11052925.0, 11053004.6875, 11053008.773661155, 11053020.3125, 11053096.875, 11053126.5625, 11053140.33175436, 11053169.921460817, 11053215.909131883, 11053232.8125, 11053257.563705634, 11053264.0625, 11053290.508881826, 11053297.194100972, 11053311.337839788, 11053354.504436158, 11053381.25, 11053404.325920109, 11053439.367908072, ...], [9.042622285697096, 12.830011141107654, 16.399807075506537, 30.408928271775515, 11.719669923230253, 31.114491453439655, 68.43864758586463, 8.903139193343819, 23.425805655081376, 43.219846681397556, 95.80139868437693, 46.801595616460844, 45.4352662554541, 122.63774449925627, 15.805023084792627, 80.72778751005255, 7.369344484622146, 44.50719129514974, 17.06085062069531, 12.080446501625138, 58.196339253256205, 12.940861609305975, 5.683281715312015, 22.29548902765545, 19.922531764750154, 17.145824827552126, 64.18920874033095, 74.95679473365713, 5.431789741256425, 5.774563564116428, 27.017578259832842, 10.400580447044991, 6.110562832316507, 56.599572407387186, 10.459614073515132, 17.53425361682487, 5.879203803036741, 13.614402579873746, 62.86016340622746, 13.927616541934118, 13.330860856819246, 51.611098992822924, 50.66113407034587, 63.85875677434412, 65.13004473037486, 84.7704315660907, 46.11044681241006, 49.64265112418362, 60.96640194596294, 17.672753852040856, 62.50536090632528, 71.40060707119466, 64.13746272642142, 44.360647137754945, 85.86719068652805, 6.841429997256013, 74.16990322185663, 5.475556035276468, 51.24346922804874, 10.131673256439479, 20.121942654308608, 20.713992164267328, 77.9904056790796, 16.450014277968265, 60.29065731188341, 7.281142673370727, 8.531456042028635, 23.354918770331256, 9.908520487614643, 42.85636505798398, 10.189819219913682, 22.83098904218196, 6.262101353882098, 51.6371305721234, 8.615260648632562, 78.90050376271768, 19.272732198124643, 100.80314430161364, 92.17923956737934, 40.757265488201895, 12.18232744083815, 17.87159121443245, 6.613359705118409, 47.56785206299885, 5.318303488647678, 29.786089525905147, 94.9825651807684, 10.960473088061601, 58.815260286251345, 18.89483150684767, 30.1282126215674, 85.9686756409995, 62.33393309726806, 7.641321436836549, 30.46610180368172, 5.216311698195087, 7.768844284564363, 8.963128797519625, 23.40077307172266, 55.39682888625131, 62.14085615888495, 8.68774362714866, 15.20132947356112, 10.248154376782415, 10.34625505589908, 25.662106991534497, 180.3411624284481, 7.337509416670903, 97.54055805939537, 11.17311527161265, 21.76230376555727, 14.478076561591664, 10.897123845935223, 6.10003443881962, 22.125285670751612, 14.010975756888957, 58.61087400595711, 71.09258253186248, 22.367009125721367, 72.8754550202975, 9.838371794622338, 42.08030248659732, 16.983017288133883, 16.827260735480724, 26.48927520076435, 59.68223646156597, 23.214281989090534, 6.7856668585051505, 6.560104458904302, 53.25328384043676, 78.35010186592469, 21.119860585480232, 16.51260356006076, 6.3078236711963305, 10.679964625680487, 121.16060782941975, 8.965631482136914, 12.262291880768368, 5.454179459125526, 10.71863828450196, 5.645895694969837, 45.84471928788563, 60.29002569365786, 21.26469285484558, 31.210376218208964, 20.61494701535485, 36.37429930703195, 59.83329594052708, 25.822047815410556, 17.372405386623857, 81.14765808900559, 22.859175824895097, 19.848159478651745, 6.4645497726201, 25.37785453192426, 38.97864474032353, 5.468682970938514, 10.305624582873316, 54.02871691164677, 5.2864034120552565, 114.06385076989584, 47.31007793726238, 30.91539945008834, 5.278806990979179, 69.7767629420893, 42.61380281110292, 11.553518757333904, 26.98281343463325, 8.00704325462974, 41.20491124212505, 49.122415916140454, 8.755209726692438, 66.99247995860289, 9.819355320033951, 6.9795058359590945, 5.219983398404395, 5.562925813504569, 18.731297978846893, 79.55695837576214, 55.57643436376702, 64.98858742967305, 16.087026907005836, 33.09952973698493, 7.757835653401039, 112.74818976504194, 142.6973412861566, 28.167806068189066, 10.885170063078592, 16.909476843000608, 9.70482915712859, 27.548632333797126, 143.78824658372713, 72.3914457098531, 17.35480391123605, 203.3858440385919, 7.075131204744483, 5.445190809799184, 21.837090262090353, 16.678547482402546, 15.99642979201832, 17.100033686114994, 14.27554306792302, 11.862128675443685, 53.93961254090871, 7.395929975977227, 10.59145619234805, 34.08029549232244, 9.35743887741366, 9.564521003685382, 59.60301886668236, 11.825320598595, 8.572189322642815, 18.046933829551982, 16.80597228585886, 94.41895798105082, 69.92480573316442, 61.99027178876957, 15.40674894896824, 24.567636494709888, 56.156852847821426, 8.647323135749028, 23.664276460532783, 47.68012663079621, 32.18899288579904, 29.40332151212779, 95.25732608863962, 9.863832386550365, 8.385217763686123, 5.900739713614395, 23.565004216731108, 34.95578061591671, 14.89294168011073, 13.163328576321947, 22.96363782728551, 46.454918110740124, 10.135076253632146, 89.00723123232015, 25.497048824694524, 23.98859358045221, 9.879025739119562, 27.834503682931885, 10.742422821899659, 19.44158730439347, 15.077559111808387, 50.88828073930587, 20.691829436827714, 10.03360941182536, 10.265061110282966, 14.9315401061191, 74.61006271482336, 56.65664628184027, 24.28438225213383, 47.11499504093738, 8.46700391020871, 13.17321373033911, 42.915029001181125, 13.877509225807746, 38.434869229888484, 31.693796152834373, 12.535095102634594, 112.0929037301949, 33.656077049271154, 12.95587987061974, 8.965909770965471, 34.65300625385288, 74.1654363208635, 85.63094705305448, 10.679393595583477, 65.22097802746772, 17.072867006353142, 110.18740907454847, 65.69958470875318, 97.89633149244018, 17.123458324633255, 47.22805096998197, 5.695216711453132, 68.97897415206313, 100.92969730931196, 5.704902967140719, 51.63466569238797, 80.05488483656468, 111.58718599894038, 18.19737110340091, 14.039459393054347, 110.06156075613133, 8.284940628914477, 75.17078685613737, 29.6277583909344, 9.256275318106093, 38.90136610986791, 5.930515955574912, 28.610788658368367, 21.500461003089146, 75.3326201720414, 43.54523615912041, 10.756461077575986, 8.755675690695375, 72.83219621881777, 10.327070693537449, 10.55628686910017, 18.057510062165534, 28.97645196222589, 121.4561822580103, 24.274343188371304, 5.154085248839463, 26.85620699725125, 10.541469953730319, 26.96671753180216, 5.204057002810108, 33.49711767490889, 152.74853492966744, 53.25910246115281, 24.56983387217123, 29.241869205882676, 10.05157403133144, 6.352618163807376, 94.86532224820112, 86.4271772729468, 13.593095690124084, 86.17731891091562, 10.615411390014732, 29.698235777562783, 23.027684945782738, 53.35945277073249, 42.07254719579408, 144.21400470663178, 14.270732038590202, 52.63435312545896, 19.478761052818903, 5.441055719235421, 9.51769093483335, 30.453063905103903, 16.677308943107473, 37.74239850237706, 9.739473608585541, 55.440133072527615, 10.654082981883152, 18.2980999620586, 11.769022567496433, 20.04658986024157, 24.982034884770716, 13.005219171096016, 18.45515193152157, 91.65845012044252, 45.757386996443635, 5.709361791322796, 5.453634207284088, 44.93084622482837, 99.8216805596106, 76.11452628079806, 36.318379636280376, 64.28001444775379, 31.147973840830602, 23.123460863369072, 7.396974252576731, 131.4015290582078, 6.8282268701958895, 5.724280694383365, 79.49428500735456, 22.44545800176352, 29.884156521171647, 12.85153097149592, 64.16231461777367, 26.566161602774347, 22.99460695709803, 18.85164856611396, 74.99184795766618, 57.582664291240675, 30.144149961469356, 8.937783817651972, 57.80246557601686, 17.43304042931497, 7.991685504332174, 58.95702687370022, 14.102484147003874, 5.335567269804416, 88.63965565946613, 19.310673356648206, 14.646721494352452, 24.057572281913128, 113.15508722176338, 107.92006757459711, 16.36095483008634, 20.585911749028543, 29.654774475531994, 59.445308596669875, 20.215208494194716, 5.105610963635702, 20.405273600231457, 26.68276573953878, 76.55339195069874, 64.96293319808093, 7.0080246202629235, 34.58207681307447, 57.39508354856876, 35.282180131394966, 88.60400264402844, 18.971153762218965, 9.636474123321408, 6.0679633310954815, 49.03956584750068, 100.73815482347106, 5.656303665284595, 21.852758461276352, 119.21573853085083, 14.82757172938298, 21.55258716202411, 23.436688240781027, 48.7973504044727, 35.16524183232985, 72.97384309653155, 101.19617227398173, 80.97259082535805, 23.065272112139958, 15.962417038777133, 35.26513817500904, 37.88857996937513, 111.87807129292774, 20.180089675424902, 57.01135262121369, 13.14434081669108, 43.179398080575865, 49.122374415106535, 15.21792023066127, 67.29878934982369, 12.773782311320371, 53.063080079241125, 12.440370047897568, 119.65004595975697, 21.775053146072587, 44.87032671318967, 18.08536274798072, 71.87022262849803, 12.850342757437435, 40.572278359067866, 74.65879786129518, 74.66308955588593, 61.91362268643014, 62.15576451543977, 30.105683568722558, 17.668306711668748, 88.89741969488264, 26.980408467083183, 15.58495159357006, 40.442853231060944, 6.465427917644772, 8.788603287361637, 19.905058517452687, 35.45413307478311, 14.525578444640143, 43.03706966075005, 33.11415182062765, 5.794229980109872, 21.527890054396906, 9.768086727577574, 47.87499151117491, 143.1763756905719, 24.326986264220984, 71.49377946039981, 67.88786980249944, 19.172884406695974, 66.24074716276073, 108.21822342304338, 38.65298817414508, 21.2050733894644, 28.472805275526525, 51.933407455231446, 48.422699231361236, 27.116255993118692, 13.82099508341665, 16.62011593041015, 18.054341771237997, 50.42460117737132, 9.940107731716022, 66.14970843912685, 25.552618222450455, 19.297717002187408, 93.3392547390651, 41.45934872365711, 6.499499948178572, 74.55776013401828, 63.76627780198749, 32.50133641588561, 42.92912681437091, 9.858057120058122, 13.483186036431366, 19.03483070661802, 51.6331126873517, 11.632638574548112, 25.788313969888723, 130.45546225223802, 16.094754755870675, 10.013634670486999, 47.28864293137957, 96.18945622042145, 7.047257072815739, 70.03778613454199, 5.806020545859869, 41.22543747096555, 90.91408030047651, 11.792911805705238, 8.562340474768165, 48.74443946231051, 70.35421110934783, 15.208332300763107, 5.739003556459395, 19.773222154204543, 218.19104442314108, 20.063062393944605, 42.40526138912709, 23.217962212580368, 24.092775666608237, 23.766644533525703, 18.417359445006664, 24.491282531555463, 64.32885448079045, 18.724089761970863, 11.12035313523099, 5.482387388368962, 27.83390263653012, 6.853697664224961, 33.981981907039874, 127.01498169570198, 49.11763515828242, 150.5266299230611, 17.58141257781573, 33.25611309435988, 30.699072658104114, 36.280910333764645, 80.98920107826977, 44.540677796798185, 98.95766238115343, 97.17270279434432, 15.668746717029506, 36.00964943831089, 32.541071542150355, 21.872008380761493, 34.07767808073897, 15.821792920598849, 273.1466846440161, 43.14157303530236, 11.062967588260431, 51.75535303908998, 42.02371226976371, 48.611654627538385, 25.29390118986622, 89.42568279291001, 9.459554501438392, 32.91813291407071, 80.75877523969481, 52.88728222623013, 29.705105659373665, 7.743726271530643, 15.436889810670191, 16.344123411114587, 9.273472840485281, 7.815373734095076, 23.40342448730244, 36.75840676119498, 9.778247204551189, 26.773745107719616, 21.846098733125743, 19.757512319992056, 20.652594793385536, 12.689564810646512, 11.366199582459178, 11.142500531274742, 81.89623310598587, 6.052701636752839, 11.371382804609473, 79.85514185738037, 20.344713157384312, 5.854940351952285, 86.33072620485972, 21.207947327481854, 10.505880216074415, 59.10530451373871, 65.69020697745042, 141.4342537847397, 17.42089400142144, 16.09241215107227, 6.145191869913352, 57.14186275269123, 24.269982683335595, 47.10740961521371, 34.141020589902844, 12.519592876189474, 29.62869404095531, 64.60410836331684, 6.987799457296827, 127.95791141789317, 14.636964998471697, 8.552343387676817, 9.093692915178513, 11.75667325294473, 21.411727690690483, 38.07166384506789, 20.369807256683185, 12.274700530002045, 9.553039418650432, 65.81286407462473, 48.584448194921656, 19.14267257970923, 11.023378613185491, 16.61440227102544, 47.08969612969283, 124.9042251569135, 53.266970486591106, 112.58146293864588, 8.803150080493522, 8.902859763152772, 6.529640975405992, 7.686398301190822, 61.90071422913258, 11.0218117566427, 41.844399991937024, 68.70295489611368, 26.416680734025093, 14.561348997004188, 14.021425534025445, 36.53781838640866, 19.712990638958058, 73.45396943666208, 28.338503667996353, 6.093757014729452, 30.616431784580875, 5.351180137080987, 7.035423045436262, 26.41589711903869, 19.09623582386397, 139.66744958253832, 27.977254600920315, 7.9235657717553805, 21.817737942008712, 211.48305538910463, 18.858534491668845, 27.4899686637293, 45.055675659668715, 23.086353810452003, 14.07072488653078, 77.46736458224731, 14.216966698782597, 9.05455870109947, 61.19148947914496, 17.360974771566298, 61.44100065590436, 18.723638390928315, 26.696064056022053, 5.330266272167557, 9.547725885224606, 138.18852579599843, 66.27043020584279, 18.79584211347032, 23.2352285197877, 81.5651963668073, 116.66088311601371, 147.59676894599568, 27.43561532113032, 13.396914770034915, 9.468157060485792, 81.09221166607541, 29.900348816446503, 30.484577472780494, 8.65849353657817, 19.816714654523594, 22.79588334802418, 14.395356478708809, 6.493258479328944, 91.17484692779155, 27.668221214017727, 16.16350192915126, 6.703254260261387, 113.28981396566776, 24.26867904236709, 10.631211469760878, 11.529153501852822, 13.505235231329047, 30.903521687546203, 32.031876714896086, 136.52959645385582, 6.169429640997367, 12.337585030210382, 80.42487153582204, 21.647377399329724, 108.48357711864035, 17.388756089287373, 13.98772854920893, 10.675949103140699, 6.619142514970944, 9.726451783225942, 17.486788248100098, 13.216497825294471, 5.898979509542608, 103.52307709105958, 28.207553263006822, 16.430952894103076, 49.915938910876505, 98.13078159480372, 36.25420251633753, 21.021202883949208, 9.49499817397706, 60.753049116632205, 20.64857230755478, 61.812626741525314, 8.521601943460237, 35.55294455336934, 12.665691447014876, 266.15537460329995, 113.17839331527173, 6.820435171025233, 26.845361873854625, 26.57433951738929, 11.581208101245856, 64.31982123013073, 167.1873862944755, 63.28776237772334, 30.468956958493134, 78.56308371552868, 15.478053559316475, 5.759383936167292, 77.20213548844431, 104.07222828393344, 42.25015840131927, 136.5784929462407, 140.86700634720643, 6.638669369669869, 62.01473977084805, 67.18104233248334, 66.54598747680862, 39.27167221350626, 68.39748818739027, 28.47689572405328, 35.49553162758032, 15.132064208134217, 11.02955050533375, 120.48280925957408, 9.235730981548818, 67.70973242767731, 11.200501677582002, 41.72778007466418, 35.02331794502882, 16.251788723519436, 20.04506509569611, 6.585600628523783, 10.615314846801374, 64.60397931991614, 31.24378353153178, 7.026551094470289, 70.31026332788115, 64.80256800211106, 49.03242159082629, 85.96965787763264, 17.477260381734315, 5.633409081991733, 49.78744401586258, 19.835019894106615, 21.63099066578715, 89.31827793281019, 102.96660965144854, 33.553919880047104, 8.561715789674059, 23.429745307751165, 63.13023925600527, 38.020959814033496, 30.158643393537293, 201.98110409572442, 7.635137836939181, 7.159628408917232, 24.220777140945835, 14.580562650383046, 7.6375226166994326, 62.600347832212734, 8.884189350620959, 30.314424169917565, 24.920069158519716, 20.47958287952057, 31.99266926789398, 51.82044679539671, 109.68727934820319, 64.91591689650508, 16.370667641264376, 61.380522442620475, 108.17405969647209, 75.64263471567477, 8.964039833704664, 36.527486395951044, 81.59925619815922, 51.02860553692039, 51.520705970389606, 17.838688021532807, 76.3108204928134, 52.37931419228621, 12.83736930447462, 22.29761763822993, 16.454802179898337, 134.79678394761387, 17.360990704202514, 8.496495678924596, 30.35148115759548, 41.2091355007762, 19.21606322343936, 5.335948503319687, 78.36385921951046, 6.105681477782469, 12.786333440942908, 6.747499050972941, 90.64230681559474, 90.48790506358603, 150.5917116382768, 23.29119332953591, 179.01583895687403, 43.95274240450329, 9.976583491980392, 167.54218127244565, 38.704948580231665, 75.62048579603007, 27.988177765128174, 24.816285298360988, 22.020770053348826, 47.47242202847083, 80.73516812453767, 6.708932697422264, 119.2899212792038, 73.70034277091932, 21.835141952156427, 5.832396578057952, 7.387852694494108, 26.616667986114667, 88.88791832337841, 54.509070848088705, 27.140161748331813, 12.692847804741962, 7.786632294411253, 127.66494681098182, 67.48187566604354, 35.49009469800606, 8.170027812672869, 27.878529120482295, 33.096440181867806, 21.52500896934869, 18.53147145826572, 9.719765598082967, 6.584818317326312, 24.14610521944337, 122.77120321326703, 116.95867473896604, 10.97392303794558, 112.24362755281659, 15.827587809168183, 99.39088566005546, 17.19452964883248, 5.6126061379651455, 8.617042711991626, 69.69827778094589, 49.74226090349407, 14.14890927273078, 87.10386655566086, 14.660156188982793, 5.374588316680193, 66.42992069920697, 9.798507850630727, 21.191597173623094, 10.571340572491266, 7.873131796947575, 161.1110306151556, 14.929744789946259, 96.17860810443311, 17.458851423834716, 5.312415015494314, 25.92734294567837, 58.44012131688191, 11.259164262496046, 67.02826774187294, 183.78681335144097, 37.46690800238478, 19.992911205968667, 23.74021476593673, 78.6723892808882, 42.77964913879308, 29.836257411548907, 73.67835201616023, 152.05772499648515, 25.79973633350101, 14.47937523234009, 52.37321424316013, 84.97026481121138, 9.92672007722942, 24.87943110354854, 6.88509065552462, 6.466457664159683, 27.664565618585083, 26.130418756581, 64.92574350907259, 20.85224103326859, 11.115829614313231, 23.375769609510748, 54.16212821716408, 28.17942673790484, 13.007344498998187, 30.117645764172345, 58.968311742431666, 23.94530497469357, 95.31170481643443, 8.083151220840566, 53.75151824124571, 17.94016296073927, 5.913379210030527, 86.48958891242181, 51.80303219551863, 12.640328816604638, 7.624143682242991, 19.34689540856784, 97.28369742175795, 71.17955748781779, 33.08467307507188, 5.953324343984015, 16.83830354976631, 5.178754520724088, 13.074451364089356, 44.80927900076496, 14.489515940888003, 121.39846311907621, 14.191610601301822, 6.472029833582564, 40.12596918890798, 53.891030809717456, 38.60043472305963, 5.481735096955124, 50.119238882513265, 7.18667334796523, 6.374527676671779, 96.99983407929943, 59.79736577472997, 39.625110705583836, 99.13691785869955, 5.266861979759732, 9.818314878396452, 9.228935114054762, 28.422960614067936, 62.67492982299507, 26.475756653325234, 12.426616548279915, 5.333166866548596, 27.921625688651282, 11.713165502206603, 12.694565960075673, 81.66460415396806, 37.802806828062955, 81.9510725585405, 38.94193237254346, 106.82610772546545, 99.04401796813421, 124.25921968344701, 46.291250761236455, 27.2209455452638, 114.69350531080582, 73.30513112751063, 21.44360704260551, 29.470537077588826, 13.82299496735321, 134.61781686113216, 72.24023002577513, 80.02173547484338, 81.72700097267045, 16.739421648258638, 55.59877610554334, 48.85834969611127, 111.02523657287051, 36.321347043058374, 78.67849310770477, 7.147615208205729, 137.681847415406, 41.61654761627071, 36.10586613537316, 11.960822087233563, 8.033831336439166, 50.93253017694962, 52.55844321684892, 36.48041503906173, 11.988939211167315, 12.740504552664374, 54.143146535351285, 88.33130667926147, 13.056814926487704, 125.5287804251535, 35.86558737540841, 53.06675880759743, 13.930362969197047, 66.28398395993051, 7.709341032331469, 36.64780915182294, 36.48923332390929, 74.09080279692165, 5.929356646340852, 16.315331496322003, 8.5102723769123, 25.368939623335248, 43.144401744758454, 47.01933539934387, 9.60372164002759, ...])
caption, T_hit,count1 = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count1, caption);
([5148065.262515805, 5695693.058306366, 5697165.999653786, 5730401.5625, 8061426.910855374, 8108560.9375, 8141037.5, 8151799.446014565, 8185094.133190427, 8187905.415124893, 8188356.051253176, 8188984.375, 8193583.988254112, 8198358.200598152, 8208486.733731434, 8209581.25, 8226188.365949724, 8226663.673040695, 8227289.525923017, 8227547.409543403, 8229913.379225701, 8229922.790562426, 8239238.68719389, 8239722.066728758, 8254310.264192994, 8254529.155212009, 8261289.0625, 8281409.375, 8282550.844971203, 8283224.452679876, 8295870.231412579, 8296901.041528309, 8297758.025779545, 8301675.594154628, 8306471.400939609, 8310016.34817504, 8314355.531735229, 8420735.539514815, 8421004.6875, 8421173.143373663, 8434110.439257085, 8434375.0, 8435067.1875, 8436485.9375, 8437314.0625, 8438072.695377693, 8439665.625, 8449282.8813837, 8451200.0, 8453953.545730254, 8470534.375, 8470551.5625, 8475391.472060608, 8475458.134146763, 8475545.414609069, 8476281.628173983, 8476284.375, 8476315.942386368, 8476540.625, 8476686.753248103, 8484544.66310865, 8490471.293182677, 8491646.875, 8492872.2214884, 8502526.5625, 8505745.887047881, 8507687.93603849, 8508319.980867533, 8508452.174338715, 8508487.5, 8508507.116326546, 8508791.811915077, 8508798.397050485, 8508948.986260517, 8509138.073800763, 8509466.672374832, 8509848.124421138, 8509966.96506509, 8510251.5625, 8512416.023358975, 8512578.709021261, 8513396.102774784, 8514783.573327297, 8516262.393127074, 8518646.169167962, 8518702.018153839, 8519685.9375, 9978871.765307939, 10009184.375, 10132042.943050431, 10132079.222385818, 10133426.306418715, 10152379.724725502, 10152737.604082612, 10157189.0625, 10227842.686027247, 10277234.810786545, 10281607.342291484, 10282718.147220237, 10283702.475697014, 10283988.230638029, 10284227.251172423, 10284256.31653672, 10284658.728569757, 10286763.49754415, 10286995.148722598, 10287220.611359237, 10287757.012748191, 10288574.63387044, 10288960.966357976, 10290679.214069482, 10291418.622856941, 10291673.284795474, 10292181.363994772, 10292480.811121415, 10292639.665903376, 10293004.6875, 10307907.8125, 10323412.03575065, 10325242.1875, 10327464.606822202, 10331874.357257908, 10332448.886651069, 10347188.794551903, 10358646.022920199, 10359984.375, 10381540.28180906, 10406789.172495719, 10413716.075475205, 10446253.125, 10448040.275971247, 10449199.461752426, 10449433.17150958, 10462244.064922176, 10464762.193330169, 10466048.4375, 10474213.59573936, 10475488.121964524, 10477332.634532195, 10477796.5965165, 10479491.186740372, 10481324.447264807, 10481703.371001596, 10482538.539294304, 10482617.015402941, 10487308.799522875, 10489889.06907316, 10493236.768819936, 10505345.241774341, 10506709.893844979, 10506820.72660604, 10508046.734122844, 10510055.567615978, 10511449.85467978, 10511627.474393342, 10512067.1875, 10512125.160158567, 10512138.464124687, 10512224.934056228, 10512226.41011913, 10512250.495314764, 10512331.25, 10512342.1875, 10512433.972262312, 10512458.8733951, 10512654.26005658, 10512715.881348383, 10512732.058682846, 10512758.806142053, 10512781.25, 10512850.0, 10512902.35470699, 10512934.288774038, 10512936.463221634, 10512936.931015003, 10513091.262872856, 10513180.287482653, 10513203.857524624, 10513568.75, 10513608.001995321, 10513612.5, 10514178.396241657, 10514479.6875, 10514739.470626762, 10515429.6875, 10515999.721027365, 10516559.524144903, 10517159.214085843, 10525666.06050394, 10527394.160913676, 10528329.21674479, 10529637.377211561, 10530006.370467648, 10530117.70328458, 10530219.959797673, 10530381.070808975, 10530518.358036267, 10530941.721305575, 10531273.829092478, 10531464.314230429, 10531622.345541969, 10531868.30954426, 10531944.174007636, 10532185.45276701, 10532250.950487776, 10532307.440011403, 10532365.136492271, 10532501.593131546, 10532650.26340445, 10532838.220328331, 10533097.279736582, 10533144.253678797, 10533146.66734333, 10533211.35352356, 10533223.890155582, 10533230.738879574, 10533239.284586878, 10533374.759363664, 10533375.130525433, 10533618.143953986, 10533761.562590107, 10533836.895211412, 10533914.0625, 10534050.748536823, 10534087.361766709, 10534135.338802611, 10534183.381525557, 10534225.18198611, 10534326.107530285, 10534375.846574957, 10534608.97651743, 10534653.11219906, 10534818.189492054, 10535123.073276732, 10535290.625, 10536452.381236155, 10536607.8125, 10537198.262929747, 10538720.532832699, 10539184.958658913, 10539485.329066018, 10539734.113682255, 10539927.391414588, 10540203.160242122, 10541100.0, 10541830.882424138, 10542005.415608136, 10542499.367803404, 10542645.309881972, 10543071.875, 10543107.8125, 10543274.239025598, 10543698.4375, 10544294.076286044, 10544315.06823151, 10544745.3125, 10544934.615818169, 10545000.179099286, 10545055.661233503, 10545074.18334044, 10545428.125, 10545881.645113705, 10545896.234037528, 10545896.408622522, 10546115.625, 10546389.0625, 10546738.988298018, 10546866.880411413, 10547076.85665397, 10547335.25170144, 10547570.3125, 10547635.9375, 10548320.3125, 10549152.037277024, 10549509.375, 10552004.50461447, 10552175.0, 10552217.625844095, 10552535.908312742, 10552603.125, 10552812.5, 10553354.175967732, 10553878.778563974, 10554510.67883511, 10554642.576993922, 10554714.059403699, 10555326.10713028, 10559060.904601632, 10560654.597293042, 10560954.468849877, 10561232.709852736, 10562246.875, 10562269.230195353, 10563401.5625, 10563744.767471025, 10563748.186254244, 10563941.417911075, 10566621.386821114, 10567457.231821077, 10571305.850837907, 10571843.930176519, 10579454.6875, 10582322.168630304, 10583066.229887525, 10585224.509138785, 10585328.352402534, 10585582.402009776, 10586495.22848871, 10586621.899909588, 10587051.5625, 10587248.4375, 10587418.75, 10587460.451276977, 10587756.25, 10587766.369388185, 10587785.022452177, 10587796.190316578, 10587926.41719036, 10587930.844694326, 10587953.449919727, 10588019.958008684, 10588365.358673817, 10588663.506201884, 10588782.8125, 10588816.442997128, 10588833.264910214, 10588838.656979663, 10588875.0, 10588877.396210244, 10588883.883421166, 10588887.712392695, 10589043.860870609, 10589045.703852538, 10589058.8337475, 10589309.821156831, 10589367.1875, 10589368.42427423, 10589397.543922627, 10589400.374892242, 10589477.466642836, 10589633.103952907, 10589666.566021718, 10589674.12993194, 10589700.0, 10589717.1875, 10589718.790834965, 10589724.809149293, 10589787.5, 10589917.1875, 10589939.0625, 10590100.0, 10590170.3125, 10590204.6875, 10590336.256230755, 10590404.078778448, 10590513.85382888, 10590578.4407615, 10590833.084353134, 10590894.599510444, 10591052.035481457, 10591072.083825124, 10591108.692086184, 10591117.586186564, 10591308.820582302, 10591424.731937692, 10591501.201086454, 10591584.33932712, 10591873.4375, 10592277.819432793, 10592404.182163106, 10592448.24242055, 10592463.029324714, 10596185.334867328, 10596297.215848103, 10604189.624647887, 10618282.625878857, 10621245.999556921, 10621497.686836263, 10640840.545447636, 10656257.536146933, 10659660.41082255, 10661228.125, 10663280.133928536, 10665407.902813803, 10671254.6875, 10672685.90922106, 10677513.827311134, 10678233.172639694, 10681729.071068134, 10682191.94192714, 10682542.1875, 10682840.625, 10684529.237684993, 10692792.1875, 10705137.5, 10711136.358329577, 10722943.75, 10724438.26612061, 10727155.027526041, 10754179.49161767, 10754190.444394302, 10754514.0625, 10757811.676920531, 10758131.53669519, 10758305.90647347, 10758484.344782464, 10759122.943442678, 10759560.612509644, 10761481.25, 10761524.611338964, 10761571.853394747, 10761831.04223806, 10762121.875, 10762174.644373033, 10763162.128396813, 10764123.32168102, 10783509.332585933, 10804884.250327595, 10805200.919968948, 10809434.375, 10813012.564922627, 10815073.22417877, 10815618.274452653, 10832564.133177485, 10836871.218590265, 10837209.936986832, 10838973.4375, 10847188.20377237, 10854710.9375, 10859733.902807457, 10864935.9375, 10873176.113566969, 10884160.11454537, 10885208.691602565, 10885264.0625, 10885904.6875, 10897285.9375, 10899404.129204946, 10900607.752563054, 10900887.5, 10901544.633434163, 10902121.234509084, 10902363.979277063, 10903192.346658042, 10904996.345272887, 10905406.110398607, 10906828.967292367, 10906911.824568206, 10906938.750424802, 10909224.834909784, 10912231.25, 10916055.181764126, 10921712.229457185, 10922415.607339099, 10930931.724925436, 10931201.5625, 10931268.588920388, 10931604.43131171, 10931717.491846433, 10932324.51589978, 10935530.78269202, 10937615.435660701, 10939940.625, 10951932.8125, 10951977.59563367, 10952085.358596154, 10952124.80078585, 10952676.5625, 10952856.23103633, 10953246.546289066, 10953304.103167038, 10953528.521248398, 10953554.6875, 10953653.766688766, 10954179.6875, 10954969.519504573, 10955289.872629793, 10955348.308719771, 10955356.25, 10955376.641203964, 10955796.706301788, 10955821.875, 10955871.085748423, 10955976.5625, 10956144.313442033, 10956388.618890526, 10956439.660955044, 10956440.625, 10956544.33863929, 10957424.844362993, 10957887.5, 10958881.901546566, 10959106.959885487, 10959129.6875, 10960342.1875, 10961266.897526424, 10961665.625, 10969848.329341134, 10970801.5625, 10974716.72805844, 10980061.32511129, 10980381.737443658, 10980916.098089729, 10983120.3125, 10983604.755786046, 10983895.807517648, 10983999.30838154, 10984211.022867976, 10984438.40611015, 10984450.0, 10984521.53211372, 10984589.800736228, 10984734.07624396, 10984764.607000917, 10984982.568344142, 10985221.875, 10985411.668997651, 10985620.307790251, 10985759.8467912, 10986421.839109318, 10986592.623077694, 10986798.4375, 10986851.5625, 10986948.4375, 10987051.696506944, 10987270.86706366, 10987646.875, 10987725.0, 10987959.783590695, 10988067.1875, 10988087.5, 10988193.75, 10988286.854523275, 10988318.92855498, 10988325.0, 10988331.25, 10988370.172825804, 10988632.689454744, 10988834.588251645, 10988933.381751295, 10989099.920744078, 10989301.520683236, 10989342.1875, 10989521.875, 10989850.68611296, 10989917.450633388, 10990064.0625, 10990220.46026748, 10990250.134989109, 10990261.275290249, 10990335.9375, 10990386.650143366, 10990925.37241484, 10990928.989774527, 10991055.01250737, 10991056.180684615, 10991258.363260815, 10991376.234814512, 10991393.75, 10991439.54756834, 10991508.654735494, 10991600.297255578, 10991722.349332629, 10992382.22390295, 10992411.749895006, 10992617.334903855, 10992748.446943996, 10992763.367811086, 10993180.902589599, 10993325.150496455, 10997597.341716632, 10997597.814121261, 10998442.726147015, 10998789.718989354, 11003040.876538178, 11003266.749577671, 11003660.841721695, 11003826.5625, 11003991.4283231, 11004009.90223319, 11004804.959891967, 11005530.219185416, 11006239.0625, 11006580.22323161, 11006865.625, 11007415.625, 11007424.176522441, 11007626.92432346, 11007682.8125, 11008055.715935495, 11008536.536682917, 11008601.480236875, 11008603.595886583, 11008729.39232395, 11008817.555785142, 11009297.929303914, 11009502.408789726, 11009933.754506165, 11010961.565283936, 11011028.375982365, 11011154.6875, 11012870.3125, 11014452.351977332, 11015381.182212718, 11015450.379102066, 11018365.625, 11019218.389850961, 11020175.306597203, 11021272.695296522, 11021730.551376227, 11022738.508119185, 11022819.016168686, 11023090.849219164, 11023531.25, 11023662.431178525, 11025930.969710866, 11025957.265874831, 11026729.150812155, 11026754.584052179, 11027359.11067259, 11027760.79679531, 11028391.488394035, 11029463.997163547, 11033178.115509616, 11033203.17923135, 11037560.327080326, 11037939.330225866, 11038012.162301488, 11038026.558328593, 11038057.033207355, 11038148.757005645, 11038386.422294883, 11038511.744072396, 11038622.286423786, 11038716.311611509, 11038846.062984524, 11039070.257955529, 11039139.026888745, 11039341.876535319, 11039370.063602565, 11039534.375, 11039902.041547583, 11040029.340877796, 11040122.857197138, 11040366.14185846, 11040537.5, 11040749.086054765, 11041156.172984784, 11041215.28086947, 11041225.245215053, 11041330.144466083, 11041364.846558312, 11041500.741674768, 11041518.40854149, 11041520.3125, 11041541.814733725, 11041563.479662329, 11041620.91565153, 11041665.150673773, 11041734.5324225, 11042103.055626374, 11042204.6875, 11042363.391899321, 11042380.330280306, 11042421.188751956, 11042594.933880873, 11042602.581361284, 11042625.039229799, 11042710.9375, 11042728.080191983, 11042737.787478859, 11042771.565515792, 11043253.125, 11043330.989493823, 11043350.9467681, 11043589.304998633, 11043691.75164836, 11044010.9375, 11044064.03394307, 11044075.53405438, 11044360.122389054, 11044444.406998001, 11044448.4375, 11044623.352914788, 11044785.9375, 11044884.896680508, 11044984.100035232, 11045140.315383848, 11045225.793655828, 11045255.120463112, 11045255.226033311, 11045279.147007423, 11045293.273782622, 11045354.6875, 11045454.531173885, 11045522.217649365, 11045682.8125, 11045703.125, 11045715.625, 11045718.436996005, 11045757.999840446, 11045767.987180952, 11045805.66095699, 11045809.375, 11045834.794477321, 11045835.9375, 11045886.739770243, 11045925.620098758, 11045948.4375, 11046006.52861807, 11046057.721458867, 11046123.988329463, 11046126.83447453, 11046166.880662685, 11046177.98064202, 11046237.32325512, 11046306.25, 11046381.25, 11046437.633989716, 11046444.546316486, 11046463.979901345, 11046519.851148402, 11046526.874958996, 11046604.25779247, 11046633.373712115, 11046636.840789527, 11046650.0, 11046655.712582774, 11046660.8192548, 11046690.120033612, 11046798.4375, 11046910.122322438, 11047031.354445778, 11047050.049111832, 11047051.498781716, 11047107.736571388, 11047124.884643497, 11047125.0, 11047128.171078, 11047151.204041645, 11047160.456273383, 11047165.93096474, 11047205.591460526, 11047231.850891303, 11047244.957936428, 11047273.4375, 11047294.951944858, 11047302.751246793, 11047311.439638898, 11047319.15592202, 11047343.75, 11047389.0625, 11047392.724406399, 11047414.407311857, 11047417.1875, 11047468.422461128, 11047470.006254122, 11047474.45570434, 11047485.523455651, 11047487.5, 11047491.111411355, 11047494.986947881, 11047506.592571268, 11047514.0625, 11047609.375, 11047621.875, 11047629.774846306, 11047631.39326692, 11047637.652339928, 11047647.765632553, 11047665.718808291, 11047671.875, 11047677.544091305, 11047698.556012243, 11047738.848842029, 11047786.892020918, 11047796.597592514, 11047881.015293872, 11047895.3125, 11047907.8125, 11047919.08042764, 11047928.125, 11047943.271877756, 11047951.5625, 11047965.156047024, 11047982.8125, 11047986.940866888, 11048001.5625, 11048001.5625, 11048009.97201288, 11048015.28285441, 11048073.4375, 11048081.544492746, 11048104.720535617, 11048115.972450802, 11048138.721076373, 11048145.872489667, 11048148.8144282, 11048214.364657696, 11048234.93407834, 11048238.29930687, 11048251.387142116, 11048255.986877637, 11048268.917394353, 11048271.165348925, 11048271.794286659, 11048273.271808429, 11048273.4375, 11048278.125, 11048309.0381514, 11048314.664589629, 11048360.9375, 11048442.863242516, 11048475.618532337, 11048484.375, 11048495.848143023, 11048565.601876687, 11048580.977993311, 11048601.11381807, 11048646.127289155, 11048698.4375, 11048710.657853825, 11048719.540518746, 11048808.717912082, 11048824.533617847, 11048870.558333868, 11048874.362458963, 11048890.180799853, 11048926.5625, 11049020.3125, 11049038.98840603, 11049052.376282807, 11049077.042606866, 11049102.530410988, 11049126.373367239, 11049143.218476452, 11049174.77290275, 11049187.49085603, 11049236.649182461, 11049240.856054332, 11049244.45366849, 11049251.988663865, 11049274.033826744, 11049282.311744204, 11049285.9375, 11049289.65776028, 11049290.524334438, 11049307.622863637, 11049309.589547228, 11049345.225791115, 11049420.762166984, 11049428.09897758, 11049470.889171638, 11049495.3125, 11049515.625, 11049537.275255213, 11049565.625, 11049634.299171971, 11049638.423319966, 11049646.875, 11049659.880181296, 11049694.7817351, 11049735.549791934, 11049802.251772625, 11049814.375724226, 11049974.28924328, 11050067.699789375, 11050068.909560245, 11050092.862870358, 11050096.72822025, 11050110.58433624, 11050118.832505371, 11050126.093330165, 11050132.871205356, 11050142.1875, 11050148.078923125, 11050320.647311518, 11050353.125, 11050362.5, 11050404.6875, 11050409.664353425, 11050470.3125, 11050485.782595016, 11050602.222227462, 11050629.6875, 11050632.8125, 11050727.191578574, 11050730.497642335, 11050752.142457535, 11050760.804598715, 11050856.204993803, 11050891.12433544, 11050894.660208132, 11050955.683264095, 11051012.49238803, 11051014.369031273, 11051021.217483925, 11051032.080052122, 11051036.879356034, 11051059.375, 11051077.923711201, 11051110.652580526, 11051116.287287269, 11051162.094432512, 11051182.8125, 11051216.238314228, 11051276.258710196, 11051302.798767114, 11051328.938476559, 11051357.041450102, 11051367.244934458, 11051385.191591404, 11051403.125, 11051407.781078167, 11051412.5, 11051418.908452565, 11051439.642992597, 11051441.190924026, 11051459.259417403, 11051460.9375, 11051485.813635055, 11051500.0, 11051544.186903745, 11051570.215742303, 11051570.3125, 11051582.8125, 11051585.9375, 11051623.894627402, 11051625.323717734, 11051718.992436796, 11051721.117273526, 11051727.323390214, 11051731.026396018, 11051753.021896953, 11051754.6875, 11051788.2578204, 11051861.462200224, 11051863.938777782, 11051878.119820267, 11051920.3125, 11051958.007023107, 11052002.260082442, 11052048.17976284, 11052056.218780037, 11052063.985827459, 11052125.81450868, 11052150.0, 11052151.227776503, 11052156.819121908, 11052165.31353997, 11052172.888687592, 11052178.30200019, 11052199.833168555, 11052201.5625, 11052206.18047383, 11052226.320012284, 11052229.450974582, 11052253.231537411, 11052254.6875, 11052255.921944918, 11052256.726454712, 11052262.5, 11052299.088207927, 11052341.732567336, 11052387.90332647, 11052414.701312007, 11052590.14776995, 11052590.770304441, 11052609.375, 11052629.6875, 11052676.66110423, 11052714.0625, 11052715.625, 11052743.997728333, 11052761.412260761, 11052774.48938281, 11052779.009367667, 11052787.177201757, 11052865.50295097, 11052895.8014804, 11052908.646306382, 11052925.0, 11053004.6875, 11053008.773661155, 11053020.3125, 11053096.875, 11053126.5625, 11053140.33175436, 11053169.921460817, 11053215.909131883, 11053232.8125, 11053257.563705634, 11053264.0625, 11053290.508881826, 11053297.194100972, 11053311.337839788, 11053354.504436158, 11053381.25, 11053404.325920109, 11053439.367908072, ...], [9.042622285697096, 12.830011141107654, 16.399807075506537, 30.408928271775515, 11.719669923230253, 31.114491453439655, 68.43864758586463, 8.903139193343819, 23.425805655081376, 43.219846681397556, 95.80139868437693, 46.801595616460844, 45.4352662554541, 122.63774449925627, 15.805023084792627, 80.72778751005255, 7.369344484622146, 44.50719129514974, 17.06085062069531, 12.080446501625138, 58.196339253256205, 12.940861609305975, 5.683281715312015, 22.29548902765545, 19.922531764750154, 17.145824827552126, 64.18920874033095, 74.95679473365713, 5.431789741256425, 5.774563564116428, 27.017578259832842, 10.400580447044991, 6.110562832316507, 56.599572407387186, 10.459614073515132, 17.53425361682487, 5.879203803036741, 13.614402579873746, 62.86016340622746, 13.927616541934118, 13.330860856819246, 51.611098992822924, 50.66113407034587, 63.85875677434412, 65.13004473037486, 84.7704315660907, 46.11044681241006, 49.64265112418362, 60.96640194596294, 17.672753852040856, 62.50536090632528, 71.40060707119466, 64.13746272642142, 44.360647137754945, 85.86719068652805, 6.841429997256013, 74.16990322185663, 5.475556035276468, 51.24346922804874, 10.131673256439479, 20.121942654308608, 20.713992164267328, 77.9904056790796, 16.450014277968265, 60.29065731188341, 7.281142673370727, 8.531456042028635, 23.354918770331256, 9.908520487614643, 42.85636505798398, 10.189819219913682, 22.83098904218196, 6.262101353882098, 51.6371305721234, 8.615260648632562, 78.90050376271768, 19.272732198124643, 100.80314430161364, 92.17923956737934, 40.757265488201895, 12.18232744083815, 17.87159121443245, 6.613359705118409, 47.56785206299885, 5.318303488647678, 29.786089525905147, 94.9825651807684, 10.960473088061601, 58.815260286251345, 18.89483150684767, 30.1282126215674, 85.9686756409995, 62.33393309726806, 7.641321436836549, 30.46610180368172, 5.216311698195087, 7.768844284564363, 8.963128797519625, 23.40077307172266, 55.39682888625131, 62.14085615888495, 8.68774362714866, 15.20132947356112, 10.248154376782415, 10.34625505589908, 25.662106991534497, 180.3411624284481, 7.337509416670903, 97.54055805939537, 11.17311527161265, 21.76230376555727, 14.478076561591664, 10.897123845935223, 6.10003443881962, 22.125285670751612, 14.010975756888957, 58.61087400595711, 71.09258253186248, 22.367009125721367, 72.8754550202975, 9.838371794622338, 42.08030248659732, 16.983017288133883, 16.827260735480724, 26.48927520076435, 59.68223646156597, 23.214281989090534, 6.7856668585051505, 6.560104458904302, 53.25328384043676, 78.35010186592469, 21.119860585480232, 16.51260356006076, 6.3078236711963305, 10.679964625680487, 121.16060782941975, 8.965631482136914, 12.262291880768368, 5.454179459125526, 10.71863828450196, 5.645895694969837, 45.84471928788563, 60.29002569365786, 21.26469285484558, 31.210376218208964, 20.61494701535485, 36.37429930703195, 59.83329594052708, 25.822047815410556, 17.372405386623857, 81.14765808900559, 22.859175824895097, 19.848159478651745, 6.4645497726201, 25.37785453192426, 38.97864474032353, 5.468682970938514, 10.305624582873316, 54.02871691164677, 5.2864034120552565, 114.06385076989584, 47.31007793726238, 30.91539945008834, 5.278806990979179, 69.7767629420893, 42.61380281110292, 11.553518757333904, 26.98281343463325, 8.00704325462974, 41.20491124212505, 49.122415916140454, 8.755209726692438, 66.99247995860289, 9.819355320033951, 6.9795058359590945, 5.219983398404395, 5.562925813504569, 18.731297978846893, 79.55695837576214, 55.57643436376702, 64.98858742967305, 16.087026907005836, 33.09952973698493, 7.757835653401039, 112.74818976504194, 142.6973412861566, 28.167806068189066, 10.885170063078592, 16.909476843000608, 9.70482915712859, 27.548632333797126, 143.78824658372713, 72.3914457098531, 17.35480391123605, 203.3858440385919, 7.075131204744483, 5.445190809799184, 21.837090262090353, 16.678547482402546, 15.99642979201832, 17.100033686114994, 14.27554306792302, 11.862128675443685, 53.93961254090871, 7.395929975977227, 10.59145619234805, 34.08029549232244, 9.35743887741366, 9.564521003685382, 59.60301886668236, 11.825320598595, 8.572189322642815, 18.046933829551982, 16.80597228585886, 94.41895798105082, 69.92480573316442, 61.99027178876957, 15.40674894896824, 24.567636494709888, 56.156852847821426, 8.647323135749028, 23.664276460532783, 47.68012663079621, 32.18899288579904, 29.40332151212779, 95.25732608863962, 9.863832386550365, 8.385217763686123, 5.900739713614395, 23.565004216731108, 34.95578061591671, 14.89294168011073, 13.163328576321947, 22.96363782728551, 46.454918110740124, 10.135076253632146, 89.00723123232015, 25.497048824694524, 23.98859358045221, 9.879025739119562, 27.834503682931885, 10.742422821899659, 19.44158730439347, 15.077559111808387, 50.88828073930587, 20.691829436827714, 10.03360941182536, 10.265061110282966, 14.9315401061191, 74.61006271482336, 56.65664628184027, 24.28438225213383, 47.11499504093738, 8.46700391020871, 13.17321373033911, 42.915029001181125, 13.877509225807746, 38.434869229888484, 31.693796152834373, 12.535095102634594, 112.0929037301949, 33.656077049271154, 12.95587987061974, 8.965909770965471, 34.65300625385288, 74.1654363208635, 85.63094705305448, 10.679393595583477, 65.22097802746772, 17.072867006353142, 110.18740907454847, 65.69958470875318, 97.89633149244018, 17.123458324633255, 47.22805096998197, 5.695216711453132, 68.97897415206313, 100.92969730931196, 5.704902967140719, 51.63466569238797, 80.05488483656468, 111.58718599894038, 18.19737110340091, 14.039459393054347, 110.06156075613133, 8.284940628914477, 75.17078685613737, 29.6277583909344, 9.256275318106093, 38.90136610986791, 5.930515955574912, 28.610788658368367, 21.500461003089146, 75.3326201720414, 43.54523615912041, 10.756461077575986, 8.755675690695375, 72.83219621881777, 10.327070693537449, 10.55628686910017, 18.057510062165534, 28.97645196222589, 121.4561822580103, 24.274343188371304, 5.154085248839463, 26.85620699725125, 10.541469953730319, 26.96671753180216, 5.204057002810108, 33.49711767490889, 152.74853492966744, 53.25910246115281, 24.56983387217123, 29.241869205882676, 10.05157403133144, 6.352618163807376, 94.86532224820112, 86.4271772729468, 13.593095690124084, 86.17731891091562, 10.615411390014732, 29.698235777562783, 23.027684945782738, 53.35945277073249, 42.07254719579408, 144.21400470663178, 14.270732038590202, 52.63435312545896, 19.478761052818903, 5.441055719235421, 9.51769093483335, 30.453063905103903, 16.677308943107473, 37.74239850237706, 9.739473608585541, 55.440133072527615, 10.654082981883152, 18.2980999620586, 11.769022567496433, 20.04658986024157, 24.982034884770716, 13.005219171096016, 18.45515193152157, 91.65845012044252, 45.757386996443635, 5.709361791322796, 5.453634207284088, 44.93084622482837, 99.8216805596106, 76.11452628079806, 36.318379636280376, 64.28001444775379, 31.147973840830602, 23.123460863369072, 7.396974252576731, 131.4015290582078, 6.8282268701958895, 5.724280694383365, 79.49428500735456, 22.44545800176352, 29.884156521171647, 12.85153097149592, 64.16231461777367, 26.566161602774347, 22.99460695709803, 18.85164856611396, 74.99184795766618, 57.582664291240675, 30.144149961469356, 8.937783817651972, 57.80246557601686, 17.43304042931497, 7.991685504332174, 58.95702687370022, 14.102484147003874, 5.335567269804416, 88.63965565946613, 19.310673356648206, 14.646721494352452, 24.057572281913128, 113.15508722176338, 107.92006757459711, 16.36095483008634, 20.585911749028543, 29.654774475531994, 59.445308596669875, 20.215208494194716, 5.105610963635702, 20.405273600231457, 26.68276573953878, 76.55339195069874, 64.96293319808093, 7.0080246202629235, 34.58207681307447, 57.39508354856876, 35.282180131394966, 88.60400264402844, 18.971153762218965, 9.636474123321408, 6.0679633310954815, 49.03956584750068, 100.73815482347106, 5.656303665284595, 21.852758461276352, 119.21573853085083, 14.82757172938298, 21.55258716202411, 23.436688240781027, 48.7973504044727, 35.16524183232985, 72.97384309653155, 101.19617227398173, 80.97259082535805, 23.065272112139958, 15.962417038777133, 35.26513817500904, 37.88857996937513, 111.87807129292774, 20.180089675424902, 57.01135262121369, 13.14434081669108, 43.179398080575865, 49.122374415106535, 15.21792023066127, 67.29878934982369, 12.773782311320371, 53.063080079241125, 12.440370047897568, 119.65004595975697, 21.775053146072587, 44.87032671318967, 18.08536274798072, 71.87022262849803, 12.850342757437435, 40.572278359067866, 74.65879786129518, 74.66308955588593, 61.91362268643014, 62.15576451543977, 30.105683568722558, 17.668306711668748, 88.89741969488264, 26.980408467083183, 15.58495159357006, 40.442853231060944, 6.465427917644772, 8.788603287361637, 19.905058517452687, 35.45413307478311, 14.525578444640143, 43.03706966075005, 33.11415182062765, 5.794229980109872, 21.527890054396906, 9.768086727577574, 47.87499151117491, 143.1763756905719, 24.326986264220984, 71.49377946039981, 67.88786980249944, 19.172884406695974, 66.24074716276073, 108.21822342304338, 38.65298817414508, 21.2050733894644, 28.472805275526525, 51.933407455231446, 48.422699231361236, 27.116255993118692, 13.82099508341665, 16.62011593041015, 18.054341771237997, 50.42460117737132, 9.940107731716022, 66.14970843912685, 25.552618222450455, 19.297717002187408, 93.3392547390651, 41.45934872365711, 6.499499948178572, 74.55776013401828, 63.76627780198749, 32.50133641588561, 42.92912681437091, 9.858057120058122, 13.483186036431366, 19.03483070661802, 51.6331126873517, 11.632638574548112, 25.788313969888723, 130.45546225223802, 16.094754755870675, 10.013634670486999, 47.28864293137957, 96.18945622042145, 7.047257072815739, 70.03778613454199, 5.806020545859869, 41.22543747096555, 90.91408030047651, 11.792911805705238, 8.562340474768165, 48.74443946231051, 70.35421110934783, 15.208332300763107, 5.739003556459395, 19.773222154204543, 218.19104442314108, 20.063062393944605, 42.40526138912709, 23.217962212580368, 24.092775666608237, 23.766644533525703, 18.417359445006664, 24.491282531555463, 64.32885448079045, 18.724089761970863, 11.12035313523099, 5.482387388368962, 27.83390263653012, 6.853697664224961, 33.981981907039874, 127.01498169570198, 49.11763515828242, 150.5266299230611, 17.58141257781573, 33.25611309435988, 30.699072658104114, 36.280910333764645, 80.98920107826977, 44.540677796798185, 98.95766238115343, 97.17270279434432, 15.668746717029506, 36.00964943831089, 32.541071542150355, 21.872008380761493, 34.07767808073897, 15.821792920598849, 273.1466846440161, 43.14157303530236, 11.062967588260431, 51.75535303908998, 42.02371226976371, 48.611654627538385, 25.29390118986622, 89.42568279291001, 9.459554501438392, 32.91813291407071, 80.75877523969481, 52.88728222623013, 29.705105659373665, 7.743726271530643, 15.436889810670191, 16.344123411114587, 9.273472840485281, 7.815373734095076, 23.40342448730244, 36.75840676119498, 9.778247204551189, 26.773745107719616, 21.846098733125743, 19.757512319992056, 20.652594793385536, 12.689564810646512, 11.366199582459178, 11.142500531274742, 81.89623310598587, 6.052701636752839, 11.371382804609473, 79.85514185738037, 20.344713157384312, 5.854940351952285, 86.33072620485972, 21.207947327481854, 10.505880216074415, 59.10530451373871, 65.69020697745042, 141.4342537847397, 17.42089400142144, 16.09241215107227, 6.145191869913352, 57.14186275269123, 24.269982683335595, 47.10740961521371, 34.141020589902844, 12.519592876189474, 29.62869404095531, 64.60410836331684, 6.987799457296827, 127.95791141789317, 14.636964998471697, 8.552343387676817, 9.093692915178513, 11.75667325294473, 21.411727690690483, 38.07166384506789, 20.369807256683185, 12.274700530002045, 9.553039418650432, 65.81286407462473, 48.584448194921656, 19.14267257970923, 11.023378613185491, 16.61440227102544, 47.08969612969283, 124.9042251569135, 53.266970486591106, 112.58146293864588, 8.803150080493522, 8.902859763152772, 6.529640975405992, 7.686398301190822, 61.90071422913258, 11.0218117566427, 41.844399991937024, 68.70295489611368, 26.416680734025093, 14.561348997004188, 14.021425534025445, 36.53781838640866, 19.712990638958058, 73.45396943666208, 28.338503667996353, 6.093757014729452, 30.616431784580875, 5.351180137080987, 7.035423045436262, 26.41589711903869, 19.09623582386397, 139.66744958253832, 27.977254600920315, 7.9235657717553805, 21.817737942008712, 211.48305538910463, 18.858534491668845, 27.4899686637293, 45.055675659668715, 23.086353810452003, 14.07072488653078, 77.46736458224731, 14.216966698782597, 9.05455870109947, 61.19148947914496, 17.360974771566298, 61.44100065590436, 18.723638390928315, 26.696064056022053, 5.330266272167557, 9.547725885224606, 138.18852579599843, 66.27043020584279, 18.79584211347032, 23.2352285197877, 81.5651963668073, 116.66088311601371, 147.59676894599568, 27.43561532113032, 13.396914770034915, 9.468157060485792, 81.09221166607541, 29.900348816446503, 30.484577472780494, 8.65849353657817, 19.816714654523594, 22.79588334802418, 14.395356478708809, 6.493258479328944, 91.17484692779155, 27.668221214017727, 16.16350192915126, 6.703254260261387, 113.28981396566776, 24.26867904236709, 10.631211469760878, 11.529153501852822, 13.505235231329047, 30.903521687546203, 32.031876714896086, 136.52959645385582, 6.169429640997367, 12.337585030210382, 80.42487153582204, 21.647377399329724, 108.48357711864035, 17.388756089287373, 13.98772854920893, 10.675949103140699, 6.619142514970944, 9.726451783225942, 17.486788248100098, 13.216497825294471, 5.898979509542608, 103.52307709105958, 28.207553263006822, 16.430952894103076, 49.915938910876505, 98.13078159480372, 36.25420251633753, 21.021202883949208, 9.49499817397706, 60.753049116632205, 20.64857230755478, 61.812626741525314, 8.521601943460237, 35.55294455336934, 12.665691447014876, 266.15537460329995, 113.17839331527173, 6.820435171025233, 26.845361873854625, 26.57433951738929, 11.581208101245856, 64.31982123013073, 167.1873862944755, 63.28776237772334, 30.468956958493134, 78.56308371552868, 15.478053559316475, 5.759383936167292, 77.20213548844431, 104.07222828393344, 42.25015840131927, 136.5784929462407, 140.86700634720643, 6.638669369669869, 62.01473977084805, 67.18104233248334, 66.54598747680862, 39.27167221350626, 68.39748818739027, 28.47689572405328, 35.49553162758032, 15.132064208134217, 11.02955050533375, 120.48280925957408, 9.235730981548818, 67.70973242767731, 11.200501677582002, 41.72778007466418, 35.02331794502882, 16.251788723519436, 20.04506509569611, 6.585600628523783, 10.615314846801374, 64.60397931991614, 31.24378353153178, 7.026551094470289, 70.31026332788115, 64.80256800211106, 49.03242159082629, 85.96965787763264, 17.477260381734315, 5.633409081991733, 49.78744401586258, 19.835019894106615, 21.63099066578715, 89.31827793281019, 102.96660965144854, 33.553919880047104, 8.561715789674059, 23.429745307751165, 63.13023925600527, 38.020959814033496, 30.158643393537293, 201.98110409572442, 7.635137836939181, 7.159628408917232, 24.220777140945835, 14.580562650383046, 7.6375226166994326, 62.600347832212734, 8.884189350620959, 30.314424169917565, 24.920069158519716, 20.47958287952057, 31.99266926789398, 51.82044679539671, 109.68727934820319, 64.91591689650508, 16.370667641264376, 61.380522442620475, 108.17405969647209, 75.64263471567477, 8.964039833704664, 36.527486395951044, 81.59925619815922, 51.02860553692039, 51.520705970389606, 17.838688021532807, 76.3108204928134, 52.37931419228621, 12.83736930447462, 22.29761763822993, 16.454802179898337, 134.79678394761387, 17.360990704202514, 8.496495678924596, 30.35148115759548, 41.2091355007762, 19.21606322343936, 5.335948503319687, 78.36385921951046, 6.105681477782469, 12.786333440942908, 6.747499050972941, 90.64230681559474, 90.48790506358603, 150.5917116382768, 23.29119332953591, 179.01583895687403, 43.95274240450329, 9.976583491980392, 167.54218127244565, 38.704948580231665, 75.62048579603007, 27.988177765128174, 24.816285298360988, 22.020770053348826, 47.47242202847083, 80.73516812453767, 6.708932697422264, 119.2899212792038, 73.70034277091932, 21.835141952156427, 5.832396578057952, 7.387852694494108, 26.616667986114667, 88.88791832337841, 54.509070848088705, 27.140161748331813, 12.692847804741962, 7.786632294411253, 127.66494681098182, 67.48187566604354, 35.49009469800606, 8.170027812672869, 27.878529120482295, 33.096440181867806, 21.52500896934869, 18.53147145826572, 9.719765598082967, 6.584818317326312, 24.14610521944337, 122.77120321326703, 116.95867473896604, 10.97392303794558, 112.24362755281659, 15.827587809168183, 99.39088566005546, 17.19452964883248, 5.6126061379651455, 8.617042711991626, 69.69827778094589, 49.74226090349407, 14.14890927273078, 87.10386655566086, 14.660156188982793, 5.374588316680193, 66.42992069920697, 9.798507850630727, 21.191597173623094, 10.571340572491266, 7.873131796947575, 161.1110306151556, 14.929744789946259, 96.17860810443311, 17.458851423834716, 5.312415015494314, 25.92734294567837, 58.44012131688191, 11.259164262496046, 67.02826774187294, 183.78681335144097, 37.46690800238478, 19.992911205968667, 23.74021476593673, 78.6723892808882, 42.77964913879308, 29.836257411548907, 73.67835201616023, 152.05772499648515, 25.79973633350101, 14.47937523234009, 52.37321424316013, 84.97026481121138, 9.92672007722942, 24.87943110354854, 6.88509065552462, 6.466457664159683, 27.664565618585083, 26.130418756581, 64.92574350907259, 20.85224103326859, 11.115829614313231, 23.375769609510748, 54.16212821716408, 28.17942673790484, 13.007344498998187, 30.117645764172345, 58.968311742431666, 23.94530497469357, 95.31170481643443, 8.083151220840566, 53.75151824124571, 17.94016296073927, 5.913379210030527, 86.48958891242181, 51.80303219551863, 12.640328816604638, 7.624143682242991, 19.34689540856784, 97.28369742175795, 71.17955748781779, 33.08467307507188, 5.953324343984015, 16.83830354976631, 5.178754520724088, 13.074451364089356, 44.80927900076496, 14.489515940888003, 121.39846311907621, 14.191610601301822, 6.472029833582564, 40.12596918890798, 53.891030809717456, 38.60043472305963, 5.481735096955124, 50.119238882513265, 7.18667334796523, 6.374527676671779, 96.99983407929943, 59.79736577472997, 39.625110705583836, 99.13691785869955, 5.266861979759732, 9.818314878396452, 9.228935114054762, 28.422960614067936, 62.67492982299507, 26.475756653325234, 12.426616548279915, 5.333166866548596, 27.921625688651282, 11.713165502206603, 12.694565960075673, 81.66460415396806, 37.802806828062955, 81.9510725585405, 38.94193237254346, 106.82610772546545, 99.04401796813421, 124.25921968344701, 46.291250761236455, 27.2209455452638, 114.69350531080582, 73.30513112751063, 21.44360704260551, 29.470537077588826, 13.82299496735321, 134.61781686113216, 72.24023002577513, 80.02173547484338, 81.72700097267045, 16.739421648258638, 55.59877610554334, 48.85834969611127, 111.02523657287051, 36.321347043058374, 78.67849310770477, 7.147615208205729, 137.681847415406, 41.61654761627071, 36.10586613537316, 11.960822087233563, 8.033831336439166, 50.93253017694962, 52.55844321684892, 36.48041503906173, 11.988939211167315, 12.740504552664374, 54.143146535351285, 88.33130667926147, 13.056814926487704, 125.5287804251535, 35.86558737540841, 53.06675880759743, 13.930362969197047, 66.28398395993051, 7.709341032331469, 36.64780915182294, 36.48923332390929, 74.09080279692165, 5.929356646340852, 16.315331496322003, 8.5102723769123, 25.368939623335248, 43.144401744758454, 47.01933539934387, 9.60372164002759, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)