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 = 46527
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);
([3836526.5625, 3949029.450435014, 4050820.633111089, 4081822.419366396, 4169108.9429934826, 4249412.261962925, 4250342.1875, 4263611.45709907, 4302150.0, 4315683.746395922, 4316647.468172036, 4332486.010916073, 4333250.353646906, 4351286.341969096, 4355393.020444993, 4360534.813005578, 4364696.875, 4364723.4375, 4383314.449689669, 4458546.875, 4462021.875, 4554560.9375, 4624093.1731691845, 7482432.551597001, 7537124.815408239, 7537399.789195943, 7537718.99948547, 7680305.737973955, 7847453.012387351, 7847906.25, 8064892.785885936, 8068678.518731995, 8068696.807747513, 8096323.559080606, 8097008.838516723, 8097710.9375, 8140734.8880164055, 8140981.195658393, 8165338.428188103, 8189022.786306031, 8202490.856195838, 8212814.0625, 8378618.456778634, 8392229.171168039, 8393281.25, 8393865.279801028, 8393886.251542518, 8395353.125, 8395357.40113626, 8396131.089170858, 8397203.125, 8401695.3125, 8404252.703406893, 8407489.679630104, 8408383.630238343, 8408496.178905604, 8409638.782361265, 8415865.373898955, 8426016.331951238, 8426495.499280743, 8427157.8125, 8427162.106602065, 8427717.065752115, 8427815.023054145, 8431078.49779105, 8431149.981186055, 8431152.819024887, 8431298.328858456, 8436510.54781882, 8439047.919430811, 8444857.448228162, 8444870.184529945, 8444940.625, 8445254.760451118, 8445970.3125, 8446051.962441506, 8446129.102775304, 8446217.677232416, 8447192.1875, 8447248.346357642, 8447394.991225941, 8447449.677926308, 8448314.000272347, 8448397.763787286, 8448474.554502832, 8448796.733456787, 8450058.955571517, 8452293.75, 8452414.67394256, 8452551.5625, 8453945.308661016, 8459985.31002773, 8461056.25, 8495242.270214496, 8521224.080511305, 8645735.065314975, 8647754.560554158, 8748577.291863134, 8831025.0, 8847055.57626495, 8930381.07543534, 9002068.592092307, 9060066.764064915, 9091907.413478587, 9091931.912069412, 9118076.180503616, 9123785.973404758, 9153427.658355737, 9181395.3125, 9203974.974170312, 9213891.41058423, 9222323.4375, 9230634.566379042, 9235934.375, 9239075.920300206, 9254703.720671806, 9271391.310320133, 9286140.616172727, 9288037.5, 9288046.562615287, 9288663.497334065, 9291412.5, 9304926.14557414, 9316396.525425106, 9317170.270117486, 9317998.4375, 9318012.168205364, 9318140.625, 9318346.182449589, 9318452.335052228, 9319048.55354139, 9319454.6875, 9319657.54116137, 9319901.83332759, 9319996.56694514, 9320405.581531353, 9320530.96762489, 9320546.938693937, 9321443.433611494, 9322028.125, 9323949.815913964, 9324000.0, 9324140.546141326, 9324505.013408456, 9324851.047424005, 9325027.62257353, 9325537.001305928, 9326545.975397505, 9326979.357554723, 9327047.096386274, 9327135.9375, 9327159.375, 9327341.039275082, 9327436.990700271, 9327668.86957984, 9327845.3125, 9328060.186809879, 9328769.23595834, 9329010.448131049, 9329511.828571355, 9329639.947365828, 9329792.43331877, 9330579.112329273, 9330582.864992823, 9330901.737837406, 9332032.984698541, 9332340.8197109, 9333514.98395083, 9334017.973977614, 9334131.282315593, 9334349.980565356, 9334612.791100204, 9334834.375, 9334910.917369675, 9335081.25, 9335754.6875, 9336796.875, 9337898.165615162, 9338334.59011592, 9338775.856015196, 9339321.926182196, 9339424.1563724, 9339538.444885598, 9339932.8125, 9340050.0, 9340154.499671353, 9344902.529460281, 9352300.876144608, 9353114.329223331, 9353589.547071371, 9354161.822974985, 9356387.5, 9356732.521664131, 9359407.203997016, 9367543.75, 9368349.386927698, 9372835.9375, 9372919.86123054, 9373756.654830081, 9377673.4375, 9378081.496846743, 9378110.795976393, 9387049.839648241, 9387052.724274747, 9388547.771019984, 9391571.200976646, 9398206.441649001, 9398892.50018736, 9398994.123021096, 9399283.101062585, 9399622.30461137, 9399847.72683273, 9400672.446574254, 9403813.796151344, 9404616.12108202, 9404906.7154681, 9404955.887833271, 9406129.228851069, 9406570.234119141, 9406789.0625, 9407228.579472715, 9407645.371354902, 9407778.45003022, 9407830.911820263, 9407845.610408721, 9408176.706784466, 9408242.1875, 9408370.871043218, 9408527.336147234, 9408671.550959958, 9408687.743640658, 9408890.97618538, 9409246.567851268, 9411066.680967113, 9411075.68444797, 9411183.474598419, 9411212.20441496, 9411228.125, 9411596.9980665, 9411661.712878086, 9412631.217453606, 9418835.905099688, 9419676.658502735, 9419821.050495699, 9420789.0625, 9421024.13169876, 9421346.16975957, 9421486.131677236, 9421522.15622824, 9421613.505763542, 9422405.448611625, 9422428.872939548, 9422478.77584192, 9422902.934153521, 9423048.4375, 9423414.562538514, 9424950.0, 9425587.5, 9427342.503682775, 9427505.722785972, 9427889.0625, 9429668.731149005, 9440198.227825629, 9442340.578929631, 9443010.821537035, 9443069.728249935, 9443304.6875, 9443329.228399234, 9443417.955345033, 9444388.76279953, 9445015.685186684, 9445504.6875, 9445686.993281662, 9445716.992485011, 9445979.6875, 9446265.277834993, 9446743.75, 9446838.0451462, 9446965.203616366, 9447007.708042622, 9447236.15813837, 9447646.705424374, 9447678.125, 9447843.526823716, 9448032.810824009, 9448112.949834544, 9449190.677454872, 9450893.75, 9454259.375, 9457113.94413952, 9458732.009350877, 9461137.498886611, 9462053.125, 9464104.448269058, 9464321.60777362, 9464369.237370668, 9464615.701706346, 9464947.459152905, 9464966.095333144, 9465274.793434974, 9465307.755921075, 9465355.371737087, 9465468.36649905, 9465527.780811707, 9468171.024569726, 9472272.001266124, 9473410.27461422, 9503554.6875, 9512494.096178183, 9519725.0, 9520835.056777176, 9528100.0, 9534433.170834748, 9540773.4375, 9597254.6875, 9605885.989419539, 9609304.71257244, 9611425.347191464, 9612202.148000265, 9614479.6875, 9623248.4375, 9628419.797192208, 9632078.583357083, 9635423.353161346, 9638773.4375, 9644658.229524823, 9645197.312565394, 9662925.957689961, 9675339.567661252, 9681614.442787554, 9697085.9375, 9707352.020128703, 9712143.83128154, 9720164.760730991, 9721342.1875, 9723158.176713113, 9727063.67607377, 9727174.297037339, 9731151.462240182, 9748960.9375, 9783538.288697345, 9784879.273514953, 9785564.035624618, 9787336.847654989, 9789228.125, 9791610.9375, 9792887.296411177, 9795874.495682161, 9800719.340116072, 9804701.125398358, 9805183.046317821, 9805905.410424938, 9806928.867368046, 9807328.189711928, 9807329.53356521, 9807849.698688172, 9807956.133365765, 9808134.001999926, 9808161.012805345, 9808355.384713741, 9808442.0130355, 9809065.347592952, 9809525.350245994, 9809740.625, 9809860.239558255, 9810034.375, 9810037.998210581, 9810265.70272404, 9810896.838476717, 9810917.146587122, 9811096.4557994, 9811228.125, 9811922.623599678, 9812359.252339244, 9816629.64215088, 9817006.25, 9819448.92561276, 9826415.625, 9828620.3125, 9831509.375, 9833650.92794025, 9833671.875, 9834164.257416014, 9834526.608056305, 9835281.212949822, 9835281.25, 9839876.694043387, 9839935.9375, 9841606.208810903, 9842141.34427896, 9849718.75, 9855464.0625, 9855692.251496274, 9855812.5, 9860079.6875, 9863948.556530748, 9864565.625, 9871112.721744772, 9871139.154669514, 9876004.6875, 9876139.278635172, 9900367.278930582, 9900512.775720468, 9906869.57928541, 9911284.375, 9926453.37857882, 9935293.75, 9937305.698474247, 9950070.3125, 9950081.389693592, 9950302.598398384, 9950621.875, 9950887.5, 9950935.459283097, 9950991.32152043, 9951040.625, 9951078.059924599, 9951309.25336983, 9951876.219218781, 9952076.5625, 9952160.34180505, 9952243.75, 9952528.203282706, 9952745.58118706, 9952806.146037748, 9953078.551124366, 9953109.27058821, 9953721.588922229, 9954132.88578409, 9954180.432872418, 9955451.89508918, 9957692.248180293, 9958493.096954195, 9961102.636932656, 9962729.396090541, 9969154.181618707, 9971049.081173599, 9971341.241954569, 9972828.214503957, 9973442.81263735, 9974481.916760577, 9975296.875, 9975926.477650993, 9976628.612022446, 9977179.6875, 9977182.145283304, 9977705.471687239, 9978037.439962845, 9978606.149619538, 9980349.952315222, 9982181.138763137, 9983673.847760275, 9984503.829638546, 9986354.5374363, 9988338.553455688, 9989798.362909257, 9990123.4375, 9991767.769360429, 9991876.5625, 9992065.371256346, 9992588.493872065, 9995943.259862212, 9996097.009221893, 9996425.891548412, 10002822.82223386, 10009062.688302109, 10022672.927513946, 10026284.375, 10026447.064231656, 10026566.975882547, 10026995.723818077, 10027039.78469636, 10027495.317625357, 10028232.445198275, 10028439.0625, 10029544.579697967, 10029830.872386858, 10032292.1875, 10033564.014408655, 10033646.66747716, 10034631.214363595, 10034818.664294906, 10036877.649390906, 10038028.881958447, 10046372.652421279, 10046506.42441565, 10056114.272935392, 10057122.104498098, 10057443.058081925, 10058103.406288246, 10058564.543116126, 10059361.085134849, 10060477.382292794, 10060632.8125, 10060840.625, 10061226.932400469, 10061829.179061618, 10063408.406079423, 10063519.533143071, 10063525.692542948, 10063963.06206692, 10063986.636679713, 10065899.681077618, 10065914.0625, 10067301.5625, 10068641.431246493, 10070145.734910844, 10070474.671675926, 10070552.232497208, 10072017.159631014, 10080075.91852517, 10082216.894336525, 10082829.46945272, 10082840.273637822, 10083050.479530146, 10083511.359926969, 10083849.233623562, 10084137.5, 10084846.051636307, 10085645.28054819, 10086012.52135365, 10087242.231751267, 10088349.65591209, 10088425.336405594, 10088723.603296213, 10088787.458915303, 10089059.31521066, 10089167.881068002, 10089304.6875, 10091539.0625, 10091612.5, 10091928.125, 10092294.553459883, 10092884.168472229, 10093792.075740382, 10094862.942173079, 10094956.310244625, 10096047.693663945, 10096585.671014965, 10096893.086631842, 10102551.5625, 10102620.450808303, 10103593.75, 10104082.32241872, 10104814.0625, 10104838.59325196, 10105223.78910017, 10105527.760830196, 10107008.47997432, 10107059.513481483, 10107932.8125, 10108114.0625, 10108259.375, 10108299.44706481, 10108710.665378667, 10108823.4375, 10109154.50831327, 10109514.809067108, 10115031.163609501, 10115460.296162358, 10115931.705054274, 10116046.875, 10116149.084240416, 10117014.310577696, 10117498.829689942, 10117603.15840894, 10117713.266724765, 10117831.93988119, 10117968.306431526, 10118293.53381036, 10119026.857178494, 10119150.465680884, 10119218.24219963, 10119311.679843668, 10119325.0, 10119788.691330807, 10120059.146051444, 10120272.025711395, 10120329.159347693, 10120730.180788979, 10120752.553022766, 10120788.793699434, 10120794.779866219, 10120799.625836482, 10120817.558794368, 10121110.875677476, 10121210.9375, 10121255.160523193, 10121281.504886255, 10121495.3125, 10121506.94407449, 10121509.644367788, 10121596.047182579, 10121620.3125, 10121720.310372071, 10121811.244179629, 10121849.939196529, 10121925.0, 10122016.27676987, 10122093.450758316, 10122096.907856742, 10122115.625, 10122208.767669555, 10122209.363615483, 10122391.670879563, 10122435.9375, 10122506.25, 10122733.781617776, 10123035.9375, 10123118.564993957, 10123562.903381217, 10123653.048013931, 10123983.967323003, 10124171.565787056, 10124729.368776834, 10124914.0625, 10125004.365895014, 10125041.039279792, 10126742.67773595, 10128318.303963883, 10130332.269646302, 10130460.9375, 10131263.631628815, 10131465.625, 10131553.42750013, 10131554.6875, 10131614.67216439, 10131632.133838922, 10131782.414946234, 10132258.664711896, 10136198.579056999, 10136317.1875, 10143110.147261178, 10147143.636747548, 10147650.043360524, 10149045.491076887, 10155889.0625, 10156625.265893215, 10156778.394820297, 10157273.4375, 10158351.992559487, 10158723.714861535, 10158742.26721366, 10158816.077587903, 10159387.778663084, 10159395.793485247, 10159496.509798076, 10159514.142459098, 10159582.8125, 10159683.986874867, 10160059.531050446, 10161213.598256828, 10161238.59671064, 10161435.96373081, 10161460.794044988, 10161571.875, 10161607.061550641, 10161657.748841958, 10161901.037883375, 10161902.330932427, 10161902.86987191, 10161956.924018366, 10161970.3125, 10162043.75, 10162100.0, 10162110.107080244, 10162112.40151588, 10162116.439115549, 10162163.580592426, 10162206.71407818, 10162251.421081059, 10162282.127116669, 10162324.306206793, 10162360.9375, 10162406.033420185, 10162443.300764598, 10162458.029227242, 10162512.569887567, 10162590.625, 10162600.584208485, 10162733.983416129, 10162735.237128826, 10162802.550404161, 10162844.633279046, 10162898.4375, 10162993.75, 10163009.623147704, 10163015.625, 10163029.338482289, 10163078.125, 10163118.623764316, 10163230.023930263, 10163354.6875, 10163523.644838616, 10163525.0, 10163571.031710053, 10163684.08877072, 10163684.375, 10163903.125, 10163915.136235805, 10164212.5, 10164248.0034298, 10165023.2444486, 10165118.124586217, 10165319.63582436, 10165582.8125, 10169076.650066968, 10171093.271401592, 10173835.9375, 10174217.971920917, 10177679.669408906, 10177907.48513466, 10177920.477692496, 10178241.109358681, 10178535.209634881, 10179903.125, 10182003.825421669, 10182038.939428555, 10183551.111453097, 10183576.993427813, 10184576.5625, 10184810.23788429, 10185162.904820887, 10186599.185466938, 10186703.914143598, 10187317.1875, 10188441.541336548, 10188581.25, 10188585.234880503, 10188710.695302773, 10192835.9375, 10197249.281680686, 10197419.785318606, 10197620.498295346, 10197645.140347447, 10198092.1875, 10198300.954439681, 10198351.839143664, 10198772.912383137, 10199042.400358954, 10199080.869012788, 10199710.162975341, 10201159.906285172, 10204081.51446374, 10204605.985929046, 10205065.5114071, 10205155.41028911, 10210208.652873812, 10210873.4375, 10216549.322058989, 10217718.563867476, 10217719.874294847, 10219487.5, 10221390.618569637, 10226278.777601592, 10229274.486781187, 10232644.42756369, 10234990.36464982, 10238451.5625, 10238565.625, 10240167.1875, 10240976.5625, 10241795.702778466, 10242714.983423183, 10248462.150514029, 10248476.79599392, 10248992.1875, 10250343.80413339, 10252221.123114096, 10252892.997503893, 10254910.203539994, 10257089.310082143, 10259288.22649444, 10261872.524565572, 10263365.170148347, 10263477.885948414, 10274260.599657606, 10274264.43901911, 10274663.515791295, 10274970.606815431, 10275137.485592388, 10275631.991816761, 10276034.375, 10278618.19014745, 10279467.699400207, 10279611.296443557, 10279637.676996509, 10279979.6875, 10280072.05494638, 10280802.822350888, 10281107.8125, 10281267.547160551, 10281532.8125, 10281633.364432154, 10282814.165783774, 10283872.858609555, 10284104.487652823, 10284105.654487407, 10285248.4375, 10285416.686998442, 10290712.5, 10293217.79030449, 10294187.5, 10294199.598294582, 10295867.363395106, 10296723.4375, 10301538.055824386, 10301786.472697837, 10301952.596156614, 10302151.5625, 10302508.950193975, 10306439.411902074, 10307281.853676632, 10307734.779572502, 10309040.625, 10309607.8125, 10309926.105335223, 10309973.4375, 10310780.801721636, 10318172.217034495, 10319045.564748377, 10325477.952344328, 10336235.07326985, 10337758.168651897, 10337905.892725952, 10339376.486850366, 10339387.147736577, 10339551.530404668, 10339701.766737808, 10340048.963796295, 10340198.4375, 10340409.51852829, 10340598.435614884, 10340820.3125, 10341302.348527972, 10341325.0, 10341673.4375, 10341751.5625, 10341778.125, 10341824.990369694, 10341853.125, 10341859.375, 10342046.684996495, 10342121.635515762, 10342239.0625, 10342455.07697273, 10342528.125, 10342541.123829084, 10342639.0625, 10342971.674430303, 10343022.101784192, 10343193.090570208, 10343551.357136061, 10343629.94319648, 10344790.359257545, 10344961.406759797, 10345392.784653326, 10345715.625, 10345723.96477301, 10345884.254648104, 10345985.9375, 10346135.670349766, 10346351.344175344, 10346984.375, 10347447.632335216, 10347868.627195667, 10347905.772082044, 10348312.67759763, 10349228.120382989, 10349882.074121157, 10351118.62545819, 10352670.3125, 10353528.994869886, 10354262.94433645, 10354504.721457124, 10354582.15022231, 10354876.586792076, 10354880.427858291, 10355715.625, 10355766.875734115, 10355965.456440834, 10356263.372963056, 10356901.220452087, 10357411.668477207, 10358364.345559876, 10359462.088212827, 10359518.75, 10359835.286771838, 10359890.702075034, 10359902.756157847, 10359975.0, 10359978.021688802, 10360302.404288534, 10364524.124415407, 10365980.05945403, 10366221.144691253, 10366470.853290739, 10367214.919602145, 10369849.100416973, 10370991.292655446, 10371719.340570966, 10372545.745891722, 10372637.750689644, 10373443.715074958, 10374105.30545526, 10375175.170613896, 10382668.869753223, 10382803.530813886, 10384016.612342693, 10384795.772138031, 10385699.875915598, 10387050.937823279, 10390049.391644515, 10397953.6313387, 10397992.906444723, 10402519.447657544, 10404033.881250855, 10404368.111768415, 10404575.245126853, 10405685.110477932, 10414536.674707431, 10414731.25, 10414827.666058403, 10417061.614102617, 10427447.898243502, 10429324.09519731, 10438886.99951197, 10439074.620511841, 10439230.394112876, 10439554.691280631, 10441896.392907606, 10441896.90687236, 10443045.24429529, 10446071.875, 10450773.387638481, 10451606.25, 10451617.5194199, 10452521.218345778, 10452737.498829985, 10455062.304940028, 10457584.097194776, 10457589.0625, 10458184.246031703, 10459568.75, 10460254.185972009, 10461228.055327004, 10463039.264304759, 10475116.09010238, 10490606.25, 10491852.745153857, 10498244.156758983, 10500831.310098529, 10500841.519029181, 10501414.166284326, 10501717.822659617, 10503098.4375, 10503112.094387503, 10503258.699664488, 10503554.855770104, 10503573.519568665, 10503608.453684045, 10504299.600320552, 10504468.733949043, 10504804.6875, 10505328.125, 10506384.462349081, 10507100.949790664, 10507968.031396173, 10508092.1875, 10508291.827719675, 10508626.377267623, 10509565.625, 10510792.328747347, 10513029.704363257, 10518277.716452517, 10519040.597930532, 10519443.895895917, 10521848.378352283, 10525459.215961704, 10526475.698138058, 10526881.25, 10527062.216922179, 10527256.726772787, 10527529.565030297, 10527612.5, 10527765.231468398, 10527817.036690036, 10527851.5625, 10527917.10799806, 10527928.307234194, 10528392.116348699, 10530742.881711103, 10530752.258080691, 10530769.69105926, 10532663.650759373, 10535488.682556188, 10545627.70529081, 10552420.284423973, 10554518.704927444, 10559655.978640066, ...], [98.45381061944855, 5.159877022321649, 11.668767733266657, 7.81275284491552, 22.19928988618312, 80.58338718118969, 60.4862396433536, 22.480847127373238, 33.92278986338555, 5.8864706010080905, 17.8149989719994, 17.308512738217726, 26.777985628874596, 28.901043660624836, 15.395387104050442, 7.2415552313868705, 37.722345433828295, 79.17484200454007, 16.655860255796746, 31.4825931834, 65.0928052941619, 81.53113716737042, 28.047684479229382, 46.07467097531528, 8.191316163146645, 22.471103242636232, 64.07894211916178, 5.77704181809466, 26.48096745134408, 63.73726642119732, 21.047211632116074, 16.689602380814975, 17.30018858069679, 6.788024384792359, 7.420079614922518, 40.056777122008576, 12.036941168231019, 25.946433737557392, 21.137556539569502, 18.273949679225968, 11.509390576183971, 89.52582200280435, 13.930438687452694, 13.281538092336593, 45.49978817337442, 8.112093605004064, 16.290782590670773, 43.581552483953175, 22.42533831414486, 10.885293627617967, 46.651330490039584, 59.68949401843914, 10.527015997372011, 5.747192691550617, 46.76453075413191, 12.819265498486924, 5.036854465915698, 5.600302040493862, 30.8474658507033, 87.11337865006409, 80.17065588047274, 6.048122907956248, 68.27172893943725, 42.57775001354129, 7.743874301507938, 25.421791050020936, 8.13113949203777, 10.962035607664221, 70.30257183428016, 8.928665945465854, 6.431465336999383, 59.706738681734535, 57.541701704413626, 62.60347930556488, 78.59305364283945, 5.636559773935406, 20.68760641836357, 17.206870956655774, 29.495428486986405, 16.312107696584164, 10.66011034141715, 23.47281719404869, 11.031814356999492, 19.91919239165741, 16.8319535315111, 10.913445648289567, 7.015395214467686, 52.285067899943634, 7.840443556964233, 41.44394075574537, 28.449350695332253, 7.391033340083137, 71.09593909423458, 40.503173624762915, 15.50193702340426, 18.440865115630345, 26.245300283090366, 18.70913089299759, 30.998193408145887, 40.80089535760818, 54.50270842673017, 25.752959758125925, 87.80959233107535, 22.56324653513983, 12.348603081689504, 22.756964945437776, 32.49751255806993, 8.965716002188133, 92.7591929070357, 8.272965224153669, 12.626643555654214, 37.414718781448634, 74.42439721732387, 78.59458634345708, 20.182908218685665, 9.891560919041025, 85.45494491908575, 5.461387789888084, 31.33816154130231, 29.425735179116877, 13.151046197508157, 52.006115574075636, 14.339552926262504, 6.433653861911349, 14.782390893960557, 44.487100793628656, 34.00656171841211, 62.237951901616235, 52.5237184598468, 127.62597802825329, 23.757092638425334, 60.484403855687106, 9.112046567980357, 16.085089635145128, 26.025152264305646, 45.50116699386048, 29.513538027181013, 7.138296120816265, 13.858711188737475, 50.15215680258308, 44.26100371033863, 49.81059556986976, 8.24531118367093, 7.725525631584472, 31.95945366220816, 57.647144999648546, 21.506137460202254, 17.693171349819266, 23.375622966616678, 9.52588625426081, 99.3926105033532, 46.90585940923944, 16.796765418864997, 20.11565415985722, 25.323598643323606, 35.032952087525224, 104.20295873862908, 8.561441710823583, 61.83329373881484, 19.938011214235164, 22.197202893185917, 86.50870546458474, 27.874292180280698, 15.51925756853693, 88.71119948244389, 42.075293778101255, 8.392299469677162, 7.386746057448708, 7.34477003557197, 6.4921689425382825, 44.34225412592629, 18.234323090251507, 71.38842297943677, 11.096386918710019, 63.38894864724961, 71.53872414881306, 64.57068610606095, 24.116642445884526, 8.403707300051584, 44.56946948164996, 11.208661503349479, 12.474118045455443, 13.015070758896274, 37.3319277924274, 79.75569252938193, 26.74487638025967, 5.504858747342661, 24.15942837879347, 127.5232215714706, 11.980198883558002, 10.212138286329056, 143.1175826006958, 6.231139582600395, 20.474957225578095, 102.26308448010649, 5.769969291095324, 55.60013932245219, 8.061533798364092, 28.3028820920697, 29.946621068532224, 9.549228093398117, 7.552840654420044, 20.335268230882036, 13.606415908811634, 162.5846694732778, 19.916636475418667, 15.726022538616723, 7.720386893424444, 7.743964825224388, 11.61083536910694, 7.766380418155245, 19.62090602850851, 17.68332378088949, 6.446133867511679, 33.83301739522524, 55.68554531558979, 22.987851825166604, 21.115515036862405, 40.0072763270096, 76.3097863959776, 12.975085191472793, 17.965193180080057, 5.549066003058263, 6.22539681467081, 9.596679684730253, 15.52153217920761, 58.08745730962036, 17.60511457293105, 7.909264707116221, 13.835256388596362, 32.909410379671414, 11.724901859211114, 7.042986332034412, 13.308189536055378, 32.69524318940391, 18.253163624882536, 10.695117700056793, 40.91673829922092, 7.154182284323065, 30.41528121449909, 7.591508471681476, 81.47554307174417, 57.333501140035814, 61.33527233834673, 81.23611621900258, 7.875221283234382, 94.5375959101734, 21.34903400611375, 34.42226921770101, 8.012586550274781, 10.070146264434026, 34.97010821015825, 12.324251093474878, 25.252908067741235, 58.54108706173321, 12.010948668322587, 44.19916701945494, 48.34085897352984, 74.95130113685698, 21.225854481366568, 38.30472278993257, 37.48985770316702, 5.284654205132005, 21.600650320539813, 14.517197231648248, 26.77051361854522, 81.81083387250408, 21.911030407346136, 12.585530561144179, 37.9499075308661, 51.523171133424256, 38.35192830565306, 7.429701711922959, 14.246889057546802, 35.90291443789803, 13.765066896211415, 56.344284830519626, 23.730360518201987, 7.457623680716053, 14.557773219757982, 27.89647704587766, 25.573114335809304, 38.24715829900282, 14.154030114895788, 124.35350374731364, 11.912029716082111, 15.145284498414506, 53.742592287285554, 58.63517317738649, 26.53176328266184, 6.170792767857797, 6.486916711589439, 52.52836602926905, 81.55329386551082, 9.115227133456298, 61.32015699460621, 8.327561782246464, 6.88601457972228, 17.09888086625188, 9.162641910427935, 27.45306589006299, 9.98575634057688, 9.026899536434868, 8.112581959203348, 8.702809183956148, 24.14531161259114, 62.843017783563454, 54.966189313954374, 7.215525137417713, 33.34508416636355, 18.383538105092377, 39.778393575748325, 5.840978419982136, 58.15369141814388, 93.8200770823564, 9.375693337828169, 11.200918600120835, 16.453511616519737, 27.775606356440218, 117.50962104356546, 59.61061512820791, 6.664812648768273, 17.033113663277067, 10.998390234278965, 55.42958124124562, 16.811250700422164, 7.241429331098933, 25.428244426230425, 20.04693032880003, 16.6204617614527, 70.09383249762098, 17.02913557604298, 15.260639310687528, 7.876933447193321, 75.19758826838964, 16.538804965726936, 10.573029788463144, 19.682149356827335, 35.51930287120818, 130.83714558588954, 33.832271131009534, 86.30664388921882, 45.310536888652685, 20.09703901063252, 62.03199146895701, 37.90788068571277, 7.068943336797042, 5.509094980882438, 17.796210100612566, 7.011103450151209, 34.109168114428556, 34.1356705177018, 18.80075602361721, 6.776494938028144, 14.385540974307792, 29.203861425354035, 9.234691797988933, 145.626864489586, 11.247489975917066, 12.425798797524156, 5.198999760221752, 29.8388822885459, 78.65311400203188, 68.36874895839725, 19.72232506681876, 94.34325084543492, 17.2546424392582, 7.14203393459695, 75.53878201230768, 9.297046968312598, 13.552921355099087, 28.8089769410998, 35.1724056536449, 55.64391822112443, 5.04078053970141, 96.28354213190016, 52.603569644170264, 53.58159679272029, 45.96429413154608, 64.46190642548999, 12.972031242864603, 64.57547827509367, 65.68969026339576, 12.59860532418864, 14.802147239506636, 60.02494261423725, 15.467771448518294, 58.94411211990615, 27.735177162951665, 7.885897785661664, 78.53039806638239, 29.77220748637746, 37.08739313538544, 68.4066867722537, 110.10404611425045, 15.41547522977593, 113.86569065699987, 11.492948574368576, 63.09902467292011, 34.088501909315994, 39.267162119945674, 73.04491766814651, 5.0462211498472165, 12.729697043867779, 147.80564555723495, 16.004952531124697, 71.04708360545462, 170.0108244383446, 64.9947996846082, 15.502101333448403, 21.231776853954674, 104.07801407251301, 29.219907966038107, 10.454337112362227, 85.0891276430446, 68.4895041152781, 51.83275620167552, 22.085972863729246, 40.19795744118568, 46.982941338996376, 65.34228301681141, 44.48991621119874, 15.24852435182877, 11.575365109056548, 9.245017499509823, 5.304433952700355, 6.07730819725734, 23.93022290064309, 11.244219744943813, 19.447558682084242, 16.381285932900646, 5.818483772801502, 33.323560732713645, 69.21541281291707, 23.861097655422757, 12.358724682838977, 57.366819462776725, 92.10535874331828, 15.29399540209418, 18.01472072094164, 18.28383183861025, 67.9862834684519, 5.80772872718235, 22.51077392905015, 46.30577741736098, 6.956451625695681, 10.095971992595649, 7.581666649192968, 14.572228725375721, 44.8119554864138, 63.745481631393346, 60.85719714300556, 27.18711091192745, 61.83072265289407, 41.48601119786967, 80.52947120695228, 79.38278960674613, 23.589797721736414, 56.91857219282166, 7.513970682785316, 34.33227732850794, 11.737643039574277, 93.74348334876356, 29.49656698621539, 27.17403205404352, 24.521554510592175, 8.03412377169767, 61.57422437665714, 11.436956747443407, 5.921186060351176, 45.48039936013218, 5.08226885300548, 8.289289561310865, 13.704786896737515, 29.601015617143556, 12.730682121045993, 13.674216722073037, 63.52477577265983, 56.6225959279503, 5.69367677445805, 5.129741304131516, 19.49887878633703, 21.73991276841179, 6.008153102521306, 125.98816922126113, 11.411731212030116, 24.853224965969087, 20.668085768258862, 6.950717547546346, 8.441147805253598, 23.509375577924654, 8.366223222648749, 81.5584689206924, 44.6333338582352, 39.71436878613626, 27.894134705171606, 126.39892907823271, 17.817507653071242, 16.023497663580443, 9.994754308345652, 17.626172442863357, 6.911609901600602, 51.420145272181465, 64.6113688070532, 30.96704702589266, 6.0128345299323644, 9.71608208389976, 23.395559912212857, 66.95044377262619, 9.307949022297489, 7.385823775304797, 17.853005471224932, 24.85723693718631, 43.49432429976723, 7.253481279495777, 16.83980681050326, 67.94287118728337, 72.12621653081784, 18.77787814150228, 27.907837263030054, 14.886130507897368, 89.84921226494875, 23.203455084758513, 91.65235819958154, 62.03331865353482, 21.245345734431783, 27.395071091270697, 99.98136225731122, 38.379737879938595, 32.40710125152141, 83.75564798380697, 57.105012637397834, 56.20658254374761, 38.95261675190374, 102.22127652831796, 16.945307756150385, 24.0943580841926, 48.50644713050073, 24.188501987160066, 5.150194828331587, 54.78437834939399, 11.350999535148114, 37.43284350076437, 36.92933568500624, 121.49471470723165, 13.411064940943797, 84.6822095304071, 51.92849429288993, 95.67306688717898, 7.158336331291861, 58.21819780971583, 37.54785489701959, 47.51287010771827, 169.04590440978467, 9.111441677357247, 87.40867753470847, 25.427225333942683, 5.570445112421049, 26.925499197410236, 73.44428059234195, 50.619024832490965, 65.00377360175537, 5.565314360376409, 36.01272302628879, 16.681632591226887, 15.070396235916947, 84.7837301409248, 18.121764750696993, 29.559029276038316, 21.26500740212087, 11.621819986042535, 11.94297587574443, 21.41563870632298, 10.049311739780077, 70.99344480205953, 83.64895597611385, 24.702833901575648, 15.548847992751952, 30.830454556436816, 17.226867855974824, 31.14253872172938, 8.149368499433074, 21.173622770793884, 22.84748064798707, 9.666409549163637, 29.530844155030035, 90.39105056439165, 10.635178881246592, 16.756137535869435, 62.10593473955704, 5.567741841363407, 78.04597699471654, 8.717469098637638, 57.810034239463036, 41.16619704929532, 16.255229446601845, 21.3159952432431, 82.78561898673713, 25.091301162535117, 23.76043293096961, 15.068240479711838, 75.64460332921439, 7.3974159269720525, 28.30157968703192, 10.406008169583938, 36.326606394800095, 111.21901328708563, 20.60953652391035, 110.39506873080083, 9.179720489539186, 48.703083110579776, 16.33876899251728, 26.6184648431638, 9.082951034037695, 99.08300528255728, 62.02510781259279, 46.59257769148993, 8.51851888696649, 71.89047950183094, 102.0217798656465, 53.601388547141056, 132.81442908571543, 13.519446712254178, 61.747774153035145, 28.964006968462396, 91.13054520179297, 8.63762965168502, 25.5188758912943, 22.579785455923684, 6.629530535317962, 45.15345036334018, 130.69430705182162, 12.595727406352314, 50.03482792580816, 26.551501080358292, 11.418797960673587, 45.752265672885315, 28.22197423910116, 9.570470910166666, 67.30954823406182, 11.873762596128266, 72.99117445440734, 11.254633040545505, 11.917388633011793, 16.12185774815313, 11.97310456963095, 13.711036708389539, 7.142630306038151, 30.734421563599362, 22.686756749107108, 11.380710551364702, 7.004539088519178, 8.966336984586738, 5.291898197158576, 5.606156857251528, 38.91049647902433, 93.62621411774694, 27.32557005477592, 21.251001433131524, 28.831248989131666, 142.25397959624834, 19.05107215298508, 61.61243304272402, 83.78959456448952, 83.74139791038736, 8.715776993868387, 8.235174974895603, 27.439067713900233, 13.375871564140315, 14.359737391352905, 26.01236835322717, 8.812120826477368, 6.950283286947215, 55.98714672647842, 107.78580254387296, 44.786735761072364, 120.77554539019712, 11.238731399138807, 28.554797138522098, 38.08484408679834, 24.882262972691315, 19.716337285075724, 63.343089325414695, 10.209570103698633, 60.65878416180742, 107.97219182144362, 11.539071769791505, 100.07815878665755, 36.636677975628665, 65.33864906894362, 9.226896988109186, 5.212078718406001, 34.228146691283044, 9.51309680104928, 64.94802058096778, 18.638401044259993, 6.707677533837885, 108.2214474560923, 99.67089551848106, 21.269847301467323, 40.42981894674239, 53.9636582018573, 23.840306069437396, 19.077074626635092, 113.18027180813051, 40.88634821728006, 54.159787028231435, 46.61579537361655, 52.11076659790286, 63.39524891941551, 5.130115738437479, 23.407369725205307, 101.2086925849065, 25.789671559684493, 19.479291360256173, 76.94877758718263, 72.2666105749206, 61.34466852385741, 21.995740175214994, 41.58893477630035, 42.3559283434009, 27.137705817901285, 7.232094310694957, 91.00783769960412, 19.14019352086591, 86.22190014234928, 10.248470384142761, 56.78659635892406, 28.925869999554234, 9.134677331628513, 72.66952202186029, 12.765410134170232, 21.226169966220077, 7.671847997808657, 5.524783363500953, 167.2319723730537, 84.3574612351663, 16.112359605588406, 40.86493876599582, 15.820037644150705, 5.906899655367696, 16.680835483555747, 7.26848333934351, 77.55002048668402, 35.10648872720347, 22.96532604739199, 15.745223532091156, 12.75625384844729, 100.85844812646343, 73.88999850980119, 12.867878677476163, 22.132510649559464, 34.161858989204724, 46.533688044933285, 9.951745236922797, 118.88397664494268, 28.331420454565006, 24.270779642255764, 30.967493648414827, 91.65986378503435, 40.36292871557578, 39.63057726079936, 5.636006419556376, 67.28220455287759, 23.138559065883666, 8.414036951731653, 41.139439982640155, 6.774362216517617, 27.71260361744869, 8.767017976444931, 12.727917777824532, 5.961260421741029, 31.346521658987875, 9.948502755544515, 107.36849874941511, 20.27573760891152, 74.91323432563703, 46.507318406566476, 5.2300974056264415, 8.448599982233018, 14.886877248618053, 5.427610968071502, 29.852501070991487, 20.916118351553667, 37.33662939146641, 6.837346983645385, 101.15256622252585, 109.68380048285434, 26.850046591753017, 23.716961798443357, 31.712695173284114, 124.5357483588526, 130.25693439141935, 6.878935909157202, 39.11382570932324, 50.247754343531454, 68.99234330301607, 7.994912384934183, 29.213215061247336, 8.94125600007997, 37.71075592260759, 7.289470173359557, 58.01784686527541, 16.225521429497334, 15.657182232901498, 39.28428664948832, 80.2381155868336, 9.829026955287764, 8.920978487527506, 30.7632218506481, 7.014087870537328, 6.312375688581849, 25.576500255082138, 16.74592115109255, 63.87955963914583, 81.99009287378655, 81.49244257084958, 70.20233775207646, 13.469967238770622, 50.26185462754449, 17.86481030989458, 25.526142381182925, 6.163853366033696, 9.651870456489544, 13.734708464273698, 50.87720787803228, 152.9265871477291, 35.370807463731104, 27.29753999581863, 17.41546032887867, 89.44230532848371, 81.34072591288825, 43.149727724319604, 52.43780862255133, 51.5730133264007, 87.07609672329848, 88.94286587386335, 92.56865990247208, 31.073041207814978, 23.021988092185033, 40.27050005040799, 39.27473133581833, 25.265414135034163, 34.07160123184784, 52.774878537376104, 15.324895856351404, 57.049817389214645, 35.35005079871101, 71.82827122936214, 25.10973092095438, 5.7213447888465705, 23.52256089556127, 9.16359021839599, 8.426586454680765, 24.198424966085053, 8.551363693248332, 9.893110778777995, 83.30529106765505, 9.820936359067263, 59.10864684387811, 33.26693998871477, 9.115286067888883, 57.58727567571344, 37.45904190112083, 12.676199097757452, 9.22967983459003, 27.229264604465623, 26.543960217752385, 26.105357474107308, 50.120235107235615, 14.380877187343618, 146.26986574186654, 19.765056574381827, 6.855580058791037, 7.615565742266135, 88.00264992753881, 39.82220114370821, 20.621901779942387, 54.04621224211659, 107.31501567197029, 62.34052600907815, 38.05088110976954, 28.238694173503198, 80.2060119941674, 12.209158462240257, 6.046298821749801, 54.73278590379808, 7.383696988049028, 5.618322393951378, 22.909482875489633, 104.28448509141208, 26.63663413970475, 19.54179572391768, 7.314539613120155, 11.763525689645007, 7.934772782549374, 22.53198647998913, 185.4901797040282, 9.962790149552854, 12.360774367890194, 19.513820206326777, 37.28274059730708, 19.218128373239505, 23.1995085175029, 17.969332647958456, 84.05545880751416, 7.153291014642811, 16.752403192826282, 20.77475700872375, 17.040115667332916, 21.3315825278746, 20.33344838192103, 60.81986150572672, 17.300775682655203, 7.3241982848700316, 5.425831813568719, 28.214553719287803, 20.216750290444637, 15.96608278559503, 25.95525914748913, 31.987751620086215, 32.686097176923745, 21.912696659905542, 18.349019818942573, 158.63610580141727, 7.305782991260869, 80.90017832297386, 22.78585320731932, 8.699286189557991, 58.78045941078662, 21.673617725513793, 15.064399643871587, 56.42950198010268, 63.981679931250795, 85.1740214413009, 52.32693793306904, 6.310065077228841, 20.060846760777313, 11.125878486297331, 138.0531179659797, 12.31347583575571, 53.63519522124029, 5.456258169562817, 61.702108931160126, 44.493231724819836, 11.020522206497645, 13.74793607049746, 22.677716956326407, 29.239682156253465, 26.594038781659407, 5.139291602103818, 9.38274216695383, 29.49100993463955, 9.420727991064064, 117.09259302275103, 56.21634023244782, 75.6846961623906, 21.9328835681631, 20.82668103570235, 15.263823667324393, 9.939570661524396, 22.555840867601844, 28.21109551446131, 142.5335731654929, 30.13182454846013, 25.189693688283384, 34.84196749520961, 107.60230220598262, 66.00388316597463, 23.01602873777633, 5.603878177051483, 36.62251263694454, 33.034272302577676, 95.70063202582881, 45.720486169001965, 37.11541568450583, 6.285808931883797, 27.406638451545376, 25.735399851795968, 18.493805486646025, 72.8638309442305, 23.96933283481166, 13.084617409314449, 74.85297171741733, 56.29234444494324, 20.33096527915596, 9.207059224350242, 36.17566680628207, 30.24437546481811, 6.516042581198292, 67.23766829074673, 8.691300591075024, 28.232928831623525, 15.203320587173165, 61.16708476887606, 109.7448099275495, 5.903669542195058, 35.90694513892235, 27.663341852131964, 13.999121635991358, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3836526.5625, 3949029.450435014, 4050820.633111089, 4081822.419366396, 4169108.9429934826, 4249412.261962925, 4250342.1875, 4263611.45709907, 4302150.0, 4315683.746395922, 4316647.468172036, 4332486.010916073, 4333250.353646906, 4351286.341969096, 4355393.020444993, 4360534.813005578, 4364696.875, 4364723.4375, 4383314.449689669, 4458546.875, 4462021.875, 4554560.9375, 4624093.1731691845, 7482432.551597001, 7537124.815408239, 7537399.789195943, 7537718.99948547, 7680305.737973955, 7847453.012387351, 7847906.25, 8064892.785885936, 8068678.518731995, 8068696.807747513, 8096323.559080606, 8097008.838516723, 8097710.9375, 8140734.8880164055, 8140981.195658393, 8165338.428188103, 8189022.786306031, 8202490.856195838, 8212814.0625, 8378618.456778634, 8392229.171168039, 8393281.25, 8393865.279801028, 8393886.251542518, 8395353.125, 8395357.40113626, 8396131.089170858, 8397203.125, 8401695.3125, 8404252.703406893, 8407489.679630104, 8408383.630238343, 8408496.178905604, 8409638.782361265, 8415865.373898955, 8426016.331951238, 8426495.499280743, 8427157.8125, 8427162.106602065, 8427717.065752115, 8427815.023054145, 8431078.49779105, 8431149.981186055, 8431152.819024887, 8431298.328858456, 8436510.54781882, 8439047.919430811, 8444857.448228162, 8444870.184529945, 8444940.625, 8445254.760451118, 8445970.3125, 8446051.962441506, 8446129.102775304, 8446217.677232416, 8447192.1875, 8447248.346357642, 8447394.991225941, 8447449.677926308, 8448314.000272347, 8448397.763787286, 8448474.554502832, 8448796.733456787, 8450058.955571517, 8452293.75, 8452414.67394256, 8452551.5625, 8453945.308661016, 8459985.31002773, 8461056.25, 8495242.270214496, 8521224.080511305, 8645735.065314975, 8647754.560554158, 8748577.291863134, 8831025.0, 8847055.57626495, 8930381.07543534, 9002068.592092307, 9060066.764064915, 9091907.413478587, 9091931.912069412, 9118076.180503616, 9123785.973404758, 9153427.658355737, 9181395.3125, 9203974.974170312, 9213891.41058423, 9222323.4375, 9230634.566379042, 9235934.375, 9239075.920300206, 9254703.720671806, 9271391.310320133, 9286140.616172727, 9288037.5, 9288046.562615287, 9288663.497334065, 9291412.5, 9304926.14557414, 9316396.525425106, 9317170.270117486, 9317998.4375, 9318012.168205364, 9318140.625, 9318346.182449589, 9318452.335052228, 9319048.55354139, 9319454.6875, 9319657.54116137, 9319901.83332759, 9319996.56694514, 9320405.581531353, 9320530.96762489, 9320546.938693937, 9321443.433611494, 9322028.125, 9323949.815913964, 9324000.0, 9324140.546141326, 9324505.013408456, 9324851.047424005, 9325027.62257353, 9325537.001305928, 9326545.975397505, 9326979.357554723, 9327047.096386274, 9327135.9375, 9327159.375, 9327341.039275082, 9327436.990700271, 9327668.86957984, 9327845.3125, 9328060.186809879, 9328769.23595834, 9329010.448131049, 9329511.828571355, 9329639.947365828, 9329792.43331877, 9330579.112329273, 9330582.864992823, 9330901.737837406, 9332032.984698541, 9332340.8197109, 9333514.98395083, 9334017.973977614, 9334131.282315593, 9334349.980565356, 9334612.791100204, 9334834.375, 9334910.917369675, 9335081.25, 9335754.6875, 9336796.875, 9337898.165615162, 9338334.59011592, 9338775.856015196, 9339321.926182196, 9339424.1563724, 9339538.444885598, 9339932.8125, 9340050.0, 9340154.499671353, 9344902.529460281, 9352300.876144608, 9353114.329223331, 9353589.547071371, 9354161.822974985, 9356387.5, 9356732.521664131, 9359407.203997016, 9367543.75, 9368349.386927698, 9372835.9375, 9372919.86123054, 9373756.654830081, 9377673.4375, 9378081.496846743, 9378110.795976393, 9387049.839648241, 9387052.724274747, 9388547.771019984, 9391571.200976646, 9398206.441649001, 9398892.50018736, 9398994.123021096, 9399283.101062585, 9399622.30461137, 9399847.72683273, 9400672.446574254, 9403813.796151344, 9404616.12108202, 9404906.7154681, 9404955.887833271, 9406129.228851069, 9406570.234119141, 9406789.0625, 9407228.579472715, 9407645.371354902, 9407778.45003022, 9407830.911820263, 9407845.610408721, 9408176.706784466, 9408242.1875, 9408370.871043218, 9408527.336147234, 9408671.550959958, 9408687.743640658, 9408890.97618538, 9409246.567851268, 9411066.680967113, 9411075.68444797, 9411183.474598419, 9411212.20441496, 9411228.125, 9411596.9980665, 9411661.712878086, 9412631.217453606, 9418835.905099688, 9419676.658502735, 9419821.050495699, 9420789.0625, 9421024.13169876, 9421346.16975957, 9421486.131677236, 9421522.15622824, 9421613.505763542, 9422405.448611625, 9422428.872939548, 9422478.77584192, 9422902.934153521, 9423048.4375, 9423414.562538514, 9424950.0, 9425587.5, 9427342.503682775, 9427505.722785972, 9427889.0625, 9429668.731149005, 9440198.227825629, 9442340.578929631, 9443010.821537035, 9443069.728249935, 9443304.6875, 9443329.228399234, 9443417.955345033, 9444388.76279953, 9445015.685186684, 9445504.6875, 9445686.993281662, 9445716.992485011, 9445979.6875, 9446265.277834993, 9446743.75, 9446838.0451462, 9446965.203616366, 9447007.708042622, 9447236.15813837, 9447646.705424374, 9447678.125, 9447843.526823716, 9448032.810824009, 9448112.949834544, 9449190.677454872, 9450893.75, 9454259.375, 9457113.94413952, 9458732.009350877, 9461137.498886611, 9462053.125, 9464104.448269058, 9464321.60777362, 9464369.237370668, 9464615.701706346, 9464947.459152905, 9464966.095333144, 9465274.793434974, 9465307.755921075, 9465355.371737087, 9465468.36649905, 9465527.780811707, 9468171.024569726, 9472272.001266124, 9473410.27461422, 9503554.6875, 9512494.096178183, 9519725.0, 9520835.056777176, 9528100.0, 9534433.170834748, 9540773.4375, 9597254.6875, 9605885.989419539, 9609304.71257244, 9611425.347191464, 9612202.148000265, 9614479.6875, 9623248.4375, 9628419.797192208, 9632078.583357083, 9635423.353161346, 9638773.4375, 9644658.229524823, 9645197.312565394, 9662925.957689961, 9675339.567661252, 9681614.442787554, 9697085.9375, 9707352.020128703, 9712143.83128154, 9720164.760730991, 9721342.1875, 9723158.176713113, 9727063.67607377, 9727174.297037339, 9731151.462240182, 9748960.9375, 9783538.288697345, 9784879.273514953, 9785564.035624618, 9787336.847654989, 9789228.125, 9791610.9375, 9792887.296411177, 9795874.495682161, 9800719.340116072, 9804701.125398358, 9805183.046317821, 9805905.410424938, 9806928.867368046, 9807328.189711928, 9807329.53356521, 9807849.698688172, 9807956.133365765, 9808134.001999926, 9808161.012805345, 9808355.384713741, 9808442.0130355, 9809065.347592952, 9809525.350245994, 9809740.625, 9809860.239558255, 9810034.375, 9810037.998210581, 9810265.70272404, 9810896.838476717, 9810917.146587122, 9811096.4557994, 9811228.125, 9811922.623599678, 9812359.252339244, 9816629.64215088, 9817006.25, 9819448.92561276, 9826415.625, 9828620.3125, 9831509.375, 9833650.92794025, 9833671.875, 9834164.257416014, 9834526.608056305, 9835281.212949822, 9835281.25, 9839876.694043387, 9839935.9375, 9841606.208810903, 9842141.34427896, 9849718.75, 9855464.0625, 9855692.251496274, 9855812.5, 9860079.6875, 9863948.556530748, 9864565.625, 9871112.721744772, 9871139.154669514, 9876004.6875, 9876139.278635172, 9900367.278930582, 9900512.775720468, 9906869.57928541, 9911284.375, 9926453.37857882, 9935293.75, 9937305.698474247, 9950070.3125, 9950081.389693592, 9950302.598398384, 9950621.875, 9950887.5, 9950935.459283097, 9950991.32152043, 9951040.625, 9951078.059924599, 9951309.25336983, 9951876.219218781, 9952076.5625, 9952160.34180505, 9952243.75, 9952528.203282706, 9952745.58118706, 9952806.146037748, 9953078.551124366, 9953109.27058821, 9953721.588922229, 9954132.88578409, 9954180.432872418, 9955451.89508918, 9957692.248180293, 9958493.096954195, 9961102.636932656, 9962729.396090541, 9969154.181618707, 9971049.081173599, 9971341.241954569, 9972828.214503957, 9973442.81263735, 9974481.916760577, 9975296.875, 9975926.477650993, 9976628.612022446, 9977179.6875, 9977182.145283304, 9977705.471687239, 9978037.439962845, 9978606.149619538, 9980349.952315222, 9982181.138763137, 9983673.847760275, 9984503.829638546, 9986354.5374363, 9988338.553455688, 9989798.362909257, 9990123.4375, 9991767.769360429, 9991876.5625, 9992065.371256346, 9992588.493872065, 9995943.259862212, 9996097.009221893, 9996425.891548412, 10002822.82223386, 10009062.688302109, 10022672.927513946, 10026284.375, 10026447.064231656, 10026566.975882547, 10026995.723818077, 10027039.78469636, 10027495.317625357, 10028232.445198275, 10028439.0625, 10029544.579697967, 10029830.872386858, 10032292.1875, 10033564.014408655, 10033646.66747716, 10034631.214363595, 10034818.664294906, 10036877.649390906, 10038028.881958447, 10046372.652421279, 10046506.42441565, 10056114.272935392, 10057122.104498098, 10057443.058081925, 10058103.406288246, 10058564.543116126, 10059361.085134849, 10060477.382292794, 10060632.8125, 10060840.625, 10061226.932400469, 10061829.179061618, 10063408.406079423, 10063519.533143071, 10063525.692542948, 10063963.06206692, 10063986.636679713, 10065899.681077618, 10065914.0625, 10067301.5625, 10068641.431246493, 10070145.734910844, 10070474.671675926, 10070552.232497208, 10072017.159631014, 10080075.91852517, 10082216.894336525, 10082829.46945272, 10082840.273637822, 10083050.479530146, 10083511.359926969, 10083849.233623562, 10084137.5, 10084846.051636307, 10085645.28054819, 10086012.52135365, 10087242.231751267, 10088349.65591209, 10088425.336405594, 10088723.603296213, 10088787.458915303, 10089059.31521066, 10089167.881068002, 10089304.6875, 10091539.0625, 10091612.5, 10091928.125, 10092294.553459883, 10092884.168472229, 10093792.075740382, 10094862.942173079, 10094956.310244625, 10096047.693663945, 10096585.671014965, 10096893.086631842, 10102551.5625, 10102620.450808303, 10103593.75, 10104082.32241872, 10104814.0625, 10104838.59325196, 10105223.78910017, 10105527.760830196, 10107008.47997432, 10107059.513481483, 10107932.8125, 10108114.0625, 10108259.375, 10108299.44706481, 10108710.665378667, 10108823.4375, 10109154.50831327, 10109514.809067108, 10115031.163609501, 10115460.296162358, 10115931.705054274, 10116046.875, 10116149.084240416, 10117014.310577696, 10117498.829689942, 10117603.15840894, 10117713.266724765, 10117831.93988119, 10117968.306431526, 10118293.53381036, 10119026.857178494, 10119150.465680884, 10119218.24219963, 10119311.679843668, 10119325.0, 10119788.691330807, 10120059.146051444, 10120272.025711395, 10120329.159347693, 10120730.180788979, 10120752.553022766, 10120788.793699434, 10120794.779866219, 10120799.625836482, 10120817.558794368, 10121110.875677476, 10121210.9375, 10121255.160523193, 10121281.504886255, 10121495.3125, 10121506.94407449, 10121509.644367788, 10121596.047182579, 10121620.3125, 10121720.310372071, 10121811.244179629, 10121849.939196529, 10121925.0, 10122016.27676987, 10122093.450758316, 10122096.907856742, 10122115.625, 10122208.767669555, 10122209.363615483, 10122391.670879563, 10122435.9375, 10122506.25, 10122733.781617776, 10123035.9375, 10123118.564993957, 10123562.903381217, 10123653.048013931, 10123983.967323003, 10124171.565787056, 10124729.368776834, 10124914.0625, 10125004.365895014, 10125041.039279792, 10126742.67773595, 10128318.303963883, 10130332.269646302, 10130460.9375, 10131263.631628815, 10131465.625, 10131553.42750013, 10131554.6875, 10131614.67216439, 10131632.133838922, 10131782.414946234, 10132258.664711896, 10136198.579056999, 10136317.1875, 10143110.147261178, 10147143.636747548, 10147650.043360524, 10149045.491076887, 10155889.0625, 10156625.265893215, 10156778.394820297, 10157273.4375, 10158351.992559487, 10158723.714861535, 10158742.26721366, 10158816.077587903, 10159387.778663084, 10159395.793485247, 10159496.509798076, 10159514.142459098, 10159582.8125, 10159683.986874867, 10160059.531050446, 10161213.598256828, 10161238.59671064, 10161435.96373081, 10161460.794044988, 10161571.875, 10161607.061550641, 10161657.748841958, 10161901.037883375, 10161902.330932427, 10161902.86987191, 10161956.924018366, 10161970.3125, 10162043.75, 10162100.0, 10162110.107080244, 10162112.40151588, 10162116.439115549, 10162163.580592426, 10162206.71407818, 10162251.421081059, 10162282.127116669, 10162324.306206793, 10162360.9375, 10162406.033420185, 10162443.300764598, 10162458.029227242, 10162512.569887567, 10162590.625, 10162600.584208485, 10162733.983416129, 10162735.237128826, 10162802.550404161, 10162844.633279046, 10162898.4375, 10162993.75, 10163009.623147704, 10163015.625, 10163029.338482289, 10163078.125, 10163118.623764316, 10163230.023930263, 10163354.6875, 10163523.644838616, 10163525.0, 10163571.031710053, 10163684.08877072, 10163684.375, 10163903.125, 10163915.136235805, 10164212.5, 10164248.0034298, 10165023.2444486, 10165118.124586217, 10165319.63582436, 10165582.8125, 10169076.650066968, 10171093.271401592, 10173835.9375, 10174217.971920917, 10177679.669408906, 10177907.48513466, 10177920.477692496, 10178241.109358681, 10178535.209634881, 10179903.125, 10182003.825421669, 10182038.939428555, 10183551.111453097, 10183576.993427813, 10184576.5625, 10184810.23788429, 10185162.904820887, 10186599.185466938, 10186703.914143598, 10187317.1875, 10188441.541336548, 10188581.25, 10188585.234880503, 10188710.695302773, 10192835.9375, 10197249.281680686, 10197419.785318606, 10197620.498295346, 10197645.140347447, 10198092.1875, 10198300.954439681, 10198351.839143664, 10198772.912383137, 10199042.400358954, 10199080.869012788, 10199710.162975341, 10201159.906285172, 10204081.51446374, 10204605.985929046, 10205065.5114071, 10205155.41028911, 10210208.652873812, 10210873.4375, 10216549.322058989, 10217718.563867476, 10217719.874294847, 10219487.5, 10221390.618569637, 10226278.777601592, 10229274.486781187, 10232644.42756369, 10234990.36464982, 10238451.5625, 10238565.625, 10240167.1875, 10240976.5625, 10241795.702778466, 10242714.983423183, 10248462.150514029, 10248476.79599392, 10248992.1875, 10250343.80413339, 10252221.123114096, 10252892.997503893, 10254910.203539994, 10257089.310082143, 10259288.22649444, 10261872.524565572, 10263365.170148347, 10263477.885948414, 10274260.599657606, 10274264.43901911, 10274663.515791295, 10274970.606815431, 10275137.485592388, 10275631.991816761, 10276034.375, 10278618.19014745, 10279467.699400207, 10279611.296443557, 10279637.676996509, 10279979.6875, 10280072.05494638, 10280802.822350888, 10281107.8125, 10281267.547160551, 10281532.8125, 10281633.364432154, 10282814.165783774, 10283872.858609555, 10284104.487652823, 10284105.654487407, 10285248.4375, 10285416.686998442, 10290712.5, 10293217.79030449, 10294187.5, 10294199.598294582, 10295867.363395106, 10296723.4375, 10301538.055824386, 10301786.472697837, 10301952.596156614, 10302151.5625, 10302508.950193975, 10306439.411902074, 10307281.853676632, 10307734.779572502, 10309040.625, 10309607.8125, 10309926.105335223, 10309973.4375, 10310780.801721636, 10318172.217034495, 10319045.564748377, 10325477.952344328, 10336235.07326985, 10337758.168651897, 10337905.892725952, 10339376.486850366, 10339387.147736577, 10339551.530404668, 10339701.766737808, 10340048.963796295, 10340198.4375, 10340409.51852829, 10340598.435614884, 10340820.3125, 10341302.348527972, 10341325.0, 10341673.4375, 10341751.5625, 10341778.125, 10341824.990369694, 10341853.125, 10341859.375, 10342046.684996495, 10342121.635515762, 10342239.0625, 10342455.07697273, 10342528.125, 10342541.123829084, 10342639.0625, 10342971.674430303, 10343022.101784192, 10343193.090570208, 10343551.357136061, 10343629.94319648, 10344790.359257545, 10344961.406759797, 10345392.784653326, 10345715.625, 10345723.96477301, 10345884.254648104, 10345985.9375, 10346135.670349766, 10346351.344175344, 10346984.375, 10347447.632335216, 10347868.627195667, 10347905.772082044, 10348312.67759763, 10349228.120382989, 10349882.074121157, 10351118.62545819, 10352670.3125, 10353528.994869886, 10354262.94433645, 10354504.721457124, 10354582.15022231, 10354876.586792076, 10354880.427858291, 10355715.625, 10355766.875734115, 10355965.456440834, 10356263.372963056, 10356901.220452087, 10357411.668477207, 10358364.345559876, 10359462.088212827, 10359518.75, 10359835.286771838, 10359890.702075034, 10359902.756157847, 10359975.0, 10359978.021688802, 10360302.404288534, 10364524.124415407, 10365980.05945403, 10366221.144691253, 10366470.853290739, 10367214.919602145, 10369849.100416973, 10370991.292655446, 10371719.340570966, 10372545.745891722, 10372637.750689644, 10373443.715074958, 10374105.30545526, 10375175.170613896, 10382668.869753223, 10382803.530813886, 10384016.612342693, 10384795.772138031, 10385699.875915598, 10387050.937823279, 10390049.391644515, 10397953.6313387, 10397992.906444723, 10402519.447657544, 10404033.881250855, 10404368.111768415, 10404575.245126853, 10405685.110477932, 10414536.674707431, 10414731.25, 10414827.666058403, 10417061.614102617, 10427447.898243502, 10429324.09519731, 10438886.99951197, 10439074.620511841, 10439230.394112876, 10439554.691280631, 10441896.392907606, 10441896.90687236, 10443045.24429529, 10446071.875, 10450773.387638481, 10451606.25, 10451617.5194199, 10452521.218345778, 10452737.498829985, 10455062.304940028, 10457584.097194776, 10457589.0625, 10458184.246031703, 10459568.75, 10460254.185972009, 10461228.055327004, 10463039.264304759, 10475116.09010238, 10490606.25, 10491852.745153857, 10498244.156758983, 10500831.310098529, 10500841.519029181, 10501414.166284326, 10501717.822659617, 10503098.4375, 10503112.094387503, 10503258.699664488, 10503554.855770104, 10503573.519568665, 10503608.453684045, 10504299.600320552, 10504468.733949043, 10504804.6875, 10505328.125, 10506384.462349081, 10507100.949790664, 10507968.031396173, 10508092.1875, 10508291.827719675, 10508626.377267623, 10509565.625, 10510792.328747347, 10513029.704363257, 10518277.716452517, 10519040.597930532, 10519443.895895917, 10521848.378352283, 10525459.215961704, 10526475.698138058, 10526881.25, 10527062.216922179, 10527256.726772787, 10527529.565030297, 10527612.5, 10527765.231468398, 10527817.036690036, 10527851.5625, 10527917.10799806, 10527928.307234194, 10528392.116348699, 10530742.881711103, 10530752.258080691, 10530769.69105926, 10532663.650759373, 10535488.682556188, 10545627.70529081, 10552420.284423973, 10554518.704927444, 10559655.978640066, ...], [98.45381061944855, 5.159877022321649, 11.668767733266657, 7.81275284491552, 22.19928988618312, 80.58338718118969, 60.4862396433536, 22.480847127373238, 33.92278986338555, 5.8864706010080905, 17.8149989719994, 17.308512738217726, 26.777985628874596, 28.901043660624836, 15.395387104050442, 7.2415552313868705, 37.722345433828295, 79.17484200454007, 16.655860255796746, 31.4825931834, 65.0928052941619, 81.53113716737042, 28.047684479229382, 46.07467097531528, 8.191316163146645, 22.471103242636232, 64.07894211916178, 5.77704181809466, 26.48096745134408, 63.73726642119732, 21.047211632116074, 16.689602380814975, 17.30018858069679, 6.788024384792359, 7.420079614922518, 40.056777122008576, 12.036941168231019, 25.946433737557392, 21.137556539569502, 18.273949679225968, 11.509390576183971, 89.52582200280435, 13.930438687452694, 13.281538092336593, 45.49978817337442, 8.112093605004064, 16.290782590670773, 43.581552483953175, 22.42533831414486, 10.885293627617967, 46.651330490039584, 59.68949401843914, 10.527015997372011, 5.747192691550617, 46.76453075413191, 12.819265498486924, 5.036854465915698, 5.600302040493862, 30.8474658507033, 87.11337865006409, 80.17065588047274, 6.048122907956248, 68.27172893943725, 42.57775001354129, 7.743874301507938, 25.421791050020936, 8.13113949203777, 10.962035607664221, 70.30257183428016, 8.928665945465854, 6.431465336999383, 59.706738681734535, 57.541701704413626, 62.60347930556488, 78.59305364283945, 5.636559773935406, 20.68760641836357, 17.206870956655774, 29.495428486986405, 16.312107696584164, 10.66011034141715, 23.47281719404869, 11.031814356999492, 19.91919239165741, 16.8319535315111, 10.913445648289567, 7.015395214467686, 52.285067899943634, 7.840443556964233, 41.44394075574537, 28.449350695332253, 7.391033340083137, 71.09593909423458, 40.503173624762915, 15.50193702340426, 18.440865115630345, 26.245300283090366, 18.70913089299759, 30.998193408145887, 40.80089535760818, 54.50270842673017, 25.752959758125925, 87.80959233107535, 22.56324653513983, 12.348603081689504, 22.756964945437776, 32.49751255806993, 8.965716002188133, 92.7591929070357, 8.272965224153669, 12.626643555654214, 37.414718781448634, 74.42439721732387, 78.59458634345708, 20.182908218685665, 9.891560919041025, 85.45494491908575, 5.461387789888084, 31.33816154130231, 29.425735179116877, 13.151046197508157, 52.006115574075636, 14.339552926262504, 6.433653861911349, 14.782390893960557, 44.487100793628656, 34.00656171841211, 62.237951901616235, 52.5237184598468, 127.62597802825329, 23.757092638425334, 60.484403855687106, 9.112046567980357, 16.085089635145128, 26.025152264305646, 45.50116699386048, 29.513538027181013, 7.138296120816265, 13.858711188737475, 50.15215680258308, 44.26100371033863, 49.81059556986976, 8.24531118367093, 7.725525631584472, 31.95945366220816, 57.647144999648546, 21.506137460202254, 17.693171349819266, 23.375622966616678, 9.52588625426081, 99.3926105033532, 46.90585940923944, 16.796765418864997, 20.11565415985722, 25.323598643323606, 35.032952087525224, 104.20295873862908, 8.561441710823583, 61.83329373881484, 19.938011214235164, 22.197202893185917, 86.50870546458474, 27.874292180280698, 15.51925756853693, 88.71119948244389, 42.075293778101255, 8.392299469677162, 7.386746057448708, 7.34477003557197, 6.4921689425382825, 44.34225412592629, 18.234323090251507, 71.38842297943677, 11.096386918710019, 63.38894864724961, 71.53872414881306, 64.57068610606095, 24.116642445884526, 8.403707300051584, 44.56946948164996, 11.208661503349479, 12.474118045455443, 13.015070758896274, 37.3319277924274, 79.75569252938193, 26.74487638025967, 5.504858747342661, 24.15942837879347, 127.5232215714706, 11.980198883558002, 10.212138286329056, 143.1175826006958, 6.231139582600395, 20.474957225578095, 102.26308448010649, 5.769969291095324, 55.60013932245219, 8.061533798364092, 28.3028820920697, 29.946621068532224, 9.549228093398117, 7.552840654420044, 20.335268230882036, 13.606415908811634, 162.5846694732778, 19.916636475418667, 15.726022538616723, 7.720386893424444, 7.743964825224388, 11.61083536910694, 7.766380418155245, 19.62090602850851, 17.68332378088949, 6.446133867511679, 33.83301739522524, 55.68554531558979, 22.987851825166604, 21.115515036862405, 40.0072763270096, 76.3097863959776, 12.975085191472793, 17.965193180080057, 5.549066003058263, 6.22539681467081, 9.596679684730253, 15.52153217920761, 58.08745730962036, 17.60511457293105, 7.909264707116221, 13.835256388596362, 32.909410379671414, 11.724901859211114, 7.042986332034412, 13.308189536055378, 32.69524318940391, 18.253163624882536, 10.695117700056793, 40.91673829922092, 7.154182284323065, 30.41528121449909, 7.591508471681476, 81.47554307174417, 57.333501140035814, 61.33527233834673, 81.23611621900258, 7.875221283234382, 94.5375959101734, 21.34903400611375, 34.42226921770101, 8.012586550274781, 10.070146264434026, 34.97010821015825, 12.324251093474878, 25.252908067741235, 58.54108706173321, 12.010948668322587, 44.19916701945494, 48.34085897352984, 74.95130113685698, 21.225854481366568, 38.30472278993257, 37.48985770316702, 5.284654205132005, 21.600650320539813, 14.517197231648248, 26.77051361854522, 81.81083387250408, 21.911030407346136, 12.585530561144179, 37.9499075308661, 51.523171133424256, 38.35192830565306, 7.429701711922959, 14.246889057546802, 35.90291443789803, 13.765066896211415, 56.344284830519626, 23.730360518201987, 7.457623680716053, 14.557773219757982, 27.89647704587766, 25.573114335809304, 38.24715829900282, 14.154030114895788, 124.35350374731364, 11.912029716082111, 15.145284498414506, 53.742592287285554, 58.63517317738649, 26.53176328266184, 6.170792767857797, 6.486916711589439, 52.52836602926905, 81.55329386551082, 9.115227133456298, 61.32015699460621, 8.327561782246464, 6.88601457972228, 17.09888086625188, 9.162641910427935, 27.45306589006299, 9.98575634057688, 9.026899536434868, 8.112581959203348, 8.702809183956148, 24.14531161259114, 62.843017783563454, 54.966189313954374, 7.215525137417713, 33.34508416636355, 18.383538105092377, 39.778393575748325, 5.840978419982136, 58.15369141814388, 93.8200770823564, 9.375693337828169, 11.200918600120835, 16.453511616519737, 27.775606356440218, 117.50962104356546, 59.61061512820791, 6.664812648768273, 17.033113663277067, 10.998390234278965, 55.42958124124562, 16.811250700422164, 7.241429331098933, 25.428244426230425, 20.04693032880003, 16.6204617614527, 70.09383249762098, 17.02913557604298, 15.260639310687528, 7.876933447193321, 75.19758826838964, 16.538804965726936, 10.573029788463144, 19.682149356827335, 35.51930287120818, 130.83714558588954, 33.832271131009534, 86.30664388921882, 45.310536888652685, 20.09703901063252, 62.03199146895701, 37.90788068571277, 7.068943336797042, 5.509094980882438, 17.796210100612566, 7.011103450151209, 34.109168114428556, 34.1356705177018, 18.80075602361721, 6.776494938028144, 14.385540974307792, 29.203861425354035, 9.234691797988933, 145.626864489586, 11.247489975917066, 12.425798797524156, 5.198999760221752, 29.8388822885459, 78.65311400203188, 68.36874895839725, 19.72232506681876, 94.34325084543492, 17.2546424392582, 7.14203393459695, 75.53878201230768, 9.297046968312598, 13.552921355099087, 28.8089769410998, 35.1724056536449, 55.64391822112443, 5.04078053970141, 96.28354213190016, 52.603569644170264, 53.58159679272029, 45.96429413154608, 64.46190642548999, 12.972031242864603, 64.57547827509367, 65.68969026339576, 12.59860532418864, 14.802147239506636, 60.02494261423725, 15.467771448518294, 58.94411211990615, 27.735177162951665, 7.885897785661664, 78.53039806638239, 29.77220748637746, 37.08739313538544, 68.4066867722537, 110.10404611425045, 15.41547522977593, 113.86569065699987, 11.492948574368576, 63.09902467292011, 34.088501909315994, 39.267162119945674, 73.04491766814651, 5.0462211498472165, 12.729697043867779, 147.80564555723495, 16.004952531124697, 71.04708360545462, 170.0108244383446, 64.9947996846082, 15.502101333448403, 21.231776853954674, 104.07801407251301, 29.219907966038107, 10.454337112362227, 85.0891276430446, 68.4895041152781, 51.83275620167552, 22.085972863729246, 40.19795744118568, 46.982941338996376, 65.34228301681141, 44.48991621119874, 15.24852435182877, 11.575365109056548, 9.245017499509823, 5.304433952700355, 6.07730819725734, 23.93022290064309, 11.244219744943813, 19.447558682084242, 16.381285932900646, 5.818483772801502, 33.323560732713645, 69.21541281291707, 23.861097655422757, 12.358724682838977, 57.366819462776725, 92.10535874331828, 15.29399540209418, 18.01472072094164, 18.28383183861025, 67.9862834684519, 5.80772872718235, 22.51077392905015, 46.30577741736098, 6.956451625695681, 10.095971992595649, 7.581666649192968, 14.572228725375721, 44.8119554864138, 63.745481631393346, 60.85719714300556, 27.18711091192745, 61.83072265289407, 41.48601119786967, 80.52947120695228, 79.38278960674613, 23.589797721736414, 56.91857219282166, 7.513970682785316, 34.33227732850794, 11.737643039574277, 93.74348334876356, 29.49656698621539, 27.17403205404352, 24.521554510592175, 8.03412377169767, 61.57422437665714, 11.436956747443407, 5.921186060351176, 45.48039936013218, 5.08226885300548, 8.289289561310865, 13.704786896737515, 29.601015617143556, 12.730682121045993, 13.674216722073037, 63.52477577265983, 56.6225959279503, 5.69367677445805, 5.129741304131516, 19.49887878633703, 21.73991276841179, 6.008153102521306, 125.98816922126113, 11.411731212030116, 24.853224965969087, 20.668085768258862, 6.950717547546346, 8.441147805253598, 23.509375577924654, 8.366223222648749, 81.5584689206924, 44.6333338582352, 39.71436878613626, 27.894134705171606, 126.39892907823271, 17.817507653071242, 16.023497663580443, 9.994754308345652, 17.626172442863357, 6.911609901600602, 51.420145272181465, 64.6113688070532, 30.96704702589266, 6.0128345299323644, 9.71608208389976, 23.395559912212857, 66.95044377262619, 9.307949022297489, 7.385823775304797, 17.853005471224932, 24.85723693718631, 43.49432429976723, 7.253481279495777, 16.83980681050326, 67.94287118728337, 72.12621653081784, 18.77787814150228, 27.907837263030054, 14.886130507897368, 89.84921226494875, 23.203455084758513, 91.65235819958154, 62.03331865353482, 21.245345734431783, 27.395071091270697, 99.98136225731122, 38.379737879938595, 32.40710125152141, 83.75564798380697, 57.105012637397834, 56.20658254374761, 38.95261675190374, 102.22127652831796, 16.945307756150385, 24.0943580841926, 48.50644713050073, 24.188501987160066, 5.150194828331587, 54.78437834939399, 11.350999535148114, 37.43284350076437, 36.92933568500624, 121.49471470723165, 13.411064940943797, 84.6822095304071, 51.92849429288993, 95.67306688717898, 7.158336331291861, 58.21819780971583, 37.54785489701959, 47.51287010771827, 169.04590440978467, 9.111441677357247, 87.40867753470847, 25.427225333942683, 5.570445112421049, 26.925499197410236, 73.44428059234195, 50.619024832490965, 65.00377360175537, 5.565314360376409, 36.01272302628879, 16.681632591226887, 15.070396235916947, 84.7837301409248, 18.121764750696993, 29.559029276038316, 21.26500740212087, 11.621819986042535, 11.94297587574443, 21.41563870632298, 10.049311739780077, 70.99344480205953, 83.64895597611385, 24.702833901575648, 15.548847992751952, 30.830454556436816, 17.226867855974824, 31.14253872172938, 8.149368499433074, 21.173622770793884, 22.84748064798707, 9.666409549163637, 29.530844155030035, 90.39105056439165, 10.635178881246592, 16.756137535869435, 62.10593473955704, 5.567741841363407, 78.04597699471654, 8.717469098637638, 57.810034239463036, 41.16619704929532, 16.255229446601845, 21.3159952432431, 82.78561898673713, 25.091301162535117, 23.76043293096961, 15.068240479711838, 75.64460332921439, 7.3974159269720525, 28.30157968703192, 10.406008169583938, 36.326606394800095, 111.21901328708563, 20.60953652391035, 110.39506873080083, 9.179720489539186, 48.703083110579776, 16.33876899251728, 26.6184648431638, 9.082951034037695, 99.08300528255728, 62.02510781259279, 46.59257769148993, 8.51851888696649, 71.89047950183094, 102.0217798656465, 53.601388547141056, 132.81442908571543, 13.519446712254178, 61.747774153035145, 28.964006968462396, 91.13054520179297, 8.63762965168502, 25.5188758912943, 22.579785455923684, 6.629530535317962, 45.15345036334018, 130.69430705182162, 12.595727406352314, 50.03482792580816, 26.551501080358292, 11.418797960673587, 45.752265672885315, 28.22197423910116, 9.570470910166666, 67.30954823406182, 11.873762596128266, 72.99117445440734, 11.254633040545505, 11.917388633011793, 16.12185774815313, 11.97310456963095, 13.711036708389539, 7.142630306038151, 30.734421563599362, 22.686756749107108, 11.380710551364702, 7.004539088519178, 8.966336984586738, 5.291898197158576, 5.606156857251528, 38.91049647902433, 93.62621411774694, 27.32557005477592, 21.251001433131524, 28.831248989131666, 142.25397959624834, 19.05107215298508, 61.61243304272402, 83.78959456448952, 83.74139791038736, 8.715776993868387, 8.235174974895603, 27.439067713900233, 13.375871564140315, 14.359737391352905, 26.01236835322717, 8.812120826477368, 6.950283286947215, 55.98714672647842, 107.78580254387296, 44.786735761072364, 120.77554539019712, 11.238731399138807, 28.554797138522098, 38.08484408679834, 24.882262972691315, 19.716337285075724, 63.343089325414695, 10.209570103698633, 60.65878416180742, 107.97219182144362, 11.539071769791505, 100.07815878665755, 36.636677975628665, 65.33864906894362, 9.226896988109186, 5.212078718406001, 34.228146691283044, 9.51309680104928, 64.94802058096778, 18.638401044259993, 6.707677533837885, 108.2214474560923, 99.67089551848106, 21.269847301467323, 40.42981894674239, 53.9636582018573, 23.840306069437396, 19.077074626635092, 113.18027180813051, 40.88634821728006, 54.159787028231435, 46.61579537361655, 52.11076659790286, 63.39524891941551, 5.130115738437479, 23.407369725205307, 101.2086925849065, 25.789671559684493, 19.479291360256173, 76.94877758718263, 72.2666105749206, 61.34466852385741, 21.995740175214994, 41.58893477630035, 42.3559283434009, 27.137705817901285, 7.232094310694957, 91.00783769960412, 19.14019352086591, 86.22190014234928, 10.248470384142761, 56.78659635892406, 28.925869999554234, 9.134677331628513, 72.66952202186029, 12.765410134170232, 21.226169966220077, 7.671847997808657, 5.524783363500953, 167.2319723730537, 84.3574612351663, 16.112359605588406, 40.86493876599582, 15.820037644150705, 5.906899655367696, 16.680835483555747, 7.26848333934351, 77.55002048668402, 35.10648872720347, 22.96532604739199, 15.745223532091156, 12.75625384844729, 100.85844812646343, 73.88999850980119, 12.867878677476163, 22.132510649559464, 34.161858989204724, 46.533688044933285, 9.951745236922797, 118.88397664494268, 28.331420454565006, 24.270779642255764, 30.967493648414827, 91.65986378503435, 40.36292871557578, 39.63057726079936, 5.636006419556376, 67.28220455287759, 23.138559065883666, 8.414036951731653, 41.139439982640155, 6.774362216517617, 27.71260361744869, 8.767017976444931, 12.727917777824532, 5.961260421741029, 31.346521658987875, 9.948502755544515, 107.36849874941511, 20.27573760891152, 74.91323432563703, 46.507318406566476, 5.2300974056264415, 8.448599982233018, 14.886877248618053, 5.427610968071502, 29.852501070991487, 20.916118351553667, 37.33662939146641, 6.837346983645385, 101.15256622252585, 109.68380048285434, 26.850046591753017, 23.716961798443357, 31.712695173284114, 124.5357483588526, 130.25693439141935, 6.878935909157202, 39.11382570932324, 50.247754343531454, 68.99234330301607, 7.994912384934183, 29.213215061247336, 8.94125600007997, 37.71075592260759, 7.289470173359557, 58.01784686527541, 16.225521429497334, 15.657182232901498, 39.28428664948832, 80.2381155868336, 9.829026955287764, 8.920978487527506, 30.7632218506481, 7.014087870537328, 6.312375688581849, 25.576500255082138, 16.74592115109255, 63.87955963914583, 81.99009287378655, 81.49244257084958, 70.20233775207646, 13.469967238770622, 50.26185462754449, 17.86481030989458, 25.526142381182925, 6.163853366033696, 9.651870456489544, 13.734708464273698, 50.87720787803228, 152.9265871477291, 35.370807463731104, 27.29753999581863, 17.41546032887867, 89.44230532848371, 81.34072591288825, 43.149727724319604, 52.43780862255133, 51.5730133264007, 87.07609672329848, 88.94286587386335, 92.56865990247208, 31.073041207814978, 23.021988092185033, 40.27050005040799, 39.27473133581833, 25.265414135034163, 34.07160123184784, 52.774878537376104, 15.324895856351404, 57.049817389214645, 35.35005079871101, 71.82827122936214, 25.10973092095438, 5.7213447888465705, 23.52256089556127, 9.16359021839599, 8.426586454680765, 24.198424966085053, 8.551363693248332, 9.893110778777995, 83.30529106765505, 9.820936359067263, 59.10864684387811, 33.26693998871477, 9.115286067888883, 57.58727567571344, 37.45904190112083, 12.676199097757452, 9.22967983459003, 27.229264604465623, 26.543960217752385, 26.105357474107308, 50.120235107235615, 14.380877187343618, 146.26986574186654, 19.765056574381827, 6.855580058791037, 7.615565742266135, 88.00264992753881, 39.82220114370821, 20.621901779942387, 54.04621224211659, 107.31501567197029, 62.34052600907815, 38.05088110976954, 28.238694173503198, 80.2060119941674, 12.209158462240257, 6.046298821749801, 54.73278590379808, 7.383696988049028, 5.618322393951378, 22.909482875489633, 104.28448509141208, 26.63663413970475, 19.54179572391768, 7.314539613120155, 11.763525689645007, 7.934772782549374, 22.53198647998913, 185.4901797040282, 9.962790149552854, 12.360774367890194, 19.513820206326777, 37.28274059730708, 19.218128373239505, 23.1995085175029, 17.969332647958456, 84.05545880751416, 7.153291014642811, 16.752403192826282, 20.77475700872375, 17.040115667332916, 21.3315825278746, 20.33344838192103, 60.81986150572672, 17.300775682655203, 7.3241982848700316, 5.425831813568719, 28.214553719287803, 20.216750290444637, 15.96608278559503, 25.95525914748913, 31.987751620086215, 32.686097176923745, 21.912696659905542, 18.349019818942573, 158.63610580141727, 7.305782991260869, 80.90017832297386, 22.78585320731932, 8.699286189557991, 58.78045941078662, 21.673617725513793, 15.064399643871587, 56.42950198010268, 63.981679931250795, 85.1740214413009, 52.32693793306904, 6.310065077228841, 20.060846760777313, 11.125878486297331, 138.0531179659797, 12.31347583575571, 53.63519522124029, 5.456258169562817, 61.702108931160126, 44.493231724819836, 11.020522206497645, 13.74793607049746, 22.677716956326407, 29.239682156253465, 26.594038781659407, 5.139291602103818, 9.38274216695383, 29.49100993463955, 9.420727991064064, 117.09259302275103, 56.21634023244782, 75.6846961623906, 21.9328835681631, 20.82668103570235, 15.263823667324393, 9.939570661524396, 22.555840867601844, 28.21109551446131, 142.5335731654929, 30.13182454846013, 25.189693688283384, 34.84196749520961, 107.60230220598262, 66.00388316597463, 23.01602873777633, 5.603878177051483, 36.62251263694454, 33.034272302577676, 95.70063202582881, 45.720486169001965, 37.11541568450583, 6.285808931883797, 27.406638451545376, 25.735399851795968, 18.493805486646025, 72.8638309442305, 23.96933283481166, 13.084617409314449, 74.85297171741733, 56.29234444494324, 20.33096527915596, 9.207059224350242, 36.17566680628207, 30.24437546481811, 6.516042581198292, 67.23766829074673, 8.691300591075024, 28.232928831623525, 15.203320587173165, 61.16708476887606, 109.7448099275495, 5.903669542195058, 35.90694513892235, 27.663341852131964, 13.999121635991358, ...])
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);
([3836526.5625, 3949029.450435014, 4050820.633111089, 4081822.419366396, 4169108.9429934826, 4249412.261962925, 4250342.1875, 4263611.45709907, 4302150.0, 4315683.746395922, 4316647.468172036, 4332486.010916073, 4333250.353646906, 4351286.341969096, 4355393.020444993, 4360534.813005578, 4364696.875, 4364723.4375, 4383314.449689669, 4458546.875, 4462021.875, 4554560.9375, 4624093.1731691845, 7482432.551597001, 7537124.815408239, 7537399.789195943, 7537718.99948547, 7680305.737973955, 7847453.012387351, 7847906.25, 8064892.785885936, 8068678.518731995, 8068696.807747513, 8096323.559080606, 8097008.838516723, 8097710.9375, 8140734.8880164055, 8140981.195658393, 8165338.428188103, 8189022.786306031, 8202490.856195838, 8212814.0625, 8378618.456778634, 8392229.171168039, 8393281.25, 8393865.279801028, 8393886.251542518, 8395353.125, 8395357.40113626, 8396131.089170858, 8397203.125, 8401695.3125, 8404252.703406893, 8407489.679630104, 8408383.630238343, 8408496.178905604, 8409638.782361265, 8415865.373898955, 8426016.331951238, 8426495.499280743, 8427157.8125, 8427162.106602065, 8427717.065752115, 8427815.023054145, 8431078.49779105, 8431149.981186055, 8431152.819024887, 8431298.328858456, 8436510.54781882, 8439047.919430811, 8444857.448228162, 8444870.184529945, 8444940.625, 8445254.760451118, 8445970.3125, 8446051.962441506, 8446129.102775304, 8446217.677232416, 8447192.1875, 8447248.346357642, 8447394.991225941, 8447449.677926308, 8448314.000272347, 8448397.763787286, 8448474.554502832, 8448796.733456787, 8450058.955571517, 8452293.75, 8452414.67394256, 8452551.5625, 8453945.308661016, 8459985.31002773, 8461056.25, 8495242.270214496, 8521224.080511305, 8645735.065314975, 8647754.560554158, 8748577.291863134, 8831025.0, 8847055.57626495, 8930381.07543534, 9002068.592092307, 9060066.764064915, 9091907.413478587, 9091931.912069412, 9118076.180503616, 9123785.973404758, 9153427.658355737, 9181395.3125, 9203974.974170312, 9213891.41058423, 9222323.4375, 9230634.566379042, 9235934.375, 9239075.920300206, 9254703.720671806, 9271391.310320133, 9286140.616172727, 9288037.5, 9288046.562615287, 9288663.497334065, 9291412.5, 9304926.14557414, 9316396.525425106, 9317170.270117486, 9317998.4375, 9318012.168205364, 9318140.625, 9318346.182449589, 9318452.335052228, 9319048.55354139, 9319454.6875, 9319657.54116137, 9319901.83332759, 9319996.56694514, 9320405.581531353, 9320530.96762489, 9320546.938693937, 9321443.433611494, 9322028.125, 9323949.815913964, 9324000.0, 9324140.546141326, 9324505.013408456, 9324851.047424005, 9325027.62257353, 9325537.001305928, 9326545.975397505, 9326979.357554723, 9327047.096386274, 9327135.9375, 9327159.375, 9327341.039275082, 9327436.990700271, 9327668.86957984, 9327845.3125, 9328060.186809879, 9328769.23595834, 9329010.448131049, 9329511.828571355, 9329639.947365828, 9329792.43331877, 9330579.112329273, 9330582.864992823, 9330901.737837406, 9332032.984698541, 9332340.8197109, 9333514.98395083, 9334017.973977614, 9334131.282315593, 9334349.980565356, 9334612.791100204, 9334834.375, 9334910.917369675, 9335081.25, 9335754.6875, 9336796.875, 9337898.165615162, 9338334.59011592, 9338775.856015196, 9339321.926182196, 9339424.1563724, 9339538.444885598, 9339932.8125, 9340050.0, 9340154.499671353, 9344902.529460281, 9352300.876144608, 9353114.329223331, 9353589.547071371, 9354161.822974985, 9356387.5, 9356732.521664131, 9359407.203997016, 9367543.75, 9368349.386927698, 9372835.9375, 9372919.86123054, 9373756.654830081, 9377673.4375, 9378081.496846743, 9378110.795976393, 9387049.839648241, 9387052.724274747, 9388547.771019984, 9391571.200976646, 9398206.441649001, 9398892.50018736, 9398994.123021096, 9399283.101062585, 9399622.30461137, 9399847.72683273, 9400672.446574254, 9403813.796151344, 9404616.12108202, 9404906.7154681, 9404955.887833271, 9406129.228851069, 9406570.234119141, 9406789.0625, 9407228.579472715, 9407645.371354902, 9407778.45003022, 9407830.911820263, 9407845.610408721, 9408176.706784466, 9408242.1875, 9408370.871043218, 9408527.336147234, 9408671.550959958, 9408687.743640658, 9408890.97618538, 9409246.567851268, 9411066.680967113, 9411075.68444797, 9411183.474598419, 9411212.20441496, 9411228.125, 9411596.9980665, 9411661.712878086, 9412631.217453606, 9418835.905099688, 9419676.658502735, 9419821.050495699, 9420789.0625, 9421024.13169876, 9421346.16975957, 9421486.131677236, 9421522.15622824, 9421613.505763542, 9422405.448611625, 9422428.872939548, 9422478.77584192, 9422902.934153521, 9423048.4375, 9423414.562538514, 9424950.0, 9425587.5, 9427342.503682775, 9427505.722785972, 9427889.0625, 9429668.731149005, 9440198.227825629, 9442340.578929631, 9443010.821537035, 9443069.728249935, 9443304.6875, 9443329.228399234, 9443417.955345033, 9444388.76279953, 9445015.685186684, 9445504.6875, 9445686.993281662, 9445716.992485011, 9445979.6875, 9446265.277834993, 9446743.75, 9446838.0451462, 9446965.203616366, 9447007.708042622, 9447236.15813837, 9447646.705424374, 9447678.125, 9447843.526823716, 9448032.810824009, 9448112.949834544, 9449190.677454872, 9450893.75, 9454259.375, 9457113.94413952, 9458732.009350877, 9461137.498886611, 9462053.125, 9464104.448269058, 9464321.60777362, 9464369.237370668, 9464615.701706346, 9464947.459152905, 9464966.095333144, 9465274.793434974, 9465307.755921075, 9465355.371737087, 9465468.36649905, 9465527.780811707, 9468171.024569726, 9472272.001266124, 9473410.27461422, 9503554.6875, 9512494.096178183, 9519725.0, 9520835.056777176, 9528100.0, 9534433.170834748, 9540773.4375, 9597254.6875, 9605885.989419539, 9609304.71257244, 9611425.347191464, 9612202.148000265, 9614479.6875, 9623248.4375, 9628419.797192208, 9632078.583357083, 9635423.353161346, 9638773.4375, 9644658.229524823, 9645197.312565394, 9662925.957689961, 9675339.567661252, 9681614.442787554, 9697085.9375, 9707352.020128703, 9712143.83128154, 9720164.760730991, 9721342.1875, 9723158.176713113, 9727063.67607377, 9727174.297037339, 9731151.462240182, 9748960.9375, 9783538.288697345, 9784879.273514953, 9785564.035624618, 9787336.847654989, 9789228.125, 9791610.9375, 9792887.296411177, 9795874.495682161, 9800719.340116072, 9804701.125398358, 9805183.046317821, 9805905.410424938, 9806928.867368046, 9807328.189711928, 9807329.53356521, 9807849.698688172, 9807956.133365765, 9808134.001999926, 9808161.012805345, 9808355.384713741, 9808442.0130355, 9809065.347592952, 9809525.350245994, 9809740.625, 9809860.239558255, 9810034.375, 9810037.998210581, 9810265.70272404, 9810896.838476717, 9810917.146587122, 9811096.4557994, 9811228.125, 9811922.623599678, 9812359.252339244, 9816629.64215088, 9817006.25, 9819448.92561276, 9826415.625, 9828620.3125, 9831509.375, 9833650.92794025, 9833671.875, 9834164.257416014, 9834526.608056305, 9835281.212949822, 9835281.25, 9839876.694043387, 9839935.9375, 9841606.208810903, 9842141.34427896, 9849718.75, 9855464.0625, 9855692.251496274, 9855812.5, 9860079.6875, 9863948.556530748, 9864565.625, 9871112.721744772, 9871139.154669514, 9876004.6875, 9876139.278635172, 9900367.278930582, 9900512.775720468, 9906869.57928541, 9911284.375, 9926453.37857882, 9935293.75, 9937305.698474247, 9950070.3125, 9950081.389693592, 9950302.598398384, 9950621.875, 9950887.5, 9950935.459283097, 9950991.32152043, 9951040.625, 9951078.059924599, 9951309.25336983, 9951876.219218781, 9952076.5625, 9952160.34180505, 9952243.75, 9952528.203282706, 9952745.58118706, 9952806.146037748, 9953078.551124366, 9953109.27058821, 9953721.588922229, 9954132.88578409, 9954180.432872418, 9955451.89508918, 9957692.248180293, 9958493.096954195, 9961102.636932656, 9962729.396090541, 9969154.181618707, 9971049.081173599, 9971341.241954569, 9972828.214503957, 9973442.81263735, 9974481.916760577, 9975296.875, 9975926.477650993, 9976628.612022446, 9977179.6875, 9977182.145283304, 9977705.471687239, 9978037.439962845, 9978606.149619538, 9980349.952315222, 9982181.138763137, 9983673.847760275, 9984503.829638546, 9986354.5374363, 9988338.553455688, 9989798.362909257, 9990123.4375, 9991767.769360429, 9991876.5625, 9992065.371256346, 9992588.493872065, 9995943.259862212, 9996097.009221893, 9996425.891548412, 10002822.82223386, 10009062.688302109, 10022672.927513946, 10026284.375, 10026447.064231656, 10026566.975882547, 10026995.723818077, 10027039.78469636, 10027495.317625357, 10028232.445198275, 10028439.0625, 10029544.579697967, 10029830.872386858, 10032292.1875, 10033564.014408655, 10033646.66747716, 10034631.214363595, 10034818.664294906, 10036877.649390906, 10038028.881958447, 10046372.652421279, 10046506.42441565, 10056114.272935392, 10057122.104498098, 10057443.058081925, 10058103.406288246, 10058564.543116126, 10059361.085134849, 10060477.382292794, 10060632.8125, 10060840.625, 10061226.932400469, 10061829.179061618, 10063408.406079423, 10063519.533143071, 10063525.692542948, 10063963.06206692, 10063986.636679713, 10065899.681077618, 10065914.0625, 10067301.5625, 10068641.431246493, 10070145.734910844, 10070474.671675926, 10070552.232497208, 10072017.159631014, 10080075.91852517, 10082216.894336525, 10082829.46945272, 10082840.273637822, 10083050.479530146, 10083511.359926969, 10083849.233623562, 10084137.5, 10084846.051636307, 10085645.28054819, 10086012.52135365, 10087242.231751267, 10088349.65591209, 10088425.336405594, 10088723.603296213, 10088787.458915303, 10089059.31521066, 10089167.881068002, 10089304.6875, 10091539.0625, 10091612.5, 10091928.125, 10092294.553459883, 10092884.168472229, 10093792.075740382, 10094862.942173079, 10094956.310244625, 10096047.693663945, 10096585.671014965, 10096893.086631842, 10102551.5625, 10102620.450808303, 10103593.75, 10104082.32241872, 10104814.0625, 10104838.59325196, 10105223.78910017, 10105527.760830196, 10107008.47997432, 10107059.513481483, 10107932.8125, 10108114.0625, 10108259.375, 10108299.44706481, 10108710.665378667, 10108823.4375, 10109154.50831327, 10109514.809067108, 10115031.163609501, 10115460.296162358, 10115931.705054274, 10116046.875, 10116149.084240416, 10117014.310577696, 10117498.829689942, 10117603.15840894, 10117713.266724765, 10117831.93988119, 10117968.306431526, 10118293.53381036, 10119026.857178494, 10119150.465680884, 10119218.24219963, 10119311.679843668, 10119325.0, 10119788.691330807, 10120059.146051444, 10120272.025711395, 10120329.159347693, 10120730.180788979, 10120752.553022766, 10120788.793699434, 10120794.779866219, 10120799.625836482, 10120817.558794368, 10121110.875677476, 10121210.9375, 10121255.160523193, 10121281.504886255, 10121495.3125, 10121506.94407449, 10121509.644367788, 10121596.047182579, 10121620.3125, 10121720.310372071, 10121811.244179629, 10121849.939196529, 10121925.0, 10122016.27676987, 10122093.450758316, 10122096.907856742, 10122115.625, 10122208.767669555, 10122209.363615483, 10122391.670879563, 10122435.9375, 10122506.25, 10122733.781617776, 10123035.9375, 10123118.564993957, 10123562.903381217, 10123653.048013931, 10123983.967323003, 10124171.565787056, 10124729.368776834, 10124914.0625, 10125004.365895014, 10125041.039279792, 10126742.67773595, 10128318.303963883, 10130332.269646302, 10130460.9375, 10131263.631628815, 10131465.625, 10131553.42750013, 10131554.6875, 10131614.67216439, 10131632.133838922, 10131782.414946234, 10132258.664711896, 10136198.579056999, 10136317.1875, 10143110.147261178, 10147143.636747548, 10147650.043360524, 10149045.491076887, 10155889.0625, 10156625.265893215, 10156778.394820297, 10157273.4375, 10158351.992559487, 10158723.714861535, 10158742.26721366, 10158816.077587903, 10159387.778663084, 10159395.793485247, 10159496.509798076, 10159514.142459098, 10159582.8125, 10159683.986874867, 10160059.531050446, 10161213.598256828, 10161238.59671064, 10161435.96373081, 10161460.794044988, 10161571.875, 10161607.061550641, 10161657.748841958, 10161901.037883375, 10161902.330932427, 10161902.86987191, 10161956.924018366, 10161970.3125, 10162043.75, 10162100.0, 10162110.107080244, 10162112.40151588, 10162116.439115549, 10162163.580592426, 10162206.71407818, 10162251.421081059, 10162282.127116669, 10162324.306206793, 10162360.9375, 10162406.033420185, 10162443.300764598, 10162458.029227242, 10162512.569887567, 10162590.625, 10162600.584208485, 10162733.983416129, 10162735.237128826, 10162802.550404161, 10162844.633279046, 10162898.4375, 10162993.75, 10163009.623147704, 10163015.625, 10163029.338482289, 10163078.125, 10163118.623764316, 10163230.023930263, 10163354.6875, 10163523.644838616, 10163525.0, 10163571.031710053, 10163684.08877072, 10163684.375, 10163903.125, 10163915.136235805, 10164212.5, 10164248.0034298, 10165023.2444486, 10165118.124586217, 10165319.63582436, 10165582.8125, 10169076.650066968, 10171093.271401592, 10173835.9375, 10174217.971920917, 10177679.669408906, 10177907.48513466, 10177920.477692496, 10178241.109358681, 10178535.209634881, 10179903.125, 10182003.825421669, 10182038.939428555, 10183551.111453097, 10183576.993427813, 10184576.5625, 10184810.23788429, 10185162.904820887, 10186599.185466938, 10186703.914143598, 10187317.1875, 10188441.541336548, 10188581.25, 10188585.234880503, 10188710.695302773, 10192835.9375, 10197249.281680686, 10197419.785318606, 10197620.498295346, 10197645.140347447, 10198092.1875, 10198300.954439681, 10198351.839143664, 10198772.912383137, 10199042.400358954, 10199080.869012788, 10199710.162975341, 10201159.906285172, 10204081.51446374, 10204605.985929046, 10205065.5114071, 10205155.41028911, 10210208.652873812, 10210873.4375, 10216549.322058989, 10217718.563867476, 10217719.874294847, 10219487.5, 10221390.618569637, 10226278.777601592, 10229274.486781187, 10232644.42756369, 10234990.36464982, 10238451.5625, 10238565.625, 10240167.1875, 10240976.5625, 10241795.702778466, 10242714.983423183, 10248462.150514029, 10248476.79599392, 10248992.1875, 10250343.80413339, 10252221.123114096, 10252892.997503893, 10254910.203539994, 10257089.310082143, 10259288.22649444, 10261872.524565572, 10263365.170148347, 10263477.885948414, 10274260.599657606, 10274264.43901911, 10274663.515791295, 10274970.606815431, 10275137.485592388, 10275631.991816761, 10276034.375, 10278618.19014745, 10279467.699400207, 10279611.296443557, 10279637.676996509, 10279979.6875, 10280072.05494638, 10280802.822350888, 10281107.8125, 10281267.547160551, 10281532.8125, 10281633.364432154, 10282814.165783774, 10283872.858609555, 10284104.487652823, 10284105.654487407, 10285248.4375, 10285416.686998442, 10290712.5, 10293217.79030449, 10294187.5, 10294199.598294582, 10295867.363395106, 10296723.4375, 10301538.055824386, 10301786.472697837, 10301952.596156614, 10302151.5625, 10302508.950193975, 10306439.411902074, 10307281.853676632, 10307734.779572502, 10309040.625, 10309607.8125, 10309926.105335223, 10309973.4375, 10310780.801721636, 10318172.217034495, 10319045.564748377, 10325477.952344328, 10336235.07326985, 10337758.168651897, 10337905.892725952, 10339376.486850366, 10339387.147736577, 10339551.530404668, 10339701.766737808, 10340048.963796295, 10340198.4375, 10340409.51852829, 10340598.435614884, 10340820.3125, 10341302.348527972, 10341325.0, 10341673.4375, 10341751.5625, 10341778.125, 10341824.990369694, 10341853.125, 10341859.375, 10342046.684996495, 10342121.635515762, 10342239.0625, 10342455.07697273, 10342528.125, 10342541.123829084, 10342639.0625, 10342971.674430303, 10343022.101784192, 10343193.090570208, 10343551.357136061, 10343629.94319648, 10344790.359257545, 10344961.406759797, 10345392.784653326, 10345715.625, 10345723.96477301, 10345884.254648104, 10345985.9375, 10346135.670349766, 10346351.344175344, 10346984.375, 10347447.632335216, 10347868.627195667, 10347905.772082044, 10348312.67759763, 10349228.120382989, 10349882.074121157, 10351118.62545819, 10352670.3125, 10353528.994869886, 10354262.94433645, 10354504.721457124, 10354582.15022231, 10354876.586792076, 10354880.427858291, 10355715.625, 10355766.875734115, 10355965.456440834, 10356263.372963056, 10356901.220452087, 10357411.668477207, 10358364.345559876, 10359462.088212827, 10359518.75, 10359835.286771838, 10359890.702075034, 10359902.756157847, 10359975.0, 10359978.021688802, 10360302.404288534, 10364524.124415407, 10365980.05945403, 10366221.144691253, 10366470.853290739, 10367214.919602145, 10369849.100416973, 10370991.292655446, 10371719.340570966, 10372545.745891722, 10372637.750689644, 10373443.715074958, 10374105.30545526, 10375175.170613896, 10382668.869753223, 10382803.530813886, 10384016.612342693, 10384795.772138031, 10385699.875915598, 10387050.937823279, 10390049.391644515, 10397953.6313387, 10397992.906444723, 10402519.447657544, 10404033.881250855, 10404368.111768415, 10404575.245126853, 10405685.110477932, 10414536.674707431, 10414731.25, 10414827.666058403, 10417061.614102617, 10427447.898243502, 10429324.09519731, 10438886.99951197, 10439074.620511841, 10439230.394112876, 10439554.691280631, 10441896.392907606, 10441896.90687236, 10443045.24429529, 10446071.875, 10450773.387638481, 10451606.25, 10451617.5194199, 10452521.218345778, 10452737.498829985, 10455062.304940028, 10457584.097194776, 10457589.0625, 10458184.246031703, 10459568.75, 10460254.185972009, 10461228.055327004, 10463039.264304759, 10475116.09010238, 10490606.25, 10491852.745153857, 10498244.156758983, 10500831.310098529, 10500841.519029181, 10501414.166284326, 10501717.822659617, 10503098.4375, 10503112.094387503, 10503258.699664488, 10503554.855770104, 10503573.519568665, 10503608.453684045, 10504299.600320552, 10504468.733949043, 10504804.6875, 10505328.125, 10506384.462349081, 10507100.949790664, 10507968.031396173, 10508092.1875, 10508291.827719675, 10508626.377267623, 10509565.625, 10510792.328747347, 10513029.704363257, 10518277.716452517, 10519040.597930532, 10519443.895895917, 10521848.378352283, 10525459.215961704, 10526475.698138058, 10526881.25, 10527062.216922179, 10527256.726772787, 10527529.565030297, 10527612.5, 10527765.231468398, 10527817.036690036, 10527851.5625, 10527917.10799806, 10527928.307234194, 10528392.116348699, 10530742.881711103, 10530752.258080691, 10530769.69105926, 10532663.650759373, 10535488.682556188, 10545627.70529081, 10552420.284423973, 10554518.704927444, 10559655.978640066, ...], [98.45381061944855, 5.159877022321649, 11.668767733266657, 7.81275284491552, 22.19928988618312, 80.58338718118969, 60.4862396433536, 22.480847127373238, 33.92278986338555, 5.8864706010080905, 17.8149989719994, 17.308512738217726, 26.777985628874596, 28.901043660624836, 15.395387104050442, 7.2415552313868705, 37.722345433828295, 79.17484200454007, 16.655860255796746, 31.4825931834, 65.0928052941619, 81.53113716737042, 28.047684479229382, 46.07467097531528, 8.191316163146645, 22.471103242636232, 64.07894211916178, 5.77704181809466, 26.48096745134408, 63.73726642119732, 21.047211632116074, 16.689602380814975, 17.30018858069679, 6.788024384792359, 7.420079614922518, 40.056777122008576, 12.036941168231019, 25.946433737557392, 21.137556539569502, 18.273949679225968, 11.509390576183971, 89.52582200280435, 13.930438687452694, 13.281538092336593, 45.49978817337442, 8.112093605004064, 16.290782590670773, 43.581552483953175, 22.42533831414486, 10.885293627617967, 46.651330490039584, 59.68949401843914, 10.527015997372011, 5.747192691550617, 46.76453075413191, 12.819265498486924, 5.036854465915698, 5.600302040493862, 30.8474658507033, 87.11337865006409, 80.17065588047274, 6.048122907956248, 68.27172893943725, 42.57775001354129, 7.743874301507938, 25.421791050020936, 8.13113949203777, 10.962035607664221, 70.30257183428016, 8.928665945465854, 6.431465336999383, 59.706738681734535, 57.541701704413626, 62.60347930556488, 78.59305364283945, 5.636559773935406, 20.68760641836357, 17.206870956655774, 29.495428486986405, 16.312107696584164, 10.66011034141715, 23.47281719404869, 11.031814356999492, 19.91919239165741, 16.8319535315111, 10.913445648289567, 7.015395214467686, 52.285067899943634, 7.840443556964233, 41.44394075574537, 28.449350695332253, 7.391033340083137, 71.09593909423458, 40.503173624762915, 15.50193702340426, 18.440865115630345, 26.245300283090366, 18.70913089299759, 30.998193408145887, 40.80089535760818, 54.50270842673017, 25.752959758125925, 87.80959233107535, 22.56324653513983, 12.348603081689504, 22.756964945437776, 32.49751255806993, 8.965716002188133, 92.7591929070357, 8.272965224153669, 12.626643555654214, 37.414718781448634, 74.42439721732387, 78.59458634345708, 20.182908218685665, 9.891560919041025, 85.45494491908575, 5.461387789888084, 31.33816154130231, 29.425735179116877, 13.151046197508157, 52.006115574075636, 14.339552926262504, 6.433653861911349, 14.782390893960557, 44.487100793628656, 34.00656171841211, 62.237951901616235, 52.5237184598468, 127.62597802825329, 23.757092638425334, 60.484403855687106, 9.112046567980357, 16.085089635145128, 26.025152264305646, 45.50116699386048, 29.513538027181013, 7.138296120816265, 13.858711188737475, 50.15215680258308, 44.26100371033863, 49.81059556986976, 8.24531118367093, 7.725525631584472, 31.95945366220816, 57.647144999648546, 21.506137460202254, 17.693171349819266, 23.375622966616678, 9.52588625426081, 99.3926105033532, 46.90585940923944, 16.796765418864997, 20.11565415985722, 25.323598643323606, 35.032952087525224, 104.20295873862908, 8.561441710823583, 61.83329373881484, 19.938011214235164, 22.197202893185917, 86.50870546458474, 27.874292180280698, 15.51925756853693, 88.71119948244389, 42.075293778101255, 8.392299469677162, 7.386746057448708, 7.34477003557197, 6.4921689425382825, 44.34225412592629, 18.234323090251507, 71.38842297943677, 11.096386918710019, 63.38894864724961, 71.53872414881306, 64.57068610606095, 24.116642445884526, 8.403707300051584, 44.56946948164996, 11.208661503349479, 12.474118045455443, 13.015070758896274, 37.3319277924274, 79.75569252938193, 26.74487638025967, 5.504858747342661, 24.15942837879347, 127.5232215714706, 11.980198883558002, 10.212138286329056, 143.1175826006958, 6.231139582600395, 20.474957225578095, 102.26308448010649, 5.769969291095324, 55.60013932245219, 8.061533798364092, 28.3028820920697, 29.946621068532224, 9.549228093398117, 7.552840654420044, 20.335268230882036, 13.606415908811634, 162.5846694732778, 19.916636475418667, 15.726022538616723, 7.720386893424444, 7.743964825224388, 11.61083536910694, 7.766380418155245, 19.62090602850851, 17.68332378088949, 6.446133867511679, 33.83301739522524, 55.68554531558979, 22.987851825166604, 21.115515036862405, 40.0072763270096, 76.3097863959776, 12.975085191472793, 17.965193180080057, 5.549066003058263, 6.22539681467081, 9.596679684730253, 15.52153217920761, 58.08745730962036, 17.60511457293105, 7.909264707116221, 13.835256388596362, 32.909410379671414, 11.724901859211114, 7.042986332034412, 13.308189536055378, 32.69524318940391, 18.253163624882536, 10.695117700056793, 40.91673829922092, 7.154182284323065, 30.41528121449909, 7.591508471681476, 81.47554307174417, 57.333501140035814, 61.33527233834673, 81.23611621900258, 7.875221283234382, 94.5375959101734, 21.34903400611375, 34.42226921770101, 8.012586550274781, 10.070146264434026, 34.97010821015825, 12.324251093474878, 25.252908067741235, 58.54108706173321, 12.010948668322587, 44.19916701945494, 48.34085897352984, 74.95130113685698, 21.225854481366568, 38.30472278993257, 37.48985770316702, 5.284654205132005, 21.600650320539813, 14.517197231648248, 26.77051361854522, 81.81083387250408, 21.911030407346136, 12.585530561144179, 37.9499075308661, 51.523171133424256, 38.35192830565306, 7.429701711922959, 14.246889057546802, 35.90291443789803, 13.765066896211415, 56.344284830519626, 23.730360518201987, 7.457623680716053, 14.557773219757982, 27.89647704587766, 25.573114335809304, 38.24715829900282, 14.154030114895788, 124.35350374731364, 11.912029716082111, 15.145284498414506, 53.742592287285554, 58.63517317738649, 26.53176328266184, 6.170792767857797, 6.486916711589439, 52.52836602926905, 81.55329386551082, 9.115227133456298, 61.32015699460621, 8.327561782246464, 6.88601457972228, 17.09888086625188, 9.162641910427935, 27.45306589006299, 9.98575634057688, 9.026899536434868, 8.112581959203348, 8.702809183956148, 24.14531161259114, 62.843017783563454, 54.966189313954374, 7.215525137417713, 33.34508416636355, 18.383538105092377, 39.778393575748325, 5.840978419982136, 58.15369141814388, 93.8200770823564, 9.375693337828169, 11.200918600120835, 16.453511616519737, 27.775606356440218, 117.50962104356546, 59.61061512820791, 6.664812648768273, 17.033113663277067, 10.998390234278965, 55.42958124124562, 16.811250700422164, 7.241429331098933, 25.428244426230425, 20.04693032880003, 16.6204617614527, 70.09383249762098, 17.02913557604298, 15.260639310687528, 7.876933447193321, 75.19758826838964, 16.538804965726936, 10.573029788463144, 19.682149356827335, 35.51930287120818, 130.83714558588954, 33.832271131009534, 86.30664388921882, 45.310536888652685, 20.09703901063252, 62.03199146895701, 37.90788068571277, 7.068943336797042, 5.509094980882438, 17.796210100612566, 7.011103450151209, 34.109168114428556, 34.1356705177018, 18.80075602361721, 6.776494938028144, 14.385540974307792, 29.203861425354035, 9.234691797988933, 145.626864489586, 11.247489975917066, 12.425798797524156, 5.198999760221752, 29.8388822885459, 78.65311400203188, 68.36874895839725, 19.72232506681876, 94.34325084543492, 17.2546424392582, 7.14203393459695, 75.53878201230768, 9.297046968312598, 13.552921355099087, 28.8089769410998, 35.1724056536449, 55.64391822112443, 5.04078053970141, 96.28354213190016, 52.603569644170264, 53.58159679272029, 45.96429413154608, 64.46190642548999, 12.972031242864603, 64.57547827509367, 65.68969026339576, 12.59860532418864, 14.802147239506636, 60.02494261423725, 15.467771448518294, 58.94411211990615, 27.735177162951665, 7.885897785661664, 78.53039806638239, 29.77220748637746, 37.08739313538544, 68.4066867722537, 110.10404611425045, 15.41547522977593, 113.86569065699987, 11.492948574368576, 63.09902467292011, 34.088501909315994, 39.267162119945674, 73.04491766814651, 5.0462211498472165, 12.729697043867779, 147.80564555723495, 16.004952531124697, 71.04708360545462, 170.0108244383446, 64.9947996846082, 15.502101333448403, 21.231776853954674, 104.07801407251301, 29.219907966038107, 10.454337112362227, 85.0891276430446, 68.4895041152781, 51.83275620167552, 22.085972863729246, 40.19795744118568, 46.982941338996376, 65.34228301681141, 44.48991621119874, 15.24852435182877, 11.575365109056548, 9.245017499509823, 5.304433952700355, 6.07730819725734, 23.93022290064309, 11.244219744943813, 19.447558682084242, 16.381285932900646, 5.818483772801502, 33.323560732713645, 69.21541281291707, 23.861097655422757, 12.358724682838977, 57.366819462776725, 92.10535874331828, 15.29399540209418, 18.01472072094164, 18.28383183861025, 67.9862834684519, 5.80772872718235, 22.51077392905015, 46.30577741736098, 6.956451625695681, 10.095971992595649, 7.581666649192968, 14.572228725375721, 44.8119554864138, 63.745481631393346, 60.85719714300556, 27.18711091192745, 61.83072265289407, 41.48601119786967, 80.52947120695228, 79.38278960674613, 23.589797721736414, 56.91857219282166, 7.513970682785316, 34.33227732850794, 11.737643039574277, 93.74348334876356, 29.49656698621539, 27.17403205404352, 24.521554510592175, 8.03412377169767, 61.57422437665714, 11.436956747443407, 5.921186060351176, 45.48039936013218, 5.08226885300548, 8.289289561310865, 13.704786896737515, 29.601015617143556, 12.730682121045993, 13.674216722073037, 63.52477577265983, 56.6225959279503, 5.69367677445805, 5.129741304131516, 19.49887878633703, 21.73991276841179, 6.008153102521306, 125.98816922126113, 11.411731212030116, 24.853224965969087, 20.668085768258862, 6.950717547546346, 8.441147805253598, 23.509375577924654, 8.366223222648749, 81.5584689206924, 44.6333338582352, 39.71436878613626, 27.894134705171606, 126.39892907823271, 17.817507653071242, 16.023497663580443, 9.994754308345652, 17.626172442863357, 6.911609901600602, 51.420145272181465, 64.6113688070532, 30.96704702589266, 6.0128345299323644, 9.71608208389976, 23.395559912212857, 66.95044377262619, 9.307949022297489, 7.385823775304797, 17.853005471224932, 24.85723693718631, 43.49432429976723, 7.253481279495777, 16.83980681050326, 67.94287118728337, 72.12621653081784, 18.77787814150228, 27.907837263030054, 14.886130507897368, 89.84921226494875, 23.203455084758513, 91.65235819958154, 62.03331865353482, 21.245345734431783, 27.395071091270697, 99.98136225731122, 38.379737879938595, 32.40710125152141, 83.75564798380697, 57.105012637397834, 56.20658254374761, 38.95261675190374, 102.22127652831796, 16.945307756150385, 24.0943580841926, 48.50644713050073, 24.188501987160066, 5.150194828331587, 54.78437834939399, 11.350999535148114, 37.43284350076437, 36.92933568500624, 121.49471470723165, 13.411064940943797, 84.6822095304071, 51.92849429288993, 95.67306688717898, 7.158336331291861, 58.21819780971583, 37.54785489701959, 47.51287010771827, 169.04590440978467, 9.111441677357247, 87.40867753470847, 25.427225333942683, 5.570445112421049, 26.925499197410236, 73.44428059234195, 50.619024832490965, 65.00377360175537, 5.565314360376409, 36.01272302628879, 16.681632591226887, 15.070396235916947, 84.7837301409248, 18.121764750696993, 29.559029276038316, 21.26500740212087, 11.621819986042535, 11.94297587574443, 21.41563870632298, 10.049311739780077, 70.99344480205953, 83.64895597611385, 24.702833901575648, 15.548847992751952, 30.830454556436816, 17.226867855974824, 31.14253872172938, 8.149368499433074, 21.173622770793884, 22.84748064798707, 9.666409549163637, 29.530844155030035, 90.39105056439165, 10.635178881246592, 16.756137535869435, 62.10593473955704, 5.567741841363407, 78.04597699471654, 8.717469098637638, 57.810034239463036, 41.16619704929532, 16.255229446601845, 21.3159952432431, 82.78561898673713, 25.091301162535117, 23.76043293096961, 15.068240479711838, 75.64460332921439, 7.3974159269720525, 28.30157968703192, 10.406008169583938, 36.326606394800095, 111.21901328708563, 20.60953652391035, 110.39506873080083, 9.179720489539186, 48.703083110579776, 16.33876899251728, 26.6184648431638, 9.082951034037695, 99.08300528255728, 62.02510781259279, 46.59257769148993, 8.51851888696649, 71.89047950183094, 102.0217798656465, 53.601388547141056, 132.81442908571543, 13.519446712254178, 61.747774153035145, 28.964006968462396, 91.13054520179297, 8.63762965168502, 25.5188758912943, 22.579785455923684, 6.629530535317962, 45.15345036334018, 130.69430705182162, 12.595727406352314, 50.03482792580816, 26.551501080358292, 11.418797960673587, 45.752265672885315, 28.22197423910116, 9.570470910166666, 67.30954823406182, 11.873762596128266, 72.99117445440734, 11.254633040545505, 11.917388633011793, 16.12185774815313, 11.97310456963095, 13.711036708389539, 7.142630306038151, 30.734421563599362, 22.686756749107108, 11.380710551364702, 7.004539088519178, 8.966336984586738, 5.291898197158576, 5.606156857251528, 38.91049647902433, 93.62621411774694, 27.32557005477592, 21.251001433131524, 28.831248989131666, 142.25397959624834, 19.05107215298508, 61.61243304272402, 83.78959456448952, 83.74139791038736, 8.715776993868387, 8.235174974895603, 27.439067713900233, 13.375871564140315, 14.359737391352905, 26.01236835322717, 8.812120826477368, 6.950283286947215, 55.98714672647842, 107.78580254387296, 44.786735761072364, 120.77554539019712, 11.238731399138807, 28.554797138522098, 38.08484408679834, 24.882262972691315, 19.716337285075724, 63.343089325414695, 10.209570103698633, 60.65878416180742, 107.97219182144362, 11.539071769791505, 100.07815878665755, 36.636677975628665, 65.33864906894362, 9.226896988109186, 5.212078718406001, 34.228146691283044, 9.51309680104928, 64.94802058096778, 18.638401044259993, 6.707677533837885, 108.2214474560923, 99.67089551848106, 21.269847301467323, 40.42981894674239, 53.9636582018573, 23.840306069437396, 19.077074626635092, 113.18027180813051, 40.88634821728006, 54.159787028231435, 46.61579537361655, 52.11076659790286, 63.39524891941551, 5.130115738437479, 23.407369725205307, 101.2086925849065, 25.789671559684493, 19.479291360256173, 76.94877758718263, 72.2666105749206, 61.34466852385741, 21.995740175214994, 41.58893477630035, 42.3559283434009, 27.137705817901285, 7.232094310694957, 91.00783769960412, 19.14019352086591, 86.22190014234928, 10.248470384142761, 56.78659635892406, 28.925869999554234, 9.134677331628513, 72.66952202186029, 12.765410134170232, 21.226169966220077, 7.671847997808657, 5.524783363500953, 167.2319723730537, 84.3574612351663, 16.112359605588406, 40.86493876599582, 15.820037644150705, 5.906899655367696, 16.680835483555747, 7.26848333934351, 77.55002048668402, 35.10648872720347, 22.96532604739199, 15.745223532091156, 12.75625384844729, 100.85844812646343, 73.88999850980119, 12.867878677476163, 22.132510649559464, 34.161858989204724, 46.533688044933285, 9.951745236922797, 118.88397664494268, 28.331420454565006, 24.270779642255764, 30.967493648414827, 91.65986378503435, 40.36292871557578, 39.63057726079936, 5.636006419556376, 67.28220455287759, 23.138559065883666, 8.414036951731653, 41.139439982640155, 6.774362216517617, 27.71260361744869, 8.767017976444931, 12.727917777824532, 5.961260421741029, 31.346521658987875, 9.948502755544515, 107.36849874941511, 20.27573760891152, 74.91323432563703, 46.507318406566476, 5.2300974056264415, 8.448599982233018, 14.886877248618053, 5.427610968071502, 29.852501070991487, 20.916118351553667, 37.33662939146641, 6.837346983645385, 101.15256622252585, 109.68380048285434, 26.850046591753017, 23.716961798443357, 31.712695173284114, 124.5357483588526, 130.25693439141935, 6.878935909157202, 39.11382570932324, 50.247754343531454, 68.99234330301607, 7.994912384934183, 29.213215061247336, 8.94125600007997, 37.71075592260759, 7.289470173359557, 58.01784686527541, 16.225521429497334, 15.657182232901498, 39.28428664948832, 80.2381155868336, 9.829026955287764, 8.920978487527506, 30.7632218506481, 7.014087870537328, 6.312375688581849, 25.576500255082138, 16.74592115109255, 63.87955963914583, 81.99009287378655, 81.49244257084958, 70.20233775207646, 13.469967238770622, 50.26185462754449, 17.86481030989458, 25.526142381182925, 6.163853366033696, 9.651870456489544, 13.734708464273698, 50.87720787803228, 152.9265871477291, 35.370807463731104, 27.29753999581863, 17.41546032887867, 89.44230532848371, 81.34072591288825, 43.149727724319604, 52.43780862255133, 51.5730133264007, 87.07609672329848, 88.94286587386335, 92.56865990247208, 31.073041207814978, 23.021988092185033, 40.27050005040799, 39.27473133581833, 25.265414135034163, 34.07160123184784, 52.774878537376104, 15.324895856351404, 57.049817389214645, 35.35005079871101, 71.82827122936214, 25.10973092095438, 5.7213447888465705, 23.52256089556127, 9.16359021839599, 8.426586454680765, 24.198424966085053, 8.551363693248332, 9.893110778777995, 83.30529106765505, 9.820936359067263, 59.10864684387811, 33.26693998871477, 9.115286067888883, 57.58727567571344, 37.45904190112083, 12.676199097757452, 9.22967983459003, 27.229264604465623, 26.543960217752385, 26.105357474107308, 50.120235107235615, 14.380877187343618, 146.26986574186654, 19.765056574381827, 6.855580058791037, 7.615565742266135, 88.00264992753881, 39.82220114370821, 20.621901779942387, 54.04621224211659, 107.31501567197029, 62.34052600907815, 38.05088110976954, 28.238694173503198, 80.2060119941674, 12.209158462240257, 6.046298821749801, 54.73278590379808, 7.383696988049028, 5.618322393951378, 22.909482875489633, 104.28448509141208, 26.63663413970475, 19.54179572391768, 7.314539613120155, 11.763525689645007, 7.934772782549374, 22.53198647998913, 185.4901797040282, 9.962790149552854, 12.360774367890194, 19.513820206326777, 37.28274059730708, 19.218128373239505, 23.1995085175029, 17.969332647958456, 84.05545880751416, 7.153291014642811, 16.752403192826282, 20.77475700872375, 17.040115667332916, 21.3315825278746, 20.33344838192103, 60.81986150572672, 17.300775682655203, 7.3241982848700316, 5.425831813568719, 28.214553719287803, 20.216750290444637, 15.96608278559503, 25.95525914748913, 31.987751620086215, 32.686097176923745, 21.912696659905542, 18.349019818942573, 158.63610580141727, 7.305782991260869, 80.90017832297386, 22.78585320731932, 8.699286189557991, 58.78045941078662, 21.673617725513793, 15.064399643871587, 56.42950198010268, 63.981679931250795, 85.1740214413009, 52.32693793306904, 6.310065077228841, 20.060846760777313, 11.125878486297331, 138.0531179659797, 12.31347583575571, 53.63519522124029, 5.456258169562817, 61.702108931160126, 44.493231724819836, 11.020522206497645, 13.74793607049746, 22.677716956326407, 29.239682156253465, 26.594038781659407, 5.139291602103818, 9.38274216695383, 29.49100993463955, 9.420727991064064, 117.09259302275103, 56.21634023244782, 75.6846961623906, 21.9328835681631, 20.82668103570235, 15.263823667324393, 9.939570661524396, 22.555840867601844, 28.21109551446131, 142.5335731654929, 30.13182454846013, 25.189693688283384, 34.84196749520961, 107.60230220598262, 66.00388316597463, 23.01602873777633, 5.603878177051483, 36.62251263694454, 33.034272302577676, 95.70063202582881, 45.720486169001965, 37.11541568450583, 6.285808931883797, 27.406638451545376, 25.735399851795968, 18.493805486646025, 72.8638309442305, 23.96933283481166, 13.084617409314449, 74.85297171741733, 56.29234444494324, 20.33096527915596, 9.207059224350242, 36.17566680628207, 30.24437546481811, 6.516042581198292, 67.23766829074673, 8.691300591075024, 28.232928831623525, 15.203320587173165, 61.16708476887606, 109.7448099275495, 5.903669542195058, 35.90694513892235, 27.663341852131964, 13.999121635991358, ...])
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)