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 = 45893
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);
([3091208.673313686, 3672545.3125, 3699973.0077133966, 3948087.5, 4117186.9051634385, 4179736.9375155256, 4235801.5625, 4237146.875, 4263159.1896825405, 4324678.885291581, 4489864.0625, 6009234.363179883, 7062328.103843152, 7062349.960195283, 7228932.153468414, 7306368.75, 7367878.392715936, 7369325.0, 7401154.2111327695, 7407365.846404006, 7483232.8125, 7527596.764831672, 7551581.25, 7570125.0, 7612356.25, 7618099.901090124, 7673028.01143828, 7673795.821859255, 7676734.379325193, 7678835.159845862, 7680420.702219527, 7681189.837268537, 7683872.670490035, 7691243.75, 7713526.789347458, 7742271.875, 7745352.934317533, 7751280.131529998, 7753202.249739676, 7770073.4375, 7784329.052768678, 7792967.1875, 7792981.975212665, 7805004.6875, 7839984.375, 7863026.662505033, 7863780.846176535, 7863793.264499484, 7868545.3125, 7873854.047548507, 7888423.975028659, 7889003.125, 7897752.947670543, 7898496.875, 7898649.52806154, 7905664.0625, 7905934.410809195, 7906296.5337303765, 7906957.703121912, 7906982.801104612, 7908607.8125, 7910167.688190341, 7911716.946752715, 7924787.5, 7925296.2111582225, 7936995.212310329, 7950627.439642525, 7956957.8125, 7959711.820336137, 7963637.296043751, 7971955.267245376, 7975346.619518516, 7975783.86675687, 7981358.441841271, 7981369.443770093, 7983163.171432078, 7985235.473602911, 7985269.184803319, 7986875.932129407, 7991985.9375, 7997856.25, 7997896.959584051, 8002693.590039635, 8006964.546925396, 8007098.129567159, 8009879.75095845, 8011960.9748697635, 8038247.647118079, 8042058.833907975, 8042945.135535371, 8049457.417828598, 8058104.979572505, 8063876.27451739, 8064315.303865372, 8067193.100503341, 8069098.4375, 8070512.329323741, 8094275.0, 8114641.950332409, 8117439.0625, 8121223.304552375, 8127363.738889708, 8128968.342424723, 8130793.75, 8131666.436606233, 8135172.88646823, 8136220.0314628435, 8137028.125, 8139090.311616491, 8139406.032978817, 8141202.81886207, 8141227.877266742, 8142850.0, 8150472.986131833, 8153604.6875, 8159473.585735109, 8160125.138756203, 8160126.163426954, 8161845.289621058, 8166284.375, 8166303.736316998, 8174098.4375, 8175881.617731217, 8176599.439931618, 8176937.5, 8177857.674532772, 8178930.165336265, 8184060.651112892, 8184217.7307887655, 8185043.75, 8189467.1875, 8200922.017256976, 8201491.862309861, 8206152.743462313, 8207259.331983107, 8208164.029323653, 8209589.870924511, 8209689.113598139, 8210252.633381849, 8213440.625, 8214704.013974117, 8215869.58420351, 8215980.490808402, 8216819.844823379, 8219530.779370767, 8224899.993674584, 8225304.530630641, 8228528.125, 8230387.5, 8230878.125, 8231782.380792794, 8232190.393696257, 8232893.976808403, 8233175.892016792, 8234057.634260754, 8234250.0, 8234286.232106322, 8236764.0625, 8240582.613127331, 8241720.3125, 8251581.641777162, 8252161.870851805, 8252456.165467049, 8252840.625, 8252976.417020487, 8253538.905293933, 8253877.978002905, 8255661.373689079, 8258950.967413651, 8262685.732393081, 8265221.680448687, 8269335.049475639, 8269970.394773431, 8270823.4375, 8275499.989530107, 8281232.057564465, 8283277.896852552, 8284916.928509401, 8285086.107427779, 8285596.731225975, 8287150.59228458, 8287344.172879474, 8287736.657627464, 8288135.9375, 8288721.421966305, 8290034.375, 8290346.875, 8291426.5625, 8301413.7904200265, 8302451.635875616, 8302560.215579948, 8303113.638591015, 8306761.493731643, 8309320.3125, 8310020.0022260165, 8310865.930134654, 8313681.218280419, 8313781.25, 8324209.375, 8334434.388201743, 8341212.5, 8344461.963763309, 8347693.266646419, 8354874.667460501, 8355296.282388964, 8356248.299611555, 8357020.1441701185, 8357755.279262353, 8358024.937542773, 8358060.9375, 8358613.222917578, 8360068.75, 8360512.5, 8361496.067690012, 8362471.875, 8365546.875, 8365614.653330654, 8383523.63538159, 8383647.444579472, 8385430.658130197, 8396562.712597521, 8405941.903817125, 8406555.764231112, 8406701.224881528, 8413031.861120597, 8413044.545932228, 8415643.75, 8416395.3125, 8416409.906864872, 8417870.3125, 8418431.25, 8426717.316097194, 8433576.547325088, 8435083.950244742, 8439182.736547016, 8441804.6875, 8459390.625, 8469745.937060328, 8473395.3125, 8494524.184673313, 8498841.951365586, 8502403.125, 8503861.0383443, 8505467.1875, 8506599.62744275, 8508554.985748675, 8508559.797590561, 8512108.314217335, 8512348.376294555, 8514483.45604551, 8515087.682328291, 8518046.088069769, 8519130.595464973, 8520475.530610645, 8523675.863718556, 8524602.591887387, 8526007.390708737, 8526009.375, 8526042.565444786, 8526704.11946017, 8527350.32747285, 8527818.17492456, 8528064.987612804, 8529082.687614935, 8529599.836893272, 8529617.1875, 8529792.13681421, 8529995.17437186, 8531028.03500098, 8531030.351535747, 8531307.302715318, 8531551.915564582, 8532876.5625, 8533475.427239662, 8533804.6875, 8533874.67842226, 8533995.525751702, 8540628.088584952, 8541820.896192353, 8545452.561204897, 8545492.558810271, 8545843.49550633, 8546218.743631614, 8546256.25, 8546668.293345643, 8547974.88397408, 8548946.875, 8549692.1875, 8550953.287886243, 8552067.111168945, 8553556.7339812, 8554573.289967736, 8555422.793555094, 8555612.660330689, 8555629.6875, 8556578.125, 8556795.21858464, 8556957.487215085, 8557907.580502803, 8558040.483746605, 8559328.978110619, 8560164.0625, 8560545.3125, 8563366.793706035, 8563396.177378139, 8567084.735200256, 8567268.321568385, 8574879.6875, 8587337.629211321, 8588296.656337887, 8595415.625, 8596679.6875, 8597257.8125, 8597362.742367776, 8597425.324434564, 8598251.5625, 8599327.53164086, 8599550.897357982, 8599868.711106736, 8599961.799057825, 8601054.747022465, 8601695.29015495, 8602333.17033934, 8604158.895384332, 8606950.783223897, 8608623.4375, 8610004.923455724, 8618993.253831586, 8623739.913105305, 8625011.834329164, 8626025.33619644, 8626312.011852697, 8628845.3125, 8631716.554397974, 8632085.408718284, 8635842.962564252, 8639420.3125, 8642499.984131068, 8643598.397203533, 8643929.219508732, 8644426.079027137, 8644903.115369603, 8645147.889590636, 8645803.125, 8645954.6875, 8646629.80082526, 8646637.597995413, 8646823.268766625, 8646844.060267497, 8647200.0, 8647303.767311916, 8647360.9375, 8647726.5625, 8647821.407112477, 8647861.508221524, 8651301.184487624, 8652014.251672875, 8652035.540732974, 8652096.818768745, 8652140.693739574, 8652182.334485037, 8652381.25, 8652757.8125, 8652837.445495775, 8654029.366527254, 8654315.625, 8654401.804887287, 8654430.777893128, 8654881.447790062, 8659291.414287351, 8659907.983629653, 8662800.720352737, 8662822.837597027, 8663946.875, 8664428.125, 8665869.730565606, 8666720.045397745, 8666733.802025381, 8667373.381282203, 8667906.146070037, 8667993.75, 8668677.779779501, 8670868.299497342, 8671534.40561906, 8671777.836749185, 8671907.531566402, 8672896.159499662, 8674576.5625, 8674803.125, 8675767.657545416, 8675779.6875, 8678399.634368517, 8679559.288596693, 8680105.777850078, 8682564.0625, 8682574.10769697, 8682604.621045098, 8683507.574590746, 8684200.565500997, 8685457.99259979, 8698371.680115495, 8706642.120449055, 8710689.0625, 8713448.237408027, 8715516.01219545, 8715518.75, 8715538.639123041, 8715639.0625, 8715915.625, 8715926.5625, 8716200.0, 8716267.540068587, 8716538.668000586, 8717473.4375, 8717690.625, 8718070.826808406, 8719281.152179273, 8719393.04810232, 8719442.1875, 8719451.819952993, 8721105.41111239, 8721735.143433068, 8723280.93069568, 8724407.8125, 8725123.273145813, 8725270.58182071, 8725301.281410417, 8728829.315305406, 8728891.133515997, 8730089.0625, 8730506.817754047, 8730523.649121089, 8730681.25, 8730846.922331875, 8734767.057353918, 8735137.5, 8735231.14266819, 8735293.75, 8737742.137755936, 8738320.70461583, 8738751.250173785, 8739405.228906712, 8739691.612994624, 8741074.39029696, 8743443.282430088, 8744664.106510164, 8744969.611288965, 8746055.279175831, 8746575.0, 8746854.473983632, 8746910.406441873, 8747915.843348015, 8749425.0, 8750477.524798283, 8750814.849429136, 8752959.886360781, 8753089.799132327, 8754085.192335326, 8756041.133698508, 8757312.041995881, 8762665.62214944, 8763737.33219214, 8764713.530220207, 8765057.8125, 8765112.818922192, 8765412.423394967, 8765551.357618317, 8765638.1248619, 8765668.75, 8766401.873320138, 8766810.262855781, 8766827.06370088, 8767116.662999937, 8767205.597477647, 8767267.312029384, 8767311.246006658, 8767391.264016535, 8767418.731833857, 8768062.1584514, 8768792.551215798, 8769301.437475322, 8769338.986241356, 8769342.000049135, 8771368.75, 8771435.769862246, 8772321.34371393, 8772889.268003918, 8773020.3125, 8773480.548120232, 8773606.40685915, 8775613.739182856, 8776634.375, 8776998.240871547, 8776998.343336971, 8777056.342260694, 8777326.384767871, 8777335.9375, 8777358.958805425, 8777877.511218177, 8778192.1875, 8778525.534031909, 8778648.813717553, 8778960.919010706, 8779324.80478678, 8779419.480472222, 8780090.507795086, 8780141.73775566, 8780215.352778597, 8780580.865130728, 8782846.875, 8782851.34935581, 8784290.141960507, 8788218.474426392, 8791910.9375, 8792674.473111635, 8794172.525456524, 8795102.676692616, 8795338.7872911, 8795339.0625, 8795366.899702365, 8795793.75, 8795793.823618138, 8796084.795456488, 8796665.140403843, 8796834.07826379, 8796868.75, 8797475.534263087, 8797483.975048425, 8797896.875, 8797946.636096682, 8798028.027825091, 8798336.331634073, 8798545.3125, 8800434.90058562, 8800652.288404176, 8803350.241243858, 8803578.125, 8804586.564655447, 8805989.0625, 8806939.221915744, 8807035.355942944, 8807183.472787635, 8807249.1611694, 8807416.102028051, 8807778.125, 8807785.48967114, 8808092.176765142, 8808186.83048895, 8808200.724311143, 8808240.135003777, 8808304.11169876, 8808324.55964, 8808377.91304624, 8808480.83964059, 8808579.6875, 8808582.400467867, 8808588.28920923, 8808696.507925022, 8808723.696344204, 8808742.127870046, 8808780.675235175, 8808812.845905911, 8808830.59881336, 8808840.436986765, 8808840.781812051, 8808852.407581171, 8808865.884354323, 8808928.132639598, 8808930.29370776, 8808934.06410342, 8808969.905722763, 8809020.828194499, 8809021.875, 8809039.0625, 8809048.498570882, 8809056.72875522, 8809064.155045666, 8809068.75, 8809077.113273038, 8809101.5625, 8809140.549678383, 8809196.581299217, 8809198.956283418, 8809224.897172365, 8809249.941295631, 8809251.674736792, 8809260.9375, 8809269.97194015, 8809331.908367507, 8809337.274487387, 8809337.5, 8809340.625, 8809349.442674346, 8809379.31042631, 8809382.8125, 8809403.501876652, 8809426.5625, 8809462.5, 8809465.625, 8809521.875, 8809525.0, 8809526.961206669, 8809528.90788643, 8809535.9375, 8809575.657599095, 8809578.712757634, 8809580.798437662, 8809621.813435227, 8809626.287504984, 8809631.25, 8809643.75, 8809649.712842274, 8809657.8125, 8809664.0625, 8809671.875, 8809720.28378311, 8809731.094814686, 8809734.959855642, 8809742.08357329, 8809750.316877844, 8809761.335444296, 8809771.875, 8809775.914257089, 8809780.161812395, 8809786.726266773, 8809819.430571726, 8809825.0, 8809857.677354645, 8809870.12730319, 8809872.947079144, 8809893.525057161, 8809918.511458043, 8809921.875, 8809934.034769975, 8809953.125, 8809976.218132889, 8809991.603082076, 8810006.25, 8810026.5625, 8810026.5625, 8810044.233555065, 8810052.748004757, 8810075.76331941, 8810084.375, 8810120.0379375, 8810128.426499711, 8810130.119442109, 8810138.682131696, 8810155.758223206, 8810172.745116364, 8810187.5, 8810193.602703402, 8810198.635891944, 8810209.239374695, 8810209.621450122, 8810225.021792803, 8810233.572552526, 8810250.0, 8810253.125, 8810263.95060997, 8810317.1875, 8810325.775347495, 8810337.18869101, 8810358.591873264, 8810376.55796256, 8810380.32293012, 8810400.269449443, 8810405.457720326, 8810414.010679599, 8810422.41350669, 8810454.575764086, 8810454.685110657, 8810458.208051898, 8810461.962638872, 8810481.776979614, 8810499.11360016, 8810513.990129305, 8810525.559308613, 8810532.8125, 8810552.617696788, 8810566.63187827, 8810583.557454329, 8810626.634702077, 8810631.352982393, 8810636.728955593, 8810648.371657742, 8810651.537488068, 8810690.36905504, 8810718.91611155, 8810755.469148992, 8810804.602380728, 8810812.5, 8810835.906855267, 8810838.997108001, 8810845.77230114, 8810874.30862059, 8810888.751244532, 8810905.740030108, 8810919.600414239, 8810933.925070163, 8810990.363347702, 8810990.506216709, 8811005.594787562, 8811009.784542954, 8811011.59176813, 8811024.5118472, 8811034.375, 8811045.865058027, 8811065.625, 8811106.25, 8811113.084318899, 8811134.163519247, 8811242.531264385, 8811247.421705091, 8811312.518937351, 8811314.699132912, 8811315.180730099, 8811323.4375, 8811485.9375, 8811515.055792075, 8811543.009347636, 8811571.240925102, 8811598.099731285, 8811620.3125, 8811664.772113618, 8811737.5, 8811737.989852954, 8811750.08395701, 8811831.759737542, 8811850.678533822, 8811851.45606855, 8811876.871725993, 8811888.168179447, 8811899.382860541, 8811915.625, 8812051.21930635, 8812077.910331655, 8812100.660655845, 8812135.9375, 8812165.130618026, 8812196.875, 8812201.431018742, 8812261.474776989, 8812262.212204061, 8812262.50926511, 8812287.713860247, 8812315.13027224, 8812387.5, 8812470.17241794, 8812478.125, 8812484.375, 8812496.547421327, 8812551.5625, 8812579.069824087, 8812641.481189659, 8812649.94279865, 8812745.209808229, 8812801.5625, 8812889.465267636, 8812927.90461059, 8812999.03787773, 8813098.4375, 8813150.0, 8813151.5625, 8813501.0945675, 8813533.454638476, 8813535.178556317, 8813644.970717827, 8813738.121342946, 8813865.625, 8813907.062112512, 8814449.997486472, 8814707.8392696, 8814898.561139558, 8815069.104015505, 8815178.20427739, 8815704.6875, 8817938.689609041, 8817950.0, 8818292.1875, 8818339.0625, 8819139.0625, 8819141.468249531, 8819144.999467257, 8819547.87615624, 8819601.17473726, 8819669.659001414, 8819760.398177277, 8819826.5625, 8820235.9375, 8820284.057808159, 8820654.6875, 8822319.798324108, 8824865.881407266, 8825305.421263479, 8825399.51976376, 8825464.825042527, 8825504.769549908, 8825548.879135825, 8825565.625, 8825683.866815059, 8825921.875, 8826044.219720615, 8826071.202499691, 8826474.449923594, 8826594.261408502, 8826800.160860727, 8826820.519715123, 8826835.441324623, 8826971.716587164, 8827093.466833267, 8827427.22896762, 8827429.403499711, 8827435.449867915, 8827843.34374494, 8827849.27457295, 8828012.50980485, 8828020.951629382, 8828113.421393106, 8828118.03913819, 8828161.986590814, 8828479.659082852, 8828539.0625, 8828560.799314829, 8828879.6875, 8829078.125, 8829126.40938955, 8829245.3125, 8829747.290122679, 8830103.125, 8830304.6875, 8830379.6875, 8831345.3125, 8831763.955985425, 8833951.5625, 8833961.891048744, 8834042.1875, 8834278.447524702, 8834518.332552426, 8834968.229058463, 8835165.928357752, 8835196.92747293, 8835235.177286692, 8838720.387150446, 8838724.18034915, 8840307.97199689, 8840636.99939097, 8842574.500981715, 8845067.990692608, 8845625.0, 8846617.1875, 8847112.94504893, 8847754.6372605, 8847874.123464257, 8848009.375, 8848217.749190582, 8860180.770431897, 8864091.745072532, 8864110.378988296, 8867134.36617303, 8868111.72849548, 8868594.199764116, 8869287.955037223, 8869564.0625, 8869875.425035592, 8876631.343930999, 8876807.405771658, 8876931.191674514, 8877125.826259969, 8878591.998585563, 8879152.69635827, 8879268.723395921, 8879715.040046994, 8880199.54001209, 8880210.395717345, 8880385.169439709, 8880390.973877776, 8880513.120687848, 8880535.9375, 8880610.9375, 8880734.375, 8880834.375, 8881126.507018818, 8881154.22042741, 8881214.0625, 8881307.33036225, 8881328.563726287, 8881344.48161573, 8881350.0, 8881408.031224836, 8881561.01455209, 8881577.516412016, 8881732.8125, 8881770.3125, 8881798.4375, 8881849.604312181, 8881937.5, 8882015.625, 8882626.324084172, 8882642.904284805, 8882732.89679033, 8882813.176756829, 8882825.514171224, 8882857.472496862, 8882873.915492529, 8882919.331132524, 8882924.6054719, 8883264.0625, 8883443.966513926, 8883927.812739408, 8884001.5625, 8884126.5625, 8884211.18886055, 8884806.25, 8887542.023116423, 8888432.109896138, 8890432.8125, 8892087.392840145, 8892099.800925411, 8892485.211973948, 8892690.169734627, 8893128.716895761, 8894451.541314993, 8896282.8125, 8902237.23415733, 8904157.099806085, 8904223.144215008, 8905841.319443095, 8906385.121014355, 8909053.77543942, 8909426.614465956, 8910043.75, 8910288.333647287, 8910803.631160544, 8922993.75, 8933101.176294459, 8933683.981416075, 8942555.96752338, 8948050.946862726, 8957085.9375, 8970859.291971147, 8977008.540990863, 8993543.6232191, 9007526.5625, 9017586.11009857, 9042319.768556837, 9064960.570796864, 9082893.497209026, 9086197.30088717, 9086457.743424552, 9088703.125, 9093646.875, 9099486.46662438, 9101222.853103101, 9101879.6875, 9102518.264975876, 9102879.455168072, 9103124.641697193, 9104424.329183146, 9109880.279922172, 9111303.125, 9111969.305395722, 9113603.125, 9114107.8125, 9115161.522241794, 9115174.352137588, 9127359.375, 9153102.074212776, 9153329.098171715, 9153995.330158308, 9154748.144899746, 9156259.375, 9156605.932231123, 9158232.049076835, 9159753.17037512, 9161301.404331388, 9162845.3125, 9163502.96114984, 9166654.522090487, 9177849.978964746, 9179497.604641141, 9180815.625, 9180831.800981484, 9186533.243064487, 9186603.794947714, 9186853.098392526, 9186893.871931199, 9186904.481354795, 9188194.562772237, 9190070.333226623, 9190083.641694145, 9191529.279028635, 9206240.625, 9208794.866782265, 9231217.1875, 9231225.0, 9247487.5, 9253269.179472627, 9256611.125748305, 9257881.18623151, ...], [52.870555111618415, 47.02023065345019, 13.522547357413716, 98.71496981797661, 34.64229701247044, 13.158112607543018, 40.12249616637763, 190.92413791751943, 14.279273574909265, 12.568147933353808, 31.731599303511537, 70.93445996014317, 33.423129205672076, 14.791932335456464, 52.85193265209659, 54.818217589259135, 56.47804401948404, 64.03859483824266, 50.09356008697873, 5.209099557255959, 47.009283098535285, 26.52166409447664, 64.75366793962368, 68.1906784466232, 75.49626322449566, 26.71105888748212, 101.57780228776416, 70.87496817794212, 14.95802070046676, 27.407124514511136, 11.796886394043081, 12.601528105936323, 8.757383290562812, 62.58713466857868, 11.501816332545248, 75.08050459319279, 25.25534012080422, 6.324977114649453, 68.66887211486949, 61.275631306852056, 6.190202556397072, 67.69306238667133, 18.68013293966657, 50.677566908060975, 56.13467575391545, 5.82141702461544, 13.59740187752331, 17.420495714239273, 82.46756124998267, 8.843177927331896, 12.086518445771981, 67.17600983613542, 10.861398417711255, 40.045973199101866, 10.462311513544961, 54.4439478147949, 6.77067671560221, 40.15102349945833, 75.59095761389736, 63.17240780690452, 98.47238834460464, 72.88774140625712, 51.629544345051585, 44.070560892695816, 39.48663417494258, 26.689366859672845, 85.45698892146527, 36.03886430626109, 27.75929256965857, 59.67111648147154, 16.229276320775934, 50.920742767203706, 26.749373109796753, 7.8479073116499025, 12.418169031649244, 5.750865099639134, 8.9677120846108, 8.530719498632918, 20.284219775856066, 73.078191849647, 31.65928311465008, 23.408265729495852, 9.199713557078955, 7.254893672657218, 48.542358151447274, 6.4970851226215185, 15.085884539569474, 19.190551939900068, 29.742646875114435, 6.06988777440028, 22.612354340858833, 105.28554404605836, 138.89788583238933, 23.484478576748295, 62.3084246647386, 57.00573159460473, 6.070528419877495, 49.802336639447944, 24.587949118369032, 39.48717021358149, 26.148101952914956, 7.490241759265058, 13.586509686441863, 39.37049121558166, 8.768084227037397, 66.29057769725252, 5.1245409918667955, 43.067441023485706, 6.439062671056113, 15.513807866677675, 51.309065874810074, 34.43005905110746, 37.21075895184143, 8.061487379174944, 46.02274482943466, 35.95890008018412, 71.95781208904864, 22.56266524113493, 14.855016820623694, 39.78989339118097, 27.88554235205733, 48.735010173285, 16.556583706425567, 76.45774867815793, 57.798681357763556, 38.54965177670417, 9.770998716201724, 10.70774647697954, 17.51471751028748, 69.06168353880905, 72.54725085453858, 11.357590284873437, 35.80328072611662, 13.662634004694826, 7.110189550631115, 35.34514169487395, 19.284792044035736, 50.47103591723555, 6.669173447269406, 87.54302577189802, 69.94531539124692, 12.741455226418408, 12.668133061371657, 82.4918147190965, 45.32594138770483, 7.600951489036787, 14.375507815573082, 52.26340230663538, 96.8955759443407, 62.80177456963643, 8.070756300548732, 8.167933821443356, 28.233790133800447, 5.501401295198691, 8.194518066378045, 51.39022824648104, 51.13206861270513, 88.67294573943589, 7.070010655591645, 29.607691857162333, 16.679500963060352, 12.985729592672017, 10.998098003484115, 48.74085901078199, 14.41456164412783, 8.20515763546064, 10.905460003060208, 13.378721062979622, 13.07295853134325, 9.163793194068585, 10.836643570600451, 9.975218007718547, 11.258787574013207, 63.55796304291821, 5.532572620287284, 27.0571763937386, 13.630613472612424, 69.88229387703775, 22.236934991444258, 67.55069109291293, 17.809537252617886, 8.523622485884514, 6.916326530691559, 43.32232559939447, 8.06070430001613, 46.437672805045544, 70.30892818141277, 83.18604503630746, 70.84033588421636, 35.883309627995764, 26.885398520033178, 30.42578436669545, 107.23231793687071, 71.19347737727489, 5.5971065912884495, 12.000205046556616, 27.9122108334586, 84.70833118579088, 38.575131038125, 8.29357098850909, 29.63157326772654, 7.420159082411911, 7.437296996857205, 69.5489412237608, 7.402097140836776, 78.99247285586553, 74.4699036805972, 12.198510307025195, 16.245432560456102, 52.76937081133658, 6.363068839535623, 75.5019483010681, 60.758058641166116, 18.892243128795016, 33.44072162282936, 32.00210385128608, 5.079800211256082, 39.32753799466353, 6.149403356992686, 20.623121109886586, 34.64692912969928, 18.52969292589877, 6.038999457032806, 36.50408707024844, 6.891969560843461, 6.373283764467163, 37.48764623107631, 53.70923183831431, 41.142071659615496, 59.571759741908394, 40.69241594462185, 24.811719105942643, 79.56500888338442, 22.27804812640237, 82.07751410362951, 35.21390793859916, 47.66038344155452, 18.01106301360032, 69.08694067482642, 44.84213220136675, 22.01037968726135, 64.71438648959281, 18.588645222656872, 43.53961168637673, 44.50764592447217, 16.214777771579715, 60.94603310068234, 6.56872505043354, 14.71324420072037, 61.680459035567296, 21.448489369144397, 5.571943791621531, 12.921841020076306, 13.654757538452241, 6.631582975506386, 13.236264101692885, 54.41883822581506, 53.334719897285304, 7.745903472041034, 20.840196056766906, 8.467690269330909, 19.7769647029591, 20.22397014652783, 5.804797267068831, 14.354248938390654, 76.24228297888325, 43.26204312813411, 17.428223001304282, 42.5428348013419, 15.168395571741808, 8.934594547972146, 7.7361297010192445, 55.50716811450583, 70.61114976244068, 33.444825153905, 16.34367358660938, 33.15139497329056, 11.071260824645218, 8.621407000554154, 65.21673292371214, 16.574723691440326, 7.056122253733421, 95.15617707099494, 51.60065439246871, 21.936675441495456, 8.226159324328533, 51.746277202620725, 59.338123586004265, 8.374634442625824, 11.010456317378292, 11.979030461686996, 14.407500681263647, 6.961876904526307, 15.589982234550956, 62.733129723086776, 50.06056908009427, 73.60132436424126, 13.831451317702756, 18.404792190045335, 54.43220868061253, 19.631030026815516, 87.57278362956997, 76.7002776031241, 10.563332986152606, 35.37933046392642, 11.741617534912281, 36.756448456341374, 65.58265571368433, 8.356109168487016, 5.522561461900129, 108.83846031867903, 47.08067229671183, 78.02260145203819, 34.6336260098083, 5.047053974949796, 34.72766143165598, 82.60928111506693, 10.226074674745844, 7.589230965958731, 74.65106004858356, 11.222036507407568, 11.09295875760231, 9.653486730937411, 43.674165675313105, 26.668790429336553, 68.36215921894902, 15.924197583071699, 137.6552773366858, 12.780907855962719, 32.64835262263509, 7.212723716461133, 6.413198925657189, 38.567195548120054, 20.260711472401663, 5.894641935152015, 108.84957653306559, 62.49865835076311, 13.789439549427946, 11.06529962660952, 10.467335589616994, 21.659566891320118, 22.302266322046577, 21.02813106573636, 34.529941999525384, 99.43404482064443, 5.294600677646569, 5.100389843534811, 18.52864147447307, 8.457762265252953, 63.894963317102494, 18.124492732541377, 55.01389630807009, 83.09853718512454, 21.81953429018432, 17.67817771128879, 104.7267096156131, 15.715147134901596, 79.43982331560946, 5.61094084829895, 16.853226712968915, 52.10900967749417, 53.419603965864276, 35.72787118237015, 14.072267800247058, 6.227479975661786, 63.62405546253432, 30.624051508298667, 56.39711345453258, 15.7530846631581, 10.101711350186049, 15.636522107786844, 10.02509118326309, 20.551225643683225, 48.4075313244817, 77.93821128985448, 8.883470525965649, 14.012612729360846, 5.583113194673219, 20.19864403722869, 26.62621073130772, 44.35206490631034, 5.330229785097719, 76.6974318873294, 21.849999833937506, 6.707292365839384, 51.05456494415333, 60.341141406588385, 37.346031200947124, 114.20916256099719, 17.097292803219517, 64.61655788767668, 22.947093527774033, 6.0791598864560905, 27.792095230606947, 64.74087304393291, 18.306523493494172, 27.275584967995798, 24.577645962113778, 14.116208230649926, 8.384170078217208, 17.25676878051408, 26.540670287033254, 49.455694675688804, 26.99415437698938, 16.655889992132092, 49.71430699214895, 31.333263607479804, 72.025657264, 150.3893563249462, 41.27710295246102, 34.727302955888, 116.30861862381659, 29.455723959867242, 40.616888468273444, 40.963677443387915, 64.0202108180442, 14.581325683987604, 5.880525231045166, 40.46353121049748, 6.300283051743767, 12.484769784953114, 10.078315145101254, 8.124645727274759, 32.688842152292004, 136.17882321228163, 25.93793538723282, 23.995339332531007, 95.6576649719893, 17.313189495900797, 37.505769943817114, 8.611512067849853, 8.401748893895203, 51.858000125934105, 15.125038429194968, 26.193365136842548, 48.49538189947976, 88.2886530358468, 73.65925078394233, 27.577511631160636, 19.39212691958214, 14.62260661222314, 12.094420550639994, 13.126522260614072, 25.53694941762894, 27.9585469469233, 8.309988567685988, 37.007155136683835, 7.832237621202119, 46.47658179447537, 6.066173314858436, 24.823841768609114, 43.632126973015374, 33.41890526392519, 111.49097257815136, 56.23879908658006, 12.033615441128438, 26.79434138764468, 6.623331973168684, 12.0282736334802, 79.46289291086191, 14.930655542665926, 6.730461156113454, 51.98700480961344, 41.89921833675157, 96.34439481026119, 14.657350432846364, 210.4452607822719, 30.98178270926789, 78.85624682965643, 11.650971505118388, 6.0206437751373105, 8.570683157654766, 44.52805137872099, 7.383132452884371, 30.352754206236234, 8.456748900531801, 9.937265397159301, 5.130114136028224, 13.782018422044036, 31.764677749962086, 10.93775119910564, 14.658601051567187, 10.846827024175282, 51.921416894005425, 5.038730194111419, 10.387753061501401, 6.805239265119357, 69.52275275546191, 19.69079655577938, 8.371306277744598, 13.83746739980346, 59.07342915152684, 9.17049846985957, 7.096917114747297, 15.305224366489657, 31.781112948023008, 79.20684617133577, 121.37954887732225, 10.287078203174895, 96.32238896425542, 30.009133174843658, 7.223988838802813, 59.96824507799689, 25.188363174830236, 10.036211107880527, 26.40491109864561, 22.00951718714714, 10.727294433226099, 22.723987652367924, 61.89539926043061, 9.157453993015695, 134.29153764823405, 10.722657734633785, 29.930518260916926, 104.46762867483723, 76.36604131386983, 5.678808445642835, 7.050939216062734, 102.42480487506592, 23.907871471352752, 63.58500161307298, 15.229733314468408, 7.762734165809249, 13.368432449335446, 62.30736765881507, 61.98720069772747, 72.26647894014646, 33.3307606606228, 29.4175094110533, 61.727083185039035, 42.11003433348158, 76.18443249358766, 68.42996760288294, 17.411341662776962, 12.489929908805154, 9.5440734366039, 56.98791407368891, 18.027528783391368, 31.063859684690854, 14.266384091696231, 46.451313541897036, 9.959970733017263, 19.27229511139759, 19.953609223414457, 124.75690321978044, 17.016895659504613, 49.12263001847321, 20.666851473769526, 58.612892178845854, 29.345085639796785, 18.510124414644785, 130.05074770510276, 29.08248546295451, 10.541640651826969, 112.78198694781278, 22.989935933241902, 5.369712406643927, 5.787310094093329, 11.557927113051745, 27.39794345911138, 13.125842929873095, 17.633863985592225, 12.930213497816146, 132.47786407479873, 15.574900795207792, 68.62868684815109, 16.03166327562432, 14.97070816122215, 17.89573870811032, 40.957310420362035, 22.476341717823544, 57.974237675491786, 32.94347673752612, 50.42026211997624, 72.8966562532097, 11.968699618672392, 11.275509823785134, 52.808279212860675, 24.458511896270505, 30.79068253549829, 43.08756421601369, 54.73056477913185, 5.418684013390046, 26.644786807176832, 65.57026572938551, 11.307792081196075, 35.01835145193203, 10.634081164351684, 45.6709853645974, 24.751248414201687, 55.675931216512865, 36.60427148374785, 50.90449347237373, 29.27773112162087, 62.545066269223796, 115.78395333126866, 129.4902057384699, 77.24234674451232, 76.41131271272572, 62.45082808154193, 101.09653693816145, 7.754102546381224, 19.09386682536246, 58.21665079579591, 18.223694187853148, 126.65853121349761, 10.488335536988599, 35.52441469316981, 24.075488398849338, 45.64312072909289, 75.08160703560199, 33.453462054786115, 38.894587649293115, 88.0199766986213, 74.32306462590945, 14.833172229599308, 14.381263037523178, 77.19442134775039, 90.66490314989043, 72.5040741477153, 28.0712222892759, 85.4693787927701, 20.131646907855608, 24.07702758278559, 22.260797538717487, 18.375481639271573, 65.97201009634853, 14.450259539403884, 34.10816860150813, 54.61508033306251, 14.14826305652936, 59.05332357525891, 55.62918858628033, 94.74707298593208, 38.375983546291216, 6.696650107662793, 20.690386502324834, 36.85174761232709, 46.82687814212885, 73.37799543361184, 17.17228566788977, 22.814655071711048, 10.0726071466709, 55.0417249788343, 20.591031016562866, 34.58763030838597, 5.139842169416913, 63.38878348649885, 63.345412982232844, 19.15230360460124, 79.32540023257185, 25.91918065624453, 11.452643112374725, 26.10501483319229, 40.27079475432991, 114.9295402361705, 6.9253641340530745, 53.16714704025532, 93.4199656947174, 157.83456864454283, 66.6609089927733, 16.21788575490259, 23.607351899131988, 19.067982979147114, 83.86790874827344, 12.29106356676244, 11.576719294255785, 8.74070819567458, 8.259362627336113, 77.97917733240786, 26.49554742476674, 66.6056690513783, 19.596879421826962, 73.928380643225, 24.483352135704404, 20.74839606918333, 14.67265912194672, 85.58367442673979, 63.94512709166253, 10.417663149614652, 78.51678153547341, 56.527715442499506, 6.778007271765454, 9.420025538875025, 106.72345842939426, 21.250441658615383, 108.96422232636347, 17.531135982659286, 15.614848000955194, 47.71088325649423, 34.49669875559554, 62.19147545691085, 114.6403063944941, 46.64092279627097, 9.753006496222476, 65.36760852007752, 13.87451088505863, 62.736714471668414, 7.942787171511482, 98.35100267328102, 32.43574576430632, 26.37889076399117, 12.920149174091868, 8.51571305563228, 18.20195748101308, 6.4131981222949745, 29.252628473036598, 5.485993505907535, 42.97157934440731, 61.11132614213557, 72.16690685032371, 31.0348310471911, 11.711198135003206, 6.877791264562119, 116.1996378142292, 18.088000662717867, 22.067655269913576, 99.41499524771021, 94.8650188075584, 20.829420720394793, 91.5829195659044, 104.52486716231621, 55.000941156915175, 95.11154599993199, 7.881775682453958, 48.12560507954902, 16.17227611314638, 9.403417043128393, 27.996193349057762, 18.361882578614114, 143.89461400950452, 16.26750111641086, 9.96844155252266, 118.8357841287594, 38.46371749730954, 23.21424924580696, 45.64505891202254, 178.31481044176084, 117.53305865650039, 6.668663840158265, 81.90548815305192, 26.171769912563462, 103.73511568903751, 27.848586953142714, 14.976941666944738, 52.037608359624286, 67.18952018969298, 53.975748299575265, 10.915588386480687, 56.594088244368926, 67.27422266956333, 69.16070618868346, 95.65326529479611, 71.48020233645127, 15.627949178714422, 27.441799242388146, 9.246055145938142, 50.04038176616804, 11.821580133585043, 7.064698535513983, 12.216599551376914, 158.1431653922183, 40.47112061309975, 85.53974631309072, 6.209834891673836, 5.997348130299642, 159.04252113597556, 9.058212973020682, 17.99074045693755, 68.29005501900131, 26.8462774033066, 48.647333546222605, 7.6129485715158935, 26.55592908401367, 67.31826048203342, 8.328950235488742, 40.28841782943125, 19.61240829017959, 56.045233937038596, 43.68467303675041, 101.65899732124632, 49.794647441231064, 39.650290948130504, 23.585681781388473, 77.88666013794355, 5.383854280570663, 72.69597343428123, 8.913526064720418, 63.444351173496266, 60.104305271694145, 13.856243233112787, 43.43272764970035, 49.245530274034685, 16.0180183665688, 10.039837123876238, 21.692546190417108, 14.135807418136922, 35.768878572953085, 9.735004424129626, 54.58144605143545, 34.472342549282395, 45.57483744702257, 24.786572933299986, 18.64467244546038, 8.015639400848794, 17.329717887838644, 11.38880927159279, 5.250982067532064, 82.32807781108956, 106.25663185924998, 34.044257022693074, 43.10128528661363, 10.711031784852448, 10.442417497671663, 13.590339591856145, 236.04156309433338, 45.21087332907415, 5.86283391704397, 6.023874116156956, 33.02876810761014, 7.427533536123879, 79.03293680801964, 32.50401437755656, 76.58949860427302, 50.49873925814518, 97.24005255715412, 14.388362965681814, 82.34064125223907, 28.722158557691344, 55.22457022869495, 32.24898729449421, 51.538075412183815, 70.24252354255194, 5.24217391563494, 36.5996225947515, 10.292880832662343, 80.58369797035476, 16.332004309559913, 5.903857836498847, 8.029054134546936, 49.97130116721797, 15.14535600383805, 5.497288495210968, 5.042804176147138, 7.895990372777548, 94.00343113938331, 8.941178770320775, 8.039213057231771, 19.245276505835736, 65.34490357458598, 28.999192010391496, 49.44881658964156, 22.60571011539711, 21.40257676549934, 74.76363310877815, 25.50468300031028, 111.49876128793815, 22.087307890514495, 13.168602832840826, 9.323950609754666, 37.70320906912455, 202.0248351865427, 101.00214789679845, 48.24857867335297, 54.82158864092412, 64.03640123559197, 9.009644758968209, 31.662995655146467, 6.01474292267428, 30.52480196029182, 31.12770794925953, 14.841067519331796, 13.099249589080884, 80.40038476538095, 10.374754670781725, 14.370906819642888, 91.79303287594547, 85.91318296315387, 63.328093282997756, 56.658714961404485, 57.908510695238185, 76.8302348658973, 62.84290190980853, 7.003856628845044, 49.84082866096192, 6.03935626662094, 7.770018471617772, 53.314356880825045, 115.77536232393687, 44.33888494432622, 11.628095904699114, 27.247596204846086, 72.19127705051969, 78.91418477314514, 72.83825286895117, 22.600856224318115, 37.245442704055044, 59.8074724252259, 24.57061466075462, 17.681362684204178, 21.046644806888654, 27.032944386060688, 5.177511808051686, 30.065324542969517, 69.94904921852907, 6.885349349556094, 10.562368430666575, 51.56780439217554, 7.6834703198961245, 19.144374310681172, 54.33532912203934, 113.00985162142285, 27.11047334874074, 87.33210039215251, 8.20152032468016, 19.685013394394755, 53.658800415077465, 65.03727286935178, 10.830172888757943, 43.41901958774518, 33.79693929605826, 27.51797824354286, 8.27540602302263, 48.71858219613878, 48.556623146842206, 129.96505083613795, 5.158586986802952, 5.567760782627933, 66.5048377594937, 71.91871252689589, 51.445929682704616, 50.91864976717241, 10.152117971786533, 17.299760982184857, 89.16097343419602, 10.57332070823297, 13.62726008716735, 94.95644551964124, 13.020120432919347, 79.71636537427042, 30.285243218763334, 10.034030445808458, 26.247983729706018, 71.10703762557858, 15.642882399380511, 10.372086142529517, 13.706567680777926, 14.058237600693733, 16.858166446640706, 11.021427084401848, 58.36307986951202, 56.431603557663706, 13.817917386998975, 6.196083466426539, 86.56142598818184, 106.65779896947294, 20.50352790284, 50.70015523105661, 10.219410984860332, 17.810383759373558, 43.88934078954157, 22.96734956105908, 61.11956934134165, 60.96462074218596, 17.76329436128593, 40.43090938669033, 89.44503198063467, 37.755806354908714, 90.34534059471679, 15.009244500707299, 13.932376583702466, 81.06161506063025, 59.930239275864466, 68.9378799906518, 26.892124055582947, 66.72172255874018, 61.879310705661595, 25.660985656157678, 25.63698158078714, 9.313679790434495, 83.01170308296933, 39.10235456470632, 5.217690259058319, 11.874735022627625, 9.970343054080578, 5.937091730969925, 7.647941590434039, 5.45298757801849, 28.303575250419826, 16.310620268239095, 36.4276276024114, 6.684609271892649, 39.834065203519, 29.824009696582728, 45.01665343338479, 32.6874991772068, 46.482101598779174, 11.872632855465016, 13.481919494219827, 28.674998600131598, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3091208.673313686, 3672545.3125, 3699973.0077133966, 3948087.5, 4117186.9051634385, 4179736.9375155256, 4235801.5625, 4237146.875, 4263159.1896825405, 4324678.885291581, 4489864.0625, 6009234.363179883, 7062328.103843152, 7062349.960195283, 7228932.153468414, 7306368.75, 7367878.392715936, 7369325.0, 7401154.2111327695, 7407365.846404006, 7483232.8125, 7527596.764831672, 7551581.25, 7570125.0, 7612356.25, 7618099.901090124, 7673028.01143828, 7673795.821859255, 7676734.379325193, 7678835.159845862, 7680420.702219527, 7681189.837268537, 7683872.670490035, 7691243.75, 7713526.789347458, 7742271.875, 7745352.934317533, 7751280.131529998, 7753202.249739676, 7770073.4375, 7784329.052768678, 7792967.1875, 7792981.975212665, 7805004.6875, 7839984.375, 7863026.662505033, 7863780.846176535, 7863793.264499484, 7868545.3125, 7873854.047548507, 7888423.975028659, 7889003.125, 7897752.947670543, 7898496.875, 7898649.52806154, 7905664.0625, 7905934.410809195, 7906296.5337303765, 7906957.703121912, 7906982.801104612, 7908607.8125, 7910167.688190341, 7911716.946752715, 7924787.5, 7925296.2111582225, 7936995.212310329, 7950627.439642525, 7956957.8125, 7959711.820336137, 7963637.296043751, 7971955.267245376, 7975346.619518516, 7975783.86675687, 7981358.441841271, 7981369.443770093, 7983163.171432078, 7985235.473602911, 7985269.184803319, 7986875.932129407, 7991985.9375, 7997856.25, 7997896.959584051, 8002693.590039635, 8006964.546925396, 8007098.129567159, 8009879.75095845, 8011960.9748697635, 8038247.647118079, 8042058.833907975, 8042945.135535371, 8049457.417828598, 8058104.979572505, 8063876.27451739, 8064315.303865372, 8067193.100503341, 8069098.4375, 8070512.329323741, 8094275.0, 8114641.950332409, 8117439.0625, 8121223.304552375, 8127363.738889708, 8128968.342424723, 8130793.75, 8131666.436606233, 8135172.88646823, 8136220.0314628435, 8137028.125, 8139090.311616491, 8139406.032978817, 8141202.81886207, 8141227.877266742, 8142850.0, 8150472.986131833, 8153604.6875, 8159473.585735109, 8160125.138756203, 8160126.163426954, 8161845.289621058, 8166284.375, 8166303.736316998, 8174098.4375, 8175881.617731217, 8176599.439931618, 8176937.5, 8177857.674532772, 8178930.165336265, 8184060.651112892, 8184217.7307887655, 8185043.75, 8189467.1875, 8200922.017256976, 8201491.862309861, 8206152.743462313, 8207259.331983107, 8208164.029323653, 8209589.870924511, 8209689.113598139, 8210252.633381849, 8213440.625, 8214704.013974117, 8215869.58420351, 8215980.490808402, 8216819.844823379, 8219530.779370767, 8224899.993674584, 8225304.530630641, 8228528.125, 8230387.5, 8230878.125, 8231782.380792794, 8232190.393696257, 8232893.976808403, 8233175.892016792, 8234057.634260754, 8234250.0, 8234286.232106322, 8236764.0625, 8240582.613127331, 8241720.3125, 8251581.641777162, 8252161.870851805, 8252456.165467049, 8252840.625, 8252976.417020487, 8253538.905293933, 8253877.978002905, 8255661.373689079, 8258950.967413651, 8262685.732393081, 8265221.680448687, 8269335.049475639, 8269970.394773431, 8270823.4375, 8275499.989530107, 8281232.057564465, 8283277.896852552, 8284916.928509401, 8285086.107427779, 8285596.731225975, 8287150.59228458, 8287344.172879474, 8287736.657627464, 8288135.9375, 8288721.421966305, 8290034.375, 8290346.875, 8291426.5625, 8301413.7904200265, 8302451.635875616, 8302560.215579948, 8303113.638591015, 8306761.493731643, 8309320.3125, 8310020.0022260165, 8310865.930134654, 8313681.218280419, 8313781.25, 8324209.375, 8334434.388201743, 8341212.5, 8344461.963763309, 8347693.266646419, 8354874.667460501, 8355296.282388964, 8356248.299611555, 8357020.1441701185, 8357755.279262353, 8358024.937542773, 8358060.9375, 8358613.222917578, 8360068.75, 8360512.5, 8361496.067690012, 8362471.875, 8365546.875, 8365614.653330654, 8383523.63538159, 8383647.444579472, 8385430.658130197, 8396562.712597521, 8405941.903817125, 8406555.764231112, 8406701.224881528, 8413031.861120597, 8413044.545932228, 8415643.75, 8416395.3125, 8416409.906864872, 8417870.3125, 8418431.25, 8426717.316097194, 8433576.547325088, 8435083.950244742, 8439182.736547016, 8441804.6875, 8459390.625, 8469745.937060328, 8473395.3125, 8494524.184673313, 8498841.951365586, 8502403.125, 8503861.0383443, 8505467.1875, 8506599.62744275, 8508554.985748675, 8508559.797590561, 8512108.314217335, 8512348.376294555, 8514483.45604551, 8515087.682328291, 8518046.088069769, 8519130.595464973, 8520475.530610645, 8523675.863718556, 8524602.591887387, 8526007.390708737, 8526009.375, 8526042.565444786, 8526704.11946017, 8527350.32747285, 8527818.17492456, 8528064.987612804, 8529082.687614935, 8529599.836893272, 8529617.1875, 8529792.13681421, 8529995.17437186, 8531028.03500098, 8531030.351535747, 8531307.302715318, 8531551.915564582, 8532876.5625, 8533475.427239662, 8533804.6875, 8533874.67842226, 8533995.525751702, 8540628.088584952, 8541820.896192353, 8545452.561204897, 8545492.558810271, 8545843.49550633, 8546218.743631614, 8546256.25, 8546668.293345643, 8547974.88397408, 8548946.875, 8549692.1875, 8550953.287886243, 8552067.111168945, 8553556.7339812, 8554573.289967736, 8555422.793555094, 8555612.660330689, 8555629.6875, 8556578.125, 8556795.21858464, 8556957.487215085, 8557907.580502803, 8558040.483746605, 8559328.978110619, 8560164.0625, 8560545.3125, 8563366.793706035, 8563396.177378139, 8567084.735200256, 8567268.321568385, 8574879.6875, 8587337.629211321, 8588296.656337887, 8595415.625, 8596679.6875, 8597257.8125, 8597362.742367776, 8597425.324434564, 8598251.5625, 8599327.53164086, 8599550.897357982, 8599868.711106736, 8599961.799057825, 8601054.747022465, 8601695.29015495, 8602333.17033934, 8604158.895384332, 8606950.783223897, 8608623.4375, 8610004.923455724, 8618993.253831586, 8623739.913105305, 8625011.834329164, 8626025.33619644, 8626312.011852697, 8628845.3125, 8631716.554397974, 8632085.408718284, 8635842.962564252, 8639420.3125, 8642499.984131068, 8643598.397203533, 8643929.219508732, 8644426.079027137, 8644903.115369603, 8645147.889590636, 8645803.125, 8645954.6875, 8646629.80082526, 8646637.597995413, 8646823.268766625, 8646844.060267497, 8647200.0, 8647303.767311916, 8647360.9375, 8647726.5625, 8647821.407112477, 8647861.508221524, 8651301.184487624, 8652014.251672875, 8652035.540732974, 8652096.818768745, 8652140.693739574, 8652182.334485037, 8652381.25, 8652757.8125, 8652837.445495775, 8654029.366527254, 8654315.625, 8654401.804887287, 8654430.777893128, 8654881.447790062, 8659291.414287351, 8659907.983629653, 8662800.720352737, 8662822.837597027, 8663946.875, 8664428.125, 8665869.730565606, 8666720.045397745, 8666733.802025381, 8667373.381282203, 8667906.146070037, 8667993.75, 8668677.779779501, 8670868.299497342, 8671534.40561906, 8671777.836749185, 8671907.531566402, 8672896.159499662, 8674576.5625, 8674803.125, 8675767.657545416, 8675779.6875, 8678399.634368517, 8679559.288596693, 8680105.777850078, 8682564.0625, 8682574.10769697, 8682604.621045098, 8683507.574590746, 8684200.565500997, 8685457.99259979, 8698371.680115495, 8706642.120449055, 8710689.0625, 8713448.237408027, 8715516.01219545, 8715518.75, 8715538.639123041, 8715639.0625, 8715915.625, 8715926.5625, 8716200.0, 8716267.540068587, 8716538.668000586, 8717473.4375, 8717690.625, 8718070.826808406, 8719281.152179273, 8719393.04810232, 8719442.1875, 8719451.819952993, 8721105.41111239, 8721735.143433068, 8723280.93069568, 8724407.8125, 8725123.273145813, 8725270.58182071, 8725301.281410417, 8728829.315305406, 8728891.133515997, 8730089.0625, 8730506.817754047, 8730523.649121089, 8730681.25, 8730846.922331875, 8734767.057353918, 8735137.5, 8735231.14266819, 8735293.75, 8737742.137755936, 8738320.70461583, 8738751.250173785, 8739405.228906712, 8739691.612994624, 8741074.39029696, 8743443.282430088, 8744664.106510164, 8744969.611288965, 8746055.279175831, 8746575.0, 8746854.473983632, 8746910.406441873, 8747915.843348015, 8749425.0, 8750477.524798283, 8750814.849429136, 8752959.886360781, 8753089.799132327, 8754085.192335326, 8756041.133698508, 8757312.041995881, 8762665.62214944, 8763737.33219214, 8764713.530220207, 8765057.8125, 8765112.818922192, 8765412.423394967, 8765551.357618317, 8765638.1248619, 8765668.75, 8766401.873320138, 8766810.262855781, 8766827.06370088, 8767116.662999937, 8767205.597477647, 8767267.312029384, 8767311.246006658, 8767391.264016535, 8767418.731833857, 8768062.1584514, 8768792.551215798, 8769301.437475322, 8769338.986241356, 8769342.000049135, 8771368.75, 8771435.769862246, 8772321.34371393, 8772889.268003918, 8773020.3125, 8773480.548120232, 8773606.40685915, 8775613.739182856, 8776634.375, 8776998.240871547, 8776998.343336971, 8777056.342260694, 8777326.384767871, 8777335.9375, 8777358.958805425, 8777877.511218177, 8778192.1875, 8778525.534031909, 8778648.813717553, 8778960.919010706, 8779324.80478678, 8779419.480472222, 8780090.507795086, 8780141.73775566, 8780215.352778597, 8780580.865130728, 8782846.875, 8782851.34935581, 8784290.141960507, 8788218.474426392, 8791910.9375, 8792674.473111635, 8794172.525456524, 8795102.676692616, 8795338.7872911, 8795339.0625, 8795366.899702365, 8795793.75, 8795793.823618138, 8796084.795456488, 8796665.140403843, 8796834.07826379, 8796868.75, 8797475.534263087, 8797483.975048425, 8797896.875, 8797946.636096682, 8798028.027825091, 8798336.331634073, 8798545.3125, 8800434.90058562, 8800652.288404176, 8803350.241243858, 8803578.125, 8804586.564655447, 8805989.0625, 8806939.221915744, 8807035.355942944, 8807183.472787635, 8807249.1611694, 8807416.102028051, 8807778.125, 8807785.48967114, 8808092.176765142, 8808186.83048895, 8808200.724311143, 8808240.135003777, 8808304.11169876, 8808324.55964, 8808377.91304624, 8808480.83964059, 8808579.6875, 8808582.400467867, 8808588.28920923, 8808696.507925022, 8808723.696344204, 8808742.127870046, 8808780.675235175, 8808812.845905911, 8808830.59881336, 8808840.436986765, 8808840.781812051, 8808852.407581171, 8808865.884354323, 8808928.132639598, 8808930.29370776, 8808934.06410342, 8808969.905722763, 8809020.828194499, 8809021.875, 8809039.0625, 8809048.498570882, 8809056.72875522, 8809064.155045666, 8809068.75, 8809077.113273038, 8809101.5625, 8809140.549678383, 8809196.581299217, 8809198.956283418, 8809224.897172365, 8809249.941295631, 8809251.674736792, 8809260.9375, 8809269.97194015, 8809331.908367507, 8809337.274487387, 8809337.5, 8809340.625, 8809349.442674346, 8809379.31042631, 8809382.8125, 8809403.501876652, 8809426.5625, 8809462.5, 8809465.625, 8809521.875, 8809525.0, 8809526.961206669, 8809528.90788643, 8809535.9375, 8809575.657599095, 8809578.712757634, 8809580.798437662, 8809621.813435227, 8809626.287504984, 8809631.25, 8809643.75, 8809649.712842274, 8809657.8125, 8809664.0625, 8809671.875, 8809720.28378311, 8809731.094814686, 8809734.959855642, 8809742.08357329, 8809750.316877844, 8809761.335444296, 8809771.875, 8809775.914257089, 8809780.161812395, 8809786.726266773, 8809819.430571726, 8809825.0, 8809857.677354645, 8809870.12730319, 8809872.947079144, 8809893.525057161, 8809918.511458043, 8809921.875, 8809934.034769975, 8809953.125, 8809976.218132889, 8809991.603082076, 8810006.25, 8810026.5625, 8810026.5625, 8810044.233555065, 8810052.748004757, 8810075.76331941, 8810084.375, 8810120.0379375, 8810128.426499711, 8810130.119442109, 8810138.682131696, 8810155.758223206, 8810172.745116364, 8810187.5, 8810193.602703402, 8810198.635891944, 8810209.239374695, 8810209.621450122, 8810225.021792803, 8810233.572552526, 8810250.0, 8810253.125, 8810263.95060997, 8810317.1875, 8810325.775347495, 8810337.18869101, 8810358.591873264, 8810376.55796256, 8810380.32293012, 8810400.269449443, 8810405.457720326, 8810414.010679599, 8810422.41350669, 8810454.575764086, 8810454.685110657, 8810458.208051898, 8810461.962638872, 8810481.776979614, 8810499.11360016, 8810513.990129305, 8810525.559308613, 8810532.8125, 8810552.617696788, 8810566.63187827, 8810583.557454329, 8810626.634702077, 8810631.352982393, 8810636.728955593, 8810648.371657742, 8810651.537488068, 8810690.36905504, 8810718.91611155, 8810755.469148992, 8810804.602380728, 8810812.5, 8810835.906855267, 8810838.997108001, 8810845.77230114, 8810874.30862059, 8810888.751244532, 8810905.740030108, 8810919.600414239, 8810933.925070163, 8810990.363347702, 8810990.506216709, 8811005.594787562, 8811009.784542954, 8811011.59176813, 8811024.5118472, 8811034.375, 8811045.865058027, 8811065.625, 8811106.25, 8811113.084318899, 8811134.163519247, 8811242.531264385, 8811247.421705091, 8811312.518937351, 8811314.699132912, 8811315.180730099, 8811323.4375, 8811485.9375, 8811515.055792075, 8811543.009347636, 8811571.240925102, 8811598.099731285, 8811620.3125, 8811664.772113618, 8811737.5, 8811737.989852954, 8811750.08395701, 8811831.759737542, 8811850.678533822, 8811851.45606855, 8811876.871725993, 8811888.168179447, 8811899.382860541, 8811915.625, 8812051.21930635, 8812077.910331655, 8812100.660655845, 8812135.9375, 8812165.130618026, 8812196.875, 8812201.431018742, 8812261.474776989, 8812262.212204061, 8812262.50926511, 8812287.713860247, 8812315.13027224, 8812387.5, 8812470.17241794, 8812478.125, 8812484.375, 8812496.547421327, 8812551.5625, 8812579.069824087, 8812641.481189659, 8812649.94279865, 8812745.209808229, 8812801.5625, 8812889.465267636, 8812927.90461059, 8812999.03787773, 8813098.4375, 8813150.0, 8813151.5625, 8813501.0945675, 8813533.454638476, 8813535.178556317, 8813644.970717827, 8813738.121342946, 8813865.625, 8813907.062112512, 8814449.997486472, 8814707.8392696, 8814898.561139558, 8815069.104015505, 8815178.20427739, 8815704.6875, 8817938.689609041, 8817950.0, 8818292.1875, 8818339.0625, 8819139.0625, 8819141.468249531, 8819144.999467257, 8819547.87615624, 8819601.17473726, 8819669.659001414, 8819760.398177277, 8819826.5625, 8820235.9375, 8820284.057808159, 8820654.6875, 8822319.798324108, 8824865.881407266, 8825305.421263479, 8825399.51976376, 8825464.825042527, 8825504.769549908, 8825548.879135825, 8825565.625, 8825683.866815059, 8825921.875, 8826044.219720615, 8826071.202499691, 8826474.449923594, 8826594.261408502, 8826800.160860727, 8826820.519715123, 8826835.441324623, 8826971.716587164, 8827093.466833267, 8827427.22896762, 8827429.403499711, 8827435.449867915, 8827843.34374494, 8827849.27457295, 8828012.50980485, 8828020.951629382, 8828113.421393106, 8828118.03913819, 8828161.986590814, 8828479.659082852, 8828539.0625, 8828560.799314829, 8828879.6875, 8829078.125, 8829126.40938955, 8829245.3125, 8829747.290122679, 8830103.125, 8830304.6875, 8830379.6875, 8831345.3125, 8831763.955985425, 8833951.5625, 8833961.891048744, 8834042.1875, 8834278.447524702, 8834518.332552426, 8834968.229058463, 8835165.928357752, 8835196.92747293, 8835235.177286692, 8838720.387150446, 8838724.18034915, 8840307.97199689, 8840636.99939097, 8842574.500981715, 8845067.990692608, 8845625.0, 8846617.1875, 8847112.94504893, 8847754.6372605, 8847874.123464257, 8848009.375, 8848217.749190582, 8860180.770431897, 8864091.745072532, 8864110.378988296, 8867134.36617303, 8868111.72849548, 8868594.199764116, 8869287.955037223, 8869564.0625, 8869875.425035592, 8876631.343930999, 8876807.405771658, 8876931.191674514, 8877125.826259969, 8878591.998585563, 8879152.69635827, 8879268.723395921, 8879715.040046994, 8880199.54001209, 8880210.395717345, 8880385.169439709, 8880390.973877776, 8880513.120687848, 8880535.9375, 8880610.9375, 8880734.375, 8880834.375, 8881126.507018818, 8881154.22042741, 8881214.0625, 8881307.33036225, 8881328.563726287, 8881344.48161573, 8881350.0, 8881408.031224836, 8881561.01455209, 8881577.516412016, 8881732.8125, 8881770.3125, 8881798.4375, 8881849.604312181, 8881937.5, 8882015.625, 8882626.324084172, 8882642.904284805, 8882732.89679033, 8882813.176756829, 8882825.514171224, 8882857.472496862, 8882873.915492529, 8882919.331132524, 8882924.6054719, 8883264.0625, 8883443.966513926, 8883927.812739408, 8884001.5625, 8884126.5625, 8884211.18886055, 8884806.25, 8887542.023116423, 8888432.109896138, 8890432.8125, 8892087.392840145, 8892099.800925411, 8892485.211973948, 8892690.169734627, 8893128.716895761, 8894451.541314993, 8896282.8125, 8902237.23415733, 8904157.099806085, 8904223.144215008, 8905841.319443095, 8906385.121014355, 8909053.77543942, 8909426.614465956, 8910043.75, 8910288.333647287, 8910803.631160544, 8922993.75, 8933101.176294459, 8933683.981416075, 8942555.96752338, 8948050.946862726, 8957085.9375, 8970859.291971147, 8977008.540990863, 8993543.6232191, 9007526.5625, 9017586.11009857, 9042319.768556837, 9064960.570796864, 9082893.497209026, 9086197.30088717, 9086457.743424552, 9088703.125, 9093646.875, 9099486.46662438, 9101222.853103101, 9101879.6875, 9102518.264975876, 9102879.455168072, 9103124.641697193, 9104424.329183146, 9109880.279922172, 9111303.125, 9111969.305395722, 9113603.125, 9114107.8125, 9115161.522241794, 9115174.352137588, 9127359.375, 9153102.074212776, 9153329.098171715, 9153995.330158308, 9154748.144899746, 9156259.375, 9156605.932231123, 9158232.049076835, 9159753.17037512, 9161301.404331388, 9162845.3125, 9163502.96114984, 9166654.522090487, 9177849.978964746, 9179497.604641141, 9180815.625, 9180831.800981484, 9186533.243064487, 9186603.794947714, 9186853.098392526, 9186893.871931199, 9186904.481354795, 9188194.562772237, 9190070.333226623, 9190083.641694145, 9191529.279028635, 9206240.625, 9208794.866782265, 9231217.1875, 9231225.0, 9247487.5, 9253269.179472627, 9256611.125748305, 9257881.18623151, ...], [52.870555111618415, 47.02023065345019, 13.522547357413716, 98.71496981797661, 34.64229701247044, 13.158112607543018, 40.12249616637763, 190.92413791751943, 14.279273574909265, 12.568147933353808, 31.731599303511537, 70.93445996014317, 33.423129205672076, 14.791932335456464, 52.85193265209659, 54.818217589259135, 56.47804401948404, 64.03859483824266, 50.09356008697873, 5.209099557255959, 47.009283098535285, 26.52166409447664, 64.75366793962368, 68.1906784466232, 75.49626322449566, 26.71105888748212, 101.57780228776416, 70.87496817794212, 14.95802070046676, 27.407124514511136, 11.796886394043081, 12.601528105936323, 8.757383290562812, 62.58713466857868, 11.501816332545248, 75.08050459319279, 25.25534012080422, 6.324977114649453, 68.66887211486949, 61.275631306852056, 6.190202556397072, 67.69306238667133, 18.68013293966657, 50.677566908060975, 56.13467575391545, 5.82141702461544, 13.59740187752331, 17.420495714239273, 82.46756124998267, 8.843177927331896, 12.086518445771981, 67.17600983613542, 10.861398417711255, 40.045973199101866, 10.462311513544961, 54.4439478147949, 6.77067671560221, 40.15102349945833, 75.59095761389736, 63.17240780690452, 98.47238834460464, 72.88774140625712, 51.629544345051585, 44.070560892695816, 39.48663417494258, 26.689366859672845, 85.45698892146527, 36.03886430626109, 27.75929256965857, 59.67111648147154, 16.229276320775934, 50.920742767203706, 26.749373109796753, 7.8479073116499025, 12.418169031649244, 5.750865099639134, 8.9677120846108, 8.530719498632918, 20.284219775856066, 73.078191849647, 31.65928311465008, 23.408265729495852, 9.199713557078955, 7.254893672657218, 48.542358151447274, 6.4970851226215185, 15.085884539569474, 19.190551939900068, 29.742646875114435, 6.06988777440028, 22.612354340858833, 105.28554404605836, 138.89788583238933, 23.484478576748295, 62.3084246647386, 57.00573159460473, 6.070528419877495, 49.802336639447944, 24.587949118369032, 39.48717021358149, 26.148101952914956, 7.490241759265058, 13.586509686441863, 39.37049121558166, 8.768084227037397, 66.29057769725252, 5.1245409918667955, 43.067441023485706, 6.439062671056113, 15.513807866677675, 51.309065874810074, 34.43005905110746, 37.21075895184143, 8.061487379174944, 46.02274482943466, 35.95890008018412, 71.95781208904864, 22.56266524113493, 14.855016820623694, 39.78989339118097, 27.88554235205733, 48.735010173285, 16.556583706425567, 76.45774867815793, 57.798681357763556, 38.54965177670417, 9.770998716201724, 10.70774647697954, 17.51471751028748, 69.06168353880905, 72.54725085453858, 11.357590284873437, 35.80328072611662, 13.662634004694826, 7.110189550631115, 35.34514169487395, 19.284792044035736, 50.47103591723555, 6.669173447269406, 87.54302577189802, 69.94531539124692, 12.741455226418408, 12.668133061371657, 82.4918147190965, 45.32594138770483, 7.600951489036787, 14.375507815573082, 52.26340230663538, 96.8955759443407, 62.80177456963643, 8.070756300548732, 8.167933821443356, 28.233790133800447, 5.501401295198691, 8.194518066378045, 51.39022824648104, 51.13206861270513, 88.67294573943589, 7.070010655591645, 29.607691857162333, 16.679500963060352, 12.985729592672017, 10.998098003484115, 48.74085901078199, 14.41456164412783, 8.20515763546064, 10.905460003060208, 13.378721062979622, 13.07295853134325, 9.163793194068585, 10.836643570600451, 9.975218007718547, 11.258787574013207, 63.55796304291821, 5.532572620287284, 27.0571763937386, 13.630613472612424, 69.88229387703775, 22.236934991444258, 67.55069109291293, 17.809537252617886, 8.523622485884514, 6.916326530691559, 43.32232559939447, 8.06070430001613, 46.437672805045544, 70.30892818141277, 83.18604503630746, 70.84033588421636, 35.883309627995764, 26.885398520033178, 30.42578436669545, 107.23231793687071, 71.19347737727489, 5.5971065912884495, 12.000205046556616, 27.9122108334586, 84.70833118579088, 38.575131038125, 8.29357098850909, 29.63157326772654, 7.420159082411911, 7.437296996857205, 69.5489412237608, 7.402097140836776, 78.99247285586553, 74.4699036805972, 12.198510307025195, 16.245432560456102, 52.76937081133658, 6.363068839535623, 75.5019483010681, 60.758058641166116, 18.892243128795016, 33.44072162282936, 32.00210385128608, 5.079800211256082, 39.32753799466353, 6.149403356992686, 20.623121109886586, 34.64692912969928, 18.52969292589877, 6.038999457032806, 36.50408707024844, 6.891969560843461, 6.373283764467163, 37.48764623107631, 53.70923183831431, 41.142071659615496, 59.571759741908394, 40.69241594462185, 24.811719105942643, 79.56500888338442, 22.27804812640237, 82.07751410362951, 35.21390793859916, 47.66038344155452, 18.01106301360032, 69.08694067482642, 44.84213220136675, 22.01037968726135, 64.71438648959281, 18.588645222656872, 43.53961168637673, 44.50764592447217, 16.214777771579715, 60.94603310068234, 6.56872505043354, 14.71324420072037, 61.680459035567296, 21.448489369144397, 5.571943791621531, 12.921841020076306, 13.654757538452241, 6.631582975506386, 13.236264101692885, 54.41883822581506, 53.334719897285304, 7.745903472041034, 20.840196056766906, 8.467690269330909, 19.7769647029591, 20.22397014652783, 5.804797267068831, 14.354248938390654, 76.24228297888325, 43.26204312813411, 17.428223001304282, 42.5428348013419, 15.168395571741808, 8.934594547972146, 7.7361297010192445, 55.50716811450583, 70.61114976244068, 33.444825153905, 16.34367358660938, 33.15139497329056, 11.071260824645218, 8.621407000554154, 65.21673292371214, 16.574723691440326, 7.056122253733421, 95.15617707099494, 51.60065439246871, 21.936675441495456, 8.226159324328533, 51.746277202620725, 59.338123586004265, 8.374634442625824, 11.010456317378292, 11.979030461686996, 14.407500681263647, 6.961876904526307, 15.589982234550956, 62.733129723086776, 50.06056908009427, 73.60132436424126, 13.831451317702756, 18.404792190045335, 54.43220868061253, 19.631030026815516, 87.57278362956997, 76.7002776031241, 10.563332986152606, 35.37933046392642, 11.741617534912281, 36.756448456341374, 65.58265571368433, 8.356109168487016, 5.522561461900129, 108.83846031867903, 47.08067229671183, 78.02260145203819, 34.6336260098083, 5.047053974949796, 34.72766143165598, 82.60928111506693, 10.226074674745844, 7.589230965958731, 74.65106004858356, 11.222036507407568, 11.09295875760231, 9.653486730937411, 43.674165675313105, 26.668790429336553, 68.36215921894902, 15.924197583071699, 137.6552773366858, 12.780907855962719, 32.64835262263509, 7.212723716461133, 6.413198925657189, 38.567195548120054, 20.260711472401663, 5.894641935152015, 108.84957653306559, 62.49865835076311, 13.789439549427946, 11.06529962660952, 10.467335589616994, 21.659566891320118, 22.302266322046577, 21.02813106573636, 34.529941999525384, 99.43404482064443, 5.294600677646569, 5.100389843534811, 18.52864147447307, 8.457762265252953, 63.894963317102494, 18.124492732541377, 55.01389630807009, 83.09853718512454, 21.81953429018432, 17.67817771128879, 104.7267096156131, 15.715147134901596, 79.43982331560946, 5.61094084829895, 16.853226712968915, 52.10900967749417, 53.419603965864276, 35.72787118237015, 14.072267800247058, 6.227479975661786, 63.62405546253432, 30.624051508298667, 56.39711345453258, 15.7530846631581, 10.101711350186049, 15.636522107786844, 10.02509118326309, 20.551225643683225, 48.4075313244817, 77.93821128985448, 8.883470525965649, 14.012612729360846, 5.583113194673219, 20.19864403722869, 26.62621073130772, 44.35206490631034, 5.330229785097719, 76.6974318873294, 21.849999833937506, 6.707292365839384, 51.05456494415333, 60.341141406588385, 37.346031200947124, 114.20916256099719, 17.097292803219517, 64.61655788767668, 22.947093527774033, 6.0791598864560905, 27.792095230606947, 64.74087304393291, 18.306523493494172, 27.275584967995798, 24.577645962113778, 14.116208230649926, 8.384170078217208, 17.25676878051408, 26.540670287033254, 49.455694675688804, 26.99415437698938, 16.655889992132092, 49.71430699214895, 31.333263607479804, 72.025657264, 150.3893563249462, 41.27710295246102, 34.727302955888, 116.30861862381659, 29.455723959867242, 40.616888468273444, 40.963677443387915, 64.0202108180442, 14.581325683987604, 5.880525231045166, 40.46353121049748, 6.300283051743767, 12.484769784953114, 10.078315145101254, 8.124645727274759, 32.688842152292004, 136.17882321228163, 25.93793538723282, 23.995339332531007, 95.6576649719893, 17.313189495900797, 37.505769943817114, 8.611512067849853, 8.401748893895203, 51.858000125934105, 15.125038429194968, 26.193365136842548, 48.49538189947976, 88.2886530358468, 73.65925078394233, 27.577511631160636, 19.39212691958214, 14.62260661222314, 12.094420550639994, 13.126522260614072, 25.53694941762894, 27.9585469469233, 8.309988567685988, 37.007155136683835, 7.832237621202119, 46.47658179447537, 6.066173314858436, 24.823841768609114, 43.632126973015374, 33.41890526392519, 111.49097257815136, 56.23879908658006, 12.033615441128438, 26.79434138764468, 6.623331973168684, 12.0282736334802, 79.46289291086191, 14.930655542665926, 6.730461156113454, 51.98700480961344, 41.89921833675157, 96.34439481026119, 14.657350432846364, 210.4452607822719, 30.98178270926789, 78.85624682965643, 11.650971505118388, 6.0206437751373105, 8.570683157654766, 44.52805137872099, 7.383132452884371, 30.352754206236234, 8.456748900531801, 9.937265397159301, 5.130114136028224, 13.782018422044036, 31.764677749962086, 10.93775119910564, 14.658601051567187, 10.846827024175282, 51.921416894005425, 5.038730194111419, 10.387753061501401, 6.805239265119357, 69.52275275546191, 19.69079655577938, 8.371306277744598, 13.83746739980346, 59.07342915152684, 9.17049846985957, 7.096917114747297, 15.305224366489657, 31.781112948023008, 79.20684617133577, 121.37954887732225, 10.287078203174895, 96.32238896425542, 30.009133174843658, 7.223988838802813, 59.96824507799689, 25.188363174830236, 10.036211107880527, 26.40491109864561, 22.00951718714714, 10.727294433226099, 22.723987652367924, 61.89539926043061, 9.157453993015695, 134.29153764823405, 10.722657734633785, 29.930518260916926, 104.46762867483723, 76.36604131386983, 5.678808445642835, 7.050939216062734, 102.42480487506592, 23.907871471352752, 63.58500161307298, 15.229733314468408, 7.762734165809249, 13.368432449335446, 62.30736765881507, 61.98720069772747, 72.26647894014646, 33.3307606606228, 29.4175094110533, 61.727083185039035, 42.11003433348158, 76.18443249358766, 68.42996760288294, 17.411341662776962, 12.489929908805154, 9.5440734366039, 56.98791407368891, 18.027528783391368, 31.063859684690854, 14.266384091696231, 46.451313541897036, 9.959970733017263, 19.27229511139759, 19.953609223414457, 124.75690321978044, 17.016895659504613, 49.12263001847321, 20.666851473769526, 58.612892178845854, 29.345085639796785, 18.510124414644785, 130.05074770510276, 29.08248546295451, 10.541640651826969, 112.78198694781278, 22.989935933241902, 5.369712406643927, 5.787310094093329, 11.557927113051745, 27.39794345911138, 13.125842929873095, 17.633863985592225, 12.930213497816146, 132.47786407479873, 15.574900795207792, 68.62868684815109, 16.03166327562432, 14.97070816122215, 17.89573870811032, 40.957310420362035, 22.476341717823544, 57.974237675491786, 32.94347673752612, 50.42026211997624, 72.8966562532097, 11.968699618672392, 11.275509823785134, 52.808279212860675, 24.458511896270505, 30.79068253549829, 43.08756421601369, 54.73056477913185, 5.418684013390046, 26.644786807176832, 65.57026572938551, 11.307792081196075, 35.01835145193203, 10.634081164351684, 45.6709853645974, 24.751248414201687, 55.675931216512865, 36.60427148374785, 50.90449347237373, 29.27773112162087, 62.545066269223796, 115.78395333126866, 129.4902057384699, 77.24234674451232, 76.41131271272572, 62.45082808154193, 101.09653693816145, 7.754102546381224, 19.09386682536246, 58.21665079579591, 18.223694187853148, 126.65853121349761, 10.488335536988599, 35.52441469316981, 24.075488398849338, 45.64312072909289, 75.08160703560199, 33.453462054786115, 38.894587649293115, 88.0199766986213, 74.32306462590945, 14.833172229599308, 14.381263037523178, 77.19442134775039, 90.66490314989043, 72.5040741477153, 28.0712222892759, 85.4693787927701, 20.131646907855608, 24.07702758278559, 22.260797538717487, 18.375481639271573, 65.97201009634853, 14.450259539403884, 34.10816860150813, 54.61508033306251, 14.14826305652936, 59.05332357525891, 55.62918858628033, 94.74707298593208, 38.375983546291216, 6.696650107662793, 20.690386502324834, 36.85174761232709, 46.82687814212885, 73.37799543361184, 17.17228566788977, 22.814655071711048, 10.0726071466709, 55.0417249788343, 20.591031016562866, 34.58763030838597, 5.139842169416913, 63.38878348649885, 63.345412982232844, 19.15230360460124, 79.32540023257185, 25.91918065624453, 11.452643112374725, 26.10501483319229, 40.27079475432991, 114.9295402361705, 6.9253641340530745, 53.16714704025532, 93.4199656947174, 157.83456864454283, 66.6609089927733, 16.21788575490259, 23.607351899131988, 19.067982979147114, 83.86790874827344, 12.29106356676244, 11.576719294255785, 8.74070819567458, 8.259362627336113, 77.97917733240786, 26.49554742476674, 66.6056690513783, 19.596879421826962, 73.928380643225, 24.483352135704404, 20.74839606918333, 14.67265912194672, 85.58367442673979, 63.94512709166253, 10.417663149614652, 78.51678153547341, 56.527715442499506, 6.778007271765454, 9.420025538875025, 106.72345842939426, 21.250441658615383, 108.96422232636347, 17.531135982659286, 15.614848000955194, 47.71088325649423, 34.49669875559554, 62.19147545691085, 114.6403063944941, 46.64092279627097, 9.753006496222476, 65.36760852007752, 13.87451088505863, 62.736714471668414, 7.942787171511482, 98.35100267328102, 32.43574576430632, 26.37889076399117, 12.920149174091868, 8.51571305563228, 18.20195748101308, 6.4131981222949745, 29.252628473036598, 5.485993505907535, 42.97157934440731, 61.11132614213557, 72.16690685032371, 31.0348310471911, 11.711198135003206, 6.877791264562119, 116.1996378142292, 18.088000662717867, 22.067655269913576, 99.41499524771021, 94.8650188075584, 20.829420720394793, 91.5829195659044, 104.52486716231621, 55.000941156915175, 95.11154599993199, 7.881775682453958, 48.12560507954902, 16.17227611314638, 9.403417043128393, 27.996193349057762, 18.361882578614114, 143.89461400950452, 16.26750111641086, 9.96844155252266, 118.8357841287594, 38.46371749730954, 23.21424924580696, 45.64505891202254, 178.31481044176084, 117.53305865650039, 6.668663840158265, 81.90548815305192, 26.171769912563462, 103.73511568903751, 27.848586953142714, 14.976941666944738, 52.037608359624286, 67.18952018969298, 53.975748299575265, 10.915588386480687, 56.594088244368926, 67.27422266956333, 69.16070618868346, 95.65326529479611, 71.48020233645127, 15.627949178714422, 27.441799242388146, 9.246055145938142, 50.04038176616804, 11.821580133585043, 7.064698535513983, 12.216599551376914, 158.1431653922183, 40.47112061309975, 85.53974631309072, 6.209834891673836, 5.997348130299642, 159.04252113597556, 9.058212973020682, 17.99074045693755, 68.29005501900131, 26.8462774033066, 48.647333546222605, 7.6129485715158935, 26.55592908401367, 67.31826048203342, 8.328950235488742, 40.28841782943125, 19.61240829017959, 56.045233937038596, 43.68467303675041, 101.65899732124632, 49.794647441231064, 39.650290948130504, 23.585681781388473, 77.88666013794355, 5.383854280570663, 72.69597343428123, 8.913526064720418, 63.444351173496266, 60.104305271694145, 13.856243233112787, 43.43272764970035, 49.245530274034685, 16.0180183665688, 10.039837123876238, 21.692546190417108, 14.135807418136922, 35.768878572953085, 9.735004424129626, 54.58144605143545, 34.472342549282395, 45.57483744702257, 24.786572933299986, 18.64467244546038, 8.015639400848794, 17.329717887838644, 11.38880927159279, 5.250982067532064, 82.32807781108956, 106.25663185924998, 34.044257022693074, 43.10128528661363, 10.711031784852448, 10.442417497671663, 13.590339591856145, 236.04156309433338, 45.21087332907415, 5.86283391704397, 6.023874116156956, 33.02876810761014, 7.427533536123879, 79.03293680801964, 32.50401437755656, 76.58949860427302, 50.49873925814518, 97.24005255715412, 14.388362965681814, 82.34064125223907, 28.722158557691344, 55.22457022869495, 32.24898729449421, 51.538075412183815, 70.24252354255194, 5.24217391563494, 36.5996225947515, 10.292880832662343, 80.58369797035476, 16.332004309559913, 5.903857836498847, 8.029054134546936, 49.97130116721797, 15.14535600383805, 5.497288495210968, 5.042804176147138, 7.895990372777548, 94.00343113938331, 8.941178770320775, 8.039213057231771, 19.245276505835736, 65.34490357458598, 28.999192010391496, 49.44881658964156, 22.60571011539711, 21.40257676549934, 74.76363310877815, 25.50468300031028, 111.49876128793815, 22.087307890514495, 13.168602832840826, 9.323950609754666, 37.70320906912455, 202.0248351865427, 101.00214789679845, 48.24857867335297, 54.82158864092412, 64.03640123559197, 9.009644758968209, 31.662995655146467, 6.01474292267428, 30.52480196029182, 31.12770794925953, 14.841067519331796, 13.099249589080884, 80.40038476538095, 10.374754670781725, 14.370906819642888, 91.79303287594547, 85.91318296315387, 63.328093282997756, 56.658714961404485, 57.908510695238185, 76.8302348658973, 62.84290190980853, 7.003856628845044, 49.84082866096192, 6.03935626662094, 7.770018471617772, 53.314356880825045, 115.77536232393687, 44.33888494432622, 11.628095904699114, 27.247596204846086, 72.19127705051969, 78.91418477314514, 72.83825286895117, 22.600856224318115, 37.245442704055044, 59.8074724252259, 24.57061466075462, 17.681362684204178, 21.046644806888654, 27.032944386060688, 5.177511808051686, 30.065324542969517, 69.94904921852907, 6.885349349556094, 10.562368430666575, 51.56780439217554, 7.6834703198961245, 19.144374310681172, 54.33532912203934, 113.00985162142285, 27.11047334874074, 87.33210039215251, 8.20152032468016, 19.685013394394755, 53.658800415077465, 65.03727286935178, 10.830172888757943, 43.41901958774518, 33.79693929605826, 27.51797824354286, 8.27540602302263, 48.71858219613878, 48.556623146842206, 129.96505083613795, 5.158586986802952, 5.567760782627933, 66.5048377594937, 71.91871252689589, 51.445929682704616, 50.91864976717241, 10.152117971786533, 17.299760982184857, 89.16097343419602, 10.57332070823297, 13.62726008716735, 94.95644551964124, 13.020120432919347, 79.71636537427042, 30.285243218763334, 10.034030445808458, 26.247983729706018, 71.10703762557858, 15.642882399380511, 10.372086142529517, 13.706567680777926, 14.058237600693733, 16.858166446640706, 11.021427084401848, 58.36307986951202, 56.431603557663706, 13.817917386998975, 6.196083466426539, 86.56142598818184, 106.65779896947294, 20.50352790284, 50.70015523105661, 10.219410984860332, 17.810383759373558, 43.88934078954157, 22.96734956105908, 61.11956934134165, 60.96462074218596, 17.76329436128593, 40.43090938669033, 89.44503198063467, 37.755806354908714, 90.34534059471679, 15.009244500707299, 13.932376583702466, 81.06161506063025, 59.930239275864466, 68.9378799906518, 26.892124055582947, 66.72172255874018, 61.879310705661595, 25.660985656157678, 25.63698158078714, 9.313679790434495, 83.01170308296933, 39.10235456470632, 5.217690259058319, 11.874735022627625, 9.970343054080578, 5.937091730969925, 7.647941590434039, 5.45298757801849, 28.303575250419826, 16.310620268239095, 36.4276276024114, 6.684609271892649, 39.834065203519, 29.824009696582728, 45.01665343338479, 32.6874991772068, 46.482101598779174, 11.872632855465016, 13.481919494219827, 28.674998600131598, ...])
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);
([3091208.673313686, 3672545.3125, 3699973.0077133966, 3948087.5, 4117186.9051634385, 4179736.9375155256, 4235801.5625, 4237146.875, 4263159.1896825405, 4324678.885291581, 4489864.0625, 6009234.363179883, 7062328.103843152, 7062349.960195283, 7228932.153468414, 7306368.75, 7367878.392715936, 7369325.0, 7401154.2111327695, 7407365.846404006, 7483232.8125, 7527596.764831672, 7551581.25, 7570125.0, 7612356.25, 7618099.901090124, 7673028.01143828, 7673795.821859255, 7676734.379325193, 7678835.159845862, 7680420.702219527, 7681189.837268537, 7683872.670490035, 7691243.75, 7713526.789347458, 7742271.875, 7745352.934317533, 7751280.131529998, 7753202.249739676, 7770073.4375, 7784329.052768678, 7792967.1875, 7792981.975212665, 7805004.6875, 7839984.375, 7863026.662505033, 7863780.846176535, 7863793.264499484, 7868545.3125, 7873854.047548507, 7888423.975028659, 7889003.125, 7897752.947670543, 7898496.875, 7898649.52806154, 7905664.0625, 7905934.410809195, 7906296.5337303765, 7906957.703121912, 7906982.801104612, 7908607.8125, 7910167.688190341, 7911716.946752715, 7924787.5, 7925296.2111582225, 7936995.212310329, 7950627.439642525, 7956957.8125, 7959711.820336137, 7963637.296043751, 7971955.267245376, 7975346.619518516, 7975783.86675687, 7981358.441841271, 7981369.443770093, 7983163.171432078, 7985235.473602911, 7985269.184803319, 7986875.932129407, 7991985.9375, 7997856.25, 7997896.959584051, 8002693.590039635, 8006964.546925396, 8007098.129567159, 8009879.75095845, 8011960.9748697635, 8038247.647118079, 8042058.833907975, 8042945.135535371, 8049457.417828598, 8058104.979572505, 8063876.27451739, 8064315.303865372, 8067193.100503341, 8069098.4375, 8070512.329323741, 8094275.0, 8114641.950332409, 8117439.0625, 8121223.304552375, 8127363.738889708, 8128968.342424723, 8130793.75, 8131666.436606233, 8135172.88646823, 8136220.0314628435, 8137028.125, 8139090.311616491, 8139406.032978817, 8141202.81886207, 8141227.877266742, 8142850.0, 8150472.986131833, 8153604.6875, 8159473.585735109, 8160125.138756203, 8160126.163426954, 8161845.289621058, 8166284.375, 8166303.736316998, 8174098.4375, 8175881.617731217, 8176599.439931618, 8176937.5, 8177857.674532772, 8178930.165336265, 8184060.651112892, 8184217.7307887655, 8185043.75, 8189467.1875, 8200922.017256976, 8201491.862309861, 8206152.743462313, 8207259.331983107, 8208164.029323653, 8209589.870924511, 8209689.113598139, 8210252.633381849, 8213440.625, 8214704.013974117, 8215869.58420351, 8215980.490808402, 8216819.844823379, 8219530.779370767, 8224899.993674584, 8225304.530630641, 8228528.125, 8230387.5, 8230878.125, 8231782.380792794, 8232190.393696257, 8232893.976808403, 8233175.892016792, 8234057.634260754, 8234250.0, 8234286.232106322, 8236764.0625, 8240582.613127331, 8241720.3125, 8251581.641777162, 8252161.870851805, 8252456.165467049, 8252840.625, 8252976.417020487, 8253538.905293933, 8253877.978002905, 8255661.373689079, 8258950.967413651, 8262685.732393081, 8265221.680448687, 8269335.049475639, 8269970.394773431, 8270823.4375, 8275499.989530107, 8281232.057564465, 8283277.896852552, 8284916.928509401, 8285086.107427779, 8285596.731225975, 8287150.59228458, 8287344.172879474, 8287736.657627464, 8288135.9375, 8288721.421966305, 8290034.375, 8290346.875, 8291426.5625, 8301413.7904200265, 8302451.635875616, 8302560.215579948, 8303113.638591015, 8306761.493731643, 8309320.3125, 8310020.0022260165, 8310865.930134654, 8313681.218280419, 8313781.25, 8324209.375, 8334434.388201743, 8341212.5, 8344461.963763309, 8347693.266646419, 8354874.667460501, 8355296.282388964, 8356248.299611555, 8357020.1441701185, 8357755.279262353, 8358024.937542773, 8358060.9375, 8358613.222917578, 8360068.75, 8360512.5, 8361496.067690012, 8362471.875, 8365546.875, 8365614.653330654, 8383523.63538159, 8383647.444579472, 8385430.658130197, 8396562.712597521, 8405941.903817125, 8406555.764231112, 8406701.224881528, 8413031.861120597, 8413044.545932228, 8415643.75, 8416395.3125, 8416409.906864872, 8417870.3125, 8418431.25, 8426717.316097194, 8433576.547325088, 8435083.950244742, 8439182.736547016, 8441804.6875, 8459390.625, 8469745.937060328, 8473395.3125, 8494524.184673313, 8498841.951365586, 8502403.125, 8503861.0383443, 8505467.1875, 8506599.62744275, 8508554.985748675, 8508559.797590561, 8512108.314217335, 8512348.376294555, 8514483.45604551, 8515087.682328291, 8518046.088069769, 8519130.595464973, 8520475.530610645, 8523675.863718556, 8524602.591887387, 8526007.390708737, 8526009.375, 8526042.565444786, 8526704.11946017, 8527350.32747285, 8527818.17492456, 8528064.987612804, 8529082.687614935, 8529599.836893272, 8529617.1875, 8529792.13681421, 8529995.17437186, 8531028.03500098, 8531030.351535747, 8531307.302715318, 8531551.915564582, 8532876.5625, 8533475.427239662, 8533804.6875, 8533874.67842226, 8533995.525751702, 8540628.088584952, 8541820.896192353, 8545452.561204897, 8545492.558810271, 8545843.49550633, 8546218.743631614, 8546256.25, 8546668.293345643, 8547974.88397408, 8548946.875, 8549692.1875, 8550953.287886243, 8552067.111168945, 8553556.7339812, 8554573.289967736, 8555422.793555094, 8555612.660330689, 8555629.6875, 8556578.125, 8556795.21858464, 8556957.487215085, 8557907.580502803, 8558040.483746605, 8559328.978110619, 8560164.0625, 8560545.3125, 8563366.793706035, 8563396.177378139, 8567084.735200256, 8567268.321568385, 8574879.6875, 8587337.629211321, 8588296.656337887, 8595415.625, 8596679.6875, 8597257.8125, 8597362.742367776, 8597425.324434564, 8598251.5625, 8599327.53164086, 8599550.897357982, 8599868.711106736, 8599961.799057825, 8601054.747022465, 8601695.29015495, 8602333.17033934, 8604158.895384332, 8606950.783223897, 8608623.4375, 8610004.923455724, 8618993.253831586, 8623739.913105305, 8625011.834329164, 8626025.33619644, 8626312.011852697, 8628845.3125, 8631716.554397974, 8632085.408718284, 8635842.962564252, 8639420.3125, 8642499.984131068, 8643598.397203533, 8643929.219508732, 8644426.079027137, 8644903.115369603, 8645147.889590636, 8645803.125, 8645954.6875, 8646629.80082526, 8646637.597995413, 8646823.268766625, 8646844.060267497, 8647200.0, 8647303.767311916, 8647360.9375, 8647726.5625, 8647821.407112477, 8647861.508221524, 8651301.184487624, 8652014.251672875, 8652035.540732974, 8652096.818768745, 8652140.693739574, 8652182.334485037, 8652381.25, 8652757.8125, 8652837.445495775, 8654029.366527254, 8654315.625, 8654401.804887287, 8654430.777893128, 8654881.447790062, 8659291.414287351, 8659907.983629653, 8662800.720352737, 8662822.837597027, 8663946.875, 8664428.125, 8665869.730565606, 8666720.045397745, 8666733.802025381, 8667373.381282203, 8667906.146070037, 8667993.75, 8668677.779779501, 8670868.299497342, 8671534.40561906, 8671777.836749185, 8671907.531566402, 8672896.159499662, 8674576.5625, 8674803.125, 8675767.657545416, 8675779.6875, 8678399.634368517, 8679559.288596693, 8680105.777850078, 8682564.0625, 8682574.10769697, 8682604.621045098, 8683507.574590746, 8684200.565500997, 8685457.99259979, 8698371.680115495, 8706642.120449055, 8710689.0625, 8713448.237408027, 8715516.01219545, 8715518.75, 8715538.639123041, 8715639.0625, 8715915.625, 8715926.5625, 8716200.0, 8716267.540068587, 8716538.668000586, 8717473.4375, 8717690.625, 8718070.826808406, 8719281.152179273, 8719393.04810232, 8719442.1875, 8719451.819952993, 8721105.41111239, 8721735.143433068, 8723280.93069568, 8724407.8125, 8725123.273145813, 8725270.58182071, 8725301.281410417, 8728829.315305406, 8728891.133515997, 8730089.0625, 8730506.817754047, 8730523.649121089, 8730681.25, 8730846.922331875, 8734767.057353918, 8735137.5, 8735231.14266819, 8735293.75, 8737742.137755936, 8738320.70461583, 8738751.250173785, 8739405.228906712, 8739691.612994624, 8741074.39029696, 8743443.282430088, 8744664.106510164, 8744969.611288965, 8746055.279175831, 8746575.0, 8746854.473983632, 8746910.406441873, 8747915.843348015, 8749425.0, 8750477.524798283, 8750814.849429136, 8752959.886360781, 8753089.799132327, 8754085.192335326, 8756041.133698508, 8757312.041995881, 8762665.62214944, 8763737.33219214, 8764713.530220207, 8765057.8125, 8765112.818922192, 8765412.423394967, 8765551.357618317, 8765638.1248619, 8765668.75, 8766401.873320138, 8766810.262855781, 8766827.06370088, 8767116.662999937, 8767205.597477647, 8767267.312029384, 8767311.246006658, 8767391.264016535, 8767418.731833857, 8768062.1584514, 8768792.551215798, 8769301.437475322, 8769338.986241356, 8769342.000049135, 8771368.75, 8771435.769862246, 8772321.34371393, 8772889.268003918, 8773020.3125, 8773480.548120232, 8773606.40685915, 8775613.739182856, 8776634.375, 8776998.240871547, 8776998.343336971, 8777056.342260694, 8777326.384767871, 8777335.9375, 8777358.958805425, 8777877.511218177, 8778192.1875, 8778525.534031909, 8778648.813717553, 8778960.919010706, 8779324.80478678, 8779419.480472222, 8780090.507795086, 8780141.73775566, 8780215.352778597, 8780580.865130728, 8782846.875, 8782851.34935581, 8784290.141960507, 8788218.474426392, 8791910.9375, 8792674.473111635, 8794172.525456524, 8795102.676692616, 8795338.7872911, 8795339.0625, 8795366.899702365, 8795793.75, 8795793.823618138, 8796084.795456488, 8796665.140403843, 8796834.07826379, 8796868.75, 8797475.534263087, 8797483.975048425, 8797896.875, 8797946.636096682, 8798028.027825091, 8798336.331634073, 8798545.3125, 8800434.90058562, 8800652.288404176, 8803350.241243858, 8803578.125, 8804586.564655447, 8805989.0625, 8806939.221915744, 8807035.355942944, 8807183.472787635, 8807249.1611694, 8807416.102028051, 8807778.125, 8807785.48967114, 8808092.176765142, 8808186.83048895, 8808200.724311143, 8808240.135003777, 8808304.11169876, 8808324.55964, 8808377.91304624, 8808480.83964059, 8808579.6875, 8808582.400467867, 8808588.28920923, 8808696.507925022, 8808723.696344204, 8808742.127870046, 8808780.675235175, 8808812.845905911, 8808830.59881336, 8808840.436986765, 8808840.781812051, 8808852.407581171, 8808865.884354323, 8808928.132639598, 8808930.29370776, 8808934.06410342, 8808969.905722763, 8809020.828194499, 8809021.875, 8809039.0625, 8809048.498570882, 8809056.72875522, 8809064.155045666, 8809068.75, 8809077.113273038, 8809101.5625, 8809140.549678383, 8809196.581299217, 8809198.956283418, 8809224.897172365, 8809249.941295631, 8809251.674736792, 8809260.9375, 8809269.97194015, 8809331.908367507, 8809337.274487387, 8809337.5, 8809340.625, 8809349.442674346, 8809379.31042631, 8809382.8125, 8809403.501876652, 8809426.5625, 8809462.5, 8809465.625, 8809521.875, 8809525.0, 8809526.961206669, 8809528.90788643, 8809535.9375, 8809575.657599095, 8809578.712757634, 8809580.798437662, 8809621.813435227, 8809626.287504984, 8809631.25, 8809643.75, 8809649.712842274, 8809657.8125, 8809664.0625, 8809671.875, 8809720.28378311, 8809731.094814686, 8809734.959855642, 8809742.08357329, 8809750.316877844, 8809761.335444296, 8809771.875, 8809775.914257089, 8809780.161812395, 8809786.726266773, 8809819.430571726, 8809825.0, 8809857.677354645, 8809870.12730319, 8809872.947079144, 8809893.525057161, 8809918.511458043, 8809921.875, 8809934.034769975, 8809953.125, 8809976.218132889, 8809991.603082076, 8810006.25, 8810026.5625, 8810026.5625, 8810044.233555065, 8810052.748004757, 8810075.76331941, 8810084.375, 8810120.0379375, 8810128.426499711, 8810130.119442109, 8810138.682131696, 8810155.758223206, 8810172.745116364, 8810187.5, 8810193.602703402, 8810198.635891944, 8810209.239374695, 8810209.621450122, 8810225.021792803, 8810233.572552526, 8810250.0, 8810253.125, 8810263.95060997, 8810317.1875, 8810325.775347495, 8810337.18869101, 8810358.591873264, 8810376.55796256, 8810380.32293012, 8810400.269449443, 8810405.457720326, 8810414.010679599, 8810422.41350669, 8810454.575764086, 8810454.685110657, 8810458.208051898, 8810461.962638872, 8810481.776979614, 8810499.11360016, 8810513.990129305, 8810525.559308613, 8810532.8125, 8810552.617696788, 8810566.63187827, 8810583.557454329, 8810626.634702077, 8810631.352982393, 8810636.728955593, 8810648.371657742, 8810651.537488068, 8810690.36905504, 8810718.91611155, 8810755.469148992, 8810804.602380728, 8810812.5, 8810835.906855267, 8810838.997108001, 8810845.77230114, 8810874.30862059, 8810888.751244532, 8810905.740030108, 8810919.600414239, 8810933.925070163, 8810990.363347702, 8810990.506216709, 8811005.594787562, 8811009.784542954, 8811011.59176813, 8811024.5118472, 8811034.375, 8811045.865058027, 8811065.625, 8811106.25, 8811113.084318899, 8811134.163519247, 8811242.531264385, 8811247.421705091, 8811312.518937351, 8811314.699132912, 8811315.180730099, 8811323.4375, 8811485.9375, 8811515.055792075, 8811543.009347636, 8811571.240925102, 8811598.099731285, 8811620.3125, 8811664.772113618, 8811737.5, 8811737.989852954, 8811750.08395701, 8811831.759737542, 8811850.678533822, 8811851.45606855, 8811876.871725993, 8811888.168179447, 8811899.382860541, 8811915.625, 8812051.21930635, 8812077.910331655, 8812100.660655845, 8812135.9375, 8812165.130618026, 8812196.875, 8812201.431018742, 8812261.474776989, 8812262.212204061, 8812262.50926511, 8812287.713860247, 8812315.13027224, 8812387.5, 8812470.17241794, 8812478.125, 8812484.375, 8812496.547421327, 8812551.5625, 8812579.069824087, 8812641.481189659, 8812649.94279865, 8812745.209808229, 8812801.5625, 8812889.465267636, 8812927.90461059, 8812999.03787773, 8813098.4375, 8813150.0, 8813151.5625, 8813501.0945675, 8813533.454638476, 8813535.178556317, 8813644.970717827, 8813738.121342946, 8813865.625, 8813907.062112512, 8814449.997486472, 8814707.8392696, 8814898.561139558, 8815069.104015505, 8815178.20427739, 8815704.6875, 8817938.689609041, 8817950.0, 8818292.1875, 8818339.0625, 8819139.0625, 8819141.468249531, 8819144.999467257, 8819547.87615624, 8819601.17473726, 8819669.659001414, 8819760.398177277, 8819826.5625, 8820235.9375, 8820284.057808159, 8820654.6875, 8822319.798324108, 8824865.881407266, 8825305.421263479, 8825399.51976376, 8825464.825042527, 8825504.769549908, 8825548.879135825, 8825565.625, 8825683.866815059, 8825921.875, 8826044.219720615, 8826071.202499691, 8826474.449923594, 8826594.261408502, 8826800.160860727, 8826820.519715123, 8826835.441324623, 8826971.716587164, 8827093.466833267, 8827427.22896762, 8827429.403499711, 8827435.449867915, 8827843.34374494, 8827849.27457295, 8828012.50980485, 8828020.951629382, 8828113.421393106, 8828118.03913819, 8828161.986590814, 8828479.659082852, 8828539.0625, 8828560.799314829, 8828879.6875, 8829078.125, 8829126.40938955, 8829245.3125, 8829747.290122679, 8830103.125, 8830304.6875, 8830379.6875, 8831345.3125, 8831763.955985425, 8833951.5625, 8833961.891048744, 8834042.1875, 8834278.447524702, 8834518.332552426, 8834968.229058463, 8835165.928357752, 8835196.92747293, 8835235.177286692, 8838720.387150446, 8838724.18034915, 8840307.97199689, 8840636.99939097, 8842574.500981715, 8845067.990692608, 8845625.0, 8846617.1875, 8847112.94504893, 8847754.6372605, 8847874.123464257, 8848009.375, 8848217.749190582, 8860180.770431897, 8864091.745072532, 8864110.378988296, 8867134.36617303, 8868111.72849548, 8868594.199764116, 8869287.955037223, 8869564.0625, 8869875.425035592, 8876631.343930999, 8876807.405771658, 8876931.191674514, 8877125.826259969, 8878591.998585563, 8879152.69635827, 8879268.723395921, 8879715.040046994, 8880199.54001209, 8880210.395717345, 8880385.169439709, 8880390.973877776, 8880513.120687848, 8880535.9375, 8880610.9375, 8880734.375, 8880834.375, 8881126.507018818, 8881154.22042741, 8881214.0625, 8881307.33036225, 8881328.563726287, 8881344.48161573, 8881350.0, 8881408.031224836, 8881561.01455209, 8881577.516412016, 8881732.8125, 8881770.3125, 8881798.4375, 8881849.604312181, 8881937.5, 8882015.625, 8882626.324084172, 8882642.904284805, 8882732.89679033, 8882813.176756829, 8882825.514171224, 8882857.472496862, 8882873.915492529, 8882919.331132524, 8882924.6054719, 8883264.0625, 8883443.966513926, 8883927.812739408, 8884001.5625, 8884126.5625, 8884211.18886055, 8884806.25, 8887542.023116423, 8888432.109896138, 8890432.8125, 8892087.392840145, 8892099.800925411, 8892485.211973948, 8892690.169734627, 8893128.716895761, 8894451.541314993, 8896282.8125, 8902237.23415733, 8904157.099806085, 8904223.144215008, 8905841.319443095, 8906385.121014355, 8909053.77543942, 8909426.614465956, 8910043.75, 8910288.333647287, 8910803.631160544, 8922993.75, 8933101.176294459, 8933683.981416075, 8942555.96752338, 8948050.946862726, 8957085.9375, 8970859.291971147, 8977008.540990863, 8993543.6232191, 9007526.5625, 9017586.11009857, 9042319.768556837, 9064960.570796864, 9082893.497209026, 9086197.30088717, 9086457.743424552, 9088703.125, 9093646.875, 9099486.46662438, 9101222.853103101, 9101879.6875, 9102518.264975876, 9102879.455168072, 9103124.641697193, 9104424.329183146, 9109880.279922172, 9111303.125, 9111969.305395722, 9113603.125, 9114107.8125, 9115161.522241794, 9115174.352137588, 9127359.375, 9153102.074212776, 9153329.098171715, 9153995.330158308, 9154748.144899746, 9156259.375, 9156605.932231123, 9158232.049076835, 9159753.17037512, 9161301.404331388, 9162845.3125, 9163502.96114984, 9166654.522090487, 9177849.978964746, 9179497.604641141, 9180815.625, 9180831.800981484, 9186533.243064487, 9186603.794947714, 9186853.098392526, 9186893.871931199, 9186904.481354795, 9188194.562772237, 9190070.333226623, 9190083.641694145, 9191529.279028635, 9206240.625, 9208794.866782265, 9231217.1875, 9231225.0, 9247487.5, 9253269.179472627, 9256611.125748305, 9257881.18623151, ...], [52.870555111618415, 47.02023065345019, 13.522547357413716, 98.71496981797661, 34.64229701247044, 13.158112607543018, 40.12249616637763, 190.92413791751943, 14.279273574909265, 12.568147933353808, 31.731599303511537, 70.93445996014317, 33.423129205672076, 14.791932335456464, 52.85193265209659, 54.818217589259135, 56.47804401948404, 64.03859483824266, 50.09356008697873, 5.209099557255959, 47.009283098535285, 26.52166409447664, 64.75366793962368, 68.1906784466232, 75.49626322449566, 26.71105888748212, 101.57780228776416, 70.87496817794212, 14.95802070046676, 27.407124514511136, 11.796886394043081, 12.601528105936323, 8.757383290562812, 62.58713466857868, 11.501816332545248, 75.08050459319279, 25.25534012080422, 6.324977114649453, 68.66887211486949, 61.275631306852056, 6.190202556397072, 67.69306238667133, 18.68013293966657, 50.677566908060975, 56.13467575391545, 5.82141702461544, 13.59740187752331, 17.420495714239273, 82.46756124998267, 8.843177927331896, 12.086518445771981, 67.17600983613542, 10.861398417711255, 40.045973199101866, 10.462311513544961, 54.4439478147949, 6.77067671560221, 40.15102349945833, 75.59095761389736, 63.17240780690452, 98.47238834460464, 72.88774140625712, 51.629544345051585, 44.070560892695816, 39.48663417494258, 26.689366859672845, 85.45698892146527, 36.03886430626109, 27.75929256965857, 59.67111648147154, 16.229276320775934, 50.920742767203706, 26.749373109796753, 7.8479073116499025, 12.418169031649244, 5.750865099639134, 8.9677120846108, 8.530719498632918, 20.284219775856066, 73.078191849647, 31.65928311465008, 23.408265729495852, 9.199713557078955, 7.254893672657218, 48.542358151447274, 6.4970851226215185, 15.085884539569474, 19.190551939900068, 29.742646875114435, 6.06988777440028, 22.612354340858833, 105.28554404605836, 138.89788583238933, 23.484478576748295, 62.3084246647386, 57.00573159460473, 6.070528419877495, 49.802336639447944, 24.587949118369032, 39.48717021358149, 26.148101952914956, 7.490241759265058, 13.586509686441863, 39.37049121558166, 8.768084227037397, 66.29057769725252, 5.1245409918667955, 43.067441023485706, 6.439062671056113, 15.513807866677675, 51.309065874810074, 34.43005905110746, 37.21075895184143, 8.061487379174944, 46.02274482943466, 35.95890008018412, 71.95781208904864, 22.56266524113493, 14.855016820623694, 39.78989339118097, 27.88554235205733, 48.735010173285, 16.556583706425567, 76.45774867815793, 57.798681357763556, 38.54965177670417, 9.770998716201724, 10.70774647697954, 17.51471751028748, 69.06168353880905, 72.54725085453858, 11.357590284873437, 35.80328072611662, 13.662634004694826, 7.110189550631115, 35.34514169487395, 19.284792044035736, 50.47103591723555, 6.669173447269406, 87.54302577189802, 69.94531539124692, 12.741455226418408, 12.668133061371657, 82.4918147190965, 45.32594138770483, 7.600951489036787, 14.375507815573082, 52.26340230663538, 96.8955759443407, 62.80177456963643, 8.070756300548732, 8.167933821443356, 28.233790133800447, 5.501401295198691, 8.194518066378045, 51.39022824648104, 51.13206861270513, 88.67294573943589, 7.070010655591645, 29.607691857162333, 16.679500963060352, 12.985729592672017, 10.998098003484115, 48.74085901078199, 14.41456164412783, 8.20515763546064, 10.905460003060208, 13.378721062979622, 13.07295853134325, 9.163793194068585, 10.836643570600451, 9.975218007718547, 11.258787574013207, 63.55796304291821, 5.532572620287284, 27.0571763937386, 13.630613472612424, 69.88229387703775, 22.236934991444258, 67.55069109291293, 17.809537252617886, 8.523622485884514, 6.916326530691559, 43.32232559939447, 8.06070430001613, 46.437672805045544, 70.30892818141277, 83.18604503630746, 70.84033588421636, 35.883309627995764, 26.885398520033178, 30.42578436669545, 107.23231793687071, 71.19347737727489, 5.5971065912884495, 12.000205046556616, 27.9122108334586, 84.70833118579088, 38.575131038125, 8.29357098850909, 29.63157326772654, 7.420159082411911, 7.437296996857205, 69.5489412237608, 7.402097140836776, 78.99247285586553, 74.4699036805972, 12.198510307025195, 16.245432560456102, 52.76937081133658, 6.363068839535623, 75.5019483010681, 60.758058641166116, 18.892243128795016, 33.44072162282936, 32.00210385128608, 5.079800211256082, 39.32753799466353, 6.149403356992686, 20.623121109886586, 34.64692912969928, 18.52969292589877, 6.038999457032806, 36.50408707024844, 6.891969560843461, 6.373283764467163, 37.48764623107631, 53.70923183831431, 41.142071659615496, 59.571759741908394, 40.69241594462185, 24.811719105942643, 79.56500888338442, 22.27804812640237, 82.07751410362951, 35.21390793859916, 47.66038344155452, 18.01106301360032, 69.08694067482642, 44.84213220136675, 22.01037968726135, 64.71438648959281, 18.588645222656872, 43.53961168637673, 44.50764592447217, 16.214777771579715, 60.94603310068234, 6.56872505043354, 14.71324420072037, 61.680459035567296, 21.448489369144397, 5.571943791621531, 12.921841020076306, 13.654757538452241, 6.631582975506386, 13.236264101692885, 54.41883822581506, 53.334719897285304, 7.745903472041034, 20.840196056766906, 8.467690269330909, 19.7769647029591, 20.22397014652783, 5.804797267068831, 14.354248938390654, 76.24228297888325, 43.26204312813411, 17.428223001304282, 42.5428348013419, 15.168395571741808, 8.934594547972146, 7.7361297010192445, 55.50716811450583, 70.61114976244068, 33.444825153905, 16.34367358660938, 33.15139497329056, 11.071260824645218, 8.621407000554154, 65.21673292371214, 16.574723691440326, 7.056122253733421, 95.15617707099494, 51.60065439246871, 21.936675441495456, 8.226159324328533, 51.746277202620725, 59.338123586004265, 8.374634442625824, 11.010456317378292, 11.979030461686996, 14.407500681263647, 6.961876904526307, 15.589982234550956, 62.733129723086776, 50.06056908009427, 73.60132436424126, 13.831451317702756, 18.404792190045335, 54.43220868061253, 19.631030026815516, 87.57278362956997, 76.7002776031241, 10.563332986152606, 35.37933046392642, 11.741617534912281, 36.756448456341374, 65.58265571368433, 8.356109168487016, 5.522561461900129, 108.83846031867903, 47.08067229671183, 78.02260145203819, 34.6336260098083, 5.047053974949796, 34.72766143165598, 82.60928111506693, 10.226074674745844, 7.589230965958731, 74.65106004858356, 11.222036507407568, 11.09295875760231, 9.653486730937411, 43.674165675313105, 26.668790429336553, 68.36215921894902, 15.924197583071699, 137.6552773366858, 12.780907855962719, 32.64835262263509, 7.212723716461133, 6.413198925657189, 38.567195548120054, 20.260711472401663, 5.894641935152015, 108.84957653306559, 62.49865835076311, 13.789439549427946, 11.06529962660952, 10.467335589616994, 21.659566891320118, 22.302266322046577, 21.02813106573636, 34.529941999525384, 99.43404482064443, 5.294600677646569, 5.100389843534811, 18.52864147447307, 8.457762265252953, 63.894963317102494, 18.124492732541377, 55.01389630807009, 83.09853718512454, 21.81953429018432, 17.67817771128879, 104.7267096156131, 15.715147134901596, 79.43982331560946, 5.61094084829895, 16.853226712968915, 52.10900967749417, 53.419603965864276, 35.72787118237015, 14.072267800247058, 6.227479975661786, 63.62405546253432, 30.624051508298667, 56.39711345453258, 15.7530846631581, 10.101711350186049, 15.636522107786844, 10.02509118326309, 20.551225643683225, 48.4075313244817, 77.93821128985448, 8.883470525965649, 14.012612729360846, 5.583113194673219, 20.19864403722869, 26.62621073130772, 44.35206490631034, 5.330229785097719, 76.6974318873294, 21.849999833937506, 6.707292365839384, 51.05456494415333, 60.341141406588385, 37.346031200947124, 114.20916256099719, 17.097292803219517, 64.61655788767668, 22.947093527774033, 6.0791598864560905, 27.792095230606947, 64.74087304393291, 18.306523493494172, 27.275584967995798, 24.577645962113778, 14.116208230649926, 8.384170078217208, 17.25676878051408, 26.540670287033254, 49.455694675688804, 26.99415437698938, 16.655889992132092, 49.71430699214895, 31.333263607479804, 72.025657264, 150.3893563249462, 41.27710295246102, 34.727302955888, 116.30861862381659, 29.455723959867242, 40.616888468273444, 40.963677443387915, 64.0202108180442, 14.581325683987604, 5.880525231045166, 40.46353121049748, 6.300283051743767, 12.484769784953114, 10.078315145101254, 8.124645727274759, 32.688842152292004, 136.17882321228163, 25.93793538723282, 23.995339332531007, 95.6576649719893, 17.313189495900797, 37.505769943817114, 8.611512067849853, 8.401748893895203, 51.858000125934105, 15.125038429194968, 26.193365136842548, 48.49538189947976, 88.2886530358468, 73.65925078394233, 27.577511631160636, 19.39212691958214, 14.62260661222314, 12.094420550639994, 13.126522260614072, 25.53694941762894, 27.9585469469233, 8.309988567685988, 37.007155136683835, 7.832237621202119, 46.47658179447537, 6.066173314858436, 24.823841768609114, 43.632126973015374, 33.41890526392519, 111.49097257815136, 56.23879908658006, 12.033615441128438, 26.79434138764468, 6.623331973168684, 12.0282736334802, 79.46289291086191, 14.930655542665926, 6.730461156113454, 51.98700480961344, 41.89921833675157, 96.34439481026119, 14.657350432846364, 210.4452607822719, 30.98178270926789, 78.85624682965643, 11.650971505118388, 6.0206437751373105, 8.570683157654766, 44.52805137872099, 7.383132452884371, 30.352754206236234, 8.456748900531801, 9.937265397159301, 5.130114136028224, 13.782018422044036, 31.764677749962086, 10.93775119910564, 14.658601051567187, 10.846827024175282, 51.921416894005425, 5.038730194111419, 10.387753061501401, 6.805239265119357, 69.52275275546191, 19.69079655577938, 8.371306277744598, 13.83746739980346, 59.07342915152684, 9.17049846985957, 7.096917114747297, 15.305224366489657, 31.781112948023008, 79.20684617133577, 121.37954887732225, 10.287078203174895, 96.32238896425542, 30.009133174843658, 7.223988838802813, 59.96824507799689, 25.188363174830236, 10.036211107880527, 26.40491109864561, 22.00951718714714, 10.727294433226099, 22.723987652367924, 61.89539926043061, 9.157453993015695, 134.29153764823405, 10.722657734633785, 29.930518260916926, 104.46762867483723, 76.36604131386983, 5.678808445642835, 7.050939216062734, 102.42480487506592, 23.907871471352752, 63.58500161307298, 15.229733314468408, 7.762734165809249, 13.368432449335446, 62.30736765881507, 61.98720069772747, 72.26647894014646, 33.3307606606228, 29.4175094110533, 61.727083185039035, 42.11003433348158, 76.18443249358766, 68.42996760288294, 17.411341662776962, 12.489929908805154, 9.5440734366039, 56.98791407368891, 18.027528783391368, 31.063859684690854, 14.266384091696231, 46.451313541897036, 9.959970733017263, 19.27229511139759, 19.953609223414457, 124.75690321978044, 17.016895659504613, 49.12263001847321, 20.666851473769526, 58.612892178845854, 29.345085639796785, 18.510124414644785, 130.05074770510276, 29.08248546295451, 10.541640651826969, 112.78198694781278, 22.989935933241902, 5.369712406643927, 5.787310094093329, 11.557927113051745, 27.39794345911138, 13.125842929873095, 17.633863985592225, 12.930213497816146, 132.47786407479873, 15.574900795207792, 68.62868684815109, 16.03166327562432, 14.97070816122215, 17.89573870811032, 40.957310420362035, 22.476341717823544, 57.974237675491786, 32.94347673752612, 50.42026211997624, 72.8966562532097, 11.968699618672392, 11.275509823785134, 52.808279212860675, 24.458511896270505, 30.79068253549829, 43.08756421601369, 54.73056477913185, 5.418684013390046, 26.644786807176832, 65.57026572938551, 11.307792081196075, 35.01835145193203, 10.634081164351684, 45.6709853645974, 24.751248414201687, 55.675931216512865, 36.60427148374785, 50.90449347237373, 29.27773112162087, 62.545066269223796, 115.78395333126866, 129.4902057384699, 77.24234674451232, 76.41131271272572, 62.45082808154193, 101.09653693816145, 7.754102546381224, 19.09386682536246, 58.21665079579591, 18.223694187853148, 126.65853121349761, 10.488335536988599, 35.52441469316981, 24.075488398849338, 45.64312072909289, 75.08160703560199, 33.453462054786115, 38.894587649293115, 88.0199766986213, 74.32306462590945, 14.833172229599308, 14.381263037523178, 77.19442134775039, 90.66490314989043, 72.5040741477153, 28.0712222892759, 85.4693787927701, 20.131646907855608, 24.07702758278559, 22.260797538717487, 18.375481639271573, 65.97201009634853, 14.450259539403884, 34.10816860150813, 54.61508033306251, 14.14826305652936, 59.05332357525891, 55.62918858628033, 94.74707298593208, 38.375983546291216, 6.696650107662793, 20.690386502324834, 36.85174761232709, 46.82687814212885, 73.37799543361184, 17.17228566788977, 22.814655071711048, 10.0726071466709, 55.0417249788343, 20.591031016562866, 34.58763030838597, 5.139842169416913, 63.38878348649885, 63.345412982232844, 19.15230360460124, 79.32540023257185, 25.91918065624453, 11.452643112374725, 26.10501483319229, 40.27079475432991, 114.9295402361705, 6.9253641340530745, 53.16714704025532, 93.4199656947174, 157.83456864454283, 66.6609089927733, 16.21788575490259, 23.607351899131988, 19.067982979147114, 83.86790874827344, 12.29106356676244, 11.576719294255785, 8.74070819567458, 8.259362627336113, 77.97917733240786, 26.49554742476674, 66.6056690513783, 19.596879421826962, 73.928380643225, 24.483352135704404, 20.74839606918333, 14.67265912194672, 85.58367442673979, 63.94512709166253, 10.417663149614652, 78.51678153547341, 56.527715442499506, 6.778007271765454, 9.420025538875025, 106.72345842939426, 21.250441658615383, 108.96422232636347, 17.531135982659286, 15.614848000955194, 47.71088325649423, 34.49669875559554, 62.19147545691085, 114.6403063944941, 46.64092279627097, 9.753006496222476, 65.36760852007752, 13.87451088505863, 62.736714471668414, 7.942787171511482, 98.35100267328102, 32.43574576430632, 26.37889076399117, 12.920149174091868, 8.51571305563228, 18.20195748101308, 6.4131981222949745, 29.252628473036598, 5.485993505907535, 42.97157934440731, 61.11132614213557, 72.16690685032371, 31.0348310471911, 11.711198135003206, 6.877791264562119, 116.1996378142292, 18.088000662717867, 22.067655269913576, 99.41499524771021, 94.8650188075584, 20.829420720394793, 91.5829195659044, 104.52486716231621, 55.000941156915175, 95.11154599993199, 7.881775682453958, 48.12560507954902, 16.17227611314638, 9.403417043128393, 27.996193349057762, 18.361882578614114, 143.89461400950452, 16.26750111641086, 9.96844155252266, 118.8357841287594, 38.46371749730954, 23.21424924580696, 45.64505891202254, 178.31481044176084, 117.53305865650039, 6.668663840158265, 81.90548815305192, 26.171769912563462, 103.73511568903751, 27.848586953142714, 14.976941666944738, 52.037608359624286, 67.18952018969298, 53.975748299575265, 10.915588386480687, 56.594088244368926, 67.27422266956333, 69.16070618868346, 95.65326529479611, 71.48020233645127, 15.627949178714422, 27.441799242388146, 9.246055145938142, 50.04038176616804, 11.821580133585043, 7.064698535513983, 12.216599551376914, 158.1431653922183, 40.47112061309975, 85.53974631309072, 6.209834891673836, 5.997348130299642, 159.04252113597556, 9.058212973020682, 17.99074045693755, 68.29005501900131, 26.8462774033066, 48.647333546222605, 7.6129485715158935, 26.55592908401367, 67.31826048203342, 8.328950235488742, 40.28841782943125, 19.61240829017959, 56.045233937038596, 43.68467303675041, 101.65899732124632, 49.794647441231064, 39.650290948130504, 23.585681781388473, 77.88666013794355, 5.383854280570663, 72.69597343428123, 8.913526064720418, 63.444351173496266, 60.104305271694145, 13.856243233112787, 43.43272764970035, 49.245530274034685, 16.0180183665688, 10.039837123876238, 21.692546190417108, 14.135807418136922, 35.768878572953085, 9.735004424129626, 54.58144605143545, 34.472342549282395, 45.57483744702257, 24.786572933299986, 18.64467244546038, 8.015639400848794, 17.329717887838644, 11.38880927159279, 5.250982067532064, 82.32807781108956, 106.25663185924998, 34.044257022693074, 43.10128528661363, 10.711031784852448, 10.442417497671663, 13.590339591856145, 236.04156309433338, 45.21087332907415, 5.86283391704397, 6.023874116156956, 33.02876810761014, 7.427533536123879, 79.03293680801964, 32.50401437755656, 76.58949860427302, 50.49873925814518, 97.24005255715412, 14.388362965681814, 82.34064125223907, 28.722158557691344, 55.22457022869495, 32.24898729449421, 51.538075412183815, 70.24252354255194, 5.24217391563494, 36.5996225947515, 10.292880832662343, 80.58369797035476, 16.332004309559913, 5.903857836498847, 8.029054134546936, 49.97130116721797, 15.14535600383805, 5.497288495210968, 5.042804176147138, 7.895990372777548, 94.00343113938331, 8.941178770320775, 8.039213057231771, 19.245276505835736, 65.34490357458598, 28.999192010391496, 49.44881658964156, 22.60571011539711, 21.40257676549934, 74.76363310877815, 25.50468300031028, 111.49876128793815, 22.087307890514495, 13.168602832840826, 9.323950609754666, 37.70320906912455, 202.0248351865427, 101.00214789679845, 48.24857867335297, 54.82158864092412, 64.03640123559197, 9.009644758968209, 31.662995655146467, 6.01474292267428, 30.52480196029182, 31.12770794925953, 14.841067519331796, 13.099249589080884, 80.40038476538095, 10.374754670781725, 14.370906819642888, 91.79303287594547, 85.91318296315387, 63.328093282997756, 56.658714961404485, 57.908510695238185, 76.8302348658973, 62.84290190980853, 7.003856628845044, 49.84082866096192, 6.03935626662094, 7.770018471617772, 53.314356880825045, 115.77536232393687, 44.33888494432622, 11.628095904699114, 27.247596204846086, 72.19127705051969, 78.91418477314514, 72.83825286895117, 22.600856224318115, 37.245442704055044, 59.8074724252259, 24.57061466075462, 17.681362684204178, 21.046644806888654, 27.032944386060688, 5.177511808051686, 30.065324542969517, 69.94904921852907, 6.885349349556094, 10.562368430666575, 51.56780439217554, 7.6834703198961245, 19.144374310681172, 54.33532912203934, 113.00985162142285, 27.11047334874074, 87.33210039215251, 8.20152032468016, 19.685013394394755, 53.658800415077465, 65.03727286935178, 10.830172888757943, 43.41901958774518, 33.79693929605826, 27.51797824354286, 8.27540602302263, 48.71858219613878, 48.556623146842206, 129.96505083613795, 5.158586986802952, 5.567760782627933, 66.5048377594937, 71.91871252689589, 51.445929682704616, 50.91864976717241, 10.152117971786533, 17.299760982184857, 89.16097343419602, 10.57332070823297, 13.62726008716735, 94.95644551964124, 13.020120432919347, 79.71636537427042, 30.285243218763334, 10.034030445808458, 26.247983729706018, 71.10703762557858, 15.642882399380511, 10.372086142529517, 13.706567680777926, 14.058237600693733, 16.858166446640706, 11.021427084401848, 58.36307986951202, 56.431603557663706, 13.817917386998975, 6.196083466426539, 86.56142598818184, 106.65779896947294, 20.50352790284, 50.70015523105661, 10.219410984860332, 17.810383759373558, 43.88934078954157, 22.96734956105908, 61.11956934134165, 60.96462074218596, 17.76329436128593, 40.43090938669033, 89.44503198063467, 37.755806354908714, 90.34534059471679, 15.009244500707299, 13.932376583702466, 81.06161506063025, 59.930239275864466, 68.9378799906518, 26.892124055582947, 66.72172255874018, 61.879310705661595, 25.660985656157678, 25.63698158078714, 9.313679790434495, 83.01170308296933, 39.10235456470632, 5.217690259058319, 11.874735022627625, 9.970343054080578, 5.937091730969925, 7.647941590434039, 5.45298757801849, 28.303575250419826, 16.310620268239095, 36.4276276024114, 6.684609271892649, 39.834065203519, 29.824009696582728, 45.01665343338479, 32.6874991772068, 46.482101598779174, 11.872632855465016, 13.481919494219827, 28.674998600131598, ...])
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)