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 = 44929
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);
([7481374.329780871, 7562877.4747187095, 7713558.219640368, 7718407.2871615235, 7816475.520136404, 7887928.125, 7888224.46943682, 7892057.8125, 7892127.019160393, 7895699.899061338, 7895703.125, 7896717.7625281485, 7919120.010663337, 7921041.774394316, 7933163.2796117775, 7960240.625, 7965890.512333344, 7969610.435230726, 7970234.498214217, 7970371.875, 7970426.726803929, 7970920.96833428, 7971163.532322965, 7971323.4375, 7971368.668865332, 7971371.831701887, 7976996.200474622, 7978247.05622917, 8003071.496248482, 8003334.248134487, 8003665.559190704, 8004668.196263324, 8010449.2806097735, 8013605.762601845, 8013866.842409504, 8013929.047666176, 8014627.740155886, 8014645.644331387, 8014649.952232641, 8015027.314338909, 8015051.708579243, 8015120.604321082, 8015139.214945666, 8015238.962612777, 8015272.187265708, 8015410.060490637, 8015501.16778463, 8015547.610269888, 8016102.124752377, 8016320.3125, 8016534.375, 8016543.710526011, 8017506.003239703, 8018012.60230871, 8019562.014980726, 8020177.900056653, 8022103.68949526, 8022730.919741865, 8052225.042128052, 8141033.90254246, 8149537.778101518, 8166971.875, 8167916.716490005, 8170523.3732215855, 8172419.646848955, 8172796.865306557, 8174546.247004896, 8176865.035488838, 8220134.936690641, 8220151.5625, 8221462.821660766, 8221996.50920174, 8222131.25, 8222461.633095505, 8222917.779767172, 8223764.531649414, 8224467.475583073, 8224870.400433798, 8224935.192281685, 8225795.3125, 8227933.135552802, 8228423.220176436, 8231242.1875, 8232567.731125344, 8233162.785810064, 8233224.24809411, 8234333.486341382, 8234338.5475128135, 8240714.613590931, 8257171.577106748, 8258829.390194204, 8263697.503961311, 8266240.691920856, 8270802.956212847, 8272101.904390077, 8272477.9749065265, 8273043.354871911, 8373841.951066811, 8401218.672501046, 8482757.235970292, 8483140.903903304, 8485686.959194127, 8486584.396773942, 8489542.899048712, 8491070.30977724, 8491587.5, 8491709.083423862, 8492352.302078908, 8492590.7488296, 8493576.11374954, 8494470.820957642, 8529136.952136572, 8530351.5625, 8534994.59916394, 8558076.5625, 8568478.330834843, 8576152.352580352, 8593107.8125, 8593392.377279982, 8593504.425973574, 8593767.502529206, 8593771.509066435, 8593782.10946287, 8594017.962229067, 8594885.9375, 8595309.375, 8596001.5625, 8596441.239710739, 8602382.894224167, 8602838.863632893, 8605389.288528275, 8605691.92889526, 8607571.41053997, 8607687.5, 8608129.6875, 8608360.931808982, 8608916.09128105, 8609671.584564114, 8610737.5, 8610777.15046269, 8611073.319551073, 8611074.782070661, 8611893.658115944, 8612025.75440107, 8612194.381154574, 8612516.124024883, 8613078.366968585, 8614754.6875, 8626426.071656378, 8632956.648363667, 8642575.860660398, 8642695.17422928, 8644731.202418923, 8657142.309029438, 8664968.033316514, 8665038.088544779, 8667074.188389976, 8667873.11320179, 8667953.086822782, 8668168.332714364, 8668937.917580193, 8668948.13070319, 8669201.5625, 8669358.13651142, 8669398.345110878, 8669653.125, 8669688.570252523, 8669811.482657958, 8669847.453330984, 8670110.9375, 8670538.194947245, 8670623.62348036, 8671389.629156113, 8672090.618406566, 8672107.2569699, 8672226.5625, 8672675.29991862, 8672790.349679181, 8673636.66678751, 8674262.078840926, 8674839.040934045, 8675057.8125, 8675155.565554418, 8675587.948197993, 8675598.241999282, 8675870.777981387, 8677030.978595668, 8677055.735377492, 8677310.712937178, 8678317.931467436, 8678523.485509269, 8679434.958788857, 8679447.276464576, 8679457.417676795, 8679464.0625, 8679801.421855185, 8679937.182326809, 8680324.26686579, 8680459.938932667, 8680501.23340411, 8680519.865069352, 8681740.282287149, 8682058.377025967, 8682192.1875, 8682266.763240708, 8682728.677694403, 8682923.86823311, 8683177.256510966, 8683234.169648794, 8683602.277078154, 8684142.904228488, 8690032.840937017, 8690748.065510675, 8691905.358302658, 8693764.0625, 8694768.75, 8694806.449847255, 8697019.773896778, 8698235.820549516, 8699415.84650641, 8732821.87733089, 8733367.814979404, 8739673.414771274, 8739685.261635117, 8740139.590375297, 8743429.122877972, 8744057.8125, 8761852.06606469, 8773093.075746484, 8776770.647191022, 8776924.603249997, 8778546.875, 8778570.791810732, 8779160.9375, 8779273.950861024, 8779934.724283777, 8780954.6875, 8782242.620492475, 8783018.520205054, 8785951.5625, 8786340.625, 8788337.89058828, 8792695.17835234, 8792715.503753304, 8794864.833466042, 8810983.332156867, 8814725.0, 8818788.750671266, 8821415.387140209, 8821960.60934052, 8822020.229942046, 8822337.5, 8826420.3125, 8827365.40212025, 8829551.396345684, 8831068.024370044, 8836595.520451672, 8837120.006854866, 8854532.8125, 8857462.192570008, 8857724.709816124, 8858782.15265954, 8859820.670443244, 8860916.407940913, 8860941.027808528, 8861261.445805397, 8861544.9791444, 8861841.496926963, 8863051.856122036, 8863669.697264241, 8864406.407313751, 8865089.628554268, 8865423.4375, 8865877.852562914, 8866098.4375, 8869017.316942573, 8870811.770756375, 8872787.384111665, 8872877.113415692, 8872996.501089318, 8887600.081222413, 8889131.527543068, 8889588.071210936, 8889617.289895022, 8889637.20216237, 8890062.5, 8891018.27884302, 8891762.5, 8891764.0625, 8892089.0625, 8893129.706510164, 8893515.67148553, 8894946.27813612, 8895847.628976524, 8897538.30253123, 8897999.102162283, 8902817.1875, 8903099.787566327, 8905128.125, 8908340.532777729, 8908401.732122751, 8917268.143244417, 8925231.040422335, 8925914.228088662, 8926734.358084163, 8929650.19393155, 8930263.482010802, 8931425.086321045, 8933068.003719416, 8933084.010754837, 8936733.862599172, 8940095.981481593, 8942101.761314152, 8944110.9685843, 8967010.9375, 8967382.932348557, 8967840.415173732, 8968637.5, 8971765.625, 8971887.975891115, 8975004.814041033, 8975295.300741255, 8975788.671083888, 8976010.9375, 8977703.571296407, 8978184.041021358, 8978656.924311927, 8978660.377247656, 8983536.623061031, 8986241.722011968, 8986507.8125, 8990555.56472025, 8990623.514037753, 8992939.0625, 8993873.044263802, 8996982.650744997, 8999996.068435075, 9023394.785915747, 9023405.459209133, 9023441.912306834, 9048665.571854992, 9049879.466757877, 9060106.25, 9061873.886370761, 9063091.309567709, 9092575.162043016, 9095784.64687159, 9095789.914655082, 9095846.021847853, 9096018.38369109, 9099317.151659576, 9109305.164485246, 9143023.411682293, 9150345.3125, 9153137.119689913, 9156633.972795056, 9157404.02872506, 9166443.75, 9170765.625, 9189898.4375, 9190230.41617744, 9192372.825096298, 9194354.34214292, 9194641.790321669, 9197059.52702667, 9212685.59184248, 9224468.595365347, 9231522.061263084, 9231870.02412973, 9245265.339570835, 9251746.623986201, 9258192.58391595, 9258449.923772411, 9261775.0, 9262881.906963507, 9263628.125, 9264834.075607004, 9267084.254008204, 9273026.143011907, 9274118.210442591, 9274478.123578187, 9274982.286449403, 9332026.5625, 9332100.0, 9358546.387449943, 9361429.6875, 9361779.6875, 9361957.481184054, 9365970.3125, 9367932.005143313, 9375716.83440478, 9378771.875, 9405018.503905995, 9433811.436508939, 9433987.493072852, 9442280.769996699, 9443550.746207267, 9453719.608503757, 9471185.844434716, 9474568.75, 9512763.965341797, 9536360.797811754, 9556927.513980465, 9675597.463670744, 9707754.58675352, 9708531.24715946, 9726203.874392351, 9756654.611624666, 9780721.951313423, 9784985.43706892, 9812911.669565096, 9826605.197161028, 9826628.737068031, 9872175.0, 9882971.875, 9893894.354129866, 9896307.79602387, 9902371.321091978, 9944484.184537722, 10023367.114373503, 10043845.973355213, 10083872.534588426, 10097077.929229308, 10098163.246903352, 10114705.369356249, 10161496.875, 10167294.900387663, 10170865.369574904, 10172387.429622168, 10177431.65305669, 10179694.27983042, 10180198.880971817, 10183184.375, 10221089.719243843, 10259840.045167256, 10269420.922777131, 10337246.162287008, 10345670.763988161, 10368570.976117717, 10372793.435692959, 10410928.07933193, 10416872.269563744, 10421639.0625, 10423468.75, 10442912.235406704, 10454766.30845329, 10466514.743428074, 10511144.647559196, 10516629.219561772, 10529848.257034717, 10537539.015969228, 10601794.040590413, 10609470.3125, 10617102.81042755, 10692041.775579905, 10695812.793086953, 10698356.25, 10704873.84563529, 10726538.170263596, 10754064.201581407, 10763404.564872349, 10774007.028342733, 10777612.5, 10784137.818510175, 10784826.5625, 10784848.961327996, 10786028.927899513, 10786158.590960095, 10786892.1875, 10791439.0625, 10798479.003219215, 10810846.875, 10810857.8125, 10812122.775078736, 10812586.741789557, 10826681.508786205, 10826685.313614933, 10832687.422034701, 10838174.48378475, 10841361.264183586, 10842721.875, 10844322.558131147, 10856398.105541553, 10857535.242181765, 10859873.089796664, 10865292.128196659, 10881237.662449175, 10882169.232679915, 10896036.465686267, 10902154.6875, 10907635.676585503, 10912814.8118121, 10913883.472589355, 10918831.355152043, 10927897.150751889, 10930394.781604346, 10933615.17599469, 10934224.80520201, 10935245.633982206, 10936552.877120849, 10937110.755737118, 10939974.704903277, 10943765.534283664, 10943903.745691914, 10945154.337438367, 10946578.125, 10964371.121237861, 10969494.144350464, 10970231.343001388, 10970326.80965967, 10971562.636889607, 10973431.25, 10978510.08192105, 10981112.418232877, 10981972.331372026, 10982446.952652358, 10982647.569644982, 10987371.875, 11005615.459996942, 11005804.674353043, 11009130.975443305, 11019345.18032675, 11019747.069017489, 11019910.35681018, 11020211.571946632, 11020239.498246767, 11020794.830157835, 11020795.832627876, 11021044.276600422, 11021052.427804543, 11021553.125, 11021846.686492445, 11023191.463416187, 11023860.9375, 11025061.1400493, 11025892.1875, 11027235.9375, 11027531.004743006, 11028489.0625, 11029923.785085298, 11030917.1875, 11032629.6875, 11033125.165188733, 11033273.4375, 11033742.1875, 11034473.4375, 11035692.80403419, 11036243.75, 11038731.70663246, 11041059.21929804, 11042917.601095904, 11050019.611658543, 11051408.850669526, 11053681.549808579, 11055773.350774094, 11057063.587683178, 11058923.4375, 11061390.96159057, 11062714.0625, 11064192.707535109, 11068562.735874407, 11078698.126795659, 11085720.625015134, 11088528.507246377, 11089199.038408084, 11089468.76533657, 11089950.717619915, 11091993.600838099, 11094311.350414066, 11095533.845966512, 11095534.154312346, 11095818.722042989, 11096367.40521485, 11096394.075656995, 11096427.1197519, 11097158.825015884, 11097343.75, 11099352.586917538, 11101059.37173502, 11102393.79436098, 11103355.739583742, 11105224.646119049, 11105595.3125, 11107410.9375, 11108002.772532508, 11108278.395901991, 11118070.703610368, 11118773.882416494, 11119409.021950148, 11120068.529331591, 11120828.78638185, 11132194.041481191, 11137659.375, 11141427.737819731, 11142105.017767562, 11142606.25, 11151267.137272319, 11151283.966053504, 11158113.98313106, 11159143.050175153, 11161239.976743462, 11161701.931819217, 11170026.5625, 11170031.148471888, 11179314.298141683, 11183846.89582091, 11185915.098173747, 11185993.715769934, 11191016.301354442, 11192832.774759058, 11196405.694188194, 11198425.0, 11200225.276043484, 11200232.559889192, 11201808.095515983, 11205921.19930237, 11213183.53529898, 11213579.887334818, 11214050.598258197, 11214108.995124536, 11215276.374899281, 11216822.917586362, 11222850.0, 11223514.781601945, 11225586.41680286, 11225737.5, 11236065.93473054, 11237466.002271168, 11241699.025480676, 11245354.422113644, 11246540.352423785, 11246761.609923193, 11250257.414259592, 11251914.0625, 11253038.242678612, 11257418.749321241, 11257809.106502661, 11258518.47420421, 11258614.901184358, 11258954.6875, 11259359.375, 11260110.179911297, 11260887.5, 11262611.404241359, 11263014.0625, 11263812.5, 11267043.629893959, 11268179.6875, 11268343.363047002, 11268697.622389518, 11269312.776383027, 11270357.8125, 11270636.48222476, 11272142.514342861, 11272612.25359509, 11272819.622590875, 11273233.871711437, 11273436.200839588, 11273806.907134928, 11275417.40351864, 11284822.158711558, 11284825.02272442, 11290414.0625, 11290417.288611446, 11291464.44672961, 11292170.919156348, 11293251.241673205, 11294610.13895364, 11297528.125, 11297906.25, 11299299.677522333, 11300068.75, 11303605.617999049, 11303732.177849544, 11306713.229784735, 11308296.624991365, 11309745.38156558, 11309827.899736345, 11312703.018555222, 11314148.023479333, 11316460.842209548, 11319896.430748498, 11320223.096391896, 11320517.1875, 11320570.258166116, 11320571.134591846, 11325101.327317223, 11325134.575786334, 11325154.6875, 11328109.375, 11332350.295659263, 11332393.280422287, 11332759.744318949, 11333586.490607018, 11336135.634558681, 11340129.6875, 11340241.433610791, 11343345.22071803, 11345151.304988954, 11345831.789250147, 11348362.795500023, 11354679.04134032, 11354876.550597038, 11356010.213352999, 11358455.507092776, 11359117.502248107, 11360894.97909003, 11364135.563954009, 11364900.0, 11364923.116946913, 11364969.665665977, 11365056.87283531, 11365223.762546754, 11366896.875, 11366914.1173287, 11367008.484121941, 11367396.170372019, 11369378.858822692, 11370868.840882007, 11371402.480390454, 11371478.576298311, 11371517.1875, 11371596.555358311, 11373549.673832666, 11373798.988337874, 11375085.9375, 11375853.125, 11376454.085528078, 11376652.692324491, 11376832.882534876, 11377263.037811447, 11380548.414829286, 11380696.60791092, 11381496.698446177, 11382248.015705563, 11382954.077167336, 11383975.380006587, 11388756.25, 11388965.625, 11390379.6875, 11392564.848835722, 11400565.955707079, 11401419.663085312, 11409016.139603686, 11410265.183661446, 11410267.088688051, 11414985.032470502, 11416398.4375, 11419670.23073743, 11420389.0625, 11420415.995803805, 11423553.047497047, 11424279.632237803, 11424354.115804847, 11425946.875, 11431781.25, 11432939.005281268, 11433826.5625, 11441138.737507973, 11447016.246384656, 11448427.995049113, 11450744.54614162, 11450787.140339585, 11451305.728016043, 11453760.994875655, 11455307.70439356, 11455565.605048237, 11457968.75, 11458335.774169974, 11458405.815166663, 11458627.80009284, 11458993.948140673, 11459704.069017762, 11460482.398419147, 11460851.748501522, 11465832.399834335, 11466105.413930986, 11466363.820765961, 11467703.229872571, 11470992.1875, 11474772.396806953, 11475051.218233125, 11475543.75, 11476978.046891125, 11477217.852531103, 11477565.625, 11477702.001381986, 11477725.0, 11477843.304286048, 11478353.125, 11478580.725519693, 11479095.3125, 11479571.788988262, 11481160.9375, 11481188.646819934, 11481803.125, 11481970.99143715, 11482049.006253641, 11482777.281941207, 11483103.125, 11485770.3125, 11487311.845995456, 11490735.63895405, 11499012.003540255, 11500602.439690089, 11500629.631370392, 11501268.552610015, 11502214.0625, 11503190.625, 11504381.25, 11504807.8125, 11505410.9375, 11509752.41065938, 11510227.8653817, 11510636.465002002, 11514357.8125, 11514371.526651014, 11514441.780414104, 11514682.469100524, 11517904.39306746, 11517965.426824741, 11518015.946293404, 11518582.225371355, 11519052.833869329, 11527165.873386119, 11529464.0625, 11529893.75, 11530403.125, 11530497.019329323, 11530687.839483846, 11531501.37004788, 11532239.610115116, 11532270.363908662, 11532622.926160436, 11533678.125, 11535568.362788118, 11536392.1875, 11538397.963626208, 11542562.324117966, 11542701.5625, 11542774.971844211, 11547060.9375, 11548057.874341263, 11548321.325989988, 11549939.866631255, 11550741.57587142, 11553123.33965681, 11553317.340324106, 11566611.377173122, 11567148.019023873, 11567207.308017436, 11569953.125, 11570414.774735812, 11570465.625, 11570947.324742494, 11571315.498918284, 11571950.365593143, 11572883.370980054, 11573485.367993286, 11573637.5, 11575269.87916531, 11575770.140805082, 11576403.700021166, 11576875.043334741, 11577757.8869124, 11578460.4360384, 11579308.62379713, 11581682.03865996, 11585117.027346123, 11588708.990048524, 11588793.75, 11595501.502859602, 11595605.86874489, 11595876.547130762, 11596079.890709806, 11599491.50623999, 11600568.160306027, 11606943.75, 11608318.631675838, 11610553.297245689, 11612683.487167085, 11612752.284833997, 11619739.248777004, 11621164.726284625, 11624905.420633113, 11628022.021069448, 11628056.25, 11629054.9840465, 11631528.288171982, 11631582.029755274, 11638129.6875, 11644752.471568935, 11650829.237109145, 11653530.23987248, 11654617.1875, 11654861.553950422, 11656223.160093013, 11658424.997897418, 11658910.432338765, 11659566.201072272, 11659798.477624968, 11661429.320182594, 11661449.334864985, 11661637.087921385, 11662942.749171978, 11668043.1228046, 11671078.51541683, 11673160.72273004, 11674493.610094557, 11674525.0, 11678748.4375, 11686515.887004891, 11687458.205389598, 11687786.538557338, 11688777.388506096, 11689391.671159212, 11691598.4375, 11694898.179146802, 11696944.334421556, 11698884.748413311, 11698886.768839812, 11698906.25, 11700635.062334985, 11701178.125, 11703422.257090209, 11703723.285133362, 11704124.55681279, 11704201.513151625, 11704451.5625, 11704532.465134839, 11704766.453417761, 11707073.4375, 11712123.104415065, 11714993.14665698, 11719317.1875, 11719563.182313746, 11719615.625, 11721100.194341507, 11724573.4375, 11727710.9375, 11728404.143122794, 11730549.852855405, 11741714.0625, 11743175.0, 11743589.10811429, 11745951.111396635, 11751777.763707737, 11752192.421767252, 11754560.977594944, 11754925.757324705, 11755587.976891853, 11757264.176328827, 11757464.66060829, 11758267.832332548, 11761144.299521418, 11761289.0625, 11766366.445516055, 11778089.27307569, 11781822.454272797, 11797199.852846926, 11797632.391023451, 11799481.70887803, 11800353.125, 11804782.34224418, 11804870.254206631, 11805976.267132921, 11807657.684515586, 11809649.23457799, 11813453.938463015, 11814821.875, 11826710.9375, 11845233.513646584, 11846520.773557162, 11848234.375, 11848654.267562862, 11849770.05030073, 11871088.550893173, 11878156.25, 11881253.822758777, 11895100.021558685, 11931257.674024062, 11931268.034394141, 11931726.811071621, 11948618.355254335, 11955775.705216935, 11990446.229824083, 12006772.846837698, 12010417.1875, 12013733.437604474, 12058001.5625, 12060406.105917629, 12061293.39722671, 12074229.783266278, 12082130.964747706, 12084839.80987662, 12085879.04279451, 12099393.357729897, 12102844.253122695, 12102911.891135477, 12139995.753070654, ...], [13.649849952056627, 5.271414435155795, 16.759337075730016, 75.49837820485888, 6.871989034542766, 28.89418420548397, 5.894495351762387, 29.41976690954974, 22.5799200616071, 9.247487692844473, 50.204313876350646, 7.281283820742399, 28.862810214592564, 22.40604239214969, 12.61275590125831, 55.45088961894912, 5.527637344380276, 21.47049284834797, 35.11848032699233, 42.943690391028426, 11.394617787093496, 5.424152114624636, 21.197259050050015, 67.71104170661687, 8.244132970936505, 16.443144011626046, 6.954752399302292, 11.42330952553253, 10.583162774356381, 10.935033684359535, 27.287103857445256, 64.62322637053357, 7.9395704168124475, 22.315214092590985, 5.516563374440287, 20.203068531326412, 33.98760615986394, 11.689268749892962, 9.291337152854489, 12.548782601453247, 15.529146955925787, 16.16216119756811, 15.55624188619942, 5.163041785352219, 16.282183519967177, 33.84487158678026, 97.91606475317572, 13.882738676041372, 27.439283183574343, 84.13910057837874, 66.82736740817415, 6.755651397978344, 60.832830272741866, 17.814313945136593, 21.643854083688197, 21.1986071638793, 103.18972446953936, 8.119325826319576, 18.007991079034348, 75.58781090073668, 16.119214940844067, 28.748644831395467, 13.406150316717875, 8.252875828428834, 5.2709592603157835, 38.90904050918964, 46.334687538513464, 40.776601531075165, 48.29572723980526, 125.06797170517153, 65.7052801212549, 22.945136103305867, 67.34879283189503, 12.422211631148814, 5.647672169759315, 17.09235001836445, 80.99711380815458, 7.635354507154254, 19.352168150390742, 48.289287739219574, 106.12336783281654, 63.51495550789511, 97.57500546274522, 25.89303784889578, 35.00771269327153, 47.70240201649278, 8.678247617204663, 21.344886604566543, 28.461563759553982, 23.777689798552057, 7.499133885052633, 59.18026798215261, 25.472856686926143, 22.029139887534953, 16.427190013117833, 25.875118204389615, 81.33166571124994, 24.598161744172387, 35.865544624658156, 32.01868612026598, 11.593553910959603, 7.418687227085865, 15.025156079614314, 18.58548864329604, 28.471365571723478, 60.701333011836496, 27.34529216500135, 12.520855927672969, 17.820308526435912, 6.677106211999633, 8.575097101825506, 55.77955199511638, 51.574922484976184, 21.65033150332861, 96.95290646925227, 8.398510585015876, 12.87702776675643, 132.52655658843304, 11.437893770970646, 36.85752321538339, 9.61278362516389, 10.600160043013723, 8.800167900165992, 70.04114697680214, 32.7914102398632, 38.95779184690004, 72.92388203303364, 5.563677172392882, 21.46642760890117, 5.922272084079703, 87.89171174249503, 10.746198141358912, 13.424447080824699, 73.31754637168955, 54.877116990081184, 140.78878965796378, 11.944152904941447, 18.972285051481595, 70.9138290863612, 73.23174975058086, 13.034918251658052, 10.803338798417208, 14.60248618078158, 18.886580476976285, 18.052980614382324, 27.438749895419726, 33.456868628032765, 43.094314114741586, 13.351193350125445, 118.38710773539194, 7.947309086981933, 14.439436758654903, 27.617173814311858, 61.17840004136063, 63.35813476907668, 122.68523865758304, 10.058780288520403, 22.917547784292218, 55.091800295384054, 107.56148174288829, 38.95149663807574, 32.426744277841344, 76.63409852085701, 5.96812797173718, 57.991369324887884, 95.38375432766958, 21.570785960113927, 63.18904250121933, 6.581739353444598, 42.48102386849852, 18.47216470195404, 68.67035152591197, 39.65908980106467, 11.117416456843872, 5.118804371987546, 51.06646410504594, 9.598565148558723, 13.986604712383514, 29.024652727072294, 6.215415029157392, 14.859942320011486, 35.092130632160675, 82.10275966879347, 16.97785350363486, 79.18955580568075, 60.89198123967704, 84.87925290743132, 42.42820678186722, 90.6143435157749, 86.91374868682897, 8.312129655481028, 17.757474732015563, 16.729722365250034, 75.82032369166988, 42.2563863245621, 26.024701790048564, 38.848863266895066, 25.46864396759842, 17.63734935288437, 86.70198747715084, 5.089750591751452, 59.71553290121416, 17.640907516328234, 59.99813561193266, 19.73034724604892, 12.117512869614398, 28.75013486628655, 75.9134933104265, 103.81210921147752, 18.606364358818713, 10.021119176953968, 15.05101722604409, 58.246740790999354, 6.000032430276508, 45.27248200952087, 60.607723608738915, 25.935101698587776, 56.81981141260265, 8.22568529885489, 21.455483105484106, 22.92813521743586, 18.029587037833153, 54.50355347701698, 32.881945226198354, 14.015667745832612, 43.00618636394626, 103.21703667427701, 17.284994075329926, 7.959540148710707, 181.92280109933057, 45.091619538302055, 42.575770747922896, 9.772474962331467, 92.95317849085527, 92.1384094151509, 7.734649378293578, 58.85306356286274, 13.001736684640225, 36.572677294620576, 78.1565870284497, 39.810684487361925, 36.86539112623875, 5.456038079577014, 18.683290673829664, 57.73512158387189, 12.05030908871751, 45.30961207146478, 7.041824943684185, 30.45131474126053, 68.92832096498745, 26.991969789368156, 58.78572444782064, 183.8862590593817, 28.322798869520014, 38.63199187196472, 104.70849903727728, 7.1772102309910535, 41.223711127894035, 42.38359408351985, 30.428309154782614, 23.876944135954417, 48.03458917427104, 95.3791306240933, 7.343685664892522, 16.736721977145415, 21.22289926942865, 13.806856251268968, 19.781669383609938, 8.448202644226495, 42.66706743061401, 6.104612680443056, 6.34146608850124, 84.80295044135202, 131.6478376395747, 87.49850804693683, 21.168670843088314, 41.83183305167452, 26.426662599139284, 9.845144419713115, 8.098272839057657, 53.92524641357599, 16.116587970488506, 13.027008226522206, 11.291619714614157, 6.441394580786114, 67.90399412909778, 43.91194351738311, 71.14975585706576, 57.90488707528202, 44.416073634008356, 75.8179514780299, 127.58114577706874, 10.307450276512707, 88.11309884554773, 5.573340262581694, 24.876093231854227, 44.55283407208147, 24.937663471575355, 66.70489859352166, 64.75103955677474, 85.77714643224931, 5.321551574944797, 62.1617889048396, 277.84539405998794, 11.101368802100197, 15.736066170474079, 24.300871257965042, 92.06697683035597, 47.030986659049844, 22.96338036463431, 94.3360924694815, 151.923704089682, 15.757610090484041, 48.93402879138998, 61.085297308025794, 31.57534182768309, 78.7661032627319, 66.56380711164061, 28.94068708792107, 9.769052445379614, 5.346276559630877, 17.88530100133698, 87.5754973533154, 62.99519955431784, 9.739611701734493, 23.32620262058712, 82.61462192879031, 13.164003549052037, 12.400038909288096, 13.421570567323545, 48.239401224517955, 12.84572120700281, 5.81966519332208, 49.84488335440072, 29.674242825771444, 49.01958485031854, 131.19578648898175, 32.09860598795652, 19.01183011714259, 13.98700760640293, 205.02016081961395, 45.3654044546137, 43.399597461008504, 29.266092557540983, 67.12814423315429, 40.37396814919644, 77.83686067736667, 12.78465482502442, 5.313513207116511, 22.93914527782421, 65.35446745173246, 17.135706427546445, 5.2027646587882055, 47.01478649800138, 38.1067343840397, 31.686177334849944, 73.53098699554766, 99.3473677041296, 41.46163627702852, 66.09228741988049, 84.9338653869345, 20.44060008215388, 65.3628873430517, 10.558888864182057, 15.554454646881613, 23.184538932151085, 284.4000087608105, 140.078330294216, 84.18631157558373, 211.92360563495635, 24.397311688251136, 16.703498445663463, 47.08163247674248, 118.22164079456763, 12.337510190298548, 31.062906231433743, 99.03380214940944, 26.342585278858778, 10.529751172921774, 108.68091636609398, 121.03391850034708, 44.53199355055921, 53.540181939497494, 49.51074666431031, 142.716751206617, 80.34013848857029, 41.22134058823365, 7.487646356021782, 45.28562152892432, 30.911509276988184, 23.095416774932808, 56.86531488326438, 54.66619617652131, 12.008894113654792, 36.27870741692825, 32.64312287282976, 129.4133801355349, 26.63646653603783, 22.229114711234075, 49.41812792100153, 37.400176045418974, 101.54068019389533, 20.452774943025606, 40.81041956578291, 7.567201347307752, 27.04674074611051, 62.80663632249624, 23.89178872632921, 31.850839204876866, 13.324865566893976, 18.72807171143682, 9.80304103852739, 6.8921792785662275, 47.00935236807303, 66.15548078386858, 25.08958732744258, 11.102050842121374, 8.013882436401659, 7.5357733224071595, 6.2580033606948895, 18.245008448872493, 44.33470127206988, 65.89216075004677, 33.978659657673525, 18.078352955948077, 162.96051308204338, 22.417040886650675, 5.6000679852051, 27.20584007622231, 65.69150009848723, 83.61587784454228, 38.57638007490251, 49.768447650564596, 5.998714788422141, 7.406172646930871, 6.587210959195897, 91.3009987038841, 83.8515377848397, 75.63665368927848, 56.27491433179468, 14.770254980652592, 45.6577454795224, 79.2711968608727, 78.1500349684724, 29.616018445628704, 18.39475558254025, 48.759742464612515, 6.637640470126225, 64.60525333315256, 31.855490622202304, 9.292366262927814, 16.17827072791642, 79.80463919910393, 49.75138644707921, 22.419170966330675, 16.190147091903256, 35.732428679770386, 17.254829371582133, 5.750785874689642, 29.015312919889013, 6.075439183321336, 41.01489316237458, 34.2352620849723, 5.301028258291447, 59.49216935977485, 17.401166620551066, 8.76229665912461, 19.061269906776836, 83.17742728967555, 116.03735479599374, 14.913272030976449, 49.611647502813724, 98.76475999046677, 6.388033588488569, 83.76363695757907, 36.68493664459194, 20.340317013438188, 14.652442194261514, 71.22756340372395, 16.35231968699136, 49.759461053458296, 7.313402565732408, 41.111699106656424, 192.39718808441182, 37.08362842849901, 27.403831732935284, 15.59908194623814, 85.0874996163806, 17.426426148758743, 47.45833553053477, 77.85421928417232, 65.34869749915877, 77.83564336783604, 18.847314713011468, 112.36017159580128, 21.190338372850032, 22.01734335414829, 6.456982432946589, 29.597089050787687, 27.459723373318813, 65.46508311003979, 43.13530681103051, 107.93792580787536, 144.28437062519876, 13.756348018766227, 28.878370651354324, 10.123705173533555, 42.10051014057676, 8.336378041286762, 15.975407831549054, 131.78393313810562, 54.52076445537441, 12.447384113432308, 13.226541886596983, 76.80016362620621, 9.397937212917636, 242.66335116864883, 34.03504120528007, 14.347803496873198, 26.526241455367927, 31.88202979856886, 24.847077978344842, 88.64241441213656, 28.962909391803198, 38.7817407719529, 18.774936427510077, 24.043669948979865, 17.379797967200165, 106.1602102298659, 7.3691433647628415, 94.92919650238109, 9.176938447013988, 124.8244973461481, 39.51758662645229, 7.67817680202612, 95.82919727833092, 52.418280191257914, 36.80484321793376, 67.2662491650534, 32.0322906687961, 44.160807849403895, 62.18852150188932, 115.95504977150492, 31.839420393701527, 49.963890177763055, 29.786527213811205, 6.893168339932116, 179.53360883975103, 25.515577066252455, 25.787301036335005, 5.9762518492617875, 102.0709318609866, 133.26487832418704, 143.2891079102357, 149.291931630965, 18.935408544751876, 48.26961099689636, 83.09287804836893, 47.42367883032324, 63.62288690922791, 45.950938946719724, 92.9972345414246, 16.283389901829644, 8.49961720578722, 17.862797548935472, 23.183548136498043, 33.16357866735212, 5.605845100972671, 15.287308908433506, 21.20828373677705, 24.819624870093158, 42.963032115009476, 111.50653359177161, 16.347298582874323, 5.109584086566329, 70.20999605183628, 40.800519879222215, 35.26975395797139, 28.460666556924703, 15.113332165573626, 122.84054943257, 21.710849864593257, 32.06500761355247, 46.46454521121224, 13.749118604220374, 8.435225691840463, 9.685556521975242, 7.772493583677189, 60.88391766562467, 40.13020664683125, 18.248461912415436, 5.352009881842032, 81.82682976749432, 39.74728720921716, 80.88276448786381, 45.7912017111948, 91.32563016217387, 32.9178731208785, 14.64738233554286, 10.185582460149686, 31.094679757777314, 5.047823062929312, 30.21495608700915, 14.56815537428346, 8.415247560256297, 120.61933852139015, 35.2628201047971, 11.074621230231777, 25.626282943642718, 31.912076012475623, 39.40274248630029, 50.28232276882722, 8.438155169902226, 75.14061086240817, 6.821355191725031, 33.407801489042384, 12.482939901901585, 5.719595164816366, 9.894267178960092, 13.667536297741524, 51.84484071028434, 37.124962276679135, 48.060351172008986, 40.42870066538445, 213.65553946437413, 49.28508512373072, 64.48445224873952, 62.943682311105704, 51.872311659321696, 40.84083207771808, 24.107479275503042, 57.868937952797, 81.23469165195246, 45.632068049378084, 12.527898693486483, 52.10730711911261, 33.37206494586214, 93.72197268457327, 19.51751193952799, 64.29817689679749, 71.82120222215735, 12.026732913361245, 64.56724587181462, 20.511902667919514, 28.617968201162626, 52.79473073526317, 43.31325799733867, 46.966381315919655, 14.403657026552715, 6.3664810884156156, 94.5374355412918, 31.670240227734308, 67.09780981824596, 9.623953447066237, 121.61398368964696, 10.197102120933543, 56.97850993858371, 11.565880880598746, 5.998751413994672, 99.68362371618159, 16.14566990349793, 9.350692154484484, 55.43817564742532, 11.28951602039389, 37.72277906158247, 12.229834955001245, 42.800586649936534, 12.248748825991298, 57.807445362052235, 85.86413345294821, 56.0964108095122, 52.89209879002651, 6.964670094788106, 20.247415541516247, 81.02602197386825, 111.56511547985323, 37.77836138604245, 10.792960412141012, 182.51008392356573, 64.09394464160866, 34.60245806124165, 47.081611387567875, 19.42254911160326, 50.63660336883367, 27.493795222017305, 30.76029759724851, 34.60190509783668, 13.49281398647832, 31.267619143057736, 32.49203350544165, 20.193284835570914, 10.465315336543512, 31.987300785712154, 64.99470554569996, 110.01490077270483, 127.93017850869457, 71.30837965491887, 24.15325672951559, 48.63731493579294, 12.09002424260638, 163.38554835984692, 20.14928060917843, 52.62738252340618, 19.514924321306903, 70.67601835719933, 6.537589225919284, 84.44583201291655, 10.59005443686995, 58.950462323708216, 74.50859477686274, 28.39654423906162, 17.206072038695993, 50.03771043927216, 28.97660514561169, 19.256477816644935, 28.966604396638175, 19.66887031978247, 165.68798891298567, 13.640075214049393, 12.946706818268462, 16.85861668562007, 33.021206763617286, 17.484856804233072, 48.887184838440334, 106.99460614033107, 72.76961891075686, 58.32757236631837, 17.795509870953268, 7.012177004789033, 161.3053729465526, 17.482559012719975, 9.312307091655233, 24.180437561946714, 25.46699105830654, 8.998520424582356, 37.676045777229774, 9.67481071402525, 53.93141333902951, 65.92551267790081, 54.49154921768775, 160.37390187693174, 7.211185425096571, 16.203732313567173, 6.334480416260668, 6.213003516210593, 33.31562275059358, 47.35889291400781, 118.23409015033397, 14.638765188909149, 81.90513817361763, 9.665937286127647, 94.43627701825785, 37.85631764862647, 36.287866983678676, 67.83486654091136, 67.78574329230655, 27.4414847495194, 39.956121725589846, 23.436667592349096, 8.6449906537154, 5.3374883732041045, 6.619581588676465, 75.96557260069197, 21.276566328129384, 16.623037495525335, 116.88501535330431, 17.673462200481183, 42.086757806740046, 25.669004447949845, 22.168773893231176, 37.23409438576438, 11.45221190447268, 198.19095541940652, 33.50616954433662, 17.424433083412016, 22.410912699618116, 12.491116983059435, 6.237132592065057, 121.24728689175001, 96.45714540318511, 61.868978585050385, 5.280570241167382, 49.97305937967068, 22.98448116317273, 39.478651156487, 77.58179034024052, 16.927600396737688, 93.20930235569884, 22.05228246471032, 77.17448898315132, 100.8851717407532, 92.88385829294157, 79.29011737884838, 58.703011771163894, 29.536636453038483, 53.07933783503257, 12.385468926865512, 65.92677030343786, 179.65541630405187, 64.47809443565998, 40.549167432545424, 19.486022935662362, 53.12376988826138, 8.040402291785758, 19.824337307287788, 11.041091562183974, 30.885963133486023, 88.84349713637454, 81.75836499166944, 30.042491264679697, 87.99793927829718, 91.39719218314524, 19.59187862620178, 127.54039466181007, 79.83231531296734, 38.05826863541802, 30.139156960288645, 24.512368711367596, 107.65099732952302, 23.822119719319023, 14.236380985901155, 111.81163738353547, 10.319236505017386, 8.138397707850261, 106.81901185096419, 90.63196245270254, 66.47996834659585, 36.419099816551885, 19.878693153484868, 195.85559383240624, 57.37904073248389, 12.107104692538359, 15.141143708817447, 16.010332913813137, 106.65853618049753, 22.697184583908236, 61.43455556637122, 13.398173669078462, 39.89312821289549, 58.87543828260712, 11.083980847969386, 104.48825118161041, 159.3738246089838, 13.193793841135406, 45.98566959512484, 35.90842819080425, 26.72917100321101, 52.53481863442845, 17.4274527896126, 62.46794237580677, 21.72435623602035, 54.038811842608986, 112.31133508815218, 58.1242296499352, 13.856734233226133, 5.928500266147046, 42.75086029448558, 120.45879947360146, 24.170445775396296, 53.611356005422834, 5.78259817924039, 25.540771952534435, 39.71996890671407, 22.530413411772834, 9.395125739973878, 190.20719326068718, 43.613624775524826, 19.136602396838228, 55.10176980065251, 45.49041345703076, 73.75480808586639, 27.397755223237226, 13.663467027760765, 30.379338163705214, 25.14303377234812, 6.385349732865176, 13.972047176555668, 53.326545327411985, 26.386453381589206, 16.99138133581622, 56.1871979501329, 5.313933587234848, 15.702454479451506, 5.864783306077832, 38.20634222249129, 7.6569369206858315, 43.62303414657566, 86.78344924589013, 36.20286242977713, 5.758248336562041, 65.37611637491105, 21.61792869030031, 100.8848934523511, 17.364729146542153, 50.453041931906, 17.959860793354732, 33.5252073617209, 23.0529554390503, 13.311932816818743, 17.710534309789324, 49.51058651846272, 22.927325197852447, 19.990101464841505, 25.0807042583054, 88.40335461315382, 59.84947865200034, 5.63601433970854, 37.13444293934487, 5.5263287977123845, 55.998735534194346, 76.93613123990941, 168.93798562687255, 9.687282414483548, 27.403436093335415, 38.22200395573908, 21.331626347514515, 181.66171008362875, 88.48949491908667, 17.76133809719246, 46.305126219281405, 96.50591702481765, 59.17704746532413, 10.457429085881971, 138.3204070534966, 40.476771366437504, 25.839438679288133, 55.29900870211106, 6.479383166005949, 36.393489594617186, 16.5489752663844, 12.727626088399449, 49.76845489730146, 42.86690424517393, 26.624971265572167, 44.65475575343216, 20.099472542600633, 64.62124563907506, 18.770026537139664, 138.4209062050687, 35.29519415721944, 167.91194224712928, 57.33825460771821, 52.53772861276595, 47.956654135794814, 63.306391005185795, 32.19347922192391, 22.998167003193874, 11.514750187325358, 15.096566996536101, 138.00153409537933, 13.8211423635232, 11.310415242294761, 201.61017691570666, 12.31127772377988, 50.09428574939825, 120.02079178067197, 7.929656775867608, 15.809842384870171, 35.90757523979471, 14.408804258139128, 10.5271673859552, 24.62144399509029, 53.965513460768584, 57.191454785222454, 5.040562944353615, 82.30934740408938, 80.52329472037789, 6.3734448797407905, 113.62754812818679, 43.814828648992425, 102.42780154362349, 18.514270754700245, 11.933920165010296, 69.05766884161156, 13.386751320468791, 32.71588987855607, 13.294369677613417, 104.22756576342478, 11.590159642805824, 177.05881007783782, 26.0593313719049, 10.167341852354868, 100.35742103340624, 7.466443292689971, 14.315575832100349, 20.157621460671624, 20.633983188718428, 67.38186569809105, 7.296075524155309, 125.10897587311081, 7.084084943848707, 136.20929161867485, 16.109162915950446, 236.78649272175238, 61.86057984134683, 26.1807794432436, 64.41231793344167, 240.24482600092287, 38.70280520499099, 27.800347102227985, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7481374.329780871, 7562877.4747187095, 7713558.219640368, 7718407.2871615235, 7816475.520136404, 7887928.125, 7888224.46943682, 7892057.8125, 7892127.019160393, 7895699.899061338, 7895703.125, 7896717.7625281485, 7919120.010663337, 7921041.774394316, 7933163.2796117775, 7960240.625, 7965890.512333344, 7969610.435230726, 7970234.498214217, 7970371.875, 7970426.726803929, 7970920.96833428, 7971163.532322965, 7971323.4375, 7971368.668865332, 7971371.831701887, 7976996.200474622, 7978247.05622917, 8003071.496248482, 8003334.248134487, 8003665.559190704, 8004668.196263324, 8010449.2806097735, 8013605.762601845, 8013866.842409504, 8013929.047666176, 8014627.740155886, 8014645.644331387, 8014649.952232641, 8015027.314338909, 8015051.708579243, 8015120.604321082, 8015139.214945666, 8015238.962612777, 8015272.187265708, 8015410.060490637, 8015501.16778463, 8015547.610269888, 8016102.124752377, 8016320.3125, 8016534.375, 8016543.710526011, 8017506.003239703, 8018012.60230871, 8019562.014980726, 8020177.900056653, 8022103.68949526, 8022730.919741865, 8052225.042128052, 8141033.90254246, 8149537.778101518, 8166971.875, 8167916.716490005, 8170523.3732215855, 8172419.646848955, 8172796.865306557, 8174546.247004896, 8176865.035488838, 8220134.936690641, 8220151.5625, 8221462.821660766, 8221996.50920174, 8222131.25, 8222461.633095505, 8222917.779767172, 8223764.531649414, 8224467.475583073, 8224870.400433798, 8224935.192281685, 8225795.3125, 8227933.135552802, 8228423.220176436, 8231242.1875, 8232567.731125344, 8233162.785810064, 8233224.24809411, 8234333.486341382, 8234338.5475128135, 8240714.613590931, 8257171.577106748, 8258829.390194204, 8263697.503961311, 8266240.691920856, 8270802.956212847, 8272101.904390077, 8272477.9749065265, 8273043.354871911, 8373841.951066811, 8401218.672501046, 8482757.235970292, 8483140.903903304, 8485686.959194127, 8486584.396773942, 8489542.899048712, 8491070.30977724, 8491587.5, 8491709.083423862, 8492352.302078908, 8492590.7488296, 8493576.11374954, 8494470.820957642, 8529136.952136572, 8530351.5625, 8534994.59916394, 8558076.5625, 8568478.330834843, 8576152.352580352, 8593107.8125, 8593392.377279982, 8593504.425973574, 8593767.502529206, 8593771.509066435, 8593782.10946287, 8594017.962229067, 8594885.9375, 8595309.375, 8596001.5625, 8596441.239710739, 8602382.894224167, 8602838.863632893, 8605389.288528275, 8605691.92889526, 8607571.41053997, 8607687.5, 8608129.6875, 8608360.931808982, 8608916.09128105, 8609671.584564114, 8610737.5, 8610777.15046269, 8611073.319551073, 8611074.782070661, 8611893.658115944, 8612025.75440107, 8612194.381154574, 8612516.124024883, 8613078.366968585, 8614754.6875, 8626426.071656378, 8632956.648363667, 8642575.860660398, 8642695.17422928, 8644731.202418923, 8657142.309029438, 8664968.033316514, 8665038.088544779, 8667074.188389976, 8667873.11320179, 8667953.086822782, 8668168.332714364, 8668937.917580193, 8668948.13070319, 8669201.5625, 8669358.13651142, 8669398.345110878, 8669653.125, 8669688.570252523, 8669811.482657958, 8669847.453330984, 8670110.9375, 8670538.194947245, 8670623.62348036, 8671389.629156113, 8672090.618406566, 8672107.2569699, 8672226.5625, 8672675.29991862, 8672790.349679181, 8673636.66678751, 8674262.078840926, 8674839.040934045, 8675057.8125, 8675155.565554418, 8675587.948197993, 8675598.241999282, 8675870.777981387, 8677030.978595668, 8677055.735377492, 8677310.712937178, 8678317.931467436, 8678523.485509269, 8679434.958788857, 8679447.276464576, 8679457.417676795, 8679464.0625, 8679801.421855185, 8679937.182326809, 8680324.26686579, 8680459.938932667, 8680501.23340411, 8680519.865069352, 8681740.282287149, 8682058.377025967, 8682192.1875, 8682266.763240708, 8682728.677694403, 8682923.86823311, 8683177.256510966, 8683234.169648794, 8683602.277078154, 8684142.904228488, 8690032.840937017, 8690748.065510675, 8691905.358302658, 8693764.0625, 8694768.75, 8694806.449847255, 8697019.773896778, 8698235.820549516, 8699415.84650641, 8732821.87733089, 8733367.814979404, 8739673.414771274, 8739685.261635117, 8740139.590375297, 8743429.122877972, 8744057.8125, 8761852.06606469, 8773093.075746484, 8776770.647191022, 8776924.603249997, 8778546.875, 8778570.791810732, 8779160.9375, 8779273.950861024, 8779934.724283777, 8780954.6875, 8782242.620492475, 8783018.520205054, 8785951.5625, 8786340.625, 8788337.89058828, 8792695.17835234, 8792715.503753304, 8794864.833466042, 8810983.332156867, 8814725.0, 8818788.750671266, 8821415.387140209, 8821960.60934052, 8822020.229942046, 8822337.5, 8826420.3125, 8827365.40212025, 8829551.396345684, 8831068.024370044, 8836595.520451672, 8837120.006854866, 8854532.8125, 8857462.192570008, 8857724.709816124, 8858782.15265954, 8859820.670443244, 8860916.407940913, 8860941.027808528, 8861261.445805397, 8861544.9791444, 8861841.496926963, 8863051.856122036, 8863669.697264241, 8864406.407313751, 8865089.628554268, 8865423.4375, 8865877.852562914, 8866098.4375, 8869017.316942573, 8870811.770756375, 8872787.384111665, 8872877.113415692, 8872996.501089318, 8887600.081222413, 8889131.527543068, 8889588.071210936, 8889617.289895022, 8889637.20216237, 8890062.5, 8891018.27884302, 8891762.5, 8891764.0625, 8892089.0625, 8893129.706510164, 8893515.67148553, 8894946.27813612, 8895847.628976524, 8897538.30253123, 8897999.102162283, 8902817.1875, 8903099.787566327, 8905128.125, 8908340.532777729, 8908401.732122751, 8917268.143244417, 8925231.040422335, 8925914.228088662, 8926734.358084163, 8929650.19393155, 8930263.482010802, 8931425.086321045, 8933068.003719416, 8933084.010754837, 8936733.862599172, 8940095.981481593, 8942101.761314152, 8944110.9685843, 8967010.9375, 8967382.932348557, 8967840.415173732, 8968637.5, 8971765.625, 8971887.975891115, 8975004.814041033, 8975295.300741255, 8975788.671083888, 8976010.9375, 8977703.571296407, 8978184.041021358, 8978656.924311927, 8978660.377247656, 8983536.623061031, 8986241.722011968, 8986507.8125, 8990555.56472025, 8990623.514037753, 8992939.0625, 8993873.044263802, 8996982.650744997, 8999996.068435075, 9023394.785915747, 9023405.459209133, 9023441.912306834, 9048665.571854992, 9049879.466757877, 9060106.25, 9061873.886370761, 9063091.309567709, 9092575.162043016, 9095784.64687159, 9095789.914655082, 9095846.021847853, 9096018.38369109, 9099317.151659576, 9109305.164485246, 9143023.411682293, 9150345.3125, 9153137.119689913, 9156633.972795056, 9157404.02872506, 9166443.75, 9170765.625, 9189898.4375, 9190230.41617744, 9192372.825096298, 9194354.34214292, 9194641.790321669, 9197059.52702667, 9212685.59184248, 9224468.595365347, 9231522.061263084, 9231870.02412973, 9245265.339570835, 9251746.623986201, 9258192.58391595, 9258449.923772411, 9261775.0, 9262881.906963507, 9263628.125, 9264834.075607004, 9267084.254008204, 9273026.143011907, 9274118.210442591, 9274478.123578187, 9274982.286449403, 9332026.5625, 9332100.0, 9358546.387449943, 9361429.6875, 9361779.6875, 9361957.481184054, 9365970.3125, 9367932.005143313, 9375716.83440478, 9378771.875, 9405018.503905995, 9433811.436508939, 9433987.493072852, 9442280.769996699, 9443550.746207267, 9453719.608503757, 9471185.844434716, 9474568.75, 9512763.965341797, 9536360.797811754, 9556927.513980465, 9675597.463670744, 9707754.58675352, 9708531.24715946, 9726203.874392351, 9756654.611624666, 9780721.951313423, 9784985.43706892, 9812911.669565096, 9826605.197161028, 9826628.737068031, 9872175.0, 9882971.875, 9893894.354129866, 9896307.79602387, 9902371.321091978, 9944484.184537722, 10023367.114373503, 10043845.973355213, 10083872.534588426, 10097077.929229308, 10098163.246903352, 10114705.369356249, 10161496.875, 10167294.900387663, 10170865.369574904, 10172387.429622168, 10177431.65305669, 10179694.27983042, 10180198.880971817, 10183184.375, 10221089.719243843, 10259840.045167256, 10269420.922777131, 10337246.162287008, 10345670.763988161, 10368570.976117717, 10372793.435692959, 10410928.07933193, 10416872.269563744, 10421639.0625, 10423468.75, 10442912.235406704, 10454766.30845329, 10466514.743428074, 10511144.647559196, 10516629.219561772, 10529848.257034717, 10537539.015969228, 10601794.040590413, 10609470.3125, 10617102.81042755, 10692041.775579905, 10695812.793086953, 10698356.25, 10704873.84563529, 10726538.170263596, 10754064.201581407, 10763404.564872349, 10774007.028342733, 10777612.5, 10784137.818510175, 10784826.5625, 10784848.961327996, 10786028.927899513, 10786158.590960095, 10786892.1875, 10791439.0625, 10798479.003219215, 10810846.875, 10810857.8125, 10812122.775078736, 10812586.741789557, 10826681.508786205, 10826685.313614933, 10832687.422034701, 10838174.48378475, 10841361.264183586, 10842721.875, 10844322.558131147, 10856398.105541553, 10857535.242181765, 10859873.089796664, 10865292.128196659, 10881237.662449175, 10882169.232679915, 10896036.465686267, 10902154.6875, 10907635.676585503, 10912814.8118121, 10913883.472589355, 10918831.355152043, 10927897.150751889, 10930394.781604346, 10933615.17599469, 10934224.80520201, 10935245.633982206, 10936552.877120849, 10937110.755737118, 10939974.704903277, 10943765.534283664, 10943903.745691914, 10945154.337438367, 10946578.125, 10964371.121237861, 10969494.144350464, 10970231.343001388, 10970326.80965967, 10971562.636889607, 10973431.25, 10978510.08192105, 10981112.418232877, 10981972.331372026, 10982446.952652358, 10982647.569644982, 10987371.875, 11005615.459996942, 11005804.674353043, 11009130.975443305, 11019345.18032675, 11019747.069017489, 11019910.35681018, 11020211.571946632, 11020239.498246767, 11020794.830157835, 11020795.832627876, 11021044.276600422, 11021052.427804543, 11021553.125, 11021846.686492445, 11023191.463416187, 11023860.9375, 11025061.1400493, 11025892.1875, 11027235.9375, 11027531.004743006, 11028489.0625, 11029923.785085298, 11030917.1875, 11032629.6875, 11033125.165188733, 11033273.4375, 11033742.1875, 11034473.4375, 11035692.80403419, 11036243.75, 11038731.70663246, 11041059.21929804, 11042917.601095904, 11050019.611658543, 11051408.850669526, 11053681.549808579, 11055773.350774094, 11057063.587683178, 11058923.4375, 11061390.96159057, 11062714.0625, 11064192.707535109, 11068562.735874407, 11078698.126795659, 11085720.625015134, 11088528.507246377, 11089199.038408084, 11089468.76533657, 11089950.717619915, 11091993.600838099, 11094311.350414066, 11095533.845966512, 11095534.154312346, 11095818.722042989, 11096367.40521485, 11096394.075656995, 11096427.1197519, 11097158.825015884, 11097343.75, 11099352.586917538, 11101059.37173502, 11102393.79436098, 11103355.739583742, 11105224.646119049, 11105595.3125, 11107410.9375, 11108002.772532508, 11108278.395901991, 11118070.703610368, 11118773.882416494, 11119409.021950148, 11120068.529331591, 11120828.78638185, 11132194.041481191, 11137659.375, 11141427.737819731, 11142105.017767562, 11142606.25, 11151267.137272319, 11151283.966053504, 11158113.98313106, 11159143.050175153, 11161239.976743462, 11161701.931819217, 11170026.5625, 11170031.148471888, 11179314.298141683, 11183846.89582091, 11185915.098173747, 11185993.715769934, 11191016.301354442, 11192832.774759058, 11196405.694188194, 11198425.0, 11200225.276043484, 11200232.559889192, 11201808.095515983, 11205921.19930237, 11213183.53529898, 11213579.887334818, 11214050.598258197, 11214108.995124536, 11215276.374899281, 11216822.917586362, 11222850.0, 11223514.781601945, 11225586.41680286, 11225737.5, 11236065.93473054, 11237466.002271168, 11241699.025480676, 11245354.422113644, 11246540.352423785, 11246761.609923193, 11250257.414259592, 11251914.0625, 11253038.242678612, 11257418.749321241, 11257809.106502661, 11258518.47420421, 11258614.901184358, 11258954.6875, 11259359.375, 11260110.179911297, 11260887.5, 11262611.404241359, 11263014.0625, 11263812.5, 11267043.629893959, 11268179.6875, 11268343.363047002, 11268697.622389518, 11269312.776383027, 11270357.8125, 11270636.48222476, 11272142.514342861, 11272612.25359509, 11272819.622590875, 11273233.871711437, 11273436.200839588, 11273806.907134928, 11275417.40351864, 11284822.158711558, 11284825.02272442, 11290414.0625, 11290417.288611446, 11291464.44672961, 11292170.919156348, 11293251.241673205, 11294610.13895364, 11297528.125, 11297906.25, 11299299.677522333, 11300068.75, 11303605.617999049, 11303732.177849544, 11306713.229784735, 11308296.624991365, 11309745.38156558, 11309827.899736345, 11312703.018555222, 11314148.023479333, 11316460.842209548, 11319896.430748498, 11320223.096391896, 11320517.1875, 11320570.258166116, 11320571.134591846, 11325101.327317223, 11325134.575786334, 11325154.6875, 11328109.375, 11332350.295659263, 11332393.280422287, 11332759.744318949, 11333586.490607018, 11336135.634558681, 11340129.6875, 11340241.433610791, 11343345.22071803, 11345151.304988954, 11345831.789250147, 11348362.795500023, 11354679.04134032, 11354876.550597038, 11356010.213352999, 11358455.507092776, 11359117.502248107, 11360894.97909003, 11364135.563954009, 11364900.0, 11364923.116946913, 11364969.665665977, 11365056.87283531, 11365223.762546754, 11366896.875, 11366914.1173287, 11367008.484121941, 11367396.170372019, 11369378.858822692, 11370868.840882007, 11371402.480390454, 11371478.576298311, 11371517.1875, 11371596.555358311, 11373549.673832666, 11373798.988337874, 11375085.9375, 11375853.125, 11376454.085528078, 11376652.692324491, 11376832.882534876, 11377263.037811447, 11380548.414829286, 11380696.60791092, 11381496.698446177, 11382248.015705563, 11382954.077167336, 11383975.380006587, 11388756.25, 11388965.625, 11390379.6875, 11392564.848835722, 11400565.955707079, 11401419.663085312, 11409016.139603686, 11410265.183661446, 11410267.088688051, 11414985.032470502, 11416398.4375, 11419670.23073743, 11420389.0625, 11420415.995803805, 11423553.047497047, 11424279.632237803, 11424354.115804847, 11425946.875, 11431781.25, 11432939.005281268, 11433826.5625, 11441138.737507973, 11447016.246384656, 11448427.995049113, 11450744.54614162, 11450787.140339585, 11451305.728016043, 11453760.994875655, 11455307.70439356, 11455565.605048237, 11457968.75, 11458335.774169974, 11458405.815166663, 11458627.80009284, 11458993.948140673, 11459704.069017762, 11460482.398419147, 11460851.748501522, 11465832.399834335, 11466105.413930986, 11466363.820765961, 11467703.229872571, 11470992.1875, 11474772.396806953, 11475051.218233125, 11475543.75, 11476978.046891125, 11477217.852531103, 11477565.625, 11477702.001381986, 11477725.0, 11477843.304286048, 11478353.125, 11478580.725519693, 11479095.3125, 11479571.788988262, 11481160.9375, 11481188.646819934, 11481803.125, 11481970.99143715, 11482049.006253641, 11482777.281941207, 11483103.125, 11485770.3125, 11487311.845995456, 11490735.63895405, 11499012.003540255, 11500602.439690089, 11500629.631370392, 11501268.552610015, 11502214.0625, 11503190.625, 11504381.25, 11504807.8125, 11505410.9375, 11509752.41065938, 11510227.8653817, 11510636.465002002, 11514357.8125, 11514371.526651014, 11514441.780414104, 11514682.469100524, 11517904.39306746, 11517965.426824741, 11518015.946293404, 11518582.225371355, 11519052.833869329, 11527165.873386119, 11529464.0625, 11529893.75, 11530403.125, 11530497.019329323, 11530687.839483846, 11531501.37004788, 11532239.610115116, 11532270.363908662, 11532622.926160436, 11533678.125, 11535568.362788118, 11536392.1875, 11538397.963626208, 11542562.324117966, 11542701.5625, 11542774.971844211, 11547060.9375, 11548057.874341263, 11548321.325989988, 11549939.866631255, 11550741.57587142, 11553123.33965681, 11553317.340324106, 11566611.377173122, 11567148.019023873, 11567207.308017436, 11569953.125, 11570414.774735812, 11570465.625, 11570947.324742494, 11571315.498918284, 11571950.365593143, 11572883.370980054, 11573485.367993286, 11573637.5, 11575269.87916531, 11575770.140805082, 11576403.700021166, 11576875.043334741, 11577757.8869124, 11578460.4360384, 11579308.62379713, 11581682.03865996, 11585117.027346123, 11588708.990048524, 11588793.75, 11595501.502859602, 11595605.86874489, 11595876.547130762, 11596079.890709806, 11599491.50623999, 11600568.160306027, 11606943.75, 11608318.631675838, 11610553.297245689, 11612683.487167085, 11612752.284833997, 11619739.248777004, 11621164.726284625, 11624905.420633113, 11628022.021069448, 11628056.25, 11629054.9840465, 11631528.288171982, 11631582.029755274, 11638129.6875, 11644752.471568935, 11650829.237109145, 11653530.23987248, 11654617.1875, 11654861.553950422, 11656223.160093013, 11658424.997897418, 11658910.432338765, 11659566.201072272, 11659798.477624968, 11661429.320182594, 11661449.334864985, 11661637.087921385, 11662942.749171978, 11668043.1228046, 11671078.51541683, 11673160.72273004, 11674493.610094557, 11674525.0, 11678748.4375, 11686515.887004891, 11687458.205389598, 11687786.538557338, 11688777.388506096, 11689391.671159212, 11691598.4375, 11694898.179146802, 11696944.334421556, 11698884.748413311, 11698886.768839812, 11698906.25, 11700635.062334985, 11701178.125, 11703422.257090209, 11703723.285133362, 11704124.55681279, 11704201.513151625, 11704451.5625, 11704532.465134839, 11704766.453417761, 11707073.4375, 11712123.104415065, 11714993.14665698, 11719317.1875, 11719563.182313746, 11719615.625, 11721100.194341507, 11724573.4375, 11727710.9375, 11728404.143122794, 11730549.852855405, 11741714.0625, 11743175.0, 11743589.10811429, 11745951.111396635, 11751777.763707737, 11752192.421767252, 11754560.977594944, 11754925.757324705, 11755587.976891853, 11757264.176328827, 11757464.66060829, 11758267.832332548, 11761144.299521418, 11761289.0625, 11766366.445516055, 11778089.27307569, 11781822.454272797, 11797199.852846926, 11797632.391023451, 11799481.70887803, 11800353.125, 11804782.34224418, 11804870.254206631, 11805976.267132921, 11807657.684515586, 11809649.23457799, 11813453.938463015, 11814821.875, 11826710.9375, 11845233.513646584, 11846520.773557162, 11848234.375, 11848654.267562862, 11849770.05030073, 11871088.550893173, 11878156.25, 11881253.822758777, 11895100.021558685, 11931257.674024062, 11931268.034394141, 11931726.811071621, 11948618.355254335, 11955775.705216935, 11990446.229824083, 12006772.846837698, 12010417.1875, 12013733.437604474, 12058001.5625, 12060406.105917629, 12061293.39722671, 12074229.783266278, 12082130.964747706, 12084839.80987662, 12085879.04279451, 12099393.357729897, 12102844.253122695, 12102911.891135477, 12139995.753070654, ...], [13.649849952056627, 5.271414435155795, 16.759337075730016, 75.49837820485888, 6.871989034542766, 28.89418420548397, 5.894495351762387, 29.41976690954974, 22.5799200616071, 9.247487692844473, 50.204313876350646, 7.281283820742399, 28.862810214592564, 22.40604239214969, 12.61275590125831, 55.45088961894912, 5.527637344380276, 21.47049284834797, 35.11848032699233, 42.943690391028426, 11.394617787093496, 5.424152114624636, 21.197259050050015, 67.71104170661687, 8.244132970936505, 16.443144011626046, 6.954752399302292, 11.42330952553253, 10.583162774356381, 10.935033684359535, 27.287103857445256, 64.62322637053357, 7.9395704168124475, 22.315214092590985, 5.516563374440287, 20.203068531326412, 33.98760615986394, 11.689268749892962, 9.291337152854489, 12.548782601453247, 15.529146955925787, 16.16216119756811, 15.55624188619942, 5.163041785352219, 16.282183519967177, 33.84487158678026, 97.91606475317572, 13.882738676041372, 27.439283183574343, 84.13910057837874, 66.82736740817415, 6.755651397978344, 60.832830272741866, 17.814313945136593, 21.643854083688197, 21.1986071638793, 103.18972446953936, 8.119325826319576, 18.007991079034348, 75.58781090073668, 16.119214940844067, 28.748644831395467, 13.406150316717875, 8.252875828428834, 5.2709592603157835, 38.90904050918964, 46.334687538513464, 40.776601531075165, 48.29572723980526, 125.06797170517153, 65.7052801212549, 22.945136103305867, 67.34879283189503, 12.422211631148814, 5.647672169759315, 17.09235001836445, 80.99711380815458, 7.635354507154254, 19.352168150390742, 48.289287739219574, 106.12336783281654, 63.51495550789511, 97.57500546274522, 25.89303784889578, 35.00771269327153, 47.70240201649278, 8.678247617204663, 21.344886604566543, 28.461563759553982, 23.777689798552057, 7.499133885052633, 59.18026798215261, 25.472856686926143, 22.029139887534953, 16.427190013117833, 25.875118204389615, 81.33166571124994, 24.598161744172387, 35.865544624658156, 32.01868612026598, 11.593553910959603, 7.418687227085865, 15.025156079614314, 18.58548864329604, 28.471365571723478, 60.701333011836496, 27.34529216500135, 12.520855927672969, 17.820308526435912, 6.677106211999633, 8.575097101825506, 55.77955199511638, 51.574922484976184, 21.65033150332861, 96.95290646925227, 8.398510585015876, 12.87702776675643, 132.52655658843304, 11.437893770970646, 36.85752321538339, 9.61278362516389, 10.600160043013723, 8.800167900165992, 70.04114697680214, 32.7914102398632, 38.95779184690004, 72.92388203303364, 5.563677172392882, 21.46642760890117, 5.922272084079703, 87.89171174249503, 10.746198141358912, 13.424447080824699, 73.31754637168955, 54.877116990081184, 140.78878965796378, 11.944152904941447, 18.972285051481595, 70.9138290863612, 73.23174975058086, 13.034918251658052, 10.803338798417208, 14.60248618078158, 18.886580476976285, 18.052980614382324, 27.438749895419726, 33.456868628032765, 43.094314114741586, 13.351193350125445, 118.38710773539194, 7.947309086981933, 14.439436758654903, 27.617173814311858, 61.17840004136063, 63.35813476907668, 122.68523865758304, 10.058780288520403, 22.917547784292218, 55.091800295384054, 107.56148174288829, 38.95149663807574, 32.426744277841344, 76.63409852085701, 5.96812797173718, 57.991369324887884, 95.38375432766958, 21.570785960113927, 63.18904250121933, 6.581739353444598, 42.48102386849852, 18.47216470195404, 68.67035152591197, 39.65908980106467, 11.117416456843872, 5.118804371987546, 51.06646410504594, 9.598565148558723, 13.986604712383514, 29.024652727072294, 6.215415029157392, 14.859942320011486, 35.092130632160675, 82.10275966879347, 16.97785350363486, 79.18955580568075, 60.89198123967704, 84.87925290743132, 42.42820678186722, 90.6143435157749, 86.91374868682897, 8.312129655481028, 17.757474732015563, 16.729722365250034, 75.82032369166988, 42.2563863245621, 26.024701790048564, 38.848863266895066, 25.46864396759842, 17.63734935288437, 86.70198747715084, 5.089750591751452, 59.71553290121416, 17.640907516328234, 59.99813561193266, 19.73034724604892, 12.117512869614398, 28.75013486628655, 75.9134933104265, 103.81210921147752, 18.606364358818713, 10.021119176953968, 15.05101722604409, 58.246740790999354, 6.000032430276508, 45.27248200952087, 60.607723608738915, 25.935101698587776, 56.81981141260265, 8.22568529885489, 21.455483105484106, 22.92813521743586, 18.029587037833153, 54.50355347701698, 32.881945226198354, 14.015667745832612, 43.00618636394626, 103.21703667427701, 17.284994075329926, 7.959540148710707, 181.92280109933057, 45.091619538302055, 42.575770747922896, 9.772474962331467, 92.95317849085527, 92.1384094151509, 7.734649378293578, 58.85306356286274, 13.001736684640225, 36.572677294620576, 78.1565870284497, 39.810684487361925, 36.86539112623875, 5.456038079577014, 18.683290673829664, 57.73512158387189, 12.05030908871751, 45.30961207146478, 7.041824943684185, 30.45131474126053, 68.92832096498745, 26.991969789368156, 58.78572444782064, 183.8862590593817, 28.322798869520014, 38.63199187196472, 104.70849903727728, 7.1772102309910535, 41.223711127894035, 42.38359408351985, 30.428309154782614, 23.876944135954417, 48.03458917427104, 95.3791306240933, 7.343685664892522, 16.736721977145415, 21.22289926942865, 13.806856251268968, 19.781669383609938, 8.448202644226495, 42.66706743061401, 6.104612680443056, 6.34146608850124, 84.80295044135202, 131.6478376395747, 87.49850804693683, 21.168670843088314, 41.83183305167452, 26.426662599139284, 9.845144419713115, 8.098272839057657, 53.92524641357599, 16.116587970488506, 13.027008226522206, 11.291619714614157, 6.441394580786114, 67.90399412909778, 43.91194351738311, 71.14975585706576, 57.90488707528202, 44.416073634008356, 75.8179514780299, 127.58114577706874, 10.307450276512707, 88.11309884554773, 5.573340262581694, 24.876093231854227, 44.55283407208147, 24.937663471575355, 66.70489859352166, 64.75103955677474, 85.77714643224931, 5.321551574944797, 62.1617889048396, 277.84539405998794, 11.101368802100197, 15.736066170474079, 24.300871257965042, 92.06697683035597, 47.030986659049844, 22.96338036463431, 94.3360924694815, 151.923704089682, 15.757610090484041, 48.93402879138998, 61.085297308025794, 31.57534182768309, 78.7661032627319, 66.56380711164061, 28.94068708792107, 9.769052445379614, 5.346276559630877, 17.88530100133698, 87.5754973533154, 62.99519955431784, 9.739611701734493, 23.32620262058712, 82.61462192879031, 13.164003549052037, 12.400038909288096, 13.421570567323545, 48.239401224517955, 12.84572120700281, 5.81966519332208, 49.84488335440072, 29.674242825771444, 49.01958485031854, 131.19578648898175, 32.09860598795652, 19.01183011714259, 13.98700760640293, 205.02016081961395, 45.3654044546137, 43.399597461008504, 29.266092557540983, 67.12814423315429, 40.37396814919644, 77.83686067736667, 12.78465482502442, 5.313513207116511, 22.93914527782421, 65.35446745173246, 17.135706427546445, 5.2027646587882055, 47.01478649800138, 38.1067343840397, 31.686177334849944, 73.53098699554766, 99.3473677041296, 41.46163627702852, 66.09228741988049, 84.9338653869345, 20.44060008215388, 65.3628873430517, 10.558888864182057, 15.554454646881613, 23.184538932151085, 284.4000087608105, 140.078330294216, 84.18631157558373, 211.92360563495635, 24.397311688251136, 16.703498445663463, 47.08163247674248, 118.22164079456763, 12.337510190298548, 31.062906231433743, 99.03380214940944, 26.342585278858778, 10.529751172921774, 108.68091636609398, 121.03391850034708, 44.53199355055921, 53.540181939497494, 49.51074666431031, 142.716751206617, 80.34013848857029, 41.22134058823365, 7.487646356021782, 45.28562152892432, 30.911509276988184, 23.095416774932808, 56.86531488326438, 54.66619617652131, 12.008894113654792, 36.27870741692825, 32.64312287282976, 129.4133801355349, 26.63646653603783, 22.229114711234075, 49.41812792100153, 37.400176045418974, 101.54068019389533, 20.452774943025606, 40.81041956578291, 7.567201347307752, 27.04674074611051, 62.80663632249624, 23.89178872632921, 31.850839204876866, 13.324865566893976, 18.72807171143682, 9.80304103852739, 6.8921792785662275, 47.00935236807303, 66.15548078386858, 25.08958732744258, 11.102050842121374, 8.013882436401659, 7.5357733224071595, 6.2580033606948895, 18.245008448872493, 44.33470127206988, 65.89216075004677, 33.978659657673525, 18.078352955948077, 162.96051308204338, 22.417040886650675, 5.6000679852051, 27.20584007622231, 65.69150009848723, 83.61587784454228, 38.57638007490251, 49.768447650564596, 5.998714788422141, 7.406172646930871, 6.587210959195897, 91.3009987038841, 83.8515377848397, 75.63665368927848, 56.27491433179468, 14.770254980652592, 45.6577454795224, 79.2711968608727, 78.1500349684724, 29.616018445628704, 18.39475558254025, 48.759742464612515, 6.637640470126225, 64.60525333315256, 31.855490622202304, 9.292366262927814, 16.17827072791642, 79.80463919910393, 49.75138644707921, 22.419170966330675, 16.190147091903256, 35.732428679770386, 17.254829371582133, 5.750785874689642, 29.015312919889013, 6.075439183321336, 41.01489316237458, 34.2352620849723, 5.301028258291447, 59.49216935977485, 17.401166620551066, 8.76229665912461, 19.061269906776836, 83.17742728967555, 116.03735479599374, 14.913272030976449, 49.611647502813724, 98.76475999046677, 6.388033588488569, 83.76363695757907, 36.68493664459194, 20.340317013438188, 14.652442194261514, 71.22756340372395, 16.35231968699136, 49.759461053458296, 7.313402565732408, 41.111699106656424, 192.39718808441182, 37.08362842849901, 27.403831732935284, 15.59908194623814, 85.0874996163806, 17.426426148758743, 47.45833553053477, 77.85421928417232, 65.34869749915877, 77.83564336783604, 18.847314713011468, 112.36017159580128, 21.190338372850032, 22.01734335414829, 6.456982432946589, 29.597089050787687, 27.459723373318813, 65.46508311003979, 43.13530681103051, 107.93792580787536, 144.28437062519876, 13.756348018766227, 28.878370651354324, 10.123705173533555, 42.10051014057676, 8.336378041286762, 15.975407831549054, 131.78393313810562, 54.52076445537441, 12.447384113432308, 13.226541886596983, 76.80016362620621, 9.397937212917636, 242.66335116864883, 34.03504120528007, 14.347803496873198, 26.526241455367927, 31.88202979856886, 24.847077978344842, 88.64241441213656, 28.962909391803198, 38.7817407719529, 18.774936427510077, 24.043669948979865, 17.379797967200165, 106.1602102298659, 7.3691433647628415, 94.92919650238109, 9.176938447013988, 124.8244973461481, 39.51758662645229, 7.67817680202612, 95.82919727833092, 52.418280191257914, 36.80484321793376, 67.2662491650534, 32.0322906687961, 44.160807849403895, 62.18852150188932, 115.95504977150492, 31.839420393701527, 49.963890177763055, 29.786527213811205, 6.893168339932116, 179.53360883975103, 25.515577066252455, 25.787301036335005, 5.9762518492617875, 102.0709318609866, 133.26487832418704, 143.2891079102357, 149.291931630965, 18.935408544751876, 48.26961099689636, 83.09287804836893, 47.42367883032324, 63.62288690922791, 45.950938946719724, 92.9972345414246, 16.283389901829644, 8.49961720578722, 17.862797548935472, 23.183548136498043, 33.16357866735212, 5.605845100972671, 15.287308908433506, 21.20828373677705, 24.819624870093158, 42.963032115009476, 111.50653359177161, 16.347298582874323, 5.109584086566329, 70.20999605183628, 40.800519879222215, 35.26975395797139, 28.460666556924703, 15.113332165573626, 122.84054943257, 21.710849864593257, 32.06500761355247, 46.46454521121224, 13.749118604220374, 8.435225691840463, 9.685556521975242, 7.772493583677189, 60.88391766562467, 40.13020664683125, 18.248461912415436, 5.352009881842032, 81.82682976749432, 39.74728720921716, 80.88276448786381, 45.7912017111948, 91.32563016217387, 32.9178731208785, 14.64738233554286, 10.185582460149686, 31.094679757777314, 5.047823062929312, 30.21495608700915, 14.56815537428346, 8.415247560256297, 120.61933852139015, 35.2628201047971, 11.074621230231777, 25.626282943642718, 31.912076012475623, 39.40274248630029, 50.28232276882722, 8.438155169902226, 75.14061086240817, 6.821355191725031, 33.407801489042384, 12.482939901901585, 5.719595164816366, 9.894267178960092, 13.667536297741524, 51.84484071028434, 37.124962276679135, 48.060351172008986, 40.42870066538445, 213.65553946437413, 49.28508512373072, 64.48445224873952, 62.943682311105704, 51.872311659321696, 40.84083207771808, 24.107479275503042, 57.868937952797, 81.23469165195246, 45.632068049378084, 12.527898693486483, 52.10730711911261, 33.37206494586214, 93.72197268457327, 19.51751193952799, 64.29817689679749, 71.82120222215735, 12.026732913361245, 64.56724587181462, 20.511902667919514, 28.617968201162626, 52.79473073526317, 43.31325799733867, 46.966381315919655, 14.403657026552715, 6.3664810884156156, 94.5374355412918, 31.670240227734308, 67.09780981824596, 9.623953447066237, 121.61398368964696, 10.197102120933543, 56.97850993858371, 11.565880880598746, 5.998751413994672, 99.68362371618159, 16.14566990349793, 9.350692154484484, 55.43817564742532, 11.28951602039389, 37.72277906158247, 12.229834955001245, 42.800586649936534, 12.248748825991298, 57.807445362052235, 85.86413345294821, 56.0964108095122, 52.89209879002651, 6.964670094788106, 20.247415541516247, 81.02602197386825, 111.56511547985323, 37.77836138604245, 10.792960412141012, 182.51008392356573, 64.09394464160866, 34.60245806124165, 47.081611387567875, 19.42254911160326, 50.63660336883367, 27.493795222017305, 30.76029759724851, 34.60190509783668, 13.49281398647832, 31.267619143057736, 32.49203350544165, 20.193284835570914, 10.465315336543512, 31.987300785712154, 64.99470554569996, 110.01490077270483, 127.93017850869457, 71.30837965491887, 24.15325672951559, 48.63731493579294, 12.09002424260638, 163.38554835984692, 20.14928060917843, 52.62738252340618, 19.514924321306903, 70.67601835719933, 6.537589225919284, 84.44583201291655, 10.59005443686995, 58.950462323708216, 74.50859477686274, 28.39654423906162, 17.206072038695993, 50.03771043927216, 28.97660514561169, 19.256477816644935, 28.966604396638175, 19.66887031978247, 165.68798891298567, 13.640075214049393, 12.946706818268462, 16.85861668562007, 33.021206763617286, 17.484856804233072, 48.887184838440334, 106.99460614033107, 72.76961891075686, 58.32757236631837, 17.795509870953268, 7.012177004789033, 161.3053729465526, 17.482559012719975, 9.312307091655233, 24.180437561946714, 25.46699105830654, 8.998520424582356, 37.676045777229774, 9.67481071402525, 53.93141333902951, 65.92551267790081, 54.49154921768775, 160.37390187693174, 7.211185425096571, 16.203732313567173, 6.334480416260668, 6.213003516210593, 33.31562275059358, 47.35889291400781, 118.23409015033397, 14.638765188909149, 81.90513817361763, 9.665937286127647, 94.43627701825785, 37.85631764862647, 36.287866983678676, 67.83486654091136, 67.78574329230655, 27.4414847495194, 39.956121725589846, 23.436667592349096, 8.6449906537154, 5.3374883732041045, 6.619581588676465, 75.96557260069197, 21.276566328129384, 16.623037495525335, 116.88501535330431, 17.673462200481183, 42.086757806740046, 25.669004447949845, 22.168773893231176, 37.23409438576438, 11.45221190447268, 198.19095541940652, 33.50616954433662, 17.424433083412016, 22.410912699618116, 12.491116983059435, 6.237132592065057, 121.24728689175001, 96.45714540318511, 61.868978585050385, 5.280570241167382, 49.97305937967068, 22.98448116317273, 39.478651156487, 77.58179034024052, 16.927600396737688, 93.20930235569884, 22.05228246471032, 77.17448898315132, 100.8851717407532, 92.88385829294157, 79.29011737884838, 58.703011771163894, 29.536636453038483, 53.07933783503257, 12.385468926865512, 65.92677030343786, 179.65541630405187, 64.47809443565998, 40.549167432545424, 19.486022935662362, 53.12376988826138, 8.040402291785758, 19.824337307287788, 11.041091562183974, 30.885963133486023, 88.84349713637454, 81.75836499166944, 30.042491264679697, 87.99793927829718, 91.39719218314524, 19.59187862620178, 127.54039466181007, 79.83231531296734, 38.05826863541802, 30.139156960288645, 24.512368711367596, 107.65099732952302, 23.822119719319023, 14.236380985901155, 111.81163738353547, 10.319236505017386, 8.138397707850261, 106.81901185096419, 90.63196245270254, 66.47996834659585, 36.419099816551885, 19.878693153484868, 195.85559383240624, 57.37904073248389, 12.107104692538359, 15.141143708817447, 16.010332913813137, 106.65853618049753, 22.697184583908236, 61.43455556637122, 13.398173669078462, 39.89312821289549, 58.87543828260712, 11.083980847969386, 104.48825118161041, 159.3738246089838, 13.193793841135406, 45.98566959512484, 35.90842819080425, 26.72917100321101, 52.53481863442845, 17.4274527896126, 62.46794237580677, 21.72435623602035, 54.038811842608986, 112.31133508815218, 58.1242296499352, 13.856734233226133, 5.928500266147046, 42.75086029448558, 120.45879947360146, 24.170445775396296, 53.611356005422834, 5.78259817924039, 25.540771952534435, 39.71996890671407, 22.530413411772834, 9.395125739973878, 190.20719326068718, 43.613624775524826, 19.136602396838228, 55.10176980065251, 45.49041345703076, 73.75480808586639, 27.397755223237226, 13.663467027760765, 30.379338163705214, 25.14303377234812, 6.385349732865176, 13.972047176555668, 53.326545327411985, 26.386453381589206, 16.99138133581622, 56.1871979501329, 5.313933587234848, 15.702454479451506, 5.864783306077832, 38.20634222249129, 7.6569369206858315, 43.62303414657566, 86.78344924589013, 36.20286242977713, 5.758248336562041, 65.37611637491105, 21.61792869030031, 100.8848934523511, 17.364729146542153, 50.453041931906, 17.959860793354732, 33.5252073617209, 23.0529554390503, 13.311932816818743, 17.710534309789324, 49.51058651846272, 22.927325197852447, 19.990101464841505, 25.0807042583054, 88.40335461315382, 59.84947865200034, 5.63601433970854, 37.13444293934487, 5.5263287977123845, 55.998735534194346, 76.93613123990941, 168.93798562687255, 9.687282414483548, 27.403436093335415, 38.22200395573908, 21.331626347514515, 181.66171008362875, 88.48949491908667, 17.76133809719246, 46.305126219281405, 96.50591702481765, 59.17704746532413, 10.457429085881971, 138.3204070534966, 40.476771366437504, 25.839438679288133, 55.29900870211106, 6.479383166005949, 36.393489594617186, 16.5489752663844, 12.727626088399449, 49.76845489730146, 42.86690424517393, 26.624971265572167, 44.65475575343216, 20.099472542600633, 64.62124563907506, 18.770026537139664, 138.4209062050687, 35.29519415721944, 167.91194224712928, 57.33825460771821, 52.53772861276595, 47.956654135794814, 63.306391005185795, 32.19347922192391, 22.998167003193874, 11.514750187325358, 15.096566996536101, 138.00153409537933, 13.8211423635232, 11.310415242294761, 201.61017691570666, 12.31127772377988, 50.09428574939825, 120.02079178067197, 7.929656775867608, 15.809842384870171, 35.90757523979471, 14.408804258139128, 10.5271673859552, 24.62144399509029, 53.965513460768584, 57.191454785222454, 5.040562944353615, 82.30934740408938, 80.52329472037789, 6.3734448797407905, 113.62754812818679, 43.814828648992425, 102.42780154362349, 18.514270754700245, 11.933920165010296, 69.05766884161156, 13.386751320468791, 32.71588987855607, 13.294369677613417, 104.22756576342478, 11.590159642805824, 177.05881007783782, 26.0593313719049, 10.167341852354868, 100.35742103340624, 7.466443292689971, 14.315575832100349, 20.157621460671624, 20.633983188718428, 67.38186569809105, 7.296075524155309, 125.10897587311081, 7.084084943848707, 136.20929161867485, 16.109162915950446, 236.78649272175238, 61.86057984134683, 26.1807794432436, 64.41231793344167, 240.24482600092287, 38.70280520499099, 27.800347102227985, ...])
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);
([7481374.329780871, 7562877.4747187095, 7713558.219640368, 7718407.2871615235, 7816475.520136404, 7887928.125, 7888224.46943682, 7892057.8125, 7892127.019160393, 7895699.899061338, 7895703.125, 7896717.7625281485, 7919120.010663337, 7921041.774394316, 7933163.2796117775, 7960240.625, 7965890.512333344, 7969610.435230726, 7970234.498214217, 7970371.875, 7970426.726803929, 7970920.96833428, 7971163.532322965, 7971323.4375, 7971368.668865332, 7971371.831701887, 7976996.200474622, 7978247.05622917, 8003071.496248482, 8003334.248134487, 8003665.559190704, 8004668.196263324, 8010449.2806097735, 8013605.762601845, 8013866.842409504, 8013929.047666176, 8014627.740155886, 8014645.644331387, 8014649.952232641, 8015027.314338909, 8015051.708579243, 8015120.604321082, 8015139.214945666, 8015238.962612777, 8015272.187265708, 8015410.060490637, 8015501.16778463, 8015547.610269888, 8016102.124752377, 8016320.3125, 8016534.375, 8016543.710526011, 8017506.003239703, 8018012.60230871, 8019562.014980726, 8020177.900056653, 8022103.68949526, 8022730.919741865, 8052225.042128052, 8141033.90254246, 8149537.778101518, 8166971.875, 8167916.716490005, 8170523.3732215855, 8172419.646848955, 8172796.865306557, 8174546.247004896, 8176865.035488838, 8220134.936690641, 8220151.5625, 8221462.821660766, 8221996.50920174, 8222131.25, 8222461.633095505, 8222917.779767172, 8223764.531649414, 8224467.475583073, 8224870.400433798, 8224935.192281685, 8225795.3125, 8227933.135552802, 8228423.220176436, 8231242.1875, 8232567.731125344, 8233162.785810064, 8233224.24809411, 8234333.486341382, 8234338.5475128135, 8240714.613590931, 8257171.577106748, 8258829.390194204, 8263697.503961311, 8266240.691920856, 8270802.956212847, 8272101.904390077, 8272477.9749065265, 8273043.354871911, 8373841.951066811, 8401218.672501046, 8482757.235970292, 8483140.903903304, 8485686.959194127, 8486584.396773942, 8489542.899048712, 8491070.30977724, 8491587.5, 8491709.083423862, 8492352.302078908, 8492590.7488296, 8493576.11374954, 8494470.820957642, 8529136.952136572, 8530351.5625, 8534994.59916394, 8558076.5625, 8568478.330834843, 8576152.352580352, 8593107.8125, 8593392.377279982, 8593504.425973574, 8593767.502529206, 8593771.509066435, 8593782.10946287, 8594017.962229067, 8594885.9375, 8595309.375, 8596001.5625, 8596441.239710739, 8602382.894224167, 8602838.863632893, 8605389.288528275, 8605691.92889526, 8607571.41053997, 8607687.5, 8608129.6875, 8608360.931808982, 8608916.09128105, 8609671.584564114, 8610737.5, 8610777.15046269, 8611073.319551073, 8611074.782070661, 8611893.658115944, 8612025.75440107, 8612194.381154574, 8612516.124024883, 8613078.366968585, 8614754.6875, 8626426.071656378, 8632956.648363667, 8642575.860660398, 8642695.17422928, 8644731.202418923, 8657142.309029438, 8664968.033316514, 8665038.088544779, 8667074.188389976, 8667873.11320179, 8667953.086822782, 8668168.332714364, 8668937.917580193, 8668948.13070319, 8669201.5625, 8669358.13651142, 8669398.345110878, 8669653.125, 8669688.570252523, 8669811.482657958, 8669847.453330984, 8670110.9375, 8670538.194947245, 8670623.62348036, 8671389.629156113, 8672090.618406566, 8672107.2569699, 8672226.5625, 8672675.29991862, 8672790.349679181, 8673636.66678751, 8674262.078840926, 8674839.040934045, 8675057.8125, 8675155.565554418, 8675587.948197993, 8675598.241999282, 8675870.777981387, 8677030.978595668, 8677055.735377492, 8677310.712937178, 8678317.931467436, 8678523.485509269, 8679434.958788857, 8679447.276464576, 8679457.417676795, 8679464.0625, 8679801.421855185, 8679937.182326809, 8680324.26686579, 8680459.938932667, 8680501.23340411, 8680519.865069352, 8681740.282287149, 8682058.377025967, 8682192.1875, 8682266.763240708, 8682728.677694403, 8682923.86823311, 8683177.256510966, 8683234.169648794, 8683602.277078154, 8684142.904228488, 8690032.840937017, 8690748.065510675, 8691905.358302658, 8693764.0625, 8694768.75, 8694806.449847255, 8697019.773896778, 8698235.820549516, 8699415.84650641, 8732821.87733089, 8733367.814979404, 8739673.414771274, 8739685.261635117, 8740139.590375297, 8743429.122877972, 8744057.8125, 8761852.06606469, 8773093.075746484, 8776770.647191022, 8776924.603249997, 8778546.875, 8778570.791810732, 8779160.9375, 8779273.950861024, 8779934.724283777, 8780954.6875, 8782242.620492475, 8783018.520205054, 8785951.5625, 8786340.625, 8788337.89058828, 8792695.17835234, 8792715.503753304, 8794864.833466042, 8810983.332156867, 8814725.0, 8818788.750671266, 8821415.387140209, 8821960.60934052, 8822020.229942046, 8822337.5, 8826420.3125, 8827365.40212025, 8829551.396345684, 8831068.024370044, 8836595.520451672, 8837120.006854866, 8854532.8125, 8857462.192570008, 8857724.709816124, 8858782.15265954, 8859820.670443244, 8860916.407940913, 8860941.027808528, 8861261.445805397, 8861544.9791444, 8861841.496926963, 8863051.856122036, 8863669.697264241, 8864406.407313751, 8865089.628554268, 8865423.4375, 8865877.852562914, 8866098.4375, 8869017.316942573, 8870811.770756375, 8872787.384111665, 8872877.113415692, 8872996.501089318, 8887600.081222413, 8889131.527543068, 8889588.071210936, 8889617.289895022, 8889637.20216237, 8890062.5, 8891018.27884302, 8891762.5, 8891764.0625, 8892089.0625, 8893129.706510164, 8893515.67148553, 8894946.27813612, 8895847.628976524, 8897538.30253123, 8897999.102162283, 8902817.1875, 8903099.787566327, 8905128.125, 8908340.532777729, 8908401.732122751, 8917268.143244417, 8925231.040422335, 8925914.228088662, 8926734.358084163, 8929650.19393155, 8930263.482010802, 8931425.086321045, 8933068.003719416, 8933084.010754837, 8936733.862599172, 8940095.981481593, 8942101.761314152, 8944110.9685843, 8967010.9375, 8967382.932348557, 8967840.415173732, 8968637.5, 8971765.625, 8971887.975891115, 8975004.814041033, 8975295.300741255, 8975788.671083888, 8976010.9375, 8977703.571296407, 8978184.041021358, 8978656.924311927, 8978660.377247656, 8983536.623061031, 8986241.722011968, 8986507.8125, 8990555.56472025, 8990623.514037753, 8992939.0625, 8993873.044263802, 8996982.650744997, 8999996.068435075, 9023394.785915747, 9023405.459209133, 9023441.912306834, 9048665.571854992, 9049879.466757877, 9060106.25, 9061873.886370761, 9063091.309567709, 9092575.162043016, 9095784.64687159, 9095789.914655082, 9095846.021847853, 9096018.38369109, 9099317.151659576, 9109305.164485246, 9143023.411682293, 9150345.3125, 9153137.119689913, 9156633.972795056, 9157404.02872506, 9166443.75, 9170765.625, 9189898.4375, 9190230.41617744, 9192372.825096298, 9194354.34214292, 9194641.790321669, 9197059.52702667, 9212685.59184248, 9224468.595365347, 9231522.061263084, 9231870.02412973, 9245265.339570835, 9251746.623986201, 9258192.58391595, 9258449.923772411, 9261775.0, 9262881.906963507, 9263628.125, 9264834.075607004, 9267084.254008204, 9273026.143011907, 9274118.210442591, 9274478.123578187, 9274982.286449403, 9332026.5625, 9332100.0, 9358546.387449943, 9361429.6875, 9361779.6875, 9361957.481184054, 9365970.3125, 9367932.005143313, 9375716.83440478, 9378771.875, 9405018.503905995, 9433811.436508939, 9433987.493072852, 9442280.769996699, 9443550.746207267, 9453719.608503757, 9471185.844434716, 9474568.75, 9512763.965341797, 9536360.797811754, 9556927.513980465, 9675597.463670744, 9707754.58675352, 9708531.24715946, 9726203.874392351, 9756654.611624666, 9780721.951313423, 9784985.43706892, 9812911.669565096, 9826605.197161028, 9826628.737068031, 9872175.0, 9882971.875, 9893894.354129866, 9896307.79602387, 9902371.321091978, 9944484.184537722, 10023367.114373503, 10043845.973355213, 10083872.534588426, 10097077.929229308, 10098163.246903352, 10114705.369356249, 10161496.875, 10167294.900387663, 10170865.369574904, 10172387.429622168, 10177431.65305669, 10179694.27983042, 10180198.880971817, 10183184.375, 10221089.719243843, 10259840.045167256, 10269420.922777131, 10337246.162287008, 10345670.763988161, 10368570.976117717, 10372793.435692959, 10410928.07933193, 10416872.269563744, 10421639.0625, 10423468.75, 10442912.235406704, 10454766.30845329, 10466514.743428074, 10511144.647559196, 10516629.219561772, 10529848.257034717, 10537539.015969228, 10601794.040590413, 10609470.3125, 10617102.81042755, 10692041.775579905, 10695812.793086953, 10698356.25, 10704873.84563529, 10726538.170263596, 10754064.201581407, 10763404.564872349, 10774007.028342733, 10777612.5, 10784137.818510175, 10784826.5625, 10784848.961327996, 10786028.927899513, 10786158.590960095, 10786892.1875, 10791439.0625, 10798479.003219215, 10810846.875, 10810857.8125, 10812122.775078736, 10812586.741789557, 10826681.508786205, 10826685.313614933, 10832687.422034701, 10838174.48378475, 10841361.264183586, 10842721.875, 10844322.558131147, 10856398.105541553, 10857535.242181765, 10859873.089796664, 10865292.128196659, 10881237.662449175, 10882169.232679915, 10896036.465686267, 10902154.6875, 10907635.676585503, 10912814.8118121, 10913883.472589355, 10918831.355152043, 10927897.150751889, 10930394.781604346, 10933615.17599469, 10934224.80520201, 10935245.633982206, 10936552.877120849, 10937110.755737118, 10939974.704903277, 10943765.534283664, 10943903.745691914, 10945154.337438367, 10946578.125, 10964371.121237861, 10969494.144350464, 10970231.343001388, 10970326.80965967, 10971562.636889607, 10973431.25, 10978510.08192105, 10981112.418232877, 10981972.331372026, 10982446.952652358, 10982647.569644982, 10987371.875, 11005615.459996942, 11005804.674353043, 11009130.975443305, 11019345.18032675, 11019747.069017489, 11019910.35681018, 11020211.571946632, 11020239.498246767, 11020794.830157835, 11020795.832627876, 11021044.276600422, 11021052.427804543, 11021553.125, 11021846.686492445, 11023191.463416187, 11023860.9375, 11025061.1400493, 11025892.1875, 11027235.9375, 11027531.004743006, 11028489.0625, 11029923.785085298, 11030917.1875, 11032629.6875, 11033125.165188733, 11033273.4375, 11033742.1875, 11034473.4375, 11035692.80403419, 11036243.75, 11038731.70663246, 11041059.21929804, 11042917.601095904, 11050019.611658543, 11051408.850669526, 11053681.549808579, 11055773.350774094, 11057063.587683178, 11058923.4375, 11061390.96159057, 11062714.0625, 11064192.707535109, 11068562.735874407, 11078698.126795659, 11085720.625015134, 11088528.507246377, 11089199.038408084, 11089468.76533657, 11089950.717619915, 11091993.600838099, 11094311.350414066, 11095533.845966512, 11095534.154312346, 11095818.722042989, 11096367.40521485, 11096394.075656995, 11096427.1197519, 11097158.825015884, 11097343.75, 11099352.586917538, 11101059.37173502, 11102393.79436098, 11103355.739583742, 11105224.646119049, 11105595.3125, 11107410.9375, 11108002.772532508, 11108278.395901991, 11118070.703610368, 11118773.882416494, 11119409.021950148, 11120068.529331591, 11120828.78638185, 11132194.041481191, 11137659.375, 11141427.737819731, 11142105.017767562, 11142606.25, 11151267.137272319, 11151283.966053504, 11158113.98313106, 11159143.050175153, 11161239.976743462, 11161701.931819217, 11170026.5625, 11170031.148471888, 11179314.298141683, 11183846.89582091, 11185915.098173747, 11185993.715769934, 11191016.301354442, 11192832.774759058, 11196405.694188194, 11198425.0, 11200225.276043484, 11200232.559889192, 11201808.095515983, 11205921.19930237, 11213183.53529898, 11213579.887334818, 11214050.598258197, 11214108.995124536, 11215276.374899281, 11216822.917586362, 11222850.0, 11223514.781601945, 11225586.41680286, 11225737.5, 11236065.93473054, 11237466.002271168, 11241699.025480676, 11245354.422113644, 11246540.352423785, 11246761.609923193, 11250257.414259592, 11251914.0625, 11253038.242678612, 11257418.749321241, 11257809.106502661, 11258518.47420421, 11258614.901184358, 11258954.6875, 11259359.375, 11260110.179911297, 11260887.5, 11262611.404241359, 11263014.0625, 11263812.5, 11267043.629893959, 11268179.6875, 11268343.363047002, 11268697.622389518, 11269312.776383027, 11270357.8125, 11270636.48222476, 11272142.514342861, 11272612.25359509, 11272819.622590875, 11273233.871711437, 11273436.200839588, 11273806.907134928, 11275417.40351864, 11284822.158711558, 11284825.02272442, 11290414.0625, 11290417.288611446, 11291464.44672961, 11292170.919156348, 11293251.241673205, 11294610.13895364, 11297528.125, 11297906.25, 11299299.677522333, 11300068.75, 11303605.617999049, 11303732.177849544, 11306713.229784735, 11308296.624991365, 11309745.38156558, 11309827.899736345, 11312703.018555222, 11314148.023479333, 11316460.842209548, 11319896.430748498, 11320223.096391896, 11320517.1875, 11320570.258166116, 11320571.134591846, 11325101.327317223, 11325134.575786334, 11325154.6875, 11328109.375, 11332350.295659263, 11332393.280422287, 11332759.744318949, 11333586.490607018, 11336135.634558681, 11340129.6875, 11340241.433610791, 11343345.22071803, 11345151.304988954, 11345831.789250147, 11348362.795500023, 11354679.04134032, 11354876.550597038, 11356010.213352999, 11358455.507092776, 11359117.502248107, 11360894.97909003, 11364135.563954009, 11364900.0, 11364923.116946913, 11364969.665665977, 11365056.87283531, 11365223.762546754, 11366896.875, 11366914.1173287, 11367008.484121941, 11367396.170372019, 11369378.858822692, 11370868.840882007, 11371402.480390454, 11371478.576298311, 11371517.1875, 11371596.555358311, 11373549.673832666, 11373798.988337874, 11375085.9375, 11375853.125, 11376454.085528078, 11376652.692324491, 11376832.882534876, 11377263.037811447, 11380548.414829286, 11380696.60791092, 11381496.698446177, 11382248.015705563, 11382954.077167336, 11383975.380006587, 11388756.25, 11388965.625, 11390379.6875, 11392564.848835722, 11400565.955707079, 11401419.663085312, 11409016.139603686, 11410265.183661446, 11410267.088688051, 11414985.032470502, 11416398.4375, 11419670.23073743, 11420389.0625, 11420415.995803805, 11423553.047497047, 11424279.632237803, 11424354.115804847, 11425946.875, 11431781.25, 11432939.005281268, 11433826.5625, 11441138.737507973, 11447016.246384656, 11448427.995049113, 11450744.54614162, 11450787.140339585, 11451305.728016043, 11453760.994875655, 11455307.70439356, 11455565.605048237, 11457968.75, 11458335.774169974, 11458405.815166663, 11458627.80009284, 11458993.948140673, 11459704.069017762, 11460482.398419147, 11460851.748501522, 11465832.399834335, 11466105.413930986, 11466363.820765961, 11467703.229872571, 11470992.1875, 11474772.396806953, 11475051.218233125, 11475543.75, 11476978.046891125, 11477217.852531103, 11477565.625, 11477702.001381986, 11477725.0, 11477843.304286048, 11478353.125, 11478580.725519693, 11479095.3125, 11479571.788988262, 11481160.9375, 11481188.646819934, 11481803.125, 11481970.99143715, 11482049.006253641, 11482777.281941207, 11483103.125, 11485770.3125, 11487311.845995456, 11490735.63895405, 11499012.003540255, 11500602.439690089, 11500629.631370392, 11501268.552610015, 11502214.0625, 11503190.625, 11504381.25, 11504807.8125, 11505410.9375, 11509752.41065938, 11510227.8653817, 11510636.465002002, 11514357.8125, 11514371.526651014, 11514441.780414104, 11514682.469100524, 11517904.39306746, 11517965.426824741, 11518015.946293404, 11518582.225371355, 11519052.833869329, 11527165.873386119, 11529464.0625, 11529893.75, 11530403.125, 11530497.019329323, 11530687.839483846, 11531501.37004788, 11532239.610115116, 11532270.363908662, 11532622.926160436, 11533678.125, 11535568.362788118, 11536392.1875, 11538397.963626208, 11542562.324117966, 11542701.5625, 11542774.971844211, 11547060.9375, 11548057.874341263, 11548321.325989988, 11549939.866631255, 11550741.57587142, 11553123.33965681, 11553317.340324106, 11566611.377173122, 11567148.019023873, 11567207.308017436, 11569953.125, 11570414.774735812, 11570465.625, 11570947.324742494, 11571315.498918284, 11571950.365593143, 11572883.370980054, 11573485.367993286, 11573637.5, 11575269.87916531, 11575770.140805082, 11576403.700021166, 11576875.043334741, 11577757.8869124, 11578460.4360384, 11579308.62379713, 11581682.03865996, 11585117.027346123, 11588708.990048524, 11588793.75, 11595501.502859602, 11595605.86874489, 11595876.547130762, 11596079.890709806, 11599491.50623999, 11600568.160306027, 11606943.75, 11608318.631675838, 11610553.297245689, 11612683.487167085, 11612752.284833997, 11619739.248777004, 11621164.726284625, 11624905.420633113, 11628022.021069448, 11628056.25, 11629054.9840465, 11631528.288171982, 11631582.029755274, 11638129.6875, 11644752.471568935, 11650829.237109145, 11653530.23987248, 11654617.1875, 11654861.553950422, 11656223.160093013, 11658424.997897418, 11658910.432338765, 11659566.201072272, 11659798.477624968, 11661429.320182594, 11661449.334864985, 11661637.087921385, 11662942.749171978, 11668043.1228046, 11671078.51541683, 11673160.72273004, 11674493.610094557, 11674525.0, 11678748.4375, 11686515.887004891, 11687458.205389598, 11687786.538557338, 11688777.388506096, 11689391.671159212, 11691598.4375, 11694898.179146802, 11696944.334421556, 11698884.748413311, 11698886.768839812, 11698906.25, 11700635.062334985, 11701178.125, 11703422.257090209, 11703723.285133362, 11704124.55681279, 11704201.513151625, 11704451.5625, 11704532.465134839, 11704766.453417761, 11707073.4375, 11712123.104415065, 11714993.14665698, 11719317.1875, 11719563.182313746, 11719615.625, 11721100.194341507, 11724573.4375, 11727710.9375, 11728404.143122794, 11730549.852855405, 11741714.0625, 11743175.0, 11743589.10811429, 11745951.111396635, 11751777.763707737, 11752192.421767252, 11754560.977594944, 11754925.757324705, 11755587.976891853, 11757264.176328827, 11757464.66060829, 11758267.832332548, 11761144.299521418, 11761289.0625, 11766366.445516055, 11778089.27307569, 11781822.454272797, 11797199.852846926, 11797632.391023451, 11799481.70887803, 11800353.125, 11804782.34224418, 11804870.254206631, 11805976.267132921, 11807657.684515586, 11809649.23457799, 11813453.938463015, 11814821.875, 11826710.9375, 11845233.513646584, 11846520.773557162, 11848234.375, 11848654.267562862, 11849770.05030073, 11871088.550893173, 11878156.25, 11881253.822758777, 11895100.021558685, 11931257.674024062, 11931268.034394141, 11931726.811071621, 11948618.355254335, 11955775.705216935, 11990446.229824083, 12006772.846837698, 12010417.1875, 12013733.437604474, 12058001.5625, 12060406.105917629, 12061293.39722671, 12074229.783266278, 12082130.964747706, 12084839.80987662, 12085879.04279451, 12099393.357729897, 12102844.253122695, 12102911.891135477, 12139995.753070654, ...], [13.649849952056627, 5.271414435155795, 16.759337075730016, 75.49837820485888, 6.871989034542766, 28.89418420548397, 5.894495351762387, 29.41976690954974, 22.5799200616071, 9.247487692844473, 50.204313876350646, 7.281283820742399, 28.862810214592564, 22.40604239214969, 12.61275590125831, 55.45088961894912, 5.527637344380276, 21.47049284834797, 35.11848032699233, 42.943690391028426, 11.394617787093496, 5.424152114624636, 21.197259050050015, 67.71104170661687, 8.244132970936505, 16.443144011626046, 6.954752399302292, 11.42330952553253, 10.583162774356381, 10.935033684359535, 27.287103857445256, 64.62322637053357, 7.9395704168124475, 22.315214092590985, 5.516563374440287, 20.203068531326412, 33.98760615986394, 11.689268749892962, 9.291337152854489, 12.548782601453247, 15.529146955925787, 16.16216119756811, 15.55624188619942, 5.163041785352219, 16.282183519967177, 33.84487158678026, 97.91606475317572, 13.882738676041372, 27.439283183574343, 84.13910057837874, 66.82736740817415, 6.755651397978344, 60.832830272741866, 17.814313945136593, 21.643854083688197, 21.1986071638793, 103.18972446953936, 8.119325826319576, 18.007991079034348, 75.58781090073668, 16.119214940844067, 28.748644831395467, 13.406150316717875, 8.252875828428834, 5.2709592603157835, 38.90904050918964, 46.334687538513464, 40.776601531075165, 48.29572723980526, 125.06797170517153, 65.7052801212549, 22.945136103305867, 67.34879283189503, 12.422211631148814, 5.647672169759315, 17.09235001836445, 80.99711380815458, 7.635354507154254, 19.352168150390742, 48.289287739219574, 106.12336783281654, 63.51495550789511, 97.57500546274522, 25.89303784889578, 35.00771269327153, 47.70240201649278, 8.678247617204663, 21.344886604566543, 28.461563759553982, 23.777689798552057, 7.499133885052633, 59.18026798215261, 25.472856686926143, 22.029139887534953, 16.427190013117833, 25.875118204389615, 81.33166571124994, 24.598161744172387, 35.865544624658156, 32.01868612026598, 11.593553910959603, 7.418687227085865, 15.025156079614314, 18.58548864329604, 28.471365571723478, 60.701333011836496, 27.34529216500135, 12.520855927672969, 17.820308526435912, 6.677106211999633, 8.575097101825506, 55.77955199511638, 51.574922484976184, 21.65033150332861, 96.95290646925227, 8.398510585015876, 12.87702776675643, 132.52655658843304, 11.437893770970646, 36.85752321538339, 9.61278362516389, 10.600160043013723, 8.800167900165992, 70.04114697680214, 32.7914102398632, 38.95779184690004, 72.92388203303364, 5.563677172392882, 21.46642760890117, 5.922272084079703, 87.89171174249503, 10.746198141358912, 13.424447080824699, 73.31754637168955, 54.877116990081184, 140.78878965796378, 11.944152904941447, 18.972285051481595, 70.9138290863612, 73.23174975058086, 13.034918251658052, 10.803338798417208, 14.60248618078158, 18.886580476976285, 18.052980614382324, 27.438749895419726, 33.456868628032765, 43.094314114741586, 13.351193350125445, 118.38710773539194, 7.947309086981933, 14.439436758654903, 27.617173814311858, 61.17840004136063, 63.35813476907668, 122.68523865758304, 10.058780288520403, 22.917547784292218, 55.091800295384054, 107.56148174288829, 38.95149663807574, 32.426744277841344, 76.63409852085701, 5.96812797173718, 57.991369324887884, 95.38375432766958, 21.570785960113927, 63.18904250121933, 6.581739353444598, 42.48102386849852, 18.47216470195404, 68.67035152591197, 39.65908980106467, 11.117416456843872, 5.118804371987546, 51.06646410504594, 9.598565148558723, 13.986604712383514, 29.024652727072294, 6.215415029157392, 14.859942320011486, 35.092130632160675, 82.10275966879347, 16.97785350363486, 79.18955580568075, 60.89198123967704, 84.87925290743132, 42.42820678186722, 90.6143435157749, 86.91374868682897, 8.312129655481028, 17.757474732015563, 16.729722365250034, 75.82032369166988, 42.2563863245621, 26.024701790048564, 38.848863266895066, 25.46864396759842, 17.63734935288437, 86.70198747715084, 5.089750591751452, 59.71553290121416, 17.640907516328234, 59.99813561193266, 19.73034724604892, 12.117512869614398, 28.75013486628655, 75.9134933104265, 103.81210921147752, 18.606364358818713, 10.021119176953968, 15.05101722604409, 58.246740790999354, 6.000032430276508, 45.27248200952087, 60.607723608738915, 25.935101698587776, 56.81981141260265, 8.22568529885489, 21.455483105484106, 22.92813521743586, 18.029587037833153, 54.50355347701698, 32.881945226198354, 14.015667745832612, 43.00618636394626, 103.21703667427701, 17.284994075329926, 7.959540148710707, 181.92280109933057, 45.091619538302055, 42.575770747922896, 9.772474962331467, 92.95317849085527, 92.1384094151509, 7.734649378293578, 58.85306356286274, 13.001736684640225, 36.572677294620576, 78.1565870284497, 39.810684487361925, 36.86539112623875, 5.456038079577014, 18.683290673829664, 57.73512158387189, 12.05030908871751, 45.30961207146478, 7.041824943684185, 30.45131474126053, 68.92832096498745, 26.991969789368156, 58.78572444782064, 183.8862590593817, 28.322798869520014, 38.63199187196472, 104.70849903727728, 7.1772102309910535, 41.223711127894035, 42.38359408351985, 30.428309154782614, 23.876944135954417, 48.03458917427104, 95.3791306240933, 7.343685664892522, 16.736721977145415, 21.22289926942865, 13.806856251268968, 19.781669383609938, 8.448202644226495, 42.66706743061401, 6.104612680443056, 6.34146608850124, 84.80295044135202, 131.6478376395747, 87.49850804693683, 21.168670843088314, 41.83183305167452, 26.426662599139284, 9.845144419713115, 8.098272839057657, 53.92524641357599, 16.116587970488506, 13.027008226522206, 11.291619714614157, 6.441394580786114, 67.90399412909778, 43.91194351738311, 71.14975585706576, 57.90488707528202, 44.416073634008356, 75.8179514780299, 127.58114577706874, 10.307450276512707, 88.11309884554773, 5.573340262581694, 24.876093231854227, 44.55283407208147, 24.937663471575355, 66.70489859352166, 64.75103955677474, 85.77714643224931, 5.321551574944797, 62.1617889048396, 277.84539405998794, 11.101368802100197, 15.736066170474079, 24.300871257965042, 92.06697683035597, 47.030986659049844, 22.96338036463431, 94.3360924694815, 151.923704089682, 15.757610090484041, 48.93402879138998, 61.085297308025794, 31.57534182768309, 78.7661032627319, 66.56380711164061, 28.94068708792107, 9.769052445379614, 5.346276559630877, 17.88530100133698, 87.5754973533154, 62.99519955431784, 9.739611701734493, 23.32620262058712, 82.61462192879031, 13.164003549052037, 12.400038909288096, 13.421570567323545, 48.239401224517955, 12.84572120700281, 5.81966519332208, 49.84488335440072, 29.674242825771444, 49.01958485031854, 131.19578648898175, 32.09860598795652, 19.01183011714259, 13.98700760640293, 205.02016081961395, 45.3654044546137, 43.399597461008504, 29.266092557540983, 67.12814423315429, 40.37396814919644, 77.83686067736667, 12.78465482502442, 5.313513207116511, 22.93914527782421, 65.35446745173246, 17.135706427546445, 5.2027646587882055, 47.01478649800138, 38.1067343840397, 31.686177334849944, 73.53098699554766, 99.3473677041296, 41.46163627702852, 66.09228741988049, 84.9338653869345, 20.44060008215388, 65.3628873430517, 10.558888864182057, 15.554454646881613, 23.184538932151085, 284.4000087608105, 140.078330294216, 84.18631157558373, 211.92360563495635, 24.397311688251136, 16.703498445663463, 47.08163247674248, 118.22164079456763, 12.337510190298548, 31.062906231433743, 99.03380214940944, 26.342585278858778, 10.529751172921774, 108.68091636609398, 121.03391850034708, 44.53199355055921, 53.540181939497494, 49.51074666431031, 142.716751206617, 80.34013848857029, 41.22134058823365, 7.487646356021782, 45.28562152892432, 30.911509276988184, 23.095416774932808, 56.86531488326438, 54.66619617652131, 12.008894113654792, 36.27870741692825, 32.64312287282976, 129.4133801355349, 26.63646653603783, 22.229114711234075, 49.41812792100153, 37.400176045418974, 101.54068019389533, 20.452774943025606, 40.81041956578291, 7.567201347307752, 27.04674074611051, 62.80663632249624, 23.89178872632921, 31.850839204876866, 13.324865566893976, 18.72807171143682, 9.80304103852739, 6.8921792785662275, 47.00935236807303, 66.15548078386858, 25.08958732744258, 11.102050842121374, 8.013882436401659, 7.5357733224071595, 6.2580033606948895, 18.245008448872493, 44.33470127206988, 65.89216075004677, 33.978659657673525, 18.078352955948077, 162.96051308204338, 22.417040886650675, 5.6000679852051, 27.20584007622231, 65.69150009848723, 83.61587784454228, 38.57638007490251, 49.768447650564596, 5.998714788422141, 7.406172646930871, 6.587210959195897, 91.3009987038841, 83.8515377848397, 75.63665368927848, 56.27491433179468, 14.770254980652592, 45.6577454795224, 79.2711968608727, 78.1500349684724, 29.616018445628704, 18.39475558254025, 48.759742464612515, 6.637640470126225, 64.60525333315256, 31.855490622202304, 9.292366262927814, 16.17827072791642, 79.80463919910393, 49.75138644707921, 22.419170966330675, 16.190147091903256, 35.732428679770386, 17.254829371582133, 5.750785874689642, 29.015312919889013, 6.075439183321336, 41.01489316237458, 34.2352620849723, 5.301028258291447, 59.49216935977485, 17.401166620551066, 8.76229665912461, 19.061269906776836, 83.17742728967555, 116.03735479599374, 14.913272030976449, 49.611647502813724, 98.76475999046677, 6.388033588488569, 83.76363695757907, 36.68493664459194, 20.340317013438188, 14.652442194261514, 71.22756340372395, 16.35231968699136, 49.759461053458296, 7.313402565732408, 41.111699106656424, 192.39718808441182, 37.08362842849901, 27.403831732935284, 15.59908194623814, 85.0874996163806, 17.426426148758743, 47.45833553053477, 77.85421928417232, 65.34869749915877, 77.83564336783604, 18.847314713011468, 112.36017159580128, 21.190338372850032, 22.01734335414829, 6.456982432946589, 29.597089050787687, 27.459723373318813, 65.46508311003979, 43.13530681103051, 107.93792580787536, 144.28437062519876, 13.756348018766227, 28.878370651354324, 10.123705173533555, 42.10051014057676, 8.336378041286762, 15.975407831549054, 131.78393313810562, 54.52076445537441, 12.447384113432308, 13.226541886596983, 76.80016362620621, 9.397937212917636, 242.66335116864883, 34.03504120528007, 14.347803496873198, 26.526241455367927, 31.88202979856886, 24.847077978344842, 88.64241441213656, 28.962909391803198, 38.7817407719529, 18.774936427510077, 24.043669948979865, 17.379797967200165, 106.1602102298659, 7.3691433647628415, 94.92919650238109, 9.176938447013988, 124.8244973461481, 39.51758662645229, 7.67817680202612, 95.82919727833092, 52.418280191257914, 36.80484321793376, 67.2662491650534, 32.0322906687961, 44.160807849403895, 62.18852150188932, 115.95504977150492, 31.839420393701527, 49.963890177763055, 29.786527213811205, 6.893168339932116, 179.53360883975103, 25.515577066252455, 25.787301036335005, 5.9762518492617875, 102.0709318609866, 133.26487832418704, 143.2891079102357, 149.291931630965, 18.935408544751876, 48.26961099689636, 83.09287804836893, 47.42367883032324, 63.62288690922791, 45.950938946719724, 92.9972345414246, 16.283389901829644, 8.49961720578722, 17.862797548935472, 23.183548136498043, 33.16357866735212, 5.605845100972671, 15.287308908433506, 21.20828373677705, 24.819624870093158, 42.963032115009476, 111.50653359177161, 16.347298582874323, 5.109584086566329, 70.20999605183628, 40.800519879222215, 35.26975395797139, 28.460666556924703, 15.113332165573626, 122.84054943257, 21.710849864593257, 32.06500761355247, 46.46454521121224, 13.749118604220374, 8.435225691840463, 9.685556521975242, 7.772493583677189, 60.88391766562467, 40.13020664683125, 18.248461912415436, 5.352009881842032, 81.82682976749432, 39.74728720921716, 80.88276448786381, 45.7912017111948, 91.32563016217387, 32.9178731208785, 14.64738233554286, 10.185582460149686, 31.094679757777314, 5.047823062929312, 30.21495608700915, 14.56815537428346, 8.415247560256297, 120.61933852139015, 35.2628201047971, 11.074621230231777, 25.626282943642718, 31.912076012475623, 39.40274248630029, 50.28232276882722, 8.438155169902226, 75.14061086240817, 6.821355191725031, 33.407801489042384, 12.482939901901585, 5.719595164816366, 9.894267178960092, 13.667536297741524, 51.84484071028434, 37.124962276679135, 48.060351172008986, 40.42870066538445, 213.65553946437413, 49.28508512373072, 64.48445224873952, 62.943682311105704, 51.872311659321696, 40.84083207771808, 24.107479275503042, 57.868937952797, 81.23469165195246, 45.632068049378084, 12.527898693486483, 52.10730711911261, 33.37206494586214, 93.72197268457327, 19.51751193952799, 64.29817689679749, 71.82120222215735, 12.026732913361245, 64.56724587181462, 20.511902667919514, 28.617968201162626, 52.79473073526317, 43.31325799733867, 46.966381315919655, 14.403657026552715, 6.3664810884156156, 94.5374355412918, 31.670240227734308, 67.09780981824596, 9.623953447066237, 121.61398368964696, 10.197102120933543, 56.97850993858371, 11.565880880598746, 5.998751413994672, 99.68362371618159, 16.14566990349793, 9.350692154484484, 55.43817564742532, 11.28951602039389, 37.72277906158247, 12.229834955001245, 42.800586649936534, 12.248748825991298, 57.807445362052235, 85.86413345294821, 56.0964108095122, 52.89209879002651, 6.964670094788106, 20.247415541516247, 81.02602197386825, 111.56511547985323, 37.77836138604245, 10.792960412141012, 182.51008392356573, 64.09394464160866, 34.60245806124165, 47.081611387567875, 19.42254911160326, 50.63660336883367, 27.493795222017305, 30.76029759724851, 34.60190509783668, 13.49281398647832, 31.267619143057736, 32.49203350544165, 20.193284835570914, 10.465315336543512, 31.987300785712154, 64.99470554569996, 110.01490077270483, 127.93017850869457, 71.30837965491887, 24.15325672951559, 48.63731493579294, 12.09002424260638, 163.38554835984692, 20.14928060917843, 52.62738252340618, 19.514924321306903, 70.67601835719933, 6.537589225919284, 84.44583201291655, 10.59005443686995, 58.950462323708216, 74.50859477686274, 28.39654423906162, 17.206072038695993, 50.03771043927216, 28.97660514561169, 19.256477816644935, 28.966604396638175, 19.66887031978247, 165.68798891298567, 13.640075214049393, 12.946706818268462, 16.85861668562007, 33.021206763617286, 17.484856804233072, 48.887184838440334, 106.99460614033107, 72.76961891075686, 58.32757236631837, 17.795509870953268, 7.012177004789033, 161.3053729465526, 17.482559012719975, 9.312307091655233, 24.180437561946714, 25.46699105830654, 8.998520424582356, 37.676045777229774, 9.67481071402525, 53.93141333902951, 65.92551267790081, 54.49154921768775, 160.37390187693174, 7.211185425096571, 16.203732313567173, 6.334480416260668, 6.213003516210593, 33.31562275059358, 47.35889291400781, 118.23409015033397, 14.638765188909149, 81.90513817361763, 9.665937286127647, 94.43627701825785, 37.85631764862647, 36.287866983678676, 67.83486654091136, 67.78574329230655, 27.4414847495194, 39.956121725589846, 23.436667592349096, 8.6449906537154, 5.3374883732041045, 6.619581588676465, 75.96557260069197, 21.276566328129384, 16.623037495525335, 116.88501535330431, 17.673462200481183, 42.086757806740046, 25.669004447949845, 22.168773893231176, 37.23409438576438, 11.45221190447268, 198.19095541940652, 33.50616954433662, 17.424433083412016, 22.410912699618116, 12.491116983059435, 6.237132592065057, 121.24728689175001, 96.45714540318511, 61.868978585050385, 5.280570241167382, 49.97305937967068, 22.98448116317273, 39.478651156487, 77.58179034024052, 16.927600396737688, 93.20930235569884, 22.05228246471032, 77.17448898315132, 100.8851717407532, 92.88385829294157, 79.29011737884838, 58.703011771163894, 29.536636453038483, 53.07933783503257, 12.385468926865512, 65.92677030343786, 179.65541630405187, 64.47809443565998, 40.549167432545424, 19.486022935662362, 53.12376988826138, 8.040402291785758, 19.824337307287788, 11.041091562183974, 30.885963133486023, 88.84349713637454, 81.75836499166944, 30.042491264679697, 87.99793927829718, 91.39719218314524, 19.59187862620178, 127.54039466181007, 79.83231531296734, 38.05826863541802, 30.139156960288645, 24.512368711367596, 107.65099732952302, 23.822119719319023, 14.236380985901155, 111.81163738353547, 10.319236505017386, 8.138397707850261, 106.81901185096419, 90.63196245270254, 66.47996834659585, 36.419099816551885, 19.878693153484868, 195.85559383240624, 57.37904073248389, 12.107104692538359, 15.141143708817447, 16.010332913813137, 106.65853618049753, 22.697184583908236, 61.43455556637122, 13.398173669078462, 39.89312821289549, 58.87543828260712, 11.083980847969386, 104.48825118161041, 159.3738246089838, 13.193793841135406, 45.98566959512484, 35.90842819080425, 26.72917100321101, 52.53481863442845, 17.4274527896126, 62.46794237580677, 21.72435623602035, 54.038811842608986, 112.31133508815218, 58.1242296499352, 13.856734233226133, 5.928500266147046, 42.75086029448558, 120.45879947360146, 24.170445775396296, 53.611356005422834, 5.78259817924039, 25.540771952534435, 39.71996890671407, 22.530413411772834, 9.395125739973878, 190.20719326068718, 43.613624775524826, 19.136602396838228, 55.10176980065251, 45.49041345703076, 73.75480808586639, 27.397755223237226, 13.663467027760765, 30.379338163705214, 25.14303377234812, 6.385349732865176, 13.972047176555668, 53.326545327411985, 26.386453381589206, 16.99138133581622, 56.1871979501329, 5.313933587234848, 15.702454479451506, 5.864783306077832, 38.20634222249129, 7.6569369206858315, 43.62303414657566, 86.78344924589013, 36.20286242977713, 5.758248336562041, 65.37611637491105, 21.61792869030031, 100.8848934523511, 17.364729146542153, 50.453041931906, 17.959860793354732, 33.5252073617209, 23.0529554390503, 13.311932816818743, 17.710534309789324, 49.51058651846272, 22.927325197852447, 19.990101464841505, 25.0807042583054, 88.40335461315382, 59.84947865200034, 5.63601433970854, 37.13444293934487, 5.5263287977123845, 55.998735534194346, 76.93613123990941, 168.93798562687255, 9.687282414483548, 27.403436093335415, 38.22200395573908, 21.331626347514515, 181.66171008362875, 88.48949491908667, 17.76133809719246, 46.305126219281405, 96.50591702481765, 59.17704746532413, 10.457429085881971, 138.3204070534966, 40.476771366437504, 25.839438679288133, 55.29900870211106, 6.479383166005949, 36.393489594617186, 16.5489752663844, 12.727626088399449, 49.76845489730146, 42.86690424517393, 26.624971265572167, 44.65475575343216, 20.099472542600633, 64.62124563907506, 18.770026537139664, 138.4209062050687, 35.29519415721944, 167.91194224712928, 57.33825460771821, 52.53772861276595, 47.956654135794814, 63.306391005185795, 32.19347922192391, 22.998167003193874, 11.514750187325358, 15.096566996536101, 138.00153409537933, 13.8211423635232, 11.310415242294761, 201.61017691570666, 12.31127772377988, 50.09428574939825, 120.02079178067197, 7.929656775867608, 15.809842384870171, 35.90757523979471, 14.408804258139128, 10.5271673859552, 24.62144399509029, 53.965513460768584, 57.191454785222454, 5.040562944353615, 82.30934740408938, 80.52329472037789, 6.3734448797407905, 113.62754812818679, 43.814828648992425, 102.42780154362349, 18.514270754700245, 11.933920165010296, 69.05766884161156, 13.386751320468791, 32.71588987855607, 13.294369677613417, 104.22756576342478, 11.590159642805824, 177.05881007783782, 26.0593313719049, 10.167341852354868, 100.35742103340624, 7.466443292689971, 14.315575832100349, 20.157621460671624, 20.633983188718428, 67.38186569809105, 7.296075524155309, 125.10897587311081, 7.084084943848707, 136.20929161867485, 16.109162915950446, 236.78649272175238, 61.86057984134683, 26.1807794432436, 64.41231793344167, 240.24482600092287, 38.70280520499099, 27.800347102227985, ...])
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)