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 = 45913
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);
([4965950.354509162, 5056617.9167053085, 5249078.119651063, 5276245.010199947, 5338127.882979053, 5345678.125, 5398256.088253681, 5436284.773183277, 5442778.133399052, 5500460.577157134, 5589284.375, 5600000.324788133, 5602029.55738744, 5622576.038459793, 5639434.375, 5714090.625, 5762090.119956848, 5787244.1187073765, 5899862.8623241335, 5900038.506978764, 6868360.700502628, 7049993.75, 7223196.047385634, 7266418.509610706, 7274018.75, 7301774.620641888, 7327326.5625, 7330875.0, 7356247.696920852, 7408789.404168862, 7409326.985395541, 7412746.875, 7414044.950166726, 7446689.792682851, 7447612.091461321, 7450131.892874955, 7452449.459165744, 7464235.9375, 7475344.905602687, 7511082.6197641995, 7531816.615363255, 7557775.091846398, 7564700.266043392, 7576650.0, 7605696.164560821, 7607616.694545174, 7620088.490755859, 7621908.281453083, 7640779.604670952, 7641371.875, 7642650.300275863, 7642765.324546137, 7642856.505871981, 7643101.5625, 7643754.6875, 7643876.5625, 7644487.5, 7644611.5898201, 7645419.360883661, 7645464.0625, 7646504.6875, 7646505.280585657, 7646686.389055752, 7646709.334897396, 7647830.929140163, 8453562.655643458, 8453571.393232897, 8645276.386697713, 8645792.027974665, 8645820.058528235, 8697337.5, 8708410.151065757, 8712820.3125, 8762151.5625, 8762659.375, 8762918.026905976, 8762945.3125, 8763293.75, 8763537.308317091, 8763549.147281118, 8763649.163967889, 8767748.4375, 8883508.623390244, 8884765.36828515, 8884807.02597341, 8893740.96173215, 8893822.706692962, 8917965.235786038, 8943554.367044142, 8952058.377150388, 9034768.450795034, 9038648.048974495, 9038823.4375, 9038872.479779255, 9038954.672388233, 9039026.2657562, 9039243.33468298, 9073186.289760238, 9114013.82657073, 9116176.5625, 9133784.375, 9136147.483016985, 9150129.6875, 9150179.6875, 9150332.8125, 9150367.1875, 9150408.090100963, 9150495.406240547, 9152657.8125, 9154131.866369564, 9154967.1875, 9155519.818910245, 9168698.4375, 9169276.137026008, 9170937.898790712, 9171914.198337844, 9179379.725648323, 9182111.17484703, 9182132.8125, 9182700.0, 9183636.356190754, 9183670.360507535, 9184185.52863148, 9186289.974616548, 9186968.75, 9187271.502756253, 9188535.735147715, 9202014.554802276, 9202111.53852831, 9202148.4375, 9202234.375, 9202259.375, 9202298.881708993, 9202308.266949011, 9202382.38617582, 9202483.223721575, 9202549.169225398, 9202632.549322896, 9202644.795104336, 9202719.54384669, 9202765.625, 9202970.228067392, 9203165.268324696, 9203174.61438005, 9203371.875, 9203454.400011301, 9203642.1875, 9203709.249472177, 9204013.276514858, 9204067.29929706, 9204456.929586543, 9204525.577076878, 9204703.748735346, 9204706.192146221, 9206453.681289667, 9219518.216817567, 9234013.508553928, 9287439.776835665, 9288729.76731284, 9290984.385341533, 9291184.283647496, 9292557.401997378, 9296067.252632376, 9321007.041486604, 9367159.375, 9377228.5309845, 9403495.160097755, 9418048.326900337, 9435001.13222629, 9439333.14543276, 9439820.910365678, 9442235.274318084, 9477242.1875, 9479198.4375, 9491917.097648751, 9492167.1875, 9492396.875, 9501800.939889923, 9501806.685523856, 9502416.44906936, 9506605.599325366, 9515429.856757833, 9515432.623820093, 9517900.081908362, 9518049.38677511, 9519507.691631997, 9571184.609121097, 9574807.8125, 9574923.133856326, 9575299.168103855, 9575561.056155333, 9575597.388574578, 9575632.598055996, 9575672.302086335, 9575728.125, 9575733.848686155, 9576014.0625, 9576181.01728047, 9576495.387255298, 9576717.1875, 9577117.757784575, 9578405.907446718, 9593220.027031561, 9593672.848412516, 9653180.301111829, 9657067.1875, 9657694.576727353, 9657696.19005759, 9658399.943015333, 9658864.794253133, 9659839.46532586, 9661488.138251955, 9662031.280930063, 9662678.125, 9663381.548854537, 9664670.26251924, 9665960.074385947, 9667021.043119853, 9668607.64025732, 9670215.625, 9673874.85317942, 9675894.723275444, 9682449.649285534, 9683912.5, 9688846.875, 9689367.578576237, 9689908.833010951, 9690345.369068475, 9702659.332844151, 9702910.9375, 9708593.304747004, 9739771.225099646, 9751576.099723002, 9765316.910481688, 9768387.5, 9768741.373982526, 9768764.092858287, 9768857.8125, 9793080.313919885, 9794145.767306995, 9794201.184222221, 9794508.302789647, 9794532.8125, 9794578.151186492, 9794617.432258265, 9794792.1875, 9794800.75545866, 9794900.046420023, 9795096.875, 9795162.5, 9795432.8125, 9795479.6875, 9796243.75, 9796318.75, 9796470.3125, 9796549.38403658, 9796679.415372714, 9796748.4375, 9796873.331682296, 9796928.48617646, 9797051.460013364, 9797093.742375318, 9797095.10339074, 9797132.45262275, 9797150.48688869, 9797242.877314767, 9797331.830805426, 9797348.51024614, 9797431.990000643, 9797612.73868506, 9797626.329488125, 9797640.387260213, 9797664.0916289, 9797673.232060617, 9797693.065590454, 9797872.27535025, 9797971.875, 9797987.044721538, 9798334.123923397, 9802106.46785987, 9802271.875, 9803683.428729234, 9809145.902791584, 9811693.75, 9813610.969483575, 9813795.52651293, 9826596.393737538, 9828664.561775394, 9836855.026749365, 9839582.26942711, 9839612.03459167, 9839740.444277626, 9840228.216708928, 9840829.485862024, 9843448.4375, 9854705.557133155, 9884707.54741543, 9884714.698399184, 9886324.660811398, 9895801.48843335, 9900823.14320461, 9902875.0, 9905181.25, 9905281.377058255, 9905788.706444768, 9905906.25, 9906388.505827596, 9906682.8125, 9914971.375528665, 9919508.797745712, 9919511.845393226, 9920926.996419486, 9930648.28150745, 9930970.79616495, 9931278.979646647, 9933340.625, 9933774.638451185, 9934772.000677561, 9934837.27861365, 9940819.35577718, 9940835.637216344, 9941692.1875, 9942385.810260871, 9944334.375, 9945021.875, 9945153.045927798, 9945628.125, 9946778.859226355, 9947820.613394732, 9948599.639094561, 9951854.252088571, 9953836.602484709, 9965315.339474063, 9966373.985612024, 9977624.643220112, 9984485.364787715, 9991310.42862, 9995703.182775384, 9998106.262068864, 9998538.282207612, 10003956.25, 10010674.510655828, 10024655.727244638, 10025048.19434076, 10025476.5625, 10025534.519696014, 10026701.5625, 10027413.44980658, 10027690.625, 10027771.473162264, 10027781.25, 10028059.345252305, 10028392.1875, 10028747.461939286, 10028817.1875, 10029403.730680555, 10030731.25, 10033774.899676336, 10039288.957120745, 10042927.558115672, 10043307.456387302, 10046165.366836717, 10049446.442661079, 10050126.840906562, 10052355.904776435, 10053631.045263221, 10053743.448048815, 10055098.862019444, 10061178.133679919, 10061711.766963478, 10062473.379583428, 10063360.9375, 10063373.268042838, 10063955.026540898, 10068617.1875, 10068903.33275713, 10088505.716832807, 10091815.212539423, 10092067.04890149, 10093167.317694066, 10094125.199267544, 10094468.75, 10094612.863267686, 10094751.5625, 10094898.4375, 10094954.108176133, 10095010.723573094, 10095146.645492703, 10095233.632491132, 10095560.67525655, 10095995.040612005, 10096805.174960855, 10096833.483582012, 10097223.16767893, 10097771.875, 10103297.238187985, 10104515.63810534, 10107082.487755798, 10132246.021829193, 10133807.73695962, 10134387.35460398, 10135621.875, 10141124.120660663, 10152351.84927725, 10160076.397243872, 10160891.765797628, 10162894.552126167, 10164762.5, 10165006.25, 10165550.0, 10166543.217950694, 10166867.966442466, 10166881.987409307, 10169231.06376157, 10169836.814689131, 10177269.0105846, 10180471.875, 10180553.491888732, 10181016.889148844, 10181244.722209381, 10185923.745650472, 10186993.75, 10190216.573554473, 10195374.885557834, 10196091.662925348, 10196093.75, 10197740.515862139, 10212982.8125, 10214721.875, 10215138.156173227, 10215465.171669688, 10217302.00317031, 10218735.871359956, 10219391.129209869, 10219702.973145178, 10219766.58892543, 10220356.25, 10220623.475166054, 10220628.125, 10221324.821751999, 10221723.718881264, 10221737.313743168, 10221877.579648688, 10222267.672363859, 10222317.291633822, 10222390.90827451, 10222633.493284388, 10222886.441386094, 10222931.205391152, 10222985.957714593, 10223087.5, 10223145.795280477, 10223231.200274086, 10225671.524367983, 10225799.027374564, 10225815.21895872, 10225851.153982814, 10226470.3125, 10229509.789313708, 10229881.396956636, 10230048.4375, 10230095.997606976, 10231127.906387689, 10231456.25, 10231591.94175845, 10231600.033602355, 10231870.126870444, 10231912.5, 10231927.06649253, 10231947.356842905, 10232401.602359299, 10232509.534667509, 10232759.81308525, 10232768.959433777, 10232889.294818517, 10232920.489050776, 10232950.09010665, 10233010.518647686, 10233100.0, 10233106.479772784, 10233138.101074286, 10233370.3125, 10233817.1875, 10234234.130784255, 10234717.039408531, 10239600.357022068, 10239661.373525312, 10249634.239230191, 10286893.75, 10291023.4375, 10304768.75, 10305049.770241655, 10305079.6875, 10305147.114699181, 10305153.269040665, 10305384.302182322, 10305731.00128862, 10305860.61362666, 10305942.78653226, 10305952.40941911, 10306107.061695654, 10306378.876735367, 10306490.625, 10306566.485092528, 10306723.4375, 10307270.3125, 10307430.733871039, 10307608.041685492, 10308105.715653796, 10308144.870365988, 10308218.137979185, 10309281.022902515, 10309287.5, 10309795.3125, 10310850.057871979, 10311445.085058955, 10311655.059602939, 10311998.043037392, 10312540.625, 10312949.06887191, 10313779.6875, 10313922.209430173, 10315532.006581822, 10315649.439012142, 10316772.393197807, 10317315.625, 10318013.391766798, 10318559.270329835, 10318790.549184192, 10318833.099666724, 10318932.884203767, 10318945.948751578, 10318985.9375, 10319073.4375, 10319254.852441292, 10319272.297633, 10319360.302136775, 10319971.875, 10321631.943966685, 10321911.80346161, 10324856.0840871, 10329971.596040219, 10337484.907718258, 10337841.837134486, 10337897.0411474, 10341111.495513178, 10341348.809859984, 10342236.689257238, 10342323.400331698, 10342854.505824795, 10342862.472686637, 10343156.25, 10343175.769777656, 10343220.427771632, 10343395.00420348, 10343596.209337287, 10344082.962676803, 10344121.875, 10344489.569700882, 10344553.125, 10344570.3125, 10344866.761992386, 10345557.981927633, 10346042.1875, 10346220.194419751, 10346702.270681355, 10348089.006978866, 10349610.253744664, 10354630.963182615, 10357152.37675122, 10397407.8125, 10403173.448341487, 10405683.2047328, 10406532.8125, 10417126.618975915, 10418140.002151432, 10421284.423832282, 10433881.489869699, 10435703.661916425, 10437201.5625, 10439530.958039451, 10446293.75, 10446498.615077754, 10446837.5, 10447966.606285684, 10448706.11818992, 10448840.120354507, 10449618.450333992, 10451617.1875, 10452172.970232533, 10452179.108411297, 10452187.217631979, 10452240.726990147, 10454688.077136092, 10457842.852556081, 10458619.165773552, 10462954.6875, 10463717.39401376, 10465069.789550517, 10465283.801708933, 10465343.635038877, 10465912.5, 10466353.414269602, 10471576.135451647, 10471623.464135993, 10471718.517879283, 10478084.726943316, 10480791.970165363, 10485947.316456255, 10486589.344458202, 10486712.5, 10487135.21524204, 10490606.006362818, 10495406.25, 10496109.700324336, 10496364.240812, 10499135.9375, 10499521.16202063, 10499541.049004188, 10499656.705897564, 10500035.9375, 10500691.27561661, 10501273.72913951, 10501430.946238797, 10505906.656106632, 10505928.169089224, 10507360.012669358, 10511816.099603, 10515979.688467508, 10518556.707640737, 10519288.817803081, 10523964.0625, 10526232.559591835, 10526808.588093163, 10529402.910911692, 10530250.0, 10533905.644457567, 10533991.570965586, 10534207.543440742, 10540514.560681984, 10540593.062465202, 10540974.23553046, 10541297.012129461, 10541838.000780283, 10541890.6220221, 10541895.677813921, 10541927.47550067, 10542130.561591562, 10542201.270353552, 10542326.307219805, 10542438.48893156, 10542634.142483866, 10542768.75, 10542887.133402856, 10542924.339611167, 10543152.507729974, 10543346.170515535, 10543353.270562034, 10543371.831853753, 10543403.125, 10543567.140720895, 10543666.090472547, 10543924.743729297, 10544810.089959664, 10545039.0625, 10545288.450727483, 10545352.499172214, 10545460.495928338, 10545684.375, 10546651.898096714, 10547718.580426106, 10552168.301119503, 10552542.321175015, 10553113.468513088, 10553741.130943652, 10553741.593867414, 10555575.367866337, 10557045.292659706, 10557218.75, 10561840.625, 10567836.544450019, 10572379.696779646, 10574059.324065007, 10574104.797648467, 10579668.519850666, 10579754.492233336, 10579758.26119356, 10582119.027218992, 10582400.0, 10584984.375, 10591867.391771698, 10591871.052539337, 10592590.557094347, 10595948.215426134, 10596420.3125, 10596507.8125, 10596754.6875, 10600089.012829047, 10601195.3125, 10605716.698822202, 10622859.375, 10626817.398921238, 10627590.982278485, 10627860.666985165, 10628167.41604092, 10628380.344362428, 10637513.749591062, 10638062.5, 10638672.70323369, 10656224.997889582, 10657063.881160649, 10658579.400797112, 10658588.733294317, 10670126.250050997, 10670148.131749267, 10670244.197322587, 10670290.499750718, 10670365.287575709, 10670848.4375, 10703974.932679327, 10705000.442137463, 10706578.556014935, 10707359.031228637, 10720924.669871867, 10733801.705787238, 10741201.513389302, 10746529.28238821, 10751617.55612509, 10751745.072747858, 10752229.6875, 10752710.948699024, 10753573.138648381, 10754168.933784401, 10754183.58866288, 10756052.693524515, 10756633.470621444, 10756856.193280786, 10758182.514002856, 10759668.90958555, 10760684.375, 10760687.668776516, 10762956.25, 10763228.994047895, 10764150.91302689, 10764196.875, 10767725.367222063, 10768600.0, 10772142.1875, 10772215.487865282, 10772246.875, 10780357.8125, 10780475.0, 10781098.396859804, 10789211.581489269, 10796153.87579631, 10796725.872523842, 10797313.660890406, 10798607.278657632, 10800668.364208482, 10802108.348166894, 10802992.109902514, 10802996.001727559, 10807140.098686896, 10817756.116538191, 10823508.374060784, 10851417.799383512, 10853193.524274606, 10853549.087712593, 10854307.620624542, 10862673.4375, 10862940.74465383, 10864445.3125, 10864647.552820418, 10865579.6875, 10865590.189633576, 10865642.1875, 10865870.222238103, 10865876.5625, 10866135.526808485, 10866240.044276996, 10866243.93757009, 10866250.0, 10866305.914893517, 10866349.581993163, 10866408.156303229, 10866494.711114742, 10866517.979828296, 10866540.552532813, 10866582.911360893, 10866620.3125, 10866627.469089145, 10866645.3125, 10866649.493306162, 10866668.821622109, 10866671.368515227, 10866671.631810026, 10866761.036646405, 10866768.617844615, 10866796.687002111, 10866814.471023194, 10866815.789062187, 10866829.705108998, 10866861.743087253, 10866893.817354143, 10866902.654126698, 10867132.8125, 10867165.055260492, 10867189.223491259, 10867296.875, 10867353.368042326, 10867501.5625, 10867548.378756722, 10867603.024912985, 10867871.453781813, 10867884.375, 10868101.301532026, 10868129.496246515, 10868207.294305295, 10868305.980499344, 10868567.1875, 10868703.125, 10869370.3125, 10869924.515412517, 10869971.119971419, 10871825.0, 10872701.87663523, 10872706.25, 10872864.0625, 10872933.34500224, 10872962.45022556, 10873204.6875, 10873346.938178996, 10873426.5625, 10873525.902657604, 10873875.80125337, 10874190.625, 10874235.566734822, 10874898.4375, 10874907.392564096, 10875741.411443276, 10875741.501932746, 10876430.10108747, 10877783.786749946, 10879579.694722207, 10885855.698633885, 10886368.043129055, 11051582.598140635, 11056314.0625, 11059003.125, 11059013.083162248, 11062185.917526564, 11062210.9375, 11064657.713072049, 11959989.0625, 14766656.25, 14860178.125, 15082892.1875, 15103320.576839035, 15110960.9375, 15110963.910482539, 15146675.972105958, 15188526.5625, 15399418.426670702, 15400581.25, 15515427.627098251, 15631848.4375, 15669413.72515335, 15672518.75, 15759175.060097147, 15842706.620509394, 15925533.960933566, 15948559.085886624, 15951791.995750226, 16009537.5, 16118568.75, 16154191.637419324, 16167833.748043485, 16195170.3125, 16197160.505697936, 16198300.0, 16205327.786535207, 16211660.142912365, 16239810.572016686, 16244309.075713743, 16244768.951753363, 16251342.772984711, 16257569.166513957, 16258907.851458324, 16287967.822897632, 16376706.93860172, 16388767.912700359, 16392024.004626874, 16392992.29689759, 16403970.3125, 16413165.489899324, 16413272.909780141, 16413548.28116568, 16413778.125, 16414834.561490148, 16416500.554493634, 16443539.526705425, 16443946.875, 16444218.31109978, 16444800.0, 16444918.363463314, 16444998.4375, 16445304.6875, 16445313.254302977, 16445373.46459561, 16445910.528320042, 16445968.02273663, 16446145.035092816, 16446334.447328676, 16446488.459390862, 16446512.5, 16446573.158184964, 16446599.670260578, 16446646.875, 16446803.125, 16447071.605834626, 16447555.013635281, 16449067.1875, 16449348.580166586, 16450564.46038286, 16451728.20313214, 16452509.272988115, 16453440.625, 16460767.452335251, 16462651.5625, 16466418.286503637, 16716059.55536942, 16770209.503611296, 16770457.394519981, 16781881.508796066, 16884349.94030965, 16948837.661948476, 16975970.3125, 16988235.096702956, 16994301.46535113, 16995168.127174634, 16996778.429856278, 17226233.49769338, 17226336.232279345, 17226430.113791153, 17226551.050638083, 17252147.388704974, 17279992.109761164, 17290812.431188468, 17304132.8125, 17315021.141593814, 17315026.00832645, 17321724.873208977, 17325557.8125, 17325933.69278105, 17377372.09416754, 17377556.25, 17379107.8125, 17379398.4375, 17379615.078075178, 17379877.443766914, 17380359.375, 17380421.952508584, 17380482.582532864, 17380900.0, 17381113.566815954, 17381303.038194593, 17381370.159889307, 17381504.22015589, 17381649.161815003, 17381852.052039344, 17381882.52934158, 17382114.664663482, 17382429.560908858, 17382829.6875, 17383329.88836712, 17384200.75991317, 17384281.25, 17384489.09689824, 17384790.570317864, 17385003.125, 17385115.625, 17385749.533301495, 17387362.020649485, 17404355.591786694, 17409666.972219188, 17425546.875, 17452882.03290115, 17505778.937186442, 17520210.235365633, 17574253.1157219, 17597814.39353459, 17600884.151338134, 17661696.994369656, 17663548.207668476, 17686898.4375, 17689646.052886605, 17690723.022694692, 17691235.522287562, 17692288.343967568, 17692490.625, ...], [5.970884576247523, 12.497374148098572, 42.475059669532, 9.088235127539532, 86.05962813889757, 32.60201247211043, 5.8021085771033665, 22.167312611908795, 107.53965588726268, 23.009379004191075, 76.80231935107118, 11.676386390650485, 54.16339549208011, 10.396758635379621, 171.56688088547506, 30.447830401193052, 18.490411832058527, 17.48248142154016, 7.220068140698886, 10.357825710745825, 24.590315279884113, 39.2356814815845, 84.43135834044989, 78.93289019249067, 40.18449086042949, 22.787353487950924, 47.953974774192694, 57.76101070012852, 19.387701028960215, 26.09704226260496, 37.063295335448245, 62.32290061798837, 6.222480402207677, 51.62989604121551, 9.008305257783913, 23.581565811475777, 63.72392492972083, 102.82117558190643, 6.42514372485105, 45.629390784786935, 50.64626510015879, 72.71303625973428, 43.21493224267358, 54.175307160195345, 12.784426832452072, 5.778384504772338, 16.26349123624869, 9.762121754714471, 26.987255148858047, 47.37055512969361, 47.21342886981634, 13.907930498025145, 9.557552809707612, 52.86177107904016, 65.78503886677385, 31.701429987709226, 95.11643674106607, 52.62975968839747, 24.61476013537682, 63.625177453634215, 71.23958175056833, 27.52638615718959, 11.915378851133939, 7.110949653659945, 7.4911691974029635, 46.20239276105474, 6.208190749148125, 86.93698999815777, 14.366444412104554, 57.20750901109315, 110.32286116497195, 7.910311312598327, 74.29226525022773, 56.56980403746132, 72.38835473180265, 19.523150197207695, 30.622159862388713, 64.5996345311771, 75.01677794650745, 7.321428541350663, 10.031805702287686, 48.27855976171725, 26.55498123441545, 14.045685385055755, 26.80371480661126, 28.264230211240182, 5.02943986710083, 59.27677130669163, 10.661219389234187, 6.341274829546089, 62.05649741660248, 22.68218887896249, 55.41578370384215, 25.055600699963037, 87.30698769071293, 131.1237951597758, 27.846396944687484, 9.648146669595592, 9.139572986924337, 35.173587621345824, 47.48836078345135, 39.378962270238645, 74.97372418289962, 92.99045163579669, 61.33510192506893, 61.18467223994704, 9.577704713442644, 7.146313163110197, 61.033290044440776, 17.959352218273203, 55.53744211471714, 83.71309618742265, 50.12205158357709, 10.52197965264427, 5.974903680361269, 11.346882365852549, 26.44418326714012, 11.520132439250158, 54.76841829984055, 46.770586124487906, 5.637634795461941, 17.858273395995177, 47.424450715064765, 60.030092643167436, 30.83620623940537, 22.86980119720491, 45.05492937428289, 11.995537613938701, 84.36606740578105, 32.63152671942381, 54.36850429951201, 74.07465715723414, 58.98443623605285, 26.86861880653493, 54.00279534805494, 49.21383232463353, 12.50306624785901, 7.510745954635262, 5.190437643852588, 7.347031944846132, 53.03161539165936, 14.62916994967072, 13.736501099357444, 111.97263826201021, 52.4941026530138, 76.0090230368073, 61.34952167350217, 14.483709896672606, 60.181071362993066, 11.307067894029863, 26.20517527438045, 9.87218149784192, 18.005836875394696, 11.038465903227044, 17.591682156706238, 21.16835326195744, 7.41446223669958, 114.30822165306587, 25.523266605458804, 9.340162858439339, 26.840016767154616, 5.681121277101593, 11.231062254875612, 60.87900345124655, 46.92005118498645, 7.75698597632525, 25.938390645347987, 5.338146066558287, 6.214325033716865, 16.382975451007994, 27.462128397690176, 31.808028579248003, 99.47925508287247, 60.34204489263391, 26.865811138133527, 32.70715181747106, 32.04710675435784, 106.55527841069811, 55.83996397709288, 8.776395161377211, 15.658073999136391, 15.628427642338371, 10.845062051062445, 57.94171791827503, 13.026289735887522, 32.919752274089596, 15.91585490273379, 52.60655514267866, 5.518523023665548, 53.11400883715681, 90.18268581504634, 18.698801818926327, 13.624909847173075, 14.655195044128433, 75.73093095871143, 6.662792191879936, 41.71282678498318, 56.0970199176526, 67.95385332933503, 77.66991204739587, 12.153774097357857, 13.778981595796788, 76.34345437032707, 20.648171267189294, 7.841346451269423, 32.36625628141665, 5.574596193079004, 54.60163451525515, 6.478195334290157, 60.64905649817305, 99.18812411052643, 49.183457620717306, 9.357693942624106, 74.07293972773785, 16.564155061141783, 8.260322336127603, 22.621237836914553, 10.98307941139505, 10.868746305747887, 58.213038612400425, 69.36610873954169, 22.895898589630214, 9.051473413628631, 55.27206633076395, 84.5749880471175, 105.46050709999483, 21.084219463776577, 25.743923420175324, 27.71725308075376, 150.93669293685232, 70.85240583794035, 5.884738393757534, 21.653225813940814, 75.71896427455899, 62.519285417782385, 102.29545356275362, 43.32798608403987, 31.2533002131612, 9.923905631179652, 17.01374819474528, 22.79982609189909, 5.851170581555277, 30.706772726570613, 15.042268359349372, 9.547305500265573, 43.302716616511184, 48.508737271849085, 44.97569489541206, 71.67354689125494, 66.21708809507837, 69.50376512237307, 28.801527567732848, 59.83744824989137, 72.61389471912823, 146.73455209756918, 10.284461304104884, 24.113428187355133, 85.877582100342, 20.37791533191274, 11.743432182484975, 79.41319286389205, 5.706272924185865, 19.238857477802803, 23.014882671132494, 11.98479017596319, 5.145523681809832, 17.73928733295867, 11.243349904898999, 12.521813430050962, 11.522473313647765, 64.28772120212118, 24.579999271382633, 6.091133613187272, 7.530586205896706, 62.84033074146751, 16.723924700541726, 55.88182049463368, 13.450219628822934, 103.32253417628766, 9.52266976087474, 33.75027149410864, 12.250100497725445, 83.50693610154777, 52.071060288072374, 11.178069920725287, 5.543558205707961, 29.7458083745906, 31.161716350019248, 28.212173201492607, 18.564623548856158, 117.35038153469543, 62.98616347979556, 15.302975030229053, 7.0694370898112515, 61.274319328831204, 6.383699662132631, 10.73718841122801, 26.73396903782165, 6.697628190585972, 77.10641632933813, 13.404458308876839, 78.76149624236811, 62.203593934300486, 147.32592867006278, 38.73984598553858, 139.92762077336124, 27.43098405599588, 119.69698563275693, 8.941996464966119, 6.977549470257569, 20.07802214008609, 28.53154152640633, 14.378503482704188, 17.17289925913006, 6.1817251772788815, 93.7391889515018, 13.721929651225947, 7.649334508228947, 53.367281578303334, 26.527133394236103, 13.90845898709522, 74.36945734298172, 10.934482410612784, 79.57655776569197, 38.44427689408808, 27.052766312386627, 31.692244735454977, 12.508722988851439, 43.423709893062295, 28.464266024348674, 51.41732158419695, 131.0892356412111, 8.14114537838714, 17.54316643050578, 6.051766781887097, 93.547532788747, 21.404972517880456, 5.204896361932935, 16.282655369664297, 46.762998631953565, 75.23538142730433, 45.836765242601984, 70.25336620254296, 24.505011985195985, 62.265417291234456, 29.906120819646432, 30.86087007164846, 26.499521450463718, 51.79628487198164, 64.93938509012486, 40.53687801154722, 14.829324563620286, 45.45051370680202, 12.188419788670405, 63.9142719359302, 7.290320419398418, 52.486830885778495, 10.974433557620054, 14.554510181995571, 32.85119622115712, 5.062477304313213, 47.48820282093469, 44.40519732074981, 25.88627966248813, 23.18976494809812, 107.54154763936565, 9.088502107928187, 9.71815101082228, 17.79725620463012, 26.91869946725244, 52.594801743425705, 40.38101697746872, 25.57492511216358, 16.41309091303787, 110.81944822540385, 7.680148955664318, 18.26799527576179, 9.005406005058617, 14.438303002916927, 8.356647388030083, 5.1347838696620824, 29.454208788021297, 28.223947272792273, 41.931656653572176, 47.2062646908798, 10.328719228421223, 9.15683753518779, 14.448033255001784, 32.3933351935414, 14.028054681264328, 79.43555982955495, 17.194131464444492, 16.570554050897652, 5.916247341495263, 29.421713828057616, 31.093650286813837, 14.99169723439587, 23.43973209222492, 7.881654525364308, 33.87123887024945, 64.47119246583117, 32.41638035437904, 27.697936482302822, 16.160176881567125, 66.53484087590486, 5.783423170094639, 121.65062568319723, 61.62759744119564, 35.92559723911289, 48.148555354012196, 79.37182876491507, 10.090081747515002, 12.515933626803358, 25.321454492417242, 22.15500946901745, 53.52521977396785, 34.371586964577574, 5.412687541257652, 10.69132960656063, 13.085381411074874, 5.631322302492234, 37.847623877374254, 15.535469971142332, 67.70925034845233, 6.203121611378003, 58.95243663318525, 7.564235641281006, 52.76074714779653, 46.850556437392335, 12.693219219458074, 106.21057280711227, 6.324526959844623, 81.17809201205397, 66.20855348600084, 13.193434615071798, 20.56307078607526, 127.78963203423314, 17.180066493583915, 77.34201973525954, 53.85283312346687, 11.59797940481249, 5.453828575965568, 5.7747015841935445, 7.255020246064077, 49.51000150768262, 16.143604680500477, 8.682687915780328, 7.796252320662537, 14.774164364902882, 5.462634841088423, 44.07302518212782, 11.976654371135098, 159.1354380608363, 7.481159090477957, 17.794727469374827, 22.197732934531135, 18.471216292769615, 30.93671741385687, 11.843567973823358, 11.36545067028086, 84.57985368756516, 6.001375227266327, 5.6929847736017205, 49.190896875440835, 14.080869947844946, 94.76169658751724, 25.330545337194163, 69.27212293923537, 9.797306161596273, 111.02406135787707, 11.190586295607831, 25.556979079304302, 24.032515011803675, 6.520430734918307, 24.290715153096194, 64.78772169836641, 20.870299487933444, 49.982273208640066, 33.797149970379664, 11.506910061668764, 7.836134486842653, 120.62385426162298, 66.54002945131953, 84.31583040289013, 25.90663980191225, 35.19398606234226, 77.9703910430859, 41.01252206596638, 82.18134531545152, 100.97366262297938, 84.94185361288946, 24.691456907310556, 54.33575357218158, 78.32068498256892, 11.360571511140204, 89.39702942058666, 24.42876269383172, 8.122424889770288, 17.85117632506381, 6.628587694162591, 12.68791139718569, 40.503452526610374, 59.86806295395972, 8.800593126867938, 49.735554219040004, 41.48743116056273, 6.409116823915023, 15.893470505933735, 21.900579301564385, 22.090442123342786, 53.891774974742276, 8.170027695241503, 107.93708515104699, 139.6291127361329, 25.053221943153495, 45.31622322505547, 52.5879125871201, 22.614718100988227, 64.5706358297885, 7.848756096144925, 39.699956946723155, 16.39034437127851, 23.796654649204008, 6.402605967097534, 17.368679292932715, 30.088731449598296, 72.22482341623206, 10.967949239694438, 33.58832292692346, 9.586625595234901, 15.222040063377104, 84.20482219144765, 122.5920406894284, 31.811460317991457, 15.609805393994728, 11.521193273227155, 40.82234179327178, 34.562526134530316, 178.86338410518505, 7.949653112701995, 33.203032350225314, 151.49881508886168, 17.71767103624645, 13.755434267223313, 15.615002551988342, 8.605487139666538, 9.667435698921821, 18.867636400001945, 27.810020567337723, 25.389778332291833, 14.838415697504603, 32.37381089130191, 44.49547868995823, 78.70304789322873, 29.37304685427688, 19.98572053084852, 13.13581811123574, 73.57204079850337, 38.448998544872836, 60.15123296735102, 33.471698984287855, 121.47562492297072, 15.629161447433205, 47.78531511831674, 37.858037387228315, 18.562355935710837, 7.583279318528285, 43.16969906211574, 13.95045700342497, 12.693956466478353, 46.167624499956645, 14.98299373448665, 19.463650817179005, 54.457986694066136, 9.379617689837554, 29.61720359111269, 15.130960178692236, 5.627453581258207, 5.485293360972009, 33.166228939244064, 23.853980591326977, 39.143606926439084, 5.250142660058454, 64.23668823894431, 10.326419593421432, 38.288249883950854, 67.31221454577043, 189.89379017709632, 111.26866002263966, 109.7822326389826, 37.714698572890086, 85.68115310355958, 15.345039788038683, 138.06142878247684, 33.82710221208467, 35.846173932763776, 32.572933670196115, 11.466609247785902, 47.33501604090582, 13.129703126781473, 26.442007016557433, 66.65971257605918, 27.365682655391648, 10.519938892593226, 6.270569508289377, 5.037653843131578, 16.477202339554356, 24.867412194721148, 80.58087316856383, 29.990761490198224, 38.432690178949784, 12.755937263053417, 65.38115666378866, 52.118170666499594, 26.45300340822467, 15.66768932175127, 35.3716898501529, 5.763044440923505, 16.848168767072586, 5.215194511196672, 42.035255906560124, 58.58564791127793, 25.71315301876079, 72.7283915081199, 7.757034405923899, 6.092696139708069, 28.99306303017883, 5.640851205170663, 6.763699739203982, 5.481757919194548, 24.483836668112282, 79.66856950538613, 104.42854995921336, 73.646497823053, 18.54969976120247, 57.4330994764786, 6.19360835226708, 89.32632503483552, 8.149241041657113, 60.222720013602284, 8.810660699611278, 19.206492053101055, 20.622530090960254, 12.012429573305521, 15.684217650428181, 115.76064404541935, 12.934438717426815, 65.93792525190827, 117.91757779091671, 50.70569840343512, 64.7522030380648, 6.451249712412594, 33.668549319418695, 6.431119493729238, 5.186917474884511, 13.015949886661666, 84.96067377297442, 5.952182986072594, 68.4808304177423, 73.71869869612337, 45.723019812431204, 8.549084672358145, 14.047104559481626, 30.450395727119776, 96.58508575493381, 52.16055069837839, 20.323471913720425, 12.576109964749637, 164.95252847080118, 13.879986897082787, 32.47523585268135, 96.27686308207956, 7.6523119305124325, 36.832951829296505, 8.573566918973473, 13.076720637256727, 11.755891848988671, 28.13811990476768, 77.96411290913427, 40.77772577569352, 25.525817883085935, 73.85150789852742, 95.75374067408057, 8.345697441977123, 9.144096328622124, 25.187575688353775, 11.909811215602117, 7.196282062551187, 38.77217886653021, 29.53466368407965, 27.49044538489825, 18.784263525790525, 39.62097875558319, 9.15043042710807, 45.521921086381134, 32.325949038452016, 46.80187712475867, 28.827388303878028, 55.70843634610438, 34.431932728674, 78.1586819810623, 73.5037311332694, 8.485002685755392, 7.508242149070993, 15.89055356562652, 91.07076455201315, 23.587236580124923, 81.54321537150818, 23.367869285268846, 14.93347159087675, 12.720253134212987, 23.922092966460713, 26.052025638270703, 47.58131890222816, 7.496273649201901, 23.43015120643441, 36.72593626806605, 12.564094934224, 52.769210455613354, 18.971862364138666, 35.40940951868797, 9.724534303733424, 9.056710429667513, 46.383796273264586, 16.58121439627269, 71.79344518833076, 5.904885668000271, 11.75730764871133, 5.333772830776313, 88.58861407894906, 36.02018732230616, 6.441242322918561, 5.624293093110159, 26.118190877005333, 89.15754882834676, 25.117134204597782, 87.98643368775659, 10.691129805444547, 8.372811118720294, 39.35488938262261, 15.626348116625932, 64.0163292692931, 123.347830430926, 34.81550282278609, 90.88408200540427, 5.551172430614287, 61.98977216332064, 32.16746522927935, 14.44336792316608, 82.6696511076598, 47.21901218487348, 47.98492497327529, 9.297274386624956, 5.863217774790192, 28.080325261149845, 12.834212209010959, 35.99379015848591, 23.952669436431627, 9.0251922977151, 19.80900668515877, 83.0879233975869, 18.433537671469736, 19.844054207599704, 14.456099082856493, 7.819809317071569, 7.8406270523092445, 32.00766208069405, 88.608640980893, 5.453590858860918, 83.90742128798368, 8.350882318275252, 142.4311292110949, 25.35019939769502, 201.81816354661893, 6.42094279151863, 84.23404695671711, 205.0656513388242, 34.40906508235156, 22.43279573050005, 5.322408585469107, 5.405693399685812, 40.8163665110414, 23.312429201115428, 63.73440354413732, 46.59120256110492, 63.00737952782447, 7.917364812015856, 27.16886673022526, 63.587463926667894, 42.75728647091622, 12.918405560547056, 85.90341565492533, 32.79402087712632, 37.837061205373416, 38.98224827459249, 14.089087836491275, 9.416668097511096, 26.16088275489349, 25.295228951156403, 16.249405843062494, 11.394209669227887, 5.707879608256354, 19.263336828995662, 15.694489716693209, 27.38154403929834, 47.590595421606515, 48.80753201968614, 15.592818061832503, 154.42455219333993, 18.351973153278585, 42.724151608232894, 27.413935767059076, 26.691105272227883, 8.075720114824756, 49.60973777518879, 24.262463245463184, 33.652440176192115, 6.408816099071627, 24.148306445438937, 47.77432773405895, 118.88478947966908, 60.73643101677179, 42.919843778283656, 12.677938325218243, 29.01772347759429, 11.656987401389326, 68.97390210049234, 59.07268589230493, 17.45153697285721, 68.03687378804753, 104.2112465454761, 64.82556286184314, 43.483200668340345, 5.501890952942648, 173.1421470634835, 81.86679679634581, 13.694496529308303, 33.2810918783306, 10.529169099631906, 5.659085860825337, 6.952189403316954, 60.17277020816492, 35.055905929962016, 33.5982450048289, 74.62738407792443, 6.6301396698529595, 24.910002996798152, 38.18982343100371, 34.067503037447025, 31.010490116943963, 95.04327056718003, 52.73753666804185, 14.575611934344177, 60.776874746442, 45.572400702281485, 40.49855624024796, 37.93438622587176, 5.962761159451549, 57.793664660356264, 25.84491169011775, 77.13781873862673, 41.07721212854334, 27.126908108747475, 73.50720178805801, 51.35997578662443, 41.61925540778789, 19.33448098136192, 41.74633247605243, 11.22296002434526, 77.21124818819573, 68.19055181606674, 63.512957636154795, 43.90672600486262, 29.4110747665896, 41.59981403517086, 30.1139761528279, 27.326638145780937, 61.67025546932589, 84.58922173123676, 43.357789270973846, 61.571663606105886, 26.622229058302672, 58.3503981616474, 55.04172129929595, 107.75046527396383, 31.91697326889968, 7.761166301364165, 9.364563322130085, 18.08008858103497, 12.406744926444373, 43.602354821477626, 9.861867145454408, 73.80480159986226, 34.717756182667614, 81.80944777448094, 37.089923730075654, 6.7326918869825185, 35.87109209979999, 73.45160132380116, 25.56046906376732, 37.87392217607963, 30.432244630281655, 22.125053668407638, 69.84192568628052, 5.906435911850578, 112.91166783188847, 44.86064724403784, 45.09385771622523, 13.065840313279299, 46.313404111870085, 12.349833053694375, 24.04368820115101, 23.48523386093813, 7.991469768354043, 68.25033559307096, 8.144194858803028, 30.840731124048702, 46.17125763981694, 74.93286461580429, 14.006070721214577, 86.7210838851455, 53.659780482915, 11.358274674306577, 53.52149597146982, 9.39835381049076, 14.566439288267583, 87.63462245518076, 7.192853589257275, 56.59436947913077, 50.23175255608584, 8.384319800291442, 11.14570354450642, 46.4475724926173, 139.0232597256135, 27.39685496020516, 60.06396302098541, 49.60831140720572, 28.162492221936596, 36.83702615899516, 20.34952055740669, 17.320857902348138, 190.4074434677932, 16.198211580744427, 5.076731119548324, 34.178944167494414, 17.342870421438136, 57.4791550221833, 40.49396273955412, 52.07374824788404, 19.44297330239985, 13.180086397686509, 36.97688519629328, 96.08842512656389, 10.206067526346622, 24.456496931569173, 66.68176795162675, 57.34426450052235, 97.30431315728234, 85.2966125175741, 142.79746533176535, 52.63620043297789, 50.0689677493316, 23.289251086689987, 52.841471331555006, 21.53626249522763, 7.098818592208376, 50.193226275923394, 30.943539906020177, 53.19548378674982, 11.990048670284885, 9.102928235798391, 23.31752508085323, 10.93543858072065, 47.63970806557593, 8.395734480217598, 16.667072111406444, 59.183516235043705, 11.181902529393552, 76.4506421869301, 87.6732933872228, 36.31039164584173, 34.10809171343155, 10.452899494688866, 61.29271695602907, 24.896793686473696, 57.39797402216138, 5.658875875387945, 5.497740826870092, 57.00627364915, 28.34264902948427, 9.627928107945172, 38.80725483597234, 5.043561284487878, 26.597369091142944, 67.52208287173892, 38.46902057828339, 8.078761445005043, 57.31175546846927, 72.59649267908758, 167.6641392236827, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4965950.354509162, 5056617.9167053085, 5249078.119651063, 5276245.010199947, 5338127.882979053, 5345678.125, 5398256.088253681, 5436284.773183277, 5442778.133399052, 5500460.577157134, 5589284.375, 5600000.324788133, 5602029.55738744, 5622576.038459793, 5639434.375, 5714090.625, 5762090.119956848, 5787244.1187073765, 5899862.8623241335, 5900038.506978764, 6868360.700502628, 7049993.75, 7223196.047385634, 7266418.509610706, 7274018.75, 7301774.620641888, 7327326.5625, 7330875.0, 7356247.696920852, 7408789.404168862, 7409326.985395541, 7412746.875, 7414044.950166726, 7446689.792682851, 7447612.091461321, 7450131.892874955, 7452449.459165744, 7464235.9375, 7475344.905602687, 7511082.6197641995, 7531816.615363255, 7557775.091846398, 7564700.266043392, 7576650.0, 7605696.164560821, 7607616.694545174, 7620088.490755859, 7621908.281453083, 7640779.604670952, 7641371.875, 7642650.300275863, 7642765.324546137, 7642856.505871981, 7643101.5625, 7643754.6875, 7643876.5625, 7644487.5, 7644611.5898201, 7645419.360883661, 7645464.0625, 7646504.6875, 7646505.280585657, 7646686.389055752, 7646709.334897396, 7647830.929140163, 8453562.655643458, 8453571.393232897, 8645276.386697713, 8645792.027974665, 8645820.058528235, 8697337.5, 8708410.151065757, 8712820.3125, 8762151.5625, 8762659.375, 8762918.026905976, 8762945.3125, 8763293.75, 8763537.308317091, 8763549.147281118, 8763649.163967889, 8767748.4375, 8883508.623390244, 8884765.36828515, 8884807.02597341, 8893740.96173215, 8893822.706692962, 8917965.235786038, 8943554.367044142, 8952058.377150388, 9034768.450795034, 9038648.048974495, 9038823.4375, 9038872.479779255, 9038954.672388233, 9039026.2657562, 9039243.33468298, 9073186.289760238, 9114013.82657073, 9116176.5625, 9133784.375, 9136147.483016985, 9150129.6875, 9150179.6875, 9150332.8125, 9150367.1875, 9150408.090100963, 9150495.406240547, 9152657.8125, 9154131.866369564, 9154967.1875, 9155519.818910245, 9168698.4375, 9169276.137026008, 9170937.898790712, 9171914.198337844, 9179379.725648323, 9182111.17484703, 9182132.8125, 9182700.0, 9183636.356190754, 9183670.360507535, 9184185.52863148, 9186289.974616548, 9186968.75, 9187271.502756253, 9188535.735147715, 9202014.554802276, 9202111.53852831, 9202148.4375, 9202234.375, 9202259.375, 9202298.881708993, 9202308.266949011, 9202382.38617582, 9202483.223721575, 9202549.169225398, 9202632.549322896, 9202644.795104336, 9202719.54384669, 9202765.625, 9202970.228067392, 9203165.268324696, 9203174.61438005, 9203371.875, 9203454.400011301, 9203642.1875, 9203709.249472177, 9204013.276514858, 9204067.29929706, 9204456.929586543, 9204525.577076878, 9204703.748735346, 9204706.192146221, 9206453.681289667, 9219518.216817567, 9234013.508553928, 9287439.776835665, 9288729.76731284, 9290984.385341533, 9291184.283647496, 9292557.401997378, 9296067.252632376, 9321007.041486604, 9367159.375, 9377228.5309845, 9403495.160097755, 9418048.326900337, 9435001.13222629, 9439333.14543276, 9439820.910365678, 9442235.274318084, 9477242.1875, 9479198.4375, 9491917.097648751, 9492167.1875, 9492396.875, 9501800.939889923, 9501806.685523856, 9502416.44906936, 9506605.599325366, 9515429.856757833, 9515432.623820093, 9517900.081908362, 9518049.38677511, 9519507.691631997, 9571184.609121097, 9574807.8125, 9574923.133856326, 9575299.168103855, 9575561.056155333, 9575597.388574578, 9575632.598055996, 9575672.302086335, 9575728.125, 9575733.848686155, 9576014.0625, 9576181.01728047, 9576495.387255298, 9576717.1875, 9577117.757784575, 9578405.907446718, 9593220.027031561, 9593672.848412516, 9653180.301111829, 9657067.1875, 9657694.576727353, 9657696.19005759, 9658399.943015333, 9658864.794253133, 9659839.46532586, 9661488.138251955, 9662031.280930063, 9662678.125, 9663381.548854537, 9664670.26251924, 9665960.074385947, 9667021.043119853, 9668607.64025732, 9670215.625, 9673874.85317942, 9675894.723275444, 9682449.649285534, 9683912.5, 9688846.875, 9689367.578576237, 9689908.833010951, 9690345.369068475, 9702659.332844151, 9702910.9375, 9708593.304747004, 9739771.225099646, 9751576.099723002, 9765316.910481688, 9768387.5, 9768741.373982526, 9768764.092858287, 9768857.8125, 9793080.313919885, 9794145.767306995, 9794201.184222221, 9794508.302789647, 9794532.8125, 9794578.151186492, 9794617.432258265, 9794792.1875, 9794800.75545866, 9794900.046420023, 9795096.875, 9795162.5, 9795432.8125, 9795479.6875, 9796243.75, 9796318.75, 9796470.3125, 9796549.38403658, 9796679.415372714, 9796748.4375, 9796873.331682296, 9796928.48617646, 9797051.460013364, 9797093.742375318, 9797095.10339074, 9797132.45262275, 9797150.48688869, 9797242.877314767, 9797331.830805426, 9797348.51024614, 9797431.990000643, 9797612.73868506, 9797626.329488125, 9797640.387260213, 9797664.0916289, 9797673.232060617, 9797693.065590454, 9797872.27535025, 9797971.875, 9797987.044721538, 9798334.123923397, 9802106.46785987, 9802271.875, 9803683.428729234, 9809145.902791584, 9811693.75, 9813610.969483575, 9813795.52651293, 9826596.393737538, 9828664.561775394, 9836855.026749365, 9839582.26942711, 9839612.03459167, 9839740.444277626, 9840228.216708928, 9840829.485862024, 9843448.4375, 9854705.557133155, 9884707.54741543, 9884714.698399184, 9886324.660811398, 9895801.48843335, 9900823.14320461, 9902875.0, 9905181.25, 9905281.377058255, 9905788.706444768, 9905906.25, 9906388.505827596, 9906682.8125, 9914971.375528665, 9919508.797745712, 9919511.845393226, 9920926.996419486, 9930648.28150745, 9930970.79616495, 9931278.979646647, 9933340.625, 9933774.638451185, 9934772.000677561, 9934837.27861365, 9940819.35577718, 9940835.637216344, 9941692.1875, 9942385.810260871, 9944334.375, 9945021.875, 9945153.045927798, 9945628.125, 9946778.859226355, 9947820.613394732, 9948599.639094561, 9951854.252088571, 9953836.602484709, 9965315.339474063, 9966373.985612024, 9977624.643220112, 9984485.364787715, 9991310.42862, 9995703.182775384, 9998106.262068864, 9998538.282207612, 10003956.25, 10010674.510655828, 10024655.727244638, 10025048.19434076, 10025476.5625, 10025534.519696014, 10026701.5625, 10027413.44980658, 10027690.625, 10027771.473162264, 10027781.25, 10028059.345252305, 10028392.1875, 10028747.461939286, 10028817.1875, 10029403.730680555, 10030731.25, 10033774.899676336, 10039288.957120745, 10042927.558115672, 10043307.456387302, 10046165.366836717, 10049446.442661079, 10050126.840906562, 10052355.904776435, 10053631.045263221, 10053743.448048815, 10055098.862019444, 10061178.133679919, 10061711.766963478, 10062473.379583428, 10063360.9375, 10063373.268042838, 10063955.026540898, 10068617.1875, 10068903.33275713, 10088505.716832807, 10091815.212539423, 10092067.04890149, 10093167.317694066, 10094125.199267544, 10094468.75, 10094612.863267686, 10094751.5625, 10094898.4375, 10094954.108176133, 10095010.723573094, 10095146.645492703, 10095233.632491132, 10095560.67525655, 10095995.040612005, 10096805.174960855, 10096833.483582012, 10097223.16767893, 10097771.875, 10103297.238187985, 10104515.63810534, 10107082.487755798, 10132246.021829193, 10133807.73695962, 10134387.35460398, 10135621.875, 10141124.120660663, 10152351.84927725, 10160076.397243872, 10160891.765797628, 10162894.552126167, 10164762.5, 10165006.25, 10165550.0, 10166543.217950694, 10166867.966442466, 10166881.987409307, 10169231.06376157, 10169836.814689131, 10177269.0105846, 10180471.875, 10180553.491888732, 10181016.889148844, 10181244.722209381, 10185923.745650472, 10186993.75, 10190216.573554473, 10195374.885557834, 10196091.662925348, 10196093.75, 10197740.515862139, 10212982.8125, 10214721.875, 10215138.156173227, 10215465.171669688, 10217302.00317031, 10218735.871359956, 10219391.129209869, 10219702.973145178, 10219766.58892543, 10220356.25, 10220623.475166054, 10220628.125, 10221324.821751999, 10221723.718881264, 10221737.313743168, 10221877.579648688, 10222267.672363859, 10222317.291633822, 10222390.90827451, 10222633.493284388, 10222886.441386094, 10222931.205391152, 10222985.957714593, 10223087.5, 10223145.795280477, 10223231.200274086, 10225671.524367983, 10225799.027374564, 10225815.21895872, 10225851.153982814, 10226470.3125, 10229509.789313708, 10229881.396956636, 10230048.4375, 10230095.997606976, 10231127.906387689, 10231456.25, 10231591.94175845, 10231600.033602355, 10231870.126870444, 10231912.5, 10231927.06649253, 10231947.356842905, 10232401.602359299, 10232509.534667509, 10232759.81308525, 10232768.959433777, 10232889.294818517, 10232920.489050776, 10232950.09010665, 10233010.518647686, 10233100.0, 10233106.479772784, 10233138.101074286, 10233370.3125, 10233817.1875, 10234234.130784255, 10234717.039408531, 10239600.357022068, 10239661.373525312, 10249634.239230191, 10286893.75, 10291023.4375, 10304768.75, 10305049.770241655, 10305079.6875, 10305147.114699181, 10305153.269040665, 10305384.302182322, 10305731.00128862, 10305860.61362666, 10305942.78653226, 10305952.40941911, 10306107.061695654, 10306378.876735367, 10306490.625, 10306566.485092528, 10306723.4375, 10307270.3125, 10307430.733871039, 10307608.041685492, 10308105.715653796, 10308144.870365988, 10308218.137979185, 10309281.022902515, 10309287.5, 10309795.3125, 10310850.057871979, 10311445.085058955, 10311655.059602939, 10311998.043037392, 10312540.625, 10312949.06887191, 10313779.6875, 10313922.209430173, 10315532.006581822, 10315649.439012142, 10316772.393197807, 10317315.625, 10318013.391766798, 10318559.270329835, 10318790.549184192, 10318833.099666724, 10318932.884203767, 10318945.948751578, 10318985.9375, 10319073.4375, 10319254.852441292, 10319272.297633, 10319360.302136775, 10319971.875, 10321631.943966685, 10321911.80346161, 10324856.0840871, 10329971.596040219, 10337484.907718258, 10337841.837134486, 10337897.0411474, 10341111.495513178, 10341348.809859984, 10342236.689257238, 10342323.400331698, 10342854.505824795, 10342862.472686637, 10343156.25, 10343175.769777656, 10343220.427771632, 10343395.00420348, 10343596.209337287, 10344082.962676803, 10344121.875, 10344489.569700882, 10344553.125, 10344570.3125, 10344866.761992386, 10345557.981927633, 10346042.1875, 10346220.194419751, 10346702.270681355, 10348089.006978866, 10349610.253744664, 10354630.963182615, 10357152.37675122, 10397407.8125, 10403173.448341487, 10405683.2047328, 10406532.8125, 10417126.618975915, 10418140.002151432, 10421284.423832282, 10433881.489869699, 10435703.661916425, 10437201.5625, 10439530.958039451, 10446293.75, 10446498.615077754, 10446837.5, 10447966.606285684, 10448706.11818992, 10448840.120354507, 10449618.450333992, 10451617.1875, 10452172.970232533, 10452179.108411297, 10452187.217631979, 10452240.726990147, 10454688.077136092, 10457842.852556081, 10458619.165773552, 10462954.6875, 10463717.39401376, 10465069.789550517, 10465283.801708933, 10465343.635038877, 10465912.5, 10466353.414269602, 10471576.135451647, 10471623.464135993, 10471718.517879283, 10478084.726943316, 10480791.970165363, 10485947.316456255, 10486589.344458202, 10486712.5, 10487135.21524204, 10490606.006362818, 10495406.25, 10496109.700324336, 10496364.240812, 10499135.9375, 10499521.16202063, 10499541.049004188, 10499656.705897564, 10500035.9375, 10500691.27561661, 10501273.72913951, 10501430.946238797, 10505906.656106632, 10505928.169089224, 10507360.012669358, 10511816.099603, 10515979.688467508, 10518556.707640737, 10519288.817803081, 10523964.0625, 10526232.559591835, 10526808.588093163, 10529402.910911692, 10530250.0, 10533905.644457567, 10533991.570965586, 10534207.543440742, 10540514.560681984, 10540593.062465202, 10540974.23553046, 10541297.012129461, 10541838.000780283, 10541890.6220221, 10541895.677813921, 10541927.47550067, 10542130.561591562, 10542201.270353552, 10542326.307219805, 10542438.48893156, 10542634.142483866, 10542768.75, 10542887.133402856, 10542924.339611167, 10543152.507729974, 10543346.170515535, 10543353.270562034, 10543371.831853753, 10543403.125, 10543567.140720895, 10543666.090472547, 10543924.743729297, 10544810.089959664, 10545039.0625, 10545288.450727483, 10545352.499172214, 10545460.495928338, 10545684.375, 10546651.898096714, 10547718.580426106, 10552168.301119503, 10552542.321175015, 10553113.468513088, 10553741.130943652, 10553741.593867414, 10555575.367866337, 10557045.292659706, 10557218.75, 10561840.625, 10567836.544450019, 10572379.696779646, 10574059.324065007, 10574104.797648467, 10579668.519850666, 10579754.492233336, 10579758.26119356, 10582119.027218992, 10582400.0, 10584984.375, 10591867.391771698, 10591871.052539337, 10592590.557094347, 10595948.215426134, 10596420.3125, 10596507.8125, 10596754.6875, 10600089.012829047, 10601195.3125, 10605716.698822202, 10622859.375, 10626817.398921238, 10627590.982278485, 10627860.666985165, 10628167.41604092, 10628380.344362428, 10637513.749591062, 10638062.5, 10638672.70323369, 10656224.997889582, 10657063.881160649, 10658579.400797112, 10658588.733294317, 10670126.250050997, 10670148.131749267, 10670244.197322587, 10670290.499750718, 10670365.287575709, 10670848.4375, 10703974.932679327, 10705000.442137463, 10706578.556014935, 10707359.031228637, 10720924.669871867, 10733801.705787238, 10741201.513389302, 10746529.28238821, 10751617.55612509, 10751745.072747858, 10752229.6875, 10752710.948699024, 10753573.138648381, 10754168.933784401, 10754183.58866288, 10756052.693524515, 10756633.470621444, 10756856.193280786, 10758182.514002856, 10759668.90958555, 10760684.375, 10760687.668776516, 10762956.25, 10763228.994047895, 10764150.91302689, 10764196.875, 10767725.367222063, 10768600.0, 10772142.1875, 10772215.487865282, 10772246.875, 10780357.8125, 10780475.0, 10781098.396859804, 10789211.581489269, 10796153.87579631, 10796725.872523842, 10797313.660890406, 10798607.278657632, 10800668.364208482, 10802108.348166894, 10802992.109902514, 10802996.001727559, 10807140.098686896, 10817756.116538191, 10823508.374060784, 10851417.799383512, 10853193.524274606, 10853549.087712593, 10854307.620624542, 10862673.4375, 10862940.74465383, 10864445.3125, 10864647.552820418, 10865579.6875, 10865590.189633576, 10865642.1875, 10865870.222238103, 10865876.5625, 10866135.526808485, 10866240.044276996, 10866243.93757009, 10866250.0, 10866305.914893517, 10866349.581993163, 10866408.156303229, 10866494.711114742, 10866517.979828296, 10866540.552532813, 10866582.911360893, 10866620.3125, 10866627.469089145, 10866645.3125, 10866649.493306162, 10866668.821622109, 10866671.368515227, 10866671.631810026, 10866761.036646405, 10866768.617844615, 10866796.687002111, 10866814.471023194, 10866815.789062187, 10866829.705108998, 10866861.743087253, 10866893.817354143, 10866902.654126698, 10867132.8125, 10867165.055260492, 10867189.223491259, 10867296.875, 10867353.368042326, 10867501.5625, 10867548.378756722, 10867603.024912985, 10867871.453781813, 10867884.375, 10868101.301532026, 10868129.496246515, 10868207.294305295, 10868305.980499344, 10868567.1875, 10868703.125, 10869370.3125, 10869924.515412517, 10869971.119971419, 10871825.0, 10872701.87663523, 10872706.25, 10872864.0625, 10872933.34500224, 10872962.45022556, 10873204.6875, 10873346.938178996, 10873426.5625, 10873525.902657604, 10873875.80125337, 10874190.625, 10874235.566734822, 10874898.4375, 10874907.392564096, 10875741.411443276, 10875741.501932746, 10876430.10108747, 10877783.786749946, 10879579.694722207, 10885855.698633885, 10886368.043129055, 11051582.598140635, 11056314.0625, 11059003.125, 11059013.083162248, 11062185.917526564, 11062210.9375, 11064657.713072049, 11959989.0625, 14766656.25, 14860178.125, 15082892.1875, 15103320.576839035, 15110960.9375, 15110963.910482539, 15146675.972105958, 15188526.5625, 15399418.426670702, 15400581.25, 15515427.627098251, 15631848.4375, 15669413.72515335, 15672518.75, 15759175.060097147, 15842706.620509394, 15925533.960933566, 15948559.085886624, 15951791.995750226, 16009537.5, 16118568.75, 16154191.637419324, 16167833.748043485, 16195170.3125, 16197160.505697936, 16198300.0, 16205327.786535207, 16211660.142912365, 16239810.572016686, 16244309.075713743, 16244768.951753363, 16251342.772984711, 16257569.166513957, 16258907.851458324, 16287967.822897632, 16376706.93860172, 16388767.912700359, 16392024.004626874, 16392992.29689759, 16403970.3125, 16413165.489899324, 16413272.909780141, 16413548.28116568, 16413778.125, 16414834.561490148, 16416500.554493634, 16443539.526705425, 16443946.875, 16444218.31109978, 16444800.0, 16444918.363463314, 16444998.4375, 16445304.6875, 16445313.254302977, 16445373.46459561, 16445910.528320042, 16445968.02273663, 16446145.035092816, 16446334.447328676, 16446488.459390862, 16446512.5, 16446573.158184964, 16446599.670260578, 16446646.875, 16446803.125, 16447071.605834626, 16447555.013635281, 16449067.1875, 16449348.580166586, 16450564.46038286, 16451728.20313214, 16452509.272988115, 16453440.625, 16460767.452335251, 16462651.5625, 16466418.286503637, 16716059.55536942, 16770209.503611296, 16770457.394519981, 16781881.508796066, 16884349.94030965, 16948837.661948476, 16975970.3125, 16988235.096702956, 16994301.46535113, 16995168.127174634, 16996778.429856278, 17226233.49769338, 17226336.232279345, 17226430.113791153, 17226551.050638083, 17252147.388704974, 17279992.109761164, 17290812.431188468, 17304132.8125, 17315021.141593814, 17315026.00832645, 17321724.873208977, 17325557.8125, 17325933.69278105, 17377372.09416754, 17377556.25, 17379107.8125, 17379398.4375, 17379615.078075178, 17379877.443766914, 17380359.375, 17380421.952508584, 17380482.582532864, 17380900.0, 17381113.566815954, 17381303.038194593, 17381370.159889307, 17381504.22015589, 17381649.161815003, 17381852.052039344, 17381882.52934158, 17382114.664663482, 17382429.560908858, 17382829.6875, 17383329.88836712, 17384200.75991317, 17384281.25, 17384489.09689824, 17384790.570317864, 17385003.125, 17385115.625, 17385749.533301495, 17387362.020649485, 17404355.591786694, 17409666.972219188, 17425546.875, 17452882.03290115, 17505778.937186442, 17520210.235365633, 17574253.1157219, 17597814.39353459, 17600884.151338134, 17661696.994369656, 17663548.207668476, 17686898.4375, 17689646.052886605, 17690723.022694692, 17691235.522287562, 17692288.343967568, 17692490.625, ...], [5.970884576247523, 12.497374148098572, 42.475059669532, 9.088235127539532, 86.05962813889757, 32.60201247211043, 5.8021085771033665, 22.167312611908795, 107.53965588726268, 23.009379004191075, 76.80231935107118, 11.676386390650485, 54.16339549208011, 10.396758635379621, 171.56688088547506, 30.447830401193052, 18.490411832058527, 17.48248142154016, 7.220068140698886, 10.357825710745825, 24.590315279884113, 39.2356814815845, 84.43135834044989, 78.93289019249067, 40.18449086042949, 22.787353487950924, 47.953974774192694, 57.76101070012852, 19.387701028960215, 26.09704226260496, 37.063295335448245, 62.32290061798837, 6.222480402207677, 51.62989604121551, 9.008305257783913, 23.581565811475777, 63.72392492972083, 102.82117558190643, 6.42514372485105, 45.629390784786935, 50.64626510015879, 72.71303625973428, 43.21493224267358, 54.175307160195345, 12.784426832452072, 5.778384504772338, 16.26349123624869, 9.762121754714471, 26.987255148858047, 47.37055512969361, 47.21342886981634, 13.907930498025145, 9.557552809707612, 52.86177107904016, 65.78503886677385, 31.701429987709226, 95.11643674106607, 52.62975968839747, 24.61476013537682, 63.625177453634215, 71.23958175056833, 27.52638615718959, 11.915378851133939, 7.110949653659945, 7.4911691974029635, 46.20239276105474, 6.208190749148125, 86.93698999815777, 14.366444412104554, 57.20750901109315, 110.32286116497195, 7.910311312598327, 74.29226525022773, 56.56980403746132, 72.38835473180265, 19.523150197207695, 30.622159862388713, 64.5996345311771, 75.01677794650745, 7.321428541350663, 10.031805702287686, 48.27855976171725, 26.55498123441545, 14.045685385055755, 26.80371480661126, 28.264230211240182, 5.02943986710083, 59.27677130669163, 10.661219389234187, 6.341274829546089, 62.05649741660248, 22.68218887896249, 55.41578370384215, 25.055600699963037, 87.30698769071293, 131.1237951597758, 27.846396944687484, 9.648146669595592, 9.139572986924337, 35.173587621345824, 47.48836078345135, 39.378962270238645, 74.97372418289962, 92.99045163579669, 61.33510192506893, 61.18467223994704, 9.577704713442644, 7.146313163110197, 61.033290044440776, 17.959352218273203, 55.53744211471714, 83.71309618742265, 50.12205158357709, 10.52197965264427, 5.974903680361269, 11.346882365852549, 26.44418326714012, 11.520132439250158, 54.76841829984055, 46.770586124487906, 5.637634795461941, 17.858273395995177, 47.424450715064765, 60.030092643167436, 30.83620623940537, 22.86980119720491, 45.05492937428289, 11.995537613938701, 84.36606740578105, 32.63152671942381, 54.36850429951201, 74.07465715723414, 58.98443623605285, 26.86861880653493, 54.00279534805494, 49.21383232463353, 12.50306624785901, 7.510745954635262, 5.190437643852588, 7.347031944846132, 53.03161539165936, 14.62916994967072, 13.736501099357444, 111.97263826201021, 52.4941026530138, 76.0090230368073, 61.34952167350217, 14.483709896672606, 60.181071362993066, 11.307067894029863, 26.20517527438045, 9.87218149784192, 18.005836875394696, 11.038465903227044, 17.591682156706238, 21.16835326195744, 7.41446223669958, 114.30822165306587, 25.523266605458804, 9.340162858439339, 26.840016767154616, 5.681121277101593, 11.231062254875612, 60.87900345124655, 46.92005118498645, 7.75698597632525, 25.938390645347987, 5.338146066558287, 6.214325033716865, 16.382975451007994, 27.462128397690176, 31.808028579248003, 99.47925508287247, 60.34204489263391, 26.865811138133527, 32.70715181747106, 32.04710675435784, 106.55527841069811, 55.83996397709288, 8.776395161377211, 15.658073999136391, 15.628427642338371, 10.845062051062445, 57.94171791827503, 13.026289735887522, 32.919752274089596, 15.91585490273379, 52.60655514267866, 5.518523023665548, 53.11400883715681, 90.18268581504634, 18.698801818926327, 13.624909847173075, 14.655195044128433, 75.73093095871143, 6.662792191879936, 41.71282678498318, 56.0970199176526, 67.95385332933503, 77.66991204739587, 12.153774097357857, 13.778981595796788, 76.34345437032707, 20.648171267189294, 7.841346451269423, 32.36625628141665, 5.574596193079004, 54.60163451525515, 6.478195334290157, 60.64905649817305, 99.18812411052643, 49.183457620717306, 9.357693942624106, 74.07293972773785, 16.564155061141783, 8.260322336127603, 22.621237836914553, 10.98307941139505, 10.868746305747887, 58.213038612400425, 69.36610873954169, 22.895898589630214, 9.051473413628631, 55.27206633076395, 84.5749880471175, 105.46050709999483, 21.084219463776577, 25.743923420175324, 27.71725308075376, 150.93669293685232, 70.85240583794035, 5.884738393757534, 21.653225813940814, 75.71896427455899, 62.519285417782385, 102.29545356275362, 43.32798608403987, 31.2533002131612, 9.923905631179652, 17.01374819474528, 22.79982609189909, 5.851170581555277, 30.706772726570613, 15.042268359349372, 9.547305500265573, 43.302716616511184, 48.508737271849085, 44.97569489541206, 71.67354689125494, 66.21708809507837, 69.50376512237307, 28.801527567732848, 59.83744824989137, 72.61389471912823, 146.73455209756918, 10.284461304104884, 24.113428187355133, 85.877582100342, 20.37791533191274, 11.743432182484975, 79.41319286389205, 5.706272924185865, 19.238857477802803, 23.014882671132494, 11.98479017596319, 5.145523681809832, 17.73928733295867, 11.243349904898999, 12.521813430050962, 11.522473313647765, 64.28772120212118, 24.579999271382633, 6.091133613187272, 7.530586205896706, 62.84033074146751, 16.723924700541726, 55.88182049463368, 13.450219628822934, 103.32253417628766, 9.52266976087474, 33.75027149410864, 12.250100497725445, 83.50693610154777, 52.071060288072374, 11.178069920725287, 5.543558205707961, 29.7458083745906, 31.161716350019248, 28.212173201492607, 18.564623548856158, 117.35038153469543, 62.98616347979556, 15.302975030229053, 7.0694370898112515, 61.274319328831204, 6.383699662132631, 10.73718841122801, 26.73396903782165, 6.697628190585972, 77.10641632933813, 13.404458308876839, 78.76149624236811, 62.203593934300486, 147.32592867006278, 38.73984598553858, 139.92762077336124, 27.43098405599588, 119.69698563275693, 8.941996464966119, 6.977549470257569, 20.07802214008609, 28.53154152640633, 14.378503482704188, 17.17289925913006, 6.1817251772788815, 93.7391889515018, 13.721929651225947, 7.649334508228947, 53.367281578303334, 26.527133394236103, 13.90845898709522, 74.36945734298172, 10.934482410612784, 79.57655776569197, 38.44427689408808, 27.052766312386627, 31.692244735454977, 12.508722988851439, 43.423709893062295, 28.464266024348674, 51.41732158419695, 131.0892356412111, 8.14114537838714, 17.54316643050578, 6.051766781887097, 93.547532788747, 21.404972517880456, 5.204896361932935, 16.282655369664297, 46.762998631953565, 75.23538142730433, 45.836765242601984, 70.25336620254296, 24.505011985195985, 62.265417291234456, 29.906120819646432, 30.86087007164846, 26.499521450463718, 51.79628487198164, 64.93938509012486, 40.53687801154722, 14.829324563620286, 45.45051370680202, 12.188419788670405, 63.9142719359302, 7.290320419398418, 52.486830885778495, 10.974433557620054, 14.554510181995571, 32.85119622115712, 5.062477304313213, 47.48820282093469, 44.40519732074981, 25.88627966248813, 23.18976494809812, 107.54154763936565, 9.088502107928187, 9.71815101082228, 17.79725620463012, 26.91869946725244, 52.594801743425705, 40.38101697746872, 25.57492511216358, 16.41309091303787, 110.81944822540385, 7.680148955664318, 18.26799527576179, 9.005406005058617, 14.438303002916927, 8.356647388030083, 5.1347838696620824, 29.454208788021297, 28.223947272792273, 41.931656653572176, 47.2062646908798, 10.328719228421223, 9.15683753518779, 14.448033255001784, 32.3933351935414, 14.028054681264328, 79.43555982955495, 17.194131464444492, 16.570554050897652, 5.916247341495263, 29.421713828057616, 31.093650286813837, 14.99169723439587, 23.43973209222492, 7.881654525364308, 33.87123887024945, 64.47119246583117, 32.41638035437904, 27.697936482302822, 16.160176881567125, 66.53484087590486, 5.783423170094639, 121.65062568319723, 61.62759744119564, 35.92559723911289, 48.148555354012196, 79.37182876491507, 10.090081747515002, 12.515933626803358, 25.321454492417242, 22.15500946901745, 53.52521977396785, 34.371586964577574, 5.412687541257652, 10.69132960656063, 13.085381411074874, 5.631322302492234, 37.847623877374254, 15.535469971142332, 67.70925034845233, 6.203121611378003, 58.95243663318525, 7.564235641281006, 52.76074714779653, 46.850556437392335, 12.693219219458074, 106.21057280711227, 6.324526959844623, 81.17809201205397, 66.20855348600084, 13.193434615071798, 20.56307078607526, 127.78963203423314, 17.180066493583915, 77.34201973525954, 53.85283312346687, 11.59797940481249, 5.453828575965568, 5.7747015841935445, 7.255020246064077, 49.51000150768262, 16.143604680500477, 8.682687915780328, 7.796252320662537, 14.774164364902882, 5.462634841088423, 44.07302518212782, 11.976654371135098, 159.1354380608363, 7.481159090477957, 17.794727469374827, 22.197732934531135, 18.471216292769615, 30.93671741385687, 11.843567973823358, 11.36545067028086, 84.57985368756516, 6.001375227266327, 5.6929847736017205, 49.190896875440835, 14.080869947844946, 94.76169658751724, 25.330545337194163, 69.27212293923537, 9.797306161596273, 111.02406135787707, 11.190586295607831, 25.556979079304302, 24.032515011803675, 6.520430734918307, 24.290715153096194, 64.78772169836641, 20.870299487933444, 49.982273208640066, 33.797149970379664, 11.506910061668764, 7.836134486842653, 120.62385426162298, 66.54002945131953, 84.31583040289013, 25.90663980191225, 35.19398606234226, 77.9703910430859, 41.01252206596638, 82.18134531545152, 100.97366262297938, 84.94185361288946, 24.691456907310556, 54.33575357218158, 78.32068498256892, 11.360571511140204, 89.39702942058666, 24.42876269383172, 8.122424889770288, 17.85117632506381, 6.628587694162591, 12.68791139718569, 40.503452526610374, 59.86806295395972, 8.800593126867938, 49.735554219040004, 41.48743116056273, 6.409116823915023, 15.893470505933735, 21.900579301564385, 22.090442123342786, 53.891774974742276, 8.170027695241503, 107.93708515104699, 139.6291127361329, 25.053221943153495, 45.31622322505547, 52.5879125871201, 22.614718100988227, 64.5706358297885, 7.848756096144925, 39.699956946723155, 16.39034437127851, 23.796654649204008, 6.402605967097534, 17.368679292932715, 30.088731449598296, 72.22482341623206, 10.967949239694438, 33.58832292692346, 9.586625595234901, 15.222040063377104, 84.20482219144765, 122.5920406894284, 31.811460317991457, 15.609805393994728, 11.521193273227155, 40.82234179327178, 34.562526134530316, 178.86338410518505, 7.949653112701995, 33.203032350225314, 151.49881508886168, 17.71767103624645, 13.755434267223313, 15.615002551988342, 8.605487139666538, 9.667435698921821, 18.867636400001945, 27.810020567337723, 25.389778332291833, 14.838415697504603, 32.37381089130191, 44.49547868995823, 78.70304789322873, 29.37304685427688, 19.98572053084852, 13.13581811123574, 73.57204079850337, 38.448998544872836, 60.15123296735102, 33.471698984287855, 121.47562492297072, 15.629161447433205, 47.78531511831674, 37.858037387228315, 18.562355935710837, 7.583279318528285, 43.16969906211574, 13.95045700342497, 12.693956466478353, 46.167624499956645, 14.98299373448665, 19.463650817179005, 54.457986694066136, 9.379617689837554, 29.61720359111269, 15.130960178692236, 5.627453581258207, 5.485293360972009, 33.166228939244064, 23.853980591326977, 39.143606926439084, 5.250142660058454, 64.23668823894431, 10.326419593421432, 38.288249883950854, 67.31221454577043, 189.89379017709632, 111.26866002263966, 109.7822326389826, 37.714698572890086, 85.68115310355958, 15.345039788038683, 138.06142878247684, 33.82710221208467, 35.846173932763776, 32.572933670196115, 11.466609247785902, 47.33501604090582, 13.129703126781473, 26.442007016557433, 66.65971257605918, 27.365682655391648, 10.519938892593226, 6.270569508289377, 5.037653843131578, 16.477202339554356, 24.867412194721148, 80.58087316856383, 29.990761490198224, 38.432690178949784, 12.755937263053417, 65.38115666378866, 52.118170666499594, 26.45300340822467, 15.66768932175127, 35.3716898501529, 5.763044440923505, 16.848168767072586, 5.215194511196672, 42.035255906560124, 58.58564791127793, 25.71315301876079, 72.7283915081199, 7.757034405923899, 6.092696139708069, 28.99306303017883, 5.640851205170663, 6.763699739203982, 5.481757919194548, 24.483836668112282, 79.66856950538613, 104.42854995921336, 73.646497823053, 18.54969976120247, 57.4330994764786, 6.19360835226708, 89.32632503483552, 8.149241041657113, 60.222720013602284, 8.810660699611278, 19.206492053101055, 20.622530090960254, 12.012429573305521, 15.684217650428181, 115.76064404541935, 12.934438717426815, 65.93792525190827, 117.91757779091671, 50.70569840343512, 64.7522030380648, 6.451249712412594, 33.668549319418695, 6.431119493729238, 5.186917474884511, 13.015949886661666, 84.96067377297442, 5.952182986072594, 68.4808304177423, 73.71869869612337, 45.723019812431204, 8.549084672358145, 14.047104559481626, 30.450395727119776, 96.58508575493381, 52.16055069837839, 20.323471913720425, 12.576109964749637, 164.95252847080118, 13.879986897082787, 32.47523585268135, 96.27686308207956, 7.6523119305124325, 36.832951829296505, 8.573566918973473, 13.076720637256727, 11.755891848988671, 28.13811990476768, 77.96411290913427, 40.77772577569352, 25.525817883085935, 73.85150789852742, 95.75374067408057, 8.345697441977123, 9.144096328622124, 25.187575688353775, 11.909811215602117, 7.196282062551187, 38.77217886653021, 29.53466368407965, 27.49044538489825, 18.784263525790525, 39.62097875558319, 9.15043042710807, 45.521921086381134, 32.325949038452016, 46.80187712475867, 28.827388303878028, 55.70843634610438, 34.431932728674, 78.1586819810623, 73.5037311332694, 8.485002685755392, 7.508242149070993, 15.89055356562652, 91.07076455201315, 23.587236580124923, 81.54321537150818, 23.367869285268846, 14.93347159087675, 12.720253134212987, 23.922092966460713, 26.052025638270703, 47.58131890222816, 7.496273649201901, 23.43015120643441, 36.72593626806605, 12.564094934224, 52.769210455613354, 18.971862364138666, 35.40940951868797, 9.724534303733424, 9.056710429667513, 46.383796273264586, 16.58121439627269, 71.79344518833076, 5.904885668000271, 11.75730764871133, 5.333772830776313, 88.58861407894906, 36.02018732230616, 6.441242322918561, 5.624293093110159, 26.118190877005333, 89.15754882834676, 25.117134204597782, 87.98643368775659, 10.691129805444547, 8.372811118720294, 39.35488938262261, 15.626348116625932, 64.0163292692931, 123.347830430926, 34.81550282278609, 90.88408200540427, 5.551172430614287, 61.98977216332064, 32.16746522927935, 14.44336792316608, 82.6696511076598, 47.21901218487348, 47.98492497327529, 9.297274386624956, 5.863217774790192, 28.080325261149845, 12.834212209010959, 35.99379015848591, 23.952669436431627, 9.0251922977151, 19.80900668515877, 83.0879233975869, 18.433537671469736, 19.844054207599704, 14.456099082856493, 7.819809317071569, 7.8406270523092445, 32.00766208069405, 88.608640980893, 5.453590858860918, 83.90742128798368, 8.350882318275252, 142.4311292110949, 25.35019939769502, 201.81816354661893, 6.42094279151863, 84.23404695671711, 205.0656513388242, 34.40906508235156, 22.43279573050005, 5.322408585469107, 5.405693399685812, 40.8163665110414, 23.312429201115428, 63.73440354413732, 46.59120256110492, 63.00737952782447, 7.917364812015856, 27.16886673022526, 63.587463926667894, 42.75728647091622, 12.918405560547056, 85.90341565492533, 32.79402087712632, 37.837061205373416, 38.98224827459249, 14.089087836491275, 9.416668097511096, 26.16088275489349, 25.295228951156403, 16.249405843062494, 11.394209669227887, 5.707879608256354, 19.263336828995662, 15.694489716693209, 27.38154403929834, 47.590595421606515, 48.80753201968614, 15.592818061832503, 154.42455219333993, 18.351973153278585, 42.724151608232894, 27.413935767059076, 26.691105272227883, 8.075720114824756, 49.60973777518879, 24.262463245463184, 33.652440176192115, 6.408816099071627, 24.148306445438937, 47.77432773405895, 118.88478947966908, 60.73643101677179, 42.919843778283656, 12.677938325218243, 29.01772347759429, 11.656987401389326, 68.97390210049234, 59.07268589230493, 17.45153697285721, 68.03687378804753, 104.2112465454761, 64.82556286184314, 43.483200668340345, 5.501890952942648, 173.1421470634835, 81.86679679634581, 13.694496529308303, 33.2810918783306, 10.529169099631906, 5.659085860825337, 6.952189403316954, 60.17277020816492, 35.055905929962016, 33.5982450048289, 74.62738407792443, 6.6301396698529595, 24.910002996798152, 38.18982343100371, 34.067503037447025, 31.010490116943963, 95.04327056718003, 52.73753666804185, 14.575611934344177, 60.776874746442, 45.572400702281485, 40.49855624024796, 37.93438622587176, 5.962761159451549, 57.793664660356264, 25.84491169011775, 77.13781873862673, 41.07721212854334, 27.126908108747475, 73.50720178805801, 51.35997578662443, 41.61925540778789, 19.33448098136192, 41.74633247605243, 11.22296002434526, 77.21124818819573, 68.19055181606674, 63.512957636154795, 43.90672600486262, 29.4110747665896, 41.59981403517086, 30.1139761528279, 27.326638145780937, 61.67025546932589, 84.58922173123676, 43.357789270973846, 61.571663606105886, 26.622229058302672, 58.3503981616474, 55.04172129929595, 107.75046527396383, 31.91697326889968, 7.761166301364165, 9.364563322130085, 18.08008858103497, 12.406744926444373, 43.602354821477626, 9.861867145454408, 73.80480159986226, 34.717756182667614, 81.80944777448094, 37.089923730075654, 6.7326918869825185, 35.87109209979999, 73.45160132380116, 25.56046906376732, 37.87392217607963, 30.432244630281655, 22.125053668407638, 69.84192568628052, 5.906435911850578, 112.91166783188847, 44.86064724403784, 45.09385771622523, 13.065840313279299, 46.313404111870085, 12.349833053694375, 24.04368820115101, 23.48523386093813, 7.991469768354043, 68.25033559307096, 8.144194858803028, 30.840731124048702, 46.17125763981694, 74.93286461580429, 14.006070721214577, 86.7210838851455, 53.659780482915, 11.358274674306577, 53.52149597146982, 9.39835381049076, 14.566439288267583, 87.63462245518076, 7.192853589257275, 56.59436947913077, 50.23175255608584, 8.384319800291442, 11.14570354450642, 46.4475724926173, 139.0232597256135, 27.39685496020516, 60.06396302098541, 49.60831140720572, 28.162492221936596, 36.83702615899516, 20.34952055740669, 17.320857902348138, 190.4074434677932, 16.198211580744427, 5.076731119548324, 34.178944167494414, 17.342870421438136, 57.4791550221833, 40.49396273955412, 52.07374824788404, 19.44297330239985, 13.180086397686509, 36.97688519629328, 96.08842512656389, 10.206067526346622, 24.456496931569173, 66.68176795162675, 57.34426450052235, 97.30431315728234, 85.2966125175741, 142.79746533176535, 52.63620043297789, 50.0689677493316, 23.289251086689987, 52.841471331555006, 21.53626249522763, 7.098818592208376, 50.193226275923394, 30.943539906020177, 53.19548378674982, 11.990048670284885, 9.102928235798391, 23.31752508085323, 10.93543858072065, 47.63970806557593, 8.395734480217598, 16.667072111406444, 59.183516235043705, 11.181902529393552, 76.4506421869301, 87.6732933872228, 36.31039164584173, 34.10809171343155, 10.452899494688866, 61.29271695602907, 24.896793686473696, 57.39797402216138, 5.658875875387945, 5.497740826870092, 57.00627364915, 28.34264902948427, 9.627928107945172, 38.80725483597234, 5.043561284487878, 26.597369091142944, 67.52208287173892, 38.46902057828339, 8.078761445005043, 57.31175546846927, 72.59649267908758, 167.6641392236827, ...])
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);
([4965950.354509162, 5056617.9167053085, 5249078.119651063, 5276245.010199947, 5338127.882979053, 5345678.125, 5398256.088253681, 5436284.773183277, 5442778.133399052, 5500460.577157134, 5589284.375, 5600000.324788133, 5602029.55738744, 5622576.038459793, 5639434.375, 5714090.625, 5762090.119956848, 5787244.1187073765, 5899862.8623241335, 5900038.506978764, 6868360.700502628, 7049993.75, 7223196.047385634, 7266418.509610706, 7274018.75, 7301774.620641888, 7327326.5625, 7330875.0, 7356247.696920852, 7408789.404168862, 7409326.985395541, 7412746.875, 7414044.950166726, 7446689.792682851, 7447612.091461321, 7450131.892874955, 7452449.459165744, 7464235.9375, 7475344.905602687, 7511082.6197641995, 7531816.615363255, 7557775.091846398, 7564700.266043392, 7576650.0, 7605696.164560821, 7607616.694545174, 7620088.490755859, 7621908.281453083, 7640779.604670952, 7641371.875, 7642650.300275863, 7642765.324546137, 7642856.505871981, 7643101.5625, 7643754.6875, 7643876.5625, 7644487.5, 7644611.5898201, 7645419.360883661, 7645464.0625, 7646504.6875, 7646505.280585657, 7646686.389055752, 7646709.334897396, 7647830.929140163, 8453562.655643458, 8453571.393232897, 8645276.386697713, 8645792.027974665, 8645820.058528235, 8697337.5, 8708410.151065757, 8712820.3125, 8762151.5625, 8762659.375, 8762918.026905976, 8762945.3125, 8763293.75, 8763537.308317091, 8763549.147281118, 8763649.163967889, 8767748.4375, 8883508.623390244, 8884765.36828515, 8884807.02597341, 8893740.96173215, 8893822.706692962, 8917965.235786038, 8943554.367044142, 8952058.377150388, 9034768.450795034, 9038648.048974495, 9038823.4375, 9038872.479779255, 9038954.672388233, 9039026.2657562, 9039243.33468298, 9073186.289760238, 9114013.82657073, 9116176.5625, 9133784.375, 9136147.483016985, 9150129.6875, 9150179.6875, 9150332.8125, 9150367.1875, 9150408.090100963, 9150495.406240547, 9152657.8125, 9154131.866369564, 9154967.1875, 9155519.818910245, 9168698.4375, 9169276.137026008, 9170937.898790712, 9171914.198337844, 9179379.725648323, 9182111.17484703, 9182132.8125, 9182700.0, 9183636.356190754, 9183670.360507535, 9184185.52863148, 9186289.974616548, 9186968.75, 9187271.502756253, 9188535.735147715, 9202014.554802276, 9202111.53852831, 9202148.4375, 9202234.375, 9202259.375, 9202298.881708993, 9202308.266949011, 9202382.38617582, 9202483.223721575, 9202549.169225398, 9202632.549322896, 9202644.795104336, 9202719.54384669, 9202765.625, 9202970.228067392, 9203165.268324696, 9203174.61438005, 9203371.875, 9203454.400011301, 9203642.1875, 9203709.249472177, 9204013.276514858, 9204067.29929706, 9204456.929586543, 9204525.577076878, 9204703.748735346, 9204706.192146221, 9206453.681289667, 9219518.216817567, 9234013.508553928, 9287439.776835665, 9288729.76731284, 9290984.385341533, 9291184.283647496, 9292557.401997378, 9296067.252632376, 9321007.041486604, 9367159.375, 9377228.5309845, 9403495.160097755, 9418048.326900337, 9435001.13222629, 9439333.14543276, 9439820.910365678, 9442235.274318084, 9477242.1875, 9479198.4375, 9491917.097648751, 9492167.1875, 9492396.875, 9501800.939889923, 9501806.685523856, 9502416.44906936, 9506605.599325366, 9515429.856757833, 9515432.623820093, 9517900.081908362, 9518049.38677511, 9519507.691631997, 9571184.609121097, 9574807.8125, 9574923.133856326, 9575299.168103855, 9575561.056155333, 9575597.388574578, 9575632.598055996, 9575672.302086335, 9575728.125, 9575733.848686155, 9576014.0625, 9576181.01728047, 9576495.387255298, 9576717.1875, 9577117.757784575, 9578405.907446718, 9593220.027031561, 9593672.848412516, 9653180.301111829, 9657067.1875, 9657694.576727353, 9657696.19005759, 9658399.943015333, 9658864.794253133, 9659839.46532586, 9661488.138251955, 9662031.280930063, 9662678.125, 9663381.548854537, 9664670.26251924, 9665960.074385947, 9667021.043119853, 9668607.64025732, 9670215.625, 9673874.85317942, 9675894.723275444, 9682449.649285534, 9683912.5, 9688846.875, 9689367.578576237, 9689908.833010951, 9690345.369068475, 9702659.332844151, 9702910.9375, 9708593.304747004, 9739771.225099646, 9751576.099723002, 9765316.910481688, 9768387.5, 9768741.373982526, 9768764.092858287, 9768857.8125, 9793080.313919885, 9794145.767306995, 9794201.184222221, 9794508.302789647, 9794532.8125, 9794578.151186492, 9794617.432258265, 9794792.1875, 9794800.75545866, 9794900.046420023, 9795096.875, 9795162.5, 9795432.8125, 9795479.6875, 9796243.75, 9796318.75, 9796470.3125, 9796549.38403658, 9796679.415372714, 9796748.4375, 9796873.331682296, 9796928.48617646, 9797051.460013364, 9797093.742375318, 9797095.10339074, 9797132.45262275, 9797150.48688869, 9797242.877314767, 9797331.830805426, 9797348.51024614, 9797431.990000643, 9797612.73868506, 9797626.329488125, 9797640.387260213, 9797664.0916289, 9797673.232060617, 9797693.065590454, 9797872.27535025, 9797971.875, 9797987.044721538, 9798334.123923397, 9802106.46785987, 9802271.875, 9803683.428729234, 9809145.902791584, 9811693.75, 9813610.969483575, 9813795.52651293, 9826596.393737538, 9828664.561775394, 9836855.026749365, 9839582.26942711, 9839612.03459167, 9839740.444277626, 9840228.216708928, 9840829.485862024, 9843448.4375, 9854705.557133155, 9884707.54741543, 9884714.698399184, 9886324.660811398, 9895801.48843335, 9900823.14320461, 9902875.0, 9905181.25, 9905281.377058255, 9905788.706444768, 9905906.25, 9906388.505827596, 9906682.8125, 9914971.375528665, 9919508.797745712, 9919511.845393226, 9920926.996419486, 9930648.28150745, 9930970.79616495, 9931278.979646647, 9933340.625, 9933774.638451185, 9934772.000677561, 9934837.27861365, 9940819.35577718, 9940835.637216344, 9941692.1875, 9942385.810260871, 9944334.375, 9945021.875, 9945153.045927798, 9945628.125, 9946778.859226355, 9947820.613394732, 9948599.639094561, 9951854.252088571, 9953836.602484709, 9965315.339474063, 9966373.985612024, 9977624.643220112, 9984485.364787715, 9991310.42862, 9995703.182775384, 9998106.262068864, 9998538.282207612, 10003956.25, 10010674.510655828, 10024655.727244638, 10025048.19434076, 10025476.5625, 10025534.519696014, 10026701.5625, 10027413.44980658, 10027690.625, 10027771.473162264, 10027781.25, 10028059.345252305, 10028392.1875, 10028747.461939286, 10028817.1875, 10029403.730680555, 10030731.25, 10033774.899676336, 10039288.957120745, 10042927.558115672, 10043307.456387302, 10046165.366836717, 10049446.442661079, 10050126.840906562, 10052355.904776435, 10053631.045263221, 10053743.448048815, 10055098.862019444, 10061178.133679919, 10061711.766963478, 10062473.379583428, 10063360.9375, 10063373.268042838, 10063955.026540898, 10068617.1875, 10068903.33275713, 10088505.716832807, 10091815.212539423, 10092067.04890149, 10093167.317694066, 10094125.199267544, 10094468.75, 10094612.863267686, 10094751.5625, 10094898.4375, 10094954.108176133, 10095010.723573094, 10095146.645492703, 10095233.632491132, 10095560.67525655, 10095995.040612005, 10096805.174960855, 10096833.483582012, 10097223.16767893, 10097771.875, 10103297.238187985, 10104515.63810534, 10107082.487755798, 10132246.021829193, 10133807.73695962, 10134387.35460398, 10135621.875, 10141124.120660663, 10152351.84927725, 10160076.397243872, 10160891.765797628, 10162894.552126167, 10164762.5, 10165006.25, 10165550.0, 10166543.217950694, 10166867.966442466, 10166881.987409307, 10169231.06376157, 10169836.814689131, 10177269.0105846, 10180471.875, 10180553.491888732, 10181016.889148844, 10181244.722209381, 10185923.745650472, 10186993.75, 10190216.573554473, 10195374.885557834, 10196091.662925348, 10196093.75, 10197740.515862139, 10212982.8125, 10214721.875, 10215138.156173227, 10215465.171669688, 10217302.00317031, 10218735.871359956, 10219391.129209869, 10219702.973145178, 10219766.58892543, 10220356.25, 10220623.475166054, 10220628.125, 10221324.821751999, 10221723.718881264, 10221737.313743168, 10221877.579648688, 10222267.672363859, 10222317.291633822, 10222390.90827451, 10222633.493284388, 10222886.441386094, 10222931.205391152, 10222985.957714593, 10223087.5, 10223145.795280477, 10223231.200274086, 10225671.524367983, 10225799.027374564, 10225815.21895872, 10225851.153982814, 10226470.3125, 10229509.789313708, 10229881.396956636, 10230048.4375, 10230095.997606976, 10231127.906387689, 10231456.25, 10231591.94175845, 10231600.033602355, 10231870.126870444, 10231912.5, 10231927.06649253, 10231947.356842905, 10232401.602359299, 10232509.534667509, 10232759.81308525, 10232768.959433777, 10232889.294818517, 10232920.489050776, 10232950.09010665, 10233010.518647686, 10233100.0, 10233106.479772784, 10233138.101074286, 10233370.3125, 10233817.1875, 10234234.130784255, 10234717.039408531, 10239600.357022068, 10239661.373525312, 10249634.239230191, 10286893.75, 10291023.4375, 10304768.75, 10305049.770241655, 10305079.6875, 10305147.114699181, 10305153.269040665, 10305384.302182322, 10305731.00128862, 10305860.61362666, 10305942.78653226, 10305952.40941911, 10306107.061695654, 10306378.876735367, 10306490.625, 10306566.485092528, 10306723.4375, 10307270.3125, 10307430.733871039, 10307608.041685492, 10308105.715653796, 10308144.870365988, 10308218.137979185, 10309281.022902515, 10309287.5, 10309795.3125, 10310850.057871979, 10311445.085058955, 10311655.059602939, 10311998.043037392, 10312540.625, 10312949.06887191, 10313779.6875, 10313922.209430173, 10315532.006581822, 10315649.439012142, 10316772.393197807, 10317315.625, 10318013.391766798, 10318559.270329835, 10318790.549184192, 10318833.099666724, 10318932.884203767, 10318945.948751578, 10318985.9375, 10319073.4375, 10319254.852441292, 10319272.297633, 10319360.302136775, 10319971.875, 10321631.943966685, 10321911.80346161, 10324856.0840871, 10329971.596040219, 10337484.907718258, 10337841.837134486, 10337897.0411474, 10341111.495513178, 10341348.809859984, 10342236.689257238, 10342323.400331698, 10342854.505824795, 10342862.472686637, 10343156.25, 10343175.769777656, 10343220.427771632, 10343395.00420348, 10343596.209337287, 10344082.962676803, 10344121.875, 10344489.569700882, 10344553.125, 10344570.3125, 10344866.761992386, 10345557.981927633, 10346042.1875, 10346220.194419751, 10346702.270681355, 10348089.006978866, 10349610.253744664, 10354630.963182615, 10357152.37675122, 10397407.8125, 10403173.448341487, 10405683.2047328, 10406532.8125, 10417126.618975915, 10418140.002151432, 10421284.423832282, 10433881.489869699, 10435703.661916425, 10437201.5625, 10439530.958039451, 10446293.75, 10446498.615077754, 10446837.5, 10447966.606285684, 10448706.11818992, 10448840.120354507, 10449618.450333992, 10451617.1875, 10452172.970232533, 10452179.108411297, 10452187.217631979, 10452240.726990147, 10454688.077136092, 10457842.852556081, 10458619.165773552, 10462954.6875, 10463717.39401376, 10465069.789550517, 10465283.801708933, 10465343.635038877, 10465912.5, 10466353.414269602, 10471576.135451647, 10471623.464135993, 10471718.517879283, 10478084.726943316, 10480791.970165363, 10485947.316456255, 10486589.344458202, 10486712.5, 10487135.21524204, 10490606.006362818, 10495406.25, 10496109.700324336, 10496364.240812, 10499135.9375, 10499521.16202063, 10499541.049004188, 10499656.705897564, 10500035.9375, 10500691.27561661, 10501273.72913951, 10501430.946238797, 10505906.656106632, 10505928.169089224, 10507360.012669358, 10511816.099603, 10515979.688467508, 10518556.707640737, 10519288.817803081, 10523964.0625, 10526232.559591835, 10526808.588093163, 10529402.910911692, 10530250.0, 10533905.644457567, 10533991.570965586, 10534207.543440742, 10540514.560681984, 10540593.062465202, 10540974.23553046, 10541297.012129461, 10541838.000780283, 10541890.6220221, 10541895.677813921, 10541927.47550067, 10542130.561591562, 10542201.270353552, 10542326.307219805, 10542438.48893156, 10542634.142483866, 10542768.75, 10542887.133402856, 10542924.339611167, 10543152.507729974, 10543346.170515535, 10543353.270562034, 10543371.831853753, 10543403.125, 10543567.140720895, 10543666.090472547, 10543924.743729297, 10544810.089959664, 10545039.0625, 10545288.450727483, 10545352.499172214, 10545460.495928338, 10545684.375, 10546651.898096714, 10547718.580426106, 10552168.301119503, 10552542.321175015, 10553113.468513088, 10553741.130943652, 10553741.593867414, 10555575.367866337, 10557045.292659706, 10557218.75, 10561840.625, 10567836.544450019, 10572379.696779646, 10574059.324065007, 10574104.797648467, 10579668.519850666, 10579754.492233336, 10579758.26119356, 10582119.027218992, 10582400.0, 10584984.375, 10591867.391771698, 10591871.052539337, 10592590.557094347, 10595948.215426134, 10596420.3125, 10596507.8125, 10596754.6875, 10600089.012829047, 10601195.3125, 10605716.698822202, 10622859.375, 10626817.398921238, 10627590.982278485, 10627860.666985165, 10628167.41604092, 10628380.344362428, 10637513.749591062, 10638062.5, 10638672.70323369, 10656224.997889582, 10657063.881160649, 10658579.400797112, 10658588.733294317, 10670126.250050997, 10670148.131749267, 10670244.197322587, 10670290.499750718, 10670365.287575709, 10670848.4375, 10703974.932679327, 10705000.442137463, 10706578.556014935, 10707359.031228637, 10720924.669871867, 10733801.705787238, 10741201.513389302, 10746529.28238821, 10751617.55612509, 10751745.072747858, 10752229.6875, 10752710.948699024, 10753573.138648381, 10754168.933784401, 10754183.58866288, 10756052.693524515, 10756633.470621444, 10756856.193280786, 10758182.514002856, 10759668.90958555, 10760684.375, 10760687.668776516, 10762956.25, 10763228.994047895, 10764150.91302689, 10764196.875, 10767725.367222063, 10768600.0, 10772142.1875, 10772215.487865282, 10772246.875, 10780357.8125, 10780475.0, 10781098.396859804, 10789211.581489269, 10796153.87579631, 10796725.872523842, 10797313.660890406, 10798607.278657632, 10800668.364208482, 10802108.348166894, 10802992.109902514, 10802996.001727559, 10807140.098686896, 10817756.116538191, 10823508.374060784, 10851417.799383512, 10853193.524274606, 10853549.087712593, 10854307.620624542, 10862673.4375, 10862940.74465383, 10864445.3125, 10864647.552820418, 10865579.6875, 10865590.189633576, 10865642.1875, 10865870.222238103, 10865876.5625, 10866135.526808485, 10866240.044276996, 10866243.93757009, 10866250.0, 10866305.914893517, 10866349.581993163, 10866408.156303229, 10866494.711114742, 10866517.979828296, 10866540.552532813, 10866582.911360893, 10866620.3125, 10866627.469089145, 10866645.3125, 10866649.493306162, 10866668.821622109, 10866671.368515227, 10866671.631810026, 10866761.036646405, 10866768.617844615, 10866796.687002111, 10866814.471023194, 10866815.789062187, 10866829.705108998, 10866861.743087253, 10866893.817354143, 10866902.654126698, 10867132.8125, 10867165.055260492, 10867189.223491259, 10867296.875, 10867353.368042326, 10867501.5625, 10867548.378756722, 10867603.024912985, 10867871.453781813, 10867884.375, 10868101.301532026, 10868129.496246515, 10868207.294305295, 10868305.980499344, 10868567.1875, 10868703.125, 10869370.3125, 10869924.515412517, 10869971.119971419, 10871825.0, 10872701.87663523, 10872706.25, 10872864.0625, 10872933.34500224, 10872962.45022556, 10873204.6875, 10873346.938178996, 10873426.5625, 10873525.902657604, 10873875.80125337, 10874190.625, 10874235.566734822, 10874898.4375, 10874907.392564096, 10875741.411443276, 10875741.501932746, 10876430.10108747, 10877783.786749946, 10879579.694722207, 10885855.698633885, 10886368.043129055, 11051582.598140635, 11056314.0625, 11059003.125, 11059013.083162248, 11062185.917526564, 11062210.9375, 11064657.713072049, 11959989.0625, 14766656.25, 14860178.125, 15082892.1875, 15103320.576839035, 15110960.9375, 15110963.910482539, 15146675.972105958, 15188526.5625, 15399418.426670702, 15400581.25, 15515427.627098251, 15631848.4375, 15669413.72515335, 15672518.75, 15759175.060097147, 15842706.620509394, 15925533.960933566, 15948559.085886624, 15951791.995750226, 16009537.5, 16118568.75, 16154191.637419324, 16167833.748043485, 16195170.3125, 16197160.505697936, 16198300.0, 16205327.786535207, 16211660.142912365, 16239810.572016686, 16244309.075713743, 16244768.951753363, 16251342.772984711, 16257569.166513957, 16258907.851458324, 16287967.822897632, 16376706.93860172, 16388767.912700359, 16392024.004626874, 16392992.29689759, 16403970.3125, 16413165.489899324, 16413272.909780141, 16413548.28116568, 16413778.125, 16414834.561490148, 16416500.554493634, 16443539.526705425, 16443946.875, 16444218.31109978, 16444800.0, 16444918.363463314, 16444998.4375, 16445304.6875, 16445313.254302977, 16445373.46459561, 16445910.528320042, 16445968.02273663, 16446145.035092816, 16446334.447328676, 16446488.459390862, 16446512.5, 16446573.158184964, 16446599.670260578, 16446646.875, 16446803.125, 16447071.605834626, 16447555.013635281, 16449067.1875, 16449348.580166586, 16450564.46038286, 16451728.20313214, 16452509.272988115, 16453440.625, 16460767.452335251, 16462651.5625, 16466418.286503637, 16716059.55536942, 16770209.503611296, 16770457.394519981, 16781881.508796066, 16884349.94030965, 16948837.661948476, 16975970.3125, 16988235.096702956, 16994301.46535113, 16995168.127174634, 16996778.429856278, 17226233.49769338, 17226336.232279345, 17226430.113791153, 17226551.050638083, 17252147.388704974, 17279992.109761164, 17290812.431188468, 17304132.8125, 17315021.141593814, 17315026.00832645, 17321724.873208977, 17325557.8125, 17325933.69278105, 17377372.09416754, 17377556.25, 17379107.8125, 17379398.4375, 17379615.078075178, 17379877.443766914, 17380359.375, 17380421.952508584, 17380482.582532864, 17380900.0, 17381113.566815954, 17381303.038194593, 17381370.159889307, 17381504.22015589, 17381649.161815003, 17381852.052039344, 17381882.52934158, 17382114.664663482, 17382429.560908858, 17382829.6875, 17383329.88836712, 17384200.75991317, 17384281.25, 17384489.09689824, 17384790.570317864, 17385003.125, 17385115.625, 17385749.533301495, 17387362.020649485, 17404355.591786694, 17409666.972219188, 17425546.875, 17452882.03290115, 17505778.937186442, 17520210.235365633, 17574253.1157219, 17597814.39353459, 17600884.151338134, 17661696.994369656, 17663548.207668476, 17686898.4375, 17689646.052886605, 17690723.022694692, 17691235.522287562, 17692288.343967568, 17692490.625, ...], [5.970884576247523, 12.497374148098572, 42.475059669532, 9.088235127539532, 86.05962813889757, 32.60201247211043, 5.8021085771033665, 22.167312611908795, 107.53965588726268, 23.009379004191075, 76.80231935107118, 11.676386390650485, 54.16339549208011, 10.396758635379621, 171.56688088547506, 30.447830401193052, 18.490411832058527, 17.48248142154016, 7.220068140698886, 10.357825710745825, 24.590315279884113, 39.2356814815845, 84.43135834044989, 78.93289019249067, 40.18449086042949, 22.787353487950924, 47.953974774192694, 57.76101070012852, 19.387701028960215, 26.09704226260496, 37.063295335448245, 62.32290061798837, 6.222480402207677, 51.62989604121551, 9.008305257783913, 23.581565811475777, 63.72392492972083, 102.82117558190643, 6.42514372485105, 45.629390784786935, 50.64626510015879, 72.71303625973428, 43.21493224267358, 54.175307160195345, 12.784426832452072, 5.778384504772338, 16.26349123624869, 9.762121754714471, 26.987255148858047, 47.37055512969361, 47.21342886981634, 13.907930498025145, 9.557552809707612, 52.86177107904016, 65.78503886677385, 31.701429987709226, 95.11643674106607, 52.62975968839747, 24.61476013537682, 63.625177453634215, 71.23958175056833, 27.52638615718959, 11.915378851133939, 7.110949653659945, 7.4911691974029635, 46.20239276105474, 6.208190749148125, 86.93698999815777, 14.366444412104554, 57.20750901109315, 110.32286116497195, 7.910311312598327, 74.29226525022773, 56.56980403746132, 72.38835473180265, 19.523150197207695, 30.622159862388713, 64.5996345311771, 75.01677794650745, 7.321428541350663, 10.031805702287686, 48.27855976171725, 26.55498123441545, 14.045685385055755, 26.80371480661126, 28.264230211240182, 5.02943986710083, 59.27677130669163, 10.661219389234187, 6.341274829546089, 62.05649741660248, 22.68218887896249, 55.41578370384215, 25.055600699963037, 87.30698769071293, 131.1237951597758, 27.846396944687484, 9.648146669595592, 9.139572986924337, 35.173587621345824, 47.48836078345135, 39.378962270238645, 74.97372418289962, 92.99045163579669, 61.33510192506893, 61.18467223994704, 9.577704713442644, 7.146313163110197, 61.033290044440776, 17.959352218273203, 55.53744211471714, 83.71309618742265, 50.12205158357709, 10.52197965264427, 5.974903680361269, 11.346882365852549, 26.44418326714012, 11.520132439250158, 54.76841829984055, 46.770586124487906, 5.637634795461941, 17.858273395995177, 47.424450715064765, 60.030092643167436, 30.83620623940537, 22.86980119720491, 45.05492937428289, 11.995537613938701, 84.36606740578105, 32.63152671942381, 54.36850429951201, 74.07465715723414, 58.98443623605285, 26.86861880653493, 54.00279534805494, 49.21383232463353, 12.50306624785901, 7.510745954635262, 5.190437643852588, 7.347031944846132, 53.03161539165936, 14.62916994967072, 13.736501099357444, 111.97263826201021, 52.4941026530138, 76.0090230368073, 61.34952167350217, 14.483709896672606, 60.181071362993066, 11.307067894029863, 26.20517527438045, 9.87218149784192, 18.005836875394696, 11.038465903227044, 17.591682156706238, 21.16835326195744, 7.41446223669958, 114.30822165306587, 25.523266605458804, 9.340162858439339, 26.840016767154616, 5.681121277101593, 11.231062254875612, 60.87900345124655, 46.92005118498645, 7.75698597632525, 25.938390645347987, 5.338146066558287, 6.214325033716865, 16.382975451007994, 27.462128397690176, 31.808028579248003, 99.47925508287247, 60.34204489263391, 26.865811138133527, 32.70715181747106, 32.04710675435784, 106.55527841069811, 55.83996397709288, 8.776395161377211, 15.658073999136391, 15.628427642338371, 10.845062051062445, 57.94171791827503, 13.026289735887522, 32.919752274089596, 15.91585490273379, 52.60655514267866, 5.518523023665548, 53.11400883715681, 90.18268581504634, 18.698801818926327, 13.624909847173075, 14.655195044128433, 75.73093095871143, 6.662792191879936, 41.71282678498318, 56.0970199176526, 67.95385332933503, 77.66991204739587, 12.153774097357857, 13.778981595796788, 76.34345437032707, 20.648171267189294, 7.841346451269423, 32.36625628141665, 5.574596193079004, 54.60163451525515, 6.478195334290157, 60.64905649817305, 99.18812411052643, 49.183457620717306, 9.357693942624106, 74.07293972773785, 16.564155061141783, 8.260322336127603, 22.621237836914553, 10.98307941139505, 10.868746305747887, 58.213038612400425, 69.36610873954169, 22.895898589630214, 9.051473413628631, 55.27206633076395, 84.5749880471175, 105.46050709999483, 21.084219463776577, 25.743923420175324, 27.71725308075376, 150.93669293685232, 70.85240583794035, 5.884738393757534, 21.653225813940814, 75.71896427455899, 62.519285417782385, 102.29545356275362, 43.32798608403987, 31.2533002131612, 9.923905631179652, 17.01374819474528, 22.79982609189909, 5.851170581555277, 30.706772726570613, 15.042268359349372, 9.547305500265573, 43.302716616511184, 48.508737271849085, 44.97569489541206, 71.67354689125494, 66.21708809507837, 69.50376512237307, 28.801527567732848, 59.83744824989137, 72.61389471912823, 146.73455209756918, 10.284461304104884, 24.113428187355133, 85.877582100342, 20.37791533191274, 11.743432182484975, 79.41319286389205, 5.706272924185865, 19.238857477802803, 23.014882671132494, 11.98479017596319, 5.145523681809832, 17.73928733295867, 11.243349904898999, 12.521813430050962, 11.522473313647765, 64.28772120212118, 24.579999271382633, 6.091133613187272, 7.530586205896706, 62.84033074146751, 16.723924700541726, 55.88182049463368, 13.450219628822934, 103.32253417628766, 9.52266976087474, 33.75027149410864, 12.250100497725445, 83.50693610154777, 52.071060288072374, 11.178069920725287, 5.543558205707961, 29.7458083745906, 31.161716350019248, 28.212173201492607, 18.564623548856158, 117.35038153469543, 62.98616347979556, 15.302975030229053, 7.0694370898112515, 61.274319328831204, 6.383699662132631, 10.73718841122801, 26.73396903782165, 6.697628190585972, 77.10641632933813, 13.404458308876839, 78.76149624236811, 62.203593934300486, 147.32592867006278, 38.73984598553858, 139.92762077336124, 27.43098405599588, 119.69698563275693, 8.941996464966119, 6.977549470257569, 20.07802214008609, 28.53154152640633, 14.378503482704188, 17.17289925913006, 6.1817251772788815, 93.7391889515018, 13.721929651225947, 7.649334508228947, 53.367281578303334, 26.527133394236103, 13.90845898709522, 74.36945734298172, 10.934482410612784, 79.57655776569197, 38.44427689408808, 27.052766312386627, 31.692244735454977, 12.508722988851439, 43.423709893062295, 28.464266024348674, 51.41732158419695, 131.0892356412111, 8.14114537838714, 17.54316643050578, 6.051766781887097, 93.547532788747, 21.404972517880456, 5.204896361932935, 16.282655369664297, 46.762998631953565, 75.23538142730433, 45.836765242601984, 70.25336620254296, 24.505011985195985, 62.265417291234456, 29.906120819646432, 30.86087007164846, 26.499521450463718, 51.79628487198164, 64.93938509012486, 40.53687801154722, 14.829324563620286, 45.45051370680202, 12.188419788670405, 63.9142719359302, 7.290320419398418, 52.486830885778495, 10.974433557620054, 14.554510181995571, 32.85119622115712, 5.062477304313213, 47.48820282093469, 44.40519732074981, 25.88627966248813, 23.18976494809812, 107.54154763936565, 9.088502107928187, 9.71815101082228, 17.79725620463012, 26.91869946725244, 52.594801743425705, 40.38101697746872, 25.57492511216358, 16.41309091303787, 110.81944822540385, 7.680148955664318, 18.26799527576179, 9.005406005058617, 14.438303002916927, 8.356647388030083, 5.1347838696620824, 29.454208788021297, 28.223947272792273, 41.931656653572176, 47.2062646908798, 10.328719228421223, 9.15683753518779, 14.448033255001784, 32.3933351935414, 14.028054681264328, 79.43555982955495, 17.194131464444492, 16.570554050897652, 5.916247341495263, 29.421713828057616, 31.093650286813837, 14.99169723439587, 23.43973209222492, 7.881654525364308, 33.87123887024945, 64.47119246583117, 32.41638035437904, 27.697936482302822, 16.160176881567125, 66.53484087590486, 5.783423170094639, 121.65062568319723, 61.62759744119564, 35.92559723911289, 48.148555354012196, 79.37182876491507, 10.090081747515002, 12.515933626803358, 25.321454492417242, 22.15500946901745, 53.52521977396785, 34.371586964577574, 5.412687541257652, 10.69132960656063, 13.085381411074874, 5.631322302492234, 37.847623877374254, 15.535469971142332, 67.70925034845233, 6.203121611378003, 58.95243663318525, 7.564235641281006, 52.76074714779653, 46.850556437392335, 12.693219219458074, 106.21057280711227, 6.324526959844623, 81.17809201205397, 66.20855348600084, 13.193434615071798, 20.56307078607526, 127.78963203423314, 17.180066493583915, 77.34201973525954, 53.85283312346687, 11.59797940481249, 5.453828575965568, 5.7747015841935445, 7.255020246064077, 49.51000150768262, 16.143604680500477, 8.682687915780328, 7.796252320662537, 14.774164364902882, 5.462634841088423, 44.07302518212782, 11.976654371135098, 159.1354380608363, 7.481159090477957, 17.794727469374827, 22.197732934531135, 18.471216292769615, 30.93671741385687, 11.843567973823358, 11.36545067028086, 84.57985368756516, 6.001375227266327, 5.6929847736017205, 49.190896875440835, 14.080869947844946, 94.76169658751724, 25.330545337194163, 69.27212293923537, 9.797306161596273, 111.02406135787707, 11.190586295607831, 25.556979079304302, 24.032515011803675, 6.520430734918307, 24.290715153096194, 64.78772169836641, 20.870299487933444, 49.982273208640066, 33.797149970379664, 11.506910061668764, 7.836134486842653, 120.62385426162298, 66.54002945131953, 84.31583040289013, 25.90663980191225, 35.19398606234226, 77.9703910430859, 41.01252206596638, 82.18134531545152, 100.97366262297938, 84.94185361288946, 24.691456907310556, 54.33575357218158, 78.32068498256892, 11.360571511140204, 89.39702942058666, 24.42876269383172, 8.122424889770288, 17.85117632506381, 6.628587694162591, 12.68791139718569, 40.503452526610374, 59.86806295395972, 8.800593126867938, 49.735554219040004, 41.48743116056273, 6.409116823915023, 15.893470505933735, 21.900579301564385, 22.090442123342786, 53.891774974742276, 8.170027695241503, 107.93708515104699, 139.6291127361329, 25.053221943153495, 45.31622322505547, 52.5879125871201, 22.614718100988227, 64.5706358297885, 7.848756096144925, 39.699956946723155, 16.39034437127851, 23.796654649204008, 6.402605967097534, 17.368679292932715, 30.088731449598296, 72.22482341623206, 10.967949239694438, 33.58832292692346, 9.586625595234901, 15.222040063377104, 84.20482219144765, 122.5920406894284, 31.811460317991457, 15.609805393994728, 11.521193273227155, 40.82234179327178, 34.562526134530316, 178.86338410518505, 7.949653112701995, 33.203032350225314, 151.49881508886168, 17.71767103624645, 13.755434267223313, 15.615002551988342, 8.605487139666538, 9.667435698921821, 18.867636400001945, 27.810020567337723, 25.389778332291833, 14.838415697504603, 32.37381089130191, 44.49547868995823, 78.70304789322873, 29.37304685427688, 19.98572053084852, 13.13581811123574, 73.57204079850337, 38.448998544872836, 60.15123296735102, 33.471698984287855, 121.47562492297072, 15.629161447433205, 47.78531511831674, 37.858037387228315, 18.562355935710837, 7.583279318528285, 43.16969906211574, 13.95045700342497, 12.693956466478353, 46.167624499956645, 14.98299373448665, 19.463650817179005, 54.457986694066136, 9.379617689837554, 29.61720359111269, 15.130960178692236, 5.627453581258207, 5.485293360972009, 33.166228939244064, 23.853980591326977, 39.143606926439084, 5.250142660058454, 64.23668823894431, 10.326419593421432, 38.288249883950854, 67.31221454577043, 189.89379017709632, 111.26866002263966, 109.7822326389826, 37.714698572890086, 85.68115310355958, 15.345039788038683, 138.06142878247684, 33.82710221208467, 35.846173932763776, 32.572933670196115, 11.466609247785902, 47.33501604090582, 13.129703126781473, 26.442007016557433, 66.65971257605918, 27.365682655391648, 10.519938892593226, 6.270569508289377, 5.037653843131578, 16.477202339554356, 24.867412194721148, 80.58087316856383, 29.990761490198224, 38.432690178949784, 12.755937263053417, 65.38115666378866, 52.118170666499594, 26.45300340822467, 15.66768932175127, 35.3716898501529, 5.763044440923505, 16.848168767072586, 5.215194511196672, 42.035255906560124, 58.58564791127793, 25.71315301876079, 72.7283915081199, 7.757034405923899, 6.092696139708069, 28.99306303017883, 5.640851205170663, 6.763699739203982, 5.481757919194548, 24.483836668112282, 79.66856950538613, 104.42854995921336, 73.646497823053, 18.54969976120247, 57.4330994764786, 6.19360835226708, 89.32632503483552, 8.149241041657113, 60.222720013602284, 8.810660699611278, 19.206492053101055, 20.622530090960254, 12.012429573305521, 15.684217650428181, 115.76064404541935, 12.934438717426815, 65.93792525190827, 117.91757779091671, 50.70569840343512, 64.7522030380648, 6.451249712412594, 33.668549319418695, 6.431119493729238, 5.186917474884511, 13.015949886661666, 84.96067377297442, 5.952182986072594, 68.4808304177423, 73.71869869612337, 45.723019812431204, 8.549084672358145, 14.047104559481626, 30.450395727119776, 96.58508575493381, 52.16055069837839, 20.323471913720425, 12.576109964749637, 164.95252847080118, 13.879986897082787, 32.47523585268135, 96.27686308207956, 7.6523119305124325, 36.832951829296505, 8.573566918973473, 13.076720637256727, 11.755891848988671, 28.13811990476768, 77.96411290913427, 40.77772577569352, 25.525817883085935, 73.85150789852742, 95.75374067408057, 8.345697441977123, 9.144096328622124, 25.187575688353775, 11.909811215602117, 7.196282062551187, 38.77217886653021, 29.53466368407965, 27.49044538489825, 18.784263525790525, 39.62097875558319, 9.15043042710807, 45.521921086381134, 32.325949038452016, 46.80187712475867, 28.827388303878028, 55.70843634610438, 34.431932728674, 78.1586819810623, 73.5037311332694, 8.485002685755392, 7.508242149070993, 15.89055356562652, 91.07076455201315, 23.587236580124923, 81.54321537150818, 23.367869285268846, 14.93347159087675, 12.720253134212987, 23.922092966460713, 26.052025638270703, 47.58131890222816, 7.496273649201901, 23.43015120643441, 36.72593626806605, 12.564094934224, 52.769210455613354, 18.971862364138666, 35.40940951868797, 9.724534303733424, 9.056710429667513, 46.383796273264586, 16.58121439627269, 71.79344518833076, 5.904885668000271, 11.75730764871133, 5.333772830776313, 88.58861407894906, 36.02018732230616, 6.441242322918561, 5.624293093110159, 26.118190877005333, 89.15754882834676, 25.117134204597782, 87.98643368775659, 10.691129805444547, 8.372811118720294, 39.35488938262261, 15.626348116625932, 64.0163292692931, 123.347830430926, 34.81550282278609, 90.88408200540427, 5.551172430614287, 61.98977216332064, 32.16746522927935, 14.44336792316608, 82.6696511076598, 47.21901218487348, 47.98492497327529, 9.297274386624956, 5.863217774790192, 28.080325261149845, 12.834212209010959, 35.99379015848591, 23.952669436431627, 9.0251922977151, 19.80900668515877, 83.0879233975869, 18.433537671469736, 19.844054207599704, 14.456099082856493, 7.819809317071569, 7.8406270523092445, 32.00766208069405, 88.608640980893, 5.453590858860918, 83.90742128798368, 8.350882318275252, 142.4311292110949, 25.35019939769502, 201.81816354661893, 6.42094279151863, 84.23404695671711, 205.0656513388242, 34.40906508235156, 22.43279573050005, 5.322408585469107, 5.405693399685812, 40.8163665110414, 23.312429201115428, 63.73440354413732, 46.59120256110492, 63.00737952782447, 7.917364812015856, 27.16886673022526, 63.587463926667894, 42.75728647091622, 12.918405560547056, 85.90341565492533, 32.79402087712632, 37.837061205373416, 38.98224827459249, 14.089087836491275, 9.416668097511096, 26.16088275489349, 25.295228951156403, 16.249405843062494, 11.394209669227887, 5.707879608256354, 19.263336828995662, 15.694489716693209, 27.38154403929834, 47.590595421606515, 48.80753201968614, 15.592818061832503, 154.42455219333993, 18.351973153278585, 42.724151608232894, 27.413935767059076, 26.691105272227883, 8.075720114824756, 49.60973777518879, 24.262463245463184, 33.652440176192115, 6.408816099071627, 24.148306445438937, 47.77432773405895, 118.88478947966908, 60.73643101677179, 42.919843778283656, 12.677938325218243, 29.01772347759429, 11.656987401389326, 68.97390210049234, 59.07268589230493, 17.45153697285721, 68.03687378804753, 104.2112465454761, 64.82556286184314, 43.483200668340345, 5.501890952942648, 173.1421470634835, 81.86679679634581, 13.694496529308303, 33.2810918783306, 10.529169099631906, 5.659085860825337, 6.952189403316954, 60.17277020816492, 35.055905929962016, 33.5982450048289, 74.62738407792443, 6.6301396698529595, 24.910002996798152, 38.18982343100371, 34.067503037447025, 31.010490116943963, 95.04327056718003, 52.73753666804185, 14.575611934344177, 60.776874746442, 45.572400702281485, 40.49855624024796, 37.93438622587176, 5.962761159451549, 57.793664660356264, 25.84491169011775, 77.13781873862673, 41.07721212854334, 27.126908108747475, 73.50720178805801, 51.35997578662443, 41.61925540778789, 19.33448098136192, 41.74633247605243, 11.22296002434526, 77.21124818819573, 68.19055181606674, 63.512957636154795, 43.90672600486262, 29.4110747665896, 41.59981403517086, 30.1139761528279, 27.326638145780937, 61.67025546932589, 84.58922173123676, 43.357789270973846, 61.571663606105886, 26.622229058302672, 58.3503981616474, 55.04172129929595, 107.75046527396383, 31.91697326889968, 7.761166301364165, 9.364563322130085, 18.08008858103497, 12.406744926444373, 43.602354821477626, 9.861867145454408, 73.80480159986226, 34.717756182667614, 81.80944777448094, 37.089923730075654, 6.7326918869825185, 35.87109209979999, 73.45160132380116, 25.56046906376732, 37.87392217607963, 30.432244630281655, 22.125053668407638, 69.84192568628052, 5.906435911850578, 112.91166783188847, 44.86064724403784, 45.09385771622523, 13.065840313279299, 46.313404111870085, 12.349833053694375, 24.04368820115101, 23.48523386093813, 7.991469768354043, 68.25033559307096, 8.144194858803028, 30.840731124048702, 46.17125763981694, 74.93286461580429, 14.006070721214577, 86.7210838851455, 53.659780482915, 11.358274674306577, 53.52149597146982, 9.39835381049076, 14.566439288267583, 87.63462245518076, 7.192853589257275, 56.59436947913077, 50.23175255608584, 8.384319800291442, 11.14570354450642, 46.4475724926173, 139.0232597256135, 27.39685496020516, 60.06396302098541, 49.60831140720572, 28.162492221936596, 36.83702615899516, 20.34952055740669, 17.320857902348138, 190.4074434677932, 16.198211580744427, 5.076731119548324, 34.178944167494414, 17.342870421438136, 57.4791550221833, 40.49396273955412, 52.07374824788404, 19.44297330239985, 13.180086397686509, 36.97688519629328, 96.08842512656389, 10.206067526346622, 24.456496931569173, 66.68176795162675, 57.34426450052235, 97.30431315728234, 85.2966125175741, 142.79746533176535, 52.63620043297789, 50.0689677493316, 23.289251086689987, 52.841471331555006, 21.53626249522763, 7.098818592208376, 50.193226275923394, 30.943539906020177, 53.19548378674982, 11.990048670284885, 9.102928235798391, 23.31752508085323, 10.93543858072065, 47.63970806557593, 8.395734480217598, 16.667072111406444, 59.183516235043705, 11.181902529393552, 76.4506421869301, 87.6732933872228, 36.31039164584173, 34.10809171343155, 10.452899494688866, 61.29271695602907, 24.896793686473696, 57.39797402216138, 5.658875875387945, 5.497740826870092, 57.00627364915, 28.34264902948427, 9.627928107945172, 38.80725483597234, 5.043561284487878, 26.597369091142944, 67.52208287173892, 38.46902057828339, 8.078761445005043, 57.31175546846927, 72.59649267908758, 167.6641392236827, ...])
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)