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 = 47562
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);
([4660449.538626937, 5918020.928762456, 6538250.5130164055, 6762369.444217099, 7155848.3595246775, 7245084.719875261, 7246362.7191414535, 7263637.443476916, 7267447.162195933, 7267494.179726628, 7299063.826472335, 7338689.741853779, 7360831.895763412, 7363948.678484648, 7368029.129961303, 7377380.6586546805, 7377938.075379429, 7381854.084395692, 7384146.91651786, 7412230.897291277, 7417956.234785694, 7418036.981809903, 7429411.150460741, 7431756.706997424, 7436537.58206466, 7454183.780871639, 7455851.194701823, 7468179.909318529, 7481868.583313428, 7482208.4121220615, 7487354.275530326, 7491123.087066455, 7492154.974797693, 7502128.291867885, 7527698.294303104, 7527717.600995382, 7527799.9108582055, 7541633.419719903, 7543871.259811994, 7554088.727703919, 7555057.772108387, 7558892.1875, 7561636.141468325, 7590735.9375, 7649100.088922538, 7655488.690396989, 7741064.793593294, 7821976.230319472, 7823312.81151002, 7827300.427701878, 7849225.408048707, 7873979.404735163, 7875029.579152515, 7875340.071163312, 7882903.389998593, 7897757.471424497, 7903841.492713692, 7904638.433952804, 7909997.988703329, 7945124.786875207, 7975870.965575343, 7978101.697288584, 8002513.377162367, 8002649.061014929, 8002705.698286699, 8003067.919871449, 8004414.137490169, 8006095.663453386, 8007451.063441344, 8034568.400301087, 8046023.8855868345, 8050873.771984293, 8070487.614003772, 8114080.615636929, 8166207.614179166, 8200504.676830428, 8201186.01002254, 8202851.752404293, 8208416.490414947, 8212550.571262621, 8213723.4831039915, 8216294.3975295825, 8219156.2641320275, 8227688.319526569, 8230559.415548506, 8233998.345778959, 8234198.590075725, 8234548.797065335, 8236421.445451622, 8236531.051695138, 8276123.1522885915, 8278760.250485294, 8278829.57787029, 8280869.635096786, 8304903.052495343, 8305474.179236193, 8305529.634333115, 8307967.120461302, 8312761.7508327495, 8323057.018495022, 8327398.1252240455, 8328003.470768661, 8328077.68032226, 8328198.310916808, 8330100.239296118, 8330197.241769757, 8330998.795893806, 8331686.357197136, 8332598.365510498, 8335046.875, 8335608.704507049, 8336538.054330895, 8337008.2913224045, 8337505.343951977, 8338615.039921953, 8340194.408077196, 8349750.853637419, 8352196.311437416, 8357003.346113353, 8358145.673595987, 8358305.232550621, 8364251.505826056, 8364343.90636003, 8365652.918243672, 8374390.04882036, 8381643.82518041, 8396162.618215479, 8446837.019230684, 8473667.48484763, 8495912.896597119, 8498357.295239482, 8501036.397481881, 8503739.699295163, 8508014.63636914, 8508621.386127122, 8516777.020884648, 8522835.65030545, 8525269.99003504, 8529128.125, 8529368.298782077, 8529418.301477998, 8529563.977187593, 8529850.311334508, 8529865.146472936, 8529969.277659563, 8530022.015364228, 8530056.320611907, 8530241.435918521, 8530565.117916273, 8531086.64440499, 8531467.151191812, 8531646.76875335, 8533180.359399827, 8533962.500082808, 8536804.363537727, 8540279.820522055, 8544547.816802207, 8545201.82305696, 8555701.8730465, 8556298.695099514, 8558256.170993885, 8558443.75, 8558876.184383087, 8559939.304306222, 8560422.086989813, 8562416.396180218, 8562437.567595944, 8562445.258977259, 8563515.33394052, 8576878.34759891, 8577553.177410593, 8581298.051930435, 8583445.115555814, 8583451.892949184, 8585371.47223593, 8586094.72989263, 8586605.037725247, 8587153.069920035, 8588017.494933136, 8589400.153913356, 8592643.29072699, 8592659.972280685, 8594673.990652949, 8595739.595367411, 8597464.027509458, 8597623.782420557, 8599026.56543699, 8599040.625, 8599262.662189916, 8599768.019036256, 8604429.706774063, 8605820.87482829, 8606482.086903257, 8606577.99089197, 8610096.611763863, 8610439.951662337, 8610814.914145265, 8611661.28827402, 8612663.578361046, 8613198.333451232, 8615691.35301505, 8615705.762333395, 8615804.30661171, 8616096.998306628, 8617424.367274694, 8617719.72779792, 8618101.316023085, 8618121.260004401, 8620213.047178803, 8627490.086533451, 8635007.471039938, 8635870.76780793, 8636005.658747612, 8637059.229992997, 8637206.77942493, 8637483.729557669, 8637596.696532607, 8637625.291801408, 8637860.621158814, 8637884.693992317, 8637990.911508206, 8638071.972350247, 8638130.12086646, 8638140.826218385, 8638202.945733521, 8638218.160386834, 8638398.189221151, 8638701.158392334, 8639360.21491871, 8639908.169800023, 8640792.089827826, 8640939.927195124, 8641092.78839934, 8641364.455206867, 8641458.310584372, 8641720.437161397, 8642327.204323303, 8642536.125749975, 8642741.545664651, 8642925.840158274, 8643035.70854196, 8643099.923772411, 8643154.873393688, 8643650.261793057, 8643699.14027266, 8644326.710476384, 8644331.216229994, 8644403.056209795, 8644556.45590865, 8644828.554990215, 8644900.888186054, 8645037.874250254, 8645561.528981272, 8645735.284074184, 8645776.5625, 8645940.391176054, 8646076.211503549, 8646106.947610736, 8646416.680269748, 8646583.17836392, 8646663.830827536, 8647047.089518486, 8647221.121753374, 8647485.9817643, 8647593.615803842, 8647942.030902945, 8648122.65540449, 8648455.285450611, 8650692.921268605, 8650866.1920921, 8651041.365111198, 8652816.48200574, 8653680.180295084, 8654050.572587013, 8657723.035619508, 8658193.328401955, 8659171.235688943, 8659561.409921667, 8659879.592305595, 8660522.620419394, 8660632.253483307, 8661067.921836019, 8661792.438365119, 8662042.464110259, 8662824.738607047, 8662952.773469623, 8663592.413452096, 8663745.17236295, 8663838.43283213, 8664482.497743797, 8666003.348198526, 8679321.138441144, 8680544.774160104, 8681496.110513156, 8684860.217121936, 8694737.746152164, 8699378.594133236, 8702964.161626194, 8705295.33993567, 8705696.488394454, 8706097.80627449, 8706324.787674699, 8706624.476346591, 8706797.30808576, 8707781.262598436, 8707861.78386634, 8707863.403709065, 8707910.9375, 8708121.308843357, 8733212.19767365, 8735796.054584932, 8762679.6875, 8765714.814658875, 8768778.643565621, 8770513.678181149, 8770617.215165572, 8771028.08472324, 8775746.553575477, 8778153.424564866, 8781742.872055266, 8781809.672210354, 8798145.106308347, 8798950.009201443, 8800658.065280966, 8800837.807869857, 8811803.45908655, 8813479.487715755, 8818065.03780365, 8838929.410092806, 8841142.105651958, 8843757.40638167, 8845893.812369853, 8853845.240357924, 8853923.044016486, 8854091.203925148, 8860449.198657613, 8883300.587502426, 8889186.038405374, 8892241.53822164, 8892334.386069573, 8892572.17027518, 8892708.574392391, 8892770.269065177, 8894480.103212444, 8894887.007188471, 8894895.156755479, 8895315.289379431, 8895445.79068931, 8895517.57099454, 8895766.347659254, 8896068.059286086, 8896122.844133114, 8896436.218692586, 8896715.098827602, 8897155.998473885, 8897223.063263334, 8897269.46059718, 8897383.401027054, 8897723.385789951, 8898018.523069648, 8898883.252780154, 8899301.681752825, 8899382.389088495, 8899987.037640488, 8900138.93548862, 8900410.9375, 8900435.344639571, 8900436.315335356, 8900516.906588526, 8900573.706270553, 8901043.715876339, 8901216.333835235, 8901307.043900145, 8901320.821210574, 8901494.301774276, 8901541.449660126, 8902063.87053964, 8902144.111713985, 8902638.77963364, 8902868.64845045, 8903120.117378566, 8903265.863077456, 8903384.249755038, 8904121.649822302, 8904506.203009687, 8905766.323160963, 8907960.545450857, 8908752.084999997, 8909395.911049278, 8909907.74574864, 8910059.220336348, 8910352.969770256, 8910527.20220065, 8910640.28433788, 8910851.386924285, 8911680.292978762, 8912534.103812275, 8913680.63325203, 8916739.132771982, 8918075.850890823, 8918803.975198286, 8919153.030756438, 8920140.081623906, 8920644.824695453, 8922064.253823232, 8923149.045493111, 8923196.708808385, 8923313.947083483, 8923366.686922515, 8923925.018573396, 8924096.890696354, 8924530.534906434, 8924535.733047727, 8924579.72228929, 8924721.645054286, 8924798.496966777, 8924829.636197016, 8924852.881669361, 8924861.109246276, 8924940.8943013, 8925185.364075074, 8925635.571420552, 8925817.331602946, 8926223.851540556, 8926296.748084275, 8927054.937695805, 8927345.537517767, 8927388.227492977, 8927660.861237021, 8928125.404237129, 8928363.330966152, 8928475.952822685, 8928955.182573711, 8929034.128882175, 8929365.082661323, 8929877.828911308, 8930179.88893112, 8930206.339384232, 8930546.222337889, 8930561.795307007, 8930916.041380355, 8931432.16968751, 8931579.616339635, 8931732.97135998, 8931769.154368505, 8931901.169745322, 8931942.302384434, 8932092.766868746, 8932180.651423324, 8932243.302264404, 8932444.324827863, 8932622.312748559, 8932652.829571674, 8932761.141418748, 8933095.303124042, 8933142.565739635, 8933375.389620624, 8933436.04471537, 8934068.180404449, 8934762.771463186, 8934838.544790829, 8934904.917266918, 8934916.747849783, 8934993.222999673, 8935011.780230636, 8935132.98552457, 8937419.502970397, 8937803.56386235, 8938199.60418634, 8938252.052503666, 8954369.841536626, 8955541.556330634, 8956086.59337323, 8956477.520149874, 8957720.513685549, 8958776.688430531, 8960033.20267728, 8961273.479189662, 8961538.396856787, 8961574.95703109, 8961710.284408135, 8962118.182476554, 8962856.032316873, 8963269.603608364, 8963275.748126308, 8963346.041326828, 8963818.119755654, 8965797.277214382, 8974350.259662502, 8975827.492713852, 8976207.334174518, 8976551.506309355, 8976706.570898917, 8976882.8602057, 8976909.464515008, 8976909.553223358, 8976967.050686257, 8976972.781525644, 8976995.650041074, 8977435.642355455, 8977625.433433523, 8977719.653732065, 8977775.58411917, 8977826.44774674, 8978140.890086763, 8979712.616961049, 8979744.943788148, 8979784.375, 8979837.717108414, 8981083.61164755, 8981326.541387666, 8981429.566175919, 8981576.020603748, 8982295.524133084, 8982675.641204622, 8984235.224594593, 8984336.854669122, 8984422.006763007, 8984437.703395132, 8984508.722481137, 8984639.729412116, 8984770.379943784, 8984788.259912662, 8984834.341646647, 8984956.25, 8985244.98027308, 8985337.454243982, 8985403.607497437, 8985699.264323404, 8985845.563655999, 8985857.126784042, 8985918.32052204, 8986183.103907265, 8986210.191160329, 8986339.154871378, 8986603.481511286, 8986675.773960406, 8986863.759416403, 8987245.3125, 8987367.019112842, 8987504.484030943, 8987543.712751701, 8987574.44933915, 8988205.472857049, 8988445.160577746, 8988598.777229296, 8988779.546840852, 8988946.62123415, 8988948.547862405, 8988993.75, 8989872.981924487, 8989968.018856568, 8990191.110163413, 8990270.502695097, 8990331.992746055, 8990440.075219197, 8990508.528748617, 8990679.335095467, 8990785.537346855, 8990938.51893712, 8990942.063642869, 8990995.39104854, 8992160.854415791, 8992618.517217444, 8993832.897725519, 8994423.184064128, 8994651.478114601, 8994943.345139716, 8996115.262979392, 8996284.504641298, 8996473.277766978, 8996793.024193274, 8996939.635439092, 8997853.631113475, 8998435.810156066, 8999010.136138903, 9000641.077606801, 9001304.366502952, 9001817.337188475, 9001847.230794447, 9002139.34477411, 9002157.368811412, 9002341.203432646, 9002437.307693435, 9003307.969605168, 9003483.580149751, 9003657.14791516, 9003707.8125, 9003965.579341518, 9004007.904903835, 9004322.289935518, 9005037.425469171, 9005316.869328847, 9005381.25, 9005610.410251345, 9005706.130116083, 9006005.380922982, 9006332.49489216, 9006380.856419064, 9006498.911609912, 9006627.515847217, 9006693.446033712, 9006719.769135851, 9006845.769228123, 9007061.71041196, 9007077.537588505, 9007179.346022159, 9007204.577920405, 9007355.738831688, 9007376.382161938, 9007677.870724276, 9007738.195033543, 9007799.186141275, 9007823.463308264, 9008209.533488939, 9008482.464938942, 9008499.48864597, 9008581.185119862, 9008765.273417434, 9008960.152524168, 9009047.50082785, 9009179.313051693, 9009225.680133972, 9009275.524838697, 9009528.065806504, 9009803.604583384, 9009806.187703675, 9009845.087513445, 9009915.165415142, 9010250.0, 9010266.913242597, 9010300.903586337, 9010336.572679576, 9010345.225493165, 9010593.75, 9010596.166346082, 9010718.922316587, 9010800.916836658, 9010857.582597695, 9010905.024374312, 9010933.909510452, 9010969.514666101, 9011034.267645756, 9011185.111775856, 9011360.387361545, 9011404.599078234, 9011452.852259686, 9011609.314732727, 9011852.372147841, 9012008.293844067, 9012037.220969653, 9012193.846711999, 9012384.265249424, 9013251.763376076, 9013407.694362633, 9013410.9375, 9013444.002382696, 9013616.470325984, 9013644.276889598, 9014135.458486998, 9014407.565736044, 9017299.349230193, 9017929.926458266, 9020081.985880682, 9021402.877203846, 9021841.546098024, 9021847.17094386, 9021894.77398563, 9021909.696481716, 9022507.46912218, 9023277.48686832, 9023326.136221964, 9023558.22387691, 9023651.412687095, 9024171.555791285, 9024256.233935721, 9024306.05981932, 9025287.0852794, 9026243.779413052, 9028277.075552113, 9028306.99805507, 9028326.80399441, 9029710.52504019, 9029872.00085684, 9030714.22909803, 9031126.37170779, 9031837.179840019, 9032588.69438471, 9033787.680922687, 9034239.661976647, 9034740.64498864, 9034931.596405659, 9034948.836410787, 9035500.781431787, 9035650.267310712, 9035738.613370782, 9036242.238107366, 9036490.494933087, 9036697.70329032, 9037280.979114044, 9037594.675190981, 9037671.027823992, 9039523.702269362, 9039580.074047904, 9040085.664934281, 9041244.699619818, 9041484.47086897, 9041767.627560914, 9042039.787174234, 9042120.24905819, 9042630.175116738, 9043258.725547032, 9045163.180002574, 9047464.913273517, 9049833.49545692, 9050512.751197916, 9050861.254225792, 9051244.667273516, 9051304.750406897, 9053070.533312593, 9055590.331701485, 9056896.2619014, 9057019.572187653, 9057172.114501065, 9057452.938640144, 9058635.728513954, 9058922.467244776, 9059310.840619763, 9059951.915963748, 9060326.223779796, 9060350.466851229, 9060358.838470658, 9061403.979454571, 9061998.497976555, 9062193.019985856, 9062552.006178394, 9062619.603599217, 9062828.260722974, 9063314.292802425, 9063352.651444742, 9063529.686629022, 9064169.351427466, 9064208.176322231, 9064552.817469105, 9064732.8125, 9064773.708297541, 9064971.002840912, 9065037.82795734, 9065069.145946342, 9065335.342666045, 9065444.422476498, 9065630.782396944, 9065770.180914689, 9065858.603730377, 9065944.26324894, 9066076.5625, 9066146.941901967, 9066252.272862941, 9066448.868681192, 9066713.908056026, 9066745.621589761, 9066750.632142285, 9066764.401852062, 9066830.973848589, 9066833.500763727, 9066920.641241746, 9067155.337668585, 9067167.510183519, 9067170.223597923, 9067244.227019956, 9067444.134761136, 9067492.596794141, 9067512.500743514, 9067519.096265152, 9067966.09038611, 9068135.601975797, 9068975.696390841, 9069074.965993512, 9069127.835707601, 9070305.530842617, 9071385.194069425, 9071741.596720107, 9071883.735563042, 9072062.5, 9072286.286014142, 9072470.223333957, 9072638.709512953, 9072784.014313668, 9073022.615689315, 9073738.94112533, 9073939.765090184, 9074067.870371923, 9074076.2647255, 9074082.650854915, 9074246.744015107, 9074563.311941175, 9074594.775676839, 9074886.207150303, 9075019.845108362, 9075371.648362825, 9075993.330759564, 9076197.407880161, 9076402.760570064, 9076556.38041998, 9076668.51062778, 9076725.98166267, 9076903.61167101, 9076987.13293236, 9077071.166584525, 9077174.788491545, 9077543.945496209, 9077559.375, 9077779.6875, 9077881.189638684, 9078065.413263109, 9078077.808546912, 9078884.979601925, 9079212.716385309, 9079281.308848688, 9079993.653509296, 9080265.163098505, 9080631.395035412, 9081033.380701898, 9081326.776047513, 9081523.65263035, 9081702.273608223, 9081789.967476035, 9081901.670141922, 9081919.616705487, 9082018.406396199, 9082141.957887549, 9082166.438385068, 9082184.375, 9082247.685606504, 9082339.340846792, 9082441.574761182, 9082729.6875, 9082814.415894466, 9083145.231928729, 9083635.000270829, 9084126.831225412, 9084217.820815807, 9084364.963385504, 9084572.258614905, 9084836.060964681, 9084840.095220776, 9085277.834864674, 9085816.417635463, 9085837.143097142, 9085841.905546263, 9085847.225300234, 9088303.070881426, 9088350.0, 9088545.678412773, 9089178.20952949, 9092039.871196222, 9092815.124298563, 9093013.3976325, 9094495.459099725, 9094499.897196656, 9094564.173244294, 9095227.70242839, 9095337.055437494, 9098252.508290125, 9099612.443722958, 9100501.932238823, 9100586.352454452, 9100653.480597287, 9101905.872891223, 9102589.567602934, 9102602.779514523, 9102788.491843127, 9103026.194984023, 9105767.299999246, 9107884.601489644, 9119075.0, 9119182.575659413, 9125327.728454595, 9127516.240650212, 9134500.050856221, 9137100.557492744, 9139861.444570865, 9144898.939188477, 9145681.108223764, 9147049.42905741, 9157994.294984398, 9158142.169593317, 9158550.73991035, 9158609.425224077, 9159115.204856232, 9159303.349227842, 9159325.930641951, 9159508.44076663, 9159962.236408155, 9160334.002464896, 9160522.94864334, 9160634.586099178, 9160786.853988571, 9161110.592019027, 9161124.403598988, 9161328.034694538, 9161461.081969317, 9161693.709121928, 9161724.720680542, 9162509.243207293, 9162942.1875, 9163237.706668422, 9166407.434128245, 9166477.163284265, 9167376.565024352, 9168472.490153378, 9175433.733651843, 9177205.016503423, 9178091.75767264, 9179744.063225273, 9180229.712360032, 9181287.982990144, 9182962.960280808, 9184585.088490603, 9184657.17477716, 9185826.44362916, 9185900.294358708, 9185907.74315865, 9186596.85858001, 9188007.252346031, 9188517.107911343, 9188696.089158615, 9188697.622343313, 9188788.64807044, 9189620.067721544, 9189651.5625, 9189767.663224645, 9189833.037359463, 9189999.234765885, 9190346.742685407, 9190442.972731937, 9190499.234567294, 9190687.85731447, 9191139.93350954, 9191320.0350928, 9195184.74152484, 9196525.764121532, 9197980.474849038, 9203050.538877413, 9204528.495230604, 9204831.2694565, 9205290.792918935, 9205307.119656768, 9205719.64393065, 9205779.106195927, 9205829.071896536, 9206554.51402207, 9217819.079156082, 9292132.376927402, 9588265.400298988, 9591754.6875, 9597698.405932425, 9600540.769277796, 9600782.199128406, 9600819.847898308, 9601664.826007046, 9601848.080866126, 9601927.863180026, 9602715.511272348, 9603423.27591974, 9604296.250710849, 9604499.253835587, 9605087.256240051, 9605273.359618759, 9605567.619744198, 9605895.977651607, 9606104.168646887, 9606287.671659987, 9606474.373144208, 9606560.355906036, 9606959.34293566, 9606993.490215376, 9607304.89555939, 9607439.957236264, 9607524.215436984, 9607948.973430747, 9608166.466287237, 9609520.178000415, 9609817.28694, 9610350.595149308, 9610822.445347762, 9611364.679517405, 9613543.247333238, 9615836.29234876, 9624119.285204977, 9633289.086294303, 9635613.183235241, 9635667.50917205, 9638293.651187405, 9638515.388450999, 9638955.851635681, 9639062.928151324, 9639833.909741953, 9640805.085103413, 9641457.626441976, ...], [8.96954754602744, 18.18814088023199, 12.036941168231019, 12.419158606776294, 9.266329587127029, 11.713246260823281, 7.180273942246394, 11.040492175234291, 11.608385290410727, 7.766426373273868, 5.238587035547235, 19.67902193083116, 18.146766090631857, 13.05959609844609, 20.522892823412068, 5.6701291572535, 12.164340082855322, 10.299919526831161, 7.618323326602773, 23.10002720597082, 14.883834980518712, 6.203875907955843, 9.518207795893781, 5.357829042617497, 7.143192356804557, 20.602843061977943, 13.70331048775446, 9.526280795221284, 6.246365943954873, 9.895695315485634, 14.004266306574786, 23.1272132642234, 5.964821830462379, 7.66472692634583, 9.213187700541834, 7.759966845503007, 7.571311699360831, 9.903664659140064, 13.860476721583009, 5.595787082589787, 23.467185656229997, 68.63098055129795, 9.510037746957739, 29.957258130715136, 8.334167570531363, 10.591967507600051, 18.721253607054912, 7.0367860171526875, 16.27853002731443, 11.869226116555083, 11.83162117333653, 23.973422144296876, 20.22618149584853, 20.972351347290907, 16.057885500237877, 13.783449109828299, 19.747681633073785, 20.2999516566514, 33.035957317054695, 29.30042671375444, 7.857853583739508, 15.48141537877329, 18.272185991174993, 19.56175818175616, 12.512874887402301, 24.651607227547267, 8.326635524353465, 11.724472684842967, 13.32862489184609, 8.10992079111594, 13.464031313161017, 16.390610873095085, 15.394603231526943, 20.249881559714417, 25.142671524997972, 38.5332228947168, 18.263344613186373, 11.438106239424757, 20.666916141332283, 22.631918297810337, 6.272977347292272, 7.3027478027249755, 22.224615145349347, 10.135977099132505, 8.308137085148413, 10.98730482408362, 7.6593699087714295, 18.62822255595284, 6.214411727871507, 18.82092289564736, 17.16138420722164, 18.81868883253786, 9.240394024023765, 13.652848593924045, 11.016237491820236, 5.870979506672201, 5.1641252084508675, 14.69200096111341, 6.937523961133126, 24.31265116495791, 19.771834911215663, 9.641946714887723, 22.06331087375466, 14.480028461581718, 15.939418423610368, 6.839007038975858, 9.654018028093072, 5.214248039256715, 6.7492190261699125, 33.78389483141865, 10.219790922093143, 6.879461541013974, 6.3296508614470985, 12.336400554978063, 29.081051890683618, 7.305896511799648, 10.175122185179928, 13.155270120421859, 15.857046946241809, 11.74328255913195, 5.8554409618318815, 20.551171318543723, 16.148007700069343, 5.798838832063067, 8.887506485556004, 15.23601965440557, 6.50578360162991, 6.208309232385862, 7.2018723272477985, 14.34149603047041, 5.190440984647521, 7.778532311538316, 6.591773156029475, 17.697192725529213, 8.949627875082943, 17.03326426099796, 5.3321759558520965, 5.686538285459402, 36.71169645610557, 13.46166418557104, 7.4486893555828555, 15.193125195632412, 6.307351233388833, 16.802370420206156, 9.821330443613187, 5.295442790455459, 7.6289780336428015, 6.936970506086613, 5.777389536101003, 7.880622216461371, 7.11193993531025, 14.55144188889511, 7.865782545084449, 13.204540726121836, 6.055045681222442, 12.819884472028718, 12.76311475077798, 5.962422196747465, 5.1726576641543, 11.555727950273344, 11.00642060051622, 44.51053984251659, 7.471974248747772, 6.298239995113667, 8.401955427694014, 5.87333304032731, 5.247041111070711, 27.508546235999667, 7.501252798728219, 6.808775578640357, 20.3291999314813, 22.7159670221451, 9.170248434885215, 19.709125176521972, 7.019454648749919, 13.771095660414222, 10.44783791825725, 7.107047692466784, 11.644835317060092, 11.377118453119621, 13.007020269526857, 17.247426106859336, 7.27486855388068, 5.98719424481225, 6.481620110328564, 6.311782853079119, 7.604300287245854, 122.32740629028645, 9.472415460994805, 7.358654004862165, 7.12652745626434, 5.217989035331337, 19.503613494091926, 26.12940872575263, 24.231989841968215, 8.820313441980334, 13.947540732977927, 8.481212241908718, 13.369696633867436, 14.559220185685051, 8.713136315564165, 28.033467298856124, 23.5380670917306, 15.433290794366643, 5.320698116779234, 13.0999026259212, 10.763129335285203, 20.61079542000249, 23.02008200333464, 32.303188388116084, 13.782286130070826, 21.964729877666, 6.19528029945864, 14.416188363234395, 17.433622991224713, 7.38536137083142, 25.438074856441677, 16.314516147611023, 25.886709243926106, 11.665819447717597, 23.805279471048276, 9.415097537190276, 11.880135044807965, 9.507544433786057, 14.892057818412088, 10.316224132705043, 8.159506807331441, 9.011585207555953, 10.159315452311006, 7.2186529653385145, 26.73207756123868, 10.187925502417366, 17.862743329567472, 16.684303067406365, 17.253928688260714, 25.273743544135726, 18.121345393532255, 7.17183200820583, 20.18601029504777, 20.90328161772591, 5.797231358972224, 5.701923794491928, 8.38738980926101, 8.430045937735338, 7.878863912876221, 8.366411197825304, 27.87365104737651, 14.987353147201851, 15.789059262772934, 11.873629225099084, 12.872715718239986, 5.174170244302033, 23.234081907404434, 20.08794589783753, 29.85774897798674, 9.141219614689449, 23.1204797804396, 16.251068256362004, 10.417754592215712, 7.741150697730916, 14.126355576386901, 8.403372380595306, 24.92581962892242, 5.943269619420127, 26.12799032226521, 25.77335192038231, 6.173196893311288, 8.630297811725656, 7.328689772780694, 19.682178848179277, 6.365465035092105, 19.66197181216429, 29.18173740128975, 17.689440754228755, 22.531113537631352, 5.680441652062019, 12.960039914386476, 9.765584455924188, 26.774273926987494, 6.610655663334928, 6.656809341179271, 12.50897121028334, 7.696563339397367, 9.576782529764285, 8.15302186235624, 5.5948882119850145, 5.830890116895416, 26.032799156407567, 12.984412241414484, 13.863729803356284, 21.835964814580493, 14.998982117538187, 10.379011834477218, 8.759055195811493, 19.54440853696855, 29.422020741855412, 12.120433321315048, 26.227065757192474, 8.301139249486265, 5.514607001701829, 6.964851643683442, 15.121053118950243, 21.260345923376796, 9.726572545515994, 14.989747176242654, 17.071844139377813, 7.3811617091410495, 34.58098782700444, 10.344785587252021, 12.090915851870733, 19.47411469003186, 30.993133836194016, 13.279665083781794, 12.048109116099134, 10.575808902552392, 5.94181843676778, 8.265392528367657, 27.14473242955064, 5.630834576569097, 5.145407000671487, 5.630700887100481, 6.4552474548193155, 11.142119773876182, 11.54722699019126, 16.260962357234572, 16.388652571477195, 25.121224089538643, 13.09341558564898, 24.043688073699432, 14.638457755037281, 13.5907364235711, 5.46444990554674, 9.271138936035928, 13.627553837474702, 27.145243341623996, 12.280748995921837, 9.883030196776355, 9.418207081556673, 5.030769561742554, 15.140917147684034, 8.44915007398493, 8.735240242130887, 18.479975308636714, 16.80433306586768, 21.565110036242242, 14.379351218636856, 13.799976734521884, 17.886686294342795, 14.297403161910111, 8.70966214335854, 26.420106670087534, 13.077408579417972, 16.133776641668973, 13.254933024930562, 14.06229071698576, 14.967824759442184, 6.003773463488546, 17.78646108178905, 27.541578909392484, 6.452096730576272, 7.242205975479558, 9.434315672471481, 13.540815146927159, 12.075680178103658, 6.738411903012829, 29.607170702958296, 13.07872017684838, 8.49702780732603, 13.968992585668438, 19.17376091329539, 14.81302180436878, 17.406453265864684, 15.592621985640504, 5.484032971774301, 17.5648495997316, 19.40876109115219, 14.257067084179294, 16.52620702180015, 13.962849302051536, 14.568079309296085, 18.555184126783363, 5.627352345947831, 5.698833180013372, 14.14749684985413, 14.76537894521048, 18.49396107278392, 13.631752070501422, 18.333264890542395, 17.848187347686086, 26.826069753818476, 14.383047157028724, 6.463029846123121, 6.898311019500329, 25.16863714882976, 6.459915968024128, 17.576234113712722, 21.418957859877253, 10.283520773346032, 33.83768155564253, 18.890127514299323, 10.171151551286965, 14.59406556742173, 8.018715825979688, 34.64217290775749, 11.440532331490113, 6.891277526850189, 14.343767932856702, 8.22647182841353, 15.457685497728697, 6.767220276396229, 16.586599982348382, 19.585942328904498, 5.921796178639127, 6.091724483877817, 24.68882631722765, 28.816832761213202, 5.040680437366849, 8.161959435527372, 6.798285701576425, 18.237307894251245, 8.004959056567921, 5.908146785031095, 6.285578042531846, 16.795531524865975, 9.226345846763543, 15.989363248016248, 13.438078150557166, 17.013851754094652, 14.658585402918307, 6.5523826584237845, 25.493672989422123, 20.46459842845227, 17.236926001070753, 5.521253715664452, 10.374067682129077, 10.694427632380602, 5.625285841824949, 5.247653879521983, 39.40452979815122, 10.179943413441924, 8.5197643459534, 8.84120944425823, 11.018270916889009, 6.51228564390057, 7.23196576253249, 22.6340765535885, 15.39825405788824, 6.884961043187941, 6.972518313093472, 29.26320347515593, 6.581140971172643, 5.638729332117477, 15.974932288910992, 23.882984902913783, 11.113083135247003, 7.224560355595274, 16.66837639337048, 11.299531304233577, 14.527903070729948, 8.435545241584785, 5.032926187964272, 8.411937890879766, 5.44320745566681, 13.252701812272425, 19.549181111119598, 7.667039915038648, 18.876323023852425, 6.134957852816822, 8.087797392185438, 17.208393882738076, 8.052295125093584, 13.442823532041377, 5.565781982250076, 5.581436371644383, 5.829017769956421, 15.444251747114913, 11.797749941275354, 22.911617795986214, 19.985882369196098, 14.780222847508387, 12.925447574752505, 6.979851913687822, 10.803687779250666, 24.822845384884385, 28.002781259492483, 12.496519965979616, 38.286239949622946, 16.733626548093067, 11.559373638262, 7.978307289582532, 21.712074706962245, 18.498385187677915, 23.1795564677443, 19.044461241075258, 14.453478903329575, 11.41819703849587, 9.218337999921085, 35.39691699168348, 11.699745202093858, 8.136432379764248, 7.767905022484296, 20.04315478190311, 17.748704126119666, 19.024689751522434, 7.192923139101685, 8.349412130153526, 5.683687257546988, 30.739780943470628, 11.484910236374851, 19.214867899561483, 6.7592989615501144, 5.1625456231144975, 10.374614303059332, 8.40175561211039, 9.939592554609131, 7.364254378865857, 5.7677260180303165, 6.101909434968167, 15.77789731009801, 20.095575646121343, 7.863678222489, 15.204959465477911, 12.567277861385866, 5.244212758642511, 44.632954585577316, 17.590070070146755, 11.056932531780626, 8.559349006562172, 8.77823587938093, 5.961580261812889, 7.954447907007407, 13.523430104327428, 6.823112496229218, 30.815712403174732, 9.410749087638646, 23.351456286569892, 7.340935705672286, 10.68485915319267, 51.17865238084083, 17.950223840553456, 15.93705338957868, 14.801411870948312, 10.363803915409187, 7.344426379732137, 14.392433344122908, 11.703768192832985, 10.914741937845072, 14.055116009649652, 15.37953332638827, 35.37571519772326, 8.97376901561229, 5.574836769095494, 11.981371369631178, 6.802081018051901, 17.709749920884516, 10.364887631270088, 12.468233825043775, 26.561935558326855, 23.93930184010039, 6.659632712781382, 19.304404675317574, 8.328556532368495, 29.55678600665263, 14.122751199961312, 23.790785622711677, 39.80253168853471, 6.079367619705172, 13.594389242082165, 10.605367272232609, 15.459789924197318, 14.365736380988945, 18.253506330550213, 6.342404578726525, 6.569467738030802, 5.456327212407494, 20.885838964298237, 8.54136093216542, 7.491122917540311, 15.54449143640875, 6.313221917059967, 15.705947971772275, 7.009507386444177, 12.170685704823784, 6.243203758556379, 15.57615559910002, 7.906671965194041, 5.883546233169264, 38.450898675443845, 31.477547143665696, 12.588519410024317, 7.2349714462561465, 6.748717729791243, 5.281359316928618, 29.25096595086329, 13.252032808148007, 16.126446923328224, 5.867133290088447, 13.854965723430015, 10.563612935636716, 13.954467969123252, 18.19359226880635, 9.086960411506878, 21.071158346391858, 5.049325581334965, 26.40805698121749, 16.89580842289325, 13.782232371732244, 16.341285917705857, 21.382409159658426, 32.575329509579724, 24.35292202573224, 12.697908763348455, 29.457571676196714, 16.12072195928958, 15.582083158234525, 10.624684880752913, 13.295057215777568, 17.277638507868318, 60.01099794696911, 19.054395886687875, 5.14410642452966, 6.221020964441965, 18.372558262192175, 25.668596054784217, 7.581967797642596, 6.329753331174107, 14.709264865856335, 9.148143898778837, 15.293303931482466, 29.853396218872984, 10.724477480517914, 20.041936496747063, 59.66582648623159, 8.241096405898828, 37.35231664331962, 25.679057552952962, 15.641660875120309, 8.839249653994905, 14.13210862309894, 16.402391596786696, 5.089403394727938, 12.5782059997534, 15.478964960315238, 12.514497600286372, 43.956106792915364, 10.992254461598513, 7.507483543444232, 8.254962058104084, 12.683073705408148, 17.082876811665287, 6.44422262966283, 11.282315282670618, 8.229379758146653, 18.430928734667873, 57.60461806839971, 108.6186967650519, 11.54652524913379, 10.165535498868259, 8.586349867467138, 13.383894352851776, 24.45544154489382, 29.988571228110224, 8.417118401798103, 16.356665763557583, 14.074262720478568, 12.95477340289769, 5.409909498295039, 11.53296275386672, 16.326920281727677, 13.776490751186337, 5.5028912915387185, 10.520937244560823, 9.705281639754922, 19.739747947151137, 23.508439223853202, 16.238807570895858, 21.198760908664422, 22.3881903173808, 6.491711889760442, 9.806477595721846, 6.366574050435839, 11.52739321375345, 10.538900984683725, 35.748622994327675, 5.468962836755254, 7.07218537447492, 13.847135763704108, 28.27409506642794, 7.670011847961349, 24.93237091154547, 5.399238729147346, 5.633499954386229, 5.844097869226793, 6.930229712303401, 11.572921655761933, 5.589671218428349, 11.207741582687094, 26.194646975609196, 13.029407524434454, 24.129896134325914, 6.96342802706453, 7.884209901641719, 5.210220329333063, 11.790908648172453, 8.147514242721854, 20.436413318884775, 7.638283830022419, 11.893068120743374, 18.67637966392519, 27.32944360628778, 17.515023688335663, 7.970607111558411, 6.161788212111931, 21.08306436297368, 12.394304579207382, 6.814714346798202, 5.548652264650759, 20.157192512645555, 15.186827452507494, 8.406903605732145, 10.698252426725466, 11.63483321914557, 39.10986335180949, 9.5424721441261, 25.31964245747327, 6.722489216946404, 36.17278747109625, 14.584672123461722, 7.2175733111905345, 23.268431917625346, 6.860431783769182, 22.99049452018245, 19.641691899641817, 5.2468410656900994, 12.737344922610392, 5.735588948498332, 12.788149374741248, 22.484125151455167, 6.810372460786529, 21.761020155663168, 6.2670883317413795, 14.99931033120447, 16.536832842150023, 6.056692099677529, 32.46820875621581, 16.084949070979132, 18.44103998450979, 11.682177391909113, 16.70106481470259, 20.59651836944151, 7.866026005762414, 5.588688592849761, 14.462615849449728, 14.339530496526407, 8.578016469312836, 40.08646513991965, 8.322275928011907, 5.082045806117861, 13.73336490680916, 25.80693611580575, 7.205143538360573, 7.298166292265473, 8.474572887829625, 24.06023057579505, 18.427049362284222, 16.362398893779268, 6.352992469654418, 16.332778836059976, 6.473244774734201, 15.457777408217883, 11.787545232913333, 5.73331130998731, 5.341947160346485, 9.642420390500178, 22.551991755022915, 5.28083445300578, 12.423974267126598, 6.262911432365916, 7.047426730781582, 5.762618420552921, 12.161529833299408, 25.755339649494964, 10.256448936659163, 30.08978325548905, 16.460096634933947, 26.877603941365237, 5.909243682609421, 27.90519401181365, 17.230743317801444, 26.33630339778646, 6.16434247227362, 7.870420535655361, 13.91625659751887, 14.35922258633641, 26.179793169376357, 12.688491786350596, 6.987142382997008, 16.73773699507762, 10.468099533490754, 12.084205056568763, 17.616520527249186, 23.589811956384388, 10.602159996761245, 21.629289745634942, 6.237421814206501, 6.652834432769814, 17.189707719938756, 7.028191798980902, 5.663108625072276, 14.192291615711467, 9.502363952766977, 31.776083815061813, 51.38693919299352, 24.266290533811187, 14.191539655192592, 13.85851273746023, 17.88574039854172, 7.179518709402086, 11.22095406344581, 10.980162284072788, 30.57510214788323, 11.36223521639863, 5.990464052039664, 7.68234445117051, 24.69599147143557, 12.456730372511174, 18.740252561049036, 5.620027034995291, 19.739570784638495, 5.51663355459263, 14.133051301951925, 24.91596455134114, 32.41625807332852, 8.76741891347917, 9.578399172772286, 10.288330137535612, 28.627567633683594, 9.649231431416522, 23.945866864640497, 23.376179501943344, 16.283262207396216, 18.35903980569862, 23.754908500498885, 11.785389164752214, 11.326334262520287, 22.771484790663663, 23.877572390901165, 6.618962333368332, 5.516006062719892, 27.53216734538575, 48.62811938399107, 7.58378049868329, 31.45958687518855, 11.752249072363961, 34.7159492888001, 19.28684994301021, 10.425948483707824, 7.9637206151301685, 15.53135716792189, 9.245964003086415, 15.38111185892032, 22.30190166810327, 22.064538169189756, 6.968254723350931, 14.731260243241515, 9.664912322372183, 11.8447919621763, 16.495482606027657, 8.096739653470948, 9.798428620836583, 7.033501962129726, 5.506011237976372, 7.475510483300044, 15.388371727027039, 5.135372380535703, 36.687800850406695, 24.592495186452712, 14.297645508988225, 7.8421952924190474, 15.13895848382502, 17.598849786349334, 20.272171927888927, 17.27434188758111, 6.735528318477885, 14.040983997057163, 22.824905912351234, 5.812656511747296, 18.78335108891789, 9.37423461509617, 13.550207011217362, 19.166464753956284, 13.629590663634296, 9.925860265980704, 14.023764354666623, 22.866410228670617, 6.998613947176227, 6.294242795255622, 19.857011622503215, 13.770143284641891, 6.973030797336719, 39.85464706853429, 22.294521220602, 24.590834358049833, 30.973899977171165, 14.461895185745295, 28.786818598887027, 6.805479836101327, 36.921533486259534, 5.746090963899905, 11.131654819883746, 5.7470593664539935, 22.434659864442633, 7.726730830103449, 22.222885636882943, 11.655335119131433, 11.166788242195151, 6.863921084799936, 13.988658523421925, 12.462057746217214, 18.650412299077733, 6.468617247696398, 16.19620616183144, 7.103342446524521, 7.117142020327742, 10.352138543168003, 11.005542396821426, 24.33795085541969, 6.922480361426456, 13.566676470686465, 10.765507632205953, 37.197662861354495, 9.76888594316168, 7.686641844359956, 10.110712889716604, 14.460082181864157, 13.150887334186512, 28.3923523920869, 16.504092427823828, 18.607410904830417, 24.04368799104024, 5.30254482564383, 6.613938668246719, 19.126877271713656, 17.488805211037988, 44.46180012835612, 15.01619071505213, 11.400726435050315, 19.763337488818486, 12.76936303725759, 46.165494123405686, 6.646529393283384, 14.31909930289603, 7.210751085173422, 5.192465081242363, 5.9200732000481375, 32.03284865931243, 5.164627047027573, 6.509948402820264, 8.861548544898142, 10.471656499512488, 6.008773588245186, 16.28206290262507, 16.068234709352524, 7.562615806868111, 5.33641523766582, 20.336810313169615, 7.927828453533029, 12.996618565007644, 6.080037526014767, 16.892037408852264, 9.965188550330211, 13.27470667433379, 8.379489134360625, 5.227933178694145, 10.32595798469985, 15.804994962818999, 7.51190488494756, 15.798627502235862, 5.433817183026078, 6.9294331008880015, 9.829776402260817, 8.787928172032599, 5.456023128191041, 7.1478390715733555, 6.584616607267278, 9.865201765720263, 17.963427989304872, 6.41107875081333, 16.491733350318974, 17.46731092289467, 5.165916108373737, 18.39329525669586, 6.122201499615598, 18.381261757903566, 14.110541629676332, 13.613296673780486, 16.870209145480175, 13.42221394346609, 16.70965646196089, 5.80034064353948, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([4660449.538626937, 5918020.928762456, 6538250.5130164055, 6762369.444217099, 7155848.3595246775, 7245084.719875261, 7246362.7191414535, 7263637.443476916, 7267447.162195933, 7267494.179726628, 7299063.826472335, 7338689.741853779, 7360831.895763412, 7363948.678484648, 7368029.129961303, 7377380.6586546805, 7377938.075379429, 7381854.084395692, 7384146.91651786, 7412230.897291277, 7417956.234785694, 7418036.981809903, 7429411.150460741, 7431756.706997424, 7436537.58206466, 7454183.780871639, 7455851.194701823, 7468179.909318529, 7481868.583313428, 7482208.4121220615, 7487354.275530326, 7491123.087066455, 7492154.974797693, 7502128.291867885, 7527698.294303104, 7527717.600995382, 7527799.9108582055, 7541633.419719903, 7543871.259811994, 7554088.727703919, 7555057.772108387, 7558892.1875, 7561636.141468325, 7590735.9375, 7649100.088922538, 7655488.690396989, 7741064.793593294, 7821976.230319472, 7823312.81151002, 7827300.427701878, 7849225.408048707, 7873979.404735163, 7875029.579152515, 7875340.071163312, 7882903.389998593, 7897757.471424497, 7903841.492713692, 7904638.433952804, 7909997.988703329, 7945124.786875207, 7975870.965575343, 7978101.697288584, 8002513.377162367, 8002649.061014929, 8002705.698286699, 8003067.919871449, 8004414.137490169, 8006095.663453386, 8007451.063441344, 8034568.400301087, 8046023.8855868345, 8050873.771984293, 8070487.614003772, 8114080.615636929, 8166207.614179166, 8200504.676830428, 8201186.01002254, 8202851.752404293, 8208416.490414947, 8212550.571262621, 8213723.4831039915, 8216294.3975295825, 8219156.2641320275, 8227688.319526569, 8230559.415548506, 8233998.345778959, 8234198.590075725, 8234548.797065335, 8236421.445451622, 8236531.051695138, 8276123.1522885915, 8278760.250485294, 8278829.57787029, 8280869.635096786, 8304903.052495343, 8305474.179236193, 8305529.634333115, 8307967.120461302, 8312761.7508327495, 8323057.018495022, 8327398.1252240455, 8328003.470768661, 8328077.68032226, 8328198.310916808, 8330100.239296118, 8330197.241769757, 8330998.795893806, 8331686.357197136, 8332598.365510498, 8335046.875, 8335608.704507049, 8336538.054330895, 8337008.2913224045, 8337505.343951977, 8338615.039921953, 8340194.408077196, 8349750.853637419, 8352196.311437416, 8357003.346113353, 8358145.673595987, 8358305.232550621, 8364251.505826056, 8364343.90636003, 8365652.918243672, 8374390.04882036, 8381643.82518041, 8396162.618215479, 8446837.019230684, 8473667.48484763, 8495912.896597119, 8498357.295239482, 8501036.397481881, 8503739.699295163, 8508014.63636914, 8508621.386127122, 8516777.020884648, 8522835.65030545, 8525269.99003504, 8529128.125, 8529368.298782077, 8529418.301477998, 8529563.977187593, 8529850.311334508, 8529865.146472936, 8529969.277659563, 8530022.015364228, 8530056.320611907, 8530241.435918521, 8530565.117916273, 8531086.64440499, 8531467.151191812, 8531646.76875335, 8533180.359399827, 8533962.500082808, 8536804.363537727, 8540279.820522055, 8544547.816802207, 8545201.82305696, 8555701.8730465, 8556298.695099514, 8558256.170993885, 8558443.75, 8558876.184383087, 8559939.304306222, 8560422.086989813, 8562416.396180218, 8562437.567595944, 8562445.258977259, 8563515.33394052, 8576878.34759891, 8577553.177410593, 8581298.051930435, 8583445.115555814, 8583451.892949184, 8585371.47223593, 8586094.72989263, 8586605.037725247, 8587153.069920035, 8588017.494933136, 8589400.153913356, 8592643.29072699, 8592659.972280685, 8594673.990652949, 8595739.595367411, 8597464.027509458, 8597623.782420557, 8599026.56543699, 8599040.625, 8599262.662189916, 8599768.019036256, 8604429.706774063, 8605820.87482829, 8606482.086903257, 8606577.99089197, 8610096.611763863, 8610439.951662337, 8610814.914145265, 8611661.28827402, 8612663.578361046, 8613198.333451232, 8615691.35301505, 8615705.762333395, 8615804.30661171, 8616096.998306628, 8617424.367274694, 8617719.72779792, 8618101.316023085, 8618121.260004401, 8620213.047178803, 8627490.086533451, 8635007.471039938, 8635870.76780793, 8636005.658747612, 8637059.229992997, 8637206.77942493, 8637483.729557669, 8637596.696532607, 8637625.291801408, 8637860.621158814, 8637884.693992317, 8637990.911508206, 8638071.972350247, 8638130.12086646, 8638140.826218385, 8638202.945733521, 8638218.160386834, 8638398.189221151, 8638701.158392334, 8639360.21491871, 8639908.169800023, 8640792.089827826, 8640939.927195124, 8641092.78839934, 8641364.455206867, 8641458.310584372, 8641720.437161397, 8642327.204323303, 8642536.125749975, 8642741.545664651, 8642925.840158274, 8643035.70854196, 8643099.923772411, 8643154.873393688, 8643650.261793057, 8643699.14027266, 8644326.710476384, 8644331.216229994, 8644403.056209795, 8644556.45590865, 8644828.554990215, 8644900.888186054, 8645037.874250254, 8645561.528981272, 8645735.284074184, 8645776.5625, 8645940.391176054, 8646076.211503549, 8646106.947610736, 8646416.680269748, 8646583.17836392, 8646663.830827536, 8647047.089518486, 8647221.121753374, 8647485.9817643, 8647593.615803842, 8647942.030902945, 8648122.65540449, 8648455.285450611, 8650692.921268605, 8650866.1920921, 8651041.365111198, 8652816.48200574, 8653680.180295084, 8654050.572587013, 8657723.035619508, 8658193.328401955, 8659171.235688943, 8659561.409921667, 8659879.592305595, 8660522.620419394, 8660632.253483307, 8661067.921836019, 8661792.438365119, 8662042.464110259, 8662824.738607047, 8662952.773469623, 8663592.413452096, 8663745.17236295, 8663838.43283213, 8664482.497743797, 8666003.348198526, 8679321.138441144, 8680544.774160104, 8681496.110513156, 8684860.217121936, 8694737.746152164, 8699378.594133236, 8702964.161626194, 8705295.33993567, 8705696.488394454, 8706097.80627449, 8706324.787674699, 8706624.476346591, 8706797.30808576, 8707781.262598436, 8707861.78386634, 8707863.403709065, 8707910.9375, 8708121.308843357, 8733212.19767365, 8735796.054584932, 8762679.6875, 8765714.814658875, 8768778.643565621, 8770513.678181149, 8770617.215165572, 8771028.08472324, 8775746.553575477, 8778153.424564866, 8781742.872055266, 8781809.672210354, 8798145.106308347, 8798950.009201443, 8800658.065280966, 8800837.807869857, 8811803.45908655, 8813479.487715755, 8818065.03780365, 8838929.410092806, 8841142.105651958, 8843757.40638167, 8845893.812369853, 8853845.240357924, 8853923.044016486, 8854091.203925148, 8860449.198657613, 8883300.587502426, 8889186.038405374, 8892241.53822164, 8892334.386069573, 8892572.17027518, 8892708.574392391, 8892770.269065177, 8894480.103212444, 8894887.007188471, 8894895.156755479, 8895315.289379431, 8895445.79068931, 8895517.57099454, 8895766.347659254, 8896068.059286086, 8896122.844133114, 8896436.218692586, 8896715.098827602, 8897155.998473885, 8897223.063263334, 8897269.46059718, 8897383.401027054, 8897723.385789951, 8898018.523069648, 8898883.252780154, 8899301.681752825, 8899382.389088495, 8899987.037640488, 8900138.93548862, 8900410.9375, 8900435.344639571, 8900436.315335356, 8900516.906588526, 8900573.706270553, 8901043.715876339, 8901216.333835235, 8901307.043900145, 8901320.821210574, 8901494.301774276, 8901541.449660126, 8902063.87053964, 8902144.111713985, 8902638.77963364, 8902868.64845045, 8903120.117378566, 8903265.863077456, 8903384.249755038, 8904121.649822302, 8904506.203009687, 8905766.323160963, 8907960.545450857, 8908752.084999997, 8909395.911049278, 8909907.74574864, 8910059.220336348, 8910352.969770256, 8910527.20220065, 8910640.28433788, 8910851.386924285, 8911680.292978762, 8912534.103812275, 8913680.63325203, 8916739.132771982, 8918075.850890823, 8918803.975198286, 8919153.030756438, 8920140.081623906, 8920644.824695453, 8922064.253823232, 8923149.045493111, 8923196.708808385, 8923313.947083483, 8923366.686922515, 8923925.018573396, 8924096.890696354, 8924530.534906434, 8924535.733047727, 8924579.72228929, 8924721.645054286, 8924798.496966777, 8924829.636197016, 8924852.881669361, 8924861.109246276, 8924940.8943013, 8925185.364075074, 8925635.571420552, 8925817.331602946, 8926223.851540556, 8926296.748084275, 8927054.937695805, 8927345.537517767, 8927388.227492977, 8927660.861237021, 8928125.404237129, 8928363.330966152, 8928475.952822685, 8928955.182573711, 8929034.128882175, 8929365.082661323, 8929877.828911308, 8930179.88893112, 8930206.339384232, 8930546.222337889, 8930561.795307007, 8930916.041380355, 8931432.16968751, 8931579.616339635, 8931732.97135998, 8931769.154368505, 8931901.169745322, 8931942.302384434, 8932092.766868746, 8932180.651423324, 8932243.302264404, 8932444.324827863, 8932622.312748559, 8932652.829571674, 8932761.141418748, 8933095.303124042, 8933142.565739635, 8933375.389620624, 8933436.04471537, 8934068.180404449, 8934762.771463186, 8934838.544790829, 8934904.917266918, 8934916.747849783, 8934993.222999673, 8935011.780230636, 8935132.98552457, 8937419.502970397, 8937803.56386235, 8938199.60418634, 8938252.052503666, 8954369.841536626, 8955541.556330634, 8956086.59337323, 8956477.520149874, 8957720.513685549, 8958776.688430531, 8960033.20267728, 8961273.479189662, 8961538.396856787, 8961574.95703109, 8961710.284408135, 8962118.182476554, 8962856.032316873, 8963269.603608364, 8963275.748126308, 8963346.041326828, 8963818.119755654, 8965797.277214382, 8974350.259662502, 8975827.492713852, 8976207.334174518, 8976551.506309355, 8976706.570898917, 8976882.8602057, 8976909.464515008, 8976909.553223358, 8976967.050686257, 8976972.781525644, 8976995.650041074, 8977435.642355455, 8977625.433433523, 8977719.653732065, 8977775.58411917, 8977826.44774674, 8978140.890086763, 8979712.616961049, 8979744.943788148, 8979784.375, 8979837.717108414, 8981083.61164755, 8981326.541387666, 8981429.566175919, 8981576.020603748, 8982295.524133084, 8982675.641204622, 8984235.224594593, 8984336.854669122, 8984422.006763007, 8984437.703395132, 8984508.722481137, 8984639.729412116, 8984770.379943784, 8984788.259912662, 8984834.341646647, 8984956.25, 8985244.98027308, 8985337.454243982, 8985403.607497437, 8985699.264323404, 8985845.563655999, 8985857.126784042, 8985918.32052204, 8986183.103907265, 8986210.191160329, 8986339.154871378, 8986603.481511286, 8986675.773960406, 8986863.759416403, 8987245.3125, 8987367.019112842, 8987504.484030943, 8987543.712751701, 8987574.44933915, 8988205.472857049, 8988445.160577746, 8988598.777229296, 8988779.546840852, 8988946.62123415, 8988948.547862405, 8988993.75, 8989872.981924487, 8989968.018856568, 8990191.110163413, 8990270.502695097, 8990331.992746055, 8990440.075219197, 8990508.528748617, 8990679.335095467, 8990785.537346855, 8990938.51893712, 8990942.063642869, 8990995.39104854, 8992160.854415791, 8992618.517217444, 8993832.897725519, 8994423.184064128, 8994651.478114601, 8994943.345139716, 8996115.262979392, 8996284.504641298, 8996473.277766978, 8996793.024193274, 8996939.635439092, 8997853.631113475, 8998435.810156066, 8999010.136138903, 9000641.077606801, 9001304.366502952, 9001817.337188475, 9001847.230794447, 9002139.34477411, 9002157.368811412, 9002341.203432646, 9002437.307693435, 9003307.969605168, 9003483.580149751, 9003657.14791516, 9003707.8125, 9003965.579341518, 9004007.904903835, 9004322.289935518, 9005037.425469171, 9005316.869328847, 9005381.25, 9005610.410251345, 9005706.130116083, 9006005.380922982, 9006332.49489216, 9006380.856419064, 9006498.911609912, 9006627.515847217, 9006693.446033712, 9006719.769135851, 9006845.769228123, 9007061.71041196, 9007077.537588505, 9007179.346022159, 9007204.577920405, 9007355.738831688, 9007376.382161938, 9007677.870724276, 9007738.195033543, 9007799.186141275, 9007823.463308264, 9008209.533488939, 9008482.464938942, 9008499.48864597, 9008581.185119862, 9008765.273417434, 9008960.152524168, 9009047.50082785, 9009179.313051693, 9009225.680133972, 9009275.524838697, 9009528.065806504, 9009803.604583384, 9009806.187703675, 9009845.087513445, 9009915.165415142, 9010250.0, 9010266.913242597, 9010300.903586337, 9010336.572679576, 9010345.225493165, 9010593.75, 9010596.166346082, 9010718.922316587, 9010800.916836658, 9010857.582597695, 9010905.024374312, 9010933.909510452, 9010969.514666101, 9011034.267645756, 9011185.111775856, 9011360.387361545, 9011404.599078234, 9011452.852259686, 9011609.314732727, 9011852.372147841, 9012008.293844067, 9012037.220969653, 9012193.846711999, 9012384.265249424, 9013251.763376076, 9013407.694362633, 9013410.9375, 9013444.002382696, 9013616.470325984, 9013644.276889598, 9014135.458486998, 9014407.565736044, 9017299.349230193, 9017929.926458266, 9020081.985880682, 9021402.877203846, 9021841.546098024, 9021847.17094386, 9021894.77398563, 9021909.696481716, 9022507.46912218, 9023277.48686832, 9023326.136221964, 9023558.22387691, 9023651.412687095, 9024171.555791285, 9024256.233935721, 9024306.05981932, 9025287.0852794, 9026243.779413052, 9028277.075552113, 9028306.99805507, 9028326.80399441, 9029710.52504019, 9029872.00085684, 9030714.22909803, 9031126.37170779, 9031837.179840019, 9032588.69438471, 9033787.680922687, 9034239.661976647, 9034740.64498864, 9034931.596405659, 9034948.836410787, 9035500.781431787, 9035650.267310712, 9035738.613370782, 9036242.238107366, 9036490.494933087, 9036697.70329032, 9037280.979114044, 9037594.675190981, 9037671.027823992, 9039523.702269362, 9039580.074047904, 9040085.664934281, 9041244.699619818, 9041484.47086897, 9041767.627560914, 9042039.787174234, 9042120.24905819, 9042630.175116738, 9043258.725547032, 9045163.180002574, 9047464.913273517, 9049833.49545692, 9050512.751197916, 9050861.254225792, 9051244.667273516, 9051304.750406897, 9053070.533312593, 9055590.331701485, 9056896.2619014, 9057019.572187653, 9057172.114501065, 9057452.938640144, 9058635.728513954, 9058922.467244776, 9059310.840619763, 9059951.915963748, 9060326.223779796, 9060350.466851229, 9060358.838470658, 9061403.979454571, 9061998.497976555, 9062193.019985856, 9062552.006178394, 9062619.603599217, 9062828.260722974, 9063314.292802425, 9063352.651444742, 9063529.686629022, 9064169.351427466, 9064208.176322231, 9064552.817469105, 9064732.8125, 9064773.708297541, 9064971.002840912, 9065037.82795734, 9065069.145946342, 9065335.342666045, 9065444.422476498, 9065630.782396944, 9065770.180914689, 9065858.603730377, 9065944.26324894, 9066076.5625, 9066146.941901967, 9066252.272862941, 9066448.868681192, 9066713.908056026, 9066745.621589761, 9066750.632142285, 9066764.401852062, 9066830.973848589, 9066833.500763727, 9066920.641241746, 9067155.337668585, 9067167.510183519, 9067170.223597923, 9067244.227019956, 9067444.134761136, 9067492.596794141, 9067512.500743514, 9067519.096265152, 9067966.09038611, 9068135.601975797, 9068975.696390841, 9069074.965993512, 9069127.835707601, 9070305.530842617, 9071385.194069425, 9071741.596720107, 9071883.735563042, 9072062.5, 9072286.286014142, 9072470.223333957, 9072638.709512953, 9072784.014313668, 9073022.615689315, 9073738.94112533, 9073939.765090184, 9074067.870371923, 9074076.2647255, 9074082.650854915, 9074246.744015107, 9074563.311941175, 9074594.775676839, 9074886.207150303, 9075019.845108362, 9075371.648362825, 9075993.330759564, 9076197.407880161, 9076402.760570064, 9076556.38041998, 9076668.51062778, 9076725.98166267, 9076903.61167101, 9076987.13293236, 9077071.166584525, 9077174.788491545, 9077543.945496209, 9077559.375, 9077779.6875, 9077881.189638684, 9078065.413263109, 9078077.808546912, 9078884.979601925, 9079212.716385309, 9079281.308848688, 9079993.653509296, 9080265.163098505, 9080631.395035412, 9081033.380701898, 9081326.776047513, 9081523.65263035, 9081702.273608223, 9081789.967476035, 9081901.670141922, 9081919.616705487, 9082018.406396199, 9082141.957887549, 9082166.438385068, 9082184.375, 9082247.685606504, 9082339.340846792, 9082441.574761182, 9082729.6875, 9082814.415894466, 9083145.231928729, 9083635.000270829, 9084126.831225412, 9084217.820815807, 9084364.963385504, 9084572.258614905, 9084836.060964681, 9084840.095220776, 9085277.834864674, 9085816.417635463, 9085837.143097142, 9085841.905546263, 9085847.225300234, 9088303.070881426, 9088350.0, 9088545.678412773, 9089178.20952949, 9092039.871196222, 9092815.124298563, 9093013.3976325, 9094495.459099725, 9094499.897196656, 9094564.173244294, 9095227.70242839, 9095337.055437494, 9098252.508290125, 9099612.443722958, 9100501.932238823, 9100586.352454452, 9100653.480597287, 9101905.872891223, 9102589.567602934, 9102602.779514523, 9102788.491843127, 9103026.194984023, 9105767.299999246, 9107884.601489644, 9119075.0, 9119182.575659413, 9125327.728454595, 9127516.240650212, 9134500.050856221, 9137100.557492744, 9139861.444570865, 9144898.939188477, 9145681.108223764, 9147049.42905741, 9157994.294984398, 9158142.169593317, 9158550.73991035, 9158609.425224077, 9159115.204856232, 9159303.349227842, 9159325.930641951, 9159508.44076663, 9159962.236408155, 9160334.002464896, 9160522.94864334, 9160634.586099178, 9160786.853988571, 9161110.592019027, 9161124.403598988, 9161328.034694538, 9161461.081969317, 9161693.709121928, 9161724.720680542, 9162509.243207293, 9162942.1875, 9163237.706668422, 9166407.434128245, 9166477.163284265, 9167376.565024352, 9168472.490153378, 9175433.733651843, 9177205.016503423, 9178091.75767264, 9179744.063225273, 9180229.712360032, 9181287.982990144, 9182962.960280808, 9184585.088490603, 9184657.17477716, 9185826.44362916, 9185900.294358708, 9185907.74315865, 9186596.85858001, 9188007.252346031, 9188517.107911343, 9188696.089158615, 9188697.622343313, 9188788.64807044, 9189620.067721544, 9189651.5625, 9189767.663224645, 9189833.037359463, 9189999.234765885, 9190346.742685407, 9190442.972731937, 9190499.234567294, 9190687.85731447, 9191139.93350954, 9191320.0350928, 9195184.74152484, 9196525.764121532, 9197980.474849038, 9203050.538877413, 9204528.495230604, 9204831.2694565, 9205290.792918935, 9205307.119656768, 9205719.64393065, 9205779.106195927, 9205829.071896536, 9206554.51402207, 9217819.079156082, 9292132.376927402, 9588265.400298988, 9591754.6875, 9597698.405932425, 9600540.769277796, 9600782.199128406, 9600819.847898308, 9601664.826007046, 9601848.080866126, 9601927.863180026, 9602715.511272348, 9603423.27591974, 9604296.250710849, 9604499.253835587, 9605087.256240051, 9605273.359618759, 9605567.619744198, 9605895.977651607, 9606104.168646887, 9606287.671659987, 9606474.373144208, 9606560.355906036, 9606959.34293566, 9606993.490215376, 9607304.89555939, 9607439.957236264, 9607524.215436984, 9607948.973430747, 9608166.466287237, 9609520.178000415, 9609817.28694, 9610350.595149308, 9610822.445347762, 9611364.679517405, 9613543.247333238, 9615836.29234876, 9624119.285204977, 9633289.086294303, 9635613.183235241, 9635667.50917205, 9638293.651187405, 9638515.388450999, 9638955.851635681, 9639062.928151324, 9639833.909741953, 9640805.085103413, 9641457.626441976, ...], [8.96954754602744, 18.18814088023199, 12.036941168231019, 12.419158606776294, 9.266329587127029, 11.713246260823281, 7.180273942246394, 11.040492175234291, 11.608385290410727, 7.766426373273868, 5.238587035547235, 19.67902193083116, 18.146766090631857, 13.05959609844609, 20.522892823412068, 5.6701291572535, 12.164340082855322, 10.299919526831161, 7.618323326602773, 23.10002720597082, 14.883834980518712, 6.203875907955843, 9.518207795893781, 5.357829042617497, 7.143192356804557, 20.602843061977943, 13.70331048775446, 9.526280795221284, 6.246365943954873, 9.895695315485634, 14.004266306574786, 23.1272132642234, 5.964821830462379, 7.66472692634583, 9.213187700541834, 7.759966845503007, 7.571311699360831, 9.903664659140064, 13.860476721583009, 5.595787082589787, 23.467185656229997, 68.63098055129795, 9.510037746957739, 29.957258130715136, 8.334167570531363, 10.591967507600051, 18.721253607054912, 7.0367860171526875, 16.27853002731443, 11.869226116555083, 11.83162117333653, 23.973422144296876, 20.22618149584853, 20.972351347290907, 16.057885500237877, 13.783449109828299, 19.747681633073785, 20.2999516566514, 33.035957317054695, 29.30042671375444, 7.857853583739508, 15.48141537877329, 18.272185991174993, 19.56175818175616, 12.512874887402301, 24.651607227547267, 8.326635524353465, 11.724472684842967, 13.32862489184609, 8.10992079111594, 13.464031313161017, 16.390610873095085, 15.394603231526943, 20.249881559714417, 25.142671524997972, 38.5332228947168, 18.263344613186373, 11.438106239424757, 20.666916141332283, 22.631918297810337, 6.272977347292272, 7.3027478027249755, 22.224615145349347, 10.135977099132505, 8.308137085148413, 10.98730482408362, 7.6593699087714295, 18.62822255595284, 6.214411727871507, 18.82092289564736, 17.16138420722164, 18.81868883253786, 9.240394024023765, 13.652848593924045, 11.016237491820236, 5.870979506672201, 5.1641252084508675, 14.69200096111341, 6.937523961133126, 24.31265116495791, 19.771834911215663, 9.641946714887723, 22.06331087375466, 14.480028461581718, 15.939418423610368, 6.839007038975858, 9.654018028093072, 5.214248039256715, 6.7492190261699125, 33.78389483141865, 10.219790922093143, 6.879461541013974, 6.3296508614470985, 12.336400554978063, 29.081051890683618, 7.305896511799648, 10.175122185179928, 13.155270120421859, 15.857046946241809, 11.74328255913195, 5.8554409618318815, 20.551171318543723, 16.148007700069343, 5.798838832063067, 8.887506485556004, 15.23601965440557, 6.50578360162991, 6.208309232385862, 7.2018723272477985, 14.34149603047041, 5.190440984647521, 7.778532311538316, 6.591773156029475, 17.697192725529213, 8.949627875082943, 17.03326426099796, 5.3321759558520965, 5.686538285459402, 36.71169645610557, 13.46166418557104, 7.4486893555828555, 15.193125195632412, 6.307351233388833, 16.802370420206156, 9.821330443613187, 5.295442790455459, 7.6289780336428015, 6.936970506086613, 5.777389536101003, 7.880622216461371, 7.11193993531025, 14.55144188889511, 7.865782545084449, 13.204540726121836, 6.055045681222442, 12.819884472028718, 12.76311475077798, 5.962422196747465, 5.1726576641543, 11.555727950273344, 11.00642060051622, 44.51053984251659, 7.471974248747772, 6.298239995113667, 8.401955427694014, 5.87333304032731, 5.247041111070711, 27.508546235999667, 7.501252798728219, 6.808775578640357, 20.3291999314813, 22.7159670221451, 9.170248434885215, 19.709125176521972, 7.019454648749919, 13.771095660414222, 10.44783791825725, 7.107047692466784, 11.644835317060092, 11.377118453119621, 13.007020269526857, 17.247426106859336, 7.27486855388068, 5.98719424481225, 6.481620110328564, 6.311782853079119, 7.604300287245854, 122.32740629028645, 9.472415460994805, 7.358654004862165, 7.12652745626434, 5.217989035331337, 19.503613494091926, 26.12940872575263, 24.231989841968215, 8.820313441980334, 13.947540732977927, 8.481212241908718, 13.369696633867436, 14.559220185685051, 8.713136315564165, 28.033467298856124, 23.5380670917306, 15.433290794366643, 5.320698116779234, 13.0999026259212, 10.763129335285203, 20.61079542000249, 23.02008200333464, 32.303188388116084, 13.782286130070826, 21.964729877666, 6.19528029945864, 14.416188363234395, 17.433622991224713, 7.38536137083142, 25.438074856441677, 16.314516147611023, 25.886709243926106, 11.665819447717597, 23.805279471048276, 9.415097537190276, 11.880135044807965, 9.507544433786057, 14.892057818412088, 10.316224132705043, 8.159506807331441, 9.011585207555953, 10.159315452311006, 7.2186529653385145, 26.73207756123868, 10.187925502417366, 17.862743329567472, 16.684303067406365, 17.253928688260714, 25.273743544135726, 18.121345393532255, 7.17183200820583, 20.18601029504777, 20.90328161772591, 5.797231358972224, 5.701923794491928, 8.38738980926101, 8.430045937735338, 7.878863912876221, 8.366411197825304, 27.87365104737651, 14.987353147201851, 15.789059262772934, 11.873629225099084, 12.872715718239986, 5.174170244302033, 23.234081907404434, 20.08794589783753, 29.85774897798674, 9.141219614689449, 23.1204797804396, 16.251068256362004, 10.417754592215712, 7.741150697730916, 14.126355576386901, 8.403372380595306, 24.92581962892242, 5.943269619420127, 26.12799032226521, 25.77335192038231, 6.173196893311288, 8.630297811725656, 7.328689772780694, 19.682178848179277, 6.365465035092105, 19.66197181216429, 29.18173740128975, 17.689440754228755, 22.531113537631352, 5.680441652062019, 12.960039914386476, 9.765584455924188, 26.774273926987494, 6.610655663334928, 6.656809341179271, 12.50897121028334, 7.696563339397367, 9.576782529764285, 8.15302186235624, 5.5948882119850145, 5.830890116895416, 26.032799156407567, 12.984412241414484, 13.863729803356284, 21.835964814580493, 14.998982117538187, 10.379011834477218, 8.759055195811493, 19.54440853696855, 29.422020741855412, 12.120433321315048, 26.227065757192474, 8.301139249486265, 5.514607001701829, 6.964851643683442, 15.121053118950243, 21.260345923376796, 9.726572545515994, 14.989747176242654, 17.071844139377813, 7.3811617091410495, 34.58098782700444, 10.344785587252021, 12.090915851870733, 19.47411469003186, 30.993133836194016, 13.279665083781794, 12.048109116099134, 10.575808902552392, 5.94181843676778, 8.265392528367657, 27.14473242955064, 5.630834576569097, 5.145407000671487, 5.630700887100481, 6.4552474548193155, 11.142119773876182, 11.54722699019126, 16.260962357234572, 16.388652571477195, 25.121224089538643, 13.09341558564898, 24.043688073699432, 14.638457755037281, 13.5907364235711, 5.46444990554674, 9.271138936035928, 13.627553837474702, 27.145243341623996, 12.280748995921837, 9.883030196776355, 9.418207081556673, 5.030769561742554, 15.140917147684034, 8.44915007398493, 8.735240242130887, 18.479975308636714, 16.80433306586768, 21.565110036242242, 14.379351218636856, 13.799976734521884, 17.886686294342795, 14.297403161910111, 8.70966214335854, 26.420106670087534, 13.077408579417972, 16.133776641668973, 13.254933024930562, 14.06229071698576, 14.967824759442184, 6.003773463488546, 17.78646108178905, 27.541578909392484, 6.452096730576272, 7.242205975479558, 9.434315672471481, 13.540815146927159, 12.075680178103658, 6.738411903012829, 29.607170702958296, 13.07872017684838, 8.49702780732603, 13.968992585668438, 19.17376091329539, 14.81302180436878, 17.406453265864684, 15.592621985640504, 5.484032971774301, 17.5648495997316, 19.40876109115219, 14.257067084179294, 16.52620702180015, 13.962849302051536, 14.568079309296085, 18.555184126783363, 5.627352345947831, 5.698833180013372, 14.14749684985413, 14.76537894521048, 18.49396107278392, 13.631752070501422, 18.333264890542395, 17.848187347686086, 26.826069753818476, 14.383047157028724, 6.463029846123121, 6.898311019500329, 25.16863714882976, 6.459915968024128, 17.576234113712722, 21.418957859877253, 10.283520773346032, 33.83768155564253, 18.890127514299323, 10.171151551286965, 14.59406556742173, 8.018715825979688, 34.64217290775749, 11.440532331490113, 6.891277526850189, 14.343767932856702, 8.22647182841353, 15.457685497728697, 6.767220276396229, 16.586599982348382, 19.585942328904498, 5.921796178639127, 6.091724483877817, 24.68882631722765, 28.816832761213202, 5.040680437366849, 8.161959435527372, 6.798285701576425, 18.237307894251245, 8.004959056567921, 5.908146785031095, 6.285578042531846, 16.795531524865975, 9.226345846763543, 15.989363248016248, 13.438078150557166, 17.013851754094652, 14.658585402918307, 6.5523826584237845, 25.493672989422123, 20.46459842845227, 17.236926001070753, 5.521253715664452, 10.374067682129077, 10.694427632380602, 5.625285841824949, 5.247653879521983, 39.40452979815122, 10.179943413441924, 8.5197643459534, 8.84120944425823, 11.018270916889009, 6.51228564390057, 7.23196576253249, 22.6340765535885, 15.39825405788824, 6.884961043187941, 6.972518313093472, 29.26320347515593, 6.581140971172643, 5.638729332117477, 15.974932288910992, 23.882984902913783, 11.113083135247003, 7.224560355595274, 16.66837639337048, 11.299531304233577, 14.527903070729948, 8.435545241584785, 5.032926187964272, 8.411937890879766, 5.44320745566681, 13.252701812272425, 19.549181111119598, 7.667039915038648, 18.876323023852425, 6.134957852816822, 8.087797392185438, 17.208393882738076, 8.052295125093584, 13.442823532041377, 5.565781982250076, 5.581436371644383, 5.829017769956421, 15.444251747114913, 11.797749941275354, 22.911617795986214, 19.985882369196098, 14.780222847508387, 12.925447574752505, 6.979851913687822, 10.803687779250666, 24.822845384884385, 28.002781259492483, 12.496519965979616, 38.286239949622946, 16.733626548093067, 11.559373638262, 7.978307289582532, 21.712074706962245, 18.498385187677915, 23.1795564677443, 19.044461241075258, 14.453478903329575, 11.41819703849587, 9.218337999921085, 35.39691699168348, 11.699745202093858, 8.136432379764248, 7.767905022484296, 20.04315478190311, 17.748704126119666, 19.024689751522434, 7.192923139101685, 8.349412130153526, 5.683687257546988, 30.739780943470628, 11.484910236374851, 19.214867899561483, 6.7592989615501144, 5.1625456231144975, 10.374614303059332, 8.40175561211039, 9.939592554609131, 7.364254378865857, 5.7677260180303165, 6.101909434968167, 15.77789731009801, 20.095575646121343, 7.863678222489, 15.204959465477911, 12.567277861385866, 5.244212758642511, 44.632954585577316, 17.590070070146755, 11.056932531780626, 8.559349006562172, 8.77823587938093, 5.961580261812889, 7.954447907007407, 13.523430104327428, 6.823112496229218, 30.815712403174732, 9.410749087638646, 23.351456286569892, 7.340935705672286, 10.68485915319267, 51.17865238084083, 17.950223840553456, 15.93705338957868, 14.801411870948312, 10.363803915409187, 7.344426379732137, 14.392433344122908, 11.703768192832985, 10.914741937845072, 14.055116009649652, 15.37953332638827, 35.37571519772326, 8.97376901561229, 5.574836769095494, 11.981371369631178, 6.802081018051901, 17.709749920884516, 10.364887631270088, 12.468233825043775, 26.561935558326855, 23.93930184010039, 6.659632712781382, 19.304404675317574, 8.328556532368495, 29.55678600665263, 14.122751199961312, 23.790785622711677, 39.80253168853471, 6.079367619705172, 13.594389242082165, 10.605367272232609, 15.459789924197318, 14.365736380988945, 18.253506330550213, 6.342404578726525, 6.569467738030802, 5.456327212407494, 20.885838964298237, 8.54136093216542, 7.491122917540311, 15.54449143640875, 6.313221917059967, 15.705947971772275, 7.009507386444177, 12.170685704823784, 6.243203758556379, 15.57615559910002, 7.906671965194041, 5.883546233169264, 38.450898675443845, 31.477547143665696, 12.588519410024317, 7.2349714462561465, 6.748717729791243, 5.281359316928618, 29.25096595086329, 13.252032808148007, 16.126446923328224, 5.867133290088447, 13.854965723430015, 10.563612935636716, 13.954467969123252, 18.19359226880635, 9.086960411506878, 21.071158346391858, 5.049325581334965, 26.40805698121749, 16.89580842289325, 13.782232371732244, 16.341285917705857, 21.382409159658426, 32.575329509579724, 24.35292202573224, 12.697908763348455, 29.457571676196714, 16.12072195928958, 15.582083158234525, 10.624684880752913, 13.295057215777568, 17.277638507868318, 60.01099794696911, 19.054395886687875, 5.14410642452966, 6.221020964441965, 18.372558262192175, 25.668596054784217, 7.581967797642596, 6.329753331174107, 14.709264865856335, 9.148143898778837, 15.293303931482466, 29.853396218872984, 10.724477480517914, 20.041936496747063, 59.66582648623159, 8.241096405898828, 37.35231664331962, 25.679057552952962, 15.641660875120309, 8.839249653994905, 14.13210862309894, 16.402391596786696, 5.089403394727938, 12.5782059997534, 15.478964960315238, 12.514497600286372, 43.956106792915364, 10.992254461598513, 7.507483543444232, 8.254962058104084, 12.683073705408148, 17.082876811665287, 6.44422262966283, 11.282315282670618, 8.229379758146653, 18.430928734667873, 57.60461806839971, 108.6186967650519, 11.54652524913379, 10.165535498868259, 8.586349867467138, 13.383894352851776, 24.45544154489382, 29.988571228110224, 8.417118401798103, 16.356665763557583, 14.074262720478568, 12.95477340289769, 5.409909498295039, 11.53296275386672, 16.326920281727677, 13.776490751186337, 5.5028912915387185, 10.520937244560823, 9.705281639754922, 19.739747947151137, 23.508439223853202, 16.238807570895858, 21.198760908664422, 22.3881903173808, 6.491711889760442, 9.806477595721846, 6.366574050435839, 11.52739321375345, 10.538900984683725, 35.748622994327675, 5.468962836755254, 7.07218537447492, 13.847135763704108, 28.27409506642794, 7.670011847961349, 24.93237091154547, 5.399238729147346, 5.633499954386229, 5.844097869226793, 6.930229712303401, 11.572921655761933, 5.589671218428349, 11.207741582687094, 26.194646975609196, 13.029407524434454, 24.129896134325914, 6.96342802706453, 7.884209901641719, 5.210220329333063, 11.790908648172453, 8.147514242721854, 20.436413318884775, 7.638283830022419, 11.893068120743374, 18.67637966392519, 27.32944360628778, 17.515023688335663, 7.970607111558411, 6.161788212111931, 21.08306436297368, 12.394304579207382, 6.814714346798202, 5.548652264650759, 20.157192512645555, 15.186827452507494, 8.406903605732145, 10.698252426725466, 11.63483321914557, 39.10986335180949, 9.5424721441261, 25.31964245747327, 6.722489216946404, 36.17278747109625, 14.584672123461722, 7.2175733111905345, 23.268431917625346, 6.860431783769182, 22.99049452018245, 19.641691899641817, 5.2468410656900994, 12.737344922610392, 5.735588948498332, 12.788149374741248, 22.484125151455167, 6.810372460786529, 21.761020155663168, 6.2670883317413795, 14.99931033120447, 16.536832842150023, 6.056692099677529, 32.46820875621581, 16.084949070979132, 18.44103998450979, 11.682177391909113, 16.70106481470259, 20.59651836944151, 7.866026005762414, 5.588688592849761, 14.462615849449728, 14.339530496526407, 8.578016469312836, 40.08646513991965, 8.322275928011907, 5.082045806117861, 13.73336490680916, 25.80693611580575, 7.205143538360573, 7.298166292265473, 8.474572887829625, 24.06023057579505, 18.427049362284222, 16.362398893779268, 6.352992469654418, 16.332778836059976, 6.473244774734201, 15.457777408217883, 11.787545232913333, 5.73331130998731, 5.341947160346485, 9.642420390500178, 22.551991755022915, 5.28083445300578, 12.423974267126598, 6.262911432365916, 7.047426730781582, 5.762618420552921, 12.161529833299408, 25.755339649494964, 10.256448936659163, 30.08978325548905, 16.460096634933947, 26.877603941365237, 5.909243682609421, 27.90519401181365, 17.230743317801444, 26.33630339778646, 6.16434247227362, 7.870420535655361, 13.91625659751887, 14.35922258633641, 26.179793169376357, 12.688491786350596, 6.987142382997008, 16.73773699507762, 10.468099533490754, 12.084205056568763, 17.616520527249186, 23.589811956384388, 10.602159996761245, 21.629289745634942, 6.237421814206501, 6.652834432769814, 17.189707719938756, 7.028191798980902, 5.663108625072276, 14.192291615711467, 9.502363952766977, 31.776083815061813, 51.38693919299352, 24.266290533811187, 14.191539655192592, 13.85851273746023, 17.88574039854172, 7.179518709402086, 11.22095406344581, 10.980162284072788, 30.57510214788323, 11.36223521639863, 5.990464052039664, 7.68234445117051, 24.69599147143557, 12.456730372511174, 18.740252561049036, 5.620027034995291, 19.739570784638495, 5.51663355459263, 14.133051301951925, 24.91596455134114, 32.41625807332852, 8.76741891347917, 9.578399172772286, 10.288330137535612, 28.627567633683594, 9.649231431416522, 23.945866864640497, 23.376179501943344, 16.283262207396216, 18.35903980569862, 23.754908500498885, 11.785389164752214, 11.326334262520287, 22.771484790663663, 23.877572390901165, 6.618962333368332, 5.516006062719892, 27.53216734538575, 48.62811938399107, 7.58378049868329, 31.45958687518855, 11.752249072363961, 34.7159492888001, 19.28684994301021, 10.425948483707824, 7.9637206151301685, 15.53135716792189, 9.245964003086415, 15.38111185892032, 22.30190166810327, 22.064538169189756, 6.968254723350931, 14.731260243241515, 9.664912322372183, 11.8447919621763, 16.495482606027657, 8.096739653470948, 9.798428620836583, 7.033501962129726, 5.506011237976372, 7.475510483300044, 15.388371727027039, 5.135372380535703, 36.687800850406695, 24.592495186452712, 14.297645508988225, 7.8421952924190474, 15.13895848382502, 17.598849786349334, 20.272171927888927, 17.27434188758111, 6.735528318477885, 14.040983997057163, 22.824905912351234, 5.812656511747296, 18.78335108891789, 9.37423461509617, 13.550207011217362, 19.166464753956284, 13.629590663634296, 9.925860265980704, 14.023764354666623, 22.866410228670617, 6.998613947176227, 6.294242795255622, 19.857011622503215, 13.770143284641891, 6.973030797336719, 39.85464706853429, 22.294521220602, 24.590834358049833, 30.973899977171165, 14.461895185745295, 28.786818598887027, 6.805479836101327, 36.921533486259534, 5.746090963899905, 11.131654819883746, 5.7470593664539935, 22.434659864442633, 7.726730830103449, 22.222885636882943, 11.655335119131433, 11.166788242195151, 6.863921084799936, 13.988658523421925, 12.462057746217214, 18.650412299077733, 6.468617247696398, 16.19620616183144, 7.103342446524521, 7.117142020327742, 10.352138543168003, 11.005542396821426, 24.33795085541969, 6.922480361426456, 13.566676470686465, 10.765507632205953, 37.197662861354495, 9.76888594316168, 7.686641844359956, 10.110712889716604, 14.460082181864157, 13.150887334186512, 28.3923523920869, 16.504092427823828, 18.607410904830417, 24.04368799104024, 5.30254482564383, 6.613938668246719, 19.126877271713656, 17.488805211037988, 44.46180012835612, 15.01619071505213, 11.400726435050315, 19.763337488818486, 12.76936303725759, 46.165494123405686, 6.646529393283384, 14.31909930289603, 7.210751085173422, 5.192465081242363, 5.9200732000481375, 32.03284865931243, 5.164627047027573, 6.509948402820264, 8.861548544898142, 10.471656499512488, 6.008773588245186, 16.28206290262507, 16.068234709352524, 7.562615806868111, 5.33641523766582, 20.336810313169615, 7.927828453533029, 12.996618565007644, 6.080037526014767, 16.892037408852264, 9.965188550330211, 13.27470667433379, 8.379489134360625, 5.227933178694145, 10.32595798469985, 15.804994962818999, 7.51190488494756, 15.798627502235862, 5.433817183026078, 6.9294331008880015, 9.829776402260817, 8.787928172032599, 5.456023128191041, 7.1478390715733555, 6.584616607267278, 9.865201765720263, 17.963427989304872, 6.41107875081333, 16.491733350318974, 17.46731092289467, 5.165916108373737, 18.39329525669586, 6.122201499615598, 18.381261757903566, 14.110541629676332, 13.613296673780486, 16.870209145480175, 13.42221394346609, 16.70965646196089, 5.80034064353948, ...])
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);
([4660449.538626937, 5918020.928762456, 6538250.5130164055, 6762369.444217099, 7155848.3595246775, 7245084.719875261, 7246362.7191414535, 7263637.443476916, 7267447.162195933, 7267494.179726628, 7299063.826472335, 7338689.741853779, 7360831.895763412, 7363948.678484648, 7368029.129961303, 7377380.6586546805, 7377938.075379429, 7381854.084395692, 7384146.91651786, 7412230.897291277, 7417956.234785694, 7418036.981809903, 7429411.150460741, 7431756.706997424, 7436537.58206466, 7454183.780871639, 7455851.194701823, 7468179.909318529, 7481868.583313428, 7482208.4121220615, 7487354.275530326, 7491123.087066455, 7492154.974797693, 7502128.291867885, 7527698.294303104, 7527717.600995382, 7527799.9108582055, 7541633.419719903, 7543871.259811994, 7554088.727703919, 7555057.772108387, 7558892.1875, 7561636.141468325, 7590735.9375, 7649100.088922538, 7655488.690396989, 7741064.793593294, 7821976.230319472, 7823312.81151002, 7827300.427701878, 7849225.408048707, 7873979.404735163, 7875029.579152515, 7875340.071163312, 7882903.389998593, 7897757.471424497, 7903841.492713692, 7904638.433952804, 7909997.988703329, 7945124.786875207, 7975870.965575343, 7978101.697288584, 8002513.377162367, 8002649.061014929, 8002705.698286699, 8003067.919871449, 8004414.137490169, 8006095.663453386, 8007451.063441344, 8034568.400301087, 8046023.8855868345, 8050873.771984293, 8070487.614003772, 8114080.615636929, 8166207.614179166, 8200504.676830428, 8201186.01002254, 8202851.752404293, 8208416.490414947, 8212550.571262621, 8213723.4831039915, 8216294.3975295825, 8219156.2641320275, 8227688.319526569, 8230559.415548506, 8233998.345778959, 8234198.590075725, 8234548.797065335, 8236421.445451622, 8236531.051695138, 8276123.1522885915, 8278760.250485294, 8278829.57787029, 8280869.635096786, 8304903.052495343, 8305474.179236193, 8305529.634333115, 8307967.120461302, 8312761.7508327495, 8323057.018495022, 8327398.1252240455, 8328003.470768661, 8328077.68032226, 8328198.310916808, 8330100.239296118, 8330197.241769757, 8330998.795893806, 8331686.357197136, 8332598.365510498, 8335046.875, 8335608.704507049, 8336538.054330895, 8337008.2913224045, 8337505.343951977, 8338615.039921953, 8340194.408077196, 8349750.853637419, 8352196.311437416, 8357003.346113353, 8358145.673595987, 8358305.232550621, 8364251.505826056, 8364343.90636003, 8365652.918243672, 8374390.04882036, 8381643.82518041, 8396162.618215479, 8446837.019230684, 8473667.48484763, 8495912.896597119, 8498357.295239482, 8501036.397481881, 8503739.699295163, 8508014.63636914, 8508621.386127122, 8516777.020884648, 8522835.65030545, 8525269.99003504, 8529128.125, 8529368.298782077, 8529418.301477998, 8529563.977187593, 8529850.311334508, 8529865.146472936, 8529969.277659563, 8530022.015364228, 8530056.320611907, 8530241.435918521, 8530565.117916273, 8531086.64440499, 8531467.151191812, 8531646.76875335, 8533180.359399827, 8533962.500082808, 8536804.363537727, 8540279.820522055, 8544547.816802207, 8545201.82305696, 8555701.8730465, 8556298.695099514, 8558256.170993885, 8558443.75, 8558876.184383087, 8559939.304306222, 8560422.086989813, 8562416.396180218, 8562437.567595944, 8562445.258977259, 8563515.33394052, 8576878.34759891, 8577553.177410593, 8581298.051930435, 8583445.115555814, 8583451.892949184, 8585371.47223593, 8586094.72989263, 8586605.037725247, 8587153.069920035, 8588017.494933136, 8589400.153913356, 8592643.29072699, 8592659.972280685, 8594673.990652949, 8595739.595367411, 8597464.027509458, 8597623.782420557, 8599026.56543699, 8599040.625, 8599262.662189916, 8599768.019036256, 8604429.706774063, 8605820.87482829, 8606482.086903257, 8606577.99089197, 8610096.611763863, 8610439.951662337, 8610814.914145265, 8611661.28827402, 8612663.578361046, 8613198.333451232, 8615691.35301505, 8615705.762333395, 8615804.30661171, 8616096.998306628, 8617424.367274694, 8617719.72779792, 8618101.316023085, 8618121.260004401, 8620213.047178803, 8627490.086533451, 8635007.471039938, 8635870.76780793, 8636005.658747612, 8637059.229992997, 8637206.77942493, 8637483.729557669, 8637596.696532607, 8637625.291801408, 8637860.621158814, 8637884.693992317, 8637990.911508206, 8638071.972350247, 8638130.12086646, 8638140.826218385, 8638202.945733521, 8638218.160386834, 8638398.189221151, 8638701.158392334, 8639360.21491871, 8639908.169800023, 8640792.089827826, 8640939.927195124, 8641092.78839934, 8641364.455206867, 8641458.310584372, 8641720.437161397, 8642327.204323303, 8642536.125749975, 8642741.545664651, 8642925.840158274, 8643035.70854196, 8643099.923772411, 8643154.873393688, 8643650.261793057, 8643699.14027266, 8644326.710476384, 8644331.216229994, 8644403.056209795, 8644556.45590865, 8644828.554990215, 8644900.888186054, 8645037.874250254, 8645561.528981272, 8645735.284074184, 8645776.5625, 8645940.391176054, 8646076.211503549, 8646106.947610736, 8646416.680269748, 8646583.17836392, 8646663.830827536, 8647047.089518486, 8647221.121753374, 8647485.9817643, 8647593.615803842, 8647942.030902945, 8648122.65540449, 8648455.285450611, 8650692.921268605, 8650866.1920921, 8651041.365111198, 8652816.48200574, 8653680.180295084, 8654050.572587013, 8657723.035619508, 8658193.328401955, 8659171.235688943, 8659561.409921667, 8659879.592305595, 8660522.620419394, 8660632.253483307, 8661067.921836019, 8661792.438365119, 8662042.464110259, 8662824.738607047, 8662952.773469623, 8663592.413452096, 8663745.17236295, 8663838.43283213, 8664482.497743797, 8666003.348198526, 8679321.138441144, 8680544.774160104, 8681496.110513156, 8684860.217121936, 8694737.746152164, 8699378.594133236, 8702964.161626194, 8705295.33993567, 8705696.488394454, 8706097.80627449, 8706324.787674699, 8706624.476346591, 8706797.30808576, 8707781.262598436, 8707861.78386634, 8707863.403709065, 8707910.9375, 8708121.308843357, 8733212.19767365, 8735796.054584932, 8762679.6875, 8765714.814658875, 8768778.643565621, 8770513.678181149, 8770617.215165572, 8771028.08472324, 8775746.553575477, 8778153.424564866, 8781742.872055266, 8781809.672210354, 8798145.106308347, 8798950.009201443, 8800658.065280966, 8800837.807869857, 8811803.45908655, 8813479.487715755, 8818065.03780365, 8838929.410092806, 8841142.105651958, 8843757.40638167, 8845893.812369853, 8853845.240357924, 8853923.044016486, 8854091.203925148, 8860449.198657613, 8883300.587502426, 8889186.038405374, 8892241.53822164, 8892334.386069573, 8892572.17027518, 8892708.574392391, 8892770.269065177, 8894480.103212444, 8894887.007188471, 8894895.156755479, 8895315.289379431, 8895445.79068931, 8895517.57099454, 8895766.347659254, 8896068.059286086, 8896122.844133114, 8896436.218692586, 8896715.098827602, 8897155.998473885, 8897223.063263334, 8897269.46059718, 8897383.401027054, 8897723.385789951, 8898018.523069648, 8898883.252780154, 8899301.681752825, 8899382.389088495, 8899987.037640488, 8900138.93548862, 8900410.9375, 8900435.344639571, 8900436.315335356, 8900516.906588526, 8900573.706270553, 8901043.715876339, 8901216.333835235, 8901307.043900145, 8901320.821210574, 8901494.301774276, 8901541.449660126, 8902063.87053964, 8902144.111713985, 8902638.77963364, 8902868.64845045, 8903120.117378566, 8903265.863077456, 8903384.249755038, 8904121.649822302, 8904506.203009687, 8905766.323160963, 8907960.545450857, 8908752.084999997, 8909395.911049278, 8909907.74574864, 8910059.220336348, 8910352.969770256, 8910527.20220065, 8910640.28433788, 8910851.386924285, 8911680.292978762, 8912534.103812275, 8913680.63325203, 8916739.132771982, 8918075.850890823, 8918803.975198286, 8919153.030756438, 8920140.081623906, 8920644.824695453, 8922064.253823232, 8923149.045493111, 8923196.708808385, 8923313.947083483, 8923366.686922515, 8923925.018573396, 8924096.890696354, 8924530.534906434, 8924535.733047727, 8924579.72228929, 8924721.645054286, 8924798.496966777, 8924829.636197016, 8924852.881669361, 8924861.109246276, 8924940.8943013, 8925185.364075074, 8925635.571420552, 8925817.331602946, 8926223.851540556, 8926296.748084275, 8927054.937695805, 8927345.537517767, 8927388.227492977, 8927660.861237021, 8928125.404237129, 8928363.330966152, 8928475.952822685, 8928955.182573711, 8929034.128882175, 8929365.082661323, 8929877.828911308, 8930179.88893112, 8930206.339384232, 8930546.222337889, 8930561.795307007, 8930916.041380355, 8931432.16968751, 8931579.616339635, 8931732.97135998, 8931769.154368505, 8931901.169745322, 8931942.302384434, 8932092.766868746, 8932180.651423324, 8932243.302264404, 8932444.324827863, 8932622.312748559, 8932652.829571674, 8932761.141418748, 8933095.303124042, 8933142.565739635, 8933375.389620624, 8933436.04471537, 8934068.180404449, 8934762.771463186, 8934838.544790829, 8934904.917266918, 8934916.747849783, 8934993.222999673, 8935011.780230636, 8935132.98552457, 8937419.502970397, 8937803.56386235, 8938199.60418634, 8938252.052503666, 8954369.841536626, 8955541.556330634, 8956086.59337323, 8956477.520149874, 8957720.513685549, 8958776.688430531, 8960033.20267728, 8961273.479189662, 8961538.396856787, 8961574.95703109, 8961710.284408135, 8962118.182476554, 8962856.032316873, 8963269.603608364, 8963275.748126308, 8963346.041326828, 8963818.119755654, 8965797.277214382, 8974350.259662502, 8975827.492713852, 8976207.334174518, 8976551.506309355, 8976706.570898917, 8976882.8602057, 8976909.464515008, 8976909.553223358, 8976967.050686257, 8976972.781525644, 8976995.650041074, 8977435.642355455, 8977625.433433523, 8977719.653732065, 8977775.58411917, 8977826.44774674, 8978140.890086763, 8979712.616961049, 8979744.943788148, 8979784.375, 8979837.717108414, 8981083.61164755, 8981326.541387666, 8981429.566175919, 8981576.020603748, 8982295.524133084, 8982675.641204622, 8984235.224594593, 8984336.854669122, 8984422.006763007, 8984437.703395132, 8984508.722481137, 8984639.729412116, 8984770.379943784, 8984788.259912662, 8984834.341646647, 8984956.25, 8985244.98027308, 8985337.454243982, 8985403.607497437, 8985699.264323404, 8985845.563655999, 8985857.126784042, 8985918.32052204, 8986183.103907265, 8986210.191160329, 8986339.154871378, 8986603.481511286, 8986675.773960406, 8986863.759416403, 8987245.3125, 8987367.019112842, 8987504.484030943, 8987543.712751701, 8987574.44933915, 8988205.472857049, 8988445.160577746, 8988598.777229296, 8988779.546840852, 8988946.62123415, 8988948.547862405, 8988993.75, 8989872.981924487, 8989968.018856568, 8990191.110163413, 8990270.502695097, 8990331.992746055, 8990440.075219197, 8990508.528748617, 8990679.335095467, 8990785.537346855, 8990938.51893712, 8990942.063642869, 8990995.39104854, 8992160.854415791, 8992618.517217444, 8993832.897725519, 8994423.184064128, 8994651.478114601, 8994943.345139716, 8996115.262979392, 8996284.504641298, 8996473.277766978, 8996793.024193274, 8996939.635439092, 8997853.631113475, 8998435.810156066, 8999010.136138903, 9000641.077606801, 9001304.366502952, 9001817.337188475, 9001847.230794447, 9002139.34477411, 9002157.368811412, 9002341.203432646, 9002437.307693435, 9003307.969605168, 9003483.580149751, 9003657.14791516, 9003707.8125, 9003965.579341518, 9004007.904903835, 9004322.289935518, 9005037.425469171, 9005316.869328847, 9005381.25, 9005610.410251345, 9005706.130116083, 9006005.380922982, 9006332.49489216, 9006380.856419064, 9006498.911609912, 9006627.515847217, 9006693.446033712, 9006719.769135851, 9006845.769228123, 9007061.71041196, 9007077.537588505, 9007179.346022159, 9007204.577920405, 9007355.738831688, 9007376.382161938, 9007677.870724276, 9007738.195033543, 9007799.186141275, 9007823.463308264, 9008209.533488939, 9008482.464938942, 9008499.48864597, 9008581.185119862, 9008765.273417434, 9008960.152524168, 9009047.50082785, 9009179.313051693, 9009225.680133972, 9009275.524838697, 9009528.065806504, 9009803.604583384, 9009806.187703675, 9009845.087513445, 9009915.165415142, 9010250.0, 9010266.913242597, 9010300.903586337, 9010336.572679576, 9010345.225493165, 9010593.75, 9010596.166346082, 9010718.922316587, 9010800.916836658, 9010857.582597695, 9010905.024374312, 9010933.909510452, 9010969.514666101, 9011034.267645756, 9011185.111775856, 9011360.387361545, 9011404.599078234, 9011452.852259686, 9011609.314732727, 9011852.372147841, 9012008.293844067, 9012037.220969653, 9012193.846711999, 9012384.265249424, 9013251.763376076, 9013407.694362633, 9013410.9375, 9013444.002382696, 9013616.470325984, 9013644.276889598, 9014135.458486998, 9014407.565736044, 9017299.349230193, 9017929.926458266, 9020081.985880682, 9021402.877203846, 9021841.546098024, 9021847.17094386, 9021894.77398563, 9021909.696481716, 9022507.46912218, 9023277.48686832, 9023326.136221964, 9023558.22387691, 9023651.412687095, 9024171.555791285, 9024256.233935721, 9024306.05981932, 9025287.0852794, 9026243.779413052, 9028277.075552113, 9028306.99805507, 9028326.80399441, 9029710.52504019, 9029872.00085684, 9030714.22909803, 9031126.37170779, 9031837.179840019, 9032588.69438471, 9033787.680922687, 9034239.661976647, 9034740.64498864, 9034931.596405659, 9034948.836410787, 9035500.781431787, 9035650.267310712, 9035738.613370782, 9036242.238107366, 9036490.494933087, 9036697.70329032, 9037280.979114044, 9037594.675190981, 9037671.027823992, 9039523.702269362, 9039580.074047904, 9040085.664934281, 9041244.699619818, 9041484.47086897, 9041767.627560914, 9042039.787174234, 9042120.24905819, 9042630.175116738, 9043258.725547032, 9045163.180002574, 9047464.913273517, 9049833.49545692, 9050512.751197916, 9050861.254225792, 9051244.667273516, 9051304.750406897, 9053070.533312593, 9055590.331701485, 9056896.2619014, 9057019.572187653, 9057172.114501065, 9057452.938640144, 9058635.728513954, 9058922.467244776, 9059310.840619763, 9059951.915963748, 9060326.223779796, 9060350.466851229, 9060358.838470658, 9061403.979454571, 9061998.497976555, 9062193.019985856, 9062552.006178394, 9062619.603599217, 9062828.260722974, 9063314.292802425, 9063352.651444742, 9063529.686629022, 9064169.351427466, 9064208.176322231, 9064552.817469105, 9064732.8125, 9064773.708297541, 9064971.002840912, 9065037.82795734, 9065069.145946342, 9065335.342666045, 9065444.422476498, 9065630.782396944, 9065770.180914689, 9065858.603730377, 9065944.26324894, 9066076.5625, 9066146.941901967, 9066252.272862941, 9066448.868681192, 9066713.908056026, 9066745.621589761, 9066750.632142285, 9066764.401852062, 9066830.973848589, 9066833.500763727, 9066920.641241746, 9067155.337668585, 9067167.510183519, 9067170.223597923, 9067244.227019956, 9067444.134761136, 9067492.596794141, 9067512.500743514, 9067519.096265152, 9067966.09038611, 9068135.601975797, 9068975.696390841, 9069074.965993512, 9069127.835707601, 9070305.530842617, 9071385.194069425, 9071741.596720107, 9071883.735563042, 9072062.5, 9072286.286014142, 9072470.223333957, 9072638.709512953, 9072784.014313668, 9073022.615689315, 9073738.94112533, 9073939.765090184, 9074067.870371923, 9074076.2647255, 9074082.650854915, 9074246.744015107, 9074563.311941175, 9074594.775676839, 9074886.207150303, 9075019.845108362, 9075371.648362825, 9075993.330759564, 9076197.407880161, 9076402.760570064, 9076556.38041998, 9076668.51062778, 9076725.98166267, 9076903.61167101, 9076987.13293236, 9077071.166584525, 9077174.788491545, 9077543.945496209, 9077559.375, 9077779.6875, 9077881.189638684, 9078065.413263109, 9078077.808546912, 9078884.979601925, 9079212.716385309, 9079281.308848688, 9079993.653509296, 9080265.163098505, 9080631.395035412, 9081033.380701898, 9081326.776047513, 9081523.65263035, 9081702.273608223, 9081789.967476035, 9081901.670141922, 9081919.616705487, 9082018.406396199, 9082141.957887549, 9082166.438385068, 9082184.375, 9082247.685606504, 9082339.340846792, 9082441.574761182, 9082729.6875, 9082814.415894466, 9083145.231928729, 9083635.000270829, 9084126.831225412, 9084217.820815807, 9084364.963385504, 9084572.258614905, 9084836.060964681, 9084840.095220776, 9085277.834864674, 9085816.417635463, 9085837.143097142, 9085841.905546263, 9085847.225300234, 9088303.070881426, 9088350.0, 9088545.678412773, 9089178.20952949, 9092039.871196222, 9092815.124298563, 9093013.3976325, 9094495.459099725, 9094499.897196656, 9094564.173244294, 9095227.70242839, 9095337.055437494, 9098252.508290125, 9099612.443722958, 9100501.932238823, 9100586.352454452, 9100653.480597287, 9101905.872891223, 9102589.567602934, 9102602.779514523, 9102788.491843127, 9103026.194984023, 9105767.299999246, 9107884.601489644, 9119075.0, 9119182.575659413, 9125327.728454595, 9127516.240650212, 9134500.050856221, 9137100.557492744, 9139861.444570865, 9144898.939188477, 9145681.108223764, 9147049.42905741, 9157994.294984398, 9158142.169593317, 9158550.73991035, 9158609.425224077, 9159115.204856232, 9159303.349227842, 9159325.930641951, 9159508.44076663, 9159962.236408155, 9160334.002464896, 9160522.94864334, 9160634.586099178, 9160786.853988571, 9161110.592019027, 9161124.403598988, 9161328.034694538, 9161461.081969317, 9161693.709121928, 9161724.720680542, 9162509.243207293, 9162942.1875, 9163237.706668422, 9166407.434128245, 9166477.163284265, 9167376.565024352, 9168472.490153378, 9175433.733651843, 9177205.016503423, 9178091.75767264, 9179744.063225273, 9180229.712360032, 9181287.982990144, 9182962.960280808, 9184585.088490603, 9184657.17477716, 9185826.44362916, 9185900.294358708, 9185907.74315865, 9186596.85858001, 9188007.252346031, 9188517.107911343, 9188696.089158615, 9188697.622343313, 9188788.64807044, 9189620.067721544, 9189651.5625, 9189767.663224645, 9189833.037359463, 9189999.234765885, 9190346.742685407, 9190442.972731937, 9190499.234567294, 9190687.85731447, 9191139.93350954, 9191320.0350928, 9195184.74152484, 9196525.764121532, 9197980.474849038, 9203050.538877413, 9204528.495230604, 9204831.2694565, 9205290.792918935, 9205307.119656768, 9205719.64393065, 9205779.106195927, 9205829.071896536, 9206554.51402207, 9217819.079156082, 9292132.376927402, 9588265.400298988, 9591754.6875, 9597698.405932425, 9600540.769277796, 9600782.199128406, 9600819.847898308, 9601664.826007046, 9601848.080866126, 9601927.863180026, 9602715.511272348, 9603423.27591974, 9604296.250710849, 9604499.253835587, 9605087.256240051, 9605273.359618759, 9605567.619744198, 9605895.977651607, 9606104.168646887, 9606287.671659987, 9606474.373144208, 9606560.355906036, 9606959.34293566, 9606993.490215376, 9607304.89555939, 9607439.957236264, 9607524.215436984, 9607948.973430747, 9608166.466287237, 9609520.178000415, 9609817.28694, 9610350.595149308, 9610822.445347762, 9611364.679517405, 9613543.247333238, 9615836.29234876, 9624119.285204977, 9633289.086294303, 9635613.183235241, 9635667.50917205, 9638293.651187405, 9638515.388450999, 9638955.851635681, 9639062.928151324, 9639833.909741953, 9640805.085103413, 9641457.626441976, ...], [8.96954754602744, 18.18814088023199, 12.036941168231019, 12.419158606776294, 9.266329587127029, 11.713246260823281, 7.180273942246394, 11.040492175234291, 11.608385290410727, 7.766426373273868, 5.238587035547235, 19.67902193083116, 18.146766090631857, 13.05959609844609, 20.522892823412068, 5.6701291572535, 12.164340082855322, 10.299919526831161, 7.618323326602773, 23.10002720597082, 14.883834980518712, 6.203875907955843, 9.518207795893781, 5.357829042617497, 7.143192356804557, 20.602843061977943, 13.70331048775446, 9.526280795221284, 6.246365943954873, 9.895695315485634, 14.004266306574786, 23.1272132642234, 5.964821830462379, 7.66472692634583, 9.213187700541834, 7.759966845503007, 7.571311699360831, 9.903664659140064, 13.860476721583009, 5.595787082589787, 23.467185656229997, 68.63098055129795, 9.510037746957739, 29.957258130715136, 8.334167570531363, 10.591967507600051, 18.721253607054912, 7.0367860171526875, 16.27853002731443, 11.869226116555083, 11.83162117333653, 23.973422144296876, 20.22618149584853, 20.972351347290907, 16.057885500237877, 13.783449109828299, 19.747681633073785, 20.2999516566514, 33.035957317054695, 29.30042671375444, 7.857853583739508, 15.48141537877329, 18.272185991174993, 19.56175818175616, 12.512874887402301, 24.651607227547267, 8.326635524353465, 11.724472684842967, 13.32862489184609, 8.10992079111594, 13.464031313161017, 16.390610873095085, 15.394603231526943, 20.249881559714417, 25.142671524997972, 38.5332228947168, 18.263344613186373, 11.438106239424757, 20.666916141332283, 22.631918297810337, 6.272977347292272, 7.3027478027249755, 22.224615145349347, 10.135977099132505, 8.308137085148413, 10.98730482408362, 7.6593699087714295, 18.62822255595284, 6.214411727871507, 18.82092289564736, 17.16138420722164, 18.81868883253786, 9.240394024023765, 13.652848593924045, 11.016237491820236, 5.870979506672201, 5.1641252084508675, 14.69200096111341, 6.937523961133126, 24.31265116495791, 19.771834911215663, 9.641946714887723, 22.06331087375466, 14.480028461581718, 15.939418423610368, 6.839007038975858, 9.654018028093072, 5.214248039256715, 6.7492190261699125, 33.78389483141865, 10.219790922093143, 6.879461541013974, 6.3296508614470985, 12.336400554978063, 29.081051890683618, 7.305896511799648, 10.175122185179928, 13.155270120421859, 15.857046946241809, 11.74328255913195, 5.8554409618318815, 20.551171318543723, 16.148007700069343, 5.798838832063067, 8.887506485556004, 15.23601965440557, 6.50578360162991, 6.208309232385862, 7.2018723272477985, 14.34149603047041, 5.190440984647521, 7.778532311538316, 6.591773156029475, 17.697192725529213, 8.949627875082943, 17.03326426099796, 5.3321759558520965, 5.686538285459402, 36.71169645610557, 13.46166418557104, 7.4486893555828555, 15.193125195632412, 6.307351233388833, 16.802370420206156, 9.821330443613187, 5.295442790455459, 7.6289780336428015, 6.936970506086613, 5.777389536101003, 7.880622216461371, 7.11193993531025, 14.55144188889511, 7.865782545084449, 13.204540726121836, 6.055045681222442, 12.819884472028718, 12.76311475077798, 5.962422196747465, 5.1726576641543, 11.555727950273344, 11.00642060051622, 44.51053984251659, 7.471974248747772, 6.298239995113667, 8.401955427694014, 5.87333304032731, 5.247041111070711, 27.508546235999667, 7.501252798728219, 6.808775578640357, 20.3291999314813, 22.7159670221451, 9.170248434885215, 19.709125176521972, 7.019454648749919, 13.771095660414222, 10.44783791825725, 7.107047692466784, 11.644835317060092, 11.377118453119621, 13.007020269526857, 17.247426106859336, 7.27486855388068, 5.98719424481225, 6.481620110328564, 6.311782853079119, 7.604300287245854, 122.32740629028645, 9.472415460994805, 7.358654004862165, 7.12652745626434, 5.217989035331337, 19.503613494091926, 26.12940872575263, 24.231989841968215, 8.820313441980334, 13.947540732977927, 8.481212241908718, 13.369696633867436, 14.559220185685051, 8.713136315564165, 28.033467298856124, 23.5380670917306, 15.433290794366643, 5.320698116779234, 13.0999026259212, 10.763129335285203, 20.61079542000249, 23.02008200333464, 32.303188388116084, 13.782286130070826, 21.964729877666, 6.19528029945864, 14.416188363234395, 17.433622991224713, 7.38536137083142, 25.438074856441677, 16.314516147611023, 25.886709243926106, 11.665819447717597, 23.805279471048276, 9.415097537190276, 11.880135044807965, 9.507544433786057, 14.892057818412088, 10.316224132705043, 8.159506807331441, 9.011585207555953, 10.159315452311006, 7.2186529653385145, 26.73207756123868, 10.187925502417366, 17.862743329567472, 16.684303067406365, 17.253928688260714, 25.273743544135726, 18.121345393532255, 7.17183200820583, 20.18601029504777, 20.90328161772591, 5.797231358972224, 5.701923794491928, 8.38738980926101, 8.430045937735338, 7.878863912876221, 8.366411197825304, 27.87365104737651, 14.987353147201851, 15.789059262772934, 11.873629225099084, 12.872715718239986, 5.174170244302033, 23.234081907404434, 20.08794589783753, 29.85774897798674, 9.141219614689449, 23.1204797804396, 16.251068256362004, 10.417754592215712, 7.741150697730916, 14.126355576386901, 8.403372380595306, 24.92581962892242, 5.943269619420127, 26.12799032226521, 25.77335192038231, 6.173196893311288, 8.630297811725656, 7.328689772780694, 19.682178848179277, 6.365465035092105, 19.66197181216429, 29.18173740128975, 17.689440754228755, 22.531113537631352, 5.680441652062019, 12.960039914386476, 9.765584455924188, 26.774273926987494, 6.610655663334928, 6.656809341179271, 12.50897121028334, 7.696563339397367, 9.576782529764285, 8.15302186235624, 5.5948882119850145, 5.830890116895416, 26.032799156407567, 12.984412241414484, 13.863729803356284, 21.835964814580493, 14.998982117538187, 10.379011834477218, 8.759055195811493, 19.54440853696855, 29.422020741855412, 12.120433321315048, 26.227065757192474, 8.301139249486265, 5.514607001701829, 6.964851643683442, 15.121053118950243, 21.260345923376796, 9.726572545515994, 14.989747176242654, 17.071844139377813, 7.3811617091410495, 34.58098782700444, 10.344785587252021, 12.090915851870733, 19.47411469003186, 30.993133836194016, 13.279665083781794, 12.048109116099134, 10.575808902552392, 5.94181843676778, 8.265392528367657, 27.14473242955064, 5.630834576569097, 5.145407000671487, 5.630700887100481, 6.4552474548193155, 11.142119773876182, 11.54722699019126, 16.260962357234572, 16.388652571477195, 25.121224089538643, 13.09341558564898, 24.043688073699432, 14.638457755037281, 13.5907364235711, 5.46444990554674, 9.271138936035928, 13.627553837474702, 27.145243341623996, 12.280748995921837, 9.883030196776355, 9.418207081556673, 5.030769561742554, 15.140917147684034, 8.44915007398493, 8.735240242130887, 18.479975308636714, 16.80433306586768, 21.565110036242242, 14.379351218636856, 13.799976734521884, 17.886686294342795, 14.297403161910111, 8.70966214335854, 26.420106670087534, 13.077408579417972, 16.133776641668973, 13.254933024930562, 14.06229071698576, 14.967824759442184, 6.003773463488546, 17.78646108178905, 27.541578909392484, 6.452096730576272, 7.242205975479558, 9.434315672471481, 13.540815146927159, 12.075680178103658, 6.738411903012829, 29.607170702958296, 13.07872017684838, 8.49702780732603, 13.968992585668438, 19.17376091329539, 14.81302180436878, 17.406453265864684, 15.592621985640504, 5.484032971774301, 17.5648495997316, 19.40876109115219, 14.257067084179294, 16.52620702180015, 13.962849302051536, 14.568079309296085, 18.555184126783363, 5.627352345947831, 5.698833180013372, 14.14749684985413, 14.76537894521048, 18.49396107278392, 13.631752070501422, 18.333264890542395, 17.848187347686086, 26.826069753818476, 14.383047157028724, 6.463029846123121, 6.898311019500329, 25.16863714882976, 6.459915968024128, 17.576234113712722, 21.418957859877253, 10.283520773346032, 33.83768155564253, 18.890127514299323, 10.171151551286965, 14.59406556742173, 8.018715825979688, 34.64217290775749, 11.440532331490113, 6.891277526850189, 14.343767932856702, 8.22647182841353, 15.457685497728697, 6.767220276396229, 16.586599982348382, 19.585942328904498, 5.921796178639127, 6.091724483877817, 24.68882631722765, 28.816832761213202, 5.040680437366849, 8.161959435527372, 6.798285701576425, 18.237307894251245, 8.004959056567921, 5.908146785031095, 6.285578042531846, 16.795531524865975, 9.226345846763543, 15.989363248016248, 13.438078150557166, 17.013851754094652, 14.658585402918307, 6.5523826584237845, 25.493672989422123, 20.46459842845227, 17.236926001070753, 5.521253715664452, 10.374067682129077, 10.694427632380602, 5.625285841824949, 5.247653879521983, 39.40452979815122, 10.179943413441924, 8.5197643459534, 8.84120944425823, 11.018270916889009, 6.51228564390057, 7.23196576253249, 22.6340765535885, 15.39825405788824, 6.884961043187941, 6.972518313093472, 29.26320347515593, 6.581140971172643, 5.638729332117477, 15.974932288910992, 23.882984902913783, 11.113083135247003, 7.224560355595274, 16.66837639337048, 11.299531304233577, 14.527903070729948, 8.435545241584785, 5.032926187964272, 8.411937890879766, 5.44320745566681, 13.252701812272425, 19.549181111119598, 7.667039915038648, 18.876323023852425, 6.134957852816822, 8.087797392185438, 17.208393882738076, 8.052295125093584, 13.442823532041377, 5.565781982250076, 5.581436371644383, 5.829017769956421, 15.444251747114913, 11.797749941275354, 22.911617795986214, 19.985882369196098, 14.780222847508387, 12.925447574752505, 6.979851913687822, 10.803687779250666, 24.822845384884385, 28.002781259492483, 12.496519965979616, 38.286239949622946, 16.733626548093067, 11.559373638262, 7.978307289582532, 21.712074706962245, 18.498385187677915, 23.1795564677443, 19.044461241075258, 14.453478903329575, 11.41819703849587, 9.218337999921085, 35.39691699168348, 11.699745202093858, 8.136432379764248, 7.767905022484296, 20.04315478190311, 17.748704126119666, 19.024689751522434, 7.192923139101685, 8.349412130153526, 5.683687257546988, 30.739780943470628, 11.484910236374851, 19.214867899561483, 6.7592989615501144, 5.1625456231144975, 10.374614303059332, 8.40175561211039, 9.939592554609131, 7.364254378865857, 5.7677260180303165, 6.101909434968167, 15.77789731009801, 20.095575646121343, 7.863678222489, 15.204959465477911, 12.567277861385866, 5.244212758642511, 44.632954585577316, 17.590070070146755, 11.056932531780626, 8.559349006562172, 8.77823587938093, 5.961580261812889, 7.954447907007407, 13.523430104327428, 6.823112496229218, 30.815712403174732, 9.410749087638646, 23.351456286569892, 7.340935705672286, 10.68485915319267, 51.17865238084083, 17.950223840553456, 15.93705338957868, 14.801411870948312, 10.363803915409187, 7.344426379732137, 14.392433344122908, 11.703768192832985, 10.914741937845072, 14.055116009649652, 15.37953332638827, 35.37571519772326, 8.97376901561229, 5.574836769095494, 11.981371369631178, 6.802081018051901, 17.709749920884516, 10.364887631270088, 12.468233825043775, 26.561935558326855, 23.93930184010039, 6.659632712781382, 19.304404675317574, 8.328556532368495, 29.55678600665263, 14.122751199961312, 23.790785622711677, 39.80253168853471, 6.079367619705172, 13.594389242082165, 10.605367272232609, 15.459789924197318, 14.365736380988945, 18.253506330550213, 6.342404578726525, 6.569467738030802, 5.456327212407494, 20.885838964298237, 8.54136093216542, 7.491122917540311, 15.54449143640875, 6.313221917059967, 15.705947971772275, 7.009507386444177, 12.170685704823784, 6.243203758556379, 15.57615559910002, 7.906671965194041, 5.883546233169264, 38.450898675443845, 31.477547143665696, 12.588519410024317, 7.2349714462561465, 6.748717729791243, 5.281359316928618, 29.25096595086329, 13.252032808148007, 16.126446923328224, 5.867133290088447, 13.854965723430015, 10.563612935636716, 13.954467969123252, 18.19359226880635, 9.086960411506878, 21.071158346391858, 5.049325581334965, 26.40805698121749, 16.89580842289325, 13.782232371732244, 16.341285917705857, 21.382409159658426, 32.575329509579724, 24.35292202573224, 12.697908763348455, 29.457571676196714, 16.12072195928958, 15.582083158234525, 10.624684880752913, 13.295057215777568, 17.277638507868318, 60.01099794696911, 19.054395886687875, 5.14410642452966, 6.221020964441965, 18.372558262192175, 25.668596054784217, 7.581967797642596, 6.329753331174107, 14.709264865856335, 9.148143898778837, 15.293303931482466, 29.853396218872984, 10.724477480517914, 20.041936496747063, 59.66582648623159, 8.241096405898828, 37.35231664331962, 25.679057552952962, 15.641660875120309, 8.839249653994905, 14.13210862309894, 16.402391596786696, 5.089403394727938, 12.5782059997534, 15.478964960315238, 12.514497600286372, 43.956106792915364, 10.992254461598513, 7.507483543444232, 8.254962058104084, 12.683073705408148, 17.082876811665287, 6.44422262966283, 11.282315282670618, 8.229379758146653, 18.430928734667873, 57.60461806839971, 108.6186967650519, 11.54652524913379, 10.165535498868259, 8.586349867467138, 13.383894352851776, 24.45544154489382, 29.988571228110224, 8.417118401798103, 16.356665763557583, 14.074262720478568, 12.95477340289769, 5.409909498295039, 11.53296275386672, 16.326920281727677, 13.776490751186337, 5.5028912915387185, 10.520937244560823, 9.705281639754922, 19.739747947151137, 23.508439223853202, 16.238807570895858, 21.198760908664422, 22.3881903173808, 6.491711889760442, 9.806477595721846, 6.366574050435839, 11.52739321375345, 10.538900984683725, 35.748622994327675, 5.468962836755254, 7.07218537447492, 13.847135763704108, 28.27409506642794, 7.670011847961349, 24.93237091154547, 5.399238729147346, 5.633499954386229, 5.844097869226793, 6.930229712303401, 11.572921655761933, 5.589671218428349, 11.207741582687094, 26.194646975609196, 13.029407524434454, 24.129896134325914, 6.96342802706453, 7.884209901641719, 5.210220329333063, 11.790908648172453, 8.147514242721854, 20.436413318884775, 7.638283830022419, 11.893068120743374, 18.67637966392519, 27.32944360628778, 17.515023688335663, 7.970607111558411, 6.161788212111931, 21.08306436297368, 12.394304579207382, 6.814714346798202, 5.548652264650759, 20.157192512645555, 15.186827452507494, 8.406903605732145, 10.698252426725466, 11.63483321914557, 39.10986335180949, 9.5424721441261, 25.31964245747327, 6.722489216946404, 36.17278747109625, 14.584672123461722, 7.2175733111905345, 23.268431917625346, 6.860431783769182, 22.99049452018245, 19.641691899641817, 5.2468410656900994, 12.737344922610392, 5.735588948498332, 12.788149374741248, 22.484125151455167, 6.810372460786529, 21.761020155663168, 6.2670883317413795, 14.99931033120447, 16.536832842150023, 6.056692099677529, 32.46820875621581, 16.084949070979132, 18.44103998450979, 11.682177391909113, 16.70106481470259, 20.59651836944151, 7.866026005762414, 5.588688592849761, 14.462615849449728, 14.339530496526407, 8.578016469312836, 40.08646513991965, 8.322275928011907, 5.082045806117861, 13.73336490680916, 25.80693611580575, 7.205143538360573, 7.298166292265473, 8.474572887829625, 24.06023057579505, 18.427049362284222, 16.362398893779268, 6.352992469654418, 16.332778836059976, 6.473244774734201, 15.457777408217883, 11.787545232913333, 5.73331130998731, 5.341947160346485, 9.642420390500178, 22.551991755022915, 5.28083445300578, 12.423974267126598, 6.262911432365916, 7.047426730781582, 5.762618420552921, 12.161529833299408, 25.755339649494964, 10.256448936659163, 30.08978325548905, 16.460096634933947, 26.877603941365237, 5.909243682609421, 27.90519401181365, 17.230743317801444, 26.33630339778646, 6.16434247227362, 7.870420535655361, 13.91625659751887, 14.35922258633641, 26.179793169376357, 12.688491786350596, 6.987142382997008, 16.73773699507762, 10.468099533490754, 12.084205056568763, 17.616520527249186, 23.589811956384388, 10.602159996761245, 21.629289745634942, 6.237421814206501, 6.652834432769814, 17.189707719938756, 7.028191798980902, 5.663108625072276, 14.192291615711467, 9.502363952766977, 31.776083815061813, 51.38693919299352, 24.266290533811187, 14.191539655192592, 13.85851273746023, 17.88574039854172, 7.179518709402086, 11.22095406344581, 10.980162284072788, 30.57510214788323, 11.36223521639863, 5.990464052039664, 7.68234445117051, 24.69599147143557, 12.456730372511174, 18.740252561049036, 5.620027034995291, 19.739570784638495, 5.51663355459263, 14.133051301951925, 24.91596455134114, 32.41625807332852, 8.76741891347917, 9.578399172772286, 10.288330137535612, 28.627567633683594, 9.649231431416522, 23.945866864640497, 23.376179501943344, 16.283262207396216, 18.35903980569862, 23.754908500498885, 11.785389164752214, 11.326334262520287, 22.771484790663663, 23.877572390901165, 6.618962333368332, 5.516006062719892, 27.53216734538575, 48.62811938399107, 7.58378049868329, 31.45958687518855, 11.752249072363961, 34.7159492888001, 19.28684994301021, 10.425948483707824, 7.9637206151301685, 15.53135716792189, 9.245964003086415, 15.38111185892032, 22.30190166810327, 22.064538169189756, 6.968254723350931, 14.731260243241515, 9.664912322372183, 11.8447919621763, 16.495482606027657, 8.096739653470948, 9.798428620836583, 7.033501962129726, 5.506011237976372, 7.475510483300044, 15.388371727027039, 5.135372380535703, 36.687800850406695, 24.592495186452712, 14.297645508988225, 7.8421952924190474, 15.13895848382502, 17.598849786349334, 20.272171927888927, 17.27434188758111, 6.735528318477885, 14.040983997057163, 22.824905912351234, 5.812656511747296, 18.78335108891789, 9.37423461509617, 13.550207011217362, 19.166464753956284, 13.629590663634296, 9.925860265980704, 14.023764354666623, 22.866410228670617, 6.998613947176227, 6.294242795255622, 19.857011622503215, 13.770143284641891, 6.973030797336719, 39.85464706853429, 22.294521220602, 24.590834358049833, 30.973899977171165, 14.461895185745295, 28.786818598887027, 6.805479836101327, 36.921533486259534, 5.746090963899905, 11.131654819883746, 5.7470593664539935, 22.434659864442633, 7.726730830103449, 22.222885636882943, 11.655335119131433, 11.166788242195151, 6.863921084799936, 13.988658523421925, 12.462057746217214, 18.650412299077733, 6.468617247696398, 16.19620616183144, 7.103342446524521, 7.117142020327742, 10.352138543168003, 11.005542396821426, 24.33795085541969, 6.922480361426456, 13.566676470686465, 10.765507632205953, 37.197662861354495, 9.76888594316168, 7.686641844359956, 10.110712889716604, 14.460082181864157, 13.150887334186512, 28.3923523920869, 16.504092427823828, 18.607410904830417, 24.04368799104024, 5.30254482564383, 6.613938668246719, 19.126877271713656, 17.488805211037988, 44.46180012835612, 15.01619071505213, 11.400726435050315, 19.763337488818486, 12.76936303725759, 46.165494123405686, 6.646529393283384, 14.31909930289603, 7.210751085173422, 5.192465081242363, 5.9200732000481375, 32.03284865931243, 5.164627047027573, 6.509948402820264, 8.861548544898142, 10.471656499512488, 6.008773588245186, 16.28206290262507, 16.068234709352524, 7.562615806868111, 5.33641523766582, 20.336810313169615, 7.927828453533029, 12.996618565007644, 6.080037526014767, 16.892037408852264, 9.965188550330211, 13.27470667433379, 8.379489134360625, 5.227933178694145, 10.32595798469985, 15.804994962818999, 7.51190488494756, 15.798627502235862, 5.433817183026078, 6.9294331008880015, 9.829776402260817, 8.787928172032599, 5.456023128191041, 7.1478390715733555, 6.584616607267278, 9.865201765720263, 17.963427989304872, 6.41107875081333, 16.491733350318974, 17.46731092289467, 5.165916108373737, 18.39329525669586, 6.122201499615598, 18.381261757903566, 14.110541629676332, 13.613296673780486, 16.870209145480175, 13.42221394346609, 16.70965646196089, 5.80034064353948, ...])
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)