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 = 44926
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);
([7663975.0, 7814787.211010594, 7859073.4375, 7864878.515761969, 7865442.81057256, 7867562.260932203, 7871295.2604327155, 7871313.446785407, 7871812.055110991, 7872368.75, 7873006.25, 7953265.843258163, 7953860.084313675, 7954646.875, 7955295.735935664, 7957091.834735105, 7959723.047156415, 7961302.863207208, 7963358.240330199, 7963429.49681881, 7964013.135566783, 7965660.9375, 7991148.575895326, 8038351.5625, 8044923.863265472, 8046598.831290379, 8047073.862239919, 8047498.645794344, 8048453.023370177, 8048710.9375, 8049220.256519927, 8050031.25, 8051864.919496081, 8051923.384274925, 8052018.368790842, 8053210.530117704, 8053262.390011031, 8053697.096547313, 8054308.510946045, 8054436.89025711, 8054490.759683489, 8054534.375, 8054937.261924404, 8055124.883781432, 8055262.138368544, 8055374.648000315, 8056634.682010645, 8076456.794690288, 8097701.897852144, 8100065.279275445, 8135217.745920473, 8217524.168876806, 8350967.867093038, 8351550.165738138, 8352344.636964421, 8352495.950820308, 8352806.138492982, 8354453.388604566, 8360439.667805071, 8496151.992035894, 8506182.241574224, 8613974.503582565, 8754923.872835044, 8867779.6875, 9008054.6875, 9008670.3125, 9135907.600339128, 9136002.092199633, 9136259.789112719, 9136279.492340287, 9136446.919638498, 9137010.512329198, 9137884.375, 9159904.09215774, 9221144.697691776, 9228102.754162565, 9246104.6875, 9268147.260976655, 9360715.591758361, 9364075.0, 9366707.973440157, 9396055.330305519, 9397229.508191934, 9397936.821182523, 9399245.3125, 9436096.919514222, 9438368.75, 9447128.401228076, 9459634.09010627, 9459712.5, 9463758.368533771, 9467244.79814677, 9487670.119904513, 9497408.844658082, 9498043.623149564, 9505092.1875, 9518371.183057118, 9519325.433751505, 9519532.8125, 9536545.3125, 9582579.22754603, 9583101.5625, 9604236.198872069, 9606162.429191452, 9608770.3125, 9626243.75, 9645378.852637503, 9685796.065326834, 9852506.25, 9868445.477800328, 9924629.857156986, 9972363.495177822, 10085356.84855125, 10088443.91768083, 10102570.582020221, 10158801.5625, 10160307.555263577, 10208683.320590857, 10210790.588028047, 10237350.0, 10492357.230011512, 10579002.361177353, 10649204.6875, 10745263.584253399, 10853663.206233006, 10910996.7725184, 10912308.667042637, 10937239.133400613, 10937601.271556603, 10940360.216267044, 10959667.1875, 10959707.520013656, 10975407.115291093, 10988465.000603149, 10991843.04789693, 10992517.00204103, 11006280.048740622, 11007343.360651052, 11024962.5, 11025039.452344533, 11025227.581789624, 11026682.346563095, 11028675.870436069, 11046045.965713922, 11048000.725118268, 11048237.5, 11091872.41585151, 11106441.190392071, 11153097.326066319, 11160619.75984712, 11165710.586789299, 11168316.121913524, 11168505.006507505, 11176814.281662473, 11179487.225623803, 11184562.504409403, 11190836.522085337, 11212221.394747324, 11233379.877405684, 11236830.102754481, 11239535.9375, 11242395.366324417, 11246104.576445056, 11257873.787270537, 11272973.752694117, 11274285.9375, 11292769.34955943, 11292781.101586401, 11296579.6875, 11299630.36186383, 11302392.1875, 11310698.79733478, 11314036.269241158, 11316768.75, 11323565.748335565, 11329813.456368797, 11329836.403551066, 11329842.159318374, 11338629.24073613, 11347912.00009535, 11353674.982906274, 11360318.475197863, 11362349.785152186, 11366311.279229509, 11367226.933653342, 11367761.735767843, 11374368.75, 11374386.886098158, 11393029.95466691, 11419239.057939295, 11444388.169733193, 11444817.1875, 11445410.9375, 11446838.502209853, 11446864.0625, 11457878.275471194, 11458143.888547543, 11466158.565129673, 11469239.0625, 11471627.415147278, 11482036.12465651, 11483143.428845366, 11488656.82700824, 11489745.623323282, 11502302.190018486, 11503002.565240154, 11505852.883598324, 11509965.625, 11510530.54692982, 11510831.25, 11512689.173275914, 11512884.401341544, 11521489.0311714, 11521551.474690795, 11522891.908071788, 11524996.066783745, 11531349.76550859, 11531622.533964476, 11532743.75, 11534176.198731543, 11539772.50701052, 11543041.185120784, 11549531.15902222, 11555114.609259434, 11555129.6875, 11555167.480957115, 11567191.87610741, 11567276.5625, 11573648.363789076, 11574019.703312285, 11583762.5, 11584170.3125, 11584862.185491106, 11585809.208722757, 11586247.519114882, 11586271.38128416, 11587188.927665383, 11587545.3125, 11588001.5625, 11588023.4375, 11589209.357343165, 11589301.5625, 11589326.536973521, 11589831.269757457, 11590290.465617191, 11591302.85881728, 11593121.875, 11596648.006927421, 11596993.972634064, 11597325.235839056, 11598546.125338573, 11601179.724686429, 11603427.717413086, 11603659.31955227, 11607653.061471248, 11608142.758812921, 11608556.137874499, 11609898.31402009, 11613423.309092458, 11616131.95439885, 11616740.625, 11616815.606120383, 11616929.591092544, 11622736.369844427, 11624028.01533588, 11625026.731083887, 11626085.84942811, 11642985.9375, 11644817.78824094, 11646923.351170106, 11649301.855822535, 11651801.612619143, 11654895.163903724, 11655298.154380372, 11657700.175605461, 11659372.592452388, 11659809.87089118, 11659845.311937837, 11660747.211273352, 11661084.727918463, 11661335.871980168, 11661557.8125, 11662193.279820852, 11662231.842870537, 11662382.580376334, 11664506.25, 11668466.313036464, 11673368.131332979, 11676388.32272306, 11682687.831230294, 11684889.0625, 11688271.632187158, 11689945.3125, 11690943.429924872, 11691043.75, 11691110.290858513, 11691204.46732283, 11692239.749017285, 11693909.375, 11699728.690374933, 11700418.4326653, 11702692.036715953, 11703586.319147877, 11714097.374530826, 11716782.8125, 11721016.064023158, 11721949.476073794, 11722045.45330493, 11723070.3125, 11723104.597340459, 11730005.645559186, 11730175.536186825, 11732332.201310806, 11735249.180806236, 11737287.5, 11754093.847880105, 11756961.978362171, 11760746.036899753, 11763595.3125, 11766581.25, 11767553.125, 11773211.709150216, 11774137.301099239, 11774240.252735142, 11776604.750836281, 11777314.50748394, 11780821.925307527, 11782355.074936287, 11782556.25, 11782664.01565248, 11783794.012300154, 11787370.3125, 11787738.33212168, 11788164.80107093, 11788945.743810214, 11791454.803562194, 11792615.27290159, 11793467.088640552, 11794392.990354892, 11799940.148843495, 11808446.962121343, 11809234.09948441, 11810715.255628487, 11813640.625, 11815493.959975986, 11818880.500444131, 11819346.875, 11819931.70849239, 11820511.756918047, 11820514.38443889, 11824521.249775698, 11824859.920232216, 11828112.373880219, 11828805.342593547, 11833135.9375, 11836200.376925755, 11838781.413276669, 11839242.1875, 11858518.75, 11861347.665176366, 11865536.993606612, 11865547.686016172, 11866609.375, 11882427.573101377, 11886160.2864503, 11893673.949522965, 11910527.833114434, 11914660.416511098, 11916817.65689917, 11917201.372251993, 11917242.47963194, 11933556.25, 11938307.907630851, 11940524.776661007, 11941143.07902198, 11949860.496698387, 11951365.130596995, 11953730.632459633, 11956028.061717886, 11957240.440052582, 11959766.472650472, 11962673.60897811, 11962843.267541012, 11962883.431512864, 11981057.8125, 11981238.556739958, 11981491.84218979, 11984329.672731828, 11988918.072579067, 11990229.6875, 11990954.659958627, 11991435.9375, 11991526.5625, 12004037.5, 12004395.827893924, 12013199.931262683, 12015596.294004522, 12018583.394020632, 12028982.83928889, 12046974.71038366, 12050504.6875, 12064941.804123016, 12065011.403266931, 12075340.727314241, 12078565.625, 12087021.792713555, 12095694.34193815, 12097232.959335336, 12097293.766981127, 12100691.163145805, 12121160.9375, 12125510.698556548, 12130023.020673824, 12144216.14864933, 12162340.08287308, 12162654.6875, 12172782.8125, 12173898.4375, 12175546.02186804, 12192714.0625, 12198303.061984064, 12198303.731273267, 12200379.58664659, 12200402.843321828, 12201791.477476899, 12209980.949782852, 12225416.35327042, 12235314.0625, 12239225.0, 12243301.487580264, 12245600.331011018, 12264330.408400407, 12264762.006823437, 12291316.810375622, 12293763.426740613, 12294020.3125, 12294153.451758167, 12294302.034495234, 12294981.060179682, 12295226.487222247, 12295296.841314387, 12295617.1875, 12298263.133365273, 12328631.266139543, 12329658.938193003, 12330282.790883143, 12332125.0, 12335657.8125, 12337454.403540418, 12337495.24215238, 12351814.0625, 12358334.375, 12358437.5, 12358626.5625, 12380102.99831593, 12394931.804063668, 12428389.0625, 12430206.313235259, 12432366.873244504, 12442983.576419977, 12455506.914034676, 12477193.496605825, 12479245.828301476, 12493201.439820088, 12494381.25, 12496784.205858003, 12530542.137840448, 12537465.658769635, 12558211.201818874, 12558219.4427861, 12567482.414986432, 12574761.736923374, 12574818.696462728, 12576406.946329473, 12592769.526772184, 12599615.253067592, 12600941.497883847, 12604393.206599489, 12633171.643526936, 12640795.13065429, 12642346.770614302, 12648741.163869765, 12654553.626305267, 12655595.903618257, 12656044.962108858, 12657633.307845484, 12658189.0625, 12660310.077457482, 12664115.404309662, 12681956.93467223, 12685881.116199143, 12686534.717034495, 12687741.559077127, 12692347.002810089, 12700456.25, 12700457.22954165, 12702794.011298899, 12702930.920445653, 12707630.970446944, 12716040.625, 12716189.0625, 12716537.9645198, 12722313.183246577, 12727904.314251026, 12746883.892733436, 12748323.68572621, 12749681.147347031, 12751640.407607974, 12756566.985817146, 12757351.546436224, 12763144.622347552, 12763370.698246226, 12783844.581938297, 12812203.010950876, 12830494.877713222, 12830951.761735821, 12833728.125, 12841200.850410812, 12841251.259136874, 12861665.625, 12861680.416757533, 12866011.188407147, 12880114.0625, 12881510.9375, 12881537.166038938, 12887675.158452565, 12889222.499522507, 12957049.925393438, 12957673.672036102, 12958793.473914402, 13000493.75, 13010043.960671041, 13010093.975242604, 13010104.374802193, 13011968.447933797, 13032874.75836311, 13087929.174077585, 13090777.94204127, 13093182.189131936, 13103485.9375, 13115442.113739751, 13154491.846011063, 13155087.38289467, 13155133.36201301, 13155140.784222962, 13156073.4375, 13160234.375, 13160438.001855684, 13164910.188947406, 13201762.5, 13205685.350656567, 13206962.901338508, 13208556.124201093, 13209056.25, 13210537.5, 13211595.3125, 13212487.5, 13233460.593395092, 13235167.160324428, 13246063.824542452, 13255901.83677006, 13259817.1875, 13259825.456000628, 13272342.94960945, 13278486.100254318, 13278712.10086485, 13280445.629491456, 13282633.666070497, 13285162.728670346, 13289040.625, 13290357.400509324, 13308362.595443584, 13314987.690110035, 13316207.077129884, 13318721.26814233, 13319268.45411393, 13336029.6875, 13346159.869631736, 13352003.125, 13355428.89226167, 13355759.95147129, 13360347.694107188, 13367007.475415397, 13367054.644144066, 13371532.539838405, 13373676.141842755, 13378636.92133565, 13410756.242474344, 13416479.6875, 13416505.031700317, 13416591.738382516, 13463720.3125, 13467775.054384135, 13468572.22315223, 13468674.042499145, 13471778.968262535, 13473612.291597724, 13480085.272600567, 13480770.202725194, 13481485.272621954, 13481732.73671424, 13492486.76436591, 13494015.009324925, 13496475.0, 13499344.635384493, 13508604.344555257, 13519017.1875, 13519320.022164939, 13520013.91598392, 13522416.80734651, 13541166.645751633, 13542158.839854522, 13542335.342089051, 13542785.932949884, 13564321.875, 13571582.8125, 13572788.916693373, 13573443.75, 13589304.6875, 13593866.415320303, 13602729.6875, 13604798.4375, 13605042.785706026, 13622587.28441925, 13694194.622785525, 13694202.348120045, 13694711.41697421, 13713138.646573449, 13727431.517094271, 13754587.578497594, 13788803.075269274, 13791215.902645733, 13814682.623867696, 13815253.08660283, 13880220.3125, 13888310.9375, 13926501.459787829, 13965644.294949189, 14007912.5, 14073587.476202566, 14093751.898484657, 14125991.850554194, 14494445.029356247, 14538434.375, 14543913.04432179, 14969527.246886104, 15146264.0625, 15232623.4375, 15241682.822071327, 15269672.27836694, 15270090.407112898, 15292346.96024562, 15326965.520531598, 15466264.027640259, 15477706.159937419, 15502656.179534033, 15516379.348945428, 15516409.723503679, 15538340.587984001, 15590644.693996865, 15920413.427248448, 15979346.70375387, 15996171.157134922, 16008829.372184532, 16013151.310947817, 16025313.500238508, 16039756.25, 16042028.125, 16043654.6875, 16044200.293095082, 16044837.5, 16047727.089519884, 16049940.514504427, 16051655.28828148, 16053934.613030665, 16054546.858232798, 16054751.383404948, 16055005.038097411, 16055314.0625, 16056208.69643873, 16056220.791499874, 16056575.97803514, 16056662.308751086, 16056722.911315178, 16057997.602390356, 16058648.603716813, 16058939.10044754, 16059204.327738937, 16059390.343079288, 16059404.596705502, 16059655.762137841, 16060117.748185813, 16060492.647858279, 16060860.197382273, 16061035.642288158, 16061040.38393978, 16061071.300363183, 16061644.07253666, 16062219.649806818, 16062456.184442727, 16062483.869793858, 16062663.825974582, 16063636.237214353, 16063693.75, 16066212.5, 16066940.201683328, 16067173.488360696, 16067456.25, 16068526.365236187, 16068715.123393364, 16070149.99009831, 16070235.690748783, 16071004.6875, 16071162.511167476, 16071234.84752508, 16071381.186688047, 16071396.657019494, 16071591.487877816, 16071604.293401383, 16071611.932894774, 16071653.709524458, 16071965.69734139, 16071988.555545304, 16072202.573519075, 16072268.196185878, 16072429.263997, 16072668.75, 16072845.153415289, 16072856.4691051, 16072962.955334071, 16073056.245924111, 16073207.271312054, 16073211.358577477, 16073407.630317194, 16073495.169437304, 16073825.876791218, 16073876.281518556, 16073974.840381177, 16074361.403213467, 16074435.717412652, 16074551.243279036, 16074749.075289479, 16075056.564296285, 16075124.952336749, 16075255.903902784, 16075494.661047086, 16075545.210595377, 16075962.976124981, 16076069.032052966, 16076141.653604332, 16076185.265037816, 16076224.000241453, 16076305.589819282, 16076458.805654963, 16076732.074192315, 16076835.112731943, 16076917.1875, 16077091.60310401, 16077209.274762135, 16077257.8125, 16077387.883311247, 16077531.913062885, 16077591.912005797, 16077615.443443194, 16077653.750593005, 16078246.708503556, 16078350.242968896, 16078404.87101447, 16078440.837259015, 16078625.0, 16078797.004221018, 16079037.003762748, 16079278.125, 16079391.446457973, 16079553.125, 16079559.096773379, 16079845.143686034, 16080100.90080417, 16080294.96958371, 16080587.8766143, 16080610.425807256, 16081017.1875, 16081063.548844958, 16081067.418363072, 16081206.013374764, 16081365.336645136, 16081382.460840065, 16081493.422024336, 16081744.415513167, 16081817.105262492, 16081845.59592507, 16081853.921982802, 16081889.727298897, 16082341.46923523, 16082350.0, 16082471.09633524, 16082638.381981164, 16082891.744587516, 16082894.548999498, 16082955.58882743, 16083409.040341806, 16083466.910093063, 16083482.004834848, 16083491.403060136, 16083553.125, 16083750.0, 16083943.483575482, 16083990.17510375, 16084043.75, 16084060.133639175, 16084062.604102759, 16084122.791453576, 16084139.914808728, 16084195.3125, 16084223.233315295, 16084390.159210816, 16084511.847610056, 16084520.140059901, 16084564.023141464, 16084568.60576436, 16084627.791127943, 16084667.624580434, 16084723.4375, 16084733.061046945, 16084856.382532997, 16085108.932452923, 16085219.259030273, 16085223.353640785, 16085239.435557213, 16085285.62266956, 16085305.288464604, 16085306.727361236, 16085307.457517661, 16085326.422677258, 16085409.123522153, 16085439.239839159, 16085446.024403539, 16085552.087638043, 16085572.372501526, 16085890.427233597, 16086069.842253614, 16086149.742546666, 16086196.875, 16086231.502210863, 16086342.792189272, 16086392.845351003, 16086693.75, 16086706.384078715, 16086710.262780637, 16086762.494288776, 16086814.0625, 16086909.729379361, 16086996.082688354, 16087074.076282749, 16087214.037282007, 16087252.310340118, 16087255.394594746, 16087265.989072414, 16087272.704644617, 16087307.818050511, 16087339.0625, 16087357.04120686, 16087587.01842331, 16087710.324096117, 16087713.649249487, 16087785.669852419, 16087821.875, 16087939.760500586, 16087944.98364351, 16087974.580590758, 16088021.1522029, 16088026.276763208, 16088115.990022967, 16088144.759956747, 16088164.0625, 16088246.807586243, 16088298.556914298, 16088323.12386766, 16088443.75, 16088558.203241332, 16088679.01927531, 16088765.59539998, 16088771.875, 16088954.123192845, 16088980.824538682, 16088996.07192625, 16089079.59681491, 16089101.821617091, 16089184.559546014, 16089271.875, 16089350.870550603, 16089390.051109875, 16089435.814657705, 16089479.6875, 16089485.636898147, 16089589.732789995, 16089590.4971099, 16089710.9375, 16089751.202918448, 16089788.283008719, 16089791.857691446, 16089794.960044006, 16089986.211986495, 16089995.035092525, 16090018.75, 16090024.931593357, 16090165.625, 16090176.238941498, 16090178.646900555, 16090181.750270726, 16090201.055047682, 16090224.922683226, 16090232.102134565, 16090254.582387753, 16090308.0603111, 16090325.605223736, 16090517.282568336, 16090529.6875, 16090560.613829857, 16090653.55075643, 16090667.136224588, 16090805.734517898, 16090879.64199424, 16090973.11491934, 16090973.73285998, 16091024.852938011, 16091166.630679848, 16091242.17386775, 16091318.293429185, 16091405.907279093, 16091425.0, 16091460.9375, 16091566.880096683, 16091578.02580329, 16091581.246091252, 16091613.73160289, 16091628.545861373, 16091663.30388463, 16091691.332673531, 16091691.866544446, 16091715.665394481, 16091756.979069501, 16091808.690432858, 16091824.702944892, 16091831.25, 16091855.337684104, 16091884.159191536, 16092124.105220862, 16092153.881335596, 16092195.984684998, 16092223.5470664, 16092254.282629931, 16092282.238916835, 16092329.22238512, 16092371.597592745, 16092455.856115162, 16092460.9375, 16092523.4375, 16092603.028829759, 16092703.263118187, 16092705.7674203, 16092753.219598975, 16092760.318480145, 16092845.218624953, 16092912.61198767, 16092932.485088501, 16093014.455398962, 16093023.34233132, 16093076.779252555, 16093089.222147832, 16093172.782954426, 16093234.81766131, 16093276.81759618, 16093389.506558744, 16093398.908192156, 16093401.881507551, 16093426.5625, 16093431.905459953, 16093475.0, 16093531.25, 16093634.322452605, 16093654.6875, 16093664.593093798, 16093708.139756145, 16093743.087400384, 16093941.782452395, 16094055.984844664, 16094070.327710332, 16094174.412116105, 16094224.612481399, 16094227.212805578, 16094231.340419797, 16094266.939438902, 16094267.831677036, 16094298.725318244, 16094328.191675404, 16094342.1875, 16094420.3125, 16094468.976005409, 16094474.611117832, ...], [49.91968876511776, 17.971376057267744, 37.46175633214834, 14.136192966220065, 16.961644056666394, 5.691710167990848, 20.987988694731776, 13.212350001610403, 30.38012769967966, 142.23978675771082, 71.98999594609856, 15.84421850395801, 35.19234602818221, 33.84899112344942, 16.845153328842358, 54.55027861817821, 23.94945046418048, 5.12494633640555, 87.3633280749618, 111.53232258075185, 69.98614816279793, 56.92540010218718, 8.361144602590496, 38.04919584147799, 5.356725902080762, 6.5506454626912145, 8.524728231202284, 24.87702413816175, 66.01436008680542, 175.92956784679964, 37.80517783845325, 134.5595079403543, 19.661894932334206, 92.85366291454989, 24.2995672324069, 8.082288018387553, 10.960031605810906, 179.9593960060515, 22.70001676466569, 26.800116910573532, 116.51937300556855, 76.64961772679919, 14.105601582536314, 26.421202707828826, 19.340115238213052, 7.480700774478081, 16.256823283230563, 68.40338355005377, 34.27395218639797, 61.37390834694354, 17.307433376614565, 61.368824435688424, 14.040981994881664, 43.58917932552653, 16.080532502494442, 48.971968833608585, 26.499357099015636, 39.53031214168712, 34.610327249966915, 16.877584883085326, 7.409019848045543, 21.52891282919464, 17.200010431310282, 53.61118209709929, 54.63905588550019, 30.507034888600256, 78.68167347946674, 6.874074455811117, 11.843184114541979, 25.189151631615918, 8.310324819193209, 22.273516022829465, 29.46257700486323, 65.49603509528714, 18.494643980046135, 71.17287165621701, 69.57339904332115, 44.958993901749366, 7.5912588348592935, 80.34780472412297, 15.592598629329778, 8.658509497285023, 14.299448137991199, 160.64300614152705, 46.5652170472811, 11.198005620282345, 197.4175919717229, 103.08733960897209, 13.956486516830585, 56.93792857502742, 9.850413055634684, 16.172042774938475, 6.457318148525261, 21.195670641370334, 136.0063064086426, 102.2193349169747, 58.83942931496632, 16.90009539828052, 28.927494361264205, 37.9633116407012, 6.0415393821137675, 155.57667253364022, 28.24831116956703, 66.02973592727741, 54.10038748425854, 48.337784824592845, 12.493836963912715, 61.62974433917485, 206.78176062649604, 9.475197586047956, 75.82519190073259, 5.437932144342066, 6.889190551589674, 26.217214714654844, 64.02501326429142, 29.97576976834267, 10.748103931178756, 9.801451274493196, 43.57966120800381, 104.82717336673895, 12.874011722773705, 10.112308262301582, 65.50518204729622, 25.200832128974483, 170.09490148625122, 22.00613991094501, 6.94700767258983, 15.218815668237225, 8.138489452435866, 19.53771071986237, 43.97379524178173, 13.932732067420343, 158.53262086773765, 12.997792614763146, 30.14563669072772, 16.554191275143534, 30.55100036848005, 17.81629699438789, 80.9137231064901, 5.478751640905784, 6.6596971944327406, 15.316900548623856, 19.769625463821527, 18.195092250764674, 27.735818618686313, 80.90861332197115, 12.093288254950327, 16.81896290462825, 86.20913860501419, 19.55068992751842, 32.88728246836701, 12.004716038084368, 256.13570912058015, 9.523857424454182, 24.08366301322164, 20.231309977714993, 12.183504401325697, 8.955853520363824, 15.718363544868119, 11.845365235866893, 58.921267396821925, 14.810418282863207, 66.17938187436447, 126.02028875325277, 7.20684708767698, 42.330352035284605, 8.631303315911218, 32.120377369279794, 40.70028473416246, 8.678581425090998, 74.95044380175145, 159.97718864760122, 11.68910343245345, 76.21407508653303, 15.43341155468609, 36.58988991770088, 17.07528749280031, 15.050938226490164, 38.47169951438673, 5.440711505155289, 8.277558516445739, 20.552239152005896, 137.08617605881187, 334.69393020641627, 110.68127164295677, 21.429974864096224, 117.96806044260894, 20.028930357765304, 5.252684782105015, 59.01388869501103, 90.04585494208906, 63.63767871967405, 57.41215664007768, 37.54723619842698, 31.190010782442577, 11.37134043509467, 8.361228166893735, 12.550590401052139, 40.04364763153285, 19.627357697134133, 5.624482679122834, 21.118597196140406, 12.167724024431344, 11.650977207715766, 18.02983538180739, 71.06334357050599, 10.770241259147893, 41.39250035160866, 19.681291324401958, 52.5553162773521, 5.538481109288841, 15.04287066817916, 14.823429016105896, 102.9514278939004, 93.12138939074443, 101.56172362860039, 9.140697451065321, 22.279821790181966, 28.742870116032517, 70.22997691609861, 221.41561003868895, 6.148350297421273, 10.988419235248863, 156.0333190219727, 50.8344186921783, 7.712940290780599, 40.87893436563435, 58.16353049847369, 5.8085463454349195, 20.468915591756527, 52.81480096040848, 62.347107425205124, 23.56716307754204, 14.343477323337254, 36.62190031438551, 212.446916271769, 32.07621600879229, 33.80031094232304, 81.75979015987421, 52.65678258920164, 5.812674965347794, 45.07082537722409, 8.273124469478837, 15.01735415914665, 9.200176546316543, 7.50971988975513, 72.2216635388906, 59.29625915735427, 98.23519097156523, 28.473519952442658, 8.768904617268005, 7.616742981429114, 32.47191056944044, 28.406937475305803, 53.06901119505228, 92.91447710725703, 113.3046794053547, 7.559179418937205, 53.76312619714541, 18.536460693323622, 63.067706660524664, 28.156578547051247, 26.753595816093497, 16.892572913236876, 104.41724073901183, 15.209913846657162, 170.41470651990858, 58.756416838240575, 7.835996123075829, 55.22214360713721, 11.61938172435752, 86.3130277733674, 25.711202206768792, 23.96878671402887, 9.484436643888708, 97.53115844495403, 23.07109384016185, 14.939367151487808, 37.05428421474752, 7.736072466440889, 37.313878028217935, 86.35852560426703, 6.673134051392526, 28.10304903558075, 209.8693132999935, 55.69729866115282, 27.551833379293846, 10.281221435429968, 163.14059637807725, 11.688167564515537, 41.31511482580597, 27.912632083012564, 58.53976881675623, 5.912007857443606, 46.54875892604782, 8.838577628459367, 46.023417788686025, 18.41530787164774, 133.92639845412646, 44.97460166474554, 24.371390277439154, 25.864266483054497, 77.49020639808282, 67.07514409620525, 40.16612856508539, 16.928358935989504, 209.86281964447545, 11.3551652281414, 61.303780286658665, 26.860509284719473, 34.67289348563435, 187.77963159707116, 161.95737458568553, 41.17806527586447, 50.91135574657743, 5.345286900057883, 13.267173212430368, 301.63747740289693, 36.19905870411066, 52.63617823876879, 69.81872762719085, 210.6575001677348, 99.72290420569483, 22.86955544481903, 36.17515472019044, 127.3265028154778, 32.084266901017926, 21.198815980250657, 29.67407475266995, 84.97976662104156, 81.97384961718296, 61.82289386459199, 10.15036977911, 5.266297512542018, 49.68358260090925, 5.949577054044721, 9.050430927745667, 9.249187797845034, 241.21654826428426, 13.39182558277514, 9.406171866279859, 24.068616885714874, 30.414629644442595, 33.04672558096179, 49.59262644333995, 62.593567534296795, 37.77729647874739, 11.059956444909758, 19.36851037719229, 11.671187840829006, 53.81040186859226, 16.78979645425553, 15.458079808245934, 57.86208475004675, 36.99122834839149, 84.84847354371183, 8.374850225134475, 47.533304643174695, 52.04952998771582, 19.14786788159967, 13.308570089083775, 20.012534166263137, 40.219964501996664, 30.234494808955656, 115.93995668202504, 111.47077928382188, 101.28285595724377, 21.66351532116839, 35.13008748665239, 55.75942397136696, 42.13607189232383, 42.16448930244725, 7.146685234938238, 107.37209812626116, 6.955576863986749, 41.14551283184121, 30.849908914198046, 20.3955793782547, 60.894885616704606, 48.20441101869816, 19.587865842812036, 5.296413647476139, 81.18210602632796, 17.909453614858666, 36.60186676735798, 34.16644802338999, 23.188721287394852, 19.80792515992544, 19.88873623679698, 60.0330609200551, 58.852298018932586, 83.0155136410442, 35.60966140524402, 55.94114943243221, 12.041722027733371, 35.887170495259475, 86.79354207830399, 10.81168217250314, 33.92862601326022, 135.90017132574337, 41.348324756007095, 36.61740523279421, 5.556120904219896, 248.03251241817176, 66.64258921226366, 83.59307446030638, 90.6715017322067, 11.365247571713462, 5.342503900258511, 50.176794479284986, 55.10098452048289, 123.1107564693249, 174.51935119709876, 86.75586601431807, 26.505884183516628, 49.00759053428228, 73.5037989523868, 51.26441011699916, 33.89487268853987, 62.75654949137527, 9.27868203834054, 7.2904957032561075, 32.01564986887178, 92.47156724436724, 19.626007739816842, 119.04030303736242, 33.21594879441731, 47.39261946618249, 89.05900090050919, 133.70132756696646, 33.67311537989591, 18.650128287686087, 16.31013848113674, 20.863240409458946, 83.0039073811722, 103.79439692706755, 16.352684631452586, 17.10806220590429, 30.703744571628555, 27.119318918336685, 36.37174609634662, 33.647685696423686, 44.54356683977554, 6.089779196681841, 85.40427906745964, 14.85975127724774, 38.58643304711701, 66.76349710901272, 21.419397768764085, 14.679989322062612, 188.73169644098851, 70.88726047329322, 101.26558766398924, 60.48594144529057, 12.940711021619705, 75.48637103849178, 96.26714883429614, 47.253887455640296, 31.270574516359513, 8.736570263907801, 70.99944778165381, 9.125956628497976, 52.77394436514555, 14.493657608668311, 71.70864347439944, 52.47409440749729, 14.755549453229264, 142.62349996328416, 24.70275116351371, 7.316305286269078, 89.81186563498397, 8.759990204605025, 7.107449094032601, 5.181902222406866, 10.087647891807151, 48.26612852552812, 39.68070447673365, 21.07081323323644, 14.127003291196475, 25.387217391133003, 43.54255821416191, 35.09354914048781, 12.013478025997504, 17.802366027655818, 23.127720689861945, 235.580231241888, 35.48204940465501, 18.523206547522616, 34.253977077296334, 33.3210198623574, 26.134353898639322, 55.28370515537202, 12.98756891500613, 8.355342004043086, 30.469100611685782, 20.703626685044107, 5.545898031930592, 35.50201285657283, 6.0595027395664465, 67.95024705147458, 29.12791229457378, 171.02797509417718, 90.67916028493325, 13.68713075143999, 5.380352014091219, 58.94837606603502, 22.819435824443758, 99.17343688117595, 21.008680016154685, 40.0631193914921, 19.78507042980658, 16.95640631893018, 19.465004426757798, 26.457120506405712, 32.371565338174655, 34.7915428063824, 47.24873661636414, 19.609656697846507, 6.229616643379234, 39.51091524156297, 106.87521581036731, 30.326245000534634, 38.04486701870972, 32.67328544716891, 81.04342568841916, 5.953324343984015, 117.36682360945788, 96.53886050421856, 7.690326756088138, 6.232935917646154, 48.4290100925341, 8.40121683893275, 91.89138574724666, 12.749020100615542, 127.3635277139274, 15.873093406651142, 21.360241355881573, 24.502377049675097, 34.81896359001043, 40.71845460356876, 55.001500233767146, 114.35308646033917, 172.38723170824002, 46.250097522539804, 6.795716038653419, 31.91930806573593, 30.311889597730094, 17.275290499285703, 61.02660793633514, 78.78294607208949, 38.8728231027288, 11.81886752018542, 28.953299445988215, 63.49816703996575, 48.32873159280296, 75.17225968827731, 46.33158311323601, 52.09235315501579, 65.0449659947598, 24.576975428490965, 7.705543004392129, 48.70190204497711, 11.924041426944415, 7.337314461826429, 31.28036058374085, 104.0449394821979, 15.260604629046016, 19.63467667225179, 11.504989588100583, 47.78002261386657, 128.54049969260493, 7.638126664546873, 6.291519953750686, 10.144657017807338, 22.19457432503939, 95.33547410602503, 62.33846178494242, 33.53605200608195, 112.39792263545274, 95.78936903092695, 17.712953503262597, 102.21358768507612, 9.061765101317144, 6.261736154276252, 138.5615580164389, 22.521070550504568, 109.39349455772297, 85.52686236042489, 30.038022983061918, 9.64045099484707, 152.68384541390543, 34.322884287140965, 28.211883013138067, 5.729279487315237, 9.901332954779386, 116.64593890806806, 24.99581161448613, 8.826070418206678, 92.06887445670625, 12.89608153700092, 11.011279573922657, 19.425762457779992, 70.24388502282989, 28.649377915660203, 236.34248298706066, 125.42272594581345, 33.14229831039457, 34.34563221989281, 6.464366235953778, 13.666715974972213, 175.81481770020716, 8.916493822790809, 83.80279652672567, 23.844806601529324, 60.721878048387715, 152.54753936206077, 53.544832718104445, 41.406067202154105, 37.75253889053355, 70.82000486606324, 44.47252123219213, 169.99485178596882, 6.889114310326804, 66.75197816984928, 12.834852671993964, 19.114070183104626, 9.772638684797329, 7.459426425455719, 132.54668733382744, 63.6604282231579, 6.479323659536554, 9.577746395876456, 8.18928234330274, 118.14735172046308, 78.67887706852382, 32.79168389982576, 14.563956193446387, 17.5244972999615, 88.44841462168476, 33.55917082929513, 80.74040611845389, 47.8911536274979, 59.00169659464786, 32.07436404610187, 7.812734575906766, 44.624679260361134, 36.95875894094925, 36.540033391489125, 15.247747633262545, 5.1064787810123935, 24.859523106441, 24.13914206891136, 33.10005805803098, 27.853209048477456, 27.63208820677402, 9.27252257766821, 6.6977479975295555, 43.16673583317299, 27.812864934241944, 24.35268037692766, 6.642981255533454, 25.547612658650475, 37.4051401507223, 149.57808474428717, 24.389971563253138, 20.893707320528964, 51.42477009642335, 46.38158970421727, 62.60361857231759, 71.18325545208998, 66.14949642962755, 82.7632983261426, 84.42779158859679, 44.29231555197743, 49.093482826117764, 152.86863000311183, 25.42860746525589, 23.466465410867315, 30.628636260880228, 110.66464254064608, 77.19582405003263, 30.13331315338273, 14.259440625583219, 14.445828964794538, 29.28426297560168, 136.59285221879048, 15.088147596375748, 13.72726965500315, 10.713896956583042, 10.988694098264192, 128.44859115759596, 7.819449543410685, 28.66239382559342, 76.47852150438663, 133.06600757769746, 34.537619459614184, 24.00130595411825, 183.7612512652995, 58.70049927763762, 5.809145460435371, 57.870787312784735, 14.110617979550783, 39.24904780955989, 45.61385631571035, 70.32357455001399, 7.014449821888377, 17.802780737772185, 56.168916025123536, 5.038235265329131, 29.61265511912964, 11.112265018121844, 24.45561629031198, 58.2079414727683, 14.984246138229663, 9.765687762428122, 20.77909788146789, 7.065306354274148, 12.810671068105355, 63.8397070138696, 5.506175923933055, 45.28540721870165, 9.393330257806221, 13.3070390295743, 20.99447580618233, 43.51208645305792, 12.863407371793123, 29.907510648874226, 6.071710583188779, 8.405945033585395, 5.848457201687228, 181.92106797348268, 8.019721622134893, 35.65768316049179, 9.181965954979663, 5.286688512131784, 92.82438296625692, 23.996755791194424, 57.120264141996685, 38.08903990282579, 24.828164101160947, 21.85362481358434, 123.00404917885957, 42.85312799022781, 55.80891612850989, 37.55097237516005, 67.25138569022995, 36.79440996269891, 5.215724252905236, 23.29999305584441, 134.99460758276868, 6.636291376517809, 12.138183034912865, 20.031351834720336, 48.45945758437864, 19.405160296477618, 6.920303764610835, 82.86524434241173, 62.462432066845054, 39.13251717256549, 74.69974956040312, 8.50024279901352, 8.67137233241844, 24.068899092654817, 35.11113912723913, 18.0176104914899, 14.342733454634345, 11.529978119639662, 9.491550024022171, 36.90832560018313, 56.716266978132076, 15.458027893548385, 13.336363145572857, 50.74656302360148, 8.774651199135635, 37.55212419800502, 72.05092397078046, 25.58476209503191, 56.49517857183413, 9.057356195473314, 16.601705757271308, 6.993140161994957, 79.17165869436519, 5.508659961846613, 9.534549999424723, 27.038472841607348, 73.29547880945955, 31.109332555903777, 60.92938971477176, 20.85941082615033, 6.4742765931613135, 9.583132573358645, 13.793655928061721, 24.05843165893277, 5.879203803036741, 42.41298940693796, 40.00206031465179, 7.37435048658405, 128.9841953568261, 10.112672503485715, 27.10942022187993, 9.063601956195747, 24.043691453412595, 18.889693378641645, 79.4610547860598, 46.55730919042218, 35.83318980966897, 14.01476371306579, 66.46294382889832, 42.548482155789635, 12.564355043821228, 11.294420548872251, 6.390372142911042, 59.054344095388835, 67.77822187571691, 25.05699745218611, 43.099281622952105, 35.72439355397775, 115.93903232491246, 5.531173391775227, 33.5970559943035, 40.39344837957521, 12.662482133618623, 53.99161406682827, 27.598261008798058, 5.403564928596659, 79.46193086950117, 17.316125112890482, 50.67553648036855, 6.315510804341646, 23.563133946756896, 65.56399154826437, 60.595331533219124, 31.2243393660231, 28.53676081963069, 36.60881909752642, 25.493997739330247, 5.221946568484001, 17.408749093852755, 24.976134518910627, 16.935849937869648, 89.87286285212609, 35.24491259693579, 129.23266518076647, 15.998643827339835, 12.225683551845083, 43.28018344694311, 57.94912899053578, 21.586968525080223, 43.85455523864391, 51.01187429410302, 35.5196930569804, 22.88607126811336, 32.56528274433391, 162.56647188715175, 35.87707853037576, 18.839659224096795, 6.6039575725469835, 121.576653213742, 5.225086898986747, 22.903211556975954, 54.15840469808648, 19.155533303550605, 24.074446384022117, 102.23945027553548, 9.004822481335404, 20.885790908426046, 73.60198192333141, 77.81974273925525, 50.849158129984275, 9.000278049266033, 19.52547139191079, 8.141041936690298, 11.75059105244567, 8.014508050578364, 61.63541740059584, 18.075654404358794, 23.34123681478959, 7.493608872383442, 30.257486171602014, 16.674155090983678, 19.964485878245053, 27.952203799931794, 39.74734916280077, 20.874723479915755, 14.662387536932453, 18.922724348286433, 5.163254954200658, 16.03056370999388, 18.57208154698779, 28.958725331268454, 135.51226536958762, 20.786369643727195, 56.403691930185936, 77.17041303169106, 33.13549518057016, 5.145090697278723, 26.22995069838721, 77.40128813245245, 6.432163271938232, 24.421353718729904, 17.359132939162762, 13.749153126593294, 7.705626267176539, 24.043684369776354, 43.788436824564066, 62.51611385021735, 90.50464803120764, 23.4544076824243, 8.58329814901418, 9.793547314501309, 21.419080123881187, 42.14606399065678, 22.312434246032566, 26.6063216136485, 82.90882030886561, 12.22681107755972, 15.316684362503569, 51.72622459591032, 13.8363876093274, 22.331219842477026, 157.95361495118766, 38.38279519682031, 14.77085384120194, 34.889245766943766, 20.01856607054861, 25.922884958156608, 20.944415952214456, 141.630375348875, 44.10956936614403, 7.03418368190315, 30.292787369824982, 68.55014805226888, 13.886402434534691, 10.976116873347276, 11.121602671619744, 7.487787317332626, 7.23665973029841, 15.455409098413085, 8.699970513583157, 7.039562899051382, 5.400020523531761, 18.70707552137326, 12.847470246371616, 14.439765083570743, 72.52450376151754, 21.187193982325855, 26.440562831249174, 18.290165486787014, 37.992076274899276, 109.95064610166384, 15.376244506990442, 9.011020528502975, 19.507837619090257, 28.070348879235425, 24.04368727131761, 13.626379891173064, 150.40581951945052, 29.157350701978412, 82.75648214777178, 41.8008848345903, 104.60810656737027, 115.00284551771668, 10.28079887590469, 13.308902531680594, 9.427924855992522, 8.12070690455876, 23.98143733206322, 14.590767769883925, 27.69052005351356, 18.226323738181577, 20.07853611305366, 23.95689113468685, 16.011958252005947, 16.955475828673478, 22.887718408598495, 8.462799568011919, 70.07549056104087, 17.58453274004105, 30.212878355373697, 37.81047857376478, 11.046553323170654, 48.46269754625237, 20.980840885893514, 16.62902476168434, 54.81651724488489, 6.685249257524923, 62.20949666733787, 5.130827396678364, 30.186776131231227, 38.34084144406489, 18.176187704166825, 5.34502961428061, 10.760912639373787, 43.055037964774634, 6.822360578286028, 8.322153947026726, 76.54454858027682, 103.59905362653677, 5.25151505662548, 151.00783865554638, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7663975.0, 7814787.211010594, 7859073.4375, 7864878.515761969, 7865442.81057256, 7867562.260932203, 7871295.2604327155, 7871313.446785407, 7871812.055110991, 7872368.75, 7873006.25, 7953265.843258163, 7953860.084313675, 7954646.875, 7955295.735935664, 7957091.834735105, 7959723.047156415, 7961302.863207208, 7963358.240330199, 7963429.49681881, 7964013.135566783, 7965660.9375, 7991148.575895326, 8038351.5625, 8044923.863265472, 8046598.831290379, 8047073.862239919, 8047498.645794344, 8048453.023370177, 8048710.9375, 8049220.256519927, 8050031.25, 8051864.919496081, 8051923.384274925, 8052018.368790842, 8053210.530117704, 8053262.390011031, 8053697.096547313, 8054308.510946045, 8054436.89025711, 8054490.759683489, 8054534.375, 8054937.261924404, 8055124.883781432, 8055262.138368544, 8055374.648000315, 8056634.682010645, 8076456.794690288, 8097701.897852144, 8100065.279275445, 8135217.745920473, 8217524.168876806, 8350967.867093038, 8351550.165738138, 8352344.636964421, 8352495.950820308, 8352806.138492982, 8354453.388604566, 8360439.667805071, 8496151.992035894, 8506182.241574224, 8613974.503582565, 8754923.872835044, 8867779.6875, 9008054.6875, 9008670.3125, 9135907.600339128, 9136002.092199633, 9136259.789112719, 9136279.492340287, 9136446.919638498, 9137010.512329198, 9137884.375, 9159904.09215774, 9221144.697691776, 9228102.754162565, 9246104.6875, 9268147.260976655, 9360715.591758361, 9364075.0, 9366707.973440157, 9396055.330305519, 9397229.508191934, 9397936.821182523, 9399245.3125, 9436096.919514222, 9438368.75, 9447128.401228076, 9459634.09010627, 9459712.5, 9463758.368533771, 9467244.79814677, 9487670.119904513, 9497408.844658082, 9498043.623149564, 9505092.1875, 9518371.183057118, 9519325.433751505, 9519532.8125, 9536545.3125, 9582579.22754603, 9583101.5625, 9604236.198872069, 9606162.429191452, 9608770.3125, 9626243.75, 9645378.852637503, 9685796.065326834, 9852506.25, 9868445.477800328, 9924629.857156986, 9972363.495177822, 10085356.84855125, 10088443.91768083, 10102570.582020221, 10158801.5625, 10160307.555263577, 10208683.320590857, 10210790.588028047, 10237350.0, 10492357.230011512, 10579002.361177353, 10649204.6875, 10745263.584253399, 10853663.206233006, 10910996.7725184, 10912308.667042637, 10937239.133400613, 10937601.271556603, 10940360.216267044, 10959667.1875, 10959707.520013656, 10975407.115291093, 10988465.000603149, 10991843.04789693, 10992517.00204103, 11006280.048740622, 11007343.360651052, 11024962.5, 11025039.452344533, 11025227.581789624, 11026682.346563095, 11028675.870436069, 11046045.965713922, 11048000.725118268, 11048237.5, 11091872.41585151, 11106441.190392071, 11153097.326066319, 11160619.75984712, 11165710.586789299, 11168316.121913524, 11168505.006507505, 11176814.281662473, 11179487.225623803, 11184562.504409403, 11190836.522085337, 11212221.394747324, 11233379.877405684, 11236830.102754481, 11239535.9375, 11242395.366324417, 11246104.576445056, 11257873.787270537, 11272973.752694117, 11274285.9375, 11292769.34955943, 11292781.101586401, 11296579.6875, 11299630.36186383, 11302392.1875, 11310698.79733478, 11314036.269241158, 11316768.75, 11323565.748335565, 11329813.456368797, 11329836.403551066, 11329842.159318374, 11338629.24073613, 11347912.00009535, 11353674.982906274, 11360318.475197863, 11362349.785152186, 11366311.279229509, 11367226.933653342, 11367761.735767843, 11374368.75, 11374386.886098158, 11393029.95466691, 11419239.057939295, 11444388.169733193, 11444817.1875, 11445410.9375, 11446838.502209853, 11446864.0625, 11457878.275471194, 11458143.888547543, 11466158.565129673, 11469239.0625, 11471627.415147278, 11482036.12465651, 11483143.428845366, 11488656.82700824, 11489745.623323282, 11502302.190018486, 11503002.565240154, 11505852.883598324, 11509965.625, 11510530.54692982, 11510831.25, 11512689.173275914, 11512884.401341544, 11521489.0311714, 11521551.474690795, 11522891.908071788, 11524996.066783745, 11531349.76550859, 11531622.533964476, 11532743.75, 11534176.198731543, 11539772.50701052, 11543041.185120784, 11549531.15902222, 11555114.609259434, 11555129.6875, 11555167.480957115, 11567191.87610741, 11567276.5625, 11573648.363789076, 11574019.703312285, 11583762.5, 11584170.3125, 11584862.185491106, 11585809.208722757, 11586247.519114882, 11586271.38128416, 11587188.927665383, 11587545.3125, 11588001.5625, 11588023.4375, 11589209.357343165, 11589301.5625, 11589326.536973521, 11589831.269757457, 11590290.465617191, 11591302.85881728, 11593121.875, 11596648.006927421, 11596993.972634064, 11597325.235839056, 11598546.125338573, 11601179.724686429, 11603427.717413086, 11603659.31955227, 11607653.061471248, 11608142.758812921, 11608556.137874499, 11609898.31402009, 11613423.309092458, 11616131.95439885, 11616740.625, 11616815.606120383, 11616929.591092544, 11622736.369844427, 11624028.01533588, 11625026.731083887, 11626085.84942811, 11642985.9375, 11644817.78824094, 11646923.351170106, 11649301.855822535, 11651801.612619143, 11654895.163903724, 11655298.154380372, 11657700.175605461, 11659372.592452388, 11659809.87089118, 11659845.311937837, 11660747.211273352, 11661084.727918463, 11661335.871980168, 11661557.8125, 11662193.279820852, 11662231.842870537, 11662382.580376334, 11664506.25, 11668466.313036464, 11673368.131332979, 11676388.32272306, 11682687.831230294, 11684889.0625, 11688271.632187158, 11689945.3125, 11690943.429924872, 11691043.75, 11691110.290858513, 11691204.46732283, 11692239.749017285, 11693909.375, 11699728.690374933, 11700418.4326653, 11702692.036715953, 11703586.319147877, 11714097.374530826, 11716782.8125, 11721016.064023158, 11721949.476073794, 11722045.45330493, 11723070.3125, 11723104.597340459, 11730005.645559186, 11730175.536186825, 11732332.201310806, 11735249.180806236, 11737287.5, 11754093.847880105, 11756961.978362171, 11760746.036899753, 11763595.3125, 11766581.25, 11767553.125, 11773211.709150216, 11774137.301099239, 11774240.252735142, 11776604.750836281, 11777314.50748394, 11780821.925307527, 11782355.074936287, 11782556.25, 11782664.01565248, 11783794.012300154, 11787370.3125, 11787738.33212168, 11788164.80107093, 11788945.743810214, 11791454.803562194, 11792615.27290159, 11793467.088640552, 11794392.990354892, 11799940.148843495, 11808446.962121343, 11809234.09948441, 11810715.255628487, 11813640.625, 11815493.959975986, 11818880.500444131, 11819346.875, 11819931.70849239, 11820511.756918047, 11820514.38443889, 11824521.249775698, 11824859.920232216, 11828112.373880219, 11828805.342593547, 11833135.9375, 11836200.376925755, 11838781.413276669, 11839242.1875, 11858518.75, 11861347.665176366, 11865536.993606612, 11865547.686016172, 11866609.375, 11882427.573101377, 11886160.2864503, 11893673.949522965, 11910527.833114434, 11914660.416511098, 11916817.65689917, 11917201.372251993, 11917242.47963194, 11933556.25, 11938307.907630851, 11940524.776661007, 11941143.07902198, 11949860.496698387, 11951365.130596995, 11953730.632459633, 11956028.061717886, 11957240.440052582, 11959766.472650472, 11962673.60897811, 11962843.267541012, 11962883.431512864, 11981057.8125, 11981238.556739958, 11981491.84218979, 11984329.672731828, 11988918.072579067, 11990229.6875, 11990954.659958627, 11991435.9375, 11991526.5625, 12004037.5, 12004395.827893924, 12013199.931262683, 12015596.294004522, 12018583.394020632, 12028982.83928889, 12046974.71038366, 12050504.6875, 12064941.804123016, 12065011.403266931, 12075340.727314241, 12078565.625, 12087021.792713555, 12095694.34193815, 12097232.959335336, 12097293.766981127, 12100691.163145805, 12121160.9375, 12125510.698556548, 12130023.020673824, 12144216.14864933, 12162340.08287308, 12162654.6875, 12172782.8125, 12173898.4375, 12175546.02186804, 12192714.0625, 12198303.061984064, 12198303.731273267, 12200379.58664659, 12200402.843321828, 12201791.477476899, 12209980.949782852, 12225416.35327042, 12235314.0625, 12239225.0, 12243301.487580264, 12245600.331011018, 12264330.408400407, 12264762.006823437, 12291316.810375622, 12293763.426740613, 12294020.3125, 12294153.451758167, 12294302.034495234, 12294981.060179682, 12295226.487222247, 12295296.841314387, 12295617.1875, 12298263.133365273, 12328631.266139543, 12329658.938193003, 12330282.790883143, 12332125.0, 12335657.8125, 12337454.403540418, 12337495.24215238, 12351814.0625, 12358334.375, 12358437.5, 12358626.5625, 12380102.99831593, 12394931.804063668, 12428389.0625, 12430206.313235259, 12432366.873244504, 12442983.576419977, 12455506.914034676, 12477193.496605825, 12479245.828301476, 12493201.439820088, 12494381.25, 12496784.205858003, 12530542.137840448, 12537465.658769635, 12558211.201818874, 12558219.4427861, 12567482.414986432, 12574761.736923374, 12574818.696462728, 12576406.946329473, 12592769.526772184, 12599615.253067592, 12600941.497883847, 12604393.206599489, 12633171.643526936, 12640795.13065429, 12642346.770614302, 12648741.163869765, 12654553.626305267, 12655595.903618257, 12656044.962108858, 12657633.307845484, 12658189.0625, 12660310.077457482, 12664115.404309662, 12681956.93467223, 12685881.116199143, 12686534.717034495, 12687741.559077127, 12692347.002810089, 12700456.25, 12700457.22954165, 12702794.011298899, 12702930.920445653, 12707630.970446944, 12716040.625, 12716189.0625, 12716537.9645198, 12722313.183246577, 12727904.314251026, 12746883.892733436, 12748323.68572621, 12749681.147347031, 12751640.407607974, 12756566.985817146, 12757351.546436224, 12763144.622347552, 12763370.698246226, 12783844.581938297, 12812203.010950876, 12830494.877713222, 12830951.761735821, 12833728.125, 12841200.850410812, 12841251.259136874, 12861665.625, 12861680.416757533, 12866011.188407147, 12880114.0625, 12881510.9375, 12881537.166038938, 12887675.158452565, 12889222.499522507, 12957049.925393438, 12957673.672036102, 12958793.473914402, 13000493.75, 13010043.960671041, 13010093.975242604, 13010104.374802193, 13011968.447933797, 13032874.75836311, 13087929.174077585, 13090777.94204127, 13093182.189131936, 13103485.9375, 13115442.113739751, 13154491.846011063, 13155087.38289467, 13155133.36201301, 13155140.784222962, 13156073.4375, 13160234.375, 13160438.001855684, 13164910.188947406, 13201762.5, 13205685.350656567, 13206962.901338508, 13208556.124201093, 13209056.25, 13210537.5, 13211595.3125, 13212487.5, 13233460.593395092, 13235167.160324428, 13246063.824542452, 13255901.83677006, 13259817.1875, 13259825.456000628, 13272342.94960945, 13278486.100254318, 13278712.10086485, 13280445.629491456, 13282633.666070497, 13285162.728670346, 13289040.625, 13290357.400509324, 13308362.595443584, 13314987.690110035, 13316207.077129884, 13318721.26814233, 13319268.45411393, 13336029.6875, 13346159.869631736, 13352003.125, 13355428.89226167, 13355759.95147129, 13360347.694107188, 13367007.475415397, 13367054.644144066, 13371532.539838405, 13373676.141842755, 13378636.92133565, 13410756.242474344, 13416479.6875, 13416505.031700317, 13416591.738382516, 13463720.3125, 13467775.054384135, 13468572.22315223, 13468674.042499145, 13471778.968262535, 13473612.291597724, 13480085.272600567, 13480770.202725194, 13481485.272621954, 13481732.73671424, 13492486.76436591, 13494015.009324925, 13496475.0, 13499344.635384493, 13508604.344555257, 13519017.1875, 13519320.022164939, 13520013.91598392, 13522416.80734651, 13541166.645751633, 13542158.839854522, 13542335.342089051, 13542785.932949884, 13564321.875, 13571582.8125, 13572788.916693373, 13573443.75, 13589304.6875, 13593866.415320303, 13602729.6875, 13604798.4375, 13605042.785706026, 13622587.28441925, 13694194.622785525, 13694202.348120045, 13694711.41697421, 13713138.646573449, 13727431.517094271, 13754587.578497594, 13788803.075269274, 13791215.902645733, 13814682.623867696, 13815253.08660283, 13880220.3125, 13888310.9375, 13926501.459787829, 13965644.294949189, 14007912.5, 14073587.476202566, 14093751.898484657, 14125991.850554194, 14494445.029356247, 14538434.375, 14543913.04432179, 14969527.246886104, 15146264.0625, 15232623.4375, 15241682.822071327, 15269672.27836694, 15270090.407112898, 15292346.96024562, 15326965.520531598, 15466264.027640259, 15477706.159937419, 15502656.179534033, 15516379.348945428, 15516409.723503679, 15538340.587984001, 15590644.693996865, 15920413.427248448, 15979346.70375387, 15996171.157134922, 16008829.372184532, 16013151.310947817, 16025313.500238508, 16039756.25, 16042028.125, 16043654.6875, 16044200.293095082, 16044837.5, 16047727.089519884, 16049940.514504427, 16051655.28828148, 16053934.613030665, 16054546.858232798, 16054751.383404948, 16055005.038097411, 16055314.0625, 16056208.69643873, 16056220.791499874, 16056575.97803514, 16056662.308751086, 16056722.911315178, 16057997.602390356, 16058648.603716813, 16058939.10044754, 16059204.327738937, 16059390.343079288, 16059404.596705502, 16059655.762137841, 16060117.748185813, 16060492.647858279, 16060860.197382273, 16061035.642288158, 16061040.38393978, 16061071.300363183, 16061644.07253666, 16062219.649806818, 16062456.184442727, 16062483.869793858, 16062663.825974582, 16063636.237214353, 16063693.75, 16066212.5, 16066940.201683328, 16067173.488360696, 16067456.25, 16068526.365236187, 16068715.123393364, 16070149.99009831, 16070235.690748783, 16071004.6875, 16071162.511167476, 16071234.84752508, 16071381.186688047, 16071396.657019494, 16071591.487877816, 16071604.293401383, 16071611.932894774, 16071653.709524458, 16071965.69734139, 16071988.555545304, 16072202.573519075, 16072268.196185878, 16072429.263997, 16072668.75, 16072845.153415289, 16072856.4691051, 16072962.955334071, 16073056.245924111, 16073207.271312054, 16073211.358577477, 16073407.630317194, 16073495.169437304, 16073825.876791218, 16073876.281518556, 16073974.840381177, 16074361.403213467, 16074435.717412652, 16074551.243279036, 16074749.075289479, 16075056.564296285, 16075124.952336749, 16075255.903902784, 16075494.661047086, 16075545.210595377, 16075962.976124981, 16076069.032052966, 16076141.653604332, 16076185.265037816, 16076224.000241453, 16076305.589819282, 16076458.805654963, 16076732.074192315, 16076835.112731943, 16076917.1875, 16077091.60310401, 16077209.274762135, 16077257.8125, 16077387.883311247, 16077531.913062885, 16077591.912005797, 16077615.443443194, 16077653.750593005, 16078246.708503556, 16078350.242968896, 16078404.87101447, 16078440.837259015, 16078625.0, 16078797.004221018, 16079037.003762748, 16079278.125, 16079391.446457973, 16079553.125, 16079559.096773379, 16079845.143686034, 16080100.90080417, 16080294.96958371, 16080587.8766143, 16080610.425807256, 16081017.1875, 16081063.548844958, 16081067.418363072, 16081206.013374764, 16081365.336645136, 16081382.460840065, 16081493.422024336, 16081744.415513167, 16081817.105262492, 16081845.59592507, 16081853.921982802, 16081889.727298897, 16082341.46923523, 16082350.0, 16082471.09633524, 16082638.381981164, 16082891.744587516, 16082894.548999498, 16082955.58882743, 16083409.040341806, 16083466.910093063, 16083482.004834848, 16083491.403060136, 16083553.125, 16083750.0, 16083943.483575482, 16083990.17510375, 16084043.75, 16084060.133639175, 16084062.604102759, 16084122.791453576, 16084139.914808728, 16084195.3125, 16084223.233315295, 16084390.159210816, 16084511.847610056, 16084520.140059901, 16084564.023141464, 16084568.60576436, 16084627.791127943, 16084667.624580434, 16084723.4375, 16084733.061046945, 16084856.382532997, 16085108.932452923, 16085219.259030273, 16085223.353640785, 16085239.435557213, 16085285.62266956, 16085305.288464604, 16085306.727361236, 16085307.457517661, 16085326.422677258, 16085409.123522153, 16085439.239839159, 16085446.024403539, 16085552.087638043, 16085572.372501526, 16085890.427233597, 16086069.842253614, 16086149.742546666, 16086196.875, 16086231.502210863, 16086342.792189272, 16086392.845351003, 16086693.75, 16086706.384078715, 16086710.262780637, 16086762.494288776, 16086814.0625, 16086909.729379361, 16086996.082688354, 16087074.076282749, 16087214.037282007, 16087252.310340118, 16087255.394594746, 16087265.989072414, 16087272.704644617, 16087307.818050511, 16087339.0625, 16087357.04120686, 16087587.01842331, 16087710.324096117, 16087713.649249487, 16087785.669852419, 16087821.875, 16087939.760500586, 16087944.98364351, 16087974.580590758, 16088021.1522029, 16088026.276763208, 16088115.990022967, 16088144.759956747, 16088164.0625, 16088246.807586243, 16088298.556914298, 16088323.12386766, 16088443.75, 16088558.203241332, 16088679.01927531, 16088765.59539998, 16088771.875, 16088954.123192845, 16088980.824538682, 16088996.07192625, 16089079.59681491, 16089101.821617091, 16089184.559546014, 16089271.875, 16089350.870550603, 16089390.051109875, 16089435.814657705, 16089479.6875, 16089485.636898147, 16089589.732789995, 16089590.4971099, 16089710.9375, 16089751.202918448, 16089788.283008719, 16089791.857691446, 16089794.960044006, 16089986.211986495, 16089995.035092525, 16090018.75, 16090024.931593357, 16090165.625, 16090176.238941498, 16090178.646900555, 16090181.750270726, 16090201.055047682, 16090224.922683226, 16090232.102134565, 16090254.582387753, 16090308.0603111, 16090325.605223736, 16090517.282568336, 16090529.6875, 16090560.613829857, 16090653.55075643, 16090667.136224588, 16090805.734517898, 16090879.64199424, 16090973.11491934, 16090973.73285998, 16091024.852938011, 16091166.630679848, 16091242.17386775, 16091318.293429185, 16091405.907279093, 16091425.0, 16091460.9375, 16091566.880096683, 16091578.02580329, 16091581.246091252, 16091613.73160289, 16091628.545861373, 16091663.30388463, 16091691.332673531, 16091691.866544446, 16091715.665394481, 16091756.979069501, 16091808.690432858, 16091824.702944892, 16091831.25, 16091855.337684104, 16091884.159191536, 16092124.105220862, 16092153.881335596, 16092195.984684998, 16092223.5470664, 16092254.282629931, 16092282.238916835, 16092329.22238512, 16092371.597592745, 16092455.856115162, 16092460.9375, 16092523.4375, 16092603.028829759, 16092703.263118187, 16092705.7674203, 16092753.219598975, 16092760.318480145, 16092845.218624953, 16092912.61198767, 16092932.485088501, 16093014.455398962, 16093023.34233132, 16093076.779252555, 16093089.222147832, 16093172.782954426, 16093234.81766131, 16093276.81759618, 16093389.506558744, 16093398.908192156, 16093401.881507551, 16093426.5625, 16093431.905459953, 16093475.0, 16093531.25, 16093634.322452605, 16093654.6875, 16093664.593093798, 16093708.139756145, 16093743.087400384, 16093941.782452395, 16094055.984844664, 16094070.327710332, 16094174.412116105, 16094224.612481399, 16094227.212805578, 16094231.340419797, 16094266.939438902, 16094267.831677036, 16094298.725318244, 16094328.191675404, 16094342.1875, 16094420.3125, 16094468.976005409, 16094474.611117832, ...], [49.91968876511776, 17.971376057267744, 37.46175633214834, 14.136192966220065, 16.961644056666394, 5.691710167990848, 20.987988694731776, 13.212350001610403, 30.38012769967966, 142.23978675771082, 71.98999594609856, 15.84421850395801, 35.19234602818221, 33.84899112344942, 16.845153328842358, 54.55027861817821, 23.94945046418048, 5.12494633640555, 87.3633280749618, 111.53232258075185, 69.98614816279793, 56.92540010218718, 8.361144602590496, 38.04919584147799, 5.356725902080762, 6.5506454626912145, 8.524728231202284, 24.87702413816175, 66.01436008680542, 175.92956784679964, 37.80517783845325, 134.5595079403543, 19.661894932334206, 92.85366291454989, 24.2995672324069, 8.082288018387553, 10.960031605810906, 179.9593960060515, 22.70001676466569, 26.800116910573532, 116.51937300556855, 76.64961772679919, 14.105601582536314, 26.421202707828826, 19.340115238213052, 7.480700774478081, 16.256823283230563, 68.40338355005377, 34.27395218639797, 61.37390834694354, 17.307433376614565, 61.368824435688424, 14.040981994881664, 43.58917932552653, 16.080532502494442, 48.971968833608585, 26.499357099015636, 39.53031214168712, 34.610327249966915, 16.877584883085326, 7.409019848045543, 21.52891282919464, 17.200010431310282, 53.61118209709929, 54.63905588550019, 30.507034888600256, 78.68167347946674, 6.874074455811117, 11.843184114541979, 25.189151631615918, 8.310324819193209, 22.273516022829465, 29.46257700486323, 65.49603509528714, 18.494643980046135, 71.17287165621701, 69.57339904332115, 44.958993901749366, 7.5912588348592935, 80.34780472412297, 15.592598629329778, 8.658509497285023, 14.299448137991199, 160.64300614152705, 46.5652170472811, 11.198005620282345, 197.4175919717229, 103.08733960897209, 13.956486516830585, 56.93792857502742, 9.850413055634684, 16.172042774938475, 6.457318148525261, 21.195670641370334, 136.0063064086426, 102.2193349169747, 58.83942931496632, 16.90009539828052, 28.927494361264205, 37.9633116407012, 6.0415393821137675, 155.57667253364022, 28.24831116956703, 66.02973592727741, 54.10038748425854, 48.337784824592845, 12.493836963912715, 61.62974433917485, 206.78176062649604, 9.475197586047956, 75.82519190073259, 5.437932144342066, 6.889190551589674, 26.217214714654844, 64.02501326429142, 29.97576976834267, 10.748103931178756, 9.801451274493196, 43.57966120800381, 104.82717336673895, 12.874011722773705, 10.112308262301582, 65.50518204729622, 25.200832128974483, 170.09490148625122, 22.00613991094501, 6.94700767258983, 15.218815668237225, 8.138489452435866, 19.53771071986237, 43.97379524178173, 13.932732067420343, 158.53262086773765, 12.997792614763146, 30.14563669072772, 16.554191275143534, 30.55100036848005, 17.81629699438789, 80.9137231064901, 5.478751640905784, 6.6596971944327406, 15.316900548623856, 19.769625463821527, 18.195092250764674, 27.735818618686313, 80.90861332197115, 12.093288254950327, 16.81896290462825, 86.20913860501419, 19.55068992751842, 32.88728246836701, 12.004716038084368, 256.13570912058015, 9.523857424454182, 24.08366301322164, 20.231309977714993, 12.183504401325697, 8.955853520363824, 15.718363544868119, 11.845365235866893, 58.921267396821925, 14.810418282863207, 66.17938187436447, 126.02028875325277, 7.20684708767698, 42.330352035284605, 8.631303315911218, 32.120377369279794, 40.70028473416246, 8.678581425090998, 74.95044380175145, 159.97718864760122, 11.68910343245345, 76.21407508653303, 15.43341155468609, 36.58988991770088, 17.07528749280031, 15.050938226490164, 38.47169951438673, 5.440711505155289, 8.277558516445739, 20.552239152005896, 137.08617605881187, 334.69393020641627, 110.68127164295677, 21.429974864096224, 117.96806044260894, 20.028930357765304, 5.252684782105015, 59.01388869501103, 90.04585494208906, 63.63767871967405, 57.41215664007768, 37.54723619842698, 31.190010782442577, 11.37134043509467, 8.361228166893735, 12.550590401052139, 40.04364763153285, 19.627357697134133, 5.624482679122834, 21.118597196140406, 12.167724024431344, 11.650977207715766, 18.02983538180739, 71.06334357050599, 10.770241259147893, 41.39250035160866, 19.681291324401958, 52.5553162773521, 5.538481109288841, 15.04287066817916, 14.823429016105896, 102.9514278939004, 93.12138939074443, 101.56172362860039, 9.140697451065321, 22.279821790181966, 28.742870116032517, 70.22997691609861, 221.41561003868895, 6.148350297421273, 10.988419235248863, 156.0333190219727, 50.8344186921783, 7.712940290780599, 40.87893436563435, 58.16353049847369, 5.8085463454349195, 20.468915591756527, 52.81480096040848, 62.347107425205124, 23.56716307754204, 14.343477323337254, 36.62190031438551, 212.446916271769, 32.07621600879229, 33.80031094232304, 81.75979015987421, 52.65678258920164, 5.812674965347794, 45.07082537722409, 8.273124469478837, 15.01735415914665, 9.200176546316543, 7.50971988975513, 72.2216635388906, 59.29625915735427, 98.23519097156523, 28.473519952442658, 8.768904617268005, 7.616742981429114, 32.47191056944044, 28.406937475305803, 53.06901119505228, 92.91447710725703, 113.3046794053547, 7.559179418937205, 53.76312619714541, 18.536460693323622, 63.067706660524664, 28.156578547051247, 26.753595816093497, 16.892572913236876, 104.41724073901183, 15.209913846657162, 170.41470651990858, 58.756416838240575, 7.835996123075829, 55.22214360713721, 11.61938172435752, 86.3130277733674, 25.711202206768792, 23.96878671402887, 9.484436643888708, 97.53115844495403, 23.07109384016185, 14.939367151487808, 37.05428421474752, 7.736072466440889, 37.313878028217935, 86.35852560426703, 6.673134051392526, 28.10304903558075, 209.8693132999935, 55.69729866115282, 27.551833379293846, 10.281221435429968, 163.14059637807725, 11.688167564515537, 41.31511482580597, 27.912632083012564, 58.53976881675623, 5.912007857443606, 46.54875892604782, 8.838577628459367, 46.023417788686025, 18.41530787164774, 133.92639845412646, 44.97460166474554, 24.371390277439154, 25.864266483054497, 77.49020639808282, 67.07514409620525, 40.16612856508539, 16.928358935989504, 209.86281964447545, 11.3551652281414, 61.303780286658665, 26.860509284719473, 34.67289348563435, 187.77963159707116, 161.95737458568553, 41.17806527586447, 50.91135574657743, 5.345286900057883, 13.267173212430368, 301.63747740289693, 36.19905870411066, 52.63617823876879, 69.81872762719085, 210.6575001677348, 99.72290420569483, 22.86955544481903, 36.17515472019044, 127.3265028154778, 32.084266901017926, 21.198815980250657, 29.67407475266995, 84.97976662104156, 81.97384961718296, 61.82289386459199, 10.15036977911, 5.266297512542018, 49.68358260090925, 5.949577054044721, 9.050430927745667, 9.249187797845034, 241.21654826428426, 13.39182558277514, 9.406171866279859, 24.068616885714874, 30.414629644442595, 33.04672558096179, 49.59262644333995, 62.593567534296795, 37.77729647874739, 11.059956444909758, 19.36851037719229, 11.671187840829006, 53.81040186859226, 16.78979645425553, 15.458079808245934, 57.86208475004675, 36.99122834839149, 84.84847354371183, 8.374850225134475, 47.533304643174695, 52.04952998771582, 19.14786788159967, 13.308570089083775, 20.012534166263137, 40.219964501996664, 30.234494808955656, 115.93995668202504, 111.47077928382188, 101.28285595724377, 21.66351532116839, 35.13008748665239, 55.75942397136696, 42.13607189232383, 42.16448930244725, 7.146685234938238, 107.37209812626116, 6.955576863986749, 41.14551283184121, 30.849908914198046, 20.3955793782547, 60.894885616704606, 48.20441101869816, 19.587865842812036, 5.296413647476139, 81.18210602632796, 17.909453614858666, 36.60186676735798, 34.16644802338999, 23.188721287394852, 19.80792515992544, 19.88873623679698, 60.0330609200551, 58.852298018932586, 83.0155136410442, 35.60966140524402, 55.94114943243221, 12.041722027733371, 35.887170495259475, 86.79354207830399, 10.81168217250314, 33.92862601326022, 135.90017132574337, 41.348324756007095, 36.61740523279421, 5.556120904219896, 248.03251241817176, 66.64258921226366, 83.59307446030638, 90.6715017322067, 11.365247571713462, 5.342503900258511, 50.176794479284986, 55.10098452048289, 123.1107564693249, 174.51935119709876, 86.75586601431807, 26.505884183516628, 49.00759053428228, 73.5037989523868, 51.26441011699916, 33.89487268853987, 62.75654949137527, 9.27868203834054, 7.2904957032561075, 32.01564986887178, 92.47156724436724, 19.626007739816842, 119.04030303736242, 33.21594879441731, 47.39261946618249, 89.05900090050919, 133.70132756696646, 33.67311537989591, 18.650128287686087, 16.31013848113674, 20.863240409458946, 83.0039073811722, 103.79439692706755, 16.352684631452586, 17.10806220590429, 30.703744571628555, 27.119318918336685, 36.37174609634662, 33.647685696423686, 44.54356683977554, 6.089779196681841, 85.40427906745964, 14.85975127724774, 38.58643304711701, 66.76349710901272, 21.419397768764085, 14.679989322062612, 188.73169644098851, 70.88726047329322, 101.26558766398924, 60.48594144529057, 12.940711021619705, 75.48637103849178, 96.26714883429614, 47.253887455640296, 31.270574516359513, 8.736570263907801, 70.99944778165381, 9.125956628497976, 52.77394436514555, 14.493657608668311, 71.70864347439944, 52.47409440749729, 14.755549453229264, 142.62349996328416, 24.70275116351371, 7.316305286269078, 89.81186563498397, 8.759990204605025, 7.107449094032601, 5.181902222406866, 10.087647891807151, 48.26612852552812, 39.68070447673365, 21.07081323323644, 14.127003291196475, 25.387217391133003, 43.54255821416191, 35.09354914048781, 12.013478025997504, 17.802366027655818, 23.127720689861945, 235.580231241888, 35.48204940465501, 18.523206547522616, 34.253977077296334, 33.3210198623574, 26.134353898639322, 55.28370515537202, 12.98756891500613, 8.355342004043086, 30.469100611685782, 20.703626685044107, 5.545898031930592, 35.50201285657283, 6.0595027395664465, 67.95024705147458, 29.12791229457378, 171.02797509417718, 90.67916028493325, 13.68713075143999, 5.380352014091219, 58.94837606603502, 22.819435824443758, 99.17343688117595, 21.008680016154685, 40.0631193914921, 19.78507042980658, 16.95640631893018, 19.465004426757798, 26.457120506405712, 32.371565338174655, 34.7915428063824, 47.24873661636414, 19.609656697846507, 6.229616643379234, 39.51091524156297, 106.87521581036731, 30.326245000534634, 38.04486701870972, 32.67328544716891, 81.04342568841916, 5.953324343984015, 117.36682360945788, 96.53886050421856, 7.690326756088138, 6.232935917646154, 48.4290100925341, 8.40121683893275, 91.89138574724666, 12.749020100615542, 127.3635277139274, 15.873093406651142, 21.360241355881573, 24.502377049675097, 34.81896359001043, 40.71845460356876, 55.001500233767146, 114.35308646033917, 172.38723170824002, 46.250097522539804, 6.795716038653419, 31.91930806573593, 30.311889597730094, 17.275290499285703, 61.02660793633514, 78.78294607208949, 38.8728231027288, 11.81886752018542, 28.953299445988215, 63.49816703996575, 48.32873159280296, 75.17225968827731, 46.33158311323601, 52.09235315501579, 65.0449659947598, 24.576975428490965, 7.705543004392129, 48.70190204497711, 11.924041426944415, 7.337314461826429, 31.28036058374085, 104.0449394821979, 15.260604629046016, 19.63467667225179, 11.504989588100583, 47.78002261386657, 128.54049969260493, 7.638126664546873, 6.291519953750686, 10.144657017807338, 22.19457432503939, 95.33547410602503, 62.33846178494242, 33.53605200608195, 112.39792263545274, 95.78936903092695, 17.712953503262597, 102.21358768507612, 9.061765101317144, 6.261736154276252, 138.5615580164389, 22.521070550504568, 109.39349455772297, 85.52686236042489, 30.038022983061918, 9.64045099484707, 152.68384541390543, 34.322884287140965, 28.211883013138067, 5.729279487315237, 9.901332954779386, 116.64593890806806, 24.99581161448613, 8.826070418206678, 92.06887445670625, 12.89608153700092, 11.011279573922657, 19.425762457779992, 70.24388502282989, 28.649377915660203, 236.34248298706066, 125.42272594581345, 33.14229831039457, 34.34563221989281, 6.464366235953778, 13.666715974972213, 175.81481770020716, 8.916493822790809, 83.80279652672567, 23.844806601529324, 60.721878048387715, 152.54753936206077, 53.544832718104445, 41.406067202154105, 37.75253889053355, 70.82000486606324, 44.47252123219213, 169.99485178596882, 6.889114310326804, 66.75197816984928, 12.834852671993964, 19.114070183104626, 9.772638684797329, 7.459426425455719, 132.54668733382744, 63.6604282231579, 6.479323659536554, 9.577746395876456, 8.18928234330274, 118.14735172046308, 78.67887706852382, 32.79168389982576, 14.563956193446387, 17.5244972999615, 88.44841462168476, 33.55917082929513, 80.74040611845389, 47.8911536274979, 59.00169659464786, 32.07436404610187, 7.812734575906766, 44.624679260361134, 36.95875894094925, 36.540033391489125, 15.247747633262545, 5.1064787810123935, 24.859523106441, 24.13914206891136, 33.10005805803098, 27.853209048477456, 27.63208820677402, 9.27252257766821, 6.6977479975295555, 43.16673583317299, 27.812864934241944, 24.35268037692766, 6.642981255533454, 25.547612658650475, 37.4051401507223, 149.57808474428717, 24.389971563253138, 20.893707320528964, 51.42477009642335, 46.38158970421727, 62.60361857231759, 71.18325545208998, 66.14949642962755, 82.7632983261426, 84.42779158859679, 44.29231555197743, 49.093482826117764, 152.86863000311183, 25.42860746525589, 23.466465410867315, 30.628636260880228, 110.66464254064608, 77.19582405003263, 30.13331315338273, 14.259440625583219, 14.445828964794538, 29.28426297560168, 136.59285221879048, 15.088147596375748, 13.72726965500315, 10.713896956583042, 10.988694098264192, 128.44859115759596, 7.819449543410685, 28.66239382559342, 76.47852150438663, 133.06600757769746, 34.537619459614184, 24.00130595411825, 183.7612512652995, 58.70049927763762, 5.809145460435371, 57.870787312784735, 14.110617979550783, 39.24904780955989, 45.61385631571035, 70.32357455001399, 7.014449821888377, 17.802780737772185, 56.168916025123536, 5.038235265329131, 29.61265511912964, 11.112265018121844, 24.45561629031198, 58.2079414727683, 14.984246138229663, 9.765687762428122, 20.77909788146789, 7.065306354274148, 12.810671068105355, 63.8397070138696, 5.506175923933055, 45.28540721870165, 9.393330257806221, 13.3070390295743, 20.99447580618233, 43.51208645305792, 12.863407371793123, 29.907510648874226, 6.071710583188779, 8.405945033585395, 5.848457201687228, 181.92106797348268, 8.019721622134893, 35.65768316049179, 9.181965954979663, 5.286688512131784, 92.82438296625692, 23.996755791194424, 57.120264141996685, 38.08903990282579, 24.828164101160947, 21.85362481358434, 123.00404917885957, 42.85312799022781, 55.80891612850989, 37.55097237516005, 67.25138569022995, 36.79440996269891, 5.215724252905236, 23.29999305584441, 134.99460758276868, 6.636291376517809, 12.138183034912865, 20.031351834720336, 48.45945758437864, 19.405160296477618, 6.920303764610835, 82.86524434241173, 62.462432066845054, 39.13251717256549, 74.69974956040312, 8.50024279901352, 8.67137233241844, 24.068899092654817, 35.11113912723913, 18.0176104914899, 14.342733454634345, 11.529978119639662, 9.491550024022171, 36.90832560018313, 56.716266978132076, 15.458027893548385, 13.336363145572857, 50.74656302360148, 8.774651199135635, 37.55212419800502, 72.05092397078046, 25.58476209503191, 56.49517857183413, 9.057356195473314, 16.601705757271308, 6.993140161994957, 79.17165869436519, 5.508659961846613, 9.534549999424723, 27.038472841607348, 73.29547880945955, 31.109332555903777, 60.92938971477176, 20.85941082615033, 6.4742765931613135, 9.583132573358645, 13.793655928061721, 24.05843165893277, 5.879203803036741, 42.41298940693796, 40.00206031465179, 7.37435048658405, 128.9841953568261, 10.112672503485715, 27.10942022187993, 9.063601956195747, 24.043691453412595, 18.889693378641645, 79.4610547860598, 46.55730919042218, 35.83318980966897, 14.01476371306579, 66.46294382889832, 42.548482155789635, 12.564355043821228, 11.294420548872251, 6.390372142911042, 59.054344095388835, 67.77822187571691, 25.05699745218611, 43.099281622952105, 35.72439355397775, 115.93903232491246, 5.531173391775227, 33.5970559943035, 40.39344837957521, 12.662482133618623, 53.99161406682827, 27.598261008798058, 5.403564928596659, 79.46193086950117, 17.316125112890482, 50.67553648036855, 6.315510804341646, 23.563133946756896, 65.56399154826437, 60.595331533219124, 31.2243393660231, 28.53676081963069, 36.60881909752642, 25.493997739330247, 5.221946568484001, 17.408749093852755, 24.976134518910627, 16.935849937869648, 89.87286285212609, 35.24491259693579, 129.23266518076647, 15.998643827339835, 12.225683551845083, 43.28018344694311, 57.94912899053578, 21.586968525080223, 43.85455523864391, 51.01187429410302, 35.5196930569804, 22.88607126811336, 32.56528274433391, 162.56647188715175, 35.87707853037576, 18.839659224096795, 6.6039575725469835, 121.576653213742, 5.225086898986747, 22.903211556975954, 54.15840469808648, 19.155533303550605, 24.074446384022117, 102.23945027553548, 9.004822481335404, 20.885790908426046, 73.60198192333141, 77.81974273925525, 50.849158129984275, 9.000278049266033, 19.52547139191079, 8.141041936690298, 11.75059105244567, 8.014508050578364, 61.63541740059584, 18.075654404358794, 23.34123681478959, 7.493608872383442, 30.257486171602014, 16.674155090983678, 19.964485878245053, 27.952203799931794, 39.74734916280077, 20.874723479915755, 14.662387536932453, 18.922724348286433, 5.163254954200658, 16.03056370999388, 18.57208154698779, 28.958725331268454, 135.51226536958762, 20.786369643727195, 56.403691930185936, 77.17041303169106, 33.13549518057016, 5.145090697278723, 26.22995069838721, 77.40128813245245, 6.432163271938232, 24.421353718729904, 17.359132939162762, 13.749153126593294, 7.705626267176539, 24.043684369776354, 43.788436824564066, 62.51611385021735, 90.50464803120764, 23.4544076824243, 8.58329814901418, 9.793547314501309, 21.419080123881187, 42.14606399065678, 22.312434246032566, 26.6063216136485, 82.90882030886561, 12.22681107755972, 15.316684362503569, 51.72622459591032, 13.8363876093274, 22.331219842477026, 157.95361495118766, 38.38279519682031, 14.77085384120194, 34.889245766943766, 20.01856607054861, 25.922884958156608, 20.944415952214456, 141.630375348875, 44.10956936614403, 7.03418368190315, 30.292787369824982, 68.55014805226888, 13.886402434534691, 10.976116873347276, 11.121602671619744, 7.487787317332626, 7.23665973029841, 15.455409098413085, 8.699970513583157, 7.039562899051382, 5.400020523531761, 18.70707552137326, 12.847470246371616, 14.439765083570743, 72.52450376151754, 21.187193982325855, 26.440562831249174, 18.290165486787014, 37.992076274899276, 109.95064610166384, 15.376244506990442, 9.011020528502975, 19.507837619090257, 28.070348879235425, 24.04368727131761, 13.626379891173064, 150.40581951945052, 29.157350701978412, 82.75648214777178, 41.8008848345903, 104.60810656737027, 115.00284551771668, 10.28079887590469, 13.308902531680594, 9.427924855992522, 8.12070690455876, 23.98143733206322, 14.590767769883925, 27.69052005351356, 18.226323738181577, 20.07853611305366, 23.95689113468685, 16.011958252005947, 16.955475828673478, 22.887718408598495, 8.462799568011919, 70.07549056104087, 17.58453274004105, 30.212878355373697, 37.81047857376478, 11.046553323170654, 48.46269754625237, 20.980840885893514, 16.62902476168434, 54.81651724488489, 6.685249257524923, 62.20949666733787, 5.130827396678364, 30.186776131231227, 38.34084144406489, 18.176187704166825, 5.34502961428061, 10.760912639373787, 43.055037964774634, 6.822360578286028, 8.322153947026726, 76.54454858027682, 103.59905362653677, 5.25151505662548, 151.00783865554638, ...])
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);
([7663975.0, 7814787.211010594, 7859073.4375, 7864878.515761969, 7865442.81057256, 7867562.260932203, 7871295.2604327155, 7871313.446785407, 7871812.055110991, 7872368.75, 7873006.25, 7953265.843258163, 7953860.084313675, 7954646.875, 7955295.735935664, 7957091.834735105, 7959723.047156415, 7961302.863207208, 7963358.240330199, 7963429.49681881, 7964013.135566783, 7965660.9375, 7991148.575895326, 8038351.5625, 8044923.863265472, 8046598.831290379, 8047073.862239919, 8047498.645794344, 8048453.023370177, 8048710.9375, 8049220.256519927, 8050031.25, 8051864.919496081, 8051923.384274925, 8052018.368790842, 8053210.530117704, 8053262.390011031, 8053697.096547313, 8054308.510946045, 8054436.89025711, 8054490.759683489, 8054534.375, 8054937.261924404, 8055124.883781432, 8055262.138368544, 8055374.648000315, 8056634.682010645, 8076456.794690288, 8097701.897852144, 8100065.279275445, 8135217.745920473, 8217524.168876806, 8350967.867093038, 8351550.165738138, 8352344.636964421, 8352495.950820308, 8352806.138492982, 8354453.388604566, 8360439.667805071, 8496151.992035894, 8506182.241574224, 8613974.503582565, 8754923.872835044, 8867779.6875, 9008054.6875, 9008670.3125, 9135907.600339128, 9136002.092199633, 9136259.789112719, 9136279.492340287, 9136446.919638498, 9137010.512329198, 9137884.375, 9159904.09215774, 9221144.697691776, 9228102.754162565, 9246104.6875, 9268147.260976655, 9360715.591758361, 9364075.0, 9366707.973440157, 9396055.330305519, 9397229.508191934, 9397936.821182523, 9399245.3125, 9436096.919514222, 9438368.75, 9447128.401228076, 9459634.09010627, 9459712.5, 9463758.368533771, 9467244.79814677, 9487670.119904513, 9497408.844658082, 9498043.623149564, 9505092.1875, 9518371.183057118, 9519325.433751505, 9519532.8125, 9536545.3125, 9582579.22754603, 9583101.5625, 9604236.198872069, 9606162.429191452, 9608770.3125, 9626243.75, 9645378.852637503, 9685796.065326834, 9852506.25, 9868445.477800328, 9924629.857156986, 9972363.495177822, 10085356.84855125, 10088443.91768083, 10102570.582020221, 10158801.5625, 10160307.555263577, 10208683.320590857, 10210790.588028047, 10237350.0, 10492357.230011512, 10579002.361177353, 10649204.6875, 10745263.584253399, 10853663.206233006, 10910996.7725184, 10912308.667042637, 10937239.133400613, 10937601.271556603, 10940360.216267044, 10959667.1875, 10959707.520013656, 10975407.115291093, 10988465.000603149, 10991843.04789693, 10992517.00204103, 11006280.048740622, 11007343.360651052, 11024962.5, 11025039.452344533, 11025227.581789624, 11026682.346563095, 11028675.870436069, 11046045.965713922, 11048000.725118268, 11048237.5, 11091872.41585151, 11106441.190392071, 11153097.326066319, 11160619.75984712, 11165710.586789299, 11168316.121913524, 11168505.006507505, 11176814.281662473, 11179487.225623803, 11184562.504409403, 11190836.522085337, 11212221.394747324, 11233379.877405684, 11236830.102754481, 11239535.9375, 11242395.366324417, 11246104.576445056, 11257873.787270537, 11272973.752694117, 11274285.9375, 11292769.34955943, 11292781.101586401, 11296579.6875, 11299630.36186383, 11302392.1875, 11310698.79733478, 11314036.269241158, 11316768.75, 11323565.748335565, 11329813.456368797, 11329836.403551066, 11329842.159318374, 11338629.24073613, 11347912.00009535, 11353674.982906274, 11360318.475197863, 11362349.785152186, 11366311.279229509, 11367226.933653342, 11367761.735767843, 11374368.75, 11374386.886098158, 11393029.95466691, 11419239.057939295, 11444388.169733193, 11444817.1875, 11445410.9375, 11446838.502209853, 11446864.0625, 11457878.275471194, 11458143.888547543, 11466158.565129673, 11469239.0625, 11471627.415147278, 11482036.12465651, 11483143.428845366, 11488656.82700824, 11489745.623323282, 11502302.190018486, 11503002.565240154, 11505852.883598324, 11509965.625, 11510530.54692982, 11510831.25, 11512689.173275914, 11512884.401341544, 11521489.0311714, 11521551.474690795, 11522891.908071788, 11524996.066783745, 11531349.76550859, 11531622.533964476, 11532743.75, 11534176.198731543, 11539772.50701052, 11543041.185120784, 11549531.15902222, 11555114.609259434, 11555129.6875, 11555167.480957115, 11567191.87610741, 11567276.5625, 11573648.363789076, 11574019.703312285, 11583762.5, 11584170.3125, 11584862.185491106, 11585809.208722757, 11586247.519114882, 11586271.38128416, 11587188.927665383, 11587545.3125, 11588001.5625, 11588023.4375, 11589209.357343165, 11589301.5625, 11589326.536973521, 11589831.269757457, 11590290.465617191, 11591302.85881728, 11593121.875, 11596648.006927421, 11596993.972634064, 11597325.235839056, 11598546.125338573, 11601179.724686429, 11603427.717413086, 11603659.31955227, 11607653.061471248, 11608142.758812921, 11608556.137874499, 11609898.31402009, 11613423.309092458, 11616131.95439885, 11616740.625, 11616815.606120383, 11616929.591092544, 11622736.369844427, 11624028.01533588, 11625026.731083887, 11626085.84942811, 11642985.9375, 11644817.78824094, 11646923.351170106, 11649301.855822535, 11651801.612619143, 11654895.163903724, 11655298.154380372, 11657700.175605461, 11659372.592452388, 11659809.87089118, 11659845.311937837, 11660747.211273352, 11661084.727918463, 11661335.871980168, 11661557.8125, 11662193.279820852, 11662231.842870537, 11662382.580376334, 11664506.25, 11668466.313036464, 11673368.131332979, 11676388.32272306, 11682687.831230294, 11684889.0625, 11688271.632187158, 11689945.3125, 11690943.429924872, 11691043.75, 11691110.290858513, 11691204.46732283, 11692239.749017285, 11693909.375, 11699728.690374933, 11700418.4326653, 11702692.036715953, 11703586.319147877, 11714097.374530826, 11716782.8125, 11721016.064023158, 11721949.476073794, 11722045.45330493, 11723070.3125, 11723104.597340459, 11730005.645559186, 11730175.536186825, 11732332.201310806, 11735249.180806236, 11737287.5, 11754093.847880105, 11756961.978362171, 11760746.036899753, 11763595.3125, 11766581.25, 11767553.125, 11773211.709150216, 11774137.301099239, 11774240.252735142, 11776604.750836281, 11777314.50748394, 11780821.925307527, 11782355.074936287, 11782556.25, 11782664.01565248, 11783794.012300154, 11787370.3125, 11787738.33212168, 11788164.80107093, 11788945.743810214, 11791454.803562194, 11792615.27290159, 11793467.088640552, 11794392.990354892, 11799940.148843495, 11808446.962121343, 11809234.09948441, 11810715.255628487, 11813640.625, 11815493.959975986, 11818880.500444131, 11819346.875, 11819931.70849239, 11820511.756918047, 11820514.38443889, 11824521.249775698, 11824859.920232216, 11828112.373880219, 11828805.342593547, 11833135.9375, 11836200.376925755, 11838781.413276669, 11839242.1875, 11858518.75, 11861347.665176366, 11865536.993606612, 11865547.686016172, 11866609.375, 11882427.573101377, 11886160.2864503, 11893673.949522965, 11910527.833114434, 11914660.416511098, 11916817.65689917, 11917201.372251993, 11917242.47963194, 11933556.25, 11938307.907630851, 11940524.776661007, 11941143.07902198, 11949860.496698387, 11951365.130596995, 11953730.632459633, 11956028.061717886, 11957240.440052582, 11959766.472650472, 11962673.60897811, 11962843.267541012, 11962883.431512864, 11981057.8125, 11981238.556739958, 11981491.84218979, 11984329.672731828, 11988918.072579067, 11990229.6875, 11990954.659958627, 11991435.9375, 11991526.5625, 12004037.5, 12004395.827893924, 12013199.931262683, 12015596.294004522, 12018583.394020632, 12028982.83928889, 12046974.71038366, 12050504.6875, 12064941.804123016, 12065011.403266931, 12075340.727314241, 12078565.625, 12087021.792713555, 12095694.34193815, 12097232.959335336, 12097293.766981127, 12100691.163145805, 12121160.9375, 12125510.698556548, 12130023.020673824, 12144216.14864933, 12162340.08287308, 12162654.6875, 12172782.8125, 12173898.4375, 12175546.02186804, 12192714.0625, 12198303.061984064, 12198303.731273267, 12200379.58664659, 12200402.843321828, 12201791.477476899, 12209980.949782852, 12225416.35327042, 12235314.0625, 12239225.0, 12243301.487580264, 12245600.331011018, 12264330.408400407, 12264762.006823437, 12291316.810375622, 12293763.426740613, 12294020.3125, 12294153.451758167, 12294302.034495234, 12294981.060179682, 12295226.487222247, 12295296.841314387, 12295617.1875, 12298263.133365273, 12328631.266139543, 12329658.938193003, 12330282.790883143, 12332125.0, 12335657.8125, 12337454.403540418, 12337495.24215238, 12351814.0625, 12358334.375, 12358437.5, 12358626.5625, 12380102.99831593, 12394931.804063668, 12428389.0625, 12430206.313235259, 12432366.873244504, 12442983.576419977, 12455506.914034676, 12477193.496605825, 12479245.828301476, 12493201.439820088, 12494381.25, 12496784.205858003, 12530542.137840448, 12537465.658769635, 12558211.201818874, 12558219.4427861, 12567482.414986432, 12574761.736923374, 12574818.696462728, 12576406.946329473, 12592769.526772184, 12599615.253067592, 12600941.497883847, 12604393.206599489, 12633171.643526936, 12640795.13065429, 12642346.770614302, 12648741.163869765, 12654553.626305267, 12655595.903618257, 12656044.962108858, 12657633.307845484, 12658189.0625, 12660310.077457482, 12664115.404309662, 12681956.93467223, 12685881.116199143, 12686534.717034495, 12687741.559077127, 12692347.002810089, 12700456.25, 12700457.22954165, 12702794.011298899, 12702930.920445653, 12707630.970446944, 12716040.625, 12716189.0625, 12716537.9645198, 12722313.183246577, 12727904.314251026, 12746883.892733436, 12748323.68572621, 12749681.147347031, 12751640.407607974, 12756566.985817146, 12757351.546436224, 12763144.622347552, 12763370.698246226, 12783844.581938297, 12812203.010950876, 12830494.877713222, 12830951.761735821, 12833728.125, 12841200.850410812, 12841251.259136874, 12861665.625, 12861680.416757533, 12866011.188407147, 12880114.0625, 12881510.9375, 12881537.166038938, 12887675.158452565, 12889222.499522507, 12957049.925393438, 12957673.672036102, 12958793.473914402, 13000493.75, 13010043.960671041, 13010093.975242604, 13010104.374802193, 13011968.447933797, 13032874.75836311, 13087929.174077585, 13090777.94204127, 13093182.189131936, 13103485.9375, 13115442.113739751, 13154491.846011063, 13155087.38289467, 13155133.36201301, 13155140.784222962, 13156073.4375, 13160234.375, 13160438.001855684, 13164910.188947406, 13201762.5, 13205685.350656567, 13206962.901338508, 13208556.124201093, 13209056.25, 13210537.5, 13211595.3125, 13212487.5, 13233460.593395092, 13235167.160324428, 13246063.824542452, 13255901.83677006, 13259817.1875, 13259825.456000628, 13272342.94960945, 13278486.100254318, 13278712.10086485, 13280445.629491456, 13282633.666070497, 13285162.728670346, 13289040.625, 13290357.400509324, 13308362.595443584, 13314987.690110035, 13316207.077129884, 13318721.26814233, 13319268.45411393, 13336029.6875, 13346159.869631736, 13352003.125, 13355428.89226167, 13355759.95147129, 13360347.694107188, 13367007.475415397, 13367054.644144066, 13371532.539838405, 13373676.141842755, 13378636.92133565, 13410756.242474344, 13416479.6875, 13416505.031700317, 13416591.738382516, 13463720.3125, 13467775.054384135, 13468572.22315223, 13468674.042499145, 13471778.968262535, 13473612.291597724, 13480085.272600567, 13480770.202725194, 13481485.272621954, 13481732.73671424, 13492486.76436591, 13494015.009324925, 13496475.0, 13499344.635384493, 13508604.344555257, 13519017.1875, 13519320.022164939, 13520013.91598392, 13522416.80734651, 13541166.645751633, 13542158.839854522, 13542335.342089051, 13542785.932949884, 13564321.875, 13571582.8125, 13572788.916693373, 13573443.75, 13589304.6875, 13593866.415320303, 13602729.6875, 13604798.4375, 13605042.785706026, 13622587.28441925, 13694194.622785525, 13694202.348120045, 13694711.41697421, 13713138.646573449, 13727431.517094271, 13754587.578497594, 13788803.075269274, 13791215.902645733, 13814682.623867696, 13815253.08660283, 13880220.3125, 13888310.9375, 13926501.459787829, 13965644.294949189, 14007912.5, 14073587.476202566, 14093751.898484657, 14125991.850554194, 14494445.029356247, 14538434.375, 14543913.04432179, 14969527.246886104, 15146264.0625, 15232623.4375, 15241682.822071327, 15269672.27836694, 15270090.407112898, 15292346.96024562, 15326965.520531598, 15466264.027640259, 15477706.159937419, 15502656.179534033, 15516379.348945428, 15516409.723503679, 15538340.587984001, 15590644.693996865, 15920413.427248448, 15979346.70375387, 15996171.157134922, 16008829.372184532, 16013151.310947817, 16025313.500238508, 16039756.25, 16042028.125, 16043654.6875, 16044200.293095082, 16044837.5, 16047727.089519884, 16049940.514504427, 16051655.28828148, 16053934.613030665, 16054546.858232798, 16054751.383404948, 16055005.038097411, 16055314.0625, 16056208.69643873, 16056220.791499874, 16056575.97803514, 16056662.308751086, 16056722.911315178, 16057997.602390356, 16058648.603716813, 16058939.10044754, 16059204.327738937, 16059390.343079288, 16059404.596705502, 16059655.762137841, 16060117.748185813, 16060492.647858279, 16060860.197382273, 16061035.642288158, 16061040.38393978, 16061071.300363183, 16061644.07253666, 16062219.649806818, 16062456.184442727, 16062483.869793858, 16062663.825974582, 16063636.237214353, 16063693.75, 16066212.5, 16066940.201683328, 16067173.488360696, 16067456.25, 16068526.365236187, 16068715.123393364, 16070149.99009831, 16070235.690748783, 16071004.6875, 16071162.511167476, 16071234.84752508, 16071381.186688047, 16071396.657019494, 16071591.487877816, 16071604.293401383, 16071611.932894774, 16071653.709524458, 16071965.69734139, 16071988.555545304, 16072202.573519075, 16072268.196185878, 16072429.263997, 16072668.75, 16072845.153415289, 16072856.4691051, 16072962.955334071, 16073056.245924111, 16073207.271312054, 16073211.358577477, 16073407.630317194, 16073495.169437304, 16073825.876791218, 16073876.281518556, 16073974.840381177, 16074361.403213467, 16074435.717412652, 16074551.243279036, 16074749.075289479, 16075056.564296285, 16075124.952336749, 16075255.903902784, 16075494.661047086, 16075545.210595377, 16075962.976124981, 16076069.032052966, 16076141.653604332, 16076185.265037816, 16076224.000241453, 16076305.589819282, 16076458.805654963, 16076732.074192315, 16076835.112731943, 16076917.1875, 16077091.60310401, 16077209.274762135, 16077257.8125, 16077387.883311247, 16077531.913062885, 16077591.912005797, 16077615.443443194, 16077653.750593005, 16078246.708503556, 16078350.242968896, 16078404.87101447, 16078440.837259015, 16078625.0, 16078797.004221018, 16079037.003762748, 16079278.125, 16079391.446457973, 16079553.125, 16079559.096773379, 16079845.143686034, 16080100.90080417, 16080294.96958371, 16080587.8766143, 16080610.425807256, 16081017.1875, 16081063.548844958, 16081067.418363072, 16081206.013374764, 16081365.336645136, 16081382.460840065, 16081493.422024336, 16081744.415513167, 16081817.105262492, 16081845.59592507, 16081853.921982802, 16081889.727298897, 16082341.46923523, 16082350.0, 16082471.09633524, 16082638.381981164, 16082891.744587516, 16082894.548999498, 16082955.58882743, 16083409.040341806, 16083466.910093063, 16083482.004834848, 16083491.403060136, 16083553.125, 16083750.0, 16083943.483575482, 16083990.17510375, 16084043.75, 16084060.133639175, 16084062.604102759, 16084122.791453576, 16084139.914808728, 16084195.3125, 16084223.233315295, 16084390.159210816, 16084511.847610056, 16084520.140059901, 16084564.023141464, 16084568.60576436, 16084627.791127943, 16084667.624580434, 16084723.4375, 16084733.061046945, 16084856.382532997, 16085108.932452923, 16085219.259030273, 16085223.353640785, 16085239.435557213, 16085285.62266956, 16085305.288464604, 16085306.727361236, 16085307.457517661, 16085326.422677258, 16085409.123522153, 16085439.239839159, 16085446.024403539, 16085552.087638043, 16085572.372501526, 16085890.427233597, 16086069.842253614, 16086149.742546666, 16086196.875, 16086231.502210863, 16086342.792189272, 16086392.845351003, 16086693.75, 16086706.384078715, 16086710.262780637, 16086762.494288776, 16086814.0625, 16086909.729379361, 16086996.082688354, 16087074.076282749, 16087214.037282007, 16087252.310340118, 16087255.394594746, 16087265.989072414, 16087272.704644617, 16087307.818050511, 16087339.0625, 16087357.04120686, 16087587.01842331, 16087710.324096117, 16087713.649249487, 16087785.669852419, 16087821.875, 16087939.760500586, 16087944.98364351, 16087974.580590758, 16088021.1522029, 16088026.276763208, 16088115.990022967, 16088144.759956747, 16088164.0625, 16088246.807586243, 16088298.556914298, 16088323.12386766, 16088443.75, 16088558.203241332, 16088679.01927531, 16088765.59539998, 16088771.875, 16088954.123192845, 16088980.824538682, 16088996.07192625, 16089079.59681491, 16089101.821617091, 16089184.559546014, 16089271.875, 16089350.870550603, 16089390.051109875, 16089435.814657705, 16089479.6875, 16089485.636898147, 16089589.732789995, 16089590.4971099, 16089710.9375, 16089751.202918448, 16089788.283008719, 16089791.857691446, 16089794.960044006, 16089986.211986495, 16089995.035092525, 16090018.75, 16090024.931593357, 16090165.625, 16090176.238941498, 16090178.646900555, 16090181.750270726, 16090201.055047682, 16090224.922683226, 16090232.102134565, 16090254.582387753, 16090308.0603111, 16090325.605223736, 16090517.282568336, 16090529.6875, 16090560.613829857, 16090653.55075643, 16090667.136224588, 16090805.734517898, 16090879.64199424, 16090973.11491934, 16090973.73285998, 16091024.852938011, 16091166.630679848, 16091242.17386775, 16091318.293429185, 16091405.907279093, 16091425.0, 16091460.9375, 16091566.880096683, 16091578.02580329, 16091581.246091252, 16091613.73160289, 16091628.545861373, 16091663.30388463, 16091691.332673531, 16091691.866544446, 16091715.665394481, 16091756.979069501, 16091808.690432858, 16091824.702944892, 16091831.25, 16091855.337684104, 16091884.159191536, 16092124.105220862, 16092153.881335596, 16092195.984684998, 16092223.5470664, 16092254.282629931, 16092282.238916835, 16092329.22238512, 16092371.597592745, 16092455.856115162, 16092460.9375, 16092523.4375, 16092603.028829759, 16092703.263118187, 16092705.7674203, 16092753.219598975, 16092760.318480145, 16092845.218624953, 16092912.61198767, 16092932.485088501, 16093014.455398962, 16093023.34233132, 16093076.779252555, 16093089.222147832, 16093172.782954426, 16093234.81766131, 16093276.81759618, 16093389.506558744, 16093398.908192156, 16093401.881507551, 16093426.5625, 16093431.905459953, 16093475.0, 16093531.25, 16093634.322452605, 16093654.6875, 16093664.593093798, 16093708.139756145, 16093743.087400384, 16093941.782452395, 16094055.984844664, 16094070.327710332, 16094174.412116105, 16094224.612481399, 16094227.212805578, 16094231.340419797, 16094266.939438902, 16094267.831677036, 16094298.725318244, 16094328.191675404, 16094342.1875, 16094420.3125, 16094468.976005409, 16094474.611117832, ...], [49.91968876511776, 17.971376057267744, 37.46175633214834, 14.136192966220065, 16.961644056666394, 5.691710167990848, 20.987988694731776, 13.212350001610403, 30.38012769967966, 142.23978675771082, 71.98999594609856, 15.84421850395801, 35.19234602818221, 33.84899112344942, 16.845153328842358, 54.55027861817821, 23.94945046418048, 5.12494633640555, 87.3633280749618, 111.53232258075185, 69.98614816279793, 56.92540010218718, 8.361144602590496, 38.04919584147799, 5.356725902080762, 6.5506454626912145, 8.524728231202284, 24.87702413816175, 66.01436008680542, 175.92956784679964, 37.80517783845325, 134.5595079403543, 19.661894932334206, 92.85366291454989, 24.2995672324069, 8.082288018387553, 10.960031605810906, 179.9593960060515, 22.70001676466569, 26.800116910573532, 116.51937300556855, 76.64961772679919, 14.105601582536314, 26.421202707828826, 19.340115238213052, 7.480700774478081, 16.256823283230563, 68.40338355005377, 34.27395218639797, 61.37390834694354, 17.307433376614565, 61.368824435688424, 14.040981994881664, 43.58917932552653, 16.080532502494442, 48.971968833608585, 26.499357099015636, 39.53031214168712, 34.610327249966915, 16.877584883085326, 7.409019848045543, 21.52891282919464, 17.200010431310282, 53.61118209709929, 54.63905588550019, 30.507034888600256, 78.68167347946674, 6.874074455811117, 11.843184114541979, 25.189151631615918, 8.310324819193209, 22.273516022829465, 29.46257700486323, 65.49603509528714, 18.494643980046135, 71.17287165621701, 69.57339904332115, 44.958993901749366, 7.5912588348592935, 80.34780472412297, 15.592598629329778, 8.658509497285023, 14.299448137991199, 160.64300614152705, 46.5652170472811, 11.198005620282345, 197.4175919717229, 103.08733960897209, 13.956486516830585, 56.93792857502742, 9.850413055634684, 16.172042774938475, 6.457318148525261, 21.195670641370334, 136.0063064086426, 102.2193349169747, 58.83942931496632, 16.90009539828052, 28.927494361264205, 37.9633116407012, 6.0415393821137675, 155.57667253364022, 28.24831116956703, 66.02973592727741, 54.10038748425854, 48.337784824592845, 12.493836963912715, 61.62974433917485, 206.78176062649604, 9.475197586047956, 75.82519190073259, 5.437932144342066, 6.889190551589674, 26.217214714654844, 64.02501326429142, 29.97576976834267, 10.748103931178756, 9.801451274493196, 43.57966120800381, 104.82717336673895, 12.874011722773705, 10.112308262301582, 65.50518204729622, 25.200832128974483, 170.09490148625122, 22.00613991094501, 6.94700767258983, 15.218815668237225, 8.138489452435866, 19.53771071986237, 43.97379524178173, 13.932732067420343, 158.53262086773765, 12.997792614763146, 30.14563669072772, 16.554191275143534, 30.55100036848005, 17.81629699438789, 80.9137231064901, 5.478751640905784, 6.6596971944327406, 15.316900548623856, 19.769625463821527, 18.195092250764674, 27.735818618686313, 80.90861332197115, 12.093288254950327, 16.81896290462825, 86.20913860501419, 19.55068992751842, 32.88728246836701, 12.004716038084368, 256.13570912058015, 9.523857424454182, 24.08366301322164, 20.231309977714993, 12.183504401325697, 8.955853520363824, 15.718363544868119, 11.845365235866893, 58.921267396821925, 14.810418282863207, 66.17938187436447, 126.02028875325277, 7.20684708767698, 42.330352035284605, 8.631303315911218, 32.120377369279794, 40.70028473416246, 8.678581425090998, 74.95044380175145, 159.97718864760122, 11.68910343245345, 76.21407508653303, 15.43341155468609, 36.58988991770088, 17.07528749280031, 15.050938226490164, 38.47169951438673, 5.440711505155289, 8.277558516445739, 20.552239152005896, 137.08617605881187, 334.69393020641627, 110.68127164295677, 21.429974864096224, 117.96806044260894, 20.028930357765304, 5.252684782105015, 59.01388869501103, 90.04585494208906, 63.63767871967405, 57.41215664007768, 37.54723619842698, 31.190010782442577, 11.37134043509467, 8.361228166893735, 12.550590401052139, 40.04364763153285, 19.627357697134133, 5.624482679122834, 21.118597196140406, 12.167724024431344, 11.650977207715766, 18.02983538180739, 71.06334357050599, 10.770241259147893, 41.39250035160866, 19.681291324401958, 52.5553162773521, 5.538481109288841, 15.04287066817916, 14.823429016105896, 102.9514278939004, 93.12138939074443, 101.56172362860039, 9.140697451065321, 22.279821790181966, 28.742870116032517, 70.22997691609861, 221.41561003868895, 6.148350297421273, 10.988419235248863, 156.0333190219727, 50.8344186921783, 7.712940290780599, 40.87893436563435, 58.16353049847369, 5.8085463454349195, 20.468915591756527, 52.81480096040848, 62.347107425205124, 23.56716307754204, 14.343477323337254, 36.62190031438551, 212.446916271769, 32.07621600879229, 33.80031094232304, 81.75979015987421, 52.65678258920164, 5.812674965347794, 45.07082537722409, 8.273124469478837, 15.01735415914665, 9.200176546316543, 7.50971988975513, 72.2216635388906, 59.29625915735427, 98.23519097156523, 28.473519952442658, 8.768904617268005, 7.616742981429114, 32.47191056944044, 28.406937475305803, 53.06901119505228, 92.91447710725703, 113.3046794053547, 7.559179418937205, 53.76312619714541, 18.536460693323622, 63.067706660524664, 28.156578547051247, 26.753595816093497, 16.892572913236876, 104.41724073901183, 15.209913846657162, 170.41470651990858, 58.756416838240575, 7.835996123075829, 55.22214360713721, 11.61938172435752, 86.3130277733674, 25.711202206768792, 23.96878671402887, 9.484436643888708, 97.53115844495403, 23.07109384016185, 14.939367151487808, 37.05428421474752, 7.736072466440889, 37.313878028217935, 86.35852560426703, 6.673134051392526, 28.10304903558075, 209.8693132999935, 55.69729866115282, 27.551833379293846, 10.281221435429968, 163.14059637807725, 11.688167564515537, 41.31511482580597, 27.912632083012564, 58.53976881675623, 5.912007857443606, 46.54875892604782, 8.838577628459367, 46.023417788686025, 18.41530787164774, 133.92639845412646, 44.97460166474554, 24.371390277439154, 25.864266483054497, 77.49020639808282, 67.07514409620525, 40.16612856508539, 16.928358935989504, 209.86281964447545, 11.3551652281414, 61.303780286658665, 26.860509284719473, 34.67289348563435, 187.77963159707116, 161.95737458568553, 41.17806527586447, 50.91135574657743, 5.345286900057883, 13.267173212430368, 301.63747740289693, 36.19905870411066, 52.63617823876879, 69.81872762719085, 210.6575001677348, 99.72290420569483, 22.86955544481903, 36.17515472019044, 127.3265028154778, 32.084266901017926, 21.198815980250657, 29.67407475266995, 84.97976662104156, 81.97384961718296, 61.82289386459199, 10.15036977911, 5.266297512542018, 49.68358260090925, 5.949577054044721, 9.050430927745667, 9.249187797845034, 241.21654826428426, 13.39182558277514, 9.406171866279859, 24.068616885714874, 30.414629644442595, 33.04672558096179, 49.59262644333995, 62.593567534296795, 37.77729647874739, 11.059956444909758, 19.36851037719229, 11.671187840829006, 53.81040186859226, 16.78979645425553, 15.458079808245934, 57.86208475004675, 36.99122834839149, 84.84847354371183, 8.374850225134475, 47.533304643174695, 52.04952998771582, 19.14786788159967, 13.308570089083775, 20.012534166263137, 40.219964501996664, 30.234494808955656, 115.93995668202504, 111.47077928382188, 101.28285595724377, 21.66351532116839, 35.13008748665239, 55.75942397136696, 42.13607189232383, 42.16448930244725, 7.146685234938238, 107.37209812626116, 6.955576863986749, 41.14551283184121, 30.849908914198046, 20.3955793782547, 60.894885616704606, 48.20441101869816, 19.587865842812036, 5.296413647476139, 81.18210602632796, 17.909453614858666, 36.60186676735798, 34.16644802338999, 23.188721287394852, 19.80792515992544, 19.88873623679698, 60.0330609200551, 58.852298018932586, 83.0155136410442, 35.60966140524402, 55.94114943243221, 12.041722027733371, 35.887170495259475, 86.79354207830399, 10.81168217250314, 33.92862601326022, 135.90017132574337, 41.348324756007095, 36.61740523279421, 5.556120904219896, 248.03251241817176, 66.64258921226366, 83.59307446030638, 90.6715017322067, 11.365247571713462, 5.342503900258511, 50.176794479284986, 55.10098452048289, 123.1107564693249, 174.51935119709876, 86.75586601431807, 26.505884183516628, 49.00759053428228, 73.5037989523868, 51.26441011699916, 33.89487268853987, 62.75654949137527, 9.27868203834054, 7.2904957032561075, 32.01564986887178, 92.47156724436724, 19.626007739816842, 119.04030303736242, 33.21594879441731, 47.39261946618249, 89.05900090050919, 133.70132756696646, 33.67311537989591, 18.650128287686087, 16.31013848113674, 20.863240409458946, 83.0039073811722, 103.79439692706755, 16.352684631452586, 17.10806220590429, 30.703744571628555, 27.119318918336685, 36.37174609634662, 33.647685696423686, 44.54356683977554, 6.089779196681841, 85.40427906745964, 14.85975127724774, 38.58643304711701, 66.76349710901272, 21.419397768764085, 14.679989322062612, 188.73169644098851, 70.88726047329322, 101.26558766398924, 60.48594144529057, 12.940711021619705, 75.48637103849178, 96.26714883429614, 47.253887455640296, 31.270574516359513, 8.736570263907801, 70.99944778165381, 9.125956628497976, 52.77394436514555, 14.493657608668311, 71.70864347439944, 52.47409440749729, 14.755549453229264, 142.62349996328416, 24.70275116351371, 7.316305286269078, 89.81186563498397, 8.759990204605025, 7.107449094032601, 5.181902222406866, 10.087647891807151, 48.26612852552812, 39.68070447673365, 21.07081323323644, 14.127003291196475, 25.387217391133003, 43.54255821416191, 35.09354914048781, 12.013478025997504, 17.802366027655818, 23.127720689861945, 235.580231241888, 35.48204940465501, 18.523206547522616, 34.253977077296334, 33.3210198623574, 26.134353898639322, 55.28370515537202, 12.98756891500613, 8.355342004043086, 30.469100611685782, 20.703626685044107, 5.545898031930592, 35.50201285657283, 6.0595027395664465, 67.95024705147458, 29.12791229457378, 171.02797509417718, 90.67916028493325, 13.68713075143999, 5.380352014091219, 58.94837606603502, 22.819435824443758, 99.17343688117595, 21.008680016154685, 40.0631193914921, 19.78507042980658, 16.95640631893018, 19.465004426757798, 26.457120506405712, 32.371565338174655, 34.7915428063824, 47.24873661636414, 19.609656697846507, 6.229616643379234, 39.51091524156297, 106.87521581036731, 30.326245000534634, 38.04486701870972, 32.67328544716891, 81.04342568841916, 5.953324343984015, 117.36682360945788, 96.53886050421856, 7.690326756088138, 6.232935917646154, 48.4290100925341, 8.40121683893275, 91.89138574724666, 12.749020100615542, 127.3635277139274, 15.873093406651142, 21.360241355881573, 24.502377049675097, 34.81896359001043, 40.71845460356876, 55.001500233767146, 114.35308646033917, 172.38723170824002, 46.250097522539804, 6.795716038653419, 31.91930806573593, 30.311889597730094, 17.275290499285703, 61.02660793633514, 78.78294607208949, 38.8728231027288, 11.81886752018542, 28.953299445988215, 63.49816703996575, 48.32873159280296, 75.17225968827731, 46.33158311323601, 52.09235315501579, 65.0449659947598, 24.576975428490965, 7.705543004392129, 48.70190204497711, 11.924041426944415, 7.337314461826429, 31.28036058374085, 104.0449394821979, 15.260604629046016, 19.63467667225179, 11.504989588100583, 47.78002261386657, 128.54049969260493, 7.638126664546873, 6.291519953750686, 10.144657017807338, 22.19457432503939, 95.33547410602503, 62.33846178494242, 33.53605200608195, 112.39792263545274, 95.78936903092695, 17.712953503262597, 102.21358768507612, 9.061765101317144, 6.261736154276252, 138.5615580164389, 22.521070550504568, 109.39349455772297, 85.52686236042489, 30.038022983061918, 9.64045099484707, 152.68384541390543, 34.322884287140965, 28.211883013138067, 5.729279487315237, 9.901332954779386, 116.64593890806806, 24.99581161448613, 8.826070418206678, 92.06887445670625, 12.89608153700092, 11.011279573922657, 19.425762457779992, 70.24388502282989, 28.649377915660203, 236.34248298706066, 125.42272594581345, 33.14229831039457, 34.34563221989281, 6.464366235953778, 13.666715974972213, 175.81481770020716, 8.916493822790809, 83.80279652672567, 23.844806601529324, 60.721878048387715, 152.54753936206077, 53.544832718104445, 41.406067202154105, 37.75253889053355, 70.82000486606324, 44.47252123219213, 169.99485178596882, 6.889114310326804, 66.75197816984928, 12.834852671993964, 19.114070183104626, 9.772638684797329, 7.459426425455719, 132.54668733382744, 63.6604282231579, 6.479323659536554, 9.577746395876456, 8.18928234330274, 118.14735172046308, 78.67887706852382, 32.79168389982576, 14.563956193446387, 17.5244972999615, 88.44841462168476, 33.55917082929513, 80.74040611845389, 47.8911536274979, 59.00169659464786, 32.07436404610187, 7.812734575906766, 44.624679260361134, 36.95875894094925, 36.540033391489125, 15.247747633262545, 5.1064787810123935, 24.859523106441, 24.13914206891136, 33.10005805803098, 27.853209048477456, 27.63208820677402, 9.27252257766821, 6.6977479975295555, 43.16673583317299, 27.812864934241944, 24.35268037692766, 6.642981255533454, 25.547612658650475, 37.4051401507223, 149.57808474428717, 24.389971563253138, 20.893707320528964, 51.42477009642335, 46.38158970421727, 62.60361857231759, 71.18325545208998, 66.14949642962755, 82.7632983261426, 84.42779158859679, 44.29231555197743, 49.093482826117764, 152.86863000311183, 25.42860746525589, 23.466465410867315, 30.628636260880228, 110.66464254064608, 77.19582405003263, 30.13331315338273, 14.259440625583219, 14.445828964794538, 29.28426297560168, 136.59285221879048, 15.088147596375748, 13.72726965500315, 10.713896956583042, 10.988694098264192, 128.44859115759596, 7.819449543410685, 28.66239382559342, 76.47852150438663, 133.06600757769746, 34.537619459614184, 24.00130595411825, 183.7612512652995, 58.70049927763762, 5.809145460435371, 57.870787312784735, 14.110617979550783, 39.24904780955989, 45.61385631571035, 70.32357455001399, 7.014449821888377, 17.802780737772185, 56.168916025123536, 5.038235265329131, 29.61265511912964, 11.112265018121844, 24.45561629031198, 58.2079414727683, 14.984246138229663, 9.765687762428122, 20.77909788146789, 7.065306354274148, 12.810671068105355, 63.8397070138696, 5.506175923933055, 45.28540721870165, 9.393330257806221, 13.3070390295743, 20.99447580618233, 43.51208645305792, 12.863407371793123, 29.907510648874226, 6.071710583188779, 8.405945033585395, 5.848457201687228, 181.92106797348268, 8.019721622134893, 35.65768316049179, 9.181965954979663, 5.286688512131784, 92.82438296625692, 23.996755791194424, 57.120264141996685, 38.08903990282579, 24.828164101160947, 21.85362481358434, 123.00404917885957, 42.85312799022781, 55.80891612850989, 37.55097237516005, 67.25138569022995, 36.79440996269891, 5.215724252905236, 23.29999305584441, 134.99460758276868, 6.636291376517809, 12.138183034912865, 20.031351834720336, 48.45945758437864, 19.405160296477618, 6.920303764610835, 82.86524434241173, 62.462432066845054, 39.13251717256549, 74.69974956040312, 8.50024279901352, 8.67137233241844, 24.068899092654817, 35.11113912723913, 18.0176104914899, 14.342733454634345, 11.529978119639662, 9.491550024022171, 36.90832560018313, 56.716266978132076, 15.458027893548385, 13.336363145572857, 50.74656302360148, 8.774651199135635, 37.55212419800502, 72.05092397078046, 25.58476209503191, 56.49517857183413, 9.057356195473314, 16.601705757271308, 6.993140161994957, 79.17165869436519, 5.508659961846613, 9.534549999424723, 27.038472841607348, 73.29547880945955, 31.109332555903777, 60.92938971477176, 20.85941082615033, 6.4742765931613135, 9.583132573358645, 13.793655928061721, 24.05843165893277, 5.879203803036741, 42.41298940693796, 40.00206031465179, 7.37435048658405, 128.9841953568261, 10.112672503485715, 27.10942022187993, 9.063601956195747, 24.043691453412595, 18.889693378641645, 79.4610547860598, 46.55730919042218, 35.83318980966897, 14.01476371306579, 66.46294382889832, 42.548482155789635, 12.564355043821228, 11.294420548872251, 6.390372142911042, 59.054344095388835, 67.77822187571691, 25.05699745218611, 43.099281622952105, 35.72439355397775, 115.93903232491246, 5.531173391775227, 33.5970559943035, 40.39344837957521, 12.662482133618623, 53.99161406682827, 27.598261008798058, 5.403564928596659, 79.46193086950117, 17.316125112890482, 50.67553648036855, 6.315510804341646, 23.563133946756896, 65.56399154826437, 60.595331533219124, 31.2243393660231, 28.53676081963069, 36.60881909752642, 25.493997739330247, 5.221946568484001, 17.408749093852755, 24.976134518910627, 16.935849937869648, 89.87286285212609, 35.24491259693579, 129.23266518076647, 15.998643827339835, 12.225683551845083, 43.28018344694311, 57.94912899053578, 21.586968525080223, 43.85455523864391, 51.01187429410302, 35.5196930569804, 22.88607126811336, 32.56528274433391, 162.56647188715175, 35.87707853037576, 18.839659224096795, 6.6039575725469835, 121.576653213742, 5.225086898986747, 22.903211556975954, 54.15840469808648, 19.155533303550605, 24.074446384022117, 102.23945027553548, 9.004822481335404, 20.885790908426046, 73.60198192333141, 77.81974273925525, 50.849158129984275, 9.000278049266033, 19.52547139191079, 8.141041936690298, 11.75059105244567, 8.014508050578364, 61.63541740059584, 18.075654404358794, 23.34123681478959, 7.493608872383442, 30.257486171602014, 16.674155090983678, 19.964485878245053, 27.952203799931794, 39.74734916280077, 20.874723479915755, 14.662387536932453, 18.922724348286433, 5.163254954200658, 16.03056370999388, 18.57208154698779, 28.958725331268454, 135.51226536958762, 20.786369643727195, 56.403691930185936, 77.17041303169106, 33.13549518057016, 5.145090697278723, 26.22995069838721, 77.40128813245245, 6.432163271938232, 24.421353718729904, 17.359132939162762, 13.749153126593294, 7.705626267176539, 24.043684369776354, 43.788436824564066, 62.51611385021735, 90.50464803120764, 23.4544076824243, 8.58329814901418, 9.793547314501309, 21.419080123881187, 42.14606399065678, 22.312434246032566, 26.6063216136485, 82.90882030886561, 12.22681107755972, 15.316684362503569, 51.72622459591032, 13.8363876093274, 22.331219842477026, 157.95361495118766, 38.38279519682031, 14.77085384120194, 34.889245766943766, 20.01856607054861, 25.922884958156608, 20.944415952214456, 141.630375348875, 44.10956936614403, 7.03418368190315, 30.292787369824982, 68.55014805226888, 13.886402434534691, 10.976116873347276, 11.121602671619744, 7.487787317332626, 7.23665973029841, 15.455409098413085, 8.699970513583157, 7.039562899051382, 5.400020523531761, 18.70707552137326, 12.847470246371616, 14.439765083570743, 72.52450376151754, 21.187193982325855, 26.440562831249174, 18.290165486787014, 37.992076274899276, 109.95064610166384, 15.376244506990442, 9.011020528502975, 19.507837619090257, 28.070348879235425, 24.04368727131761, 13.626379891173064, 150.40581951945052, 29.157350701978412, 82.75648214777178, 41.8008848345903, 104.60810656737027, 115.00284551771668, 10.28079887590469, 13.308902531680594, 9.427924855992522, 8.12070690455876, 23.98143733206322, 14.590767769883925, 27.69052005351356, 18.226323738181577, 20.07853611305366, 23.95689113468685, 16.011958252005947, 16.955475828673478, 22.887718408598495, 8.462799568011919, 70.07549056104087, 17.58453274004105, 30.212878355373697, 37.81047857376478, 11.046553323170654, 48.46269754625237, 20.980840885893514, 16.62902476168434, 54.81651724488489, 6.685249257524923, 62.20949666733787, 5.130827396678364, 30.186776131231227, 38.34084144406489, 18.176187704166825, 5.34502961428061, 10.760912639373787, 43.055037964774634, 6.822360578286028, 8.322153947026726, 76.54454858027682, 103.59905362653677, 5.25151505662548, 151.00783865554638, ...])
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)