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 = 48180
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);
([6277221.787742465, 6391463.004687083, 6846879.6875, 7362604.905150023, 8676048.838767424, 9063234.375, 9092054.6875, 9095895.43442144, 9106034.430703824, 9241007.8125, 9247712.165749675, 9248322.498040916, 9248560.9375, 9250120.759193351, 9259756.736315941, 9264578.564392272, 9287990.430602912, 9309424.621586887, 9327838.739486547, 9333736.607926149, 9334445.199464345, 9376735.80734474, 9437583.607077962, 9439176.118791785, 9439429.95654742, 9439710.9375, 9440172.721640727, 9440206.15222104, 9440232.307914393, 9441478.125, 9441820.3125, 9443342.1875, 9443747.321081104, 9444492.541734131, 9444510.891623605, 9444537.67709338, 9447028.004994387, 9448245.729239628, 9451585.185457915, 9459370.3125, 9486038.610685745, 9502533.055381294, 9503303.023859875, 9529118.941783108, 9529279.192819854, 9529492.960830815, 9529818.034099352, 9529911.627503837, 9530474.080630872, 9530581.406867579, 9530823.626326887, 9530994.593888883, 9531306.25, 9531871.478315493, 9532530.706011783, 9534136.266271198, 9534255.17237099, 9537870.352375928, 9539622.073794983, 9539636.640258044, 9539785.465762781, 9539816.42320282, 9540028.50339171, 9540145.699324962, 9540274.962781454, 9540592.812730193, 9541243.15805536, 9541877.95595121, 9542632.8125, 9542646.626314279, 9542760.9375, 9542801.109984506, 9543278.307205904, 9543640.196708843, 9543654.938032586, 9544080.82828392, 9544134.308087315, 9544234.475297613, 9544286.997100309, 9544325.75612753, 9544530.677663682, 9545198.519160366, 9545610.504528204, 9545732.468053943, 9545829.6875, 9546208.198980942, 9546454.609597439, 9546766.28731453, 9546963.815438705, 9548397.051886106, 9548939.0625, 9549192.060347468, 9550042.155470798, 9550054.721298875, 9550742.569382893, 9551474.21236955, 9556443.396248994, 9556518.050848812, 9558035.9375, 9569213.622509282, 9569679.227608262, 9570165.453144724, 9570275.538231337, 9570518.75, 9570538.196240691, 9570843.75, 9570955.064142555, 9574043.75, 9574066.811879337, 9574915.002635267, 9575221.404728493, 9575516.990451166, 9576023.4375, 9576063.489832118, 9576126.5625, 9576171.875, 9576310.452784263, 9576436.952605851, 9576473.620699316, 9576591.324858362, 9576643.701531485, 9576678.125, 9576785.105030442, 9576868.75, 9576884.340316884, 9576891.909865862, 9576987.5, 9577019.755609134, 9577154.6875, 9577155.671488145, 9577176.349589443, 9577334.626287652, 9577363.48680599, 9577370.142379656, 9577670.3125, 9577671.787591822, 9577685.56080348, 9577689.0625, 9577737.5, 9577906.25, 9578032.8125, 9578050.45615474, 9578127.648882143, 9578239.260974186, 9578281.17881009, 9578284.345670553, 9578558.857163498, 9578659.071055299, 9578747.354932725, 9579028.125, 9579048.722324241, 9579192.1875, 9579416.128829166, 9579632.882128177, 9579826.5625, 9580066.158676589, 9580408.584498392, 9580732.8125, 9580891.31438417, 9581029.6875, 9581102.08891076, 9581128.125, 9581259.890746236, 9581299.647613319, 9581454.687389027, 9581551.682481823, 9581795.140144223, 9581982.212574335, 9581998.4375, 9582123.04267938, 9582130.745827215, 9582611.978605973, 9582758.02758035, 9582911.696423113, 9583017.173267804, 9583150.0, 9583437.402402863, 9583809.978190446, 9583933.545536501, 9584054.6875, 9584959.015036715, 9585290.625, 9585351.5625, 9585418.172197692, 9585620.3125, 9586187.609998094, 9586377.545160415, 9586632.215341149, 9586766.336336367, 9586838.218800541, 9586926.074896209, 9587134.776704978, 9587181.25, 9588209.375, 9588385.186965639, 9588406.473775357, 9588430.689741537, 9589061.913713712, 9589142.931975761, 9589540.637338866, 9590145.277266216, 9590307.663540458, 9590450.762306912, 9590475.0, 9590652.522658125, 9590865.672651805, 9590925.0, 9591263.963869259, 9591464.81710041, 9591610.9375, 9591662.5, 9591663.502832286, 9591886.630053772, 9591938.599644681, 9591947.981998472, 9591994.961465763, 9592152.435051896, 9592171.680875046, 9592229.056885201, 9592443.834236953, 9592447.212751955, 9592922.676686095, 9593260.704588154, 9593394.791964281, 9593857.272582239, 9594032.8125, 9594885.663505163, 9595157.808581771, 9595190.625, 9595201.019142738, 9595202.531776726, 9595298.4375, 9595339.9837532, 9595357.450685734, 9595416.053015737, 9595522.215419717, 9595866.818442443, 9596160.9375, 9596268.75, 9596313.031910276, 9596321.111098018, 9596342.1875, 9596832.066303292, 9597096.322074424, 9597542.1875, 9597614.19423978, 9597963.785828577, 9598364.0625, 9598383.1810298, 9598957.768663986, 9598984.581533132, 9599761.81121517, 9599832.451851442, 9602555.457850417, 9602970.096491944, 9603235.9375, 9615993.75, 9616133.846481072, 9622045.3125, 9639635.153902339, 9757865.521609195, 9770382.627409948, 9780913.933305934, 9884237.461670427, 9890307.36764015, 9895736.337656194, 9896012.2792327, 9910045.659492627, 9910736.381866982, 9911287.393374262, 9972477.010023423, 10199678.812404545, 10200060.277354922, 10200271.875, 10281823.4375, 10294386.63133132, 10306403.345164908, 10475704.775957925, 10507557.307044346, 10517091.919844247, 10537685.643184286, 10541169.367515182, 10544118.270898776, 10547020.3125, 10547067.35267776, 10589457.099965803, 10591954.6875, 10593757.8125, 10605188.809549643, 10607699.304205397, 10613626.872053245, 10614965.625, 10615002.135377217, 10617459.31053402, 10626560.010219896, 10628248.4375, 10644670.313460957, 10645423.594677951, 10648759.375, 10657792.1875, 10710827.953222906, 10716308.466614671, 10716524.52853801, 10731651.771241955, 10740142.964468054, 10741533.56507576, 10743663.937359452, 10747082.8125, 10749062.016572587, 10749388.214525469, 10752351.5625, 10756528.31468354, 10758053.125, 10758184.968250735, 10758323.4375, 10758489.17043113, 10758640.2607984, 10759913.159009948, 10760483.85889592, 10760942.047798686, 10761876.5625, 10762423.946149938, 10762450.90394356, 10762953.039715752, 10763004.6875, 10763115.799437856, 10763759.740215434, 10763890.55432219, 10764045.967066128, 10764412.5, 10764466.414578995, 10764560.296107532, 10765060.182564326, 10765078.68040703, 10765644.541284619, 10767022.937474921, 10767441.221465657, 10767648.71871104, 10769673.4375, 10770325.62109252, 10770701.116566503, 10771918.68454071, 10772830.147917686, 10775158.58209416, 10775226.222457286, 10775742.908796847, 10777930.84544145, 10779712.933219584, 10780168.622475032, 10780225.0, 10780242.44170174, 10781043.514469413, 10781148.626269246, 10782971.063874666, 10783143.75, 10786449.989487866, 10786451.661423838, 10786569.102400042, 10786955.098124838, 10787843.427188186, 10788099.512155512, 10788187.5, 10788347.150408687, 10788492.705346093, 10789215.625, 10792614.812615313, 10792639.759843878, 10793826.415907774, 10794173.338986132, 10794236.176621567, 10794393.75, 10795488.034648703, 10795492.421979085, 10795498.765943345, 10797607.554638172, 10798050.694681535, 10798299.570340132, 10798501.5625, 10798503.042007755, 10800364.486054437, 10802173.176049035, 10803207.8125, 10814116.562327975, 10836497.862412937, 10837179.72677715, 10860834.113422578, 10890913.996058175, 10892877.370792534, 10918063.375435391, 10930195.967381818, 10941432.877039038, 10941910.961299015, 10949260.719691165, 10952015.797997907, 10953250.0, 10953616.53217739, 10959382.8125, 10959732.737799453, 10961512.5, 10975663.497988004, 10976010.800283786, 10978096.802317971, 10988330.598611964, 10991980.733603906, 10993797.83310094, 11001651.5625, 11006834.364916068, 11008368.05231465, 11009514.001018057, 11009609.195215138, 11009735.570665443, 11040850.856494403, 11041924.497336354, 11042612.981051719, 11043357.703748072, 11043362.824424595, 11044306.408530615, 11048600.261870718, 11059042.29024835, 11065721.875, 11066937.428571207, 11069748.31511704, 11070098.4375, 11071884.375, 11075193.127622427, 11075994.059010917, 11076221.875, 11077015.052912064, 11078197.629515553, 11078932.8125, 11079121.537590474, 11086485.839977313, 11091807.66576464, 11096891.77602517, 11097520.395123044, 11097962.08731469, 11098233.670340283, 11102389.89257148, 11106127.176540712, 11107757.8125, 11108524.719475076, 11109046.06566283, 11109279.45890338, 11109818.864695534, 11110187.719728664, 11110503.125, 11111580.577768233, 11111645.228323838, 11111893.057296526, 11115347.232321264, 11116340.281327406, 11116468.664541429, 11116917.668546127, 11116924.374510799, 11117373.077008082, 11117377.542229217, 11117439.358851112, 11117440.625, 11117773.135188628, 11117901.848102953, 11117904.26396833, 11118629.84837971, 11118851.5625, 11118960.9375, 11119462.797471045, 11119635.875818005, 11119664.204801025, 11119724.392466465, 11119732.072761498, 11119933.418144045, 11120016.83345582, 11120318.293504942, 11120522.805909326, 11120564.352118632, 11120639.01591521, 11120937.06929135, 11121018.265003279, 11121181.637923434, 11123980.426036771, 11124619.888978431, 11124958.732438773, 11124959.375, 11125119.880884593, 11125342.890829057, 11125514.0625, 11125870.3125, 11126302.710244227, 11126331.043002807, 11126335.9375, 11126387.5, 11126601.5625, 11126607.840946745, 11126747.505919343, 11126964.0625, 11126982.8125, 11127147.809745789, 11127482.063344322, 11131035.495855546, 11135981.651377331, 11142103.125, 11146235.605028702, 11147400.822205521, 11149732.688810451, 11151617.972825624, 11151641.250715455, 11152363.309162728, 11154451.5625, 11155533.486658365, 11155773.4375, 11155774.524727609, 11157015.625, 11157555.078480372, 11157607.8125, 11157651.5625, 11157736.507651398, 11158046.54356711, 11158742.1875, 11158914.0625, 11159152.639770074, 11159336.257294184, 11159409.993017688, 11159484.375, 11159628.899691924, 11160234.375, 11160325.976093618, 11160640.1770821, 11161232.484458812, 11161372.299437575, 11161495.959783927, 11161846.875, 11161897.74493181, 11161985.942646215, 11162032.821233178, 11164118.75, 11164165.625, 11164678.125, 11165556.989983847, 11167236.619333679, 11167650.0, 11168084.327240258, 11168093.405780971, 11169070.674527664, 11169679.028784845, 11170798.776460974, 11170885.9375, 11170892.1875, 11171309.375, 11171454.6875, 11172050.558119604, 11172062.5, 11173865.878408995, 11174130.765183479, 11175048.457704742, 11181148.702146279, 11181416.262872856, 11182168.819869906, 11183280.581675489, 11184011.933788972, 11185429.667411754, 11186037.194782218, 11188565.625, 11189175.0, 11192237.75366361, 11193690.737453748, 11194470.024209782, 11194864.46588522, 11195553.125, 11197229.300773466, 11200537.08212389, 11201444.276983643, 11201785.860003468, 11205034.50886612, 11205465.625, 11205998.275902832, 11206830.52516628, 11206843.75, 11215217.1875, 11219335.232663013, 11221578.63429229, 11225350.0, 11227874.607869256, 11231215.625, 11232326.5625, 11232393.75, 11234463.84541982, 11236596.875, 11241523.284276096, 11242622.881416574, 11243426.5625, 11243566.35991638, 11243648.4342744, 11244276.5625, 11245386.548297308, 11246017.000916202, 11246348.390695915, 11246389.0625, 11246417.1875, 11246514.0625, 11247654.6875, 11248443.884956768, 11248967.04403995, 11249618.638818773, 11250149.491331957, 11250204.6875, 11253923.4375, 11254986.796688594, 11255866.785493104, 11257025.0, 11257419.646845296, 11257701.189738585, 11259038.781502128, 11259040.771126546, 11260265.776456937, 11260608.79798266, 11261602.323226186, 11261852.421464562, 11262375.045602914, 11263168.75, 11264596.861008419, 11265347.39675048, 11267116.98932565, 11270081.25, 11272313.688080909, 11272652.897952877, 11273918.381352961, 11274580.71992507, 11274695.057764737, 11275801.5625, 11275837.113758558, 11278170.00158488, 11278211.216667706, 11278454.264150694, 11280730.89082027, 11282615.625, 11283231.565793633, 11285421.755492475, 11286126.512955459, 11287265.625, 11287388.932355117, 11287400.476566732, 11287575.0, 11287631.25, 11287740.598837629, 11288022.595753735, 11288057.546647498, 11289375.0, 11290540.639099658, 11291779.631035421, 11292203.57244769, 11292646.153340543, 11293335.333013179, 11294618.75, 11294777.082517315, 11295123.124853201, 11296945.3125, 11298012.238233581, 11298012.2807962, 11306649.19633692, 11307721.875, 11308511.183652442, 11309101.162138378, 11309433.395065574, 11309631.589248322, 11309967.271934925, 11314024.298867472, 11316632.735756963, 11319853.884689681, 11320333.63224824, 11320773.18833398, 11320905.948143512, 11321015.625, 11323387.514796037, 11323645.26056022, 11323843.546759171, 11326640.625, 11329862.314477304, 11339540.115167486, 11340193.997548636, 11344705.723551745, 11344925.202073047, 11345510.9375, 11346006.726045555, 11346385.9375, 11346826.628155166, 11348798.240404764, 11348890.171107734, 11353832.096091291, 11355071.673090626, 11355997.061267577, 11357941.51290602, 11358797.16357558, 11362296.875, 11362327.703353392, 11363072.600850964, 11363631.021611415, 11363912.5, 11364913.90307312, 11365033.956325142, 11365482.670514947, 11365690.625, 11366305.076045843, 11366723.4375, 11367011.03111038, 11367541.830408959, 11370427.960290035, 11370800.945117442, 11370822.57558439, 11372186.390508218, 11373849.914078677, 11374279.6875, 11374520.561189605, 11376281.25, 11376566.865840925, 11378374.371768132, 11380531.880471349, 11380686.81927555, 11394301.398503581, 11396152.68851999, 11398424.554646468, 11405888.118182411, 11409998.4375, 11412572.464944758, 11413286.462055815, 11413718.285765275, 11414093.856482271, 11414199.628589597, 11414444.745912088, 11417243.50852837, 11417541.398335615, 11420934.222824907, 11424601.21526743, 11430267.45512283, 11446848.4375, 11448645.67768269, 11448724.469940957, 11448859.150965309, 11449146.255396828, 11449447.072240729, 11450630.99360041, 11450901.88315113, 11451951.970851492, 11451973.146425791, 11452095.930202495, 11452452.293329014, 11452855.605408324, 11453301.56546007, 11453538.920013294, 11453764.0625, 11454775.79352443, 11455364.0625, 11455431.567562424, 11455523.158475997, 11455528.142025312, 11455756.25, 11456040.360289764, 11456094.734500926, 11456195.55771388, 11456244.148116753, 11456257.8125, 11456434.182510568, 11456446.37837642, 11456494.659300135, 11456690.031791745, 11457604.6875, 11457629.6875, 11457727.704314664, 11457866.165302314, 11457876.850692553, 11458017.1875, 11458258.496695602, 11458469.795375232, 11458556.988958593, 11458739.05045455, 11459221.875, 11459245.3125, 11459376.46314407, 11459672.519894084, 11459718.75, 11459735.335031763, 11459919.739117313, 11459970.577561934, 11460000.232522447, 11461352.627647776, 11461374.753093973, 11461543.75, 11461557.829221549, 11461701.813213496, 11462687.5, 11466596.625167323, 11467035.34300792, 11471008.430064285, 11472688.682763379, 11473376.502434487, 11480859.33394188, 11481088.771113059, 11481748.042428426, 11482895.619659465, 11483551.5625, 11484990.625, 11484998.4375, 11488551.511544121, 11489172.622486485, 11491004.6875, 11491118.75, 11491754.73911298, 11491836.324648546, 11492014.097462567, 11494151.5625, 11495402.297709927, 11495663.875351464, 11497245.3125, 11498204.504963065, 11498209.375, 11498556.25, 11501965.186176738, 11502261.410472078, 11505953.125, 11506258.378561387, 11507163.76578113, 11507664.0625, 11509178.80211299, 11509212.35740466, 11509721.974352993, 11512349.607710654, 11518343.219773691, 11520758.52558023, 11520848.4375, 11524762.5, 11531498.4375, 11537989.088111063, 11548547.241245985, 11548637.082274195, 11550534.052387027, 11552246.875, 11556152.693690134, 11579267.1875, 11581433.294878624, 11591257.8125, 11591927.072064554, 11591929.113539102, 11593395.55620036, 11593868.75, 11593906.558781225, 11594318.240002494, 11595241.468177237, 11599280.278708791, 11599721.013655134, 11599978.281876473, 11600110.845736811, 11602398.726736467, 11605379.516824858, 11605558.097279975, 11609649.862343354, 11611623.141915683, 11611728.012908995, 11612000.961029105, 11612614.0625, 11614623.44461859, 11615586.413941989, 11617542.652735114, 11619676.183978176, 11620321.875, 11620857.663337754, 11620930.6646447, 11629577.76376034, 11630148.564319119, 11630514.0625, 11630515.48963315, 11632319.4305779, 11632417.064364731, 11633237.719861588, 11633500.02516294, 11633567.1875, 11634181.440730942, 11634387.5, 11634613.982857699, 11634723.087537771, 11634734.06908295, 11634809.478891043, 11635087.003919162, 11635605.968558468, 11635707.51446928, 11635718.486152532, 11636893.267880842, 11637184.669902215, 11637235.68378934, 11639053.119411081, 11641040.098399006, 11641327.669157375, 11641801.242863383, 11641871.875, 11642017.056788754, 11642900.51765114, 11643082.431562057, 11644436.761240032, 11644958.262864284, 11645384.375, 11645545.3125, 11645824.962025212, 11645934.270209571, 11646278.125, 11646856.25, 11646937.995818503, 11647061.677032128, 11647067.1875, 11650717.134049151, 11651053.125, 11653637.5, 11653677.673290566, 11653765.910689848, 11655243.75, 11655308.187802304, 11655925.0, 11656289.0625, 11656335.839780657, 11656593.75, 11656908.853874024, 11656999.289791606, 11657069.319882698, 11657388.162649447, 11657745.772782879, 11658426.955368642, 11658787.213665541, 11661166.265167218, 11662791.923693474, 11663891.205737453, 11664144.451414537, 11664477.634683916, 11665249.557071632, 11667037.639056046, 11668478.125, 11669732.543654257, 11669798.966538893, 11670839.435342507, 11671587.348257143, 11671931.475812668, 11673556.25, 11673832.26512512, 11675470.3125, 11675612.084844373, 11675710.53639746, 11675989.298394253, 11676095.252238423, 11676161.49518646, 11676757.716760335, 11676929.6875, 11676942.1875, 11676948.4375, 11677027.7707494, 11680013.763517343, 11680284.211331163, 11680631.261095677, 11683269.852286167, 11685904.666235715, 11688438.078263741, 11691389.769516693, 11696279.47367543, 11698448.168471502, 11700282.027181987, 11701426.990964334, 11705215.604567835, 11708821.875, 11709774.5638256, 11710123.4375, 11711538.375693167, 11711932.6569417, 11712151.400753776, 11712479.6875, 11712798.4375, 11713135.354373017, 11713185.9375, 11713880.289799778, 11713900.587074941, 11714264.507974325, 11714718.75, 11715166.74828674, 11715452.661046837, 11715939.382507524, 11716266.683571683, 11718688.564952537, 11719108.12097286, 11721294.538777009, 11721460.9375, 11723153.617572479, 11725116.241835332, 11725812.5, 11725965.625, 11726303.125, 11726407.81126175, 11728460.295919659, 11732771.259262597, 11732853.06702152, 11737471.717674416, 11739495.190545745, 11739787.22796685, 11744418.793613264, 11744623.4375, 11752440.514314413, 11752638.512974903, 11752668.385296782, ...], [6.473499292430521, 5.984595725811094, 49.06010847417309, 11.485848328133224, 9.695424079818281, 64.47661360870147, 39.921487909858236, 6.7880938131861805, 81.92218586719639, 34.150545212573284, 36.754501295898606, 141.0732713635669, 50.91936988193878, 59.88716717442819, 11.983654879680417, 5.554792542432959, 25.20039615029008, 20.393275248224974, 68.31669989308361, 66.62659029989193, 14.527490196353481, 68.87134433810724, 21.820866290043917, 13.482906084031137, 153.62198278211343, 44.287386136898625, 54.05566817734694, 17.39167925377742, 13.313504656946307, 69.14660315322219, 81.77129425131754, 65.84374881421341, 18.00503976435016, 16.4886565062409, 27.648527682828206, 79.09563952568891, 35.38137263463564, 25.217643090399328, 6.17663965157355, 38.49523771137997, 53.05103014400137, 53.13574210139033, 82.83236785075952, 9.499007903674782, 21.54633326871213, 7.909127823652646, 5.3717933417636266, 7.315468230043261, 23.98673947852895, 22.386929733781496, 9.496339069563223, 19.55827074976529, 29.570717854031784, 47.798517140630935, 21.065237473208107, 9.62578118360425, 11.980792210516528, 6.77149368553522, 8.394577632855063, 26.531200419434263, 10.462567458186946, 12.65613917114186, 16.610774227392163, 33.43804393685102, 66.68214662325394, 7.846190182785158, 6.650816319658677, 5.285893864649197, 79.0222337457896, 24.429113733758296, 62.958333148541044, 144.54029295634933, 11.424972410141685, 15.877189340935413, 21.153714287372136, 46.737531308408236, 14.692458951381997, 5.205984749381753, 99.99941792166476, 45.86503363164269, 42.872085222630034, 32.77768744746533, 22.18885781080575, 23.199135531414385, 46.80093770933431, 16.652216055241016, 35.01048657666342, 9.96214390502078, 81.05372362064665, 42.38515502877216, 156.32262586284827, 26.241938535391586, 27.90638007036391, 5.81648533347902, 7.747455645373549, 19.034933618369017, 23.087599249752824, 84.49872733231655, 34.109645262818816, 22.113366897740555, 6.417337334516956, 14.324582443112407, 17.485018721649737, 58.359418991371776, 73.01960599337777, 38.91046989221712, 80.23575603777527, 65.40132521259089, 8.097452909025195, 6.966927937865334, 79.67061548568115, 56.16353768236358, 54.913913108289705, 6.030504810143336, 80.60688235548538, 54.98734957339816, 21.646936013907133, 21.032997229988766, 15.688995916224524, 12.43166802060835, 36.41588643629259, 122.82218751792185, 14.035396924024132, 54.064005602796826, 87.09270349468717, 15.766366707078706, 69.62545423064782, 42.854234928808495, 50.781271527288574, 8.885869979816238, 24.930806621601704, 32.44181358409839, 100.76978686472117, 94.70208948231773, 36.7932549855745, 31.422062867298887, 67.6172056055748, 87.18551775306139, 58.38968319240633, 58.84588741892327, 50.877940262162134, 22.214623573458056, 6.672035598822655, 84.1133712173925, 14.676936189142703, 84.21854419583116, 35.364232447576086, 10.683683222035803, 17.152091491972445, 90.36144080969544, 42.591744023595325, 51.875785952466714, 84.61369949187427, 8.32374431004867, 90.59008633071625, 6.87494270747701, 62.35443953077633, 70.4274080117351, 5.866812633043784, 51.68114382645364, 30.964409428350464, 30.788401973895812, 9.80921092567685, 47.70094033445204, 33.08471985349024, 20.742082487369057, 25.530706764277298, 37.30614500156741, 49.092618871557605, 45.369800820056994, 95.60029935870651, 22.807546318690065, 6.807219023238776, 57.45712068760383, 28.246280641112875, 33.61108589689103, 14.58212106116749, 26.585562589841206, 5.314280314579857, 60.39881443744823, 30.09658719087715, 60.215598822469644, 95.45549550629548, 27.98693975533037, 51.58640460023616, 5.949042409962223, 64.44197866862126, 7.99416578083492, 10.015219917391441, 25.198857336193072, 97.63423109455026, 16.730973852535005, 49.572270371986406, 69.92770338459243, 12.688549622348265, 15.619667985947267, 59.60226746353611, 10.32025851531744, 65.68976504923958, 31.515517654513957, 17.50903797721871, 25.892960658175365, 18.943524749435845, 49.18750760872689, 27.540245785559847, 86.46719256030212, 67.54923536567696, 98.1377241109115, 16.920386562659324, 42.885795692478155, 79.02587418740434, 13.165547781938454, 24.49438619980326, 20.814440920631537, 21.94878619800444, 7.032134722646197, 24.193213767948663, 38.10337270412689, 6.190682120642535, 9.403660636687041, 16.406723407749876, 6.175633466359989, 34.9804161338972, 10.401123838060837, 13.218034241480531, 31.453003329479156, 97.77025857321165, 14.92659597126731, 82.69355318589778, 21.071223702742994, 20.61096314843879, 58.560332047297834, 5.434900558011297, 22.99200809669819, 60.25856468108625, 6.833426558023051, 9.037693401664423, 109.65074346162771, 87.14746927687932, 17.44808716084072, 7.9200915999835155, 37.62141519419538, 19.34469574729865, 63.41027190571024, 62.74912787094436, 15.46859620086165, 20.722673812816982, 128.69651585011613, 6.546456101518427, 5.810743880183683, 15.791835821682547, 7.953086975224859, 72.09117272965128, 19.00191983057937, 24.88638032400771, 96.99970358166584, 107.10858984652917, 29.125469626170705, 48.029104050286286, 18.930974731572903, 31.671680442179998, 10.850219973336772, 26.208789182165493, 27.78835543281446, 22.061371686308394, 7.230769348966327, 127.40575743745929, 13.45143934531183, 64.57524373974593, 26.580912494568878, 16.974201222530024, 45.06828720620073, 20.031649356763573, 36.631668322067156, 87.02781948282752, 7.31661986740939, 27.023854463860772, 23.257566384202267, 8.036224280272993, 89.16314984862467, 31.597593744828703, 103.83406621200518, 7.438683343230503, 49.31424166909685, 11.396093423430015, 82.14586379140934, 71.02906225189284, 38.36641667827913, 64.30311561292726, 5.186050342235851, 7.205272812364941, 83.98615776188879, 39.28683326784473, 7.58008667234767, 32.94984568686553, 68.96471945782555, 43.015831568017155, 5.7168347874542125, 59.9406446555834, 28.879383511096865, 25.539519866066765, 109.06361781159765, 13.404890419454523, 9.514371612908718, 7.341856130076682, 29.207325119005652, 5.928581121416207, 51.54057116036625, 21.660029139747444, 63.85820389138456, 41.46642513665228, 35.07514039017536, 65.40083104218787, 6.584291432865736, 44.74373012235409, 15.369494271819695, 8.10293509970815, 20.42300732097042, 10.406652914900288, 14.434490497159162, 63.42329288005122, 17.31395394010124, 12.911807213084128, 26.944645620495983, 63.406652192503486, 18.1948144818232, 11.750949622426802, 24.829750455201474, 7.858480210143667, 41.074954519736515, 93.45561560010233, 6.641874536587993, 46.23906697028491, 17.58642856284807, 22.710081585677642, 32.80677786887494, 9.892391280406999, 7.197389027704296, 46.48894142867114, 36.02188107279267, 22.04994760911009, 27.29335347129352, 148.56468696462417, 45.950436436055604, 23.252381255342524, 10.026126795854859, 32.57848671186806, 5.214601349400989, 26.23588363342916, 58.96881950744511, 55.32144440988371, 5.333915173261479, 20.11798792745307, 8.728353889246204, 55.87316442165933, 14.901592901543882, 23.868321232071185, 107.41028893930701, 6.13186751722125, 8.122940627061464, 44.494626283702516, 42.69691954634834, 47.510024379274, 85.30781312336545, 55.301991093968525, 7.3336583443385335, 9.999968372348238, 14.410732954475046, 5.806726864494521, 5.13564576314999, 58.50960837624057, 12.080660516838167, 7.184484068683125, 30.385893325320836, 14.04202240024314, 18.470365581306037, 19.943139016940837, 75.45790923061777, 5.5290661774292085, 79.98036326601559, 134.4741451924736, 70.84985952737775, 20.32915396728006, 20.775400303199973, 15.093359090748649, 49.99539261769254, 77.36789335186963, 6.936368773353408, 7.372304498338696, 85.76493838960099, 6.094836521685878, 11.165111075474535, 79.17514271936454, 6.798542819219909, 47.6458722541527, 6.639367972000058, 84.02968502862305, 7.101952636019721, 39.31992655541987, 20.872824945262828, 26.079495688665094, 55.512453947041024, 28.80895734434884, 8.929862022400263, 13.048935341298337, 89.06550896299456, 14.903212989745258, 12.81538744184351, 27.364611923488596, 25.418212358357746, 22.430867282384007, 5.763525640827766, 34.528559041487, 17.158322982677024, 26.545314897583502, 16.34127639687298, 11.384883907704538, 11.563280053293024, 8.341670172058715, 67.45794171883449, 9.271727662210294, 44.077577818667265, 47.55616629723161, 80.70675244844907, 68.51806130022672, 11.647692482886702, 34.110613442372504, 8.890380465735433, 5.872000106578185, 31.820278415302496, 23.284365922038994, 87.83994590189268, 61.298702715581115, 47.07725989801594, 30.96541894655025, 102.40035932473877, 35.95228832786466, 8.780408755751035, 20.546025143645785, 48.45400752103117, 12.742899522842052, 6.61201381004405, 10.788255115589262, 21.202115637570504, 8.406295044377417, 63.834732178753335, 54.845136148289534, 26.96385637920284, 26.63191006511539, 90.85493052426332, 7.033948964908772, 26.941626388014296, 57.302392292684516, 36.546732961599446, 32.079280692442644, 20.705329691536363, 5.074325247917391, 65.18682669523133, 13.90216679969861, 16.154615846406976, 12.188912225962909, 24.03338387070941, 76.57957028239032, 58.95388332318845, 42.8984608585216, 6.751254399661679, 76.2272464988236, 10.294585992203006, 5.498224403677244, 17.89222719831497, 13.744386797471849, 98.68449424571632, 47.83786578086845, 27.27859467131212, 115.64594442066586, 13.519911242911956, 10.445749183581597, 66.76755135791115, 12.518490835121867, 13.540499142987672, 12.951856308544604, 58.511709466582175, 31.27945107787206, 18.529153918961416, 59.87127210572237, 48.69293548569094, 22.38780191206675, 47.76184596475113, 62.5071624388639, 67.16873707674795, 47.45709534401573, 7.128949572842117, 21.56630660100265, 90.65043685531651, 51.43650283284073, 20.306803046252806, 19.322141973719322, 10.501082653166366, 9.695531053128166, 33.69843276498551, 23.344641888113273, 10.139032421221387, 10.939723571598588, 33.31282715794624, 70.02265629657389, 82.06562664869872, 79.70872491141316, 18.3327736939277, 54.86238691440704, 18.39256209950634, 47.62853811143847, 8.504753836290517, 57.39026952078811, 71.78027196894585, 6.580342661962245, 8.118756173397779, 69.11794140639921, 53.50443290936769, 21.641715892846666, 74.17214660155642, 12.253898152667084, 48.49219924530949, 12.60135074369186, 36.0459909090002, 20.672383130396433, 27.972679048549097, 36.21245179781867, 6.8513075374517225, 6.899998914244993, 136.27943093943702, 21.689049032118078, 11.13576020580989, 14.97490100980706, 44.116459938447264, 46.577986711619204, 39.42293740349617, 7.33057694975077, 88.88876301424601, 45.48100367750794, 27.613892547580317, 28.541066649828966, 11.745015195167495, 36.120716906816945, 16.412695887457517, 55.36757387029907, 73.61238956254016, 47.108427848031376, 67.5535824952179, 12.12866071305723, 59.82734782849177, 6.527562826464857, 32.56477686673112, 15.019083750129804, 24.366475952336877, 5.219983398404395, 13.579077654393462, 19.96365968116063, 30.066418873594507, 8.275982817196304, 23.68431974978741, 60.24221298093394, 77.59262558464215, 29.334100253711892, 29.47892271820976, 23.90147926087862, 8.5120711906353, 51.953880061652065, 9.02449575448467, 91.2991803415315, 63.65802018432415, 34.89253262394753, 15.635591298575536, 97.90295534012559, 73.14657736351286, 19.509564468558043, 35.110904480428026, 46.40526141258765, 28.441570301622306, 12.029464404949534, 53.53293274200096, 13.631513136263647, 108.27792210979091, 38.07852652958283, 116.5942202287853, 58.14480725439951, 96.55796874149513, 25.826013766740594, 15.77798662805574, 47.48369100604255, 11.75894945329281, 8.284872310473656, 35.895244971470134, 8.638340090561467, 14.27503267503639, 61.04948443686321, 50.51985279291098, 67.8955053308755, 138.058211639402, 29.518524046391338, 8.359257822711264, 35.467496854602985, 26.504781724605504, 21.40706550168733, 46.54685416683389, 85.75174278847659, 6.3822170944962044, 40.29132621077197, 94.18975911183585, 5.150143510126908, 16.024232140686824, 73.88061642756709, 15.529347793218955, 58.27386211721383, 5.505716426079441, 23.171671251042426, 17.341388783088483, 8.310841036385897, 64.88416137308882, 30.98557638737755, 5.36012379501956, 31.57955983542375, 72.92736955043048, 22.844513231142546, 10.79044175769624, 22.91176416878985, 6.662102547337313, 30.927305211102325, 51.02682144159679, 6.219602471691321, 9.081651723276119, 38.30082305409556, 11.99107740607198, 95.49356169142332, 33.13152559578897, 42.73866091910159, 26.366971926422167, 115.82818318867277, 200.71288202590205, 15.497206246151073, 11.964381652727546, 65.99288156625549, 62.7190030352223, 109.37161422536606, 31.615441835536764, 14.016579915810446, 100.48031904485902, 17.429066477680756, 8.256941925769613, 92.9409688581745, 5.662319052840454, 45.55438287790541, 64.62591556305817, 30.448169932274844, 23.59052944611899, 90.0838438003054, 25.32336850675504, 14.167023410530927, 18.918476270523147, 42.601682086339245, 36.1413531351954, 10.55471456674472, 62.150103060971716, 24.961351683156316, 61.671736946836745, 27.58753155778315, 14.656852265179955, 47.37223821309941, 104.49845348494654, 14.06986245904592, 13.903577623703876, 34.979416079426, 5.533799071147074, 26.004843518867023, 25.070740299588422, 32.7408513869136, 43.87619338041081, 7.4286921815561975, 18.4490683937512, 84.21945201005981, 8.396408036950424, 32.09497492147141, 5.737739770208052, 38.892794706545025, 44.83945492883666, 25.160667718100527, 28.970260348992067, 25.05064522580656, 10.826124206832912, 86.66985597963418, 19.91194361658146, 11.610858675669524, 61.95955805762769, 7.4575368597034695, 36.496848303770115, 5.601532861930833, 57.55291820524576, 25.72937125017248, 6.215712329327298, 29.21633999093476, 48.31797266861813, 36.76075540300552, 33.104954403607444, 82.88150712289519, 7.0306438809779115, 14.348799149337125, 20.396958750512933, 75.91048114450204, 17.003958539114247, 26.933615484113215, 40.38822619010619, 15.982435910439074, 29.941748901577792, 24.494654658217478, 10.269787649130839, 7.297669629305622, 51.73218636247391, 25.658731917280665, 65.98413115239593, 13.478243697664402, 87.61061212866191, 97.85605650870723, 17.795158355950935, 83.62123745564948, 72.19497386481883, 84.77119644472504, 10.592886168312223, 27.13023852718353, 166.1696339342618, 19.02371106847107, 25.842440619665577, 23.16559529145139, 21.54867762768061, 88.73526979335136, 34.98499286924846, 13.244468452883574, 117.32620916200219, 14.325046921635224, 9.503942225123314, 38.56313125851259, 29.601925723069186, 7.233097952453789, 21.687408595619686, 54.66838103973775, 18.71940054575901, 12.94675172082004, 6.267572423165175, 5.3930546946634985, 50.390890138407116, 88.70889034097675, 114.52463347886155, 45.71216151340211, 5.915469266987442, 8.295601162307095, 73.4179597284567, 27.66608581550308, 20.748774160302624, 15.966481695666012, 11.812759540507217, 45.20955535818567, 25.22857670154898, 13.335302779864705, 20.089846015993952, 22.171341667351513, 40.75830247311902, 37.11880450610374, 8.075972632838534, 96.5738983990893, 7.7109073850105485, 45.388609835252986, 161.80090995242983, 21.32395570479221, 18.77662218205628, 40.858349697463055, 44.116608695319044, 45.61759491799721, 26.703493657260466, 85.78810133823403, 46.384443574899144, 41.70745879121883, 34.63865925554468, 7.7020044451523475, 34.227661590116874, 5.897232576585592, 28.9631707632188, 67.10404489714924, 15.005629481696747, 8.423763215415962, 85.90018302876194, 24.413433483184455, 26.58979883394303, 6.58846281048474, 6.049480538011225, 112.64117382503942, 27.73760767435018, 59.217151164013984, 83.63339646717924, 24.52662722693075, 62.59290713025769, 45.87431543403871, 122.98706998252491, 18.858386757360158, 10.055005764471096, 42.06935100158053, 72.85116953857461, 183.59222762476185, 8.50249870643999, 53.5658016176822, 42.332722686038636, 6.60886746676785, 25.307880758326178, 50.36925979671897, 32.748145170340266, 68.87276474021813, 42.605018111212054, 48.85411455480125, 17.113464426308088, 31.951564584607574, 19.595812021207315, 6.0577771827327425, 76.07926710585083, 40.38619794544072, 6.249349022725681, 15.334219349056143, 47.265424879560975, 37.44861260913673, 86.50058773754097, 48.713538945784606, 66.67969868573896, 55.06495258143686, 15.040033689422243, 44.428912314040346, 5.034574052102654, 22.80631832673341, 67.06591133862308, 22.206826394563272, 89.45329313939482, 5.21588816065406, 47.86098021504703, 26.28326149800933, 13.127948228049881, 46.70834273919979, 64.2413426046279, 16.26535582710559, 8.934442054551242, 10.163062180353991, 9.886897251238668, 110.34920749310136, 19.687362800368653, 26.832970718433888, 126.42653493353795, 80.64727877462124, 16.15072165091419, 16.453770760660507, 81.4327356074956, 10.95690770028614, 20.537266978208514, 65.2458571062812, 14.968711747427534, 56.12495228063513, 17.0708016496409, 21.550240784328178, 93.15376511422362, 48.33906394384766, 6.975635722894783, 6.05132215907451, 24.934603755337818, 40.01407501195578, 26.109166276189413, 22.90941831358904, 13.84728481181196, 8.406369663311361, 15.038294056479595, 87.20453776565341, 18.45798352948893, 58.95723241149154, 62.3569378278096, 55.85558775268733, 5.518415367339969, 13.937268769743707, 30.901279086985667, 13.967326086862817, 10.691768201226555, 51.42240978145765, 51.101518510178494, 24.48690587048656, 23.72324381922229, 74.81089167905452, 10.393572881840356, 21.945201141744633, 9.075005543568754, 44.876622759468724, 14.465654202035957, 5.4844321849573925, 8.094905571997982, 31.508044844063207, 44.65140679436914, 45.517719191166655, 56.25406832794962, 66.2745002989223, 20.925372130069444, 67.42908938834675, 52.19715314577754, 6.866701518888209, 120.41153553178489, 114.10257512931267, 71.44357663853798, 88.24939745872737, 60.85185674317725, 22.892063555854683, 16.15502716472352, 29.598418972763575, 5.047925707466442, 37.501441113787585, 81.39066293190461, 35.4825399747364, 79.37291224869206, 21.28491458171611, 77.88846301938372, 74.06826464772517, 5.999268028115797, 11.932405811481647, 9.687262078482334, 164.5943701894426, 64.01375736400797, 53.587409553779324, 6.885262362024801, 5.752900998562998, 124.67049773427753, 56.6723982189778, 50.36929187795789, 49.275829045233486, 36.250060243911484, 8.587665909650255, 49.729495771233516, 35.76290314134064, 21.942888957913606, 92.13955170573311, 21.811452710790498, 90.97139235833242, 94.54404097000722, 30.215044954249294, 106.19665022588, 11.57307495197157, 7.2761957839895395, 95.81263955827164, 68.77406803608623, 30.33636079093422, 36.17613854528376, 35.57225677762093, 13.912500460708332, 23.289442020882177, 7.6072557357872475, 21.899387159422776, 28.11081167864102, 12.170334395138852, 46.05778881728797, 15.70545968430644, 6.060562410026848, 27.17484992965609, 16.871875825174715, 5.937628142470254, 80.26375463084945, 22.15433332050579, 90.09280925690501, 19.81217785836435, 29.722907209835867, 25.693458688909075, 111.3566454305482, 37.0279577750739, 36.11459796191064, 50.23221089720667, 78.61827046321822, 58.688447101644336, 11.903558809817682, 208.1972438414433, 10.504215450496872, 21.860384542495158, 6.829120687081926, 40.30950640493761, 10.429914747518186, 7.204971491867822, 25.014070375013553, 63.538932338979905, 7.791668649620158, 9.913783055007675, 92.81619193143935, 90.52770640900937, 61.93039749196791, 28.500706430520747, 12.954324442757803, 20.411352895083073, 5.3962621858491575, 7.547309852982043, 9.230369743195789, 5.520021982435435, 46.40965481392806, 29.11052318426639, 46.94512202358462, 6.6585426173497435, 82.27921298604852, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6277221.787742465, 6391463.004687083, 6846879.6875, 7362604.905150023, 8676048.838767424, 9063234.375, 9092054.6875, 9095895.43442144, 9106034.430703824, 9241007.8125, 9247712.165749675, 9248322.498040916, 9248560.9375, 9250120.759193351, 9259756.736315941, 9264578.564392272, 9287990.430602912, 9309424.621586887, 9327838.739486547, 9333736.607926149, 9334445.199464345, 9376735.80734474, 9437583.607077962, 9439176.118791785, 9439429.95654742, 9439710.9375, 9440172.721640727, 9440206.15222104, 9440232.307914393, 9441478.125, 9441820.3125, 9443342.1875, 9443747.321081104, 9444492.541734131, 9444510.891623605, 9444537.67709338, 9447028.004994387, 9448245.729239628, 9451585.185457915, 9459370.3125, 9486038.610685745, 9502533.055381294, 9503303.023859875, 9529118.941783108, 9529279.192819854, 9529492.960830815, 9529818.034099352, 9529911.627503837, 9530474.080630872, 9530581.406867579, 9530823.626326887, 9530994.593888883, 9531306.25, 9531871.478315493, 9532530.706011783, 9534136.266271198, 9534255.17237099, 9537870.352375928, 9539622.073794983, 9539636.640258044, 9539785.465762781, 9539816.42320282, 9540028.50339171, 9540145.699324962, 9540274.962781454, 9540592.812730193, 9541243.15805536, 9541877.95595121, 9542632.8125, 9542646.626314279, 9542760.9375, 9542801.109984506, 9543278.307205904, 9543640.196708843, 9543654.938032586, 9544080.82828392, 9544134.308087315, 9544234.475297613, 9544286.997100309, 9544325.75612753, 9544530.677663682, 9545198.519160366, 9545610.504528204, 9545732.468053943, 9545829.6875, 9546208.198980942, 9546454.609597439, 9546766.28731453, 9546963.815438705, 9548397.051886106, 9548939.0625, 9549192.060347468, 9550042.155470798, 9550054.721298875, 9550742.569382893, 9551474.21236955, 9556443.396248994, 9556518.050848812, 9558035.9375, 9569213.622509282, 9569679.227608262, 9570165.453144724, 9570275.538231337, 9570518.75, 9570538.196240691, 9570843.75, 9570955.064142555, 9574043.75, 9574066.811879337, 9574915.002635267, 9575221.404728493, 9575516.990451166, 9576023.4375, 9576063.489832118, 9576126.5625, 9576171.875, 9576310.452784263, 9576436.952605851, 9576473.620699316, 9576591.324858362, 9576643.701531485, 9576678.125, 9576785.105030442, 9576868.75, 9576884.340316884, 9576891.909865862, 9576987.5, 9577019.755609134, 9577154.6875, 9577155.671488145, 9577176.349589443, 9577334.626287652, 9577363.48680599, 9577370.142379656, 9577670.3125, 9577671.787591822, 9577685.56080348, 9577689.0625, 9577737.5, 9577906.25, 9578032.8125, 9578050.45615474, 9578127.648882143, 9578239.260974186, 9578281.17881009, 9578284.345670553, 9578558.857163498, 9578659.071055299, 9578747.354932725, 9579028.125, 9579048.722324241, 9579192.1875, 9579416.128829166, 9579632.882128177, 9579826.5625, 9580066.158676589, 9580408.584498392, 9580732.8125, 9580891.31438417, 9581029.6875, 9581102.08891076, 9581128.125, 9581259.890746236, 9581299.647613319, 9581454.687389027, 9581551.682481823, 9581795.140144223, 9581982.212574335, 9581998.4375, 9582123.04267938, 9582130.745827215, 9582611.978605973, 9582758.02758035, 9582911.696423113, 9583017.173267804, 9583150.0, 9583437.402402863, 9583809.978190446, 9583933.545536501, 9584054.6875, 9584959.015036715, 9585290.625, 9585351.5625, 9585418.172197692, 9585620.3125, 9586187.609998094, 9586377.545160415, 9586632.215341149, 9586766.336336367, 9586838.218800541, 9586926.074896209, 9587134.776704978, 9587181.25, 9588209.375, 9588385.186965639, 9588406.473775357, 9588430.689741537, 9589061.913713712, 9589142.931975761, 9589540.637338866, 9590145.277266216, 9590307.663540458, 9590450.762306912, 9590475.0, 9590652.522658125, 9590865.672651805, 9590925.0, 9591263.963869259, 9591464.81710041, 9591610.9375, 9591662.5, 9591663.502832286, 9591886.630053772, 9591938.599644681, 9591947.981998472, 9591994.961465763, 9592152.435051896, 9592171.680875046, 9592229.056885201, 9592443.834236953, 9592447.212751955, 9592922.676686095, 9593260.704588154, 9593394.791964281, 9593857.272582239, 9594032.8125, 9594885.663505163, 9595157.808581771, 9595190.625, 9595201.019142738, 9595202.531776726, 9595298.4375, 9595339.9837532, 9595357.450685734, 9595416.053015737, 9595522.215419717, 9595866.818442443, 9596160.9375, 9596268.75, 9596313.031910276, 9596321.111098018, 9596342.1875, 9596832.066303292, 9597096.322074424, 9597542.1875, 9597614.19423978, 9597963.785828577, 9598364.0625, 9598383.1810298, 9598957.768663986, 9598984.581533132, 9599761.81121517, 9599832.451851442, 9602555.457850417, 9602970.096491944, 9603235.9375, 9615993.75, 9616133.846481072, 9622045.3125, 9639635.153902339, 9757865.521609195, 9770382.627409948, 9780913.933305934, 9884237.461670427, 9890307.36764015, 9895736.337656194, 9896012.2792327, 9910045.659492627, 9910736.381866982, 9911287.393374262, 9972477.010023423, 10199678.812404545, 10200060.277354922, 10200271.875, 10281823.4375, 10294386.63133132, 10306403.345164908, 10475704.775957925, 10507557.307044346, 10517091.919844247, 10537685.643184286, 10541169.367515182, 10544118.270898776, 10547020.3125, 10547067.35267776, 10589457.099965803, 10591954.6875, 10593757.8125, 10605188.809549643, 10607699.304205397, 10613626.872053245, 10614965.625, 10615002.135377217, 10617459.31053402, 10626560.010219896, 10628248.4375, 10644670.313460957, 10645423.594677951, 10648759.375, 10657792.1875, 10710827.953222906, 10716308.466614671, 10716524.52853801, 10731651.771241955, 10740142.964468054, 10741533.56507576, 10743663.937359452, 10747082.8125, 10749062.016572587, 10749388.214525469, 10752351.5625, 10756528.31468354, 10758053.125, 10758184.968250735, 10758323.4375, 10758489.17043113, 10758640.2607984, 10759913.159009948, 10760483.85889592, 10760942.047798686, 10761876.5625, 10762423.946149938, 10762450.90394356, 10762953.039715752, 10763004.6875, 10763115.799437856, 10763759.740215434, 10763890.55432219, 10764045.967066128, 10764412.5, 10764466.414578995, 10764560.296107532, 10765060.182564326, 10765078.68040703, 10765644.541284619, 10767022.937474921, 10767441.221465657, 10767648.71871104, 10769673.4375, 10770325.62109252, 10770701.116566503, 10771918.68454071, 10772830.147917686, 10775158.58209416, 10775226.222457286, 10775742.908796847, 10777930.84544145, 10779712.933219584, 10780168.622475032, 10780225.0, 10780242.44170174, 10781043.514469413, 10781148.626269246, 10782971.063874666, 10783143.75, 10786449.989487866, 10786451.661423838, 10786569.102400042, 10786955.098124838, 10787843.427188186, 10788099.512155512, 10788187.5, 10788347.150408687, 10788492.705346093, 10789215.625, 10792614.812615313, 10792639.759843878, 10793826.415907774, 10794173.338986132, 10794236.176621567, 10794393.75, 10795488.034648703, 10795492.421979085, 10795498.765943345, 10797607.554638172, 10798050.694681535, 10798299.570340132, 10798501.5625, 10798503.042007755, 10800364.486054437, 10802173.176049035, 10803207.8125, 10814116.562327975, 10836497.862412937, 10837179.72677715, 10860834.113422578, 10890913.996058175, 10892877.370792534, 10918063.375435391, 10930195.967381818, 10941432.877039038, 10941910.961299015, 10949260.719691165, 10952015.797997907, 10953250.0, 10953616.53217739, 10959382.8125, 10959732.737799453, 10961512.5, 10975663.497988004, 10976010.800283786, 10978096.802317971, 10988330.598611964, 10991980.733603906, 10993797.83310094, 11001651.5625, 11006834.364916068, 11008368.05231465, 11009514.001018057, 11009609.195215138, 11009735.570665443, 11040850.856494403, 11041924.497336354, 11042612.981051719, 11043357.703748072, 11043362.824424595, 11044306.408530615, 11048600.261870718, 11059042.29024835, 11065721.875, 11066937.428571207, 11069748.31511704, 11070098.4375, 11071884.375, 11075193.127622427, 11075994.059010917, 11076221.875, 11077015.052912064, 11078197.629515553, 11078932.8125, 11079121.537590474, 11086485.839977313, 11091807.66576464, 11096891.77602517, 11097520.395123044, 11097962.08731469, 11098233.670340283, 11102389.89257148, 11106127.176540712, 11107757.8125, 11108524.719475076, 11109046.06566283, 11109279.45890338, 11109818.864695534, 11110187.719728664, 11110503.125, 11111580.577768233, 11111645.228323838, 11111893.057296526, 11115347.232321264, 11116340.281327406, 11116468.664541429, 11116917.668546127, 11116924.374510799, 11117373.077008082, 11117377.542229217, 11117439.358851112, 11117440.625, 11117773.135188628, 11117901.848102953, 11117904.26396833, 11118629.84837971, 11118851.5625, 11118960.9375, 11119462.797471045, 11119635.875818005, 11119664.204801025, 11119724.392466465, 11119732.072761498, 11119933.418144045, 11120016.83345582, 11120318.293504942, 11120522.805909326, 11120564.352118632, 11120639.01591521, 11120937.06929135, 11121018.265003279, 11121181.637923434, 11123980.426036771, 11124619.888978431, 11124958.732438773, 11124959.375, 11125119.880884593, 11125342.890829057, 11125514.0625, 11125870.3125, 11126302.710244227, 11126331.043002807, 11126335.9375, 11126387.5, 11126601.5625, 11126607.840946745, 11126747.505919343, 11126964.0625, 11126982.8125, 11127147.809745789, 11127482.063344322, 11131035.495855546, 11135981.651377331, 11142103.125, 11146235.605028702, 11147400.822205521, 11149732.688810451, 11151617.972825624, 11151641.250715455, 11152363.309162728, 11154451.5625, 11155533.486658365, 11155773.4375, 11155774.524727609, 11157015.625, 11157555.078480372, 11157607.8125, 11157651.5625, 11157736.507651398, 11158046.54356711, 11158742.1875, 11158914.0625, 11159152.639770074, 11159336.257294184, 11159409.993017688, 11159484.375, 11159628.899691924, 11160234.375, 11160325.976093618, 11160640.1770821, 11161232.484458812, 11161372.299437575, 11161495.959783927, 11161846.875, 11161897.74493181, 11161985.942646215, 11162032.821233178, 11164118.75, 11164165.625, 11164678.125, 11165556.989983847, 11167236.619333679, 11167650.0, 11168084.327240258, 11168093.405780971, 11169070.674527664, 11169679.028784845, 11170798.776460974, 11170885.9375, 11170892.1875, 11171309.375, 11171454.6875, 11172050.558119604, 11172062.5, 11173865.878408995, 11174130.765183479, 11175048.457704742, 11181148.702146279, 11181416.262872856, 11182168.819869906, 11183280.581675489, 11184011.933788972, 11185429.667411754, 11186037.194782218, 11188565.625, 11189175.0, 11192237.75366361, 11193690.737453748, 11194470.024209782, 11194864.46588522, 11195553.125, 11197229.300773466, 11200537.08212389, 11201444.276983643, 11201785.860003468, 11205034.50886612, 11205465.625, 11205998.275902832, 11206830.52516628, 11206843.75, 11215217.1875, 11219335.232663013, 11221578.63429229, 11225350.0, 11227874.607869256, 11231215.625, 11232326.5625, 11232393.75, 11234463.84541982, 11236596.875, 11241523.284276096, 11242622.881416574, 11243426.5625, 11243566.35991638, 11243648.4342744, 11244276.5625, 11245386.548297308, 11246017.000916202, 11246348.390695915, 11246389.0625, 11246417.1875, 11246514.0625, 11247654.6875, 11248443.884956768, 11248967.04403995, 11249618.638818773, 11250149.491331957, 11250204.6875, 11253923.4375, 11254986.796688594, 11255866.785493104, 11257025.0, 11257419.646845296, 11257701.189738585, 11259038.781502128, 11259040.771126546, 11260265.776456937, 11260608.79798266, 11261602.323226186, 11261852.421464562, 11262375.045602914, 11263168.75, 11264596.861008419, 11265347.39675048, 11267116.98932565, 11270081.25, 11272313.688080909, 11272652.897952877, 11273918.381352961, 11274580.71992507, 11274695.057764737, 11275801.5625, 11275837.113758558, 11278170.00158488, 11278211.216667706, 11278454.264150694, 11280730.89082027, 11282615.625, 11283231.565793633, 11285421.755492475, 11286126.512955459, 11287265.625, 11287388.932355117, 11287400.476566732, 11287575.0, 11287631.25, 11287740.598837629, 11288022.595753735, 11288057.546647498, 11289375.0, 11290540.639099658, 11291779.631035421, 11292203.57244769, 11292646.153340543, 11293335.333013179, 11294618.75, 11294777.082517315, 11295123.124853201, 11296945.3125, 11298012.238233581, 11298012.2807962, 11306649.19633692, 11307721.875, 11308511.183652442, 11309101.162138378, 11309433.395065574, 11309631.589248322, 11309967.271934925, 11314024.298867472, 11316632.735756963, 11319853.884689681, 11320333.63224824, 11320773.18833398, 11320905.948143512, 11321015.625, 11323387.514796037, 11323645.26056022, 11323843.546759171, 11326640.625, 11329862.314477304, 11339540.115167486, 11340193.997548636, 11344705.723551745, 11344925.202073047, 11345510.9375, 11346006.726045555, 11346385.9375, 11346826.628155166, 11348798.240404764, 11348890.171107734, 11353832.096091291, 11355071.673090626, 11355997.061267577, 11357941.51290602, 11358797.16357558, 11362296.875, 11362327.703353392, 11363072.600850964, 11363631.021611415, 11363912.5, 11364913.90307312, 11365033.956325142, 11365482.670514947, 11365690.625, 11366305.076045843, 11366723.4375, 11367011.03111038, 11367541.830408959, 11370427.960290035, 11370800.945117442, 11370822.57558439, 11372186.390508218, 11373849.914078677, 11374279.6875, 11374520.561189605, 11376281.25, 11376566.865840925, 11378374.371768132, 11380531.880471349, 11380686.81927555, 11394301.398503581, 11396152.68851999, 11398424.554646468, 11405888.118182411, 11409998.4375, 11412572.464944758, 11413286.462055815, 11413718.285765275, 11414093.856482271, 11414199.628589597, 11414444.745912088, 11417243.50852837, 11417541.398335615, 11420934.222824907, 11424601.21526743, 11430267.45512283, 11446848.4375, 11448645.67768269, 11448724.469940957, 11448859.150965309, 11449146.255396828, 11449447.072240729, 11450630.99360041, 11450901.88315113, 11451951.970851492, 11451973.146425791, 11452095.930202495, 11452452.293329014, 11452855.605408324, 11453301.56546007, 11453538.920013294, 11453764.0625, 11454775.79352443, 11455364.0625, 11455431.567562424, 11455523.158475997, 11455528.142025312, 11455756.25, 11456040.360289764, 11456094.734500926, 11456195.55771388, 11456244.148116753, 11456257.8125, 11456434.182510568, 11456446.37837642, 11456494.659300135, 11456690.031791745, 11457604.6875, 11457629.6875, 11457727.704314664, 11457866.165302314, 11457876.850692553, 11458017.1875, 11458258.496695602, 11458469.795375232, 11458556.988958593, 11458739.05045455, 11459221.875, 11459245.3125, 11459376.46314407, 11459672.519894084, 11459718.75, 11459735.335031763, 11459919.739117313, 11459970.577561934, 11460000.232522447, 11461352.627647776, 11461374.753093973, 11461543.75, 11461557.829221549, 11461701.813213496, 11462687.5, 11466596.625167323, 11467035.34300792, 11471008.430064285, 11472688.682763379, 11473376.502434487, 11480859.33394188, 11481088.771113059, 11481748.042428426, 11482895.619659465, 11483551.5625, 11484990.625, 11484998.4375, 11488551.511544121, 11489172.622486485, 11491004.6875, 11491118.75, 11491754.73911298, 11491836.324648546, 11492014.097462567, 11494151.5625, 11495402.297709927, 11495663.875351464, 11497245.3125, 11498204.504963065, 11498209.375, 11498556.25, 11501965.186176738, 11502261.410472078, 11505953.125, 11506258.378561387, 11507163.76578113, 11507664.0625, 11509178.80211299, 11509212.35740466, 11509721.974352993, 11512349.607710654, 11518343.219773691, 11520758.52558023, 11520848.4375, 11524762.5, 11531498.4375, 11537989.088111063, 11548547.241245985, 11548637.082274195, 11550534.052387027, 11552246.875, 11556152.693690134, 11579267.1875, 11581433.294878624, 11591257.8125, 11591927.072064554, 11591929.113539102, 11593395.55620036, 11593868.75, 11593906.558781225, 11594318.240002494, 11595241.468177237, 11599280.278708791, 11599721.013655134, 11599978.281876473, 11600110.845736811, 11602398.726736467, 11605379.516824858, 11605558.097279975, 11609649.862343354, 11611623.141915683, 11611728.012908995, 11612000.961029105, 11612614.0625, 11614623.44461859, 11615586.413941989, 11617542.652735114, 11619676.183978176, 11620321.875, 11620857.663337754, 11620930.6646447, 11629577.76376034, 11630148.564319119, 11630514.0625, 11630515.48963315, 11632319.4305779, 11632417.064364731, 11633237.719861588, 11633500.02516294, 11633567.1875, 11634181.440730942, 11634387.5, 11634613.982857699, 11634723.087537771, 11634734.06908295, 11634809.478891043, 11635087.003919162, 11635605.968558468, 11635707.51446928, 11635718.486152532, 11636893.267880842, 11637184.669902215, 11637235.68378934, 11639053.119411081, 11641040.098399006, 11641327.669157375, 11641801.242863383, 11641871.875, 11642017.056788754, 11642900.51765114, 11643082.431562057, 11644436.761240032, 11644958.262864284, 11645384.375, 11645545.3125, 11645824.962025212, 11645934.270209571, 11646278.125, 11646856.25, 11646937.995818503, 11647061.677032128, 11647067.1875, 11650717.134049151, 11651053.125, 11653637.5, 11653677.673290566, 11653765.910689848, 11655243.75, 11655308.187802304, 11655925.0, 11656289.0625, 11656335.839780657, 11656593.75, 11656908.853874024, 11656999.289791606, 11657069.319882698, 11657388.162649447, 11657745.772782879, 11658426.955368642, 11658787.213665541, 11661166.265167218, 11662791.923693474, 11663891.205737453, 11664144.451414537, 11664477.634683916, 11665249.557071632, 11667037.639056046, 11668478.125, 11669732.543654257, 11669798.966538893, 11670839.435342507, 11671587.348257143, 11671931.475812668, 11673556.25, 11673832.26512512, 11675470.3125, 11675612.084844373, 11675710.53639746, 11675989.298394253, 11676095.252238423, 11676161.49518646, 11676757.716760335, 11676929.6875, 11676942.1875, 11676948.4375, 11677027.7707494, 11680013.763517343, 11680284.211331163, 11680631.261095677, 11683269.852286167, 11685904.666235715, 11688438.078263741, 11691389.769516693, 11696279.47367543, 11698448.168471502, 11700282.027181987, 11701426.990964334, 11705215.604567835, 11708821.875, 11709774.5638256, 11710123.4375, 11711538.375693167, 11711932.6569417, 11712151.400753776, 11712479.6875, 11712798.4375, 11713135.354373017, 11713185.9375, 11713880.289799778, 11713900.587074941, 11714264.507974325, 11714718.75, 11715166.74828674, 11715452.661046837, 11715939.382507524, 11716266.683571683, 11718688.564952537, 11719108.12097286, 11721294.538777009, 11721460.9375, 11723153.617572479, 11725116.241835332, 11725812.5, 11725965.625, 11726303.125, 11726407.81126175, 11728460.295919659, 11732771.259262597, 11732853.06702152, 11737471.717674416, 11739495.190545745, 11739787.22796685, 11744418.793613264, 11744623.4375, 11752440.514314413, 11752638.512974903, 11752668.385296782, ...], [6.473499292430521, 5.984595725811094, 49.06010847417309, 11.485848328133224, 9.695424079818281, 64.47661360870147, 39.921487909858236, 6.7880938131861805, 81.92218586719639, 34.150545212573284, 36.754501295898606, 141.0732713635669, 50.91936988193878, 59.88716717442819, 11.983654879680417, 5.554792542432959, 25.20039615029008, 20.393275248224974, 68.31669989308361, 66.62659029989193, 14.527490196353481, 68.87134433810724, 21.820866290043917, 13.482906084031137, 153.62198278211343, 44.287386136898625, 54.05566817734694, 17.39167925377742, 13.313504656946307, 69.14660315322219, 81.77129425131754, 65.84374881421341, 18.00503976435016, 16.4886565062409, 27.648527682828206, 79.09563952568891, 35.38137263463564, 25.217643090399328, 6.17663965157355, 38.49523771137997, 53.05103014400137, 53.13574210139033, 82.83236785075952, 9.499007903674782, 21.54633326871213, 7.909127823652646, 5.3717933417636266, 7.315468230043261, 23.98673947852895, 22.386929733781496, 9.496339069563223, 19.55827074976529, 29.570717854031784, 47.798517140630935, 21.065237473208107, 9.62578118360425, 11.980792210516528, 6.77149368553522, 8.394577632855063, 26.531200419434263, 10.462567458186946, 12.65613917114186, 16.610774227392163, 33.43804393685102, 66.68214662325394, 7.846190182785158, 6.650816319658677, 5.285893864649197, 79.0222337457896, 24.429113733758296, 62.958333148541044, 144.54029295634933, 11.424972410141685, 15.877189340935413, 21.153714287372136, 46.737531308408236, 14.692458951381997, 5.205984749381753, 99.99941792166476, 45.86503363164269, 42.872085222630034, 32.77768744746533, 22.18885781080575, 23.199135531414385, 46.80093770933431, 16.652216055241016, 35.01048657666342, 9.96214390502078, 81.05372362064665, 42.38515502877216, 156.32262586284827, 26.241938535391586, 27.90638007036391, 5.81648533347902, 7.747455645373549, 19.034933618369017, 23.087599249752824, 84.49872733231655, 34.109645262818816, 22.113366897740555, 6.417337334516956, 14.324582443112407, 17.485018721649737, 58.359418991371776, 73.01960599337777, 38.91046989221712, 80.23575603777527, 65.40132521259089, 8.097452909025195, 6.966927937865334, 79.67061548568115, 56.16353768236358, 54.913913108289705, 6.030504810143336, 80.60688235548538, 54.98734957339816, 21.646936013907133, 21.032997229988766, 15.688995916224524, 12.43166802060835, 36.41588643629259, 122.82218751792185, 14.035396924024132, 54.064005602796826, 87.09270349468717, 15.766366707078706, 69.62545423064782, 42.854234928808495, 50.781271527288574, 8.885869979816238, 24.930806621601704, 32.44181358409839, 100.76978686472117, 94.70208948231773, 36.7932549855745, 31.422062867298887, 67.6172056055748, 87.18551775306139, 58.38968319240633, 58.84588741892327, 50.877940262162134, 22.214623573458056, 6.672035598822655, 84.1133712173925, 14.676936189142703, 84.21854419583116, 35.364232447576086, 10.683683222035803, 17.152091491972445, 90.36144080969544, 42.591744023595325, 51.875785952466714, 84.61369949187427, 8.32374431004867, 90.59008633071625, 6.87494270747701, 62.35443953077633, 70.4274080117351, 5.866812633043784, 51.68114382645364, 30.964409428350464, 30.788401973895812, 9.80921092567685, 47.70094033445204, 33.08471985349024, 20.742082487369057, 25.530706764277298, 37.30614500156741, 49.092618871557605, 45.369800820056994, 95.60029935870651, 22.807546318690065, 6.807219023238776, 57.45712068760383, 28.246280641112875, 33.61108589689103, 14.58212106116749, 26.585562589841206, 5.314280314579857, 60.39881443744823, 30.09658719087715, 60.215598822469644, 95.45549550629548, 27.98693975533037, 51.58640460023616, 5.949042409962223, 64.44197866862126, 7.99416578083492, 10.015219917391441, 25.198857336193072, 97.63423109455026, 16.730973852535005, 49.572270371986406, 69.92770338459243, 12.688549622348265, 15.619667985947267, 59.60226746353611, 10.32025851531744, 65.68976504923958, 31.515517654513957, 17.50903797721871, 25.892960658175365, 18.943524749435845, 49.18750760872689, 27.540245785559847, 86.46719256030212, 67.54923536567696, 98.1377241109115, 16.920386562659324, 42.885795692478155, 79.02587418740434, 13.165547781938454, 24.49438619980326, 20.814440920631537, 21.94878619800444, 7.032134722646197, 24.193213767948663, 38.10337270412689, 6.190682120642535, 9.403660636687041, 16.406723407749876, 6.175633466359989, 34.9804161338972, 10.401123838060837, 13.218034241480531, 31.453003329479156, 97.77025857321165, 14.92659597126731, 82.69355318589778, 21.071223702742994, 20.61096314843879, 58.560332047297834, 5.434900558011297, 22.99200809669819, 60.25856468108625, 6.833426558023051, 9.037693401664423, 109.65074346162771, 87.14746927687932, 17.44808716084072, 7.9200915999835155, 37.62141519419538, 19.34469574729865, 63.41027190571024, 62.74912787094436, 15.46859620086165, 20.722673812816982, 128.69651585011613, 6.546456101518427, 5.810743880183683, 15.791835821682547, 7.953086975224859, 72.09117272965128, 19.00191983057937, 24.88638032400771, 96.99970358166584, 107.10858984652917, 29.125469626170705, 48.029104050286286, 18.930974731572903, 31.671680442179998, 10.850219973336772, 26.208789182165493, 27.78835543281446, 22.061371686308394, 7.230769348966327, 127.40575743745929, 13.45143934531183, 64.57524373974593, 26.580912494568878, 16.974201222530024, 45.06828720620073, 20.031649356763573, 36.631668322067156, 87.02781948282752, 7.31661986740939, 27.023854463860772, 23.257566384202267, 8.036224280272993, 89.16314984862467, 31.597593744828703, 103.83406621200518, 7.438683343230503, 49.31424166909685, 11.396093423430015, 82.14586379140934, 71.02906225189284, 38.36641667827913, 64.30311561292726, 5.186050342235851, 7.205272812364941, 83.98615776188879, 39.28683326784473, 7.58008667234767, 32.94984568686553, 68.96471945782555, 43.015831568017155, 5.7168347874542125, 59.9406446555834, 28.879383511096865, 25.539519866066765, 109.06361781159765, 13.404890419454523, 9.514371612908718, 7.341856130076682, 29.207325119005652, 5.928581121416207, 51.54057116036625, 21.660029139747444, 63.85820389138456, 41.46642513665228, 35.07514039017536, 65.40083104218787, 6.584291432865736, 44.74373012235409, 15.369494271819695, 8.10293509970815, 20.42300732097042, 10.406652914900288, 14.434490497159162, 63.42329288005122, 17.31395394010124, 12.911807213084128, 26.944645620495983, 63.406652192503486, 18.1948144818232, 11.750949622426802, 24.829750455201474, 7.858480210143667, 41.074954519736515, 93.45561560010233, 6.641874536587993, 46.23906697028491, 17.58642856284807, 22.710081585677642, 32.80677786887494, 9.892391280406999, 7.197389027704296, 46.48894142867114, 36.02188107279267, 22.04994760911009, 27.29335347129352, 148.56468696462417, 45.950436436055604, 23.252381255342524, 10.026126795854859, 32.57848671186806, 5.214601349400989, 26.23588363342916, 58.96881950744511, 55.32144440988371, 5.333915173261479, 20.11798792745307, 8.728353889246204, 55.87316442165933, 14.901592901543882, 23.868321232071185, 107.41028893930701, 6.13186751722125, 8.122940627061464, 44.494626283702516, 42.69691954634834, 47.510024379274, 85.30781312336545, 55.301991093968525, 7.3336583443385335, 9.999968372348238, 14.410732954475046, 5.806726864494521, 5.13564576314999, 58.50960837624057, 12.080660516838167, 7.184484068683125, 30.385893325320836, 14.04202240024314, 18.470365581306037, 19.943139016940837, 75.45790923061777, 5.5290661774292085, 79.98036326601559, 134.4741451924736, 70.84985952737775, 20.32915396728006, 20.775400303199973, 15.093359090748649, 49.99539261769254, 77.36789335186963, 6.936368773353408, 7.372304498338696, 85.76493838960099, 6.094836521685878, 11.165111075474535, 79.17514271936454, 6.798542819219909, 47.6458722541527, 6.639367972000058, 84.02968502862305, 7.101952636019721, 39.31992655541987, 20.872824945262828, 26.079495688665094, 55.512453947041024, 28.80895734434884, 8.929862022400263, 13.048935341298337, 89.06550896299456, 14.903212989745258, 12.81538744184351, 27.364611923488596, 25.418212358357746, 22.430867282384007, 5.763525640827766, 34.528559041487, 17.158322982677024, 26.545314897583502, 16.34127639687298, 11.384883907704538, 11.563280053293024, 8.341670172058715, 67.45794171883449, 9.271727662210294, 44.077577818667265, 47.55616629723161, 80.70675244844907, 68.51806130022672, 11.647692482886702, 34.110613442372504, 8.890380465735433, 5.872000106578185, 31.820278415302496, 23.284365922038994, 87.83994590189268, 61.298702715581115, 47.07725989801594, 30.96541894655025, 102.40035932473877, 35.95228832786466, 8.780408755751035, 20.546025143645785, 48.45400752103117, 12.742899522842052, 6.61201381004405, 10.788255115589262, 21.202115637570504, 8.406295044377417, 63.834732178753335, 54.845136148289534, 26.96385637920284, 26.63191006511539, 90.85493052426332, 7.033948964908772, 26.941626388014296, 57.302392292684516, 36.546732961599446, 32.079280692442644, 20.705329691536363, 5.074325247917391, 65.18682669523133, 13.90216679969861, 16.154615846406976, 12.188912225962909, 24.03338387070941, 76.57957028239032, 58.95388332318845, 42.8984608585216, 6.751254399661679, 76.2272464988236, 10.294585992203006, 5.498224403677244, 17.89222719831497, 13.744386797471849, 98.68449424571632, 47.83786578086845, 27.27859467131212, 115.64594442066586, 13.519911242911956, 10.445749183581597, 66.76755135791115, 12.518490835121867, 13.540499142987672, 12.951856308544604, 58.511709466582175, 31.27945107787206, 18.529153918961416, 59.87127210572237, 48.69293548569094, 22.38780191206675, 47.76184596475113, 62.5071624388639, 67.16873707674795, 47.45709534401573, 7.128949572842117, 21.56630660100265, 90.65043685531651, 51.43650283284073, 20.306803046252806, 19.322141973719322, 10.501082653166366, 9.695531053128166, 33.69843276498551, 23.344641888113273, 10.139032421221387, 10.939723571598588, 33.31282715794624, 70.02265629657389, 82.06562664869872, 79.70872491141316, 18.3327736939277, 54.86238691440704, 18.39256209950634, 47.62853811143847, 8.504753836290517, 57.39026952078811, 71.78027196894585, 6.580342661962245, 8.118756173397779, 69.11794140639921, 53.50443290936769, 21.641715892846666, 74.17214660155642, 12.253898152667084, 48.49219924530949, 12.60135074369186, 36.0459909090002, 20.672383130396433, 27.972679048549097, 36.21245179781867, 6.8513075374517225, 6.899998914244993, 136.27943093943702, 21.689049032118078, 11.13576020580989, 14.97490100980706, 44.116459938447264, 46.577986711619204, 39.42293740349617, 7.33057694975077, 88.88876301424601, 45.48100367750794, 27.613892547580317, 28.541066649828966, 11.745015195167495, 36.120716906816945, 16.412695887457517, 55.36757387029907, 73.61238956254016, 47.108427848031376, 67.5535824952179, 12.12866071305723, 59.82734782849177, 6.527562826464857, 32.56477686673112, 15.019083750129804, 24.366475952336877, 5.219983398404395, 13.579077654393462, 19.96365968116063, 30.066418873594507, 8.275982817196304, 23.68431974978741, 60.24221298093394, 77.59262558464215, 29.334100253711892, 29.47892271820976, 23.90147926087862, 8.5120711906353, 51.953880061652065, 9.02449575448467, 91.2991803415315, 63.65802018432415, 34.89253262394753, 15.635591298575536, 97.90295534012559, 73.14657736351286, 19.509564468558043, 35.110904480428026, 46.40526141258765, 28.441570301622306, 12.029464404949534, 53.53293274200096, 13.631513136263647, 108.27792210979091, 38.07852652958283, 116.5942202287853, 58.14480725439951, 96.55796874149513, 25.826013766740594, 15.77798662805574, 47.48369100604255, 11.75894945329281, 8.284872310473656, 35.895244971470134, 8.638340090561467, 14.27503267503639, 61.04948443686321, 50.51985279291098, 67.8955053308755, 138.058211639402, 29.518524046391338, 8.359257822711264, 35.467496854602985, 26.504781724605504, 21.40706550168733, 46.54685416683389, 85.75174278847659, 6.3822170944962044, 40.29132621077197, 94.18975911183585, 5.150143510126908, 16.024232140686824, 73.88061642756709, 15.529347793218955, 58.27386211721383, 5.505716426079441, 23.171671251042426, 17.341388783088483, 8.310841036385897, 64.88416137308882, 30.98557638737755, 5.36012379501956, 31.57955983542375, 72.92736955043048, 22.844513231142546, 10.79044175769624, 22.91176416878985, 6.662102547337313, 30.927305211102325, 51.02682144159679, 6.219602471691321, 9.081651723276119, 38.30082305409556, 11.99107740607198, 95.49356169142332, 33.13152559578897, 42.73866091910159, 26.366971926422167, 115.82818318867277, 200.71288202590205, 15.497206246151073, 11.964381652727546, 65.99288156625549, 62.7190030352223, 109.37161422536606, 31.615441835536764, 14.016579915810446, 100.48031904485902, 17.429066477680756, 8.256941925769613, 92.9409688581745, 5.662319052840454, 45.55438287790541, 64.62591556305817, 30.448169932274844, 23.59052944611899, 90.0838438003054, 25.32336850675504, 14.167023410530927, 18.918476270523147, 42.601682086339245, 36.1413531351954, 10.55471456674472, 62.150103060971716, 24.961351683156316, 61.671736946836745, 27.58753155778315, 14.656852265179955, 47.37223821309941, 104.49845348494654, 14.06986245904592, 13.903577623703876, 34.979416079426, 5.533799071147074, 26.004843518867023, 25.070740299588422, 32.7408513869136, 43.87619338041081, 7.4286921815561975, 18.4490683937512, 84.21945201005981, 8.396408036950424, 32.09497492147141, 5.737739770208052, 38.892794706545025, 44.83945492883666, 25.160667718100527, 28.970260348992067, 25.05064522580656, 10.826124206832912, 86.66985597963418, 19.91194361658146, 11.610858675669524, 61.95955805762769, 7.4575368597034695, 36.496848303770115, 5.601532861930833, 57.55291820524576, 25.72937125017248, 6.215712329327298, 29.21633999093476, 48.31797266861813, 36.76075540300552, 33.104954403607444, 82.88150712289519, 7.0306438809779115, 14.348799149337125, 20.396958750512933, 75.91048114450204, 17.003958539114247, 26.933615484113215, 40.38822619010619, 15.982435910439074, 29.941748901577792, 24.494654658217478, 10.269787649130839, 7.297669629305622, 51.73218636247391, 25.658731917280665, 65.98413115239593, 13.478243697664402, 87.61061212866191, 97.85605650870723, 17.795158355950935, 83.62123745564948, 72.19497386481883, 84.77119644472504, 10.592886168312223, 27.13023852718353, 166.1696339342618, 19.02371106847107, 25.842440619665577, 23.16559529145139, 21.54867762768061, 88.73526979335136, 34.98499286924846, 13.244468452883574, 117.32620916200219, 14.325046921635224, 9.503942225123314, 38.56313125851259, 29.601925723069186, 7.233097952453789, 21.687408595619686, 54.66838103973775, 18.71940054575901, 12.94675172082004, 6.267572423165175, 5.3930546946634985, 50.390890138407116, 88.70889034097675, 114.52463347886155, 45.71216151340211, 5.915469266987442, 8.295601162307095, 73.4179597284567, 27.66608581550308, 20.748774160302624, 15.966481695666012, 11.812759540507217, 45.20955535818567, 25.22857670154898, 13.335302779864705, 20.089846015993952, 22.171341667351513, 40.75830247311902, 37.11880450610374, 8.075972632838534, 96.5738983990893, 7.7109073850105485, 45.388609835252986, 161.80090995242983, 21.32395570479221, 18.77662218205628, 40.858349697463055, 44.116608695319044, 45.61759491799721, 26.703493657260466, 85.78810133823403, 46.384443574899144, 41.70745879121883, 34.63865925554468, 7.7020044451523475, 34.227661590116874, 5.897232576585592, 28.9631707632188, 67.10404489714924, 15.005629481696747, 8.423763215415962, 85.90018302876194, 24.413433483184455, 26.58979883394303, 6.58846281048474, 6.049480538011225, 112.64117382503942, 27.73760767435018, 59.217151164013984, 83.63339646717924, 24.52662722693075, 62.59290713025769, 45.87431543403871, 122.98706998252491, 18.858386757360158, 10.055005764471096, 42.06935100158053, 72.85116953857461, 183.59222762476185, 8.50249870643999, 53.5658016176822, 42.332722686038636, 6.60886746676785, 25.307880758326178, 50.36925979671897, 32.748145170340266, 68.87276474021813, 42.605018111212054, 48.85411455480125, 17.113464426308088, 31.951564584607574, 19.595812021207315, 6.0577771827327425, 76.07926710585083, 40.38619794544072, 6.249349022725681, 15.334219349056143, 47.265424879560975, 37.44861260913673, 86.50058773754097, 48.713538945784606, 66.67969868573896, 55.06495258143686, 15.040033689422243, 44.428912314040346, 5.034574052102654, 22.80631832673341, 67.06591133862308, 22.206826394563272, 89.45329313939482, 5.21588816065406, 47.86098021504703, 26.28326149800933, 13.127948228049881, 46.70834273919979, 64.2413426046279, 16.26535582710559, 8.934442054551242, 10.163062180353991, 9.886897251238668, 110.34920749310136, 19.687362800368653, 26.832970718433888, 126.42653493353795, 80.64727877462124, 16.15072165091419, 16.453770760660507, 81.4327356074956, 10.95690770028614, 20.537266978208514, 65.2458571062812, 14.968711747427534, 56.12495228063513, 17.0708016496409, 21.550240784328178, 93.15376511422362, 48.33906394384766, 6.975635722894783, 6.05132215907451, 24.934603755337818, 40.01407501195578, 26.109166276189413, 22.90941831358904, 13.84728481181196, 8.406369663311361, 15.038294056479595, 87.20453776565341, 18.45798352948893, 58.95723241149154, 62.3569378278096, 55.85558775268733, 5.518415367339969, 13.937268769743707, 30.901279086985667, 13.967326086862817, 10.691768201226555, 51.42240978145765, 51.101518510178494, 24.48690587048656, 23.72324381922229, 74.81089167905452, 10.393572881840356, 21.945201141744633, 9.075005543568754, 44.876622759468724, 14.465654202035957, 5.4844321849573925, 8.094905571997982, 31.508044844063207, 44.65140679436914, 45.517719191166655, 56.25406832794962, 66.2745002989223, 20.925372130069444, 67.42908938834675, 52.19715314577754, 6.866701518888209, 120.41153553178489, 114.10257512931267, 71.44357663853798, 88.24939745872737, 60.85185674317725, 22.892063555854683, 16.15502716472352, 29.598418972763575, 5.047925707466442, 37.501441113787585, 81.39066293190461, 35.4825399747364, 79.37291224869206, 21.28491458171611, 77.88846301938372, 74.06826464772517, 5.999268028115797, 11.932405811481647, 9.687262078482334, 164.5943701894426, 64.01375736400797, 53.587409553779324, 6.885262362024801, 5.752900998562998, 124.67049773427753, 56.6723982189778, 50.36929187795789, 49.275829045233486, 36.250060243911484, 8.587665909650255, 49.729495771233516, 35.76290314134064, 21.942888957913606, 92.13955170573311, 21.811452710790498, 90.97139235833242, 94.54404097000722, 30.215044954249294, 106.19665022588, 11.57307495197157, 7.2761957839895395, 95.81263955827164, 68.77406803608623, 30.33636079093422, 36.17613854528376, 35.57225677762093, 13.912500460708332, 23.289442020882177, 7.6072557357872475, 21.899387159422776, 28.11081167864102, 12.170334395138852, 46.05778881728797, 15.70545968430644, 6.060562410026848, 27.17484992965609, 16.871875825174715, 5.937628142470254, 80.26375463084945, 22.15433332050579, 90.09280925690501, 19.81217785836435, 29.722907209835867, 25.693458688909075, 111.3566454305482, 37.0279577750739, 36.11459796191064, 50.23221089720667, 78.61827046321822, 58.688447101644336, 11.903558809817682, 208.1972438414433, 10.504215450496872, 21.860384542495158, 6.829120687081926, 40.30950640493761, 10.429914747518186, 7.204971491867822, 25.014070375013553, 63.538932338979905, 7.791668649620158, 9.913783055007675, 92.81619193143935, 90.52770640900937, 61.93039749196791, 28.500706430520747, 12.954324442757803, 20.411352895083073, 5.3962621858491575, 7.547309852982043, 9.230369743195789, 5.520021982435435, 46.40965481392806, 29.11052318426639, 46.94512202358462, 6.6585426173497435, 82.27921298604852, ...])
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);
([6277221.787742465, 6391463.004687083, 6846879.6875, 7362604.905150023, 8676048.838767424, 9063234.375, 9092054.6875, 9095895.43442144, 9106034.430703824, 9241007.8125, 9247712.165749675, 9248322.498040916, 9248560.9375, 9250120.759193351, 9259756.736315941, 9264578.564392272, 9287990.430602912, 9309424.621586887, 9327838.739486547, 9333736.607926149, 9334445.199464345, 9376735.80734474, 9437583.607077962, 9439176.118791785, 9439429.95654742, 9439710.9375, 9440172.721640727, 9440206.15222104, 9440232.307914393, 9441478.125, 9441820.3125, 9443342.1875, 9443747.321081104, 9444492.541734131, 9444510.891623605, 9444537.67709338, 9447028.004994387, 9448245.729239628, 9451585.185457915, 9459370.3125, 9486038.610685745, 9502533.055381294, 9503303.023859875, 9529118.941783108, 9529279.192819854, 9529492.960830815, 9529818.034099352, 9529911.627503837, 9530474.080630872, 9530581.406867579, 9530823.626326887, 9530994.593888883, 9531306.25, 9531871.478315493, 9532530.706011783, 9534136.266271198, 9534255.17237099, 9537870.352375928, 9539622.073794983, 9539636.640258044, 9539785.465762781, 9539816.42320282, 9540028.50339171, 9540145.699324962, 9540274.962781454, 9540592.812730193, 9541243.15805536, 9541877.95595121, 9542632.8125, 9542646.626314279, 9542760.9375, 9542801.109984506, 9543278.307205904, 9543640.196708843, 9543654.938032586, 9544080.82828392, 9544134.308087315, 9544234.475297613, 9544286.997100309, 9544325.75612753, 9544530.677663682, 9545198.519160366, 9545610.504528204, 9545732.468053943, 9545829.6875, 9546208.198980942, 9546454.609597439, 9546766.28731453, 9546963.815438705, 9548397.051886106, 9548939.0625, 9549192.060347468, 9550042.155470798, 9550054.721298875, 9550742.569382893, 9551474.21236955, 9556443.396248994, 9556518.050848812, 9558035.9375, 9569213.622509282, 9569679.227608262, 9570165.453144724, 9570275.538231337, 9570518.75, 9570538.196240691, 9570843.75, 9570955.064142555, 9574043.75, 9574066.811879337, 9574915.002635267, 9575221.404728493, 9575516.990451166, 9576023.4375, 9576063.489832118, 9576126.5625, 9576171.875, 9576310.452784263, 9576436.952605851, 9576473.620699316, 9576591.324858362, 9576643.701531485, 9576678.125, 9576785.105030442, 9576868.75, 9576884.340316884, 9576891.909865862, 9576987.5, 9577019.755609134, 9577154.6875, 9577155.671488145, 9577176.349589443, 9577334.626287652, 9577363.48680599, 9577370.142379656, 9577670.3125, 9577671.787591822, 9577685.56080348, 9577689.0625, 9577737.5, 9577906.25, 9578032.8125, 9578050.45615474, 9578127.648882143, 9578239.260974186, 9578281.17881009, 9578284.345670553, 9578558.857163498, 9578659.071055299, 9578747.354932725, 9579028.125, 9579048.722324241, 9579192.1875, 9579416.128829166, 9579632.882128177, 9579826.5625, 9580066.158676589, 9580408.584498392, 9580732.8125, 9580891.31438417, 9581029.6875, 9581102.08891076, 9581128.125, 9581259.890746236, 9581299.647613319, 9581454.687389027, 9581551.682481823, 9581795.140144223, 9581982.212574335, 9581998.4375, 9582123.04267938, 9582130.745827215, 9582611.978605973, 9582758.02758035, 9582911.696423113, 9583017.173267804, 9583150.0, 9583437.402402863, 9583809.978190446, 9583933.545536501, 9584054.6875, 9584959.015036715, 9585290.625, 9585351.5625, 9585418.172197692, 9585620.3125, 9586187.609998094, 9586377.545160415, 9586632.215341149, 9586766.336336367, 9586838.218800541, 9586926.074896209, 9587134.776704978, 9587181.25, 9588209.375, 9588385.186965639, 9588406.473775357, 9588430.689741537, 9589061.913713712, 9589142.931975761, 9589540.637338866, 9590145.277266216, 9590307.663540458, 9590450.762306912, 9590475.0, 9590652.522658125, 9590865.672651805, 9590925.0, 9591263.963869259, 9591464.81710041, 9591610.9375, 9591662.5, 9591663.502832286, 9591886.630053772, 9591938.599644681, 9591947.981998472, 9591994.961465763, 9592152.435051896, 9592171.680875046, 9592229.056885201, 9592443.834236953, 9592447.212751955, 9592922.676686095, 9593260.704588154, 9593394.791964281, 9593857.272582239, 9594032.8125, 9594885.663505163, 9595157.808581771, 9595190.625, 9595201.019142738, 9595202.531776726, 9595298.4375, 9595339.9837532, 9595357.450685734, 9595416.053015737, 9595522.215419717, 9595866.818442443, 9596160.9375, 9596268.75, 9596313.031910276, 9596321.111098018, 9596342.1875, 9596832.066303292, 9597096.322074424, 9597542.1875, 9597614.19423978, 9597963.785828577, 9598364.0625, 9598383.1810298, 9598957.768663986, 9598984.581533132, 9599761.81121517, 9599832.451851442, 9602555.457850417, 9602970.096491944, 9603235.9375, 9615993.75, 9616133.846481072, 9622045.3125, 9639635.153902339, 9757865.521609195, 9770382.627409948, 9780913.933305934, 9884237.461670427, 9890307.36764015, 9895736.337656194, 9896012.2792327, 9910045.659492627, 9910736.381866982, 9911287.393374262, 9972477.010023423, 10199678.812404545, 10200060.277354922, 10200271.875, 10281823.4375, 10294386.63133132, 10306403.345164908, 10475704.775957925, 10507557.307044346, 10517091.919844247, 10537685.643184286, 10541169.367515182, 10544118.270898776, 10547020.3125, 10547067.35267776, 10589457.099965803, 10591954.6875, 10593757.8125, 10605188.809549643, 10607699.304205397, 10613626.872053245, 10614965.625, 10615002.135377217, 10617459.31053402, 10626560.010219896, 10628248.4375, 10644670.313460957, 10645423.594677951, 10648759.375, 10657792.1875, 10710827.953222906, 10716308.466614671, 10716524.52853801, 10731651.771241955, 10740142.964468054, 10741533.56507576, 10743663.937359452, 10747082.8125, 10749062.016572587, 10749388.214525469, 10752351.5625, 10756528.31468354, 10758053.125, 10758184.968250735, 10758323.4375, 10758489.17043113, 10758640.2607984, 10759913.159009948, 10760483.85889592, 10760942.047798686, 10761876.5625, 10762423.946149938, 10762450.90394356, 10762953.039715752, 10763004.6875, 10763115.799437856, 10763759.740215434, 10763890.55432219, 10764045.967066128, 10764412.5, 10764466.414578995, 10764560.296107532, 10765060.182564326, 10765078.68040703, 10765644.541284619, 10767022.937474921, 10767441.221465657, 10767648.71871104, 10769673.4375, 10770325.62109252, 10770701.116566503, 10771918.68454071, 10772830.147917686, 10775158.58209416, 10775226.222457286, 10775742.908796847, 10777930.84544145, 10779712.933219584, 10780168.622475032, 10780225.0, 10780242.44170174, 10781043.514469413, 10781148.626269246, 10782971.063874666, 10783143.75, 10786449.989487866, 10786451.661423838, 10786569.102400042, 10786955.098124838, 10787843.427188186, 10788099.512155512, 10788187.5, 10788347.150408687, 10788492.705346093, 10789215.625, 10792614.812615313, 10792639.759843878, 10793826.415907774, 10794173.338986132, 10794236.176621567, 10794393.75, 10795488.034648703, 10795492.421979085, 10795498.765943345, 10797607.554638172, 10798050.694681535, 10798299.570340132, 10798501.5625, 10798503.042007755, 10800364.486054437, 10802173.176049035, 10803207.8125, 10814116.562327975, 10836497.862412937, 10837179.72677715, 10860834.113422578, 10890913.996058175, 10892877.370792534, 10918063.375435391, 10930195.967381818, 10941432.877039038, 10941910.961299015, 10949260.719691165, 10952015.797997907, 10953250.0, 10953616.53217739, 10959382.8125, 10959732.737799453, 10961512.5, 10975663.497988004, 10976010.800283786, 10978096.802317971, 10988330.598611964, 10991980.733603906, 10993797.83310094, 11001651.5625, 11006834.364916068, 11008368.05231465, 11009514.001018057, 11009609.195215138, 11009735.570665443, 11040850.856494403, 11041924.497336354, 11042612.981051719, 11043357.703748072, 11043362.824424595, 11044306.408530615, 11048600.261870718, 11059042.29024835, 11065721.875, 11066937.428571207, 11069748.31511704, 11070098.4375, 11071884.375, 11075193.127622427, 11075994.059010917, 11076221.875, 11077015.052912064, 11078197.629515553, 11078932.8125, 11079121.537590474, 11086485.839977313, 11091807.66576464, 11096891.77602517, 11097520.395123044, 11097962.08731469, 11098233.670340283, 11102389.89257148, 11106127.176540712, 11107757.8125, 11108524.719475076, 11109046.06566283, 11109279.45890338, 11109818.864695534, 11110187.719728664, 11110503.125, 11111580.577768233, 11111645.228323838, 11111893.057296526, 11115347.232321264, 11116340.281327406, 11116468.664541429, 11116917.668546127, 11116924.374510799, 11117373.077008082, 11117377.542229217, 11117439.358851112, 11117440.625, 11117773.135188628, 11117901.848102953, 11117904.26396833, 11118629.84837971, 11118851.5625, 11118960.9375, 11119462.797471045, 11119635.875818005, 11119664.204801025, 11119724.392466465, 11119732.072761498, 11119933.418144045, 11120016.83345582, 11120318.293504942, 11120522.805909326, 11120564.352118632, 11120639.01591521, 11120937.06929135, 11121018.265003279, 11121181.637923434, 11123980.426036771, 11124619.888978431, 11124958.732438773, 11124959.375, 11125119.880884593, 11125342.890829057, 11125514.0625, 11125870.3125, 11126302.710244227, 11126331.043002807, 11126335.9375, 11126387.5, 11126601.5625, 11126607.840946745, 11126747.505919343, 11126964.0625, 11126982.8125, 11127147.809745789, 11127482.063344322, 11131035.495855546, 11135981.651377331, 11142103.125, 11146235.605028702, 11147400.822205521, 11149732.688810451, 11151617.972825624, 11151641.250715455, 11152363.309162728, 11154451.5625, 11155533.486658365, 11155773.4375, 11155774.524727609, 11157015.625, 11157555.078480372, 11157607.8125, 11157651.5625, 11157736.507651398, 11158046.54356711, 11158742.1875, 11158914.0625, 11159152.639770074, 11159336.257294184, 11159409.993017688, 11159484.375, 11159628.899691924, 11160234.375, 11160325.976093618, 11160640.1770821, 11161232.484458812, 11161372.299437575, 11161495.959783927, 11161846.875, 11161897.74493181, 11161985.942646215, 11162032.821233178, 11164118.75, 11164165.625, 11164678.125, 11165556.989983847, 11167236.619333679, 11167650.0, 11168084.327240258, 11168093.405780971, 11169070.674527664, 11169679.028784845, 11170798.776460974, 11170885.9375, 11170892.1875, 11171309.375, 11171454.6875, 11172050.558119604, 11172062.5, 11173865.878408995, 11174130.765183479, 11175048.457704742, 11181148.702146279, 11181416.262872856, 11182168.819869906, 11183280.581675489, 11184011.933788972, 11185429.667411754, 11186037.194782218, 11188565.625, 11189175.0, 11192237.75366361, 11193690.737453748, 11194470.024209782, 11194864.46588522, 11195553.125, 11197229.300773466, 11200537.08212389, 11201444.276983643, 11201785.860003468, 11205034.50886612, 11205465.625, 11205998.275902832, 11206830.52516628, 11206843.75, 11215217.1875, 11219335.232663013, 11221578.63429229, 11225350.0, 11227874.607869256, 11231215.625, 11232326.5625, 11232393.75, 11234463.84541982, 11236596.875, 11241523.284276096, 11242622.881416574, 11243426.5625, 11243566.35991638, 11243648.4342744, 11244276.5625, 11245386.548297308, 11246017.000916202, 11246348.390695915, 11246389.0625, 11246417.1875, 11246514.0625, 11247654.6875, 11248443.884956768, 11248967.04403995, 11249618.638818773, 11250149.491331957, 11250204.6875, 11253923.4375, 11254986.796688594, 11255866.785493104, 11257025.0, 11257419.646845296, 11257701.189738585, 11259038.781502128, 11259040.771126546, 11260265.776456937, 11260608.79798266, 11261602.323226186, 11261852.421464562, 11262375.045602914, 11263168.75, 11264596.861008419, 11265347.39675048, 11267116.98932565, 11270081.25, 11272313.688080909, 11272652.897952877, 11273918.381352961, 11274580.71992507, 11274695.057764737, 11275801.5625, 11275837.113758558, 11278170.00158488, 11278211.216667706, 11278454.264150694, 11280730.89082027, 11282615.625, 11283231.565793633, 11285421.755492475, 11286126.512955459, 11287265.625, 11287388.932355117, 11287400.476566732, 11287575.0, 11287631.25, 11287740.598837629, 11288022.595753735, 11288057.546647498, 11289375.0, 11290540.639099658, 11291779.631035421, 11292203.57244769, 11292646.153340543, 11293335.333013179, 11294618.75, 11294777.082517315, 11295123.124853201, 11296945.3125, 11298012.238233581, 11298012.2807962, 11306649.19633692, 11307721.875, 11308511.183652442, 11309101.162138378, 11309433.395065574, 11309631.589248322, 11309967.271934925, 11314024.298867472, 11316632.735756963, 11319853.884689681, 11320333.63224824, 11320773.18833398, 11320905.948143512, 11321015.625, 11323387.514796037, 11323645.26056022, 11323843.546759171, 11326640.625, 11329862.314477304, 11339540.115167486, 11340193.997548636, 11344705.723551745, 11344925.202073047, 11345510.9375, 11346006.726045555, 11346385.9375, 11346826.628155166, 11348798.240404764, 11348890.171107734, 11353832.096091291, 11355071.673090626, 11355997.061267577, 11357941.51290602, 11358797.16357558, 11362296.875, 11362327.703353392, 11363072.600850964, 11363631.021611415, 11363912.5, 11364913.90307312, 11365033.956325142, 11365482.670514947, 11365690.625, 11366305.076045843, 11366723.4375, 11367011.03111038, 11367541.830408959, 11370427.960290035, 11370800.945117442, 11370822.57558439, 11372186.390508218, 11373849.914078677, 11374279.6875, 11374520.561189605, 11376281.25, 11376566.865840925, 11378374.371768132, 11380531.880471349, 11380686.81927555, 11394301.398503581, 11396152.68851999, 11398424.554646468, 11405888.118182411, 11409998.4375, 11412572.464944758, 11413286.462055815, 11413718.285765275, 11414093.856482271, 11414199.628589597, 11414444.745912088, 11417243.50852837, 11417541.398335615, 11420934.222824907, 11424601.21526743, 11430267.45512283, 11446848.4375, 11448645.67768269, 11448724.469940957, 11448859.150965309, 11449146.255396828, 11449447.072240729, 11450630.99360041, 11450901.88315113, 11451951.970851492, 11451973.146425791, 11452095.930202495, 11452452.293329014, 11452855.605408324, 11453301.56546007, 11453538.920013294, 11453764.0625, 11454775.79352443, 11455364.0625, 11455431.567562424, 11455523.158475997, 11455528.142025312, 11455756.25, 11456040.360289764, 11456094.734500926, 11456195.55771388, 11456244.148116753, 11456257.8125, 11456434.182510568, 11456446.37837642, 11456494.659300135, 11456690.031791745, 11457604.6875, 11457629.6875, 11457727.704314664, 11457866.165302314, 11457876.850692553, 11458017.1875, 11458258.496695602, 11458469.795375232, 11458556.988958593, 11458739.05045455, 11459221.875, 11459245.3125, 11459376.46314407, 11459672.519894084, 11459718.75, 11459735.335031763, 11459919.739117313, 11459970.577561934, 11460000.232522447, 11461352.627647776, 11461374.753093973, 11461543.75, 11461557.829221549, 11461701.813213496, 11462687.5, 11466596.625167323, 11467035.34300792, 11471008.430064285, 11472688.682763379, 11473376.502434487, 11480859.33394188, 11481088.771113059, 11481748.042428426, 11482895.619659465, 11483551.5625, 11484990.625, 11484998.4375, 11488551.511544121, 11489172.622486485, 11491004.6875, 11491118.75, 11491754.73911298, 11491836.324648546, 11492014.097462567, 11494151.5625, 11495402.297709927, 11495663.875351464, 11497245.3125, 11498204.504963065, 11498209.375, 11498556.25, 11501965.186176738, 11502261.410472078, 11505953.125, 11506258.378561387, 11507163.76578113, 11507664.0625, 11509178.80211299, 11509212.35740466, 11509721.974352993, 11512349.607710654, 11518343.219773691, 11520758.52558023, 11520848.4375, 11524762.5, 11531498.4375, 11537989.088111063, 11548547.241245985, 11548637.082274195, 11550534.052387027, 11552246.875, 11556152.693690134, 11579267.1875, 11581433.294878624, 11591257.8125, 11591927.072064554, 11591929.113539102, 11593395.55620036, 11593868.75, 11593906.558781225, 11594318.240002494, 11595241.468177237, 11599280.278708791, 11599721.013655134, 11599978.281876473, 11600110.845736811, 11602398.726736467, 11605379.516824858, 11605558.097279975, 11609649.862343354, 11611623.141915683, 11611728.012908995, 11612000.961029105, 11612614.0625, 11614623.44461859, 11615586.413941989, 11617542.652735114, 11619676.183978176, 11620321.875, 11620857.663337754, 11620930.6646447, 11629577.76376034, 11630148.564319119, 11630514.0625, 11630515.48963315, 11632319.4305779, 11632417.064364731, 11633237.719861588, 11633500.02516294, 11633567.1875, 11634181.440730942, 11634387.5, 11634613.982857699, 11634723.087537771, 11634734.06908295, 11634809.478891043, 11635087.003919162, 11635605.968558468, 11635707.51446928, 11635718.486152532, 11636893.267880842, 11637184.669902215, 11637235.68378934, 11639053.119411081, 11641040.098399006, 11641327.669157375, 11641801.242863383, 11641871.875, 11642017.056788754, 11642900.51765114, 11643082.431562057, 11644436.761240032, 11644958.262864284, 11645384.375, 11645545.3125, 11645824.962025212, 11645934.270209571, 11646278.125, 11646856.25, 11646937.995818503, 11647061.677032128, 11647067.1875, 11650717.134049151, 11651053.125, 11653637.5, 11653677.673290566, 11653765.910689848, 11655243.75, 11655308.187802304, 11655925.0, 11656289.0625, 11656335.839780657, 11656593.75, 11656908.853874024, 11656999.289791606, 11657069.319882698, 11657388.162649447, 11657745.772782879, 11658426.955368642, 11658787.213665541, 11661166.265167218, 11662791.923693474, 11663891.205737453, 11664144.451414537, 11664477.634683916, 11665249.557071632, 11667037.639056046, 11668478.125, 11669732.543654257, 11669798.966538893, 11670839.435342507, 11671587.348257143, 11671931.475812668, 11673556.25, 11673832.26512512, 11675470.3125, 11675612.084844373, 11675710.53639746, 11675989.298394253, 11676095.252238423, 11676161.49518646, 11676757.716760335, 11676929.6875, 11676942.1875, 11676948.4375, 11677027.7707494, 11680013.763517343, 11680284.211331163, 11680631.261095677, 11683269.852286167, 11685904.666235715, 11688438.078263741, 11691389.769516693, 11696279.47367543, 11698448.168471502, 11700282.027181987, 11701426.990964334, 11705215.604567835, 11708821.875, 11709774.5638256, 11710123.4375, 11711538.375693167, 11711932.6569417, 11712151.400753776, 11712479.6875, 11712798.4375, 11713135.354373017, 11713185.9375, 11713880.289799778, 11713900.587074941, 11714264.507974325, 11714718.75, 11715166.74828674, 11715452.661046837, 11715939.382507524, 11716266.683571683, 11718688.564952537, 11719108.12097286, 11721294.538777009, 11721460.9375, 11723153.617572479, 11725116.241835332, 11725812.5, 11725965.625, 11726303.125, 11726407.81126175, 11728460.295919659, 11732771.259262597, 11732853.06702152, 11737471.717674416, 11739495.190545745, 11739787.22796685, 11744418.793613264, 11744623.4375, 11752440.514314413, 11752638.512974903, 11752668.385296782, ...], [6.473499292430521, 5.984595725811094, 49.06010847417309, 11.485848328133224, 9.695424079818281, 64.47661360870147, 39.921487909858236, 6.7880938131861805, 81.92218586719639, 34.150545212573284, 36.754501295898606, 141.0732713635669, 50.91936988193878, 59.88716717442819, 11.983654879680417, 5.554792542432959, 25.20039615029008, 20.393275248224974, 68.31669989308361, 66.62659029989193, 14.527490196353481, 68.87134433810724, 21.820866290043917, 13.482906084031137, 153.62198278211343, 44.287386136898625, 54.05566817734694, 17.39167925377742, 13.313504656946307, 69.14660315322219, 81.77129425131754, 65.84374881421341, 18.00503976435016, 16.4886565062409, 27.648527682828206, 79.09563952568891, 35.38137263463564, 25.217643090399328, 6.17663965157355, 38.49523771137997, 53.05103014400137, 53.13574210139033, 82.83236785075952, 9.499007903674782, 21.54633326871213, 7.909127823652646, 5.3717933417636266, 7.315468230043261, 23.98673947852895, 22.386929733781496, 9.496339069563223, 19.55827074976529, 29.570717854031784, 47.798517140630935, 21.065237473208107, 9.62578118360425, 11.980792210516528, 6.77149368553522, 8.394577632855063, 26.531200419434263, 10.462567458186946, 12.65613917114186, 16.610774227392163, 33.43804393685102, 66.68214662325394, 7.846190182785158, 6.650816319658677, 5.285893864649197, 79.0222337457896, 24.429113733758296, 62.958333148541044, 144.54029295634933, 11.424972410141685, 15.877189340935413, 21.153714287372136, 46.737531308408236, 14.692458951381997, 5.205984749381753, 99.99941792166476, 45.86503363164269, 42.872085222630034, 32.77768744746533, 22.18885781080575, 23.199135531414385, 46.80093770933431, 16.652216055241016, 35.01048657666342, 9.96214390502078, 81.05372362064665, 42.38515502877216, 156.32262586284827, 26.241938535391586, 27.90638007036391, 5.81648533347902, 7.747455645373549, 19.034933618369017, 23.087599249752824, 84.49872733231655, 34.109645262818816, 22.113366897740555, 6.417337334516956, 14.324582443112407, 17.485018721649737, 58.359418991371776, 73.01960599337777, 38.91046989221712, 80.23575603777527, 65.40132521259089, 8.097452909025195, 6.966927937865334, 79.67061548568115, 56.16353768236358, 54.913913108289705, 6.030504810143336, 80.60688235548538, 54.98734957339816, 21.646936013907133, 21.032997229988766, 15.688995916224524, 12.43166802060835, 36.41588643629259, 122.82218751792185, 14.035396924024132, 54.064005602796826, 87.09270349468717, 15.766366707078706, 69.62545423064782, 42.854234928808495, 50.781271527288574, 8.885869979816238, 24.930806621601704, 32.44181358409839, 100.76978686472117, 94.70208948231773, 36.7932549855745, 31.422062867298887, 67.6172056055748, 87.18551775306139, 58.38968319240633, 58.84588741892327, 50.877940262162134, 22.214623573458056, 6.672035598822655, 84.1133712173925, 14.676936189142703, 84.21854419583116, 35.364232447576086, 10.683683222035803, 17.152091491972445, 90.36144080969544, 42.591744023595325, 51.875785952466714, 84.61369949187427, 8.32374431004867, 90.59008633071625, 6.87494270747701, 62.35443953077633, 70.4274080117351, 5.866812633043784, 51.68114382645364, 30.964409428350464, 30.788401973895812, 9.80921092567685, 47.70094033445204, 33.08471985349024, 20.742082487369057, 25.530706764277298, 37.30614500156741, 49.092618871557605, 45.369800820056994, 95.60029935870651, 22.807546318690065, 6.807219023238776, 57.45712068760383, 28.246280641112875, 33.61108589689103, 14.58212106116749, 26.585562589841206, 5.314280314579857, 60.39881443744823, 30.09658719087715, 60.215598822469644, 95.45549550629548, 27.98693975533037, 51.58640460023616, 5.949042409962223, 64.44197866862126, 7.99416578083492, 10.015219917391441, 25.198857336193072, 97.63423109455026, 16.730973852535005, 49.572270371986406, 69.92770338459243, 12.688549622348265, 15.619667985947267, 59.60226746353611, 10.32025851531744, 65.68976504923958, 31.515517654513957, 17.50903797721871, 25.892960658175365, 18.943524749435845, 49.18750760872689, 27.540245785559847, 86.46719256030212, 67.54923536567696, 98.1377241109115, 16.920386562659324, 42.885795692478155, 79.02587418740434, 13.165547781938454, 24.49438619980326, 20.814440920631537, 21.94878619800444, 7.032134722646197, 24.193213767948663, 38.10337270412689, 6.190682120642535, 9.403660636687041, 16.406723407749876, 6.175633466359989, 34.9804161338972, 10.401123838060837, 13.218034241480531, 31.453003329479156, 97.77025857321165, 14.92659597126731, 82.69355318589778, 21.071223702742994, 20.61096314843879, 58.560332047297834, 5.434900558011297, 22.99200809669819, 60.25856468108625, 6.833426558023051, 9.037693401664423, 109.65074346162771, 87.14746927687932, 17.44808716084072, 7.9200915999835155, 37.62141519419538, 19.34469574729865, 63.41027190571024, 62.74912787094436, 15.46859620086165, 20.722673812816982, 128.69651585011613, 6.546456101518427, 5.810743880183683, 15.791835821682547, 7.953086975224859, 72.09117272965128, 19.00191983057937, 24.88638032400771, 96.99970358166584, 107.10858984652917, 29.125469626170705, 48.029104050286286, 18.930974731572903, 31.671680442179998, 10.850219973336772, 26.208789182165493, 27.78835543281446, 22.061371686308394, 7.230769348966327, 127.40575743745929, 13.45143934531183, 64.57524373974593, 26.580912494568878, 16.974201222530024, 45.06828720620073, 20.031649356763573, 36.631668322067156, 87.02781948282752, 7.31661986740939, 27.023854463860772, 23.257566384202267, 8.036224280272993, 89.16314984862467, 31.597593744828703, 103.83406621200518, 7.438683343230503, 49.31424166909685, 11.396093423430015, 82.14586379140934, 71.02906225189284, 38.36641667827913, 64.30311561292726, 5.186050342235851, 7.205272812364941, 83.98615776188879, 39.28683326784473, 7.58008667234767, 32.94984568686553, 68.96471945782555, 43.015831568017155, 5.7168347874542125, 59.9406446555834, 28.879383511096865, 25.539519866066765, 109.06361781159765, 13.404890419454523, 9.514371612908718, 7.341856130076682, 29.207325119005652, 5.928581121416207, 51.54057116036625, 21.660029139747444, 63.85820389138456, 41.46642513665228, 35.07514039017536, 65.40083104218787, 6.584291432865736, 44.74373012235409, 15.369494271819695, 8.10293509970815, 20.42300732097042, 10.406652914900288, 14.434490497159162, 63.42329288005122, 17.31395394010124, 12.911807213084128, 26.944645620495983, 63.406652192503486, 18.1948144818232, 11.750949622426802, 24.829750455201474, 7.858480210143667, 41.074954519736515, 93.45561560010233, 6.641874536587993, 46.23906697028491, 17.58642856284807, 22.710081585677642, 32.80677786887494, 9.892391280406999, 7.197389027704296, 46.48894142867114, 36.02188107279267, 22.04994760911009, 27.29335347129352, 148.56468696462417, 45.950436436055604, 23.252381255342524, 10.026126795854859, 32.57848671186806, 5.214601349400989, 26.23588363342916, 58.96881950744511, 55.32144440988371, 5.333915173261479, 20.11798792745307, 8.728353889246204, 55.87316442165933, 14.901592901543882, 23.868321232071185, 107.41028893930701, 6.13186751722125, 8.122940627061464, 44.494626283702516, 42.69691954634834, 47.510024379274, 85.30781312336545, 55.301991093968525, 7.3336583443385335, 9.999968372348238, 14.410732954475046, 5.806726864494521, 5.13564576314999, 58.50960837624057, 12.080660516838167, 7.184484068683125, 30.385893325320836, 14.04202240024314, 18.470365581306037, 19.943139016940837, 75.45790923061777, 5.5290661774292085, 79.98036326601559, 134.4741451924736, 70.84985952737775, 20.32915396728006, 20.775400303199973, 15.093359090748649, 49.99539261769254, 77.36789335186963, 6.936368773353408, 7.372304498338696, 85.76493838960099, 6.094836521685878, 11.165111075474535, 79.17514271936454, 6.798542819219909, 47.6458722541527, 6.639367972000058, 84.02968502862305, 7.101952636019721, 39.31992655541987, 20.872824945262828, 26.079495688665094, 55.512453947041024, 28.80895734434884, 8.929862022400263, 13.048935341298337, 89.06550896299456, 14.903212989745258, 12.81538744184351, 27.364611923488596, 25.418212358357746, 22.430867282384007, 5.763525640827766, 34.528559041487, 17.158322982677024, 26.545314897583502, 16.34127639687298, 11.384883907704538, 11.563280053293024, 8.341670172058715, 67.45794171883449, 9.271727662210294, 44.077577818667265, 47.55616629723161, 80.70675244844907, 68.51806130022672, 11.647692482886702, 34.110613442372504, 8.890380465735433, 5.872000106578185, 31.820278415302496, 23.284365922038994, 87.83994590189268, 61.298702715581115, 47.07725989801594, 30.96541894655025, 102.40035932473877, 35.95228832786466, 8.780408755751035, 20.546025143645785, 48.45400752103117, 12.742899522842052, 6.61201381004405, 10.788255115589262, 21.202115637570504, 8.406295044377417, 63.834732178753335, 54.845136148289534, 26.96385637920284, 26.63191006511539, 90.85493052426332, 7.033948964908772, 26.941626388014296, 57.302392292684516, 36.546732961599446, 32.079280692442644, 20.705329691536363, 5.074325247917391, 65.18682669523133, 13.90216679969861, 16.154615846406976, 12.188912225962909, 24.03338387070941, 76.57957028239032, 58.95388332318845, 42.8984608585216, 6.751254399661679, 76.2272464988236, 10.294585992203006, 5.498224403677244, 17.89222719831497, 13.744386797471849, 98.68449424571632, 47.83786578086845, 27.27859467131212, 115.64594442066586, 13.519911242911956, 10.445749183581597, 66.76755135791115, 12.518490835121867, 13.540499142987672, 12.951856308544604, 58.511709466582175, 31.27945107787206, 18.529153918961416, 59.87127210572237, 48.69293548569094, 22.38780191206675, 47.76184596475113, 62.5071624388639, 67.16873707674795, 47.45709534401573, 7.128949572842117, 21.56630660100265, 90.65043685531651, 51.43650283284073, 20.306803046252806, 19.322141973719322, 10.501082653166366, 9.695531053128166, 33.69843276498551, 23.344641888113273, 10.139032421221387, 10.939723571598588, 33.31282715794624, 70.02265629657389, 82.06562664869872, 79.70872491141316, 18.3327736939277, 54.86238691440704, 18.39256209950634, 47.62853811143847, 8.504753836290517, 57.39026952078811, 71.78027196894585, 6.580342661962245, 8.118756173397779, 69.11794140639921, 53.50443290936769, 21.641715892846666, 74.17214660155642, 12.253898152667084, 48.49219924530949, 12.60135074369186, 36.0459909090002, 20.672383130396433, 27.972679048549097, 36.21245179781867, 6.8513075374517225, 6.899998914244993, 136.27943093943702, 21.689049032118078, 11.13576020580989, 14.97490100980706, 44.116459938447264, 46.577986711619204, 39.42293740349617, 7.33057694975077, 88.88876301424601, 45.48100367750794, 27.613892547580317, 28.541066649828966, 11.745015195167495, 36.120716906816945, 16.412695887457517, 55.36757387029907, 73.61238956254016, 47.108427848031376, 67.5535824952179, 12.12866071305723, 59.82734782849177, 6.527562826464857, 32.56477686673112, 15.019083750129804, 24.366475952336877, 5.219983398404395, 13.579077654393462, 19.96365968116063, 30.066418873594507, 8.275982817196304, 23.68431974978741, 60.24221298093394, 77.59262558464215, 29.334100253711892, 29.47892271820976, 23.90147926087862, 8.5120711906353, 51.953880061652065, 9.02449575448467, 91.2991803415315, 63.65802018432415, 34.89253262394753, 15.635591298575536, 97.90295534012559, 73.14657736351286, 19.509564468558043, 35.110904480428026, 46.40526141258765, 28.441570301622306, 12.029464404949534, 53.53293274200096, 13.631513136263647, 108.27792210979091, 38.07852652958283, 116.5942202287853, 58.14480725439951, 96.55796874149513, 25.826013766740594, 15.77798662805574, 47.48369100604255, 11.75894945329281, 8.284872310473656, 35.895244971470134, 8.638340090561467, 14.27503267503639, 61.04948443686321, 50.51985279291098, 67.8955053308755, 138.058211639402, 29.518524046391338, 8.359257822711264, 35.467496854602985, 26.504781724605504, 21.40706550168733, 46.54685416683389, 85.75174278847659, 6.3822170944962044, 40.29132621077197, 94.18975911183585, 5.150143510126908, 16.024232140686824, 73.88061642756709, 15.529347793218955, 58.27386211721383, 5.505716426079441, 23.171671251042426, 17.341388783088483, 8.310841036385897, 64.88416137308882, 30.98557638737755, 5.36012379501956, 31.57955983542375, 72.92736955043048, 22.844513231142546, 10.79044175769624, 22.91176416878985, 6.662102547337313, 30.927305211102325, 51.02682144159679, 6.219602471691321, 9.081651723276119, 38.30082305409556, 11.99107740607198, 95.49356169142332, 33.13152559578897, 42.73866091910159, 26.366971926422167, 115.82818318867277, 200.71288202590205, 15.497206246151073, 11.964381652727546, 65.99288156625549, 62.7190030352223, 109.37161422536606, 31.615441835536764, 14.016579915810446, 100.48031904485902, 17.429066477680756, 8.256941925769613, 92.9409688581745, 5.662319052840454, 45.55438287790541, 64.62591556305817, 30.448169932274844, 23.59052944611899, 90.0838438003054, 25.32336850675504, 14.167023410530927, 18.918476270523147, 42.601682086339245, 36.1413531351954, 10.55471456674472, 62.150103060971716, 24.961351683156316, 61.671736946836745, 27.58753155778315, 14.656852265179955, 47.37223821309941, 104.49845348494654, 14.06986245904592, 13.903577623703876, 34.979416079426, 5.533799071147074, 26.004843518867023, 25.070740299588422, 32.7408513869136, 43.87619338041081, 7.4286921815561975, 18.4490683937512, 84.21945201005981, 8.396408036950424, 32.09497492147141, 5.737739770208052, 38.892794706545025, 44.83945492883666, 25.160667718100527, 28.970260348992067, 25.05064522580656, 10.826124206832912, 86.66985597963418, 19.91194361658146, 11.610858675669524, 61.95955805762769, 7.4575368597034695, 36.496848303770115, 5.601532861930833, 57.55291820524576, 25.72937125017248, 6.215712329327298, 29.21633999093476, 48.31797266861813, 36.76075540300552, 33.104954403607444, 82.88150712289519, 7.0306438809779115, 14.348799149337125, 20.396958750512933, 75.91048114450204, 17.003958539114247, 26.933615484113215, 40.38822619010619, 15.982435910439074, 29.941748901577792, 24.494654658217478, 10.269787649130839, 7.297669629305622, 51.73218636247391, 25.658731917280665, 65.98413115239593, 13.478243697664402, 87.61061212866191, 97.85605650870723, 17.795158355950935, 83.62123745564948, 72.19497386481883, 84.77119644472504, 10.592886168312223, 27.13023852718353, 166.1696339342618, 19.02371106847107, 25.842440619665577, 23.16559529145139, 21.54867762768061, 88.73526979335136, 34.98499286924846, 13.244468452883574, 117.32620916200219, 14.325046921635224, 9.503942225123314, 38.56313125851259, 29.601925723069186, 7.233097952453789, 21.687408595619686, 54.66838103973775, 18.71940054575901, 12.94675172082004, 6.267572423165175, 5.3930546946634985, 50.390890138407116, 88.70889034097675, 114.52463347886155, 45.71216151340211, 5.915469266987442, 8.295601162307095, 73.4179597284567, 27.66608581550308, 20.748774160302624, 15.966481695666012, 11.812759540507217, 45.20955535818567, 25.22857670154898, 13.335302779864705, 20.089846015993952, 22.171341667351513, 40.75830247311902, 37.11880450610374, 8.075972632838534, 96.5738983990893, 7.7109073850105485, 45.388609835252986, 161.80090995242983, 21.32395570479221, 18.77662218205628, 40.858349697463055, 44.116608695319044, 45.61759491799721, 26.703493657260466, 85.78810133823403, 46.384443574899144, 41.70745879121883, 34.63865925554468, 7.7020044451523475, 34.227661590116874, 5.897232576585592, 28.9631707632188, 67.10404489714924, 15.005629481696747, 8.423763215415962, 85.90018302876194, 24.413433483184455, 26.58979883394303, 6.58846281048474, 6.049480538011225, 112.64117382503942, 27.73760767435018, 59.217151164013984, 83.63339646717924, 24.52662722693075, 62.59290713025769, 45.87431543403871, 122.98706998252491, 18.858386757360158, 10.055005764471096, 42.06935100158053, 72.85116953857461, 183.59222762476185, 8.50249870643999, 53.5658016176822, 42.332722686038636, 6.60886746676785, 25.307880758326178, 50.36925979671897, 32.748145170340266, 68.87276474021813, 42.605018111212054, 48.85411455480125, 17.113464426308088, 31.951564584607574, 19.595812021207315, 6.0577771827327425, 76.07926710585083, 40.38619794544072, 6.249349022725681, 15.334219349056143, 47.265424879560975, 37.44861260913673, 86.50058773754097, 48.713538945784606, 66.67969868573896, 55.06495258143686, 15.040033689422243, 44.428912314040346, 5.034574052102654, 22.80631832673341, 67.06591133862308, 22.206826394563272, 89.45329313939482, 5.21588816065406, 47.86098021504703, 26.28326149800933, 13.127948228049881, 46.70834273919979, 64.2413426046279, 16.26535582710559, 8.934442054551242, 10.163062180353991, 9.886897251238668, 110.34920749310136, 19.687362800368653, 26.832970718433888, 126.42653493353795, 80.64727877462124, 16.15072165091419, 16.453770760660507, 81.4327356074956, 10.95690770028614, 20.537266978208514, 65.2458571062812, 14.968711747427534, 56.12495228063513, 17.0708016496409, 21.550240784328178, 93.15376511422362, 48.33906394384766, 6.975635722894783, 6.05132215907451, 24.934603755337818, 40.01407501195578, 26.109166276189413, 22.90941831358904, 13.84728481181196, 8.406369663311361, 15.038294056479595, 87.20453776565341, 18.45798352948893, 58.95723241149154, 62.3569378278096, 55.85558775268733, 5.518415367339969, 13.937268769743707, 30.901279086985667, 13.967326086862817, 10.691768201226555, 51.42240978145765, 51.101518510178494, 24.48690587048656, 23.72324381922229, 74.81089167905452, 10.393572881840356, 21.945201141744633, 9.075005543568754, 44.876622759468724, 14.465654202035957, 5.4844321849573925, 8.094905571997982, 31.508044844063207, 44.65140679436914, 45.517719191166655, 56.25406832794962, 66.2745002989223, 20.925372130069444, 67.42908938834675, 52.19715314577754, 6.866701518888209, 120.41153553178489, 114.10257512931267, 71.44357663853798, 88.24939745872737, 60.85185674317725, 22.892063555854683, 16.15502716472352, 29.598418972763575, 5.047925707466442, 37.501441113787585, 81.39066293190461, 35.4825399747364, 79.37291224869206, 21.28491458171611, 77.88846301938372, 74.06826464772517, 5.999268028115797, 11.932405811481647, 9.687262078482334, 164.5943701894426, 64.01375736400797, 53.587409553779324, 6.885262362024801, 5.752900998562998, 124.67049773427753, 56.6723982189778, 50.36929187795789, 49.275829045233486, 36.250060243911484, 8.587665909650255, 49.729495771233516, 35.76290314134064, 21.942888957913606, 92.13955170573311, 21.811452710790498, 90.97139235833242, 94.54404097000722, 30.215044954249294, 106.19665022588, 11.57307495197157, 7.2761957839895395, 95.81263955827164, 68.77406803608623, 30.33636079093422, 36.17613854528376, 35.57225677762093, 13.912500460708332, 23.289442020882177, 7.6072557357872475, 21.899387159422776, 28.11081167864102, 12.170334395138852, 46.05778881728797, 15.70545968430644, 6.060562410026848, 27.17484992965609, 16.871875825174715, 5.937628142470254, 80.26375463084945, 22.15433332050579, 90.09280925690501, 19.81217785836435, 29.722907209835867, 25.693458688909075, 111.3566454305482, 37.0279577750739, 36.11459796191064, 50.23221089720667, 78.61827046321822, 58.688447101644336, 11.903558809817682, 208.1972438414433, 10.504215450496872, 21.860384542495158, 6.829120687081926, 40.30950640493761, 10.429914747518186, 7.204971491867822, 25.014070375013553, 63.538932338979905, 7.791668649620158, 9.913783055007675, 92.81619193143935, 90.52770640900937, 61.93039749196791, 28.500706430520747, 12.954324442757803, 20.411352895083073, 5.3962621858491575, 7.547309852982043, 9.230369743195789, 5.520021982435435, 46.40965481392806, 29.11052318426639, 46.94512202358462, 6.6585426173497435, 82.27921298604852, ...])
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)