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 = 45333
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);
([3743033.2549298084, 3855661.707515929, 3921682.4590938855, 3926516.560606872, 4023922.165675572, 4026250.0, 4027011.1014674585, 4027042.1376388795, 4027599.8245514375, 4027604.6875, 4110400.5648101657, 4135463.7450751383, 4157347.20435, 4157903.1191995875, 4185667.1875, 4187109.375, 4187289.0625, 4188544.174268714, 4189686.081694517, 4191110.187677801, 4191398.451658212, 4192271.875, 4202908.680722615, 4204285.9375, 4204503.637463918, 4208350.584934958, 4208871.6125168735, 4209928.861132514, 4211143.75, 4211202.187204839, 4212367.364964079, 4213200.894466704, 4213824.7708311165, 4214415.981473566, 4215116.560129902, 4215204.6875, 4215298.370689727, 4215513.646975446, 4216141.894593219, 4216473.414938634, 4216569.404959768, 4216803.510301056, 4217212.5, 4217632.8125, 4218842.790252261, 4223703.710216755, 4224334.494071718, 4224952.366161653, 4230314.728069389, 4231488.864086229, 4231634.9107559435, 4232617.901695611, 4233986.642798939, 4238909.1843856, 4239018.75, 4239561.27193129, 4241482.8125, 4252641.591352332, 4255601.5625, 4261846.916779259, 4263028.1905563185, 4268936.745364562, 4269168.75, 4271255.113249689, 4273767.1875, 4274275.937667566, 4283945.355005473, 4283964.548577945, 4299723.649280437, 4300059.016121524, 4301989.0625, 4312426.5625, 4314807.762038912, 4319979.6875, 4328262.5, 4337489.33260482, 4339781.495383545, 4340302.972730229, 4341379.762493306, 4343734.832366426, 4344082.8125, 4344630.7212938415, 4344670.673853439, 4345317.1875, 4345687.388413732, 4346022.970517277, 4346024.263522334, 4346237.294134824, 4346334.375, 4346470.60881068, 4346562.947944027, 4346606.25, 4346627.0122644175, 4346687.355758026, 4346887.173020485, 4346907.180793932, 4346941.556938285, 4346998.078086998, 4347259.471400655, 4347262.80247791, 4347375.605511271, 4347451.214060604, 4347620.3125, 4347643.75, 4347698.507155455, 4347703.930601731, 4347744.925574107, 4347757.043438996, 4347925.187555348, 4347929.6875, 4348359.375, 4348658.48527682, 4348742.1875, 4348872.192166123, 4348912.912434118, 4350832.47904669, 4351540.625, 4352037.575146488, 4363255.450978554, 4363450.0, 4364559.260623739, 4364613.910827813, 4364955.72394721, 4365031.861385054, 4365125.195582853, 4365307.8125, 4365427.672297855, 4365450.0, 4365490.473507417, 4365663.615474623, 4365757.8125, 4365790.359554559, 4366172.244882093, 4366181.998918266, 4366230.513483233, 4366280.161310678, 4366420.3125, 4366433.857841613, 4366608.127247258, 4366687.5, 4367171.8858136935, 4367361.821004052, 4367432.992802735, 4367482.345613806, 4367485.476191978, 4367548.53368567, 4367664.106812758, 4367667.771898927, 4368092.851009341, 4368740.159334894, 4369301.5625, 4369373.095092685, 4369398.676568939, 4369742.5717935935, 4371570.3125, 4371736.597216074, 4371827.5860864045, 4372117.31478111, 4373802.669309655, 4376942.601747926, 4379207.8125, 4380577.752919036, 4385709.21353963, 4385736.730783562, 4389150.953438138, 4400160.22895599, 4400180.405316403, 4409938.63096628, 4425599.155661128, 4425608.922395933, 4430560.008492212, 4432065.61053738, 4434740.324257786, 4435047.636195951, 4435879.70934497, 4437910.239606072, 4443071.875, 4443637.0455328, 4447213.368257761, 4450750.0, 4453623.4375, 4457612.5, 4462149.56353671, 4465569.148241046, 4466784.375, 4469420.3125, 4470251.328065413, 4470805.730299663, 4471726.428001134, 4471876.765898142, 4471954.838202511, 4471961.983298615, 4472023.312344867, 4472032.8125, 4472270.3125, 4472313.881878841, 4472413.739719977, 4472619.743406586, 4472821.559158479, 4472858.067365684, 4472998.4375, 4473327.513565925, 4473455.358915192, 4473569.919683861, 4473679.6875, 4473844.741296655, 4474057.570872744, 4474057.958296537, 4474359.375, 4474436.976761503, 4474495.479672895, 4474522.159860391, 4474536.807663318, 4474671.057391515, 4474857.309652399, 4474913.273703708, 4475035.9375, 4475214.0625, 4475323.142897953, 4475409.118900318, 4475549.809971059, 4475621.302987758, 4475673.4375, 4475981.25, 4476029.883280269, 4476088.683698634, 4476145.237356301, 4476201.5625, 4476305.591536753, 4476323.762742232, 4476362.5, 4476468.808336478, 4476707.560437541, 4476845.753214426, 4476903.250782012, 4477009.532032241, 4477013.3519888045, 4477044.7867801655, 4477058.867094112, 4477070.964038356, 4477118.75, 4477174.455381591, 4477275.0, 4477294.09376437, 4477307.384877878, 4477326.5625, 4477501.34638939, 4477526.942137848, 4477560.224694773, 4477749.910154815, 4477794.32463686, 4477815.341910833, 4477969.001227358, 4477998.916851204, 4478029.986943907, 4478158.355953745, 4478179.423930222, 4478194.600623393, 4478264.922774993, 4478703.862349639, 4478879.414730604, 4479293.566550838, 4479322.78710486, 4479401.17565488, 4479458.801209275, 4479468.41684624, 4479586.2411886165, 4479995.3125, 4480109.375, 4480398.767525823, 4493267.072479673, 4499057.978544534, 4500287.5, 4506621.875, 4509056.494167938, 4509795.788736329, 4510434.375, 4511323.4375, 4511900.973638348, 4512588.717750535, 4513168.853775281, 4513373.215807671, 4514136.93151047, 4514297.542668616, 4515405.363316829, 4516818.75, 4517670.3125, 4517808.424225802, 4517906.330608081, 4518374.835492747, 4518931.25, 4520278.125, 4520659.375, 4522485.501076246, 4523868.892909326, 4524603.44891076, 4524838.7137557585, 4527190.805899857, 4530252.479275284, 4531042.1875, 4534000.0, 4536185.9375, 4536580.9488347005, 4540129.6875, 4540605.526380126, 4541032.8125, 4541164.0625, 4542434.375, 4542728.125, 4542731.795393783, 4543345.3125, 4543483.642359574, 4545111.178890269, 4545863.981467094, 4546328.125, 4546712.78351287, 4547237.081825536, 4547607.509361984, 4547774.66924219, 4547776.082922285, 4547852.1566192135, 4547959.375, 4547982.518274643, 4548159.1009803545, 4548203.3576262565, 4548263.984797249, 4548306.496994531, 4548467.890775962, 4548580.006713896, 4548690.625, 4549020.913600049, 4549200.0, 4550315.532892112, 4552128.125, 4552242.391782088, 4552429.482089913, 4552519.823796651, 4552883.488259305, 4556110.192005398, 4556245.998368484, 4556385.028953379, 4557526.85484028, 4559125.0, 4559806.25, 4560010.9375, 4562448.25614462, 4563878.90117885, 4564704.6875, 4567119.750651826, 4568528.125, 4569401.620284557, 4569959.18477798, 4570326.5625, 4570338.584146514, 4570366.070006863, 4571145.428626561, 4571215.625, 4571257.8125, 4571300.058986812, 4571303.4401109405, 4571731.14754538, 4572071.209031104, 4572144.517609669, 4572241.060165772, 4572710.334411227, 4573371.140664888, 4573475.0, 4573757.362786681, 4574393.533324129, 4574712.317535444, 4574971.445567392, 4575089.518320698, 4575700.0, 4576496.767902254, 4576514.0625, 4576572.3640650185, 4577100.0, 4577180.293369212, 4577289.271177007, 4578240.625, 4578562.793437457, 4578629.063167263, 4579117.1875, 4579510.9375, 4579704.505381693, 4580534.762160155, 4580611.144278079, 4581362.578896329, 4581373.703257083, 4581395.541603223, 4581439.0625, 4581729.73588399, 4582709.897597628, 4582716.954233074, 4582717.1875, 4586222.556792042, 4591235.9375, 4592932.410983116, 4593434.482865293, 4594623.151845827, 4594793.706818828, 4599229.6875, 4602112.621784879, 4604068.174482803, 4605110.011193214, 4606177.032672597, 4613382.030376682, 4616698.4375, 4618404.486323532, 4618981.990771383, 4619106.25, 4619879.780327774, 4620005.661118903, 4620489.0625, 4620495.1454783585, 4620828.020304065, 4620836.514305676, 4620930.724547577, 4620970.4653204335, 4621152.977573517, 4621226.560111885, 4621464.292378126, 4621537.428631977, 4621565.453562694, 4621641.410617642, 4621643.75, 4621811.470407987, 4621885.3513396345, 4621969.357297171, 4622273.92850314, 4622614.0625, 4623438.376176593, 4623686.618549056, 4624261.99497477, 4624439.110053775, 4624976.5625, 4625375.0, 4625406.981650254, 4625587.5, 4625943.52012238, 4626053.486406036, 4626083.632699897, 4627348.4375, 4627383.8552007815, 4627639.707338932, 4628296.875, 4628846.828352654, 4628903.125, 4629049.154378795, 4629184.322173953, 4629258.040090276, 4629720.5262987325, 4629745.3125, 4631144.183433523, 4631346.382392532, 4631689.0625, 4632064.0625, 4632304.6875, 4632946.801065414, 4633138.382575104, 4633504.972054025, 4633519.748986726, 4640990.625, 4641778.025902539, 4641839.15649223, 4642517.435335614, 4644940.625, 4646554.0841315, 4647680.84397575, 4647880.125540757, 4658259.35293966, 4663984.05856207, 4665033.011611512, 4667253.125, 4667802.557960728, 4668397.824859657, 4668476.5625, 4668818.75, 4669194.431838933, 4669483.469462093, 4670109.076901927, 4670770.3125, 4671047.820718203, 4671151.037723442, 4671932.677702203, 4672676.847866794, 4673109.375, 4675371.246768188, 4675705.458985739, 4676688.356445399, 4678598.132485704, 4679406.205150547, 4680352.205807928, 4681512.776886691, 4681830.545074665, 4682939.811507624, 4683557.654922209, 4684179.6875, 4684821.875, 4685295.470818177, 4685705.768238165, 4685729.6875, 4685839.349623599, 4685933.174411106, 4686338.667641654, 4687405.141311704, 4688646.875, 4688809.036293023, 4689108.54651792, 4689757.282072725, 4690878.125, 4690900.300636925, 4691893.190099853, 4691952.203028983, 4693518.872701362, 4693892.1875, 4694756.182586867, 4694851.5625, 4694968.75, 4695325.0, 4695622.077276801, 4695676.040027291, 4696629.54228846, 4696772.204081736, 4696944.492992135, 4697017.1875, 4697121.875, 4697471.841983729, 4697648.4375, 4697723.970276132, 4698072.066316959, 4698315.759836691, 4698348.131826948, 4698640.139488716, 4699211.629483393, 4699309.375, 4701880.467796914, 4702879.9057599455, 4702902.465539359, 4702905.013346931, 4703023.4375, 4703610.9375, 4703839.0625, 4704074.883532546, 4704502.492185936, 4705068.72744505, 4705314.048432388, 4705589.989356445, 4705603.125, 4705922.903681799, 4705996.459434358, 4706017.178749399, 4706026.5625, 4706207.28071618, 4706740.8811447425, 4706865.258852518, 4706896.228091645, 4707146.875, 4707460.9375, 4707515.079290941, 4707608.621650825, 4707695.391234483, 4708072.837999069, 4708415.625, 4708433.8901051, 4711456.82297677, 4711686.553028325, 4712493.536218687, 4713380.030492147, 4714604.97435177, 4718113.440968915, 4719772.530466411, 4719927.593476569, 4720586.757913741, 4721038.855541073, 4721064.920030815, 4726560.9375, 4732196.875, 4732252.122052592, 4732262.610348779, 4732695.62023525, 4734771.686611011, 4735665.625, 4738538.803747019, 4752040.442784924, 4752118.285582987, 4760940.390254901, 4761929.594985663, 4762010.327233442, 4777553.015521736, 4796034.104451891, 4796141.790652615, 4797480.313119171, 4798310.9375, 4798735.684893684, 4799229.6875, 4799613.498889109, 4800544.790402022, 4809026.034593971, 4809027.447076102, 4830157.898762319, 4830368.207793725, 4922316.159551335, 4937051.766776691, 4942820.252161771, 4946241.574704598, 4948519.856144778, 4952381.143440479, 4952489.311573291, 4952628.102224093, 4952916.776825461, 4953053.1407411285, 4953507.309541167, 4954389.773979824, 4983993.560281497, 4987340.0663509965, 4988082.8125, 4988807.024274748, 4992200.452147377, 4993802.624375242, 4994128.891448723, 4994546.061767013, 4995842.009679135, 5010287.5, 5016143.75, 5019770.616756557, 5019839.0625, 5022524.895840186, 5025618.943975719, 5028887.18983814, 5037556.25, 5038218.266391524, 5038412.835707065, 5038432.8125, 5038724.208213642, 5039569.496669754, 5039639.826216905, 5040285.9375, 5041309.632115092, 5041819.1101163225, 5042507.295182694, 5042579.337799344, 5042750.087477915, 5043304.105432942, 5043539.0625, 5043905.994830621, 5044060.853296437, 5044464.0625, 5044536.935729409, 5046196.526868261, 5046626.5625, 5046929.2455400545, 5047071.875, 5047113.170949762, 5047172.884581129, 5047373.4375, 5048195.3125, 5048455.294410328, 5048507.409123336, 5048555.516869266, 5053409.473972117, 5056446.129957797, 5057906.816445674, 5058942.89657037, 5062395.094715626, 5062565.273500017, 5062790.978940022, 5081419.853375293, 5081420.194116838, 5081653.601332333, 5082221.838877739, 5083271.875, 5085221.4354889, 5085375.0, 5085779.521964076, 5088081.25, 5092104.6875, 5092504.625066496, 5093116.456906459, 5093795.3125, 5094411.646647004, 5095348.4375, 5095353.094282682, 5095429.341847711, 5100568.722508091, 5101723.397245764, 5105617.643374812, 5113594.658265683, 5118281.222122981, 5118382.113384236, 5119015.625, 5119297.870605163, 5120664.408767996, 5121720.162666575, 5121935.54252194, 5122082.8125, 5122090.908164212, 5122750.981581435, 5124410.538595619, 5124610.9375, 5125260.9375, 5127204.6875, 5130322.006542876, 5130672.0128013985, 5131113.652159957, 5132870.274524723, 5132995.5456344765, 5133441.373684449, 5133465.932237356, 5133568.75, 5133834.12599851, 5134159.492008134, 5134175.398982583, 5134314.0625, 5134413.55756948, 5134876.0489312885, 5135114.0625, 5135133.3691331325, 5135253.125, 5136678.122176814, 5136749.086143348, 5138323.650945095, 5140667.1875, 5141428.6849548025, 5141602.34161764, 5142076.5625, 5143121.514114589, 5143662.951209617, 5143765.967921798, 5144130.612156243, 5144208.979896282, 5144629.490220586, 5144828.125, 5144945.05969683, 5145633.629435232, 5146409.375, 5146526.7244639015, 5147461.067490028, 5148695.3125, 5151333.179144005, 5166264.0625, 5197201.5625, 5226460.519342198, 5231997.862200082, 5252217.295344355, 5254749.057892945, 5260837.422076835, 5260914.0625, 5261191.08553315, 5261842.1875, 5262052.592885825, 5262267.147860568, 5262337.852929347, 5265074.5413520355, 5265133.5868864935, 5267931.213257474, 5273921.096775476, 5274234.142620645, 5274885.9375, 5275828.058119463, 5283630.164805324, 5286227.422959476, 5286413.8247602135, 5286526.06084892, 5286751.5625, 5293438.497991313, 5293449.728953245, 5293685.195125528, 5293718.424520004, 5294536.863697494, 5295343.0698352875, 5297784.149288186, 5298683.2387920935, 5298846.916204106, 5300040.625, 5312404.369565728, 5319956.25, 5320281.25, 5322490.8429797655, 5322754.6875, 5324525.0, 5324865.562418313, 5324941.696000069, 5325210.59776181, 5325220.645506639, 5325442.144644043, 5327875.644209815, 5328751.5625, 5333277.071693224, 5333941.35190261, 5334097.588230553, 5334611.083385092, 5334948.511491023, 5336435.48667331, 5336467.509871235, 5337937.5, 5338658.943437109, 5338690.625, 5340188.892068641, 5340785.9375, 5341209.224334168, 5341220.437008101, 5341917.1875, 5342601.508664334, 5347425.972496723, 5349843.7840146385, 5351418.75, 5352052.8574234, 5353645.289742395, 5353654.6823716, 5354310.9375, 5354776.5625, 5355913.69977746, 5356683.711002731, 5356689.205367034, 5357028.402233667, 5357306.25, 5357392.429590104, 5357422.995153816, 5357429.17993192, 5357585.95853365, 5357615.912379645, 5357663.937861152, 5357675.967126336, 5357714.045018315, 5357760.738660691, 5357760.811051951, 5357805.714633131, 5357813.785092895, 5357840.998646628, 5357870.3125, 5357878.298140537, 5357893.249009157, 5357903.97581884, 5357907.589155758, 5357939.699109815, 5357944.082643878, 5357983.589835452, 5358121.875, 5358153.450176461, 5358173.505871949, 5358174.715416339, 5358179.495704762, 5358217.172694198, 5358312.45331122, 5358321.320782545, 5358333.112571133, 5358367.819164842, 5358385.826742016, 5358400.335610264, 5358442.1875, 5358451.280325158, 5358454.152975066, 5358586.802530012, 5358648.561602931, 5358649.97671845, 5358667.112804378, 5358670.111703057, 5358721.123098942, 5358722.451826365, 5358749.609643131, 5358823.4375, 5358851.87951635, 5358866.450874774, 5358879.6875, 5358908.213365195, 5358917.799626538, 5358932.643220014, 5358946.103011419, 5358970.957426155, 5359028.176682867, 5359066.984482988, 5359090.677562196, 5359214.0625, 5359219.4050161475, 5359235.734405663, 5359276.970323474, 5359278.125, 5359318.75, 5359329.6875, 5359345.403294422, 5359373.4375, 5359379.852863567, 5359398.83445118, 5359410.990908493, 5359469.107075384, 5359469.239323457, 5359483.243774345, 5359527.517152161, 5359539.959692605, 5359541.191391697, 5359640.41786206, 5359641.265612013, 5359668.067110208, 5359677.713542034, 5359816.463346966, 5359842.122600445, 5359853.125, 5359867.797366776, 5359889.014805514, 5359984.788415271, 5360002.987762556, 5360015.625, 5360024.021694699, 5360024.027284018, 5360027.403268356, 5360059.887108578, 5360112.475017361, 5360142.1875, 5360170.920482966, 5360194.661234097, 5360226.338458789, 5360307.8125, 5360339.0625, 5360441.05888991, 5360507.473293013, 5360510.9375, 5360654.247425446, 5360768.964801166, 5360838.707112854, 5360915.430300519, 5361348.329643087, 5361507.008379335, 5361783.690236784, 5362184.804808932, 5362208.401687055, 5362712.665345113, 5363059.171221909, 5363315.625, 5363331.95370938, 5363343.272606417, 5363450.660482692, 5363541.529002875, 5364345.219719639, 5364392.967883421, 5364414.901173519, 5364490.583842474, 5364510.9375, 5364597.5901436545, 5364632.811727071, 5364678.252288344, 5365092.7016791, 5365122.877819143, 5366125.335063513, 5366388.73536862, 5366554.975288227, 5366682.8125, 5367085.015030267, 5367962.046261868, 5368074.516542214, 5368141.128870302, 5368157.8125, 5368293.75, 5368795.6096853735, 5368819.7029606085, 5368921.875, 5369198.185347982, 5369269.020645907, 5369456.119636794, 5370194.681408136, 5371469.320698558, 5371793.75, 5371981.9305948205, 5372351.5625, 5372512.027574951, 5373121.182293871, 5373121.875, 5374388.378567036, 5374457.040167185, 5375079.6875, 5444807.143745276, 5445086.851860889, 5482871.259536957, 5488621.827281897, 5488643.71400511, 5497399.339972942, 5515367.1875, 5518297.853355548, 5522009.375, 5536746.875, 5561499.919212196, 5587848.938225117, 5590624.828853918, 5592502.904370013, 5611039.713291561, 5623820.905741002, 5637513.740597632, 5643736.136549746, 5645906.31389095, 5654951.463560429, 5659088.807955404, 5659245.932251738, 5663034.396885093, 5663482.221606944, 5671079.6875, 5672012.410816961, 5673081.5055958405, 5675673.50302082, 5689379.31656347, 5692832.8125, ...], [5.304952074287514, 12.590539993637659, 23.091709833064282, 5.667989562729767, 11.614626700413698, 76.63706515154912, 11.39404975658248, 5.202153465301828, 25.483728944393757, 62.89687801911685, 8.609689424634457, 6.227910071130496, 8.468776334572214, 9.326503409478134, 67.17797766091317, 95.55713934648752, 37.425055286155924, 16.849572306445523, 5.8247270246118354, 10.128180746823904, 15.72474194142223, 36.99361084006101, 99.12015312531258, 75.86035666467289, 9.80588120249799, 30.075734302714764, 24.24209640532073, 10.042449971670829, 34.83112963683253, 5.310782025000364, 23.363194104283714, 77.62724242081127, 6.718601252801302, 9.652178483087743, 7.980518397942443, 90.00365918909273, 14.692831192895481, 22.91919186869875, 13.931420105592903, 28.08599169623805, 18.206465258947873, 16.64615397697557, 50.634106578554594, 101.20414016003613, 17.874242208427557, 8.622355791522258, 77.2673237942235, 10.117949042975788, 8.672969213714614, 31.217677047772725, 61.86251473134672, 7.322762201810714, 18.542614197153526, 25.256349614540166, 56.634013076084, 19.70754098405779, 40.20762820983022, 20.584755794984858, 53.81114384857748, 15.103179981409959, 8.321551539100636, 10.12271408561543, 77.74040848959845, 7.238053899124785, 36.47189284806776, 5.187790079688132, 53.85539392428196, 17.186388094458955, 20.951290238527342, 6.051557531769013, 31.410755927781615, 68.62123679449589, 31.91846228012664, 37.98210839335435, 170.71746286686835, 50.1251037204231, 38.93065876407087, 5.127261184377361, 6.778571327425882, 17.027703750802008, 147.17674731616748, 13.248108233899538, 108.60697203897381, 87.20172324456883, 13.584200269273758, 21.82891190309666, 77.03761733933533, 14.210904431774527, 84.54151401049494, 103.69072177625334, 11.908354547796934, 46.43892951107422, 19.90526222001223, 8.211744763428014, 13.826276506045936, 33.96428482089938, 12.982147335392188, 10.608842192834004, 15.322130898730867, 135.04650253627588, 15.746573731999169, 10.623508044459768, 39.400225797907424, 74.2167999271552, 11.238356653064036, 12.673531746878098, 33.92843129869916, 77.51599393773122, 15.708053987877411, 51.899221031008416, 82.30094697087581, 12.371965754785101, 102.40994495815627, 18.191481609128317, 82.72861298694522, 48.37769828304549, 69.8839922983979, 7.630644904455934, 66.1298542321326, 62.79061205680563, 92.62709784278056, 25.850326223407727, 13.255255454971053, 5.1798491858505615, 28.439175368860358, 54.36914260341665, 13.457477603172245, 35.32507288354966, 25.853143834849927, 68.54469739841797, 34.92436820435621, 23.952653284899256, 5.5513054778073405, 5.368256468247047, 5.371044848406331, 49.115148955089666, 54.010871112816055, 14.664706574629069, 9.612517619425859, 76.98509158337197, 171.92440518631363, 52.64009723824157, 5.072189763799935, 66.27693032508596, 10.475860990521209, 14.9656945644542, 5.343442414762832, 5.5621318049413855, 64.47495846919543, 18.887113428984023, 59.9568369131417, 97.15967561867868, 9.542075256723425, 5.973585711259481, 72.4463176188666, 40.857096451378716, 13.220719535623038, 148.80356916090443, 10.48304547478215, 22.38690958268966, 30.245545310806165, 31.923591247151393, 70.1562717560341, 5.572860923418137, 40.31306858091365, 19.637734803661296, 12.471748794828754, 22.204404003896762, 18.631133531940694, 8.060906266149972, 19.33074397369706, 19.60236053658764, 10.688058772496575, 8.734783589417773, 21.99978627635761, 10.187822166711497, 44.649732728261185, 6.676045199859623, 6.95017931726227, 70.73670771992485, 109.67771694382714, 68.14790155539107, 68.05754669855885, 11.812994998351822, 53.22055458787402, 95.39585516648594, 24.626006646876586, 6.99122607647651, 85.27613846463467, 43.537536913086115, 6.103912423743381, 21.32809732028356, 34.586014326535036, 68.59558760643124, 45.44370055494612, 25.405623542458528, 13.83911086781353, 13.140716588929234, 28.926883560829395, 8.426115474591331, 28.81613027700026, 7.987704490983388, 12.3689872362311, 13.629506693979184, 68.49584265217365, 10.338617538337337, 24.526153177753027, 24.054864871212995, 70.78307357247135, 12.36078288809384, 6.797346665577245, 11.604202040258954, 5.500396954102994, 12.53293399624629, 8.939570688188539, 12.599063661249017, 30.955944979142767, 171.10194847527794, 11.42328374099938, 66.36494912162298, 67.15415215966561, 39.523525685953274, 69.45178630870363, 76.68179481693942, 7.67561691215056, 22.79377908863714, 117.58333489668041, 52.57541438213798, 12.349224057809689, 172.26484485330502, 31.872316802105622, 15.168622494392755, 21.092899562964625, 74.31861432916152, 35.87749390095175, 5.9531985061184685, 10.173218111819962, 6.407721350501441, 5.379405868194389, 18.184194585566875, 40.698027497169406, 8.909769224285887, 46.22866980427104, 13.457976714502195, 46.35062465701477, 57.008763469524446, 14.177164524576614, 16.61714011675097, 7.364285505400448, 41.04830745138298, 42.51215027274181, 55.94189743012855, 27.923706542789912, 17.148855490647733, 11.630402034001289, 17.51568857818236, 8.15194754732739, 19.611337464863897, 20.998022934764276, 18.76526113259774, 24.104920473406292, 19.507042169411157, 20.113470419117387, 22.70137574304698, 53.05569507169317, 28.444418020655014, 9.602105390731003, 71.32181662990298, 98.73695854928476, 10.663596845265218, 26.441026615433234, 131.40435262826148, 54.35213372888772, 43.402497344290495, 20.71212607758079, 11.963730180898912, 69.48105917905097, 43.085873627605736, 32.94525382725158, 95.77805614546031, 7.641207677911293, 10.798009834004299, 6.401521158163229, 18.263549765738176, 56.22857720224279, 33.79125468255355, 29.557381060258507, 12.240553905735146, 39.58580041366912, 25.65086403066635, 46.66484722893175, 33.98622207549139, 49.29495074588793, 22.15165085292334, 15.515704813631764, 9.62117673337409, 13.76031138306286, 15.678961291459526, 6.188923069390377, 62.48943252808084, 74.64775442376981, 81.13424073954639, 9.089103637418066, 42.769855667153095, 19.519041136591124, 84.6297247782274, 106.75902370385111, 41.48422023828631, 81.34197836335262, 7.813173675041486, 33.91919915433581, 8.780266932323077, 95.15627504206611, 8.244185634656745, 47.92766676144797, 16.73097940969359, 11.89340561393316, 23.710740448376573, 105.2359666879737, 21.69927155240981, 71.57575063249075, 63.522862182761656, 23.824786055554004, 49.15071043764666, 9.536165106807136, 95.37398836555647, 15.974649745057823, 15.034942252830913, 19.84877476833138, 131.44152618664077, 17.863987946117547, 75.22804023785935, 29.374345231906645, 52.89403712192246, 5.406341390889503, 25.03918308109398, 13.357091749391088, 18.343410347842358, 19.350057271488517, 40.00604187786625, 14.166496458347739, 77.0270097683947, 37.61347943053259, 58.62020030600836, 59.998368981762596, 14.29256576394141, 7.910360267962273, 72.18194486468903, 62.22261290436741, 107.82180318329507, 6.775097901021109, 65.23481727093724, 83.50062609125891, 68.5712363453078, 16.96059456461112, 30.042676030389917, 83.02655665617432, 45.518403052891806, 15.171209184615078, 14.735659316721009, 10.971252910573913, 58.316982881474935, 53.89236082384288, 7.768596438627099, 7.398763439307848, 19.43579244854715, 75.78231155973612, 22.009845546188494, 9.154673728961264, 10.85399747608968, 22.227166652022905, 6.136818906032715, 30.1617318037744, 38.72863440543663, 38.62529234277949, 8.563321994206573, 49.29324357485982, 17.89362959623785, 24.686366987365496, 85.96646952147469, 11.619588310738557, 114.98274118872168, 35.49685354018222, 66.44976394392917, 122.1891462754648, 6.317384665097376, 7.679778021566411, 11.253307553646064, 37.01927031033604, 15.893098122174747, 112.55267702149884, 15.129190193539877, 20.91115824251291, 28.634421785355794, 73.65750518876487, 18.383637529232523, 85.16115707000279, 13.604111046712632, 65.2074878261626, 89.46251764977033, 27.698273050538806, 76.13948394920985, 15.809506154197889, 20.771461910713565, 19.97746471282129, 47.63754068426144, 10.091691274601168, 86.46098514021024, 37.05495674929048, 116.91035674309079, 73.11313029180442, 33.057583221501375, 20.65003251038584, 30.553528596786183, 17.748079013719565, 10.967910831327341, 7.826089731116082, 21.242901423335542, 9.464053049385482, 25.91713045331302, 71.8912553648623, 90.79558417689965, 42.011003738335184, 14.325995789373899, 68.90689685845099, 104.53399607355715, 84.1628235221825, 7.404153162854676, 9.90374582287865, 17.214008515873175, 34.09617035573893, 5.43306018015488, 5.365813227469456, 21.44311692522918, 15.125913802024717, 53.464808421076825, 67.12847883400481, 31.34080100127278, 66.99218498127975, 14.132188900264595, 94.63390725546367, 12.43023778072348, 48.97572127714394, 11.68297433561473, 78.90814572071909, 80.30686102738687, 5.810536805050098, 37.78130971934199, 12.469646317109266, 5.396458375225537, 6.296387448894671, 8.402968963522621, 73.73574098674823, 7.767905022484296, 90.37109893919471, 66.42332205506722, 57.329558436534334, 73.16387101097894, 27.142970932662557, 19.86823807024562, 21.715302061137248, 13.155400087465882, 155.12090638652268, 26.70787675079842, 23.467131308065817, 119.14348699225117, 37.49241294104498, 13.051587286739817, 36.47815828103862, 9.731455837280347, 20.527064219246682, 9.077440926371231, 17.038350760052232, 117.83218104932178, 7.410263863656601, 37.697955378628855, 71.88132289095057, 29.466453651767043, 6.001068253452341, 7.305563311400146, 9.091452800298041, 52.03598729548453, 5.2282046325729965, 16.304175728675464, 10.923349273083057, 32.57796406188783, 29.49203020241485, 18.399600635965253, 72.18236318344005, 7.945447518336678, 9.08615900512007, 27.667456814234548, 16.02865994266542, 17.44114534207865, 16.111905711163654, 8.726807067999916, 14.373088720986921, 127.2615112540955, 58.37238003666959, 15.581351342343215, 20.608826958564016, 90.56106263148936, 16.77622863643709, 10.91478278253716, 40.149081814089634, 48.59515623827158, 75.94695660074231, 23.26859260500793, 18.741792147646198, 10.388819023146091, 61.101608786597424, 23.75855543254079, 20.915674949123975, 18.113015149904303, 15.430765455300536, 45.02941616117582, 27.258509580846255, 80.34051515442394, 32.73678381026967, 76.84540858338502, 49.650829198331174, 21.27181439178555, 77.59153484376618, 53.52438816678518, 70.40952082672038, 68.42256134628856, 48.79936638286912, 13.75395753858755, 99.07179288507984, 12.07685639386048, 5.95624154383193, 35.15733622271422, 23.67854575609562, 46.34885211512298, 5.366206073271769, 54.2940709539599, 6.929970973840425, 15.844226500821803, 20.037365414389512, 9.623009970139087, 57.92708724029349, 55.13700184813745, 74.12194540043211, 9.234827417164803, 8.848096275097538, 42.28909394593286, 28.24946976903295, 25.76444081344591, 40.937506123274524, 44.64277085001332, 35.444444616673366, 14.723056718759008, 131.06441438330035, 18.43356466664006, 36.20372909784706, 33.31260273260976, 95.87136151252395, 51.8088491947441, 63.79361206486991, 7.4171093416087235, 43.29139475868872, 10.436218866079836, 28.995896118662337, 50.58640658939316, 21.64511677898609, 17.99825746848143, 43.34463628222703, 77.20768573355132, 61.81491699276806, 16.160529951773384, 21.208291931507745, 99.94417966994945, 8.919070254084183, 19.376139155381654, 25.016710086236696, 73.81710318098195, 86.02884291932497, 39.029022219040044, 13.91952790889087, 15.379477012634904, 16.26031373139137, 23.62561052543021, 46.68797418692536, 24.2923125182514, 42.944074538950346, 5.08942400611412, 5.451780422005695, 25.566475998487515, 6.026855637223205, 26.533180358267515, 9.112657657897433, 6.6867835011981684, 203.29807530570145, 64.47551710733784, 24.37561546832767, 48.49315414981004, 8.009440740529785, 21.275457517432667, 21.219167436658328, 19.88461447435198, 22.349423556759756, 10.374231255217865, 83.72000447591671, 9.510317486886432, 181.36843442818724, 8.861948436432849, 37.17467698670407, 92.4562066026814, 20.434124389625794, 82.75814503177054, 55.846400207536156, 15.001848595286503, 20.47318998357595, 34.07035769694825, 78.73029418217445, 20.92733800285308, 53.05403070948021, 8.7433751692709, 8.541085648126298, 21.486870204338576, 12.582311727821612, 45.42089111793324, 14.304453568419378, 40.04535476066724, 101.14903132496185, 5.352456671279011, 78.16814947300587, 103.96579114459092, 18.554473518389067, 82.96659247280729, 91.92176848485303, 74.5376656323425, 14.891641225969991, 44.1840182607046, 219.5665888340311, 191.37193759692553, 5.028335096225431, 78.81797923551906, 8.427390919620535, 26.321571350061575, 21.322072930929714, 5.684857800803831, 48.354413785464345, 8.883377568972946, 79.17788151678592, 6.44782155559893, 6.473972102110546, 84.33678573708852, 20.875062405562616, 23.154797789856588, 65.8934747350142, 69.53689468572516, 37.75331148638969, 6.905280814949054, 44.4809763630064, 93.85569558424577, 37.15572833815405, 9.903339500907919, 13.598700733139571, 59.45942882064466, 5.402271169337256, 10.133619883179884, 17.6524334810137, 85.5388645394744, 10.803544266681572, 18.08247749378122, 193.3031419862079, 21.91077980771805, 26.385481280247145, 17.132082541843236, 27.82957020624475, 101.95034230635798, 111.25386967038821, 33.49205432333741, 184.25843170650185, 38.915873290114384, 50.1599353621646, 27.34752347405057, 24.689861806870248, 56.647918558629726, 12.452350021416642, 61.45255515316326, 7.592165407948133, 5.385422453347211, 72.84664878963589, 27.752536105842115, 11.923795951164657, 7.382593984840455, 5.244365741373065, 8.802817435518154, 43.21048326050477, 20.85077196509905, 16.448918321153613, 25.879207473093434, 61.88525582922506, 42.33800431662359, 65.03337848397013, 10.326779243707472, 8.0863239010792, 67.15036209999376, 78.39091401497674, 52.995707108708416, 15.46776930355835, 19.04111721272332, 22.43669727809981, 7.589560178803756, 15.911373357810904, 18.84568056408241, 45.60756252068449, 32.92109491122941, 40.98164374682373, 57.678608223349606, 9.69320118812573, 94.31471082925643, 67.45062039840349, 10.409820670689388, 62.59223875025283, 104.52956578317348, 67.95194538168958, 28.469383283477363, 118.25539483280173, 9.518648587838763, 45.046530529192495, 17.613542279498205, 119.82494208772978, 51.127658272785965, 6.693535646763747, 16.994184945829918, 5.72893566228463, 27.016892794705637, 10.561612353855168, 10.832739398097864, 49.56989431904065, 49.53690832523287, 19.34952128819687, 42.81043194507483, 74.91721845662791, 127.60395979099594, 48.454304908986465, 87.45980610039656, 48.7392603502977, 58.482158931158935, 51.74457115743227, 13.124442211386052, 6.785229554759839, 7.294677487886848, 5.529310598159723, 52.120834732020136, 67.78615756977365, 52.30651959010019, 97.64820857060724, 27.76396614683485, 5.25513160625376, 12.488637897573472, 19.03139763826577, 48.44551498911049, 63.63024124408348, 24.654720464594234, 42.09459692488331, 7.103981082126773, 9.770467330686419, 66.09845232668985, 85.16092779949719, 16.662863200130783, 57.74026329707862, 20.872855614837775, 79.44518216617627, 69.74646917063392, 13.83085530915111, 7.388243579439331, 12.858291613544964, 37.71154085460555, 7.238208677769166, 9.36648829057765, 52.599169926738256, 27.529263028298132, 30.50087580128393, 83.6977256428338, 11.486419574617841, 84.35703515321711, 57.937869336272726, 64.29692357440149, 5.380011085375517, 23.256074698039946, 5.968940056774555, 26.385895838421455, 18.136731445659596, 54.35278413148797, 21.362089377829708, 18.69192589037546, 13.989790398835638, 32.58263668520553, 15.231233084730437, 13.462768391558715, 29.96195712428479, 51.635050519128946, 32.891608207411295, 77.60202663483335, 9.191334893495533, 40.18950254852659, 25.866123344438964, 34.97479941212847, 77.17255828339852, 6.752806079725911, 31.600121077690837, 15.072761855854163, 107.44972807654071, 14.011107829684983, 9.312234182300164, 22.840861971498697, 33.15626512639222, 91.75047169510968, 48.90251973803207, 19.999555344231872, 9.45519926118419, 7.196286130533848, 60.063638073618655, 5.171038313732432, 30.08400171352847, 6.994127173208654, 15.02229051811716, 77.43492108227812, 73.78130375576751, 20.178425575239537, 37.21369148371566, 25.13506781002799, 26.25340090809245, 21.14740557874729, 24.043689239659642, 16.58659429998872, 29.3220413913794, 24.81114148995657, 21.483221740589233, 17.224632774080124, 5.797637481492415, 6.591741204195478, 11.690757733959042, 23.20745303438104, 56.040530197543134, 11.677095480666074, 16.818259340319468, 51.63147936005523, 14.257617866476508, 76.67113701463794, 14.76649050242122, 64.03917742378916, 9.598708275352204, 19.458482256562622, 13.92442223968916, 11.696199105498104, 41.884520133234, 149.52166163742086, 26.306762567209745, 145.02525186405296, 6.506723029939177, 61.77901570305856, 44.22103639501648, 14.227680639032188, 12.722024351443153, 9.871921337959582, 7.022485028994527, 91.68949204304401, 16.30520253102877, 37.77705034385639, 40.70815127577774, 23.375545795611398, 25.397172572392243, 25.577633917907715, 34.23667540440454, 61.59170408987313, 103.79358555416857, 25.07400173548089, 15.14570945770194, 102.72887881559974, 8.66625373438115, 8.18202038723592, 16.76291088047491, 65.63351831213177, 62.349764055999785, 34.681731282051686, 107.3923620762315, 77.94443028928983, 20.69409144158324, 5.413869061579661, 87.65340097760158, 16.50289294384028, 7.256308246751085, 59.01488771721716, 6.027089914951584, 51.54655040336902, 25.08946138702073, 7.529998994972391, 6.157350871553965, 5.50083090134291, 17.373173636697008, 7.937476050964221, 95.6508110256, 56.512654036524516, 17.9185758052874, 15.950601050488435, 70.3717000229671, 86.09837447266523, 106.49540846631282, 152.58731873390377, 17.794171693173034, 7.938540512923138, 7.7995912687922155, 49.405343355256385, 63.64742550446694, 16.97487126550949, 20.106128338734504, 5.03778852558905, 52.387480958201095, 89.15607248696233, 34.74549093601989, 13.789103926399722, 83.10944042735704, 57.221422204601566, 22.423653210844268, 49.035867897584374, 14.247939361436895, 10.850249374296782, 12.563758928506047, 60.26581289556084, 114.9894761155543, 17.855287593375458, 8.375993809269445, 25.062915527753617, 44.66287339401419, 24.92691192218455, 7.001370146678424, 119.74461938637262, 46.06164266606349, 8.23811544630177, 19.075416174356338, 19.517427284655735, 27.735762956255673, 31.503452275854734, 18.610267965668193, 120.10899992593862, 15.449932310529608, 45.7583885468416, 10.352718844422022, 97.35294031099284, 13.825813030892759, 26.03519192477153, 110.21532667176339, 44.82004256706129, 21.96734338525605, 21.659720235408106, 9.79718263575373, 56.706340597912735, 59.692570619746014, 11.626332114324885, 41.057625195462975, 53.27971730993522, 24.38179996275632, 16.084239809229384, 128.85158895087196, 20.27800535989712, 7.280011873706344, 39.33660572381958, 7.869456984712933, 46.3590671578846, 79.22430838630972, 19.76444337221619, 36.85163579201242, 12.849027388151196, 18.181326182152873, 57.102794114764045, 8.823438316096365, 82.33703198186736, 50.82603516726142, 14.762697013801965, 85.62193439413072, 36.49721548563774, 46.54633962112912, 54.26345477907529, 82.36323143111221, 47.22119185975586, 25.04213698437931, 94.93467222146148, 5.391971338048442, 13.282252941571045, 138.6403247555324, 18.51951491576922, 10.659258949839051, 88.19428574489935, 9.386017253506663, 14.577347472508464, 8.156405638607318, 29.43006937826991, 15.025586464815492, 13.517524346894493, 53.985325635533876, 26.877311274991882, 16.01426704350426, 20.070864494587514, 40.832568271951736, 30.337612470013735, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3743033.2549298084, 3855661.707515929, 3921682.4590938855, 3926516.560606872, 4023922.165675572, 4026250.0, 4027011.1014674585, 4027042.1376388795, 4027599.8245514375, 4027604.6875, 4110400.5648101657, 4135463.7450751383, 4157347.20435, 4157903.1191995875, 4185667.1875, 4187109.375, 4187289.0625, 4188544.174268714, 4189686.081694517, 4191110.187677801, 4191398.451658212, 4192271.875, 4202908.680722615, 4204285.9375, 4204503.637463918, 4208350.584934958, 4208871.6125168735, 4209928.861132514, 4211143.75, 4211202.187204839, 4212367.364964079, 4213200.894466704, 4213824.7708311165, 4214415.981473566, 4215116.560129902, 4215204.6875, 4215298.370689727, 4215513.646975446, 4216141.894593219, 4216473.414938634, 4216569.404959768, 4216803.510301056, 4217212.5, 4217632.8125, 4218842.790252261, 4223703.710216755, 4224334.494071718, 4224952.366161653, 4230314.728069389, 4231488.864086229, 4231634.9107559435, 4232617.901695611, 4233986.642798939, 4238909.1843856, 4239018.75, 4239561.27193129, 4241482.8125, 4252641.591352332, 4255601.5625, 4261846.916779259, 4263028.1905563185, 4268936.745364562, 4269168.75, 4271255.113249689, 4273767.1875, 4274275.937667566, 4283945.355005473, 4283964.548577945, 4299723.649280437, 4300059.016121524, 4301989.0625, 4312426.5625, 4314807.762038912, 4319979.6875, 4328262.5, 4337489.33260482, 4339781.495383545, 4340302.972730229, 4341379.762493306, 4343734.832366426, 4344082.8125, 4344630.7212938415, 4344670.673853439, 4345317.1875, 4345687.388413732, 4346022.970517277, 4346024.263522334, 4346237.294134824, 4346334.375, 4346470.60881068, 4346562.947944027, 4346606.25, 4346627.0122644175, 4346687.355758026, 4346887.173020485, 4346907.180793932, 4346941.556938285, 4346998.078086998, 4347259.471400655, 4347262.80247791, 4347375.605511271, 4347451.214060604, 4347620.3125, 4347643.75, 4347698.507155455, 4347703.930601731, 4347744.925574107, 4347757.043438996, 4347925.187555348, 4347929.6875, 4348359.375, 4348658.48527682, 4348742.1875, 4348872.192166123, 4348912.912434118, 4350832.47904669, 4351540.625, 4352037.575146488, 4363255.450978554, 4363450.0, 4364559.260623739, 4364613.910827813, 4364955.72394721, 4365031.861385054, 4365125.195582853, 4365307.8125, 4365427.672297855, 4365450.0, 4365490.473507417, 4365663.615474623, 4365757.8125, 4365790.359554559, 4366172.244882093, 4366181.998918266, 4366230.513483233, 4366280.161310678, 4366420.3125, 4366433.857841613, 4366608.127247258, 4366687.5, 4367171.8858136935, 4367361.821004052, 4367432.992802735, 4367482.345613806, 4367485.476191978, 4367548.53368567, 4367664.106812758, 4367667.771898927, 4368092.851009341, 4368740.159334894, 4369301.5625, 4369373.095092685, 4369398.676568939, 4369742.5717935935, 4371570.3125, 4371736.597216074, 4371827.5860864045, 4372117.31478111, 4373802.669309655, 4376942.601747926, 4379207.8125, 4380577.752919036, 4385709.21353963, 4385736.730783562, 4389150.953438138, 4400160.22895599, 4400180.405316403, 4409938.63096628, 4425599.155661128, 4425608.922395933, 4430560.008492212, 4432065.61053738, 4434740.324257786, 4435047.636195951, 4435879.70934497, 4437910.239606072, 4443071.875, 4443637.0455328, 4447213.368257761, 4450750.0, 4453623.4375, 4457612.5, 4462149.56353671, 4465569.148241046, 4466784.375, 4469420.3125, 4470251.328065413, 4470805.730299663, 4471726.428001134, 4471876.765898142, 4471954.838202511, 4471961.983298615, 4472023.312344867, 4472032.8125, 4472270.3125, 4472313.881878841, 4472413.739719977, 4472619.743406586, 4472821.559158479, 4472858.067365684, 4472998.4375, 4473327.513565925, 4473455.358915192, 4473569.919683861, 4473679.6875, 4473844.741296655, 4474057.570872744, 4474057.958296537, 4474359.375, 4474436.976761503, 4474495.479672895, 4474522.159860391, 4474536.807663318, 4474671.057391515, 4474857.309652399, 4474913.273703708, 4475035.9375, 4475214.0625, 4475323.142897953, 4475409.118900318, 4475549.809971059, 4475621.302987758, 4475673.4375, 4475981.25, 4476029.883280269, 4476088.683698634, 4476145.237356301, 4476201.5625, 4476305.591536753, 4476323.762742232, 4476362.5, 4476468.808336478, 4476707.560437541, 4476845.753214426, 4476903.250782012, 4477009.532032241, 4477013.3519888045, 4477044.7867801655, 4477058.867094112, 4477070.964038356, 4477118.75, 4477174.455381591, 4477275.0, 4477294.09376437, 4477307.384877878, 4477326.5625, 4477501.34638939, 4477526.942137848, 4477560.224694773, 4477749.910154815, 4477794.32463686, 4477815.341910833, 4477969.001227358, 4477998.916851204, 4478029.986943907, 4478158.355953745, 4478179.423930222, 4478194.600623393, 4478264.922774993, 4478703.862349639, 4478879.414730604, 4479293.566550838, 4479322.78710486, 4479401.17565488, 4479458.801209275, 4479468.41684624, 4479586.2411886165, 4479995.3125, 4480109.375, 4480398.767525823, 4493267.072479673, 4499057.978544534, 4500287.5, 4506621.875, 4509056.494167938, 4509795.788736329, 4510434.375, 4511323.4375, 4511900.973638348, 4512588.717750535, 4513168.853775281, 4513373.215807671, 4514136.93151047, 4514297.542668616, 4515405.363316829, 4516818.75, 4517670.3125, 4517808.424225802, 4517906.330608081, 4518374.835492747, 4518931.25, 4520278.125, 4520659.375, 4522485.501076246, 4523868.892909326, 4524603.44891076, 4524838.7137557585, 4527190.805899857, 4530252.479275284, 4531042.1875, 4534000.0, 4536185.9375, 4536580.9488347005, 4540129.6875, 4540605.526380126, 4541032.8125, 4541164.0625, 4542434.375, 4542728.125, 4542731.795393783, 4543345.3125, 4543483.642359574, 4545111.178890269, 4545863.981467094, 4546328.125, 4546712.78351287, 4547237.081825536, 4547607.509361984, 4547774.66924219, 4547776.082922285, 4547852.1566192135, 4547959.375, 4547982.518274643, 4548159.1009803545, 4548203.3576262565, 4548263.984797249, 4548306.496994531, 4548467.890775962, 4548580.006713896, 4548690.625, 4549020.913600049, 4549200.0, 4550315.532892112, 4552128.125, 4552242.391782088, 4552429.482089913, 4552519.823796651, 4552883.488259305, 4556110.192005398, 4556245.998368484, 4556385.028953379, 4557526.85484028, 4559125.0, 4559806.25, 4560010.9375, 4562448.25614462, 4563878.90117885, 4564704.6875, 4567119.750651826, 4568528.125, 4569401.620284557, 4569959.18477798, 4570326.5625, 4570338.584146514, 4570366.070006863, 4571145.428626561, 4571215.625, 4571257.8125, 4571300.058986812, 4571303.4401109405, 4571731.14754538, 4572071.209031104, 4572144.517609669, 4572241.060165772, 4572710.334411227, 4573371.140664888, 4573475.0, 4573757.362786681, 4574393.533324129, 4574712.317535444, 4574971.445567392, 4575089.518320698, 4575700.0, 4576496.767902254, 4576514.0625, 4576572.3640650185, 4577100.0, 4577180.293369212, 4577289.271177007, 4578240.625, 4578562.793437457, 4578629.063167263, 4579117.1875, 4579510.9375, 4579704.505381693, 4580534.762160155, 4580611.144278079, 4581362.578896329, 4581373.703257083, 4581395.541603223, 4581439.0625, 4581729.73588399, 4582709.897597628, 4582716.954233074, 4582717.1875, 4586222.556792042, 4591235.9375, 4592932.410983116, 4593434.482865293, 4594623.151845827, 4594793.706818828, 4599229.6875, 4602112.621784879, 4604068.174482803, 4605110.011193214, 4606177.032672597, 4613382.030376682, 4616698.4375, 4618404.486323532, 4618981.990771383, 4619106.25, 4619879.780327774, 4620005.661118903, 4620489.0625, 4620495.1454783585, 4620828.020304065, 4620836.514305676, 4620930.724547577, 4620970.4653204335, 4621152.977573517, 4621226.560111885, 4621464.292378126, 4621537.428631977, 4621565.453562694, 4621641.410617642, 4621643.75, 4621811.470407987, 4621885.3513396345, 4621969.357297171, 4622273.92850314, 4622614.0625, 4623438.376176593, 4623686.618549056, 4624261.99497477, 4624439.110053775, 4624976.5625, 4625375.0, 4625406.981650254, 4625587.5, 4625943.52012238, 4626053.486406036, 4626083.632699897, 4627348.4375, 4627383.8552007815, 4627639.707338932, 4628296.875, 4628846.828352654, 4628903.125, 4629049.154378795, 4629184.322173953, 4629258.040090276, 4629720.5262987325, 4629745.3125, 4631144.183433523, 4631346.382392532, 4631689.0625, 4632064.0625, 4632304.6875, 4632946.801065414, 4633138.382575104, 4633504.972054025, 4633519.748986726, 4640990.625, 4641778.025902539, 4641839.15649223, 4642517.435335614, 4644940.625, 4646554.0841315, 4647680.84397575, 4647880.125540757, 4658259.35293966, 4663984.05856207, 4665033.011611512, 4667253.125, 4667802.557960728, 4668397.824859657, 4668476.5625, 4668818.75, 4669194.431838933, 4669483.469462093, 4670109.076901927, 4670770.3125, 4671047.820718203, 4671151.037723442, 4671932.677702203, 4672676.847866794, 4673109.375, 4675371.246768188, 4675705.458985739, 4676688.356445399, 4678598.132485704, 4679406.205150547, 4680352.205807928, 4681512.776886691, 4681830.545074665, 4682939.811507624, 4683557.654922209, 4684179.6875, 4684821.875, 4685295.470818177, 4685705.768238165, 4685729.6875, 4685839.349623599, 4685933.174411106, 4686338.667641654, 4687405.141311704, 4688646.875, 4688809.036293023, 4689108.54651792, 4689757.282072725, 4690878.125, 4690900.300636925, 4691893.190099853, 4691952.203028983, 4693518.872701362, 4693892.1875, 4694756.182586867, 4694851.5625, 4694968.75, 4695325.0, 4695622.077276801, 4695676.040027291, 4696629.54228846, 4696772.204081736, 4696944.492992135, 4697017.1875, 4697121.875, 4697471.841983729, 4697648.4375, 4697723.970276132, 4698072.066316959, 4698315.759836691, 4698348.131826948, 4698640.139488716, 4699211.629483393, 4699309.375, 4701880.467796914, 4702879.9057599455, 4702902.465539359, 4702905.013346931, 4703023.4375, 4703610.9375, 4703839.0625, 4704074.883532546, 4704502.492185936, 4705068.72744505, 4705314.048432388, 4705589.989356445, 4705603.125, 4705922.903681799, 4705996.459434358, 4706017.178749399, 4706026.5625, 4706207.28071618, 4706740.8811447425, 4706865.258852518, 4706896.228091645, 4707146.875, 4707460.9375, 4707515.079290941, 4707608.621650825, 4707695.391234483, 4708072.837999069, 4708415.625, 4708433.8901051, 4711456.82297677, 4711686.553028325, 4712493.536218687, 4713380.030492147, 4714604.97435177, 4718113.440968915, 4719772.530466411, 4719927.593476569, 4720586.757913741, 4721038.855541073, 4721064.920030815, 4726560.9375, 4732196.875, 4732252.122052592, 4732262.610348779, 4732695.62023525, 4734771.686611011, 4735665.625, 4738538.803747019, 4752040.442784924, 4752118.285582987, 4760940.390254901, 4761929.594985663, 4762010.327233442, 4777553.015521736, 4796034.104451891, 4796141.790652615, 4797480.313119171, 4798310.9375, 4798735.684893684, 4799229.6875, 4799613.498889109, 4800544.790402022, 4809026.034593971, 4809027.447076102, 4830157.898762319, 4830368.207793725, 4922316.159551335, 4937051.766776691, 4942820.252161771, 4946241.574704598, 4948519.856144778, 4952381.143440479, 4952489.311573291, 4952628.102224093, 4952916.776825461, 4953053.1407411285, 4953507.309541167, 4954389.773979824, 4983993.560281497, 4987340.0663509965, 4988082.8125, 4988807.024274748, 4992200.452147377, 4993802.624375242, 4994128.891448723, 4994546.061767013, 4995842.009679135, 5010287.5, 5016143.75, 5019770.616756557, 5019839.0625, 5022524.895840186, 5025618.943975719, 5028887.18983814, 5037556.25, 5038218.266391524, 5038412.835707065, 5038432.8125, 5038724.208213642, 5039569.496669754, 5039639.826216905, 5040285.9375, 5041309.632115092, 5041819.1101163225, 5042507.295182694, 5042579.337799344, 5042750.087477915, 5043304.105432942, 5043539.0625, 5043905.994830621, 5044060.853296437, 5044464.0625, 5044536.935729409, 5046196.526868261, 5046626.5625, 5046929.2455400545, 5047071.875, 5047113.170949762, 5047172.884581129, 5047373.4375, 5048195.3125, 5048455.294410328, 5048507.409123336, 5048555.516869266, 5053409.473972117, 5056446.129957797, 5057906.816445674, 5058942.89657037, 5062395.094715626, 5062565.273500017, 5062790.978940022, 5081419.853375293, 5081420.194116838, 5081653.601332333, 5082221.838877739, 5083271.875, 5085221.4354889, 5085375.0, 5085779.521964076, 5088081.25, 5092104.6875, 5092504.625066496, 5093116.456906459, 5093795.3125, 5094411.646647004, 5095348.4375, 5095353.094282682, 5095429.341847711, 5100568.722508091, 5101723.397245764, 5105617.643374812, 5113594.658265683, 5118281.222122981, 5118382.113384236, 5119015.625, 5119297.870605163, 5120664.408767996, 5121720.162666575, 5121935.54252194, 5122082.8125, 5122090.908164212, 5122750.981581435, 5124410.538595619, 5124610.9375, 5125260.9375, 5127204.6875, 5130322.006542876, 5130672.0128013985, 5131113.652159957, 5132870.274524723, 5132995.5456344765, 5133441.373684449, 5133465.932237356, 5133568.75, 5133834.12599851, 5134159.492008134, 5134175.398982583, 5134314.0625, 5134413.55756948, 5134876.0489312885, 5135114.0625, 5135133.3691331325, 5135253.125, 5136678.122176814, 5136749.086143348, 5138323.650945095, 5140667.1875, 5141428.6849548025, 5141602.34161764, 5142076.5625, 5143121.514114589, 5143662.951209617, 5143765.967921798, 5144130.612156243, 5144208.979896282, 5144629.490220586, 5144828.125, 5144945.05969683, 5145633.629435232, 5146409.375, 5146526.7244639015, 5147461.067490028, 5148695.3125, 5151333.179144005, 5166264.0625, 5197201.5625, 5226460.519342198, 5231997.862200082, 5252217.295344355, 5254749.057892945, 5260837.422076835, 5260914.0625, 5261191.08553315, 5261842.1875, 5262052.592885825, 5262267.147860568, 5262337.852929347, 5265074.5413520355, 5265133.5868864935, 5267931.213257474, 5273921.096775476, 5274234.142620645, 5274885.9375, 5275828.058119463, 5283630.164805324, 5286227.422959476, 5286413.8247602135, 5286526.06084892, 5286751.5625, 5293438.497991313, 5293449.728953245, 5293685.195125528, 5293718.424520004, 5294536.863697494, 5295343.0698352875, 5297784.149288186, 5298683.2387920935, 5298846.916204106, 5300040.625, 5312404.369565728, 5319956.25, 5320281.25, 5322490.8429797655, 5322754.6875, 5324525.0, 5324865.562418313, 5324941.696000069, 5325210.59776181, 5325220.645506639, 5325442.144644043, 5327875.644209815, 5328751.5625, 5333277.071693224, 5333941.35190261, 5334097.588230553, 5334611.083385092, 5334948.511491023, 5336435.48667331, 5336467.509871235, 5337937.5, 5338658.943437109, 5338690.625, 5340188.892068641, 5340785.9375, 5341209.224334168, 5341220.437008101, 5341917.1875, 5342601.508664334, 5347425.972496723, 5349843.7840146385, 5351418.75, 5352052.8574234, 5353645.289742395, 5353654.6823716, 5354310.9375, 5354776.5625, 5355913.69977746, 5356683.711002731, 5356689.205367034, 5357028.402233667, 5357306.25, 5357392.429590104, 5357422.995153816, 5357429.17993192, 5357585.95853365, 5357615.912379645, 5357663.937861152, 5357675.967126336, 5357714.045018315, 5357760.738660691, 5357760.811051951, 5357805.714633131, 5357813.785092895, 5357840.998646628, 5357870.3125, 5357878.298140537, 5357893.249009157, 5357903.97581884, 5357907.589155758, 5357939.699109815, 5357944.082643878, 5357983.589835452, 5358121.875, 5358153.450176461, 5358173.505871949, 5358174.715416339, 5358179.495704762, 5358217.172694198, 5358312.45331122, 5358321.320782545, 5358333.112571133, 5358367.819164842, 5358385.826742016, 5358400.335610264, 5358442.1875, 5358451.280325158, 5358454.152975066, 5358586.802530012, 5358648.561602931, 5358649.97671845, 5358667.112804378, 5358670.111703057, 5358721.123098942, 5358722.451826365, 5358749.609643131, 5358823.4375, 5358851.87951635, 5358866.450874774, 5358879.6875, 5358908.213365195, 5358917.799626538, 5358932.643220014, 5358946.103011419, 5358970.957426155, 5359028.176682867, 5359066.984482988, 5359090.677562196, 5359214.0625, 5359219.4050161475, 5359235.734405663, 5359276.970323474, 5359278.125, 5359318.75, 5359329.6875, 5359345.403294422, 5359373.4375, 5359379.852863567, 5359398.83445118, 5359410.990908493, 5359469.107075384, 5359469.239323457, 5359483.243774345, 5359527.517152161, 5359539.959692605, 5359541.191391697, 5359640.41786206, 5359641.265612013, 5359668.067110208, 5359677.713542034, 5359816.463346966, 5359842.122600445, 5359853.125, 5359867.797366776, 5359889.014805514, 5359984.788415271, 5360002.987762556, 5360015.625, 5360024.021694699, 5360024.027284018, 5360027.403268356, 5360059.887108578, 5360112.475017361, 5360142.1875, 5360170.920482966, 5360194.661234097, 5360226.338458789, 5360307.8125, 5360339.0625, 5360441.05888991, 5360507.473293013, 5360510.9375, 5360654.247425446, 5360768.964801166, 5360838.707112854, 5360915.430300519, 5361348.329643087, 5361507.008379335, 5361783.690236784, 5362184.804808932, 5362208.401687055, 5362712.665345113, 5363059.171221909, 5363315.625, 5363331.95370938, 5363343.272606417, 5363450.660482692, 5363541.529002875, 5364345.219719639, 5364392.967883421, 5364414.901173519, 5364490.583842474, 5364510.9375, 5364597.5901436545, 5364632.811727071, 5364678.252288344, 5365092.7016791, 5365122.877819143, 5366125.335063513, 5366388.73536862, 5366554.975288227, 5366682.8125, 5367085.015030267, 5367962.046261868, 5368074.516542214, 5368141.128870302, 5368157.8125, 5368293.75, 5368795.6096853735, 5368819.7029606085, 5368921.875, 5369198.185347982, 5369269.020645907, 5369456.119636794, 5370194.681408136, 5371469.320698558, 5371793.75, 5371981.9305948205, 5372351.5625, 5372512.027574951, 5373121.182293871, 5373121.875, 5374388.378567036, 5374457.040167185, 5375079.6875, 5444807.143745276, 5445086.851860889, 5482871.259536957, 5488621.827281897, 5488643.71400511, 5497399.339972942, 5515367.1875, 5518297.853355548, 5522009.375, 5536746.875, 5561499.919212196, 5587848.938225117, 5590624.828853918, 5592502.904370013, 5611039.713291561, 5623820.905741002, 5637513.740597632, 5643736.136549746, 5645906.31389095, 5654951.463560429, 5659088.807955404, 5659245.932251738, 5663034.396885093, 5663482.221606944, 5671079.6875, 5672012.410816961, 5673081.5055958405, 5675673.50302082, 5689379.31656347, 5692832.8125, ...], [5.304952074287514, 12.590539993637659, 23.091709833064282, 5.667989562729767, 11.614626700413698, 76.63706515154912, 11.39404975658248, 5.202153465301828, 25.483728944393757, 62.89687801911685, 8.609689424634457, 6.227910071130496, 8.468776334572214, 9.326503409478134, 67.17797766091317, 95.55713934648752, 37.425055286155924, 16.849572306445523, 5.8247270246118354, 10.128180746823904, 15.72474194142223, 36.99361084006101, 99.12015312531258, 75.86035666467289, 9.80588120249799, 30.075734302714764, 24.24209640532073, 10.042449971670829, 34.83112963683253, 5.310782025000364, 23.363194104283714, 77.62724242081127, 6.718601252801302, 9.652178483087743, 7.980518397942443, 90.00365918909273, 14.692831192895481, 22.91919186869875, 13.931420105592903, 28.08599169623805, 18.206465258947873, 16.64615397697557, 50.634106578554594, 101.20414016003613, 17.874242208427557, 8.622355791522258, 77.2673237942235, 10.117949042975788, 8.672969213714614, 31.217677047772725, 61.86251473134672, 7.322762201810714, 18.542614197153526, 25.256349614540166, 56.634013076084, 19.70754098405779, 40.20762820983022, 20.584755794984858, 53.81114384857748, 15.103179981409959, 8.321551539100636, 10.12271408561543, 77.74040848959845, 7.238053899124785, 36.47189284806776, 5.187790079688132, 53.85539392428196, 17.186388094458955, 20.951290238527342, 6.051557531769013, 31.410755927781615, 68.62123679449589, 31.91846228012664, 37.98210839335435, 170.71746286686835, 50.1251037204231, 38.93065876407087, 5.127261184377361, 6.778571327425882, 17.027703750802008, 147.17674731616748, 13.248108233899538, 108.60697203897381, 87.20172324456883, 13.584200269273758, 21.82891190309666, 77.03761733933533, 14.210904431774527, 84.54151401049494, 103.69072177625334, 11.908354547796934, 46.43892951107422, 19.90526222001223, 8.211744763428014, 13.826276506045936, 33.96428482089938, 12.982147335392188, 10.608842192834004, 15.322130898730867, 135.04650253627588, 15.746573731999169, 10.623508044459768, 39.400225797907424, 74.2167999271552, 11.238356653064036, 12.673531746878098, 33.92843129869916, 77.51599393773122, 15.708053987877411, 51.899221031008416, 82.30094697087581, 12.371965754785101, 102.40994495815627, 18.191481609128317, 82.72861298694522, 48.37769828304549, 69.8839922983979, 7.630644904455934, 66.1298542321326, 62.79061205680563, 92.62709784278056, 25.850326223407727, 13.255255454971053, 5.1798491858505615, 28.439175368860358, 54.36914260341665, 13.457477603172245, 35.32507288354966, 25.853143834849927, 68.54469739841797, 34.92436820435621, 23.952653284899256, 5.5513054778073405, 5.368256468247047, 5.371044848406331, 49.115148955089666, 54.010871112816055, 14.664706574629069, 9.612517619425859, 76.98509158337197, 171.92440518631363, 52.64009723824157, 5.072189763799935, 66.27693032508596, 10.475860990521209, 14.9656945644542, 5.343442414762832, 5.5621318049413855, 64.47495846919543, 18.887113428984023, 59.9568369131417, 97.15967561867868, 9.542075256723425, 5.973585711259481, 72.4463176188666, 40.857096451378716, 13.220719535623038, 148.80356916090443, 10.48304547478215, 22.38690958268966, 30.245545310806165, 31.923591247151393, 70.1562717560341, 5.572860923418137, 40.31306858091365, 19.637734803661296, 12.471748794828754, 22.204404003896762, 18.631133531940694, 8.060906266149972, 19.33074397369706, 19.60236053658764, 10.688058772496575, 8.734783589417773, 21.99978627635761, 10.187822166711497, 44.649732728261185, 6.676045199859623, 6.95017931726227, 70.73670771992485, 109.67771694382714, 68.14790155539107, 68.05754669855885, 11.812994998351822, 53.22055458787402, 95.39585516648594, 24.626006646876586, 6.99122607647651, 85.27613846463467, 43.537536913086115, 6.103912423743381, 21.32809732028356, 34.586014326535036, 68.59558760643124, 45.44370055494612, 25.405623542458528, 13.83911086781353, 13.140716588929234, 28.926883560829395, 8.426115474591331, 28.81613027700026, 7.987704490983388, 12.3689872362311, 13.629506693979184, 68.49584265217365, 10.338617538337337, 24.526153177753027, 24.054864871212995, 70.78307357247135, 12.36078288809384, 6.797346665577245, 11.604202040258954, 5.500396954102994, 12.53293399624629, 8.939570688188539, 12.599063661249017, 30.955944979142767, 171.10194847527794, 11.42328374099938, 66.36494912162298, 67.15415215966561, 39.523525685953274, 69.45178630870363, 76.68179481693942, 7.67561691215056, 22.79377908863714, 117.58333489668041, 52.57541438213798, 12.349224057809689, 172.26484485330502, 31.872316802105622, 15.168622494392755, 21.092899562964625, 74.31861432916152, 35.87749390095175, 5.9531985061184685, 10.173218111819962, 6.407721350501441, 5.379405868194389, 18.184194585566875, 40.698027497169406, 8.909769224285887, 46.22866980427104, 13.457976714502195, 46.35062465701477, 57.008763469524446, 14.177164524576614, 16.61714011675097, 7.364285505400448, 41.04830745138298, 42.51215027274181, 55.94189743012855, 27.923706542789912, 17.148855490647733, 11.630402034001289, 17.51568857818236, 8.15194754732739, 19.611337464863897, 20.998022934764276, 18.76526113259774, 24.104920473406292, 19.507042169411157, 20.113470419117387, 22.70137574304698, 53.05569507169317, 28.444418020655014, 9.602105390731003, 71.32181662990298, 98.73695854928476, 10.663596845265218, 26.441026615433234, 131.40435262826148, 54.35213372888772, 43.402497344290495, 20.71212607758079, 11.963730180898912, 69.48105917905097, 43.085873627605736, 32.94525382725158, 95.77805614546031, 7.641207677911293, 10.798009834004299, 6.401521158163229, 18.263549765738176, 56.22857720224279, 33.79125468255355, 29.557381060258507, 12.240553905735146, 39.58580041366912, 25.65086403066635, 46.66484722893175, 33.98622207549139, 49.29495074588793, 22.15165085292334, 15.515704813631764, 9.62117673337409, 13.76031138306286, 15.678961291459526, 6.188923069390377, 62.48943252808084, 74.64775442376981, 81.13424073954639, 9.089103637418066, 42.769855667153095, 19.519041136591124, 84.6297247782274, 106.75902370385111, 41.48422023828631, 81.34197836335262, 7.813173675041486, 33.91919915433581, 8.780266932323077, 95.15627504206611, 8.244185634656745, 47.92766676144797, 16.73097940969359, 11.89340561393316, 23.710740448376573, 105.2359666879737, 21.69927155240981, 71.57575063249075, 63.522862182761656, 23.824786055554004, 49.15071043764666, 9.536165106807136, 95.37398836555647, 15.974649745057823, 15.034942252830913, 19.84877476833138, 131.44152618664077, 17.863987946117547, 75.22804023785935, 29.374345231906645, 52.89403712192246, 5.406341390889503, 25.03918308109398, 13.357091749391088, 18.343410347842358, 19.350057271488517, 40.00604187786625, 14.166496458347739, 77.0270097683947, 37.61347943053259, 58.62020030600836, 59.998368981762596, 14.29256576394141, 7.910360267962273, 72.18194486468903, 62.22261290436741, 107.82180318329507, 6.775097901021109, 65.23481727093724, 83.50062609125891, 68.5712363453078, 16.96059456461112, 30.042676030389917, 83.02655665617432, 45.518403052891806, 15.171209184615078, 14.735659316721009, 10.971252910573913, 58.316982881474935, 53.89236082384288, 7.768596438627099, 7.398763439307848, 19.43579244854715, 75.78231155973612, 22.009845546188494, 9.154673728961264, 10.85399747608968, 22.227166652022905, 6.136818906032715, 30.1617318037744, 38.72863440543663, 38.62529234277949, 8.563321994206573, 49.29324357485982, 17.89362959623785, 24.686366987365496, 85.96646952147469, 11.619588310738557, 114.98274118872168, 35.49685354018222, 66.44976394392917, 122.1891462754648, 6.317384665097376, 7.679778021566411, 11.253307553646064, 37.01927031033604, 15.893098122174747, 112.55267702149884, 15.129190193539877, 20.91115824251291, 28.634421785355794, 73.65750518876487, 18.383637529232523, 85.16115707000279, 13.604111046712632, 65.2074878261626, 89.46251764977033, 27.698273050538806, 76.13948394920985, 15.809506154197889, 20.771461910713565, 19.97746471282129, 47.63754068426144, 10.091691274601168, 86.46098514021024, 37.05495674929048, 116.91035674309079, 73.11313029180442, 33.057583221501375, 20.65003251038584, 30.553528596786183, 17.748079013719565, 10.967910831327341, 7.826089731116082, 21.242901423335542, 9.464053049385482, 25.91713045331302, 71.8912553648623, 90.79558417689965, 42.011003738335184, 14.325995789373899, 68.90689685845099, 104.53399607355715, 84.1628235221825, 7.404153162854676, 9.90374582287865, 17.214008515873175, 34.09617035573893, 5.43306018015488, 5.365813227469456, 21.44311692522918, 15.125913802024717, 53.464808421076825, 67.12847883400481, 31.34080100127278, 66.99218498127975, 14.132188900264595, 94.63390725546367, 12.43023778072348, 48.97572127714394, 11.68297433561473, 78.90814572071909, 80.30686102738687, 5.810536805050098, 37.78130971934199, 12.469646317109266, 5.396458375225537, 6.296387448894671, 8.402968963522621, 73.73574098674823, 7.767905022484296, 90.37109893919471, 66.42332205506722, 57.329558436534334, 73.16387101097894, 27.142970932662557, 19.86823807024562, 21.715302061137248, 13.155400087465882, 155.12090638652268, 26.70787675079842, 23.467131308065817, 119.14348699225117, 37.49241294104498, 13.051587286739817, 36.47815828103862, 9.731455837280347, 20.527064219246682, 9.077440926371231, 17.038350760052232, 117.83218104932178, 7.410263863656601, 37.697955378628855, 71.88132289095057, 29.466453651767043, 6.001068253452341, 7.305563311400146, 9.091452800298041, 52.03598729548453, 5.2282046325729965, 16.304175728675464, 10.923349273083057, 32.57796406188783, 29.49203020241485, 18.399600635965253, 72.18236318344005, 7.945447518336678, 9.08615900512007, 27.667456814234548, 16.02865994266542, 17.44114534207865, 16.111905711163654, 8.726807067999916, 14.373088720986921, 127.2615112540955, 58.37238003666959, 15.581351342343215, 20.608826958564016, 90.56106263148936, 16.77622863643709, 10.91478278253716, 40.149081814089634, 48.59515623827158, 75.94695660074231, 23.26859260500793, 18.741792147646198, 10.388819023146091, 61.101608786597424, 23.75855543254079, 20.915674949123975, 18.113015149904303, 15.430765455300536, 45.02941616117582, 27.258509580846255, 80.34051515442394, 32.73678381026967, 76.84540858338502, 49.650829198331174, 21.27181439178555, 77.59153484376618, 53.52438816678518, 70.40952082672038, 68.42256134628856, 48.79936638286912, 13.75395753858755, 99.07179288507984, 12.07685639386048, 5.95624154383193, 35.15733622271422, 23.67854575609562, 46.34885211512298, 5.366206073271769, 54.2940709539599, 6.929970973840425, 15.844226500821803, 20.037365414389512, 9.623009970139087, 57.92708724029349, 55.13700184813745, 74.12194540043211, 9.234827417164803, 8.848096275097538, 42.28909394593286, 28.24946976903295, 25.76444081344591, 40.937506123274524, 44.64277085001332, 35.444444616673366, 14.723056718759008, 131.06441438330035, 18.43356466664006, 36.20372909784706, 33.31260273260976, 95.87136151252395, 51.8088491947441, 63.79361206486991, 7.4171093416087235, 43.29139475868872, 10.436218866079836, 28.995896118662337, 50.58640658939316, 21.64511677898609, 17.99825746848143, 43.34463628222703, 77.20768573355132, 61.81491699276806, 16.160529951773384, 21.208291931507745, 99.94417966994945, 8.919070254084183, 19.376139155381654, 25.016710086236696, 73.81710318098195, 86.02884291932497, 39.029022219040044, 13.91952790889087, 15.379477012634904, 16.26031373139137, 23.62561052543021, 46.68797418692536, 24.2923125182514, 42.944074538950346, 5.08942400611412, 5.451780422005695, 25.566475998487515, 6.026855637223205, 26.533180358267515, 9.112657657897433, 6.6867835011981684, 203.29807530570145, 64.47551710733784, 24.37561546832767, 48.49315414981004, 8.009440740529785, 21.275457517432667, 21.219167436658328, 19.88461447435198, 22.349423556759756, 10.374231255217865, 83.72000447591671, 9.510317486886432, 181.36843442818724, 8.861948436432849, 37.17467698670407, 92.4562066026814, 20.434124389625794, 82.75814503177054, 55.846400207536156, 15.001848595286503, 20.47318998357595, 34.07035769694825, 78.73029418217445, 20.92733800285308, 53.05403070948021, 8.7433751692709, 8.541085648126298, 21.486870204338576, 12.582311727821612, 45.42089111793324, 14.304453568419378, 40.04535476066724, 101.14903132496185, 5.352456671279011, 78.16814947300587, 103.96579114459092, 18.554473518389067, 82.96659247280729, 91.92176848485303, 74.5376656323425, 14.891641225969991, 44.1840182607046, 219.5665888340311, 191.37193759692553, 5.028335096225431, 78.81797923551906, 8.427390919620535, 26.321571350061575, 21.322072930929714, 5.684857800803831, 48.354413785464345, 8.883377568972946, 79.17788151678592, 6.44782155559893, 6.473972102110546, 84.33678573708852, 20.875062405562616, 23.154797789856588, 65.8934747350142, 69.53689468572516, 37.75331148638969, 6.905280814949054, 44.4809763630064, 93.85569558424577, 37.15572833815405, 9.903339500907919, 13.598700733139571, 59.45942882064466, 5.402271169337256, 10.133619883179884, 17.6524334810137, 85.5388645394744, 10.803544266681572, 18.08247749378122, 193.3031419862079, 21.91077980771805, 26.385481280247145, 17.132082541843236, 27.82957020624475, 101.95034230635798, 111.25386967038821, 33.49205432333741, 184.25843170650185, 38.915873290114384, 50.1599353621646, 27.34752347405057, 24.689861806870248, 56.647918558629726, 12.452350021416642, 61.45255515316326, 7.592165407948133, 5.385422453347211, 72.84664878963589, 27.752536105842115, 11.923795951164657, 7.382593984840455, 5.244365741373065, 8.802817435518154, 43.21048326050477, 20.85077196509905, 16.448918321153613, 25.879207473093434, 61.88525582922506, 42.33800431662359, 65.03337848397013, 10.326779243707472, 8.0863239010792, 67.15036209999376, 78.39091401497674, 52.995707108708416, 15.46776930355835, 19.04111721272332, 22.43669727809981, 7.589560178803756, 15.911373357810904, 18.84568056408241, 45.60756252068449, 32.92109491122941, 40.98164374682373, 57.678608223349606, 9.69320118812573, 94.31471082925643, 67.45062039840349, 10.409820670689388, 62.59223875025283, 104.52956578317348, 67.95194538168958, 28.469383283477363, 118.25539483280173, 9.518648587838763, 45.046530529192495, 17.613542279498205, 119.82494208772978, 51.127658272785965, 6.693535646763747, 16.994184945829918, 5.72893566228463, 27.016892794705637, 10.561612353855168, 10.832739398097864, 49.56989431904065, 49.53690832523287, 19.34952128819687, 42.81043194507483, 74.91721845662791, 127.60395979099594, 48.454304908986465, 87.45980610039656, 48.7392603502977, 58.482158931158935, 51.74457115743227, 13.124442211386052, 6.785229554759839, 7.294677487886848, 5.529310598159723, 52.120834732020136, 67.78615756977365, 52.30651959010019, 97.64820857060724, 27.76396614683485, 5.25513160625376, 12.488637897573472, 19.03139763826577, 48.44551498911049, 63.63024124408348, 24.654720464594234, 42.09459692488331, 7.103981082126773, 9.770467330686419, 66.09845232668985, 85.16092779949719, 16.662863200130783, 57.74026329707862, 20.872855614837775, 79.44518216617627, 69.74646917063392, 13.83085530915111, 7.388243579439331, 12.858291613544964, 37.71154085460555, 7.238208677769166, 9.36648829057765, 52.599169926738256, 27.529263028298132, 30.50087580128393, 83.6977256428338, 11.486419574617841, 84.35703515321711, 57.937869336272726, 64.29692357440149, 5.380011085375517, 23.256074698039946, 5.968940056774555, 26.385895838421455, 18.136731445659596, 54.35278413148797, 21.362089377829708, 18.69192589037546, 13.989790398835638, 32.58263668520553, 15.231233084730437, 13.462768391558715, 29.96195712428479, 51.635050519128946, 32.891608207411295, 77.60202663483335, 9.191334893495533, 40.18950254852659, 25.866123344438964, 34.97479941212847, 77.17255828339852, 6.752806079725911, 31.600121077690837, 15.072761855854163, 107.44972807654071, 14.011107829684983, 9.312234182300164, 22.840861971498697, 33.15626512639222, 91.75047169510968, 48.90251973803207, 19.999555344231872, 9.45519926118419, 7.196286130533848, 60.063638073618655, 5.171038313732432, 30.08400171352847, 6.994127173208654, 15.02229051811716, 77.43492108227812, 73.78130375576751, 20.178425575239537, 37.21369148371566, 25.13506781002799, 26.25340090809245, 21.14740557874729, 24.043689239659642, 16.58659429998872, 29.3220413913794, 24.81114148995657, 21.483221740589233, 17.224632774080124, 5.797637481492415, 6.591741204195478, 11.690757733959042, 23.20745303438104, 56.040530197543134, 11.677095480666074, 16.818259340319468, 51.63147936005523, 14.257617866476508, 76.67113701463794, 14.76649050242122, 64.03917742378916, 9.598708275352204, 19.458482256562622, 13.92442223968916, 11.696199105498104, 41.884520133234, 149.52166163742086, 26.306762567209745, 145.02525186405296, 6.506723029939177, 61.77901570305856, 44.22103639501648, 14.227680639032188, 12.722024351443153, 9.871921337959582, 7.022485028994527, 91.68949204304401, 16.30520253102877, 37.77705034385639, 40.70815127577774, 23.375545795611398, 25.397172572392243, 25.577633917907715, 34.23667540440454, 61.59170408987313, 103.79358555416857, 25.07400173548089, 15.14570945770194, 102.72887881559974, 8.66625373438115, 8.18202038723592, 16.76291088047491, 65.63351831213177, 62.349764055999785, 34.681731282051686, 107.3923620762315, 77.94443028928983, 20.69409144158324, 5.413869061579661, 87.65340097760158, 16.50289294384028, 7.256308246751085, 59.01488771721716, 6.027089914951584, 51.54655040336902, 25.08946138702073, 7.529998994972391, 6.157350871553965, 5.50083090134291, 17.373173636697008, 7.937476050964221, 95.6508110256, 56.512654036524516, 17.9185758052874, 15.950601050488435, 70.3717000229671, 86.09837447266523, 106.49540846631282, 152.58731873390377, 17.794171693173034, 7.938540512923138, 7.7995912687922155, 49.405343355256385, 63.64742550446694, 16.97487126550949, 20.106128338734504, 5.03778852558905, 52.387480958201095, 89.15607248696233, 34.74549093601989, 13.789103926399722, 83.10944042735704, 57.221422204601566, 22.423653210844268, 49.035867897584374, 14.247939361436895, 10.850249374296782, 12.563758928506047, 60.26581289556084, 114.9894761155543, 17.855287593375458, 8.375993809269445, 25.062915527753617, 44.66287339401419, 24.92691192218455, 7.001370146678424, 119.74461938637262, 46.06164266606349, 8.23811544630177, 19.075416174356338, 19.517427284655735, 27.735762956255673, 31.503452275854734, 18.610267965668193, 120.10899992593862, 15.449932310529608, 45.7583885468416, 10.352718844422022, 97.35294031099284, 13.825813030892759, 26.03519192477153, 110.21532667176339, 44.82004256706129, 21.96734338525605, 21.659720235408106, 9.79718263575373, 56.706340597912735, 59.692570619746014, 11.626332114324885, 41.057625195462975, 53.27971730993522, 24.38179996275632, 16.084239809229384, 128.85158895087196, 20.27800535989712, 7.280011873706344, 39.33660572381958, 7.869456984712933, 46.3590671578846, 79.22430838630972, 19.76444337221619, 36.85163579201242, 12.849027388151196, 18.181326182152873, 57.102794114764045, 8.823438316096365, 82.33703198186736, 50.82603516726142, 14.762697013801965, 85.62193439413072, 36.49721548563774, 46.54633962112912, 54.26345477907529, 82.36323143111221, 47.22119185975586, 25.04213698437931, 94.93467222146148, 5.391971338048442, 13.282252941571045, 138.6403247555324, 18.51951491576922, 10.659258949839051, 88.19428574489935, 9.386017253506663, 14.577347472508464, 8.156405638607318, 29.43006937826991, 15.025586464815492, 13.517524346894493, 53.985325635533876, 26.877311274991882, 16.01426704350426, 20.070864494587514, 40.832568271951736, 30.337612470013735, ...])
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);
([3743033.2549298084, 3855661.707515929, 3921682.4590938855, 3926516.560606872, 4023922.165675572, 4026250.0, 4027011.1014674585, 4027042.1376388795, 4027599.8245514375, 4027604.6875, 4110400.5648101657, 4135463.7450751383, 4157347.20435, 4157903.1191995875, 4185667.1875, 4187109.375, 4187289.0625, 4188544.174268714, 4189686.081694517, 4191110.187677801, 4191398.451658212, 4192271.875, 4202908.680722615, 4204285.9375, 4204503.637463918, 4208350.584934958, 4208871.6125168735, 4209928.861132514, 4211143.75, 4211202.187204839, 4212367.364964079, 4213200.894466704, 4213824.7708311165, 4214415.981473566, 4215116.560129902, 4215204.6875, 4215298.370689727, 4215513.646975446, 4216141.894593219, 4216473.414938634, 4216569.404959768, 4216803.510301056, 4217212.5, 4217632.8125, 4218842.790252261, 4223703.710216755, 4224334.494071718, 4224952.366161653, 4230314.728069389, 4231488.864086229, 4231634.9107559435, 4232617.901695611, 4233986.642798939, 4238909.1843856, 4239018.75, 4239561.27193129, 4241482.8125, 4252641.591352332, 4255601.5625, 4261846.916779259, 4263028.1905563185, 4268936.745364562, 4269168.75, 4271255.113249689, 4273767.1875, 4274275.937667566, 4283945.355005473, 4283964.548577945, 4299723.649280437, 4300059.016121524, 4301989.0625, 4312426.5625, 4314807.762038912, 4319979.6875, 4328262.5, 4337489.33260482, 4339781.495383545, 4340302.972730229, 4341379.762493306, 4343734.832366426, 4344082.8125, 4344630.7212938415, 4344670.673853439, 4345317.1875, 4345687.388413732, 4346022.970517277, 4346024.263522334, 4346237.294134824, 4346334.375, 4346470.60881068, 4346562.947944027, 4346606.25, 4346627.0122644175, 4346687.355758026, 4346887.173020485, 4346907.180793932, 4346941.556938285, 4346998.078086998, 4347259.471400655, 4347262.80247791, 4347375.605511271, 4347451.214060604, 4347620.3125, 4347643.75, 4347698.507155455, 4347703.930601731, 4347744.925574107, 4347757.043438996, 4347925.187555348, 4347929.6875, 4348359.375, 4348658.48527682, 4348742.1875, 4348872.192166123, 4348912.912434118, 4350832.47904669, 4351540.625, 4352037.575146488, 4363255.450978554, 4363450.0, 4364559.260623739, 4364613.910827813, 4364955.72394721, 4365031.861385054, 4365125.195582853, 4365307.8125, 4365427.672297855, 4365450.0, 4365490.473507417, 4365663.615474623, 4365757.8125, 4365790.359554559, 4366172.244882093, 4366181.998918266, 4366230.513483233, 4366280.161310678, 4366420.3125, 4366433.857841613, 4366608.127247258, 4366687.5, 4367171.8858136935, 4367361.821004052, 4367432.992802735, 4367482.345613806, 4367485.476191978, 4367548.53368567, 4367664.106812758, 4367667.771898927, 4368092.851009341, 4368740.159334894, 4369301.5625, 4369373.095092685, 4369398.676568939, 4369742.5717935935, 4371570.3125, 4371736.597216074, 4371827.5860864045, 4372117.31478111, 4373802.669309655, 4376942.601747926, 4379207.8125, 4380577.752919036, 4385709.21353963, 4385736.730783562, 4389150.953438138, 4400160.22895599, 4400180.405316403, 4409938.63096628, 4425599.155661128, 4425608.922395933, 4430560.008492212, 4432065.61053738, 4434740.324257786, 4435047.636195951, 4435879.70934497, 4437910.239606072, 4443071.875, 4443637.0455328, 4447213.368257761, 4450750.0, 4453623.4375, 4457612.5, 4462149.56353671, 4465569.148241046, 4466784.375, 4469420.3125, 4470251.328065413, 4470805.730299663, 4471726.428001134, 4471876.765898142, 4471954.838202511, 4471961.983298615, 4472023.312344867, 4472032.8125, 4472270.3125, 4472313.881878841, 4472413.739719977, 4472619.743406586, 4472821.559158479, 4472858.067365684, 4472998.4375, 4473327.513565925, 4473455.358915192, 4473569.919683861, 4473679.6875, 4473844.741296655, 4474057.570872744, 4474057.958296537, 4474359.375, 4474436.976761503, 4474495.479672895, 4474522.159860391, 4474536.807663318, 4474671.057391515, 4474857.309652399, 4474913.273703708, 4475035.9375, 4475214.0625, 4475323.142897953, 4475409.118900318, 4475549.809971059, 4475621.302987758, 4475673.4375, 4475981.25, 4476029.883280269, 4476088.683698634, 4476145.237356301, 4476201.5625, 4476305.591536753, 4476323.762742232, 4476362.5, 4476468.808336478, 4476707.560437541, 4476845.753214426, 4476903.250782012, 4477009.532032241, 4477013.3519888045, 4477044.7867801655, 4477058.867094112, 4477070.964038356, 4477118.75, 4477174.455381591, 4477275.0, 4477294.09376437, 4477307.384877878, 4477326.5625, 4477501.34638939, 4477526.942137848, 4477560.224694773, 4477749.910154815, 4477794.32463686, 4477815.341910833, 4477969.001227358, 4477998.916851204, 4478029.986943907, 4478158.355953745, 4478179.423930222, 4478194.600623393, 4478264.922774993, 4478703.862349639, 4478879.414730604, 4479293.566550838, 4479322.78710486, 4479401.17565488, 4479458.801209275, 4479468.41684624, 4479586.2411886165, 4479995.3125, 4480109.375, 4480398.767525823, 4493267.072479673, 4499057.978544534, 4500287.5, 4506621.875, 4509056.494167938, 4509795.788736329, 4510434.375, 4511323.4375, 4511900.973638348, 4512588.717750535, 4513168.853775281, 4513373.215807671, 4514136.93151047, 4514297.542668616, 4515405.363316829, 4516818.75, 4517670.3125, 4517808.424225802, 4517906.330608081, 4518374.835492747, 4518931.25, 4520278.125, 4520659.375, 4522485.501076246, 4523868.892909326, 4524603.44891076, 4524838.7137557585, 4527190.805899857, 4530252.479275284, 4531042.1875, 4534000.0, 4536185.9375, 4536580.9488347005, 4540129.6875, 4540605.526380126, 4541032.8125, 4541164.0625, 4542434.375, 4542728.125, 4542731.795393783, 4543345.3125, 4543483.642359574, 4545111.178890269, 4545863.981467094, 4546328.125, 4546712.78351287, 4547237.081825536, 4547607.509361984, 4547774.66924219, 4547776.082922285, 4547852.1566192135, 4547959.375, 4547982.518274643, 4548159.1009803545, 4548203.3576262565, 4548263.984797249, 4548306.496994531, 4548467.890775962, 4548580.006713896, 4548690.625, 4549020.913600049, 4549200.0, 4550315.532892112, 4552128.125, 4552242.391782088, 4552429.482089913, 4552519.823796651, 4552883.488259305, 4556110.192005398, 4556245.998368484, 4556385.028953379, 4557526.85484028, 4559125.0, 4559806.25, 4560010.9375, 4562448.25614462, 4563878.90117885, 4564704.6875, 4567119.750651826, 4568528.125, 4569401.620284557, 4569959.18477798, 4570326.5625, 4570338.584146514, 4570366.070006863, 4571145.428626561, 4571215.625, 4571257.8125, 4571300.058986812, 4571303.4401109405, 4571731.14754538, 4572071.209031104, 4572144.517609669, 4572241.060165772, 4572710.334411227, 4573371.140664888, 4573475.0, 4573757.362786681, 4574393.533324129, 4574712.317535444, 4574971.445567392, 4575089.518320698, 4575700.0, 4576496.767902254, 4576514.0625, 4576572.3640650185, 4577100.0, 4577180.293369212, 4577289.271177007, 4578240.625, 4578562.793437457, 4578629.063167263, 4579117.1875, 4579510.9375, 4579704.505381693, 4580534.762160155, 4580611.144278079, 4581362.578896329, 4581373.703257083, 4581395.541603223, 4581439.0625, 4581729.73588399, 4582709.897597628, 4582716.954233074, 4582717.1875, 4586222.556792042, 4591235.9375, 4592932.410983116, 4593434.482865293, 4594623.151845827, 4594793.706818828, 4599229.6875, 4602112.621784879, 4604068.174482803, 4605110.011193214, 4606177.032672597, 4613382.030376682, 4616698.4375, 4618404.486323532, 4618981.990771383, 4619106.25, 4619879.780327774, 4620005.661118903, 4620489.0625, 4620495.1454783585, 4620828.020304065, 4620836.514305676, 4620930.724547577, 4620970.4653204335, 4621152.977573517, 4621226.560111885, 4621464.292378126, 4621537.428631977, 4621565.453562694, 4621641.410617642, 4621643.75, 4621811.470407987, 4621885.3513396345, 4621969.357297171, 4622273.92850314, 4622614.0625, 4623438.376176593, 4623686.618549056, 4624261.99497477, 4624439.110053775, 4624976.5625, 4625375.0, 4625406.981650254, 4625587.5, 4625943.52012238, 4626053.486406036, 4626083.632699897, 4627348.4375, 4627383.8552007815, 4627639.707338932, 4628296.875, 4628846.828352654, 4628903.125, 4629049.154378795, 4629184.322173953, 4629258.040090276, 4629720.5262987325, 4629745.3125, 4631144.183433523, 4631346.382392532, 4631689.0625, 4632064.0625, 4632304.6875, 4632946.801065414, 4633138.382575104, 4633504.972054025, 4633519.748986726, 4640990.625, 4641778.025902539, 4641839.15649223, 4642517.435335614, 4644940.625, 4646554.0841315, 4647680.84397575, 4647880.125540757, 4658259.35293966, 4663984.05856207, 4665033.011611512, 4667253.125, 4667802.557960728, 4668397.824859657, 4668476.5625, 4668818.75, 4669194.431838933, 4669483.469462093, 4670109.076901927, 4670770.3125, 4671047.820718203, 4671151.037723442, 4671932.677702203, 4672676.847866794, 4673109.375, 4675371.246768188, 4675705.458985739, 4676688.356445399, 4678598.132485704, 4679406.205150547, 4680352.205807928, 4681512.776886691, 4681830.545074665, 4682939.811507624, 4683557.654922209, 4684179.6875, 4684821.875, 4685295.470818177, 4685705.768238165, 4685729.6875, 4685839.349623599, 4685933.174411106, 4686338.667641654, 4687405.141311704, 4688646.875, 4688809.036293023, 4689108.54651792, 4689757.282072725, 4690878.125, 4690900.300636925, 4691893.190099853, 4691952.203028983, 4693518.872701362, 4693892.1875, 4694756.182586867, 4694851.5625, 4694968.75, 4695325.0, 4695622.077276801, 4695676.040027291, 4696629.54228846, 4696772.204081736, 4696944.492992135, 4697017.1875, 4697121.875, 4697471.841983729, 4697648.4375, 4697723.970276132, 4698072.066316959, 4698315.759836691, 4698348.131826948, 4698640.139488716, 4699211.629483393, 4699309.375, 4701880.467796914, 4702879.9057599455, 4702902.465539359, 4702905.013346931, 4703023.4375, 4703610.9375, 4703839.0625, 4704074.883532546, 4704502.492185936, 4705068.72744505, 4705314.048432388, 4705589.989356445, 4705603.125, 4705922.903681799, 4705996.459434358, 4706017.178749399, 4706026.5625, 4706207.28071618, 4706740.8811447425, 4706865.258852518, 4706896.228091645, 4707146.875, 4707460.9375, 4707515.079290941, 4707608.621650825, 4707695.391234483, 4708072.837999069, 4708415.625, 4708433.8901051, 4711456.82297677, 4711686.553028325, 4712493.536218687, 4713380.030492147, 4714604.97435177, 4718113.440968915, 4719772.530466411, 4719927.593476569, 4720586.757913741, 4721038.855541073, 4721064.920030815, 4726560.9375, 4732196.875, 4732252.122052592, 4732262.610348779, 4732695.62023525, 4734771.686611011, 4735665.625, 4738538.803747019, 4752040.442784924, 4752118.285582987, 4760940.390254901, 4761929.594985663, 4762010.327233442, 4777553.015521736, 4796034.104451891, 4796141.790652615, 4797480.313119171, 4798310.9375, 4798735.684893684, 4799229.6875, 4799613.498889109, 4800544.790402022, 4809026.034593971, 4809027.447076102, 4830157.898762319, 4830368.207793725, 4922316.159551335, 4937051.766776691, 4942820.252161771, 4946241.574704598, 4948519.856144778, 4952381.143440479, 4952489.311573291, 4952628.102224093, 4952916.776825461, 4953053.1407411285, 4953507.309541167, 4954389.773979824, 4983993.560281497, 4987340.0663509965, 4988082.8125, 4988807.024274748, 4992200.452147377, 4993802.624375242, 4994128.891448723, 4994546.061767013, 4995842.009679135, 5010287.5, 5016143.75, 5019770.616756557, 5019839.0625, 5022524.895840186, 5025618.943975719, 5028887.18983814, 5037556.25, 5038218.266391524, 5038412.835707065, 5038432.8125, 5038724.208213642, 5039569.496669754, 5039639.826216905, 5040285.9375, 5041309.632115092, 5041819.1101163225, 5042507.295182694, 5042579.337799344, 5042750.087477915, 5043304.105432942, 5043539.0625, 5043905.994830621, 5044060.853296437, 5044464.0625, 5044536.935729409, 5046196.526868261, 5046626.5625, 5046929.2455400545, 5047071.875, 5047113.170949762, 5047172.884581129, 5047373.4375, 5048195.3125, 5048455.294410328, 5048507.409123336, 5048555.516869266, 5053409.473972117, 5056446.129957797, 5057906.816445674, 5058942.89657037, 5062395.094715626, 5062565.273500017, 5062790.978940022, 5081419.853375293, 5081420.194116838, 5081653.601332333, 5082221.838877739, 5083271.875, 5085221.4354889, 5085375.0, 5085779.521964076, 5088081.25, 5092104.6875, 5092504.625066496, 5093116.456906459, 5093795.3125, 5094411.646647004, 5095348.4375, 5095353.094282682, 5095429.341847711, 5100568.722508091, 5101723.397245764, 5105617.643374812, 5113594.658265683, 5118281.222122981, 5118382.113384236, 5119015.625, 5119297.870605163, 5120664.408767996, 5121720.162666575, 5121935.54252194, 5122082.8125, 5122090.908164212, 5122750.981581435, 5124410.538595619, 5124610.9375, 5125260.9375, 5127204.6875, 5130322.006542876, 5130672.0128013985, 5131113.652159957, 5132870.274524723, 5132995.5456344765, 5133441.373684449, 5133465.932237356, 5133568.75, 5133834.12599851, 5134159.492008134, 5134175.398982583, 5134314.0625, 5134413.55756948, 5134876.0489312885, 5135114.0625, 5135133.3691331325, 5135253.125, 5136678.122176814, 5136749.086143348, 5138323.650945095, 5140667.1875, 5141428.6849548025, 5141602.34161764, 5142076.5625, 5143121.514114589, 5143662.951209617, 5143765.967921798, 5144130.612156243, 5144208.979896282, 5144629.490220586, 5144828.125, 5144945.05969683, 5145633.629435232, 5146409.375, 5146526.7244639015, 5147461.067490028, 5148695.3125, 5151333.179144005, 5166264.0625, 5197201.5625, 5226460.519342198, 5231997.862200082, 5252217.295344355, 5254749.057892945, 5260837.422076835, 5260914.0625, 5261191.08553315, 5261842.1875, 5262052.592885825, 5262267.147860568, 5262337.852929347, 5265074.5413520355, 5265133.5868864935, 5267931.213257474, 5273921.096775476, 5274234.142620645, 5274885.9375, 5275828.058119463, 5283630.164805324, 5286227.422959476, 5286413.8247602135, 5286526.06084892, 5286751.5625, 5293438.497991313, 5293449.728953245, 5293685.195125528, 5293718.424520004, 5294536.863697494, 5295343.0698352875, 5297784.149288186, 5298683.2387920935, 5298846.916204106, 5300040.625, 5312404.369565728, 5319956.25, 5320281.25, 5322490.8429797655, 5322754.6875, 5324525.0, 5324865.562418313, 5324941.696000069, 5325210.59776181, 5325220.645506639, 5325442.144644043, 5327875.644209815, 5328751.5625, 5333277.071693224, 5333941.35190261, 5334097.588230553, 5334611.083385092, 5334948.511491023, 5336435.48667331, 5336467.509871235, 5337937.5, 5338658.943437109, 5338690.625, 5340188.892068641, 5340785.9375, 5341209.224334168, 5341220.437008101, 5341917.1875, 5342601.508664334, 5347425.972496723, 5349843.7840146385, 5351418.75, 5352052.8574234, 5353645.289742395, 5353654.6823716, 5354310.9375, 5354776.5625, 5355913.69977746, 5356683.711002731, 5356689.205367034, 5357028.402233667, 5357306.25, 5357392.429590104, 5357422.995153816, 5357429.17993192, 5357585.95853365, 5357615.912379645, 5357663.937861152, 5357675.967126336, 5357714.045018315, 5357760.738660691, 5357760.811051951, 5357805.714633131, 5357813.785092895, 5357840.998646628, 5357870.3125, 5357878.298140537, 5357893.249009157, 5357903.97581884, 5357907.589155758, 5357939.699109815, 5357944.082643878, 5357983.589835452, 5358121.875, 5358153.450176461, 5358173.505871949, 5358174.715416339, 5358179.495704762, 5358217.172694198, 5358312.45331122, 5358321.320782545, 5358333.112571133, 5358367.819164842, 5358385.826742016, 5358400.335610264, 5358442.1875, 5358451.280325158, 5358454.152975066, 5358586.802530012, 5358648.561602931, 5358649.97671845, 5358667.112804378, 5358670.111703057, 5358721.123098942, 5358722.451826365, 5358749.609643131, 5358823.4375, 5358851.87951635, 5358866.450874774, 5358879.6875, 5358908.213365195, 5358917.799626538, 5358932.643220014, 5358946.103011419, 5358970.957426155, 5359028.176682867, 5359066.984482988, 5359090.677562196, 5359214.0625, 5359219.4050161475, 5359235.734405663, 5359276.970323474, 5359278.125, 5359318.75, 5359329.6875, 5359345.403294422, 5359373.4375, 5359379.852863567, 5359398.83445118, 5359410.990908493, 5359469.107075384, 5359469.239323457, 5359483.243774345, 5359527.517152161, 5359539.959692605, 5359541.191391697, 5359640.41786206, 5359641.265612013, 5359668.067110208, 5359677.713542034, 5359816.463346966, 5359842.122600445, 5359853.125, 5359867.797366776, 5359889.014805514, 5359984.788415271, 5360002.987762556, 5360015.625, 5360024.021694699, 5360024.027284018, 5360027.403268356, 5360059.887108578, 5360112.475017361, 5360142.1875, 5360170.920482966, 5360194.661234097, 5360226.338458789, 5360307.8125, 5360339.0625, 5360441.05888991, 5360507.473293013, 5360510.9375, 5360654.247425446, 5360768.964801166, 5360838.707112854, 5360915.430300519, 5361348.329643087, 5361507.008379335, 5361783.690236784, 5362184.804808932, 5362208.401687055, 5362712.665345113, 5363059.171221909, 5363315.625, 5363331.95370938, 5363343.272606417, 5363450.660482692, 5363541.529002875, 5364345.219719639, 5364392.967883421, 5364414.901173519, 5364490.583842474, 5364510.9375, 5364597.5901436545, 5364632.811727071, 5364678.252288344, 5365092.7016791, 5365122.877819143, 5366125.335063513, 5366388.73536862, 5366554.975288227, 5366682.8125, 5367085.015030267, 5367962.046261868, 5368074.516542214, 5368141.128870302, 5368157.8125, 5368293.75, 5368795.6096853735, 5368819.7029606085, 5368921.875, 5369198.185347982, 5369269.020645907, 5369456.119636794, 5370194.681408136, 5371469.320698558, 5371793.75, 5371981.9305948205, 5372351.5625, 5372512.027574951, 5373121.182293871, 5373121.875, 5374388.378567036, 5374457.040167185, 5375079.6875, 5444807.143745276, 5445086.851860889, 5482871.259536957, 5488621.827281897, 5488643.71400511, 5497399.339972942, 5515367.1875, 5518297.853355548, 5522009.375, 5536746.875, 5561499.919212196, 5587848.938225117, 5590624.828853918, 5592502.904370013, 5611039.713291561, 5623820.905741002, 5637513.740597632, 5643736.136549746, 5645906.31389095, 5654951.463560429, 5659088.807955404, 5659245.932251738, 5663034.396885093, 5663482.221606944, 5671079.6875, 5672012.410816961, 5673081.5055958405, 5675673.50302082, 5689379.31656347, 5692832.8125, ...], [5.304952074287514, 12.590539993637659, 23.091709833064282, 5.667989562729767, 11.614626700413698, 76.63706515154912, 11.39404975658248, 5.202153465301828, 25.483728944393757, 62.89687801911685, 8.609689424634457, 6.227910071130496, 8.468776334572214, 9.326503409478134, 67.17797766091317, 95.55713934648752, 37.425055286155924, 16.849572306445523, 5.8247270246118354, 10.128180746823904, 15.72474194142223, 36.99361084006101, 99.12015312531258, 75.86035666467289, 9.80588120249799, 30.075734302714764, 24.24209640532073, 10.042449971670829, 34.83112963683253, 5.310782025000364, 23.363194104283714, 77.62724242081127, 6.718601252801302, 9.652178483087743, 7.980518397942443, 90.00365918909273, 14.692831192895481, 22.91919186869875, 13.931420105592903, 28.08599169623805, 18.206465258947873, 16.64615397697557, 50.634106578554594, 101.20414016003613, 17.874242208427557, 8.622355791522258, 77.2673237942235, 10.117949042975788, 8.672969213714614, 31.217677047772725, 61.86251473134672, 7.322762201810714, 18.542614197153526, 25.256349614540166, 56.634013076084, 19.70754098405779, 40.20762820983022, 20.584755794984858, 53.81114384857748, 15.103179981409959, 8.321551539100636, 10.12271408561543, 77.74040848959845, 7.238053899124785, 36.47189284806776, 5.187790079688132, 53.85539392428196, 17.186388094458955, 20.951290238527342, 6.051557531769013, 31.410755927781615, 68.62123679449589, 31.91846228012664, 37.98210839335435, 170.71746286686835, 50.1251037204231, 38.93065876407087, 5.127261184377361, 6.778571327425882, 17.027703750802008, 147.17674731616748, 13.248108233899538, 108.60697203897381, 87.20172324456883, 13.584200269273758, 21.82891190309666, 77.03761733933533, 14.210904431774527, 84.54151401049494, 103.69072177625334, 11.908354547796934, 46.43892951107422, 19.90526222001223, 8.211744763428014, 13.826276506045936, 33.96428482089938, 12.982147335392188, 10.608842192834004, 15.322130898730867, 135.04650253627588, 15.746573731999169, 10.623508044459768, 39.400225797907424, 74.2167999271552, 11.238356653064036, 12.673531746878098, 33.92843129869916, 77.51599393773122, 15.708053987877411, 51.899221031008416, 82.30094697087581, 12.371965754785101, 102.40994495815627, 18.191481609128317, 82.72861298694522, 48.37769828304549, 69.8839922983979, 7.630644904455934, 66.1298542321326, 62.79061205680563, 92.62709784278056, 25.850326223407727, 13.255255454971053, 5.1798491858505615, 28.439175368860358, 54.36914260341665, 13.457477603172245, 35.32507288354966, 25.853143834849927, 68.54469739841797, 34.92436820435621, 23.952653284899256, 5.5513054778073405, 5.368256468247047, 5.371044848406331, 49.115148955089666, 54.010871112816055, 14.664706574629069, 9.612517619425859, 76.98509158337197, 171.92440518631363, 52.64009723824157, 5.072189763799935, 66.27693032508596, 10.475860990521209, 14.9656945644542, 5.343442414762832, 5.5621318049413855, 64.47495846919543, 18.887113428984023, 59.9568369131417, 97.15967561867868, 9.542075256723425, 5.973585711259481, 72.4463176188666, 40.857096451378716, 13.220719535623038, 148.80356916090443, 10.48304547478215, 22.38690958268966, 30.245545310806165, 31.923591247151393, 70.1562717560341, 5.572860923418137, 40.31306858091365, 19.637734803661296, 12.471748794828754, 22.204404003896762, 18.631133531940694, 8.060906266149972, 19.33074397369706, 19.60236053658764, 10.688058772496575, 8.734783589417773, 21.99978627635761, 10.187822166711497, 44.649732728261185, 6.676045199859623, 6.95017931726227, 70.73670771992485, 109.67771694382714, 68.14790155539107, 68.05754669855885, 11.812994998351822, 53.22055458787402, 95.39585516648594, 24.626006646876586, 6.99122607647651, 85.27613846463467, 43.537536913086115, 6.103912423743381, 21.32809732028356, 34.586014326535036, 68.59558760643124, 45.44370055494612, 25.405623542458528, 13.83911086781353, 13.140716588929234, 28.926883560829395, 8.426115474591331, 28.81613027700026, 7.987704490983388, 12.3689872362311, 13.629506693979184, 68.49584265217365, 10.338617538337337, 24.526153177753027, 24.054864871212995, 70.78307357247135, 12.36078288809384, 6.797346665577245, 11.604202040258954, 5.500396954102994, 12.53293399624629, 8.939570688188539, 12.599063661249017, 30.955944979142767, 171.10194847527794, 11.42328374099938, 66.36494912162298, 67.15415215966561, 39.523525685953274, 69.45178630870363, 76.68179481693942, 7.67561691215056, 22.79377908863714, 117.58333489668041, 52.57541438213798, 12.349224057809689, 172.26484485330502, 31.872316802105622, 15.168622494392755, 21.092899562964625, 74.31861432916152, 35.87749390095175, 5.9531985061184685, 10.173218111819962, 6.407721350501441, 5.379405868194389, 18.184194585566875, 40.698027497169406, 8.909769224285887, 46.22866980427104, 13.457976714502195, 46.35062465701477, 57.008763469524446, 14.177164524576614, 16.61714011675097, 7.364285505400448, 41.04830745138298, 42.51215027274181, 55.94189743012855, 27.923706542789912, 17.148855490647733, 11.630402034001289, 17.51568857818236, 8.15194754732739, 19.611337464863897, 20.998022934764276, 18.76526113259774, 24.104920473406292, 19.507042169411157, 20.113470419117387, 22.70137574304698, 53.05569507169317, 28.444418020655014, 9.602105390731003, 71.32181662990298, 98.73695854928476, 10.663596845265218, 26.441026615433234, 131.40435262826148, 54.35213372888772, 43.402497344290495, 20.71212607758079, 11.963730180898912, 69.48105917905097, 43.085873627605736, 32.94525382725158, 95.77805614546031, 7.641207677911293, 10.798009834004299, 6.401521158163229, 18.263549765738176, 56.22857720224279, 33.79125468255355, 29.557381060258507, 12.240553905735146, 39.58580041366912, 25.65086403066635, 46.66484722893175, 33.98622207549139, 49.29495074588793, 22.15165085292334, 15.515704813631764, 9.62117673337409, 13.76031138306286, 15.678961291459526, 6.188923069390377, 62.48943252808084, 74.64775442376981, 81.13424073954639, 9.089103637418066, 42.769855667153095, 19.519041136591124, 84.6297247782274, 106.75902370385111, 41.48422023828631, 81.34197836335262, 7.813173675041486, 33.91919915433581, 8.780266932323077, 95.15627504206611, 8.244185634656745, 47.92766676144797, 16.73097940969359, 11.89340561393316, 23.710740448376573, 105.2359666879737, 21.69927155240981, 71.57575063249075, 63.522862182761656, 23.824786055554004, 49.15071043764666, 9.536165106807136, 95.37398836555647, 15.974649745057823, 15.034942252830913, 19.84877476833138, 131.44152618664077, 17.863987946117547, 75.22804023785935, 29.374345231906645, 52.89403712192246, 5.406341390889503, 25.03918308109398, 13.357091749391088, 18.343410347842358, 19.350057271488517, 40.00604187786625, 14.166496458347739, 77.0270097683947, 37.61347943053259, 58.62020030600836, 59.998368981762596, 14.29256576394141, 7.910360267962273, 72.18194486468903, 62.22261290436741, 107.82180318329507, 6.775097901021109, 65.23481727093724, 83.50062609125891, 68.5712363453078, 16.96059456461112, 30.042676030389917, 83.02655665617432, 45.518403052891806, 15.171209184615078, 14.735659316721009, 10.971252910573913, 58.316982881474935, 53.89236082384288, 7.768596438627099, 7.398763439307848, 19.43579244854715, 75.78231155973612, 22.009845546188494, 9.154673728961264, 10.85399747608968, 22.227166652022905, 6.136818906032715, 30.1617318037744, 38.72863440543663, 38.62529234277949, 8.563321994206573, 49.29324357485982, 17.89362959623785, 24.686366987365496, 85.96646952147469, 11.619588310738557, 114.98274118872168, 35.49685354018222, 66.44976394392917, 122.1891462754648, 6.317384665097376, 7.679778021566411, 11.253307553646064, 37.01927031033604, 15.893098122174747, 112.55267702149884, 15.129190193539877, 20.91115824251291, 28.634421785355794, 73.65750518876487, 18.383637529232523, 85.16115707000279, 13.604111046712632, 65.2074878261626, 89.46251764977033, 27.698273050538806, 76.13948394920985, 15.809506154197889, 20.771461910713565, 19.97746471282129, 47.63754068426144, 10.091691274601168, 86.46098514021024, 37.05495674929048, 116.91035674309079, 73.11313029180442, 33.057583221501375, 20.65003251038584, 30.553528596786183, 17.748079013719565, 10.967910831327341, 7.826089731116082, 21.242901423335542, 9.464053049385482, 25.91713045331302, 71.8912553648623, 90.79558417689965, 42.011003738335184, 14.325995789373899, 68.90689685845099, 104.53399607355715, 84.1628235221825, 7.404153162854676, 9.90374582287865, 17.214008515873175, 34.09617035573893, 5.43306018015488, 5.365813227469456, 21.44311692522918, 15.125913802024717, 53.464808421076825, 67.12847883400481, 31.34080100127278, 66.99218498127975, 14.132188900264595, 94.63390725546367, 12.43023778072348, 48.97572127714394, 11.68297433561473, 78.90814572071909, 80.30686102738687, 5.810536805050098, 37.78130971934199, 12.469646317109266, 5.396458375225537, 6.296387448894671, 8.402968963522621, 73.73574098674823, 7.767905022484296, 90.37109893919471, 66.42332205506722, 57.329558436534334, 73.16387101097894, 27.142970932662557, 19.86823807024562, 21.715302061137248, 13.155400087465882, 155.12090638652268, 26.70787675079842, 23.467131308065817, 119.14348699225117, 37.49241294104498, 13.051587286739817, 36.47815828103862, 9.731455837280347, 20.527064219246682, 9.077440926371231, 17.038350760052232, 117.83218104932178, 7.410263863656601, 37.697955378628855, 71.88132289095057, 29.466453651767043, 6.001068253452341, 7.305563311400146, 9.091452800298041, 52.03598729548453, 5.2282046325729965, 16.304175728675464, 10.923349273083057, 32.57796406188783, 29.49203020241485, 18.399600635965253, 72.18236318344005, 7.945447518336678, 9.08615900512007, 27.667456814234548, 16.02865994266542, 17.44114534207865, 16.111905711163654, 8.726807067999916, 14.373088720986921, 127.2615112540955, 58.37238003666959, 15.581351342343215, 20.608826958564016, 90.56106263148936, 16.77622863643709, 10.91478278253716, 40.149081814089634, 48.59515623827158, 75.94695660074231, 23.26859260500793, 18.741792147646198, 10.388819023146091, 61.101608786597424, 23.75855543254079, 20.915674949123975, 18.113015149904303, 15.430765455300536, 45.02941616117582, 27.258509580846255, 80.34051515442394, 32.73678381026967, 76.84540858338502, 49.650829198331174, 21.27181439178555, 77.59153484376618, 53.52438816678518, 70.40952082672038, 68.42256134628856, 48.79936638286912, 13.75395753858755, 99.07179288507984, 12.07685639386048, 5.95624154383193, 35.15733622271422, 23.67854575609562, 46.34885211512298, 5.366206073271769, 54.2940709539599, 6.929970973840425, 15.844226500821803, 20.037365414389512, 9.623009970139087, 57.92708724029349, 55.13700184813745, 74.12194540043211, 9.234827417164803, 8.848096275097538, 42.28909394593286, 28.24946976903295, 25.76444081344591, 40.937506123274524, 44.64277085001332, 35.444444616673366, 14.723056718759008, 131.06441438330035, 18.43356466664006, 36.20372909784706, 33.31260273260976, 95.87136151252395, 51.8088491947441, 63.79361206486991, 7.4171093416087235, 43.29139475868872, 10.436218866079836, 28.995896118662337, 50.58640658939316, 21.64511677898609, 17.99825746848143, 43.34463628222703, 77.20768573355132, 61.81491699276806, 16.160529951773384, 21.208291931507745, 99.94417966994945, 8.919070254084183, 19.376139155381654, 25.016710086236696, 73.81710318098195, 86.02884291932497, 39.029022219040044, 13.91952790889087, 15.379477012634904, 16.26031373139137, 23.62561052543021, 46.68797418692536, 24.2923125182514, 42.944074538950346, 5.08942400611412, 5.451780422005695, 25.566475998487515, 6.026855637223205, 26.533180358267515, 9.112657657897433, 6.6867835011981684, 203.29807530570145, 64.47551710733784, 24.37561546832767, 48.49315414981004, 8.009440740529785, 21.275457517432667, 21.219167436658328, 19.88461447435198, 22.349423556759756, 10.374231255217865, 83.72000447591671, 9.510317486886432, 181.36843442818724, 8.861948436432849, 37.17467698670407, 92.4562066026814, 20.434124389625794, 82.75814503177054, 55.846400207536156, 15.001848595286503, 20.47318998357595, 34.07035769694825, 78.73029418217445, 20.92733800285308, 53.05403070948021, 8.7433751692709, 8.541085648126298, 21.486870204338576, 12.582311727821612, 45.42089111793324, 14.304453568419378, 40.04535476066724, 101.14903132496185, 5.352456671279011, 78.16814947300587, 103.96579114459092, 18.554473518389067, 82.96659247280729, 91.92176848485303, 74.5376656323425, 14.891641225969991, 44.1840182607046, 219.5665888340311, 191.37193759692553, 5.028335096225431, 78.81797923551906, 8.427390919620535, 26.321571350061575, 21.322072930929714, 5.684857800803831, 48.354413785464345, 8.883377568972946, 79.17788151678592, 6.44782155559893, 6.473972102110546, 84.33678573708852, 20.875062405562616, 23.154797789856588, 65.8934747350142, 69.53689468572516, 37.75331148638969, 6.905280814949054, 44.4809763630064, 93.85569558424577, 37.15572833815405, 9.903339500907919, 13.598700733139571, 59.45942882064466, 5.402271169337256, 10.133619883179884, 17.6524334810137, 85.5388645394744, 10.803544266681572, 18.08247749378122, 193.3031419862079, 21.91077980771805, 26.385481280247145, 17.132082541843236, 27.82957020624475, 101.95034230635798, 111.25386967038821, 33.49205432333741, 184.25843170650185, 38.915873290114384, 50.1599353621646, 27.34752347405057, 24.689861806870248, 56.647918558629726, 12.452350021416642, 61.45255515316326, 7.592165407948133, 5.385422453347211, 72.84664878963589, 27.752536105842115, 11.923795951164657, 7.382593984840455, 5.244365741373065, 8.802817435518154, 43.21048326050477, 20.85077196509905, 16.448918321153613, 25.879207473093434, 61.88525582922506, 42.33800431662359, 65.03337848397013, 10.326779243707472, 8.0863239010792, 67.15036209999376, 78.39091401497674, 52.995707108708416, 15.46776930355835, 19.04111721272332, 22.43669727809981, 7.589560178803756, 15.911373357810904, 18.84568056408241, 45.60756252068449, 32.92109491122941, 40.98164374682373, 57.678608223349606, 9.69320118812573, 94.31471082925643, 67.45062039840349, 10.409820670689388, 62.59223875025283, 104.52956578317348, 67.95194538168958, 28.469383283477363, 118.25539483280173, 9.518648587838763, 45.046530529192495, 17.613542279498205, 119.82494208772978, 51.127658272785965, 6.693535646763747, 16.994184945829918, 5.72893566228463, 27.016892794705637, 10.561612353855168, 10.832739398097864, 49.56989431904065, 49.53690832523287, 19.34952128819687, 42.81043194507483, 74.91721845662791, 127.60395979099594, 48.454304908986465, 87.45980610039656, 48.7392603502977, 58.482158931158935, 51.74457115743227, 13.124442211386052, 6.785229554759839, 7.294677487886848, 5.529310598159723, 52.120834732020136, 67.78615756977365, 52.30651959010019, 97.64820857060724, 27.76396614683485, 5.25513160625376, 12.488637897573472, 19.03139763826577, 48.44551498911049, 63.63024124408348, 24.654720464594234, 42.09459692488331, 7.103981082126773, 9.770467330686419, 66.09845232668985, 85.16092779949719, 16.662863200130783, 57.74026329707862, 20.872855614837775, 79.44518216617627, 69.74646917063392, 13.83085530915111, 7.388243579439331, 12.858291613544964, 37.71154085460555, 7.238208677769166, 9.36648829057765, 52.599169926738256, 27.529263028298132, 30.50087580128393, 83.6977256428338, 11.486419574617841, 84.35703515321711, 57.937869336272726, 64.29692357440149, 5.380011085375517, 23.256074698039946, 5.968940056774555, 26.385895838421455, 18.136731445659596, 54.35278413148797, 21.362089377829708, 18.69192589037546, 13.989790398835638, 32.58263668520553, 15.231233084730437, 13.462768391558715, 29.96195712428479, 51.635050519128946, 32.891608207411295, 77.60202663483335, 9.191334893495533, 40.18950254852659, 25.866123344438964, 34.97479941212847, 77.17255828339852, 6.752806079725911, 31.600121077690837, 15.072761855854163, 107.44972807654071, 14.011107829684983, 9.312234182300164, 22.840861971498697, 33.15626512639222, 91.75047169510968, 48.90251973803207, 19.999555344231872, 9.45519926118419, 7.196286130533848, 60.063638073618655, 5.171038313732432, 30.08400171352847, 6.994127173208654, 15.02229051811716, 77.43492108227812, 73.78130375576751, 20.178425575239537, 37.21369148371566, 25.13506781002799, 26.25340090809245, 21.14740557874729, 24.043689239659642, 16.58659429998872, 29.3220413913794, 24.81114148995657, 21.483221740589233, 17.224632774080124, 5.797637481492415, 6.591741204195478, 11.690757733959042, 23.20745303438104, 56.040530197543134, 11.677095480666074, 16.818259340319468, 51.63147936005523, 14.257617866476508, 76.67113701463794, 14.76649050242122, 64.03917742378916, 9.598708275352204, 19.458482256562622, 13.92442223968916, 11.696199105498104, 41.884520133234, 149.52166163742086, 26.306762567209745, 145.02525186405296, 6.506723029939177, 61.77901570305856, 44.22103639501648, 14.227680639032188, 12.722024351443153, 9.871921337959582, 7.022485028994527, 91.68949204304401, 16.30520253102877, 37.77705034385639, 40.70815127577774, 23.375545795611398, 25.397172572392243, 25.577633917907715, 34.23667540440454, 61.59170408987313, 103.79358555416857, 25.07400173548089, 15.14570945770194, 102.72887881559974, 8.66625373438115, 8.18202038723592, 16.76291088047491, 65.63351831213177, 62.349764055999785, 34.681731282051686, 107.3923620762315, 77.94443028928983, 20.69409144158324, 5.413869061579661, 87.65340097760158, 16.50289294384028, 7.256308246751085, 59.01488771721716, 6.027089914951584, 51.54655040336902, 25.08946138702073, 7.529998994972391, 6.157350871553965, 5.50083090134291, 17.373173636697008, 7.937476050964221, 95.6508110256, 56.512654036524516, 17.9185758052874, 15.950601050488435, 70.3717000229671, 86.09837447266523, 106.49540846631282, 152.58731873390377, 17.794171693173034, 7.938540512923138, 7.7995912687922155, 49.405343355256385, 63.64742550446694, 16.97487126550949, 20.106128338734504, 5.03778852558905, 52.387480958201095, 89.15607248696233, 34.74549093601989, 13.789103926399722, 83.10944042735704, 57.221422204601566, 22.423653210844268, 49.035867897584374, 14.247939361436895, 10.850249374296782, 12.563758928506047, 60.26581289556084, 114.9894761155543, 17.855287593375458, 8.375993809269445, 25.062915527753617, 44.66287339401419, 24.92691192218455, 7.001370146678424, 119.74461938637262, 46.06164266606349, 8.23811544630177, 19.075416174356338, 19.517427284655735, 27.735762956255673, 31.503452275854734, 18.610267965668193, 120.10899992593862, 15.449932310529608, 45.7583885468416, 10.352718844422022, 97.35294031099284, 13.825813030892759, 26.03519192477153, 110.21532667176339, 44.82004256706129, 21.96734338525605, 21.659720235408106, 9.79718263575373, 56.706340597912735, 59.692570619746014, 11.626332114324885, 41.057625195462975, 53.27971730993522, 24.38179996275632, 16.084239809229384, 128.85158895087196, 20.27800535989712, 7.280011873706344, 39.33660572381958, 7.869456984712933, 46.3590671578846, 79.22430838630972, 19.76444337221619, 36.85163579201242, 12.849027388151196, 18.181326182152873, 57.102794114764045, 8.823438316096365, 82.33703198186736, 50.82603516726142, 14.762697013801965, 85.62193439413072, 36.49721548563774, 46.54633962112912, 54.26345477907529, 82.36323143111221, 47.22119185975586, 25.04213698437931, 94.93467222146148, 5.391971338048442, 13.282252941571045, 138.6403247555324, 18.51951491576922, 10.659258949839051, 88.19428574489935, 9.386017253506663, 14.577347472508464, 8.156405638607318, 29.43006937826991, 15.025586464815492, 13.517524346894493, 53.985325635533876, 26.877311274991882, 16.01426704350426, 20.070864494587514, 40.832568271951736, 30.337612470013735, ...])
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)