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 = 48198
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);
([7699269.907019961, 7941386.886183376, 8955431.25, 8982414.96215069, 9008801.5625, 9045811.4561292, 9050843.75, 9112088.855233068, 9117833.528794963, 9123134.375, 9129749.584640376, 9177512.5, 9191993.262951085, 9193235.227529464, 9195295.3125, 9221829.601551984, 9254036.848658307, 9258646.626244485, 9259382.8125, 9259653.185660092, 9270396.83662507, 9285781.25, 9286569.731132988, 9292031.758297928, 9293781.25, 9302087.5, 9304640.363314828, 9306712.657057228, 9340647.751793709, 9346262.626892125, 9357923.309343176, 9374781.482126221, 9376037.5, 9380416.830765251, 9404909.596100215, 9405234.375, 9415824.460742826, 9419496.559434237, 9426010.9375, 9426251.946588103, 9437657.122573236, 9438465.123894483, 9440161.068332957, 9441009.375, 9441612.5, 9475911.142382525, 9492536.61394871, 9513693.3018957, 9534805.896892294, 9560891.16007076, 9570456.247480916, 9577596.233037276, 9577618.75, 9583695.3125, 9583700.0, 9615851.20828506, 9616270.3125, 9624510.856659295, 9631292.694103425, 9649750.0, 9650926.5625, 9661964.089987578, 9695160.016662857, 9698869.36617058, 9736982.782653129, 9738554.6875, 9775490.460776731, 9780098.926163925, 9781900.586607032, 9783012.849311749, 9785126.5625, 9786914.576520642, 9790372.367643194, 9792046.183723876, 9792729.901772205, 9793557.8125, 9794258.123185493, 9807720.25148839, 9813751.261918066, 9828817.00196362, 9837895.751053285, 9843350.882652055, 9849923.4375, 9855893.961182712, 9859890.625, 9866947.840487454, 9867851.693357185, 9868940.625, 9869986.17806507, 9870599.339705639, 9870601.295700768, 9874756.25, 9874887.5, 9875055.278010754, 9876512.5, 9877098.530742582, 9877935.362375002, 9878179.6875, 9879362.13053042, 9879399.310529873, 9880190.625, 9880375.265374435, 9881254.543992748, 9882010.767226033, 9882997.199159386, 9883457.467461746, 9883584.375, 9884273.4375, 9884356.683374617, 9884363.1174525, 9884392.1875, 9884428.125, 9885104.104746202, 9885110.9375, 9886245.354157228, 9887023.546685176, 9887385.9375, 9887678.125, 9888402.154628152, 9888567.5761409, 9892873.392871296, 9893794.45335275, 9894530.005811082, 9895008.856778499, 9895352.950656744, 9897110.95657813, 9897385.31218392, 9897859.375, 9898112.5, 9898649.19948603, 9899561.909096036, 9908312.5, 9909619.395536887, 9912168.263371352, 9912199.979251456, 9912281.25, 9915310.27241966, 9917806.79247993, 9918013.160247581, 9918701.319520941, 9918812.120986585, 9919187.497693695, 9919274.566165477, 9919553.901022637, 9920065.155669706, 9920545.233913332, 9921490.202756746, 9921877.697276523, 9923357.128514685, 9927143.99021874, 9927900.0, 9931203.125, 9935448.234248394, 9969463.31550605, 9969479.6875, 9974546.846638199, 9976807.413072256, 9979210.815773772, 9979228.125, 9982538.491019016, 9985757.8125, 9990572.836292569, 9991302.57981088, 9993178.125, 9993337.706431445, 10020030.828759858, 10020878.125, 10024418.75, 10047232.794326028, 10047893.75, 10048642.543469863, 10048924.641341116, 10049998.4375, 10050014.15778622, 10050071.875, 10050115.011066006, 10050757.8125, 10050809.375, 10051523.4375, 10052631.25, 10053250.0, 10057324.424106484, 10057662.5, 10060600.997375045, 10060696.64881349, 10061172.21594976, 10062239.0625, 10063893.21999824, 10066740.625, 10068107.291195244, 10070167.22757829, 10076729.412384326, 10076918.75, 10076946.109770669, 10078104.663167693, 10083456.230219906, 10085133.892218877, 10094672.96621414, 10095001.949713888, 10107471.475078188, 10123808.707185453, 10125521.875, 10127390.397815572, 10135717.1875, 10142040.625, 10147476.56606525, 10148983.730539337, 10149529.6875, 10149894.556160858, 10151112.5, 10153199.001752462, 10154937.5, 10157578.125, 10158800.497031305, 10163488.956859807, 10171640.625, 10172970.3125, 10174424.226478662, 10177027.170419844, 10177214.375520444, 10178101.560509458, 10179242.46757024, 10181916.810431615, 10181950.471766453, 10182826.331350172, 10192415.190501535, 10194469.245550502, 10195456.25, 10196741.151321853, 10196835.9375, 10197405.296069272, 10197487.89879513, 10198217.1875, 10198982.917743593, 10200590.746614361, 10201628.125, 10202159.983789096, 10202551.987799637, 10205103.302820975, 10205179.294846274, 10213413.781669635, 10219041.223582113, 10220145.463005748, 10220466.881903796, 10221483.661595719, 10221987.5, 10222325.0, 10222482.342559531, 10222583.757132033, 10225280.451812161, 10225842.383791303, 10225924.091671756, 10226219.019594047, 10228884.121710446, 10229023.4375, 10229384.124892535, 10229475.0, 10229891.124794671, 10230835.06651882, 10233177.349143524, 10233188.449329471, 10234516.612468608, 10236830.292889915, 10236906.87488399, 10236914.995508283, 10239644.753460253, 10239995.136351792, 10241307.519049682, 10243917.1875, 10244979.733601373, 10250673.894328939, 10252018.377768978, 10253852.535184432, 10264982.8125, 10271852.192299496, 10273274.643442908, 10273454.6875, 10276409.375, 10278114.726677079, 10278897.660877518, 10279165.205422986, 10279247.636263825, 10279495.3125, 10279860.879919631, 10281404.6875, 10282077.151470115, 10283245.315543745, 10284198.4375, 10284452.15461481, 10285015.625, 10285165.625, 10285864.0625, 10286143.04506117, 10286428.12696864, 10286596.503752079, 10286824.48564677, 10287119.855966449, 10287264.992194816, 10288136.798482321, 10288515.602019735, 10289193.819914078, 10290273.926853906, 10290277.113934375, 10290931.53407832, 10292958.862634063, 10293617.897650454, 10297206.776251836, 10297505.757655753, 10297625.0, 10297722.064004168, 10300126.53711972, 10300260.9375, 10302345.215192711, 10303896.830436192, 10304518.40633541, 10309209.195057575, 10311432.398889506, 10317493.653171634, 10319964.0625, 10325978.008453451, 10327498.08916952, 10328344.655711599, 10330246.277771201, 10337300.0, 10337406.25, 10338110.621845983, 10340304.145199412, 10340359.31220463, 10342654.620207243, 10344185.921639426, 10353785.888991008, 10354824.458164709, 10358008.2714867, 10359374.120893717, 10361885.754615432, 10363059.375, 10368243.75, 10369018.75, 10369181.09643365, 10377627.816824246, 10384694.526801439, 10384857.905734025, 10384879.410092719, 10392385.095490042, 10393858.497348059, 10398571.875, 10404231.25, 10410641.255533926, 10418539.975639261, 10423014.047710098, 10424256.700124871, 10425312.60062941, 10425343.302608104, 10426225.440762151, 10426246.659768093, 10426625.75427209, 10426824.354612077, 10426920.3125, 10427085.64215159, 10427225.0, 10427312.01337522, 10427373.852678552, 10427581.097384486, 10427695.3125, 10428147.378151974, 10428804.6875, 10428843.5794454, 10429017.692581465, 10429026.410297057, 10429528.633035496, 10429640.496194074, 10429668.938276744, 10429684.375, 10429865.762260532, 10430102.46020986, 10431203.224543689, 10431606.75309454, 10432767.1875, 10434064.13062787, 10434093.787017655, 10434186.101783246, 10434554.942322722, 10434781.25, 10434843.904059038, 10435134.7658351, 10435618.75, 10436081.25, 10436299.08351077, 10436786.014142571, 10437435.81914196, 10440142.408030888, 10440150.762513513, 10442700.85145015, 10443560.047273451, 10449195.3125, 10450679.272030562, 10455527.25635688, 10456362.316513319, 10458796.850924294, 10461156.25, 10467035.30697594, 10471557.8125, 10477175.99267134, 10481757.861037849, 10482647.324539505, 10484040.564521864, 10492538.548049774, 10494127.250895448, 10499426.515062278, 10503584.375, 10511401.273662485, 10511887.435829578, 10516046.875, 10516149.508805646, 10516532.435374403, 10517264.886504326, 10517309.292754723, 10517476.197466258, 10517524.983925747, 10517799.686191382, 10518108.290101342, 10518271.923812717, 10518278.666034855, 10518328.125, 10518444.86934665, 10518456.25, 10518473.91966083, 10518507.63890476, 10518784.762578102, 10518875.0, 10518934.214062179, 10519051.73177473, 10519415.619546272, 10519490.625, 10519527.586500999, 10519833.553049905, 10519853.675982388, 10519945.973397931, 10520048.4375, 10520100.0, 10520151.5625, 10520228.347031847, 10520296.875, 10520639.0625, 10521129.613552455, 10521418.329467611, 10521501.122859132, 10521694.612694567, 10521771.875, 10521828.125, 10521898.267999338, 10521901.88668299, 10521989.880225847, 10522215.408411724, 10522635.546984302, 10522674.693704918, 10523011.390048498, 10523012.669971818, 10523041.09277611, 10523140.625, 10523650.84484027, 10523960.83120083, 10524042.1875, 10524602.888775393, 10524712.175884709, 10524950.0, 10524971.444731202, 10525031.061877184, 10525089.751980321, 10525106.242421927, 10525110.857655622, 10525144.961731173, 10525322.650202733, 10525451.114998944, 10525474.805014754, 10525701.5625, 10525829.797167743, 10525840.844747122, 10526059.375, 10526741.336383723, 10527000.31480076, 10527680.011616986, 10528377.25188248, 10529138.876709152, 10529759.267917223, 10529972.387630219, 10530955.719727358, 10530957.214467814, 10530993.56527851, 10531077.80992688, 10531087.5, 10532092.152025487, 10532106.25, 10532695.190069979, 10533458.073693888, 10533618.75, 10534616.848687869, 10538235.720128547, 10538653.339438573, 10539220.3125, 10539381.243627368, 10539966.934391994, 10540137.43389695, 10540221.057672303, 10540422.804722764, 10541346.326353518, 10541436.277074255, 10541656.438865451, 10541832.647711787, 10541917.1875, 10541918.34578402, 10542276.359836997, 10542920.379632425, 10543422.39986446, 10543555.402500225, 10543701.266023709, 10544264.0625, 10547641.538602227, 10548213.379428325, 10548364.0625, 10550911.705956047, 10551833.389805607, 10553363.54806009, 10554877.878032083, 10554896.38368563, 10555849.477871392, 10556729.280256838, 10558299.976257548, 10559231.682377763, 10559439.795863766, 10560590.625, 10562898.087113837, 10563259.375, 10565018.75, 10569195.00127642, 10569283.049505489, 10570811.374370925, 10571110.0184383, 10571235.9375, 10571504.6875, 10572345.4983744, 10573068.698155642, 10573175.88500721, 10574379.300563203, 10576391.076947419, 10577011.913454533, 10577587.5, 10579929.296032935, 10583729.22838007, 10583750.794121139, 10584079.6875, 10584296.168732084, 10585828.125, 10586569.249903036, 10587718.9402819, 10588705.378428208, 10589176.5625, 10589632.8125, 10590617.466637513, 10590993.340922348, 10597850.558379548, 10603888.874776198, 10605474.00037329, 10607461.923258916, 10609125.116006594, 10609637.793097973, 10610333.885601936, 10610381.25, 10613340.451503662, 10613441.450003872, 10613507.8125, 10614359.471337015, 10616076.5625, 10616275.157424161, 10617912.337543836, 10621019.707332818, 10626068.75, 10628932.8125, 10628955.728282465, 10635821.806139097, 10636143.241940131, 10636477.628695153, 10638858.57432681, 10639954.590235975, 10640215.562872635, 10640247.771624617, 10640277.183797965, 10640523.4375, 10640700.99206766, 10640904.238392225, 10641132.83828236, 10641793.913666481, 10641914.0625, 10642271.438386407, 10642741.107760664, 10643192.1875, 10643259.524461387, 10643401.369346337, 10643502.477909671, 10643553.329545306, 10643678.125, 10643892.918845583, 10644221.875, 10645184.294060687, 10645198.4375, 10645199.40707794, 10645740.899887808, 10646203.733668387, 10646886.380754948, 10646935.163208801, 10647179.6875, 10647223.4375, 10647456.375532454, 10647533.803945873, 10648540.820869312, 10648649.79864471, 10648717.1875, 10648936.611820698, 10648955.428561443, 10649186.70931618, 10649444.083555749, 10649851.269774774, 10650604.6875, 10651948.387976218, 10652054.6875, 10652319.469977543, 10652617.938714858, 10652842.1875, 10653747.508654952, 10653796.875, 10654584.375, 10655495.248135213, 10656440.66886916, 10661132.982941773, 10664846.875, 10664960.9375, 10666165.507601602, 10666345.3125, 10666602.813042704, 10669689.0625, 10670262.5, 10670650.0, 10673035.305970535, 10673509.60678924, 10673706.913281789, 10673747.334717399, 10673763.38418405, 10673793.75, 10673860.180859895, 10673946.259429792, 10674082.351068638, 10674091.55444722, 10674152.610029701, 10674374.352670327, 10674776.5625, 10674797.704203734, 10674902.96860154, 10675221.875, 10675499.334135748, 10675527.142911274, 10675601.339592872, 10675645.716538822, 10676284.411791604, 10676301.326067282, 10676328.194625223, 10676393.484814797, 10676880.723642077, 10677389.664996358, 10677900.0, 10678348.4375, 10678517.181832118, 10678638.074481089, 10678751.810032679, 10679107.8125, 10679943.71017738, 10680638.918457344, 10680847.387620358, 10680890.18705627, 10680977.646581892, 10680995.3125, 10681076.042028015, 10681418.064524213, 10682142.341635235, 10682771.331367115, 10682923.65057316, 10683232.8125, 10684787.269962879, 10685228.060201336, 10685443.75, 10685450.98591307, 10685584.645160459, 10685752.043370275, 10686705.881095737, 10686858.877659647, 10687263.34490428, 10687481.148172317, 10687500.203146404, 10687575.0, 10687596.107326277, 10687947.34581454, 10688170.3125, 10688334.786286565, 10688425.545792127, 10688426.5625, 10688948.4375, 10689346.274903307, 10689379.6875, 10689695.3125, 10689785.770251963, 10691396.495124474, 10691410.978647768, 10692126.576609157, 10693358.935458975, 10693396.875, 10693406.25, 10694793.848670382, 10695304.823615542, 10697430.786704404, 10703336.840006726, 10705071.968548365, 10705930.032229764, 10706000.879256187, 10709200.369754488, 10710090.948503492, 10710252.934194552, 10710363.649921188, 10710725.0, 10711376.340004157, 10713835.6931692, 10713923.60501891, 10714302.80289507, 10715512.266464237, 10715782.8125, 10716044.757067036, 10716087.5, 10718008.253912706, 10718978.687824264, 10719213.095462222, 10719716.555158066, 10719794.549788924, 10719943.677926222, 10720151.5625, 10720153.125, 10720261.47345052, 10720511.386163022, 10720538.845854402, 10720734.086599734, 10721475.11654164, 10722142.262554104, 10722143.185782349, 10722190.42680023, 10724159.747688925, 10724575.795287488, 10732489.0625, 10733127.82397868, 10741397.426768666, 10747309.375, 10749526.913849054, 10752388.21997602, 10753210.865985772, 10754154.621310959, 10754463.7793798, 10754618.09621816, 10754949.784810709, 10754968.49335754, 10755042.268323231, 10755576.218886584, 10756196.875, 10756206.711190647, 10756488.621423619, 10756522.932825796, 10756617.1875, 10756714.0625, 10756747.937753871, 10756837.5, 10756989.464376766, 10757076.710423617, 10757524.966566794, 10757583.333568813, 10757703.125, 10757707.98634453, 10757742.240031134, 10757752.823193366, 10757843.741704162, 10757998.4375, 10758057.93728295, 10758156.630203992, 10758321.875, 10758358.032405572, 10758421.179028733, 10758454.147284376, 10758549.863987554, 10758722.692860752, 10758780.467815757, 10758801.5625, 10758846.710698185, 10759122.979093397, 10759159.3257026, 10759193.450993676, 10759209.375, 10759393.379176708, 10759427.494287046, 10759447.782515857, 10759481.71168853, 10759619.299249444, 10759625.0, 10759676.86241383, 10759754.6875, 10759762.5, 10759793.698783224, 10759828.331783192, 10759894.825589562, 10760133.3755285, 10760176.559233742, 10760331.599498767, 10760333.642740862, 10760353.284527857, 10760353.297595251, 10760432.474718235, 10760463.061902365, 10760524.941945825, 10760619.22995151, 10760669.756657759, 10760707.8125, 10760815.625, 10760825.0, 10761028.085016355, 10761118.253666306, 10761451.496676907, 10761457.8125, 10761474.599404836, 10761525.0, 10761536.513779743, 10761784.375, 10761789.235882614, 10761799.290881492, 10761868.75, 10762087.032105206, 10762210.9375, 10762477.687664228, 10762699.989241177, 10762975.216938315, 10763258.679012554, 10763273.30984815, 10763308.631946066, 10763322.34611979, 10763503.551298328, 10763526.5625, 10763543.75, 10763817.1875, 10764060.9375, 10764798.4375, 10765460.253307085, 10766417.07176678, 10766818.75, 10766879.674482087, 10767492.1875, 10768074.516974112, 10768255.015496867, 10768269.71437978, 10769918.4171519, 10770094.024647469, 10770240.466127306, 10770437.427791802, 10770444.445772035, 10770447.806313183, 10771004.6875, 10771421.875, 10771997.462573709, 10772850.82788004, 10775237.5, 10777103.122483341, 10777258.976896806, 10777398.4375, 10777450.534425132, 10777502.988385392, 10777812.675832909, 10778009.375, 10778053.963203777, 10778165.328467762, 10778327.005240362, 10778379.244426733, 10778397.361460727, 10778475.775453523, 10778735.676094342, 10778901.959767321, 10778928.581447005, 10778948.4375, 10779030.582165867, 10779135.9375, 10779149.767053263, 10779229.46019775, 10779265.676378228, 10779583.550910791, 10779620.716497632, 10779742.35633039, 10779775.0, 10779876.5625, 10780129.529184656, 10780254.110221537, 10780371.874144442, 10780666.474087775, 10780843.75, 10780916.665711792, 10780965.209429001, 10780996.875, 10781531.156159047, 10782324.839899395, 10782425.69720654, 10782540.625, 10782751.5625, 10782835.9375, 10783103.2860697, 10783316.480260553, 10783345.3125, 10783389.0625, 10783998.370861286, 10784009.375, 10784809.114400461, 10784948.5696376, 10785435.643439418, 10785437.341467805, 10785889.460843492, 10786088.617610184, 10786170.269653184, 10786944.340345126, 10787294.376731873, 10788440.625, 10788547.382181026, 10788943.012743779, 10790233.283826418, 10790428.125, 10790756.956307435, 10791001.885407034, 10791416.454855898, 10791502.54647239, 10791831.94272475, 10792463.073717568, 10793065.840581335, 10793235.9375, 10793809.375, 10794005.390588885, 10794606.25, 10794912.216607163, 10795652.764456322, 10795784.274911132, 10795840.066050822, 10796066.426355137, 10797249.749914654, 10797294.112576993, 10797566.274424048, 10797681.63745101, 10798051.5625, 10798684.361923331, 10798809.725619938, 10799144.3579909, 10799145.3125, 10799277.155553006, 10799283.837430723, 10799533.04189857, 10799546.711257078, 10799557.58013075, 10799639.530188657, 10799701.545614954, 10800634.484951524, 10800845.3125, 10801220.364927685, 10801367.926803162, 10801476.624474933, 10801629.287985772, 10801704.603868255, 10801843.595927496, 10802043.2543004, 10802197.99268845, 10802213.545855138, 10802221.605819376, 10802341.894143114, 10802453.358197158, 10802509.375, 10802767.1875, 10802776.5625, 10802964.904273259, 10803395.3125, 10803407.8125, 10803483.969933325, 10803559.23132475, 10803909.375, 10803918.81498135, 10803932.248319613, 10804131.731354, 10804309.540151969, 10804365.625, 10804391.060326707, 10804511.50710962, 10804525.067940217, 10804554.6875, 10805035.9375, 10805298.87411627, 10805302.887563588, 10805313.590300608, ...], [108.52460157910635, 59.22370885237692, 173.55098724352302, 5.766510718784112, 43.241743031982075, 33.458959922333065, 33.45779694016243, 77.23960407034019, 38.14998744222602, 74.63422626703708, 22.381135998352683, 35.40176800922822, 85.43196864191079, 5.372008842330948, 53.3548737731087, 104.85218580574173, 5.320087224904479, 24.42815888163751, 31.319258223850266, 15.177870304586056, 36.48064114405836, 54.664832389322726, 13.10859143606598, 12.027470520064648, 66.00273370519756, 29.73829401746506, 36.00708964920344, 15.575950351166991, 19.821115665950114, 15.448274081148869, 14.47454412198661, 70.78259355092584, 84.42838969117945, 13.736323091110394, 5.626394168029345, 45.81577295370411, 13.219800569003484, 8.126464845472604, 68.61069528961535, 57.94338534596851, 115.63911039524294, 13.323019304139423, 24.478796315333284, 58.05652177828851, 73.93805659519319, 127.29878014423664, 42.36979571172692, 36.33163189244245, 9.049670942029325, 5.854660917351251, 28.475386965443576, 20.184925974219734, 57.64244301008475, 29.16823162851133, 43.34639127012498, 9.048837493650655, 74.36681172454068, 14.64208222888217, 47.38831751803983, 39.152475995472656, 47.366166641614, 25.823404861137757, 19.152645866755527, 5.649066571469662, 38.22605470226282, 96.71363393487702, 9.196298986278336, 60.85658826034275, 49.01837549757931, 16.46407102298704, 46.94914043792413, 13.2346119817134, 7.7916972625389604, 30.36614637452125, 46.400069767202766, 35.265241121956564, 34.60580960281435, 41.21287703152029, 18.497713663960248, 25.331937197182526, 98.74561572410268, 46.755314177130664, 75.63330288147309, 15.812551094813157, 34.2186913626604, 74.37983493476082, 5.0437560334813405, 28.55609586290191, 11.525764954071654, 7.96576095666785, 14.013574339062014, 72.03392266834916, 45.934308894597194, 16.07209346387354, 45.349464825050084, 5.820911783749262, 13.124900050766325, 50.10748475602924, 81.21726748713485, 8.80934807298557, 114.31050942727342, 11.569486936727168, 25.979167097848705, 23.186227546321692, 9.621412070121671, 113.64248746331876, 76.68831569856945, 54.87007613000088, 22.270346623107145, 16.87819593005939, 54.752094755043785, 39.102130635634936, 53.116160145431515, 36.505141148095895, 6.272475842705629, 39.9229498915092, 32.97064600581593, 33.64966046835067, 30.50460353045912, 26.42881141831836, 7.587175604969061, 10.006507878814475, 17.438094861599573, 5.23086918420176, 93.18710629120093, 18.660906030250995, 20.921044541504386, 35.83472680637263, 52.4185848241831, 5.2232796269652475, 28.20237493715247, 77.9547069728485, 6.899609859098695, 8.951247077095683, 7.116008156286172, 51.461906112389975, 62.46171322253765, 38.39043081921493, 8.669580117705058, 10.768029189547887, 22.791331229824987, 56.5497815114306, 13.510985669831403, 5.658468291555851, 71.99274748326953, 8.245452040781483, 22.305494033311778, 70.23775702575172, 19.835112894446105, 15.94362949071175, 58.684370168962, 50.12406040519656, 7.069028672475798, 12.696927912064524, 52.82161798727714, 84.55771125379448, 36.842940837053355, 10.942626106903681, 52.61079257181564, 37.473072416110654, 49.935391375866104, 65.54763288840336, 22.193681094098594, 54.805725600349525, 84.02303289839881, 59.44201018018907, 88.13351660446675, 64.02272638190851, 68.66183610910734, 42.36166199089818, 16.301549674326765, 95.20072893031401, 32.44438850245484, 6.782679998875598, 194.12774379761328, 32.22425151650461, 126.33107586031716, 63.07547494358097, 39.352430317480895, 119.67889297740987, 40.897131437172355, 13.122888861615406, 37.454164705523326, 13.151154107945382, 106.74465394886384, 16.42253324126507, 53.51883033411065, 126.5300235958519, 29.635895466266987, 21.2831743505837, 115.84873416605801, 34.468551631374126, 40.86966178224167, 27.645297592129072, 14.84957008653827, 38.72146148290602, 8.954025694167132, 19.406532289040236, 9.681780736429342, 19.448003001304333, 10.222934570931905, 49.24556254536225, 32.97388102792341, 40.889188412629515, 29.58948202264194, 198.75989856268785, 20.163691273381453, 28.862652091337182, 39.82602732210457, 83.71077481964738, 42.34228521101762, 73.82003530556538, 38.030138299128495, 17.247976407462414, 14.553586955174854, 41.510176440058444, 44.64052737776875, 25.086550680316122, 5.648584930960681, 24.12246664889214, 11.124596882086458, 16.128485227626744, 19.641667870718468, 69.1741754156992, 55.256060489245336, 97.6856433557939, 8.5672526606093, 76.64076913418822, 18.994641209732, 73.61588574923799, 29.55377395767689, 112.05204732189645, 90.56230879578497, 6.09911243242436, 11.32327178509252, 38.75413852958183, 98.0249192466966, 23.0914520628803, 15.66555308020595, 6.218832090086105, 23.998735046259682, 150.5551199383712, 8.367803859827564, 58.41176821157862, 8.793178280824499, 68.80686013300505, 56.05994960411551, 8.963323266571404, 55.39537884586722, 7.905230737255148, 11.449039788146825, 71.24348584194072, 6.301871288083628, 22.3896696351769, 47.51344589059935, 18.742146291950192, 55.15876411476622, 17.263607577751603, 18.44898599538028, 19.121648674950688, 20.433863149695004, 8.004226488496323, 74.83132030694337, 9.922281048586461, 12.984858739345514, 29.594377576246725, 8.19557319141193, 166.67863546355414, 29.651656572107598, 15.120186778418752, 49.25750178294757, 6.691401233354516, 17.41842599112665, 78.90010605770149, 5.7480478079493516, 6.223177026452328, 59.51952047952729, 42.907968665379585, 93.77174473774045, 5.147660755182135, 51.64709932143238, 31.735633611659516, 41.669568560131594, 27.434943939162004, 34.38035646055114, 99.75912843015927, 7.122251995307432, 90.86401214441, 17.808492940368968, 63.919361930943545, 78.19956472224354, 37.11924603370487, 20.004135881731635, 68.2001063507879, 23.13364160455574, 10.40884011827391, 10.48196602007968, 20.26326291880696, 72.47765089808424, 39.93388382397355, 35.24280368786511, 5.176917182682368, 17.882721515673396, 10.441735157365475, 35.95647432247522, 31.2883524955803, 110.80604007655025, 35.53933491277598, 38.61700994557694, 5.044743451990951, 9.310034522924358, 29.433088706939408, 14.583152316172324, 40.825550722464996, 21.973944897028908, 43.18723704996745, 9.004556613701414, 35.9205275859001, 168.26224371691205, 10.950295902408921, 13.7615568714067, 7.967326722887249, 41.698073291482686, 144.0568295666872, 61.58656127220149, 117.1559732191269, 21.081258590967817, 14.707445452610688, 27.26065322991156, 28.214773753948187, 14.759784127846654, 64.44889083008243, 82.49061024969939, 25.875107266229378, 49.01120417552309, 28.56966448925759, 69.96842180899779, 35.5776741336449, 43.33194060089194, 106.23255425901698, 52.498196062699556, 9.41150197381341, 24.043686916202347, 12.477750089178723, 103.71595236423371, 43.38830843642697, 71.72008424984162, 15.978813647712666, 20.122201164003354, 14.885435306887077, 6.3257942693819365, 15.036222211766221, 8.063358230209081, 8.534275188692146, 24.897494331191595, 10.062536043161076, 20.15582322577853, 45.40868488501602, 77.71059557118747, 74.39043517429945, 26.617019184710905, 63.21864022146269, 14.390058058420047, 80.20827708838945, 9.79645678646402, 73.00122779808612, 8.198398529089264, 60.19433564543146, 67.85497349136813, 25.75533268228308, 61.11542253288549, 15.711216344522294, 71.874589676862, 15.491830766768489, 6.637667510435476, 28.92796444735396, 12.01705355973613, 52.88350115642773, 67.17295776121962, 6.770919426877521, 51.00738194377173, 6.815469099166381, 30.458863000655477, 5.295869872192549, 9.685289605787016, 67.41256563639122, 33.110682859042555, 8.660539652268385, 15.241909739042569, 10.947611517315806, 9.525105675661148, 5.657668543982739, 18.60199281053965, 26.987382708637487, 44.11610880277775, 14.243193873874677, 9.996180354153994, 53.66770488646088, 121.45492395001888, 36.56782410245038, 27.533408297482637, 60.23527143491708, 6.979306107871295, 93.87389225857316, 102.21261742741498, 9.28078372591287, 28.190529706714702, 15.51708232862574, 35.982849369701086, 92.59607681121582, 13.944133233035046, 9.277726537421383, 58.459780744065945, 69.75019909013126, 22.813146805138725, 5.761286543367222, 16.744961593829434, 13.711537641682567, 36.46247624176388, 46.88749079695523, 6.564659645888798, 6.093190061803259, 5.742078386515019, 33.83464420057823, 114.51889816500547, 66.46417887956562, 11.9754287399768, 25.511854911209504, 16.65785845839633, 55.50186909780881, 73.13853760779749, 8.378168168004496, 13.209444086531569, 43.10923463826922, 100.77075514972402, 55.68710774563061, 12.114001595524602, 8.669993997540464, 74.79755245097473, 85.18159656056206, 82.26471063276006, 9.526475523746642, 73.92342362681457, 61.82161618641091, 7.102147829158884, 13.54908906662812, 51.139247469619114, 12.810225108856393, 156.99674536889464, 36.64181343295872, 10.872714042702295, 9.621434412058335, 8.77216114932734, 5.920763068257567, 31.463254588076172, 13.889829038596714, 9.745804651904573, 15.631513814359153, 7.781664847010099, 130.9867936640793, 19.565745132418744, 36.319779388532154, 101.81115655399468, 30.061265263119367, 23.447513407022512, 48.544462702794185, 141.36409244725354, 14.269883457973998, 25.024341852018722, 11.115882410864092, 58.32835844028165, 10.620389107705929, 16.531424039929977, 13.47216533750705, 17.31908386171326, 48.83156437895565, 11.303563273158538, 15.850904871742884, 76.16408588122913, 25.990438928892576, 16.29445595988124, 16.339774200713475, 18.434581131638957, 87.6731723904381, 126.15976937761623, 31.766445637657426, 42.15359250577588, 59.81188838313452, 54.770594663942255, 57.670428695279796, 50.90795268715448, 17.61357703911058, 66.99676288203689, 83.55521537093355, 16.04019665052132, 64.0811533876715, 6.435259449392104, 5.239101969230089, 40.699107542012314, 29.463911042485577, 5.938850750447717, 24.36879024281204, 27.28186128266356, 17.448570379152684, 39.71745225769284, 88.17170532892969, 5.54979128837287, 26.113507745039428, 30.442000110023656, 73.75187653576701, 5.328258879931217, 71.23466033246476, 5.344227339475435, 9.818482147120015, 28.983686627461523, 58.78235524302462, 37.33132244157742, 10.245233245220556, 58.30542996883547, 63.312019689626894, 6.927274462183356, 7.826296070203298, 49.83160440387434, 70.56835186683527, 10.437768351788282, 57.256274874888774, 53.11749239547216, 28.063436339705603, 5.480635838709198, 10.039396509791379, 90.92391625133581, 23.127780262506494, 71.0386301137353, 53.421425224568324, 24.958839435021257, 6.297613997828987, 16.916804576493025, 8.658910140627652, 33.312358658198676, 89.68975526157399, 311.5989469547196, 78.75219115922414, 6.020369968348701, 10.572356848402595, 8.540965846721386, 24.663922930476318, 63.008527128831176, 29.492561266220253, 8.971187244286028, 12.646575412634856, 39.45425814507302, 139.59775003140064, 44.76053392746773, 17.26422132093677, 5.8281949423701445, 18.44500067481301, 46.23206398019767, 45.06096336939849, 11.593971962364687, 22.45072445334799, 100.5881894712385, 25.29931001669499, 12.138455000824667, 6.977670800920861, 13.669368936933541, 16.190199566101864, 13.355176328694816, 33.83783975601432, 133.65789535697814, 5.148534423798974, 60.48787792060578, 20.676846188320773, 113.80880587084465, 112.67722999749175, 59.592762009417825, 49.65824969996271, 114.86974674089831, 39.97491861161755, 6.9907443326702685, 25.56562827440156, 13.30402602333451, 5.8973190569872935, 40.946301625534026, 14.58330626581087, 14.709881000847375, 19.983955638101644, 104.07290483494856, 71.29638786164676, 8.891544374687124, 65.15599060032467, 276.6573594153528, 38.79251968159253, 59.21617313718837, 13.50306490853391, 30.647947920406104, 121.0515172599654, 11.369647171107488, 25.218755817337335, 103.62467318870365, 23.17512492395686, 53.86565878321913, 5.3142255177920825, 128.2962918028637, 27.020160670218182, 32.08586001498148, 20.613667334781844, 152.832464766674, 5.363220294627183, 21.189225890814843, 87.04430432696869, 111.3581454072969, 106.33674735157445, 16.21250107196777, 43.921512834935996, 11.907071554042725, 42.77934849436532, 59.4431283171281, 7.310758671715964, 86.66792124302052, 38.91538058474484, 14.097539824539382, 29.244293425159874, 145.24386564755235, 9.28987615829385, 30.235234844253476, 27.60695517851351, 5.871736372647976, 37.93132143820537, 5.996555338539459, 58.64417388444511, 64.69180576149031, 27.312918647222407, 15.11139668728761, 24.289378571828536, 54.60403914991534, 154.1193667244385, 127.35316901875001, 96.73510803563425, 23.599196009667388, 73.73419519816389, 64.55008867939753, 41.40539517562822, 13.965599619719033, 78.60457274471153, 40.11876400616353, 32.1687827792378, 118.55024235619038, 78.72072622170901, 82.51443421682364, 245.2873565922448, 52.61201095341314, 75.45810992774372, 23.26027732770583, 8.838104938661854, 62.10471000665713, 10.147029030932286, 59.08174704956916, 136.27765134668118, 245.5671106420483, 60.03188107200919, 74.89258853039962, 11.823994617183986, 75.2957712076587, 14.110918121793445, 139.46880905523665, 24.34777135346934, 18.291471975138705, 17.87265295733971, 31.507514207380027, 63.16742066845734, 14.919950030887074, 11.369729163169364, 15.977120552738665, 69.3446381560353, 6.755582248469952, 25.970671262053024, 7.799799302779115, 10.505852608743812, 316.8516621675394, 30.183031158183923, 14.095355070187919, 15.790824436996513, 15.56345457955931, 45.30008760003044, 131.51576828320697, 32.28369267228956, 33.5065383709314, 15.467769262330336, 60.30770853829298, 20.761675405603725, 16.081969713471388, 102.66733636661152, 29.635192667974383, 7.432745780548798, 107.0615472543129, 63.6219105334676, 51.14993386270521, 38.48447229697216, 10.107957493323008, 24.405994856568938, 40.563382510312735, 130.69009264327227, 25.030266306749283, 33.849958981198974, 42.82853999675909, 293.18959522799616, 62.842785032664466, 37.13698920085845, 25.60874940680379, 70.22828690918429, 30.27210936390712, 5.069152959524089, 8.98548464159847, 51.187868182945394, 55.17999864247351, 11.285518796738568, 6.284550130080968, 6.6744085608716395, 12.908227863277443, 8.336674652709789, 124.2846805176032, 61.07468021265221, 29.92573611723632, 37.62292440889792, 25.292721544426428, 10.53874583644274, 83.23477378213549, 69.7620563476893, 5.333618493485493, 23.028875372871802, 32.68399854549502, 24.638554204215563, 74.90238433369326, 20.957393078505664, 52.607880138907895, 13.460953793492735, 19.033002546307905, 33.3414001793097, 27.28938985406767, 19.219681134981553, 9.271195301310936, 61.21275886192224, 72.01347210391887, 25.565308702898108, 70.69909029801332, 18.07611078866319, 6.231435963557953, 11.314889640683353, 53.329662496420625, 20.875553159599708, 25.14444780554864, 15.04350520667583, 58.07409888751207, 62.33187128534005, 36.20548918210703, 12.115613828843452, 142.2628366325999, 5.63378188847411, 52.22608378540289, 41.04324994195812, 65.43500258659776, 40.940923281886235, 20.08495285606072, 132.47732515795508, 24.320837253575966, 38.23601600515155, 22.93658291218857, 119.70254047696729, 159.12288478429892, 87.74459181524882, 103.23638164896781, 29.440319711930343, 45.69999736120949, 34.46692706453454, 60.10106868080525, 9.696017212347538, 6.510532286133384, 27.879976178139298, 48.60255410600751, 72.29780862444586, 11.410762419492665, 15.145586462019688, 62.99052170205353, 11.114764586306762, 37.590475966090175, 22.402786654229892, 21.964596408991472, 30.37778579387502, 136.36012270338585, 19.738149705737715, 17.240292030219667, 26.098799342384197, 8.772251109899841, 19.07491803296058, 35.51122480815267, 55.0131218470087, 21.918299519317266, 50.12010166101682, 58.041657948833944, 120.01866000522104, 28.48731590520348, 8.849546179516892, 6.022535947152977, 8.546810054975612, 107.22237691507374, 42.30393134727591, 43.34659815938356, 99.46876546814376, 174.01032484957682, 38.66309040153077, 15.792948012776844, 8.044847658070196, 7.820412986337032, 18.619274862235343, 178.8058849264687, 19.451849703556817, 15.586537607140526, 11.40864418701755, 5.123348200979796, 17.625187569614575, 126.44447181823377, 23.629476718782257, 20.953562184205513, 129.062494914393, 80.37729784653628, 52.54827782708992, 27.757565379530533, 63.7708469333148, 97.38787156676023, 47.72002855328582, 22.545545216191652, 48.151316569348815, 7.825872685844468, 47.566030987313354, 15.646280179691002, 26.474225760549515, 52.19658574871986, 30.0583274149053, 68.14520087527796, 52.149314702898664, 28.313764315918355, 15.838298044632586, 19.738019634317613, 26.233821602934547, 12.706271637290772, 7.7830104343007225, 35.64221784306916, 76.74667851175718, 118.0249201284924, 39.52224713777491, 28.816200479686643, 97.4403290312955, 47.261704449144645, 124.29255043733482, 31.79403469267267, 5.244781093989562, 35.446980896123605, 8.046659037235962, 95.60462524593663, 85.73530167919526, 83.49746440010355, 214.1368302210126, 43.80664652062156, 27.173443319392362, 26.56924157703613, 6.024832001812231, 28.77880221244071, 61.729193803656024, 17.780618842683005, 41.038814176959185, 49.12842059484402, 141.27234417188933, 18.124701988175254, 66.81226438785895, 44.66011698257484, 66.1430072544087, 9.484640937924349, 67.17484756167288, 15.42455986315874, 56.80825477628274, 112.59528477010153, 13.484706626118317, 17.188530485608755, 48.40257949907029, 100.13546008414588, 9.691533646003705, 17.02268698683156, 93.45212732669333, 139.8604856299287, 37.77891239751036, 7.061534429936592, 39.082193696301296, 234.23534091998326, 39.432654410922034, 37.71878676696073, 37.450521753701125, 67.24743079945912, 303.5410133021797, 78.53162387036772, 27.486731732856313, 5.613996810508877, 86.20631803289042, 56.19825414043298, 13.266766756290362, 46.97585063869754, 43.935198496739524, 14.595501425643016, 7.54634053898532, 5.1819234725242325, 83.34380918553799, 33.62988788018269, 82.68945806846791, 11.389161529899301, 55.363646297419976, 52.22645985479009, 58.9329584754066, 36.650631528825336, 106.59130248065772, 24.26742209092307, 32.543222837622714, 42.55786010511769, 227.95888036000645, 80.58706198043211, 5.679017199583329, 11.06138846874347, 5.4215323299813285, 8.648357389785415, 30.388299391317315, 36.60642700853813, 91.83080913672647, 156.24249957341092, 49.22330718865061, 223.59025426102139, 8.465050997350607, 61.324564486253074, 20.743950682308498, 24.02830166502205, 17.696275824846282, 60.130618805017775, 69.02770722005152, 52.28189421395647, 8.69701408798795, 562.7266757047304, 94.23246091855428, 288.835987052371, 8.234348473976535, 8.899633614929243, 12.663540424017667, 10.7580824022546, 79.57956481196764, 30.67204016816256, 6.8434044707803245, 58.71486412417752, 136.9042707377138, 11.723855914655577, 75.71886938668554, 45.164339521163946, 68.3842526911784, 26.480946739636536, 8.411730552223718, 82.87152570651027, 38.099001958136085, 7.781629667304333, 22.591733594961887, 11.304030144288488, 150.5987691167362, 92.79747558275606, 18.779057560934277, 15.183110278321475, 22.55769973720757, 37.81626522792114, 25.812741008814715, 10.432240917295825, 22.061885964674364, 21.32865040232396, 24.152564454777455, 355.586742938282, 40.69652602129837, 73.00890800077627, 33.382129610977216, 54.502202583388396, 40.99214384442129, 69.93691806103269, 31.739997809969037, 63.37743213543384, 8.21203323051772, 102.5195676457044, 23.65405631572999, 25.91221607986762, 157.8363789033573, 7.165552526220375, 41.08147290439313, 31.079411136777743, 7.279692138414701, 14.98741110052352, 66.6816591697647, 32.17948083750707, 19.551751965275354, 56.960531152432296, 18.926723908116358, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7699269.907019961, 7941386.886183376, 8955431.25, 8982414.96215069, 9008801.5625, 9045811.4561292, 9050843.75, 9112088.855233068, 9117833.528794963, 9123134.375, 9129749.584640376, 9177512.5, 9191993.262951085, 9193235.227529464, 9195295.3125, 9221829.601551984, 9254036.848658307, 9258646.626244485, 9259382.8125, 9259653.185660092, 9270396.83662507, 9285781.25, 9286569.731132988, 9292031.758297928, 9293781.25, 9302087.5, 9304640.363314828, 9306712.657057228, 9340647.751793709, 9346262.626892125, 9357923.309343176, 9374781.482126221, 9376037.5, 9380416.830765251, 9404909.596100215, 9405234.375, 9415824.460742826, 9419496.559434237, 9426010.9375, 9426251.946588103, 9437657.122573236, 9438465.123894483, 9440161.068332957, 9441009.375, 9441612.5, 9475911.142382525, 9492536.61394871, 9513693.3018957, 9534805.896892294, 9560891.16007076, 9570456.247480916, 9577596.233037276, 9577618.75, 9583695.3125, 9583700.0, 9615851.20828506, 9616270.3125, 9624510.856659295, 9631292.694103425, 9649750.0, 9650926.5625, 9661964.089987578, 9695160.016662857, 9698869.36617058, 9736982.782653129, 9738554.6875, 9775490.460776731, 9780098.926163925, 9781900.586607032, 9783012.849311749, 9785126.5625, 9786914.576520642, 9790372.367643194, 9792046.183723876, 9792729.901772205, 9793557.8125, 9794258.123185493, 9807720.25148839, 9813751.261918066, 9828817.00196362, 9837895.751053285, 9843350.882652055, 9849923.4375, 9855893.961182712, 9859890.625, 9866947.840487454, 9867851.693357185, 9868940.625, 9869986.17806507, 9870599.339705639, 9870601.295700768, 9874756.25, 9874887.5, 9875055.278010754, 9876512.5, 9877098.530742582, 9877935.362375002, 9878179.6875, 9879362.13053042, 9879399.310529873, 9880190.625, 9880375.265374435, 9881254.543992748, 9882010.767226033, 9882997.199159386, 9883457.467461746, 9883584.375, 9884273.4375, 9884356.683374617, 9884363.1174525, 9884392.1875, 9884428.125, 9885104.104746202, 9885110.9375, 9886245.354157228, 9887023.546685176, 9887385.9375, 9887678.125, 9888402.154628152, 9888567.5761409, 9892873.392871296, 9893794.45335275, 9894530.005811082, 9895008.856778499, 9895352.950656744, 9897110.95657813, 9897385.31218392, 9897859.375, 9898112.5, 9898649.19948603, 9899561.909096036, 9908312.5, 9909619.395536887, 9912168.263371352, 9912199.979251456, 9912281.25, 9915310.27241966, 9917806.79247993, 9918013.160247581, 9918701.319520941, 9918812.120986585, 9919187.497693695, 9919274.566165477, 9919553.901022637, 9920065.155669706, 9920545.233913332, 9921490.202756746, 9921877.697276523, 9923357.128514685, 9927143.99021874, 9927900.0, 9931203.125, 9935448.234248394, 9969463.31550605, 9969479.6875, 9974546.846638199, 9976807.413072256, 9979210.815773772, 9979228.125, 9982538.491019016, 9985757.8125, 9990572.836292569, 9991302.57981088, 9993178.125, 9993337.706431445, 10020030.828759858, 10020878.125, 10024418.75, 10047232.794326028, 10047893.75, 10048642.543469863, 10048924.641341116, 10049998.4375, 10050014.15778622, 10050071.875, 10050115.011066006, 10050757.8125, 10050809.375, 10051523.4375, 10052631.25, 10053250.0, 10057324.424106484, 10057662.5, 10060600.997375045, 10060696.64881349, 10061172.21594976, 10062239.0625, 10063893.21999824, 10066740.625, 10068107.291195244, 10070167.22757829, 10076729.412384326, 10076918.75, 10076946.109770669, 10078104.663167693, 10083456.230219906, 10085133.892218877, 10094672.96621414, 10095001.949713888, 10107471.475078188, 10123808.707185453, 10125521.875, 10127390.397815572, 10135717.1875, 10142040.625, 10147476.56606525, 10148983.730539337, 10149529.6875, 10149894.556160858, 10151112.5, 10153199.001752462, 10154937.5, 10157578.125, 10158800.497031305, 10163488.956859807, 10171640.625, 10172970.3125, 10174424.226478662, 10177027.170419844, 10177214.375520444, 10178101.560509458, 10179242.46757024, 10181916.810431615, 10181950.471766453, 10182826.331350172, 10192415.190501535, 10194469.245550502, 10195456.25, 10196741.151321853, 10196835.9375, 10197405.296069272, 10197487.89879513, 10198217.1875, 10198982.917743593, 10200590.746614361, 10201628.125, 10202159.983789096, 10202551.987799637, 10205103.302820975, 10205179.294846274, 10213413.781669635, 10219041.223582113, 10220145.463005748, 10220466.881903796, 10221483.661595719, 10221987.5, 10222325.0, 10222482.342559531, 10222583.757132033, 10225280.451812161, 10225842.383791303, 10225924.091671756, 10226219.019594047, 10228884.121710446, 10229023.4375, 10229384.124892535, 10229475.0, 10229891.124794671, 10230835.06651882, 10233177.349143524, 10233188.449329471, 10234516.612468608, 10236830.292889915, 10236906.87488399, 10236914.995508283, 10239644.753460253, 10239995.136351792, 10241307.519049682, 10243917.1875, 10244979.733601373, 10250673.894328939, 10252018.377768978, 10253852.535184432, 10264982.8125, 10271852.192299496, 10273274.643442908, 10273454.6875, 10276409.375, 10278114.726677079, 10278897.660877518, 10279165.205422986, 10279247.636263825, 10279495.3125, 10279860.879919631, 10281404.6875, 10282077.151470115, 10283245.315543745, 10284198.4375, 10284452.15461481, 10285015.625, 10285165.625, 10285864.0625, 10286143.04506117, 10286428.12696864, 10286596.503752079, 10286824.48564677, 10287119.855966449, 10287264.992194816, 10288136.798482321, 10288515.602019735, 10289193.819914078, 10290273.926853906, 10290277.113934375, 10290931.53407832, 10292958.862634063, 10293617.897650454, 10297206.776251836, 10297505.757655753, 10297625.0, 10297722.064004168, 10300126.53711972, 10300260.9375, 10302345.215192711, 10303896.830436192, 10304518.40633541, 10309209.195057575, 10311432.398889506, 10317493.653171634, 10319964.0625, 10325978.008453451, 10327498.08916952, 10328344.655711599, 10330246.277771201, 10337300.0, 10337406.25, 10338110.621845983, 10340304.145199412, 10340359.31220463, 10342654.620207243, 10344185.921639426, 10353785.888991008, 10354824.458164709, 10358008.2714867, 10359374.120893717, 10361885.754615432, 10363059.375, 10368243.75, 10369018.75, 10369181.09643365, 10377627.816824246, 10384694.526801439, 10384857.905734025, 10384879.410092719, 10392385.095490042, 10393858.497348059, 10398571.875, 10404231.25, 10410641.255533926, 10418539.975639261, 10423014.047710098, 10424256.700124871, 10425312.60062941, 10425343.302608104, 10426225.440762151, 10426246.659768093, 10426625.75427209, 10426824.354612077, 10426920.3125, 10427085.64215159, 10427225.0, 10427312.01337522, 10427373.852678552, 10427581.097384486, 10427695.3125, 10428147.378151974, 10428804.6875, 10428843.5794454, 10429017.692581465, 10429026.410297057, 10429528.633035496, 10429640.496194074, 10429668.938276744, 10429684.375, 10429865.762260532, 10430102.46020986, 10431203.224543689, 10431606.75309454, 10432767.1875, 10434064.13062787, 10434093.787017655, 10434186.101783246, 10434554.942322722, 10434781.25, 10434843.904059038, 10435134.7658351, 10435618.75, 10436081.25, 10436299.08351077, 10436786.014142571, 10437435.81914196, 10440142.408030888, 10440150.762513513, 10442700.85145015, 10443560.047273451, 10449195.3125, 10450679.272030562, 10455527.25635688, 10456362.316513319, 10458796.850924294, 10461156.25, 10467035.30697594, 10471557.8125, 10477175.99267134, 10481757.861037849, 10482647.324539505, 10484040.564521864, 10492538.548049774, 10494127.250895448, 10499426.515062278, 10503584.375, 10511401.273662485, 10511887.435829578, 10516046.875, 10516149.508805646, 10516532.435374403, 10517264.886504326, 10517309.292754723, 10517476.197466258, 10517524.983925747, 10517799.686191382, 10518108.290101342, 10518271.923812717, 10518278.666034855, 10518328.125, 10518444.86934665, 10518456.25, 10518473.91966083, 10518507.63890476, 10518784.762578102, 10518875.0, 10518934.214062179, 10519051.73177473, 10519415.619546272, 10519490.625, 10519527.586500999, 10519833.553049905, 10519853.675982388, 10519945.973397931, 10520048.4375, 10520100.0, 10520151.5625, 10520228.347031847, 10520296.875, 10520639.0625, 10521129.613552455, 10521418.329467611, 10521501.122859132, 10521694.612694567, 10521771.875, 10521828.125, 10521898.267999338, 10521901.88668299, 10521989.880225847, 10522215.408411724, 10522635.546984302, 10522674.693704918, 10523011.390048498, 10523012.669971818, 10523041.09277611, 10523140.625, 10523650.84484027, 10523960.83120083, 10524042.1875, 10524602.888775393, 10524712.175884709, 10524950.0, 10524971.444731202, 10525031.061877184, 10525089.751980321, 10525106.242421927, 10525110.857655622, 10525144.961731173, 10525322.650202733, 10525451.114998944, 10525474.805014754, 10525701.5625, 10525829.797167743, 10525840.844747122, 10526059.375, 10526741.336383723, 10527000.31480076, 10527680.011616986, 10528377.25188248, 10529138.876709152, 10529759.267917223, 10529972.387630219, 10530955.719727358, 10530957.214467814, 10530993.56527851, 10531077.80992688, 10531087.5, 10532092.152025487, 10532106.25, 10532695.190069979, 10533458.073693888, 10533618.75, 10534616.848687869, 10538235.720128547, 10538653.339438573, 10539220.3125, 10539381.243627368, 10539966.934391994, 10540137.43389695, 10540221.057672303, 10540422.804722764, 10541346.326353518, 10541436.277074255, 10541656.438865451, 10541832.647711787, 10541917.1875, 10541918.34578402, 10542276.359836997, 10542920.379632425, 10543422.39986446, 10543555.402500225, 10543701.266023709, 10544264.0625, 10547641.538602227, 10548213.379428325, 10548364.0625, 10550911.705956047, 10551833.389805607, 10553363.54806009, 10554877.878032083, 10554896.38368563, 10555849.477871392, 10556729.280256838, 10558299.976257548, 10559231.682377763, 10559439.795863766, 10560590.625, 10562898.087113837, 10563259.375, 10565018.75, 10569195.00127642, 10569283.049505489, 10570811.374370925, 10571110.0184383, 10571235.9375, 10571504.6875, 10572345.4983744, 10573068.698155642, 10573175.88500721, 10574379.300563203, 10576391.076947419, 10577011.913454533, 10577587.5, 10579929.296032935, 10583729.22838007, 10583750.794121139, 10584079.6875, 10584296.168732084, 10585828.125, 10586569.249903036, 10587718.9402819, 10588705.378428208, 10589176.5625, 10589632.8125, 10590617.466637513, 10590993.340922348, 10597850.558379548, 10603888.874776198, 10605474.00037329, 10607461.923258916, 10609125.116006594, 10609637.793097973, 10610333.885601936, 10610381.25, 10613340.451503662, 10613441.450003872, 10613507.8125, 10614359.471337015, 10616076.5625, 10616275.157424161, 10617912.337543836, 10621019.707332818, 10626068.75, 10628932.8125, 10628955.728282465, 10635821.806139097, 10636143.241940131, 10636477.628695153, 10638858.57432681, 10639954.590235975, 10640215.562872635, 10640247.771624617, 10640277.183797965, 10640523.4375, 10640700.99206766, 10640904.238392225, 10641132.83828236, 10641793.913666481, 10641914.0625, 10642271.438386407, 10642741.107760664, 10643192.1875, 10643259.524461387, 10643401.369346337, 10643502.477909671, 10643553.329545306, 10643678.125, 10643892.918845583, 10644221.875, 10645184.294060687, 10645198.4375, 10645199.40707794, 10645740.899887808, 10646203.733668387, 10646886.380754948, 10646935.163208801, 10647179.6875, 10647223.4375, 10647456.375532454, 10647533.803945873, 10648540.820869312, 10648649.79864471, 10648717.1875, 10648936.611820698, 10648955.428561443, 10649186.70931618, 10649444.083555749, 10649851.269774774, 10650604.6875, 10651948.387976218, 10652054.6875, 10652319.469977543, 10652617.938714858, 10652842.1875, 10653747.508654952, 10653796.875, 10654584.375, 10655495.248135213, 10656440.66886916, 10661132.982941773, 10664846.875, 10664960.9375, 10666165.507601602, 10666345.3125, 10666602.813042704, 10669689.0625, 10670262.5, 10670650.0, 10673035.305970535, 10673509.60678924, 10673706.913281789, 10673747.334717399, 10673763.38418405, 10673793.75, 10673860.180859895, 10673946.259429792, 10674082.351068638, 10674091.55444722, 10674152.610029701, 10674374.352670327, 10674776.5625, 10674797.704203734, 10674902.96860154, 10675221.875, 10675499.334135748, 10675527.142911274, 10675601.339592872, 10675645.716538822, 10676284.411791604, 10676301.326067282, 10676328.194625223, 10676393.484814797, 10676880.723642077, 10677389.664996358, 10677900.0, 10678348.4375, 10678517.181832118, 10678638.074481089, 10678751.810032679, 10679107.8125, 10679943.71017738, 10680638.918457344, 10680847.387620358, 10680890.18705627, 10680977.646581892, 10680995.3125, 10681076.042028015, 10681418.064524213, 10682142.341635235, 10682771.331367115, 10682923.65057316, 10683232.8125, 10684787.269962879, 10685228.060201336, 10685443.75, 10685450.98591307, 10685584.645160459, 10685752.043370275, 10686705.881095737, 10686858.877659647, 10687263.34490428, 10687481.148172317, 10687500.203146404, 10687575.0, 10687596.107326277, 10687947.34581454, 10688170.3125, 10688334.786286565, 10688425.545792127, 10688426.5625, 10688948.4375, 10689346.274903307, 10689379.6875, 10689695.3125, 10689785.770251963, 10691396.495124474, 10691410.978647768, 10692126.576609157, 10693358.935458975, 10693396.875, 10693406.25, 10694793.848670382, 10695304.823615542, 10697430.786704404, 10703336.840006726, 10705071.968548365, 10705930.032229764, 10706000.879256187, 10709200.369754488, 10710090.948503492, 10710252.934194552, 10710363.649921188, 10710725.0, 10711376.340004157, 10713835.6931692, 10713923.60501891, 10714302.80289507, 10715512.266464237, 10715782.8125, 10716044.757067036, 10716087.5, 10718008.253912706, 10718978.687824264, 10719213.095462222, 10719716.555158066, 10719794.549788924, 10719943.677926222, 10720151.5625, 10720153.125, 10720261.47345052, 10720511.386163022, 10720538.845854402, 10720734.086599734, 10721475.11654164, 10722142.262554104, 10722143.185782349, 10722190.42680023, 10724159.747688925, 10724575.795287488, 10732489.0625, 10733127.82397868, 10741397.426768666, 10747309.375, 10749526.913849054, 10752388.21997602, 10753210.865985772, 10754154.621310959, 10754463.7793798, 10754618.09621816, 10754949.784810709, 10754968.49335754, 10755042.268323231, 10755576.218886584, 10756196.875, 10756206.711190647, 10756488.621423619, 10756522.932825796, 10756617.1875, 10756714.0625, 10756747.937753871, 10756837.5, 10756989.464376766, 10757076.710423617, 10757524.966566794, 10757583.333568813, 10757703.125, 10757707.98634453, 10757742.240031134, 10757752.823193366, 10757843.741704162, 10757998.4375, 10758057.93728295, 10758156.630203992, 10758321.875, 10758358.032405572, 10758421.179028733, 10758454.147284376, 10758549.863987554, 10758722.692860752, 10758780.467815757, 10758801.5625, 10758846.710698185, 10759122.979093397, 10759159.3257026, 10759193.450993676, 10759209.375, 10759393.379176708, 10759427.494287046, 10759447.782515857, 10759481.71168853, 10759619.299249444, 10759625.0, 10759676.86241383, 10759754.6875, 10759762.5, 10759793.698783224, 10759828.331783192, 10759894.825589562, 10760133.3755285, 10760176.559233742, 10760331.599498767, 10760333.642740862, 10760353.284527857, 10760353.297595251, 10760432.474718235, 10760463.061902365, 10760524.941945825, 10760619.22995151, 10760669.756657759, 10760707.8125, 10760815.625, 10760825.0, 10761028.085016355, 10761118.253666306, 10761451.496676907, 10761457.8125, 10761474.599404836, 10761525.0, 10761536.513779743, 10761784.375, 10761789.235882614, 10761799.290881492, 10761868.75, 10762087.032105206, 10762210.9375, 10762477.687664228, 10762699.989241177, 10762975.216938315, 10763258.679012554, 10763273.30984815, 10763308.631946066, 10763322.34611979, 10763503.551298328, 10763526.5625, 10763543.75, 10763817.1875, 10764060.9375, 10764798.4375, 10765460.253307085, 10766417.07176678, 10766818.75, 10766879.674482087, 10767492.1875, 10768074.516974112, 10768255.015496867, 10768269.71437978, 10769918.4171519, 10770094.024647469, 10770240.466127306, 10770437.427791802, 10770444.445772035, 10770447.806313183, 10771004.6875, 10771421.875, 10771997.462573709, 10772850.82788004, 10775237.5, 10777103.122483341, 10777258.976896806, 10777398.4375, 10777450.534425132, 10777502.988385392, 10777812.675832909, 10778009.375, 10778053.963203777, 10778165.328467762, 10778327.005240362, 10778379.244426733, 10778397.361460727, 10778475.775453523, 10778735.676094342, 10778901.959767321, 10778928.581447005, 10778948.4375, 10779030.582165867, 10779135.9375, 10779149.767053263, 10779229.46019775, 10779265.676378228, 10779583.550910791, 10779620.716497632, 10779742.35633039, 10779775.0, 10779876.5625, 10780129.529184656, 10780254.110221537, 10780371.874144442, 10780666.474087775, 10780843.75, 10780916.665711792, 10780965.209429001, 10780996.875, 10781531.156159047, 10782324.839899395, 10782425.69720654, 10782540.625, 10782751.5625, 10782835.9375, 10783103.2860697, 10783316.480260553, 10783345.3125, 10783389.0625, 10783998.370861286, 10784009.375, 10784809.114400461, 10784948.5696376, 10785435.643439418, 10785437.341467805, 10785889.460843492, 10786088.617610184, 10786170.269653184, 10786944.340345126, 10787294.376731873, 10788440.625, 10788547.382181026, 10788943.012743779, 10790233.283826418, 10790428.125, 10790756.956307435, 10791001.885407034, 10791416.454855898, 10791502.54647239, 10791831.94272475, 10792463.073717568, 10793065.840581335, 10793235.9375, 10793809.375, 10794005.390588885, 10794606.25, 10794912.216607163, 10795652.764456322, 10795784.274911132, 10795840.066050822, 10796066.426355137, 10797249.749914654, 10797294.112576993, 10797566.274424048, 10797681.63745101, 10798051.5625, 10798684.361923331, 10798809.725619938, 10799144.3579909, 10799145.3125, 10799277.155553006, 10799283.837430723, 10799533.04189857, 10799546.711257078, 10799557.58013075, 10799639.530188657, 10799701.545614954, 10800634.484951524, 10800845.3125, 10801220.364927685, 10801367.926803162, 10801476.624474933, 10801629.287985772, 10801704.603868255, 10801843.595927496, 10802043.2543004, 10802197.99268845, 10802213.545855138, 10802221.605819376, 10802341.894143114, 10802453.358197158, 10802509.375, 10802767.1875, 10802776.5625, 10802964.904273259, 10803395.3125, 10803407.8125, 10803483.969933325, 10803559.23132475, 10803909.375, 10803918.81498135, 10803932.248319613, 10804131.731354, 10804309.540151969, 10804365.625, 10804391.060326707, 10804511.50710962, 10804525.067940217, 10804554.6875, 10805035.9375, 10805298.87411627, 10805302.887563588, 10805313.590300608, ...], [108.52460157910635, 59.22370885237692, 173.55098724352302, 5.766510718784112, 43.241743031982075, 33.458959922333065, 33.45779694016243, 77.23960407034019, 38.14998744222602, 74.63422626703708, 22.381135998352683, 35.40176800922822, 85.43196864191079, 5.372008842330948, 53.3548737731087, 104.85218580574173, 5.320087224904479, 24.42815888163751, 31.319258223850266, 15.177870304586056, 36.48064114405836, 54.664832389322726, 13.10859143606598, 12.027470520064648, 66.00273370519756, 29.73829401746506, 36.00708964920344, 15.575950351166991, 19.821115665950114, 15.448274081148869, 14.47454412198661, 70.78259355092584, 84.42838969117945, 13.736323091110394, 5.626394168029345, 45.81577295370411, 13.219800569003484, 8.126464845472604, 68.61069528961535, 57.94338534596851, 115.63911039524294, 13.323019304139423, 24.478796315333284, 58.05652177828851, 73.93805659519319, 127.29878014423664, 42.36979571172692, 36.33163189244245, 9.049670942029325, 5.854660917351251, 28.475386965443576, 20.184925974219734, 57.64244301008475, 29.16823162851133, 43.34639127012498, 9.048837493650655, 74.36681172454068, 14.64208222888217, 47.38831751803983, 39.152475995472656, 47.366166641614, 25.823404861137757, 19.152645866755527, 5.649066571469662, 38.22605470226282, 96.71363393487702, 9.196298986278336, 60.85658826034275, 49.01837549757931, 16.46407102298704, 46.94914043792413, 13.2346119817134, 7.7916972625389604, 30.36614637452125, 46.400069767202766, 35.265241121956564, 34.60580960281435, 41.21287703152029, 18.497713663960248, 25.331937197182526, 98.74561572410268, 46.755314177130664, 75.63330288147309, 15.812551094813157, 34.2186913626604, 74.37983493476082, 5.0437560334813405, 28.55609586290191, 11.525764954071654, 7.96576095666785, 14.013574339062014, 72.03392266834916, 45.934308894597194, 16.07209346387354, 45.349464825050084, 5.820911783749262, 13.124900050766325, 50.10748475602924, 81.21726748713485, 8.80934807298557, 114.31050942727342, 11.569486936727168, 25.979167097848705, 23.186227546321692, 9.621412070121671, 113.64248746331876, 76.68831569856945, 54.87007613000088, 22.270346623107145, 16.87819593005939, 54.752094755043785, 39.102130635634936, 53.116160145431515, 36.505141148095895, 6.272475842705629, 39.9229498915092, 32.97064600581593, 33.64966046835067, 30.50460353045912, 26.42881141831836, 7.587175604969061, 10.006507878814475, 17.438094861599573, 5.23086918420176, 93.18710629120093, 18.660906030250995, 20.921044541504386, 35.83472680637263, 52.4185848241831, 5.2232796269652475, 28.20237493715247, 77.9547069728485, 6.899609859098695, 8.951247077095683, 7.116008156286172, 51.461906112389975, 62.46171322253765, 38.39043081921493, 8.669580117705058, 10.768029189547887, 22.791331229824987, 56.5497815114306, 13.510985669831403, 5.658468291555851, 71.99274748326953, 8.245452040781483, 22.305494033311778, 70.23775702575172, 19.835112894446105, 15.94362949071175, 58.684370168962, 50.12406040519656, 7.069028672475798, 12.696927912064524, 52.82161798727714, 84.55771125379448, 36.842940837053355, 10.942626106903681, 52.61079257181564, 37.473072416110654, 49.935391375866104, 65.54763288840336, 22.193681094098594, 54.805725600349525, 84.02303289839881, 59.44201018018907, 88.13351660446675, 64.02272638190851, 68.66183610910734, 42.36166199089818, 16.301549674326765, 95.20072893031401, 32.44438850245484, 6.782679998875598, 194.12774379761328, 32.22425151650461, 126.33107586031716, 63.07547494358097, 39.352430317480895, 119.67889297740987, 40.897131437172355, 13.122888861615406, 37.454164705523326, 13.151154107945382, 106.74465394886384, 16.42253324126507, 53.51883033411065, 126.5300235958519, 29.635895466266987, 21.2831743505837, 115.84873416605801, 34.468551631374126, 40.86966178224167, 27.645297592129072, 14.84957008653827, 38.72146148290602, 8.954025694167132, 19.406532289040236, 9.681780736429342, 19.448003001304333, 10.222934570931905, 49.24556254536225, 32.97388102792341, 40.889188412629515, 29.58948202264194, 198.75989856268785, 20.163691273381453, 28.862652091337182, 39.82602732210457, 83.71077481964738, 42.34228521101762, 73.82003530556538, 38.030138299128495, 17.247976407462414, 14.553586955174854, 41.510176440058444, 44.64052737776875, 25.086550680316122, 5.648584930960681, 24.12246664889214, 11.124596882086458, 16.128485227626744, 19.641667870718468, 69.1741754156992, 55.256060489245336, 97.6856433557939, 8.5672526606093, 76.64076913418822, 18.994641209732, 73.61588574923799, 29.55377395767689, 112.05204732189645, 90.56230879578497, 6.09911243242436, 11.32327178509252, 38.75413852958183, 98.0249192466966, 23.0914520628803, 15.66555308020595, 6.218832090086105, 23.998735046259682, 150.5551199383712, 8.367803859827564, 58.41176821157862, 8.793178280824499, 68.80686013300505, 56.05994960411551, 8.963323266571404, 55.39537884586722, 7.905230737255148, 11.449039788146825, 71.24348584194072, 6.301871288083628, 22.3896696351769, 47.51344589059935, 18.742146291950192, 55.15876411476622, 17.263607577751603, 18.44898599538028, 19.121648674950688, 20.433863149695004, 8.004226488496323, 74.83132030694337, 9.922281048586461, 12.984858739345514, 29.594377576246725, 8.19557319141193, 166.67863546355414, 29.651656572107598, 15.120186778418752, 49.25750178294757, 6.691401233354516, 17.41842599112665, 78.90010605770149, 5.7480478079493516, 6.223177026452328, 59.51952047952729, 42.907968665379585, 93.77174473774045, 5.147660755182135, 51.64709932143238, 31.735633611659516, 41.669568560131594, 27.434943939162004, 34.38035646055114, 99.75912843015927, 7.122251995307432, 90.86401214441, 17.808492940368968, 63.919361930943545, 78.19956472224354, 37.11924603370487, 20.004135881731635, 68.2001063507879, 23.13364160455574, 10.40884011827391, 10.48196602007968, 20.26326291880696, 72.47765089808424, 39.93388382397355, 35.24280368786511, 5.176917182682368, 17.882721515673396, 10.441735157365475, 35.95647432247522, 31.2883524955803, 110.80604007655025, 35.53933491277598, 38.61700994557694, 5.044743451990951, 9.310034522924358, 29.433088706939408, 14.583152316172324, 40.825550722464996, 21.973944897028908, 43.18723704996745, 9.004556613701414, 35.9205275859001, 168.26224371691205, 10.950295902408921, 13.7615568714067, 7.967326722887249, 41.698073291482686, 144.0568295666872, 61.58656127220149, 117.1559732191269, 21.081258590967817, 14.707445452610688, 27.26065322991156, 28.214773753948187, 14.759784127846654, 64.44889083008243, 82.49061024969939, 25.875107266229378, 49.01120417552309, 28.56966448925759, 69.96842180899779, 35.5776741336449, 43.33194060089194, 106.23255425901698, 52.498196062699556, 9.41150197381341, 24.043686916202347, 12.477750089178723, 103.71595236423371, 43.38830843642697, 71.72008424984162, 15.978813647712666, 20.122201164003354, 14.885435306887077, 6.3257942693819365, 15.036222211766221, 8.063358230209081, 8.534275188692146, 24.897494331191595, 10.062536043161076, 20.15582322577853, 45.40868488501602, 77.71059557118747, 74.39043517429945, 26.617019184710905, 63.21864022146269, 14.390058058420047, 80.20827708838945, 9.79645678646402, 73.00122779808612, 8.198398529089264, 60.19433564543146, 67.85497349136813, 25.75533268228308, 61.11542253288549, 15.711216344522294, 71.874589676862, 15.491830766768489, 6.637667510435476, 28.92796444735396, 12.01705355973613, 52.88350115642773, 67.17295776121962, 6.770919426877521, 51.00738194377173, 6.815469099166381, 30.458863000655477, 5.295869872192549, 9.685289605787016, 67.41256563639122, 33.110682859042555, 8.660539652268385, 15.241909739042569, 10.947611517315806, 9.525105675661148, 5.657668543982739, 18.60199281053965, 26.987382708637487, 44.11610880277775, 14.243193873874677, 9.996180354153994, 53.66770488646088, 121.45492395001888, 36.56782410245038, 27.533408297482637, 60.23527143491708, 6.979306107871295, 93.87389225857316, 102.21261742741498, 9.28078372591287, 28.190529706714702, 15.51708232862574, 35.982849369701086, 92.59607681121582, 13.944133233035046, 9.277726537421383, 58.459780744065945, 69.75019909013126, 22.813146805138725, 5.761286543367222, 16.744961593829434, 13.711537641682567, 36.46247624176388, 46.88749079695523, 6.564659645888798, 6.093190061803259, 5.742078386515019, 33.83464420057823, 114.51889816500547, 66.46417887956562, 11.9754287399768, 25.511854911209504, 16.65785845839633, 55.50186909780881, 73.13853760779749, 8.378168168004496, 13.209444086531569, 43.10923463826922, 100.77075514972402, 55.68710774563061, 12.114001595524602, 8.669993997540464, 74.79755245097473, 85.18159656056206, 82.26471063276006, 9.526475523746642, 73.92342362681457, 61.82161618641091, 7.102147829158884, 13.54908906662812, 51.139247469619114, 12.810225108856393, 156.99674536889464, 36.64181343295872, 10.872714042702295, 9.621434412058335, 8.77216114932734, 5.920763068257567, 31.463254588076172, 13.889829038596714, 9.745804651904573, 15.631513814359153, 7.781664847010099, 130.9867936640793, 19.565745132418744, 36.319779388532154, 101.81115655399468, 30.061265263119367, 23.447513407022512, 48.544462702794185, 141.36409244725354, 14.269883457973998, 25.024341852018722, 11.115882410864092, 58.32835844028165, 10.620389107705929, 16.531424039929977, 13.47216533750705, 17.31908386171326, 48.83156437895565, 11.303563273158538, 15.850904871742884, 76.16408588122913, 25.990438928892576, 16.29445595988124, 16.339774200713475, 18.434581131638957, 87.6731723904381, 126.15976937761623, 31.766445637657426, 42.15359250577588, 59.81188838313452, 54.770594663942255, 57.670428695279796, 50.90795268715448, 17.61357703911058, 66.99676288203689, 83.55521537093355, 16.04019665052132, 64.0811533876715, 6.435259449392104, 5.239101969230089, 40.699107542012314, 29.463911042485577, 5.938850750447717, 24.36879024281204, 27.28186128266356, 17.448570379152684, 39.71745225769284, 88.17170532892969, 5.54979128837287, 26.113507745039428, 30.442000110023656, 73.75187653576701, 5.328258879931217, 71.23466033246476, 5.344227339475435, 9.818482147120015, 28.983686627461523, 58.78235524302462, 37.33132244157742, 10.245233245220556, 58.30542996883547, 63.312019689626894, 6.927274462183356, 7.826296070203298, 49.83160440387434, 70.56835186683527, 10.437768351788282, 57.256274874888774, 53.11749239547216, 28.063436339705603, 5.480635838709198, 10.039396509791379, 90.92391625133581, 23.127780262506494, 71.0386301137353, 53.421425224568324, 24.958839435021257, 6.297613997828987, 16.916804576493025, 8.658910140627652, 33.312358658198676, 89.68975526157399, 311.5989469547196, 78.75219115922414, 6.020369968348701, 10.572356848402595, 8.540965846721386, 24.663922930476318, 63.008527128831176, 29.492561266220253, 8.971187244286028, 12.646575412634856, 39.45425814507302, 139.59775003140064, 44.76053392746773, 17.26422132093677, 5.8281949423701445, 18.44500067481301, 46.23206398019767, 45.06096336939849, 11.593971962364687, 22.45072445334799, 100.5881894712385, 25.29931001669499, 12.138455000824667, 6.977670800920861, 13.669368936933541, 16.190199566101864, 13.355176328694816, 33.83783975601432, 133.65789535697814, 5.148534423798974, 60.48787792060578, 20.676846188320773, 113.80880587084465, 112.67722999749175, 59.592762009417825, 49.65824969996271, 114.86974674089831, 39.97491861161755, 6.9907443326702685, 25.56562827440156, 13.30402602333451, 5.8973190569872935, 40.946301625534026, 14.58330626581087, 14.709881000847375, 19.983955638101644, 104.07290483494856, 71.29638786164676, 8.891544374687124, 65.15599060032467, 276.6573594153528, 38.79251968159253, 59.21617313718837, 13.50306490853391, 30.647947920406104, 121.0515172599654, 11.369647171107488, 25.218755817337335, 103.62467318870365, 23.17512492395686, 53.86565878321913, 5.3142255177920825, 128.2962918028637, 27.020160670218182, 32.08586001498148, 20.613667334781844, 152.832464766674, 5.363220294627183, 21.189225890814843, 87.04430432696869, 111.3581454072969, 106.33674735157445, 16.21250107196777, 43.921512834935996, 11.907071554042725, 42.77934849436532, 59.4431283171281, 7.310758671715964, 86.66792124302052, 38.91538058474484, 14.097539824539382, 29.244293425159874, 145.24386564755235, 9.28987615829385, 30.235234844253476, 27.60695517851351, 5.871736372647976, 37.93132143820537, 5.996555338539459, 58.64417388444511, 64.69180576149031, 27.312918647222407, 15.11139668728761, 24.289378571828536, 54.60403914991534, 154.1193667244385, 127.35316901875001, 96.73510803563425, 23.599196009667388, 73.73419519816389, 64.55008867939753, 41.40539517562822, 13.965599619719033, 78.60457274471153, 40.11876400616353, 32.1687827792378, 118.55024235619038, 78.72072622170901, 82.51443421682364, 245.2873565922448, 52.61201095341314, 75.45810992774372, 23.26027732770583, 8.838104938661854, 62.10471000665713, 10.147029030932286, 59.08174704956916, 136.27765134668118, 245.5671106420483, 60.03188107200919, 74.89258853039962, 11.823994617183986, 75.2957712076587, 14.110918121793445, 139.46880905523665, 24.34777135346934, 18.291471975138705, 17.87265295733971, 31.507514207380027, 63.16742066845734, 14.919950030887074, 11.369729163169364, 15.977120552738665, 69.3446381560353, 6.755582248469952, 25.970671262053024, 7.799799302779115, 10.505852608743812, 316.8516621675394, 30.183031158183923, 14.095355070187919, 15.790824436996513, 15.56345457955931, 45.30008760003044, 131.51576828320697, 32.28369267228956, 33.5065383709314, 15.467769262330336, 60.30770853829298, 20.761675405603725, 16.081969713471388, 102.66733636661152, 29.635192667974383, 7.432745780548798, 107.0615472543129, 63.6219105334676, 51.14993386270521, 38.48447229697216, 10.107957493323008, 24.405994856568938, 40.563382510312735, 130.69009264327227, 25.030266306749283, 33.849958981198974, 42.82853999675909, 293.18959522799616, 62.842785032664466, 37.13698920085845, 25.60874940680379, 70.22828690918429, 30.27210936390712, 5.069152959524089, 8.98548464159847, 51.187868182945394, 55.17999864247351, 11.285518796738568, 6.284550130080968, 6.6744085608716395, 12.908227863277443, 8.336674652709789, 124.2846805176032, 61.07468021265221, 29.92573611723632, 37.62292440889792, 25.292721544426428, 10.53874583644274, 83.23477378213549, 69.7620563476893, 5.333618493485493, 23.028875372871802, 32.68399854549502, 24.638554204215563, 74.90238433369326, 20.957393078505664, 52.607880138907895, 13.460953793492735, 19.033002546307905, 33.3414001793097, 27.28938985406767, 19.219681134981553, 9.271195301310936, 61.21275886192224, 72.01347210391887, 25.565308702898108, 70.69909029801332, 18.07611078866319, 6.231435963557953, 11.314889640683353, 53.329662496420625, 20.875553159599708, 25.14444780554864, 15.04350520667583, 58.07409888751207, 62.33187128534005, 36.20548918210703, 12.115613828843452, 142.2628366325999, 5.63378188847411, 52.22608378540289, 41.04324994195812, 65.43500258659776, 40.940923281886235, 20.08495285606072, 132.47732515795508, 24.320837253575966, 38.23601600515155, 22.93658291218857, 119.70254047696729, 159.12288478429892, 87.74459181524882, 103.23638164896781, 29.440319711930343, 45.69999736120949, 34.46692706453454, 60.10106868080525, 9.696017212347538, 6.510532286133384, 27.879976178139298, 48.60255410600751, 72.29780862444586, 11.410762419492665, 15.145586462019688, 62.99052170205353, 11.114764586306762, 37.590475966090175, 22.402786654229892, 21.964596408991472, 30.37778579387502, 136.36012270338585, 19.738149705737715, 17.240292030219667, 26.098799342384197, 8.772251109899841, 19.07491803296058, 35.51122480815267, 55.0131218470087, 21.918299519317266, 50.12010166101682, 58.041657948833944, 120.01866000522104, 28.48731590520348, 8.849546179516892, 6.022535947152977, 8.546810054975612, 107.22237691507374, 42.30393134727591, 43.34659815938356, 99.46876546814376, 174.01032484957682, 38.66309040153077, 15.792948012776844, 8.044847658070196, 7.820412986337032, 18.619274862235343, 178.8058849264687, 19.451849703556817, 15.586537607140526, 11.40864418701755, 5.123348200979796, 17.625187569614575, 126.44447181823377, 23.629476718782257, 20.953562184205513, 129.062494914393, 80.37729784653628, 52.54827782708992, 27.757565379530533, 63.7708469333148, 97.38787156676023, 47.72002855328582, 22.545545216191652, 48.151316569348815, 7.825872685844468, 47.566030987313354, 15.646280179691002, 26.474225760549515, 52.19658574871986, 30.0583274149053, 68.14520087527796, 52.149314702898664, 28.313764315918355, 15.838298044632586, 19.738019634317613, 26.233821602934547, 12.706271637290772, 7.7830104343007225, 35.64221784306916, 76.74667851175718, 118.0249201284924, 39.52224713777491, 28.816200479686643, 97.4403290312955, 47.261704449144645, 124.29255043733482, 31.79403469267267, 5.244781093989562, 35.446980896123605, 8.046659037235962, 95.60462524593663, 85.73530167919526, 83.49746440010355, 214.1368302210126, 43.80664652062156, 27.173443319392362, 26.56924157703613, 6.024832001812231, 28.77880221244071, 61.729193803656024, 17.780618842683005, 41.038814176959185, 49.12842059484402, 141.27234417188933, 18.124701988175254, 66.81226438785895, 44.66011698257484, 66.1430072544087, 9.484640937924349, 67.17484756167288, 15.42455986315874, 56.80825477628274, 112.59528477010153, 13.484706626118317, 17.188530485608755, 48.40257949907029, 100.13546008414588, 9.691533646003705, 17.02268698683156, 93.45212732669333, 139.8604856299287, 37.77891239751036, 7.061534429936592, 39.082193696301296, 234.23534091998326, 39.432654410922034, 37.71878676696073, 37.450521753701125, 67.24743079945912, 303.5410133021797, 78.53162387036772, 27.486731732856313, 5.613996810508877, 86.20631803289042, 56.19825414043298, 13.266766756290362, 46.97585063869754, 43.935198496739524, 14.595501425643016, 7.54634053898532, 5.1819234725242325, 83.34380918553799, 33.62988788018269, 82.68945806846791, 11.389161529899301, 55.363646297419976, 52.22645985479009, 58.9329584754066, 36.650631528825336, 106.59130248065772, 24.26742209092307, 32.543222837622714, 42.55786010511769, 227.95888036000645, 80.58706198043211, 5.679017199583329, 11.06138846874347, 5.4215323299813285, 8.648357389785415, 30.388299391317315, 36.60642700853813, 91.83080913672647, 156.24249957341092, 49.22330718865061, 223.59025426102139, 8.465050997350607, 61.324564486253074, 20.743950682308498, 24.02830166502205, 17.696275824846282, 60.130618805017775, 69.02770722005152, 52.28189421395647, 8.69701408798795, 562.7266757047304, 94.23246091855428, 288.835987052371, 8.234348473976535, 8.899633614929243, 12.663540424017667, 10.7580824022546, 79.57956481196764, 30.67204016816256, 6.8434044707803245, 58.71486412417752, 136.9042707377138, 11.723855914655577, 75.71886938668554, 45.164339521163946, 68.3842526911784, 26.480946739636536, 8.411730552223718, 82.87152570651027, 38.099001958136085, 7.781629667304333, 22.591733594961887, 11.304030144288488, 150.5987691167362, 92.79747558275606, 18.779057560934277, 15.183110278321475, 22.55769973720757, 37.81626522792114, 25.812741008814715, 10.432240917295825, 22.061885964674364, 21.32865040232396, 24.152564454777455, 355.586742938282, 40.69652602129837, 73.00890800077627, 33.382129610977216, 54.502202583388396, 40.99214384442129, 69.93691806103269, 31.739997809969037, 63.37743213543384, 8.21203323051772, 102.5195676457044, 23.65405631572999, 25.91221607986762, 157.8363789033573, 7.165552526220375, 41.08147290439313, 31.079411136777743, 7.279692138414701, 14.98741110052352, 66.6816591697647, 32.17948083750707, 19.551751965275354, 56.960531152432296, 18.926723908116358, ...])
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);
([7699269.907019961, 7941386.886183376, 8955431.25, 8982414.96215069, 9008801.5625, 9045811.4561292, 9050843.75, 9112088.855233068, 9117833.528794963, 9123134.375, 9129749.584640376, 9177512.5, 9191993.262951085, 9193235.227529464, 9195295.3125, 9221829.601551984, 9254036.848658307, 9258646.626244485, 9259382.8125, 9259653.185660092, 9270396.83662507, 9285781.25, 9286569.731132988, 9292031.758297928, 9293781.25, 9302087.5, 9304640.363314828, 9306712.657057228, 9340647.751793709, 9346262.626892125, 9357923.309343176, 9374781.482126221, 9376037.5, 9380416.830765251, 9404909.596100215, 9405234.375, 9415824.460742826, 9419496.559434237, 9426010.9375, 9426251.946588103, 9437657.122573236, 9438465.123894483, 9440161.068332957, 9441009.375, 9441612.5, 9475911.142382525, 9492536.61394871, 9513693.3018957, 9534805.896892294, 9560891.16007076, 9570456.247480916, 9577596.233037276, 9577618.75, 9583695.3125, 9583700.0, 9615851.20828506, 9616270.3125, 9624510.856659295, 9631292.694103425, 9649750.0, 9650926.5625, 9661964.089987578, 9695160.016662857, 9698869.36617058, 9736982.782653129, 9738554.6875, 9775490.460776731, 9780098.926163925, 9781900.586607032, 9783012.849311749, 9785126.5625, 9786914.576520642, 9790372.367643194, 9792046.183723876, 9792729.901772205, 9793557.8125, 9794258.123185493, 9807720.25148839, 9813751.261918066, 9828817.00196362, 9837895.751053285, 9843350.882652055, 9849923.4375, 9855893.961182712, 9859890.625, 9866947.840487454, 9867851.693357185, 9868940.625, 9869986.17806507, 9870599.339705639, 9870601.295700768, 9874756.25, 9874887.5, 9875055.278010754, 9876512.5, 9877098.530742582, 9877935.362375002, 9878179.6875, 9879362.13053042, 9879399.310529873, 9880190.625, 9880375.265374435, 9881254.543992748, 9882010.767226033, 9882997.199159386, 9883457.467461746, 9883584.375, 9884273.4375, 9884356.683374617, 9884363.1174525, 9884392.1875, 9884428.125, 9885104.104746202, 9885110.9375, 9886245.354157228, 9887023.546685176, 9887385.9375, 9887678.125, 9888402.154628152, 9888567.5761409, 9892873.392871296, 9893794.45335275, 9894530.005811082, 9895008.856778499, 9895352.950656744, 9897110.95657813, 9897385.31218392, 9897859.375, 9898112.5, 9898649.19948603, 9899561.909096036, 9908312.5, 9909619.395536887, 9912168.263371352, 9912199.979251456, 9912281.25, 9915310.27241966, 9917806.79247993, 9918013.160247581, 9918701.319520941, 9918812.120986585, 9919187.497693695, 9919274.566165477, 9919553.901022637, 9920065.155669706, 9920545.233913332, 9921490.202756746, 9921877.697276523, 9923357.128514685, 9927143.99021874, 9927900.0, 9931203.125, 9935448.234248394, 9969463.31550605, 9969479.6875, 9974546.846638199, 9976807.413072256, 9979210.815773772, 9979228.125, 9982538.491019016, 9985757.8125, 9990572.836292569, 9991302.57981088, 9993178.125, 9993337.706431445, 10020030.828759858, 10020878.125, 10024418.75, 10047232.794326028, 10047893.75, 10048642.543469863, 10048924.641341116, 10049998.4375, 10050014.15778622, 10050071.875, 10050115.011066006, 10050757.8125, 10050809.375, 10051523.4375, 10052631.25, 10053250.0, 10057324.424106484, 10057662.5, 10060600.997375045, 10060696.64881349, 10061172.21594976, 10062239.0625, 10063893.21999824, 10066740.625, 10068107.291195244, 10070167.22757829, 10076729.412384326, 10076918.75, 10076946.109770669, 10078104.663167693, 10083456.230219906, 10085133.892218877, 10094672.96621414, 10095001.949713888, 10107471.475078188, 10123808.707185453, 10125521.875, 10127390.397815572, 10135717.1875, 10142040.625, 10147476.56606525, 10148983.730539337, 10149529.6875, 10149894.556160858, 10151112.5, 10153199.001752462, 10154937.5, 10157578.125, 10158800.497031305, 10163488.956859807, 10171640.625, 10172970.3125, 10174424.226478662, 10177027.170419844, 10177214.375520444, 10178101.560509458, 10179242.46757024, 10181916.810431615, 10181950.471766453, 10182826.331350172, 10192415.190501535, 10194469.245550502, 10195456.25, 10196741.151321853, 10196835.9375, 10197405.296069272, 10197487.89879513, 10198217.1875, 10198982.917743593, 10200590.746614361, 10201628.125, 10202159.983789096, 10202551.987799637, 10205103.302820975, 10205179.294846274, 10213413.781669635, 10219041.223582113, 10220145.463005748, 10220466.881903796, 10221483.661595719, 10221987.5, 10222325.0, 10222482.342559531, 10222583.757132033, 10225280.451812161, 10225842.383791303, 10225924.091671756, 10226219.019594047, 10228884.121710446, 10229023.4375, 10229384.124892535, 10229475.0, 10229891.124794671, 10230835.06651882, 10233177.349143524, 10233188.449329471, 10234516.612468608, 10236830.292889915, 10236906.87488399, 10236914.995508283, 10239644.753460253, 10239995.136351792, 10241307.519049682, 10243917.1875, 10244979.733601373, 10250673.894328939, 10252018.377768978, 10253852.535184432, 10264982.8125, 10271852.192299496, 10273274.643442908, 10273454.6875, 10276409.375, 10278114.726677079, 10278897.660877518, 10279165.205422986, 10279247.636263825, 10279495.3125, 10279860.879919631, 10281404.6875, 10282077.151470115, 10283245.315543745, 10284198.4375, 10284452.15461481, 10285015.625, 10285165.625, 10285864.0625, 10286143.04506117, 10286428.12696864, 10286596.503752079, 10286824.48564677, 10287119.855966449, 10287264.992194816, 10288136.798482321, 10288515.602019735, 10289193.819914078, 10290273.926853906, 10290277.113934375, 10290931.53407832, 10292958.862634063, 10293617.897650454, 10297206.776251836, 10297505.757655753, 10297625.0, 10297722.064004168, 10300126.53711972, 10300260.9375, 10302345.215192711, 10303896.830436192, 10304518.40633541, 10309209.195057575, 10311432.398889506, 10317493.653171634, 10319964.0625, 10325978.008453451, 10327498.08916952, 10328344.655711599, 10330246.277771201, 10337300.0, 10337406.25, 10338110.621845983, 10340304.145199412, 10340359.31220463, 10342654.620207243, 10344185.921639426, 10353785.888991008, 10354824.458164709, 10358008.2714867, 10359374.120893717, 10361885.754615432, 10363059.375, 10368243.75, 10369018.75, 10369181.09643365, 10377627.816824246, 10384694.526801439, 10384857.905734025, 10384879.410092719, 10392385.095490042, 10393858.497348059, 10398571.875, 10404231.25, 10410641.255533926, 10418539.975639261, 10423014.047710098, 10424256.700124871, 10425312.60062941, 10425343.302608104, 10426225.440762151, 10426246.659768093, 10426625.75427209, 10426824.354612077, 10426920.3125, 10427085.64215159, 10427225.0, 10427312.01337522, 10427373.852678552, 10427581.097384486, 10427695.3125, 10428147.378151974, 10428804.6875, 10428843.5794454, 10429017.692581465, 10429026.410297057, 10429528.633035496, 10429640.496194074, 10429668.938276744, 10429684.375, 10429865.762260532, 10430102.46020986, 10431203.224543689, 10431606.75309454, 10432767.1875, 10434064.13062787, 10434093.787017655, 10434186.101783246, 10434554.942322722, 10434781.25, 10434843.904059038, 10435134.7658351, 10435618.75, 10436081.25, 10436299.08351077, 10436786.014142571, 10437435.81914196, 10440142.408030888, 10440150.762513513, 10442700.85145015, 10443560.047273451, 10449195.3125, 10450679.272030562, 10455527.25635688, 10456362.316513319, 10458796.850924294, 10461156.25, 10467035.30697594, 10471557.8125, 10477175.99267134, 10481757.861037849, 10482647.324539505, 10484040.564521864, 10492538.548049774, 10494127.250895448, 10499426.515062278, 10503584.375, 10511401.273662485, 10511887.435829578, 10516046.875, 10516149.508805646, 10516532.435374403, 10517264.886504326, 10517309.292754723, 10517476.197466258, 10517524.983925747, 10517799.686191382, 10518108.290101342, 10518271.923812717, 10518278.666034855, 10518328.125, 10518444.86934665, 10518456.25, 10518473.91966083, 10518507.63890476, 10518784.762578102, 10518875.0, 10518934.214062179, 10519051.73177473, 10519415.619546272, 10519490.625, 10519527.586500999, 10519833.553049905, 10519853.675982388, 10519945.973397931, 10520048.4375, 10520100.0, 10520151.5625, 10520228.347031847, 10520296.875, 10520639.0625, 10521129.613552455, 10521418.329467611, 10521501.122859132, 10521694.612694567, 10521771.875, 10521828.125, 10521898.267999338, 10521901.88668299, 10521989.880225847, 10522215.408411724, 10522635.546984302, 10522674.693704918, 10523011.390048498, 10523012.669971818, 10523041.09277611, 10523140.625, 10523650.84484027, 10523960.83120083, 10524042.1875, 10524602.888775393, 10524712.175884709, 10524950.0, 10524971.444731202, 10525031.061877184, 10525089.751980321, 10525106.242421927, 10525110.857655622, 10525144.961731173, 10525322.650202733, 10525451.114998944, 10525474.805014754, 10525701.5625, 10525829.797167743, 10525840.844747122, 10526059.375, 10526741.336383723, 10527000.31480076, 10527680.011616986, 10528377.25188248, 10529138.876709152, 10529759.267917223, 10529972.387630219, 10530955.719727358, 10530957.214467814, 10530993.56527851, 10531077.80992688, 10531087.5, 10532092.152025487, 10532106.25, 10532695.190069979, 10533458.073693888, 10533618.75, 10534616.848687869, 10538235.720128547, 10538653.339438573, 10539220.3125, 10539381.243627368, 10539966.934391994, 10540137.43389695, 10540221.057672303, 10540422.804722764, 10541346.326353518, 10541436.277074255, 10541656.438865451, 10541832.647711787, 10541917.1875, 10541918.34578402, 10542276.359836997, 10542920.379632425, 10543422.39986446, 10543555.402500225, 10543701.266023709, 10544264.0625, 10547641.538602227, 10548213.379428325, 10548364.0625, 10550911.705956047, 10551833.389805607, 10553363.54806009, 10554877.878032083, 10554896.38368563, 10555849.477871392, 10556729.280256838, 10558299.976257548, 10559231.682377763, 10559439.795863766, 10560590.625, 10562898.087113837, 10563259.375, 10565018.75, 10569195.00127642, 10569283.049505489, 10570811.374370925, 10571110.0184383, 10571235.9375, 10571504.6875, 10572345.4983744, 10573068.698155642, 10573175.88500721, 10574379.300563203, 10576391.076947419, 10577011.913454533, 10577587.5, 10579929.296032935, 10583729.22838007, 10583750.794121139, 10584079.6875, 10584296.168732084, 10585828.125, 10586569.249903036, 10587718.9402819, 10588705.378428208, 10589176.5625, 10589632.8125, 10590617.466637513, 10590993.340922348, 10597850.558379548, 10603888.874776198, 10605474.00037329, 10607461.923258916, 10609125.116006594, 10609637.793097973, 10610333.885601936, 10610381.25, 10613340.451503662, 10613441.450003872, 10613507.8125, 10614359.471337015, 10616076.5625, 10616275.157424161, 10617912.337543836, 10621019.707332818, 10626068.75, 10628932.8125, 10628955.728282465, 10635821.806139097, 10636143.241940131, 10636477.628695153, 10638858.57432681, 10639954.590235975, 10640215.562872635, 10640247.771624617, 10640277.183797965, 10640523.4375, 10640700.99206766, 10640904.238392225, 10641132.83828236, 10641793.913666481, 10641914.0625, 10642271.438386407, 10642741.107760664, 10643192.1875, 10643259.524461387, 10643401.369346337, 10643502.477909671, 10643553.329545306, 10643678.125, 10643892.918845583, 10644221.875, 10645184.294060687, 10645198.4375, 10645199.40707794, 10645740.899887808, 10646203.733668387, 10646886.380754948, 10646935.163208801, 10647179.6875, 10647223.4375, 10647456.375532454, 10647533.803945873, 10648540.820869312, 10648649.79864471, 10648717.1875, 10648936.611820698, 10648955.428561443, 10649186.70931618, 10649444.083555749, 10649851.269774774, 10650604.6875, 10651948.387976218, 10652054.6875, 10652319.469977543, 10652617.938714858, 10652842.1875, 10653747.508654952, 10653796.875, 10654584.375, 10655495.248135213, 10656440.66886916, 10661132.982941773, 10664846.875, 10664960.9375, 10666165.507601602, 10666345.3125, 10666602.813042704, 10669689.0625, 10670262.5, 10670650.0, 10673035.305970535, 10673509.60678924, 10673706.913281789, 10673747.334717399, 10673763.38418405, 10673793.75, 10673860.180859895, 10673946.259429792, 10674082.351068638, 10674091.55444722, 10674152.610029701, 10674374.352670327, 10674776.5625, 10674797.704203734, 10674902.96860154, 10675221.875, 10675499.334135748, 10675527.142911274, 10675601.339592872, 10675645.716538822, 10676284.411791604, 10676301.326067282, 10676328.194625223, 10676393.484814797, 10676880.723642077, 10677389.664996358, 10677900.0, 10678348.4375, 10678517.181832118, 10678638.074481089, 10678751.810032679, 10679107.8125, 10679943.71017738, 10680638.918457344, 10680847.387620358, 10680890.18705627, 10680977.646581892, 10680995.3125, 10681076.042028015, 10681418.064524213, 10682142.341635235, 10682771.331367115, 10682923.65057316, 10683232.8125, 10684787.269962879, 10685228.060201336, 10685443.75, 10685450.98591307, 10685584.645160459, 10685752.043370275, 10686705.881095737, 10686858.877659647, 10687263.34490428, 10687481.148172317, 10687500.203146404, 10687575.0, 10687596.107326277, 10687947.34581454, 10688170.3125, 10688334.786286565, 10688425.545792127, 10688426.5625, 10688948.4375, 10689346.274903307, 10689379.6875, 10689695.3125, 10689785.770251963, 10691396.495124474, 10691410.978647768, 10692126.576609157, 10693358.935458975, 10693396.875, 10693406.25, 10694793.848670382, 10695304.823615542, 10697430.786704404, 10703336.840006726, 10705071.968548365, 10705930.032229764, 10706000.879256187, 10709200.369754488, 10710090.948503492, 10710252.934194552, 10710363.649921188, 10710725.0, 10711376.340004157, 10713835.6931692, 10713923.60501891, 10714302.80289507, 10715512.266464237, 10715782.8125, 10716044.757067036, 10716087.5, 10718008.253912706, 10718978.687824264, 10719213.095462222, 10719716.555158066, 10719794.549788924, 10719943.677926222, 10720151.5625, 10720153.125, 10720261.47345052, 10720511.386163022, 10720538.845854402, 10720734.086599734, 10721475.11654164, 10722142.262554104, 10722143.185782349, 10722190.42680023, 10724159.747688925, 10724575.795287488, 10732489.0625, 10733127.82397868, 10741397.426768666, 10747309.375, 10749526.913849054, 10752388.21997602, 10753210.865985772, 10754154.621310959, 10754463.7793798, 10754618.09621816, 10754949.784810709, 10754968.49335754, 10755042.268323231, 10755576.218886584, 10756196.875, 10756206.711190647, 10756488.621423619, 10756522.932825796, 10756617.1875, 10756714.0625, 10756747.937753871, 10756837.5, 10756989.464376766, 10757076.710423617, 10757524.966566794, 10757583.333568813, 10757703.125, 10757707.98634453, 10757742.240031134, 10757752.823193366, 10757843.741704162, 10757998.4375, 10758057.93728295, 10758156.630203992, 10758321.875, 10758358.032405572, 10758421.179028733, 10758454.147284376, 10758549.863987554, 10758722.692860752, 10758780.467815757, 10758801.5625, 10758846.710698185, 10759122.979093397, 10759159.3257026, 10759193.450993676, 10759209.375, 10759393.379176708, 10759427.494287046, 10759447.782515857, 10759481.71168853, 10759619.299249444, 10759625.0, 10759676.86241383, 10759754.6875, 10759762.5, 10759793.698783224, 10759828.331783192, 10759894.825589562, 10760133.3755285, 10760176.559233742, 10760331.599498767, 10760333.642740862, 10760353.284527857, 10760353.297595251, 10760432.474718235, 10760463.061902365, 10760524.941945825, 10760619.22995151, 10760669.756657759, 10760707.8125, 10760815.625, 10760825.0, 10761028.085016355, 10761118.253666306, 10761451.496676907, 10761457.8125, 10761474.599404836, 10761525.0, 10761536.513779743, 10761784.375, 10761789.235882614, 10761799.290881492, 10761868.75, 10762087.032105206, 10762210.9375, 10762477.687664228, 10762699.989241177, 10762975.216938315, 10763258.679012554, 10763273.30984815, 10763308.631946066, 10763322.34611979, 10763503.551298328, 10763526.5625, 10763543.75, 10763817.1875, 10764060.9375, 10764798.4375, 10765460.253307085, 10766417.07176678, 10766818.75, 10766879.674482087, 10767492.1875, 10768074.516974112, 10768255.015496867, 10768269.71437978, 10769918.4171519, 10770094.024647469, 10770240.466127306, 10770437.427791802, 10770444.445772035, 10770447.806313183, 10771004.6875, 10771421.875, 10771997.462573709, 10772850.82788004, 10775237.5, 10777103.122483341, 10777258.976896806, 10777398.4375, 10777450.534425132, 10777502.988385392, 10777812.675832909, 10778009.375, 10778053.963203777, 10778165.328467762, 10778327.005240362, 10778379.244426733, 10778397.361460727, 10778475.775453523, 10778735.676094342, 10778901.959767321, 10778928.581447005, 10778948.4375, 10779030.582165867, 10779135.9375, 10779149.767053263, 10779229.46019775, 10779265.676378228, 10779583.550910791, 10779620.716497632, 10779742.35633039, 10779775.0, 10779876.5625, 10780129.529184656, 10780254.110221537, 10780371.874144442, 10780666.474087775, 10780843.75, 10780916.665711792, 10780965.209429001, 10780996.875, 10781531.156159047, 10782324.839899395, 10782425.69720654, 10782540.625, 10782751.5625, 10782835.9375, 10783103.2860697, 10783316.480260553, 10783345.3125, 10783389.0625, 10783998.370861286, 10784009.375, 10784809.114400461, 10784948.5696376, 10785435.643439418, 10785437.341467805, 10785889.460843492, 10786088.617610184, 10786170.269653184, 10786944.340345126, 10787294.376731873, 10788440.625, 10788547.382181026, 10788943.012743779, 10790233.283826418, 10790428.125, 10790756.956307435, 10791001.885407034, 10791416.454855898, 10791502.54647239, 10791831.94272475, 10792463.073717568, 10793065.840581335, 10793235.9375, 10793809.375, 10794005.390588885, 10794606.25, 10794912.216607163, 10795652.764456322, 10795784.274911132, 10795840.066050822, 10796066.426355137, 10797249.749914654, 10797294.112576993, 10797566.274424048, 10797681.63745101, 10798051.5625, 10798684.361923331, 10798809.725619938, 10799144.3579909, 10799145.3125, 10799277.155553006, 10799283.837430723, 10799533.04189857, 10799546.711257078, 10799557.58013075, 10799639.530188657, 10799701.545614954, 10800634.484951524, 10800845.3125, 10801220.364927685, 10801367.926803162, 10801476.624474933, 10801629.287985772, 10801704.603868255, 10801843.595927496, 10802043.2543004, 10802197.99268845, 10802213.545855138, 10802221.605819376, 10802341.894143114, 10802453.358197158, 10802509.375, 10802767.1875, 10802776.5625, 10802964.904273259, 10803395.3125, 10803407.8125, 10803483.969933325, 10803559.23132475, 10803909.375, 10803918.81498135, 10803932.248319613, 10804131.731354, 10804309.540151969, 10804365.625, 10804391.060326707, 10804511.50710962, 10804525.067940217, 10804554.6875, 10805035.9375, 10805298.87411627, 10805302.887563588, 10805313.590300608, ...], [108.52460157910635, 59.22370885237692, 173.55098724352302, 5.766510718784112, 43.241743031982075, 33.458959922333065, 33.45779694016243, 77.23960407034019, 38.14998744222602, 74.63422626703708, 22.381135998352683, 35.40176800922822, 85.43196864191079, 5.372008842330948, 53.3548737731087, 104.85218580574173, 5.320087224904479, 24.42815888163751, 31.319258223850266, 15.177870304586056, 36.48064114405836, 54.664832389322726, 13.10859143606598, 12.027470520064648, 66.00273370519756, 29.73829401746506, 36.00708964920344, 15.575950351166991, 19.821115665950114, 15.448274081148869, 14.47454412198661, 70.78259355092584, 84.42838969117945, 13.736323091110394, 5.626394168029345, 45.81577295370411, 13.219800569003484, 8.126464845472604, 68.61069528961535, 57.94338534596851, 115.63911039524294, 13.323019304139423, 24.478796315333284, 58.05652177828851, 73.93805659519319, 127.29878014423664, 42.36979571172692, 36.33163189244245, 9.049670942029325, 5.854660917351251, 28.475386965443576, 20.184925974219734, 57.64244301008475, 29.16823162851133, 43.34639127012498, 9.048837493650655, 74.36681172454068, 14.64208222888217, 47.38831751803983, 39.152475995472656, 47.366166641614, 25.823404861137757, 19.152645866755527, 5.649066571469662, 38.22605470226282, 96.71363393487702, 9.196298986278336, 60.85658826034275, 49.01837549757931, 16.46407102298704, 46.94914043792413, 13.2346119817134, 7.7916972625389604, 30.36614637452125, 46.400069767202766, 35.265241121956564, 34.60580960281435, 41.21287703152029, 18.497713663960248, 25.331937197182526, 98.74561572410268, 46.755314177130664, 75.63330288147309, 15.812551094813157, 34.2186913626604, 74.37983493476082, 5.0437560334813405, 28.55609586290191, 11.525764954071654, 7.96576095666785, 14.013574339062014, 72.03392266834916, 45.934308894597194, 16.07209346387354, 45.349464825050084, 5.820911783749262, 13.124900050766325, 50.10748475602924, 81.21726748713485, 8.80934807298557, 114.31050942727342, 11.569486936727168, 25.979167097848705, 23.186227546321692, 9.621412070121671, 113.64248746331876, 76.68831569856945, 54.87007613000088, 22.270346623107145, 16.87819593005939, 54.752094755043785, 39.102130635634936, 53.116160145431515, 36.505141148095895, 6.272475842705629, 39.9229498915092, 32.97064600581593, 33.64966046835067, 30.50460353045912, 26.42881141831836, 7.587175604969061, 10.006507878814475, 17.438094861599573, 5.23086918420176, 93.18710629120093, 18.660906030250995, 20.921044541504386, 35.83472680637263, 52.4185848241831, 5.2232796269652475, 28.20237493715247, 77.9547069728485, 6.899609859098695, 8.951247077095683, 7.116008156286172, 51.461906112389975, 62.46171322253765, 38.39043081921493, 8.669580117705058, 10.768029189547887, 22.791331229824987, 56.5497815114306, 13.510985669831403, 5.658468291555851, 71.99274748326953, 8.245452040781483, 22.305494033311778, 70.23775702575172, 19.835112894446105, 15.94362949071175, 58.684370168962, 50.12406040519656, 7.069028672475798, 12.696927912064524, 52.82161798727714, 84.55771125379448, 36.842940837053355, 10.942626106903681, 52.61079257181564, 37.473072416110654, 49.935391375866104, 65.54763288840336, 22.193681094098594, 54.805725600349525, 84.02303289839881, 59.44201018018907, 88.13351660446675, 64.02272638190851, 68.66183610910734, 42.36166199089818, 16.301549674326765, 95.20072893031401, 32.44438850245484, 6.782679998875598, 194.12774379761328, 32.22425151650461, 126.33107586031716, 63.07547494358097, 39.352430317480895, 119.67889297740987, 40.897131437172355, 13.122888861615406, 37.454164705523326, 13.151154107945382, 106.74465394886384, 16.42253324126507, 53.51883033411065, 126.5300235958519, 29.635895466266987, 21.2831743505837, 115.84873416605801, 34.468551631374126, 40.86966178224167, 27.645297592129072, 14.84957008653827, 38.72146148290602, 8.954025694167132, 19.406532289040236, 9.681780736429342, 19.448003001304333, 10.222934570931905, 49.24556254536225, 32.97388102792341, 40.889188412629515, 29.58948202264194, 198.75989856268785, 20.163691273381453, 28.862652091337182, 39.82602732210457, 83.71077481964738, 42.34228521101762, 73.82003530556538, 38.030138299128495, 17.247976407462414, 14.553586955174854, 41.510176440058444, 44.64052737776875, 25.086550680316122, 5.648584930960681, 24.12246664889214, 11.124596882086458, 16.128485227626744, 19.641667870718468, 69.1741754156992, 55.256060489245336, 97.6856433557939, 8.5672526606093, 76.64076913418822, 18.994641209732, 73.61588574923799, 29.55377395767689, 112.05204732189645, 90.56230879578497, 6.09911243242436, 11.32327178509252, 38.75413852958183, 98.0249192466966, 23.0914520628803, 15.66555308020595, 6.218832090086105, 23.998735046259682, 150.5551199383712, 8.367803859827564, 58.41176821157862, 8.793178280824499, 68.80686013300505, 56.05994960411551, 8.963323266571404, 55.39537884586722, 7.905230737255148, 11.449039788146825, 71.24348584194072, 6.301871288083628, 22.3896696351769, 47.51344589059935, 18.742146291950192, 55.15876411476622, 17.263607577751603, 18.44898599538028, 19.121648674950688, 20.433863149695004, 8.004226488496323, 74.83132030694337, 9.922281048586461, 12.984858739345514, 29.594377576246725, 8.19557319141193, 166.67863546355414, 29.651656572107598, 15.120186778418752, 49.25750178294757, 6.691401233354516, 17.41842599112665, 78.90010605770149, 5.7480478079493516, 6.223177026452328, 59.51952047952729, 42.907968665379585, 93.77174473774045, 5.147660755182135, 51.64709932143238, 31.735633611659516, 41.669568560131594, 27.434943939162004, 34.38035646055114, 99.75912843015927, 7.122251995307432, 90.86401214441, 17.808492940368968, 63.919361930943545, 78.19956472224354, 37.11924603370487, 20.004135881731635, 68.2001063507879, 23.13364160455574, 10.40884011827391, 10.48196602007968, 20.26326291880696, 72.47765089808424, 39.93388382397355, 35.24280368786511, 5.176917182682368, 17.882721515673396, 10.441735157365475, 35.95647432247522, 31.2883524955803, 110.80604007655025, 35.53933491277598, 38.61700994557694, 5.044743451990951, 9.310034522924358, 29.433088706939408, 14.583152316172324, 40.825550722464996, 21.973944897028908, 43.18723704996745, 9.004556613701414, 35.9205275859001, 168.26224371691205, 10.950295902408921, 13.7615568714067, 7.967326722887249, 41.698073291482686, 144.0568295666872, 61.58656127220149, 117.1559732191269, 21.081258590967817, 14.707445452610688, 27.26065322991156, 28.214773753948187, 14.759784127846654, 64.44889083008243, 82.49061024969939, 25.875107266229378, 49.01120417552309, 28.56966448925759, 69.96842180899779, 35.5776741336449, 43.33194060089194, 106.23255425901698, 52.498196062699556, 9.41150197381341, 24.043686916202347, 12.477750089178723, 103.71595236423371, 43.38830843642697, 71.72008424984162, 15.978813647712666, 20.122201164003354, 14.885435306887077, 6.3257942693819365, 15.036222211766221, 8.063358230209081, 8.534275188692146, 24.897494331191595, 10.062536043161076, 20.15582322577853, 45.40868488501602, 77.71059557118747, 74.39043517429945, 26.617019184710905, 63.21864022146269, 14.390058058420047, 80.20827708838945, 9.79645678646402, 73.00122779808612, 8.198398529089264, 60.19433564543146, 67.85497349136813, 25.75533268228308, 61.11542253288549, 15.711216344522294, 71.874589676862, 15.491830766768489, 6.637667510435476, 28.92796444735396, 12.01705355973613, 52.88350115642773, 67.17295776121962, 6.770919426877521, 51.00738194377173, 6.815469099166381, 30.458863000655477, 5.295869872192549, 9.685289605787016, 67.41256563639122, 33.110682859042555, 8.660539652268385, 15.241909739042569, 10.947611517315806, 9.525105675661148, 5.657668543982739, 18.60199281053965, 26.987382708637487, 44.11610880277775, 14.243193873874677, 9.996180354153994, 53.66770488646088, 121.45492395001888, 36.56782410245038, 27.533408297482637, 60.23527143491708, 6.979306107871295, 93.87389225857316, 102.21261742741498, 9.28078372591287, 28.190529706714702, 15.51708232862574, 35.982849369701086, 92.59607681121582, 13.944133233035046, 9.277726537421383, 58.459780744065945, 69.75019909013126, 22.813146805138725, 5.761286543367222, 16.744961593829434, 13.711537641682567, 36.46247624176388, 46.88749079695523, 6.564659645888798, 6.093190061803259, 5.742078386515019, 33.83464420057823, 114.51889816500547, 66.46417887956562, 11.9754287399768, 25.511854911209504, 16.65785845839633, 55.50186909780881, 73.13853760779749, 8.378168168004496, 13.209444086531569, 43.10923463826922, 100.77075514972402, 55.68710774563061, 12.114001595524602, 8.669993997540464, 74.79755245097473, 85.18159656056206, 82.26471063276006, 9.526475523746642, 73.92342362681457, 61.82161618641091, 7.102147829158884, 13.54908906662812, 51.139247469619114, 12.810225108856393, 156.99674536889464, 36.64181343295872, 10.872714042702295, 9.621434412058335, 8.77216114932734, 5.920763068257567, 31.463254588076172, 13.889829038596714, 9.745804651904573, 15.631513814359153, 7.781664847010099, 130.9867936640793, 19.565745132418744, 36.319779388532154, 101.81115655399468, 30.061265263119367, 23.447513407022512, 48.544462702794185, 141.36409244725354, 14.269883457973998, 25.024341852018722, 11.115882410864092, 58.32835844028165, 10.620389107705929, 16.531424039929977, 13.47216533750705, 17.31908386171326, 48.83156437895565, 11.303563273158538, 15.850904871742884, 76.16408588122913, 25.990438928892576, 16.29445595988124, 16.339774200713475, 18.434581131638957, 87.6731723904381, 126.15976937761623, 31.766445637657426, 42.15359250577588, 59.81188838313452, 54.770594663942255, 57.670428695279796, 50.90795268715448, 17.61357703911058, 66.99676288203689, 83.55521537093355, 16.04019665052132, 64.0811533876715, 6.435259449392104, 5.239101969230089, 40.699107542012314, 29.463911042485577, 5.938850750447717, 24.36879024281204, 27.28186128266356, 17.448570379152684, 39.71745225769284, 88.17170532892969, 5.54979128837287, 26.113507745039428, 30.442000110023656, 73.75187653576701, 5.328258879931217, 71.23466033246476, 5.344227339475435, 9.818482147120015, 28.983686627461523, 58.78235524302462, 37.33132244157742, 10.245233245220556, 58.30542996883547, 63.312019689626894, 6.927274462183356, 7.826296070203298, 49.83160440387434, 70.56835186683527, 10.437768351788282, 57.256274874888774, 53.11749239547216, 28.063436339705603, 5.480635838709198, 10.039396509791379, 90.92391625133581, 23.127780262506494, 71.0386301137353, 53.421425224568324, 24.958839435021257, 6.297613997828987, 16.916804576493025, 8.658910140627652, 33.312358658198676, 89.68975526157399, 311.5989469547196, 78.75219115922414, 6.020369968348701, 10.572356848402595, 8.540965846721386, 24.663922930476318, 63.008527128831176, 29.492561266220253, 8.971187244286028, 12.646575412634856, 39.45425814507302, 139.59775003140064, 44.76053392746773, 17.26422132093677, 5.8281949423701445, 18.44500067481301, 46.23206398019767, 45.06096336939849, 11.593971962364687, 22.45072445334799, 100.5881894712385, 25.29931001669499, 12.138455000824667, 6.977670800920861, 13.669368936933541, 16.190199566101864, 13.355176328694816, 33.83783975601432, 133.65789535697814, 5.148534423798974, 60.48787792060578, 20.676846188320773, 113.80880587084465, 112.67722999749175, 59.592762009417825, 49.65824969996271, 114.86974674089831, 39.97491861161755, 6.9907443326702685, 25.56562827440156, 13.30402602333451, 5.8973190569872935, 40.946301625534026, 14.58330626581087, 14.709881000847375, 19.983955638101644, 104.07290483494856, 71.29638786164676, 8.891544374687124, 65.15599060032467, 276.6573594153528, 38.79251968159253, 59.21617313718837, 13.50306490853391, 30.647947920406104, 121.0515172599654, 11.369647171107488, 25.218755817337335, 103.62467318870365, 23.17512492395686, 53.86565878321913, 5.3142255177920825, 128.2962918028637, 27.020160670218182, 32.08586001498148, 20.613667334781844, 152.832464766674, 5.363220294627183, 21.189225890814843, 87.04430432696869, 111.3581454072969, 106.33674735157445, 16.21250107196777, 43.921512834935996, 11.907071554042725, 42.77934849436532, 59.4431283171281, 7.310758671715964, 86.66792124302052, 38.91538058474484, 14.097539824539382, 29.244293425159874, 145.24386564755235, 9.28987615829385, 30.235234844253476, 27.60695517851351, 5.871736372647976, 37.93132143820537, 5.996555338539459, 58.64417388444511, 64.69180576149031, 27.312918647222407, 15.11139668728761, 24.289378571828536, 54.60403914991534, 154.1193667244385, 127.35316901875001, 96.73510803563425, 23.599196009667388, 73.73419519816389, 64.55008867939753, 41.40539517562822, 13.965599619719033, 78.60457274471153, 40.11876400616353, 32.1687827792378, 118.55024235619038, 78.72072622170901, 82.51443421682364, 245.2873565922448, 52.61201095341314, 75.45810992774372, 23.26027732770583, 8.838104938661854, 62.10471000665713, 10.147029030932286, 59.08174704956916, 136.27765134668118, 245.5671106420483, 60.03188107200919, 74.89258853039962, 11.823994617183986, 75.2957712076587, 14.110918121793445, 139.46880905523665, 24.34777135346934, 18.291471975138705, 17.87265295733971, 31.507514207380027, 63.16742066845734, 14.919950030887074, 11.369729163169364, 15.977120552738665, 69.3446381560353, 6.755582248469952, 25.970671262053024, 7.799799302779115, 10.505852608743812, 316.8516621675394, 30.183031158183923, 14.095355070187919, 15.790824436996513, 15.56345457955931, 45.30008760003044, 131.51576828320697, 32.28369267228956, 33.5065383709314, 15.467769262330336, 60.30770853829298, 20.761675405603725, 16.081969713471388, 102.66733636661152, 29.635192667974383, 7.432745780548798, 107.0615472543129, 63.6219105334676, 51.14993386270521, 38.48447229697216, 10.107957493323008, 24.405994856568938, 40.563382510312735, 130.69009264327227, 25.030266306749283, 33.849958981198974, 42.82853999675909, 293.18959522799616, 62.842785032664466, 37.13698920085845, 25.60874940680379, 70.22828690918429, 30.27210936390712, 5.069152959524089, 8.98548464159847, 51.187868182945394, 55.17999864247351, 11.285518796738568, 6.284550130080968, 6.6744085608716395, 12.908227863277443, 8.336674652709789, 124.2846805176032, 61.07468021265221, 29.92573611723632, 37.62292440889792, 25.292721544426428, 10.53874583644274, 83.23477378213549, 69.7620563476893, 5.333618493485493, 23.028875372871802, 32.68399854549502, 24.638554204215563, 74.90238433369326, 20.957393078505664, 52.607880138907895, 13.460953793492735, 19.033002546307905, 33.3414001793097, 27.28938985406767, 19.219681134981553, 9.271195301310936, 61.21275886192224, 72.01347210391887, 25.565308702898108, 70.69909029801332, 18.07611078866319, 6.231435963557953, 11.314889640683353, 53.329662496420625, 20.875553159599708, 25.14444780554864, 15.04350520667583, 58.07409888751207, 62.33187128534005, 36.20548918210703, 12.115613828843452, 142.2628366325999, 5.63378188847411, 52.22608378540289, 41.04324994195812, 65.43500258659776, 40.940923281886235, 20.08495285606072, 132.47732515795508, 24.320837253575966, 38.23601600515155, 22.93658291218857, 119.70254047696729, 159.12288478429892, 87.74459181524882, 103.23638164896781, 29.440319711930343, 45.69999736120949, 34.46692706453454, 60.10106868080525, 9.696017212347538, 6.510532286133384, 27.879976178139298, 48.60255410600751, 72.29780862444586, 11.410762419492665, 15.145586462019688, 62.99052170205353, 11.114764586306762, 37.590475966090175, 22.402786654229892, 21.964596408991472, 30.37778579387502, 136.36012270338585, 19.738149705737715, 17.240292030219667, 26.098799342384197, 8.772251109899841, 19.07491803296058, 35.51122480815267, 55.0131218470087, 21.918299519317266, 50.12010166101682, 58.041657948833944, 120.01866000522104, 28.48731590520348, 8.849546179516892, 6.022535947152977, 8.546810054975612, 107.22237691507374, 42.30393134727591, 43.34659815938356, 99.46876546814376, 174.01032484957682, 38.66309040153077, 15.792948012776844, 8.044847658070196, 7.820412986337032, 18.619274862235343, 178.8058849264687, 19.451849703556817, 15.586537607140526, 11.40864418701755, 5.123348200979796, 17.625187569614575, 126.44447181823377, 23.629476718782257, 20.953562184205513, 129.062494914393, 80.37729784653628, 52.54827782708992, 27.757565379530533, 63.7708469333148, 97.38787156676023, 47.72002855328582, 22.545545216191652, 48.151316569348815, 7.825872685844468, 47.566030987313354, 15.646280179691002, 26.474225760549515, 52.19658574871986, 30.0583274149053, 68.14520087527796, 52.149314702898664, 28.313764315918355, 15.838298044632586, 19.738019634317613, 26.233821602934547, 12.706271637290772, 7.7830104343007225, 35.64221784306916, 76.74667851175718, 118.0249201284924, 39.52224713777491, 28.816200479686643, 97.4403290312955, 47.261704449144645, 124.29255043733482, 31.79403469267267, 5.244781093989562, 35.446980896123605, 8.046659037235962, 95.60462524593663, 85.73530167919526, 83.49746440010355, 214.1368302210126, 43.80664652062156, 27.173443319392362, 26.56924157703613, 6.024832001812231, 28.77880221244071, 61.729193803656024, 17.780618842683005, 41.038814176959185, 49.12842059484402, 141.27234417188933, 18.124701988175254, 66.81226438785895, 44.66011698257484, 66.1430072544087, 9.484640937924349, 67.17484756167288, 15.42455986315874, 56.80825477628274, 112.59528477010153, 13.484706626118317, 17.188530485608755, 48.40257949907029, 100.13546008414588, 9.691533646003705, 17.02268698683156, 93.45212732669333, 139.8604856299287, 37.77891239751036, 7.061534429936592, 39.082193696301296, 234.23534091998326, 39.432654410922034, 37.71878676696073, 37.450521753701125, 67.24743079945912, 303.5410133021797, 78.53162387036772, 27.486731732856313, 5.613996810508877, 86.20631803289042, 56.19825414043298, 13.266766756290362, 46.97585063869754, 43.935198496739524, 14.595501425643016, 7.54634053898532, 5.1819234725242325, 83.34380918553799, 33.62988788018269, 82.68945806846791, 11.389161529899301, 55.363646297419976, 52.22645985479009, 58.9329584754066, 36.650631528825336, 106.59130248065772, 24.26742209092307, 32.543222837622714, 42.55786010511769, 227.95888036000645, 80.58706198043211, 5.679017199583329, 11.06138846874347, 5.4215323299813285, 8.648357389785415, 30.388299391317315, 36.60642700853813, 91.83080913672647, 156.24249957341092, 49.22330718865061, 223.59025426102139, 8.465050997350607, 61.324564486253074, 20.743950682308498, 24.02830166502205, 17.696275824846282, 60.130618805017775, 69.02770722005152, 52.28189421395647, 8.69701408798795, 562.7266757047304, 94.23246091855428, 288.835987052371, 8.234348473976535, 8.899633614929243, 12.663540424017667, 10.7580824022546, 79.57956481196764, 30.67204016816256, 6.8434044707803245, 58.71486412417752, 136.9042707377138, 11.723855914655577, 75.71886938668554, 45.164339521163946, 68.3842526911784, 26.480946739636536, 8.411730552223718, 82.87152570651027, 38.099001958136085, 7.781629667304333, 22.591733594961887, 11.304030144288488, 150.5987691167362, 92.79747558275606, 18.779057560934277, 15.183110278321475, 22.55769973720757, 37.81626522792114, 25.812741008814715, 10.432240917295825, 22.061885964674364, 21.32865040232396, 24.152564454777455, 355.586742938282, 40.69652602129837, 73.00890800077627, 33.382129610977216, 54.502202583388396, 40.99214384442129, 69.93691806103269, 31.739997809969037, 63.37743213543384, 8.21203323051772, 102.5195676457044, 23.65405631572999, 25.91221607986762, 157.8363789033573, 7.165552526220375, 41.08147290439313, 31.079411136777743, 7.279692138414701, 14.98741110052352, 66.6816591697647, 32.17948083750707, 19.551751965275354, 56.960531152432296, 18.926723908116358, ...])
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)