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 = 46372
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);
([2506571.081037751, 2668426.0584083423, 2678362.186239134, 2687361.835233721, 2724012.2198325796, 2888435.725040255, 2961503.2644539387, 2966276.5408025295, 3041337.9713468133, 3048858.195840382, 3048909.9783973363, 3067996.875, 3095867.1875, 3154218.0314541506, 3181240.2105343975, 3200116.059493903, 3204542.1875, 3251128.125, 3254512.9156785626, 3277214.3332344946, 3312651.0605413173, 3312825.4573235363, 3343681.25, 3346762.3255646676, 3349018.75, 3382649.5419827662, 3394675.303736573, 3408355.4750688314, 3415651.475562867, 3429240.1113527603, 3461145.3125, 3493889.0625, 3493893.2818330326, 3504252.168615242, 3511144.572900909, 3590026.9396341722, 3606138.4188329317, 3634571.875, 3634595.177438578, 3635398.4375, 3636759.2384142103, 3636935.0280074324, 3637720.3125, 3645704.715093123, 3645720.258836728, 3650083.9737648815, 3653386.79865756, 3653848.4375, 3667370.2581784735, 3698583.7094473275, 3705113.3835161384, 3721751.3883940196, 3722823.4375, 3723367.1875, 3726265.5384310917, 3759893.3793277335, 3761297.5491771493, 3784437.144083865, 3788835.6094142837, 3803523.1330335536, 3806296.71005238, 3824937.280705996, 3873231.25, 3885696.0669490704, 3889811.396619312, 3911370.309806202, 3918032.0551841687, 3918214.612254042, 3940475.7543714424, 3985598.126666754, 3988231.709388229, 3992775.1270369827, 4002784.28113325, 4010382.5278315796, 4011713.870053513, 4011737.192069017, 4012243.2464960376, 4017771.875, 4020851.5625, 4026836.858309958, 4028297.3373686187, 4034196.875, 4036341.0256896424, 4036818.633938017, 4041640.408837122, 4077273.0765482695, 4083937.5, 4083955.513063042, 4085605.122515674, 4138856.2009054795, 4144281.25, 4145523.0558193433, 4149780.5311440304, 4172487.1652765027, 4189308.6399318445, 4189316.0091289263, 4194210.9375, 4194621.875, 4198862.112382033, 4239400.0, 4246425.0, 4254358.128129054, 4286807.127746819, 4293133.95140034, 4304258.853407227, 4339765.625, 4357064.575922975, 4357732.8125, 4358080.919860666, 4358148.16009275, 4358314.8561620535, 4359160.9375, 4359257.01782451, 4359333.837162143, 4359356.026739908, 4359435.918559663, 4359586.668365393, 4360970.117984264, 4369068.730524058, 4404884.10876051, 4419487.5, 4580001.946963303, 4590225.0, 4605094.077314248, 4632081.25, 4633562.911704905, 4633969.825273938, 4636698.32019968, 4649823.73164908, 4765065.313806917, 4892723.4375, 4893663.539816932, 4894156.25, 4906089.783866073, 4906755.109093207, 4929492.1875, 5112692.73323442, 5151693.477524352, 5151713.139784519, 5207074.958589915, 5222452.591406889, 5238846.823541579, 5252721.875, 5374607.8125, 5405978.125, 5407520.0730957985, 5430149.804223267, 5451158.330047695, 5465893.468267643, 5467889.226630617, 5472111.540428503, 5474992.124314672, 5475909.375, 5475994.649967393, 5476021.875, 5480071.907927351, 5484146.2529291315, 5487745.499394996, 5487750.360934613, 5487757.465845689, 5488288.755620559, 5488823.300132071, 5492768.75, 5500634.375, 5500946.875, 5503601.066650635, 5505782.078594599, 5507228.943644282, 5507236.035206754, 5507490.736312859, 5507561.228934378, 5511711.09200071, 5558052.449222331, 5562704.6875, 5580932.8125, 5614638.574244082, 5642402.953142872, 5644198.4375, 5644462.074393175, 5644585.878000145, 5644593.412755663, 5646009.185299378, 5646089.0625, 5646434.670791811, 5646550.68763443, 5646878.125, 5647623.405730964, 5647624.347382811, 5647643.75, 5647689.548273778, 5647691.848696706, 5647709.026485211, 5648056.761386601, 5648094.26692271, 5648220.594416451, 5648506.90468786, 5648589.0625, 5648863.380481876, 5648985.524756117, 5649122.689160854, 5649139.3150007725, 5649160.184330057, 5649569.940017677, 5649621.636272202, 5649892.794352365, 5650127.904005117, 5650450.492873316, 5651159.923264564, 5651196.824581777, 5651648.958265282, 5651711.743565074, 5651729.561878386, 5651863.345429475, 5652153.0673852805, 5652577.137499408, 5652644.628564007, 5652835.9375, 5652945.522766042, 5655001.302176416, 5655023.312708138, 5655631.858626365, 5656463.403152813, 5657545.7457206985, 5658897.172797231, 5659475.790852417, 5660230.137519477, 5660279.6875, 5661611.55753113, 5662182.8125, 5662615.386131813, 5663660.9375, 5663703.125, 5664963.364003558, 5664995.977535276, 5665328.125, 5665486.397115406, 5666245.207439426, 5667375.0, 5668984.375, 5715598.463002133, 5765511.744908301, 5765885.1415320225, 5783439.228319164, 5786759.128541197, 5789683.359405084, 5792718.75, 5824909.236966613, 5831982.49753826, 5845482.8125, 5864151.4520591, 5871422.108614036, 5872365.625, 5872365.915221053, 5874895.3125, 5874902.0886657685, 5876110.006338556, 5877846.875, 5878024.643215261, 5878082.314136642, 5878089.272982032, 5878187.630219845, 5878286.131788976, 5878310.070196637, 5878498.995407811, 5879071.875, 5879198.4375, 5879441.9628104195, 5879445.005475454, 5879531.25, 5879863.110618802, 5880036.6438740995, 5880136.361810383, 5880224.414324768, 5880412.520166408, 5880464.0625, 5881227.848749554, 5881248.4375, 5881258.085148845, 5881498.191239137, 5881519.285958445, 5881673.5296289, 5881726.502165058, 5881735.9375, 5881962.775800541, 5882461.694811432, 5883721.543316613, 5884052.920960863, 5884329.6075902805, 5884336.926451082, 5884360.660092915, 5884495.198941799, 5884924.533568568, 5885229.271477084, 5885298.522159406, 5885316.999819901, 5885618.75, 5885777.810129399, 5887243.188548444, 5887625.0, 5888547.874494507, 5888967.1875, 5889330.892246679, 5889344.9370479565, 5890576.303743716, 5891985.9375, 5892520.3125, 5893267.481397504, 5896347.968814054, 5896745.3125, 5897071.5975928055, 5897477.680904012, 5897837.89182469, 5898918.450156573, 5899089.014994109, 5900625.956389884, 5904818.75, 5905887.319082028, 5909305.802344758, 5911002.555850502, 5911330.94964119, 5912176.5625, 5913589.0625, 5915737.5, 5922280.00898035, 5924781.0287160175, 5945779.687918979, 5948918.75, 5949321.637040447, 5949502.680813309, 5957670.301526006, 5961925.896290411, 5963806.402409926, 5977076.5625, 6014489.9419297045, 6019891.809782542, 6025698.533427445, 6029583.314149455, 6029714.621249217, 6030339.03387128, 6036409.804353521, 6037656.928459903, 6038513.887924155, 6039027.58241786, 6041379.927440745, 6042644.805846626, 6043337.469991686, 6043966.686414598, 6043996.09133107, 6043998.360434143, 6044239.0625, 6044587.2742918, 6045772.2783695115, 6045819.752419506, 6045888.5550113395, 6046011.604135417, 6046512.5, 6046658.757915402, 6046729.210363714, 6047798.324486935, 6047851.445292385, 6047858.9036093885, 6048480.6508973725, 6048487.871127495, 6048515.625, 6048594.5061660465, 6049625.173785648, 6049713.646967384, 6049719.987740401, 6049951.5625, 6051900.269442852, 6054500.0, 6054504.6875, 6055317.96965693, 6055412.5, 6055418.75, 6056380.6344580995, 6056420.3125, 6056631.25, 6059946.316394338, 6060505.189239075, 6060763.701051987, 6061815.32482696, 6062737.268539287, 6064759.793749788, 6067751.412330916, 6069049.943971612, 6069072.389984137, 6073625.96620116, 6073642.166227004, 6075282.949239078, 6079760.565537584, 6079861.821120851, 6081410.625732792, 6083616.941426395, 6084926.893756791, 6085140.732740152, 6085182.370906517, 6090386.421746979, 6091762.336941707, 6092474.643037403, 6093924.428487385, 6094160.9375, 6095047.406927242, 6095689.072642084, 6095743.870632399, 6095767.21877967, 6096106.09383286, 6096393.75, 6096635.029873052, 6096829.6875, 6097406.998748607, 6098010.9375, 6098238.314634845, 6098982.196202419, 6099029.742593159, 6099608.09942646, 6105321.544520357, 6106122.830875835, 6107435.098764743, 6110028.795911208, 6111885.9375, 6117781.25, 6118008.475769448, 6118024.9949199725, 6119256.25, 6119807.030167277, 6120262.980930389, 6120945.373036069, 6122135.265607135, 6123590.309689962, 6134763.061662041, 6136872.35677349, 6136906.566788269, 6137492.168651074, 6137594.234308505, 6137862.5, 6137997.63263671, 6138837.5, 6138870.056333319, 6139808.21675066, 6140672.92179541, 6144884.057655499, 6145915.625, 6146396.875, 6147010.1486551175, 6147420.08653175, 6147725.27764688, 6147940.565739688, 6149825.0, 6154535.9375, 6156087.5, 6157021.875, 6157060.9375, 6157082.452633086, 6157880.037933615, 6161611.3086355645, 6161652.823843024, 6162462.5, 6162642.158064374, 6162677.3398510935, 6162777.202704423, 6162942.2315496495, 6163231.641619663, 6163232.8125, 6163250.0, 6163254.6875, 6163428.125, 6163566.103329901, 6163678.735185614, 6163678.786901315, 6164031.608346037, 6164278.998651971, 6164601.5625, 6165054.6875, 6165059.375, 6165337.759195307, 6165339.0625, 6165408.777838932, 6165647.601373062, 6165685.836595103, 6165820.3125, 6165867.089721597, 6165929.932467983, 6165971.804535599, 6165989.2960059345, 6166268.343774182, 6166332.8125, 6166362.339657207, 6166474.624324873, 6166474.688725681, 6166707.891189039, 6166739.970806804, 6166769.718440973, 6166859.005539308, 6167032.481239822, 6167033.530853268, 6167071.875, 6167169.863415188, 6167190.771734611, 6167220.3125, 6167225.878081239, 6167351.5625, 6167376.39968807, 6167433.530364277, 6167435.548409362, 6167468.75, 6167577.847346907, 6167622.802180071, 6167975.745843482, 6168030.810965435, 6168326.4505448, 6168348.41308969, 6168362.575206242, 6168523.4375, 6168566.659598656, 6168583.766682755, 6168593.15790603, 6168627.26718944, 6168724.661232441, 6168912.025726253, 6168917.757909087, 6169170.676170574, 6169171.875, 6169252.058701057, 6169276.5625, 6169771.210442897, 6170018.75, 6170030.481915777, 6170042.8734334335, 6170427.31409859, 6170687.236868326, 6170897.520436, 6172797.012849662, 6172820.0265536215, 6172909.461775116, 6173501.832751215, 6177423.011933861, 6182052.338937985, 6182912.5, 6183035.045725492, 6184890.313444717, 6186837.655284901, 6188478.125, 6194751.5625, 6195913.248845588, 6197090.625, 6199198.252111543, 6205680.075931538, 6211078.125, 6212015.582232464, 6212082.105774506, 6212098.172584967, 6212207.8125, 6212411.248660785, 6212982.75294854, 6213171.192647205, 6214350.414115114, 6214398.4375, 6214735.849282798, 6214852.706323157, 6216441.92685565, 6216645.3125, 6216929.6875, 6220907.631134612, 6222756.296554814, 6223467.228292044, 6224964.0625, 6260607.060518727, 6268262.043877355, 6280130.233806425, 6318559.03308423, 6319465.816993814, 6323440.217979258, 6323802.886323294, 6324170.583605278, 6324236.367276548, 6324871.667762012, 6325148.131190227, 6326529.633186591, 6327476.111369269, 6327840.18798557, 6327880.186980598, 6328130.565146196, 6329338.028124084, 6329606.774187752, 6329687.5, 6331115.731844712, 6331909.375, 6335387.291773907, 6338509.654339128, 6349018.253083884, 6372506.25, 6400777.26177858, 6418205.801747723, 6418211.799023577, 6418220.3125, 6419818.613747902, 6421771.875, 6422429.6875, 6423577.937958909, 6424176.550034832, 6424284.008221628, 6424339.0625, 6424396.875, 6424498.012971327, 6424764.0625, 6425110.9375, 6425394.614313745, 6425462.911651098, 6425471.796002999, 6425515.063576277, 6425629.843431995, 6425678.500166196, 6425972.991141735, 6426042.037134548, 6426048.554191356, 6426439.499280778, 6426441.991049832, 6426447.995841485, 6426522.071024064, 6426565.625, 6426653.610141079, 6426814.230876904, 6427039.977261335, 6427124.389635915, 6427125.0, 6427303.18180924, 6427535.9375, 6428015.343153227, 6428085.395430654, 6428798.954147079, 6429243.75, 6429299.895288797, 6429331.992251416, 6429830.505923132, 6430188.943516202, 6431445.3125, 6435915.625, 6436429.350499198, 6447654.430567546, 6454798.4375, 6457875.427460553, 6459447.675202711, 6459462.5, 6462525.0, 6464081.25, 6464712.5, 6466540.625, 6469204.6875, 6469598.921176951, 6469847.513825911, 6470238.370841199, 6471884.307751008, 6472197.920301846, 6473194.22742866, 6473439.0625, 6473874.3799309125, 6473932.21204523, 6474118.028392813, 6474440.625, 6475341.339814363, 6475370.663273757, 6475492.1875, 6476089.309428037, 6476092.8557556765, 6476144.269619334, 6476237.270543099, 6476320.097238858, 6476540.902111631, 6477428.049725225, 6477538.894560035, 6477839.223253912, 6477950.985230623, 6478075.91733857, 6478342.1875, 6478867.451844721, 6478869.404017076, 6478993.75, 6479046.875, 6479181.25, 6479399.648832505, 6479596.771202758, 6480426.5625, 6480451.886325018, 6480464.764785923, 6480823.714941433, 6480848.292672779, 6480848.367633025, 6480914.0625, 6480929.502050238, 6480935.413579709, 6481010.811323146, 6481426.4695461225, 6481583.93511952, 6482526.5625, 6482570.76744597, 6482623.0381, 6482904.607562839, 6483047.054411081, 6483102.071750862, 6483503.125, 6484136.238548257, 6485245.3125, 6486663.455909014, 6486809.297618854, 6487690.270709825, 6487929.972098058, 6488928.125, 6489545.649172787, 6489676.5625, 6489725.0, 6489951.5625, 6490026.71517285, 6490329.2430334035, 6490343.597815428, 6490517.56440803, 6491165.369358697, 6492693.435613757, 6492714.07080024, 6492732.8125, 6492904.50590441, 6493445.932003003, 6493753.619409298, 6495721.822717669, 6495735.371087541, 6496665.625, 6497192.1875, 6503430.868466386, 6504446.601349308, 6506468.069851152, 6506534.375, 6506614.702048714, 6506634.375, 6506685.7108031465, 6507195.3125, 6507473.900286169, 6507474.3889838, 6507818.974184023, 6508015.2386327, 6508890.2063619075, 6509573.729617333, 6509801.065845252, 6510195.134264886, 6510614.0625, 6511036.450963554, 6511151.587318719, 6511240.840298538, 6512234.886662796, 6512414.038055584, 6512882.026231166, 6512971.323554601, 6513362.5, 6513692.729286281, 6513818.355848496, 6514089.687595423, 6514377.852294877, 6514626.5625, 6514635.115195856, 6514906.7082858635, 6516063.176549499, 6516287.311516966, 6516354.930040834, 6516668.593758511, 6516701.5625, 6516713.558569622, 6516718.75, 6516943.75, 6517480.277058318, 6517720.3125, 6518879.6875, 6519377.501391888, 6523938.494233981, 6524121.001963955, 6524464.0625, 6524825.940971946, 6524932.0718907295, 6525421.386918757, 6525761.717678702, 6526471.7443239745, 6526576.604216262, 6526681.25, 6527243.645186318, 6527520.96992481, 6530103.200157643, 6533734.4397436995, 6533923.4375, 6535416.52350839, 6536709.375, 6542765.602429468, 6544581.478743286, 6545470.180375896, 6546356.91800144, 6546474.237931494, 6547293.923153595, 6547401.5625, 6558574.718882848, 6564231.25, 6565026.157606214, 6565037.216058431, 6566068.7385911215, 6566247.337130324, 6566955.818058434, 6567693.75, 6567728.190143674, 6567876.5625, 6567898.051905414, 6568025.0, 6568206.173883535, 6568410.903361634, 6568603.125, 6568682.8125, 6568728.466576336, 6568969.932376295, 6568979.6006582845, 6569045.110992434, 6569147.308380669, 6569319.9449149715, 6569370.3125, 6569524.43467174, 6569688.501665026, 6569764.0625, 6569800.0, 6569848.4375, 6569866.1671319185, 6569925.1391419545, 6570064.0625, 6570137.5, 6570194.91036178, 6570237.5, 6570288.297355056, 6570348.077916682, 6570495.207566814, 6570535.299843366, 6570598.496070021, 6570676.8206963185, 6570835.9375, 6570882.348372997, 6570940.942983171, 6571122.813112206, 6571187.5, 6571367.501759842, 6571464.0625, 6571870.3125, 6571883.451956874, 6571929.28587248, 6572014.0625, 6572025.0, 6572045.3125, 6572309.894330662, 6572367.1875, 6573237.5, 6573249.227245421, 6573418.675491105, 6573431.25, 6573612.5, 6573695.938580775, 6573871.875, 6574366.1362070525, 6575594.399652248, 6575806.650949953, 6575830.195157773, 6575987.420752027, 6576211.0651501985, 6576401.285092781, 6576706.25, 6576771.875, 6577250.479608769, 6577590.170663376, 6577744.425300236, 6577895.266146451, 6578205.872768504, 6578240.124898234, 6578659.375, 6578793.75, 6579126.5625, 6579768.318552042, 6580262.464606394, 6581214.275902409, 6583897.986516936, 6584258.732382245, 6584770.294431296, 6586100.866049465, 6586357.101247608, 6586978.125, 6587134.375, 6587143.121206586, 6588907.8125, 6589842.585689783, 6589881.70417012, 6589964.0625, 6591945.02829247, 6597757.8125, 6597992.1875, 6598871.875, 6599165.749054673, 6599381.25, 6599391.234953026, 6599393.75, 6599550.0, 6600156.25, 6601538.814769113, 6601656.25, 6601714.419294921, 6602009.685483008, 6604214.023835399, 6605759.375, 6608123.4375, 6611164.288778888, 6611221.139225392, 6611411.826273452, 6614167.000233125, 6614961.802717162, 6615300.771035117, 6615947.506766559, 6621895.973858712, 6622712.5, 6622816.059622182, 6623752.123776004, 6623948.609645235, 6623991.245827197, 6624660.9375, 6624849.804286072, 6624902.233655605, 6625536.134819621, 6625777.46834939, 6632448.4375, 6649923.4375, 6652211.2725394685, 6655008.771532918, 6662681.25, 6663862.5, 6664651.032318749, 6665672.363483364, 6669129.5134347305, 6670090.625, 6670260.9375, 6670639.326180026, 6670837.25739316, 6671610.325977033, 6671911.747905177, 6672102.545436662, 6672303.125, 6672335.346713612, 6673124.889354117, 6673506.25, 6674677.400540963, 6675680.154103448, 6675898.744703675, 6677691.964069235, 6677709.375, 6678012.5, 6678718.273188949, 6681901.5625, 6682499.4886296615, 6682833.879747504, 6683000.0, 6696510.986708679, 6698058.345519944, 6703941.6532715075, 6704807.66774605, 6705013.118172248, 6705506.400379709, 6705691.171027833, 6708038.443921743, 6708949.157120724, 6709269.790828273, 6710238.530375345, 6712128.125, 6712130.105219725, 6712245.3125, 6713337.257326159, 6714859.375, 6718397.6015118025, 6719196.875, 6722657.8125, 6722789.341933758, 6764333.371197482, 6768287.410318521, 6770414.0625, 6770621.171703428, 6771678.808431766, 6771994.13756665, 6772144.584663597, 6772435.9375, 6772890.625, 6773007.8125, 6773016.237173264, 6773144.841548923, 6773351.074244082, 6773364.020553308, 6773370.3125, 6773430.445895149, 6773441.464805114, 6773836.764311848, 6774352.429950446, 6774749.4991042605, 6774782.698168715, 6774917.1875, 6775479.378517172, 6775787.119649945, ...], [5.571580085969963, 13.314853899095198, 29.99830476936915, 19.993164153840773, 24.007424796571996, 7.528160583964245, 47.75473628052242, 28.102516792759925, 17.1044787738149, 11.841995830562741, 5.363031977057266, 32.46631095939207, 75.71197386579011, 17.237272829749095, 13.566572404683, 5.357033958102229, 40.75974003095411, 57.254206486939474, 30.08202310761751, 17.888938099403212, 48.58697975934666, 9.75054409113775, 33.73953143732928, 25.49909643483587, 45.713295564293205, 71.94210536772893, 16.2410774151137, 70.57338689120996, 16.82882530574051, 30.820632472550905, 36.88794984940111, 67.44122503142351, 13.414083012704042, 8.635405540786742, 19.395229125972403, 131.85728850835005, 20.170431365372743, 64.39725824352286, 10.922961658173769, 51.65819976000807, 81.43258184503736, 15.250741756049809, 36.75667225432329, 112.094427442491, 35.013483306213104, 13.604931285281616, 36.070454861582185, 168.8008784180373, 14.738426082233698, 10.225591955873297, 10.209847278012127, 71.51992400519391, 101.56270257426941, 70.87432638718712, 26.92241440791254, 10.593865514553245, 40.574755445249, 23.06183524440023, 23.398494675722837, 5.124048062288461, 25.64408614964192, 32.02711318276574, 135.87220605964873, 8.730364587043477, 11.930131228707989, 16.55014270275593, 19.260293723587097, 84.01087031969273, 10.062646446077498, 10.674291817621217, 11.930656796491117, 9.441180858775054, 14.595409409913144, 99.12714198316223, 105.61791942403192, 43.180887695021674, 171.3994304513542, 37.749326427449816, 73.33372200474183, 12.954048341816705, 140.34970230530394, 64.15377111682568, 65.31518730121267, 23.1598397081546, 58.32256497188004, 92.21489987952113, 45.24503521601529, 6.624791250931047, 8.530846109634473, 117.3496744824181, 60.805219207801535, 19.793511964722754, 73.2367794771965, 13.802700263732781, 7.9326854783035445, 35.085924019132236, 86.46994633032892, 123.80884655087966, 13.644745589653592, 65.31024615652737, 104.11242810599492, 16.682295862490346, 12.536099580142269, 53.341508491327076, 46.03404172263862, 54.53879274485512, 5.216702737329203, 153.82880180758409, 172.48027385899175, 24.043687322452346, 33.67821398649898, 33.72298075114962, 10.07763526157044, 102.46838890545398, 14.15375636508295, 43.88558558106491, 18.125296908910915, 122.05769876230538, 34.42047705849929, 32.07765996276674, 55.83530774881755, 29.24068994820448, 68.64401926528353, 9.624400126459694, 36.85059814403449, 78.10955195452388, 10.442930563944216, 14.51250175914861, 234.1189802473792, 23.6088107671689, 38.481924543526674, 77.88058822378525, 84.6950678061882, 37.76489892320134, 25.663258577736773, 29.88951494266187, 16.724926389291195, 10.72694253222711, 12.300412276042996, 77.6721681741939, 21.164411073809095, 55.28149983067757, 78.05372469555087, 35.29587506333345, 81.5910092647126, 19.598643957631225, 53.091348538928315, 12.046058086529891, 23.986924207178337, 11.394325189897078, 103.42633046880441, 104.2104831403606, 46.32024933032576, 20.01174250608953, 54.61759640112497, 15.06851608922756, 8.855519602037864, 21.31445329554362, 81.66186981456812, 7.482492811023404, 23.663262289234495, 83.45502484880929, 60.44141708580413, 68.5488423555451, 28.825509420539674, 13.337428039814732, 10.146332118085601, 36.624159110780454, 24.76905811436793, 7.64399998905237, 5.835863270517589, 65.52656603695581, 10.213598074256804, 90.59312403869745, 41.63219807594441, 91.56039968076405, 14.561303064413018, 47.71536662370077, 22.26876301659671, 93.64438252660909, 31.862996358658098, 36.523976346887906, 45.55718550509742, 8.449446249741849, 35.09233209655594, 130.536186363203, 27.91127930890805, 20.094748114424142, 30.03554130177522, 40.11687023835988, 23.267422702820923, 13.761002029791062, 7.262697183169464, 17.361344161003075, 9.581725515471751, 9.953975551585149, 68.17544989369482, 19.85114371362667, 13.571546170530894, 79.63207033630518, 7.189446915373718, 10.12437743717298, 22.867024416591665, 5.796525117107642, 17.899756313796, 76.22289720518337, 5.98350880575438, 17.544068162122088, 27.565177346371417, 80.83808556958796, 12.674623344666164, 26.154959439458082, 68.46181254056718, 5.934403744325193, 7.82534442318675, 8.813103621119705, 54.122911830206576, 15.808461128699468, 110.82130454194106, 26.280395361402, 29.28126300525186, 48.15642455363832, 81.92842714795125, 7.201997443526393, 29.69742367434648, 7.244995641602436, 60.151665867430005, 72.41327208034545, 66.4515721190474, 14.103038736359814, 42.39059625045119, 73.94957969758597, 96.55939344098698, 15.007829364041086, 43.80958567035263, 39.92841510489815, 6.742711743078844, 51.06992066484975, 33.34349495452412, 84.71771844990948, 12.677789490250866, 100.71112067917223, 58.803749301710994, 8.160408564857025, 12.105651953083271, 66.87135403494099, 14.440257803670654, 49.32272925109363, 45.116425054688534, 19.74183410945148, 15.913551234708109, 48.64102658077072, 8.446254886399228, 29.247318683715726, 38.19376490543548, 98.82677332248963, 40.225126095126726, 6.051766298227257, 61.790694620814705, 34.5947708527704, 46.28393254081461, 23.897419264542954, 12.421327943948304, 6.578255273478304, 52.82079755188969, 88.88132699359147, 77.69022521244474, 5.597281647640377, 58.00326875954774, 165.06571549102742, 50.11676331107674, 7.764268169471744, 6.195933648385809, 32.25428428871826, 35.834563735106954, 13.983671662752116, 39.96864088748394, 5.171760411569145, 62.809188530532396, 109.53520518746818, 5.947469022985012, 45.747389972099356, 115.84257794729248, 69.19035180193215, 99.31836210900953, 73.32035333464785, 36.102312835037964, 6.257154867517131, 8.889353867470462, 81.64842962592483, 8.227425092940562, 21.83463057705169, 13.562078190920316, 15.274317777665514, 8.189761444802684, 50.294171172995384, 10.668800451159814, 10.350547542387616, 34.160267752381145, 20.484489993441887, 31.921036253536638, 6.2230327155294995, 8.097533745555612, 63.13726621949173, 73.29097841323035, 63.02460232724635, 23.464844040856324, 182.77013984383353, 57.14659567728326, 24.043688067975726, 170.74483815480716, 9.686249295319323, 69.1379880955898, 41.485056263084715, 15.493926108538313, 29.627879743230043, 25.40115921633547, 22.0316581940038, 69.4181541963545, 23.746159432643868, 65.23802565773865, 33.21742277259285, 75.87035086316587, 105.83067560814516, 100.91713282023976, 31.87696943903389, 73.7226148572241, 9.137986118975526, 13.481549717957703, 66.36988651638048, 73.86723374393492, 15.556089414762063, 85.49691121558985, 19.842565354458973, 125.86844127641996, 15.320195793706763, 35.2407808078549, 17.606343800015015, 11.083251194328028, 36.42994993311158, 12.384421201988513, 23.7869645334747, 21.078583609008724, 15.903672187248606, 21.42698505301839, 14.828352197370924, 13.323074355356347, 12.610943972294729, 27.08790800568118, 47.18864761386201, 24.74848629678934, 25.294198571853173, 26.088158442652706, 47.60129352425925, 18.283006754805168, 58.1234512487141, 146.12290279847974, 6.671847328646007, 26.474314965230153, 68.48733755665891, 21.783321842296026, 133.54665044808561, 20.6199636306781, 81.40357648683198, 30.863435684545905, 24.09484320945458, 22.379227235448543, 23.43954168977345, 70.05625442933258, 16.07861558171086, 135.87205949637354, 68.9259986275357, 10.093690384016451, 43.64896646435525, 39.367738893041164, 22.754758936731292, 40.91007340669727, 72.3171064230603, 8.011730650576219, 64.6798652559947, 89.75144532177686, 12.950226278062996, 24.66758116626999, 16.82035480019322, 89.8159578995791, 27.46304039685617, 28.127403104907003, 20.70133133940961, 43.62787632003272, 26.60740035624889, 6.430321950909329, 59.44876064397755, 8.128314947872438, 38.20050882819332, 11.688216099910452, 16.062407940707924, 33.24906295002932, 79.92419630814418, 80.9579765113919, 23.049408209685545, 103.4274559707179, 48.88712074631297, 12.075133106084454, 11.143596623525957, 7.153527457647565, 76.20907493875443, 7.547714670040573, 52.695393330706004, 38.01052808376751, 44.84315956021289, 53.6650178459623, 58.647883340531735, 8.770100969225934, 124.89595934539474, 7.623286224837821, 16.160883854219975, 60.78951131209111, 17.15513025389003, 21.340798485332435, 18.31124910831001, 77.57996118913849, 95.237994186415, 53.98385670323248, 11.11977566636794, 38.548944953183145, 27.453642937550253, 11.972996149194213, 21.361629418493887, 19.600191135177084, 66.17593385710288, 12.13595705700221, 9.774942480554326, 14.768002982597238, 11.098371980821215, 72.5398976114204, 33.33409375066161, 12.562055710543364, 85.85525806670405, 5.795266181045285, 16.744241721008468, 31.912451632431047, 6.701762898769955, 56.98556676763659, 44.80573909285694, 70.89039336026518, 9.147373733771072, 78.93476113279586, 6.0819582699780925, 85.6565613311364, 44.62282148478634, 39.48113600428862, 89.8562949624775, 42.47415607294994, 25.063554331190986, 6.312512195964132, 16.573836958555432, 23.73597412728853, 133.21839131810273, 34.821040119309025, 42.57258728619861, 63.11762272717292, 18.947405303814676, 5.974251477383515, 39.76062447817865, 84.32475415951339, 90.0064593485738, 41.75496957549096, 56.50653072109616, 7.839920603065268, 79.66804171923594, 16.5092705001727, 12.574497063831952, 99.81658471238701, 31.466440127569573, 69.71101396282357, 52.283912801461696, 30.917367118348356, 20.57569375627456, 26.674413202985033, 65.20249454532465, 71.04697177340125, 76.36214772712776, 14.458022570607532, 11.019324143193826, 15.913060230595772, 47.76134239745939, 51.43640222125139, 25.71517489102258, 71.69788138582605, 60.05769230730526, 5.344625317562912, 36.59018185139657, 10.310841283538494, 10.595473674406001, 6.054315443828371, 91.69396439706162, 142.97643730650537, 28.27005690298293, 15.531930101921985, 42.585866086134025, 10.203500130117696, 34.71075347921743, 16.89692758538297, 18.62907812130471, 90.36299794007252, 49.108086721272805, 23.424857610977664, 20.241673842891863, 10.053185431441117, 75.67569903828725, 124.65391996942498, 8.273710791894514, 15.236123656093834, 143.01357352446263, 10.391956459297463, 47.07057553926822, 13.080705861650767, 80.29676047986844, 23.267856725830722, 24.70985081441556, 9.865265295454542, 7.740289226753224, 81.53344047902583, 29.64957771040369, 54.137753064690486, 12.896878529208442, 40.59415511579158, 138.88061853112185, 18.41138695124187, 51.69421562241786, 14.025228100670875, 18.14465012941579, 6.284773204809568, 23.931932592473252, 9.405870299441942, 16.082394048947073, 46.30176767329614, 19.046426343247855, 39.46051627051518, 35.69412197239194, 23.604252639398116, 48.990255929076156, 33.5848527796605, 61.64543964863893, 18.107227494165613, 40.46522213204624, 25.334147255364748, 8.50325350889592, 182.27991378668037, 27.705926267061773, 20.984207265064313, 31.601347767638035, 45.353669371500125, 32.222651326322506, 27.399358299367048, 19.848414109585025, 16.795923766414404, 35.10994532338245, 95.16760622720884, 77.03853474503026, 61.10144875585084, 103.52424120929675, 47.41798003784576, 5.285517690555006, 38.23630053628598, 21.86035587418792, 84.33477444472305, 19.300668004552456, 13.472908389797315, 12.104427509217066, 36.324179510576776, 8.390785255137766, 37.209877698209866, 43.35788843753071, 16.08638877035312, 48.93964036179447, 160.77903040366834, 10.680455696888894, 56.807650788191175, 90.24801163099642, 22.145299784346985, 17.261829087969815, 12.846766569368821, 5.360350223637204, 17.403247990900585, 86.06956946959123, 86.95653096080605, 32.13565584368131, 138.67823639077773, 57.64178129396832, 77.53684111945344, 29.37677561812675, 18.501556844595207, 6.042693207282458, 10.184247542379822, 52.5623224795938, 7.0860898843976665, 51.8474183691749, 133.4261867123456, 25.30948232446698, 38.97925202900044, 10.599036939110198, 63.41177841255313, 87.49132478056022, 141.27364389588504, 54.69964032213408, 35.92034209981543, 26.03470963214746, 134.02434917446982, 19.258341863525764, 24.24585829468934, 15.571135057374095, 6.315790799914169, 33.4363435892844, 14.397771444517321, 11.315136740634044, 11.886725658774765, 61.27152240538115, 130.53901673294973, 21.423788388918833, 49.7119176755581, 15.484031981482982, 5.296316791298493, 20.135911537375453, 49.91927178528276, 100.59178280428797, 5.069930809654408, 103.10820052799455, 6.232233898193228, 21.08345622221784, 9.810125487055679, 44.50703558587802, 10.967888076431466, 6.168844795744928, 27.80681403526293, 14.50659720112957, 49.15949112252465, 48.153619233782265, 12.631369640389444, 43.56026053497301, 72.73619394060847, 21.582339144843232, 91.83092642903638, 64.99519769621179, 36.838924683960684, 89.4112144583128, 108.58979389751232, 62.7871624335643, 193.1040945343219, 22.459661440877657, 5.997038478565994, 27.425405934018112, 106.93802403303727, 21.323238041943128, 6.3294632139831455, 42.176888417930776, 47.3696867628087, 26.849745434558955, 118.87403108808792, 68.12635305470985, 18.60799463048804, 65.78490737578987, 49.507224183994836, 7.695057518951766, 9.968523499196623, 170.06291251585566, 24.695690514975592, 14.179953197790978, 9.577249185310853, 66.88461721110095, 6.730435495915615, 41.808089300539635, 20.755438077176255, 20.15774435507111, 51.46600793506929, 9.565392143993353, 13.775473191038834, 51.881915066816276, 44.676914008602964, 187.24143697331485, 13.753023611109514, 8.232439873767927, 54.23212281918017, 16.338348719654007, 8.696496706566329, 6.820189140275607, 14.416807442631809, 14.681732368920063, 38.16705794015157, 70.76021215389221, 6.663231294583811, 79.74428053376408, 26.812567211874004, 15.49209108380128, 54.000174671069644, 7.24640879433623, 5.034876932599977, 72.8665175090617, 81.32602138382684, 17.317384687241756, 36.65974135954322, 11.633295865892611, 59.79767676136683, 7.397650756327247, 27.08237843994052, 5.788222793337041, 115.1140555158878, 69.32360240187711, 75.41361547903641, 80.21510379968939, 55.32375310110278, 122.13128822436717, 6.286682124646657, 39.93545246777934, 6.072415059205123, 17.327663185800347, 24.33439692824109, 10.669458742330836, 24.247694719213214, 67.362339522335, 7.538852126500605, 27.142315716264388, 5.557566763988992, 5.530548483775074, 13.147765105913539, 86.38148970904254, 125.74434972864506, 42.84822062757667, 11.79972381230052, 44.98309325182605, 65.22570051893693, 5.144409911986069, 94.08975498030473, 10.790936259989204, 54.46745626527093, 188.72321823134388, 7.9878933060827615, 15.870875506739566, 6.6887472229802665, 6.682710911971275, 16.18553165494681, 21.746574412205277, 31.73471005106285, 31.031430329249424, 5.418472867843364, 11.166722924016286, 26.086372869795504, 17.331172986316933, 11.089712367178707, 5.873737500693305, 13.187323425264358, 92.59082163273655, 32.12961902829179, 55.83226218591811, 18.0144548890541, 9.110990610474191, 34.67081501469185, 18.78537084732544, 26.25571168509331, 96.80730532035344, 30.275232394091603, 15.954241630625164, 109.72821598327123, 36.6335356566452, 64.06605231633216, 58.632107080853224, 33.37705045715576, 12.19389594736682, 75.98215501776295, 111.21002264081561, 10.275309374606662, 38.033836881486934, 35.61445464346477, 58.3560139948631, 10.277796750590948, 47.30383975367529, 66.21410387986845, 12.614072163664359, 69.4658338260908, 11.193544122192968, 61.99415934784753, 74.82642490775238, 120.4043505994224, 11.247250903221152, 112.96905231002677, 120.91430121206719, 41.31197473819441, 80.47834858150087, 88.2610949719122, 9.53260956844665, 40.83355753957747, 62.535133114151385, 5.5732313933061715, 54.58585983294914, 52.3442330960852, 23.99497825549984, 39.03919683551813, 22.49736970852911, 6.059061264561906, 85.50650321135194, 51.59396047911173, 84.82923339257852, 60.97995319979772, 15.195759330457395, 46.12553702205069, 148.98522140640432, 112.44642062095984, 14.659114473989929, 127.90300906578668, 42.106312192639315, 28.534237354221993, 16.42563585922118, 22.7785247982335, 70.11217923243736, 5.694052432537864, 66.58233219946999, 46.0003575899795, 40.68164839887108, 69.11216241420486, 6.981436822259093, 42.596949330614514, 43.75987701117152, 75.98387695535837, 78.53029342884498, 25.774432869678648, 80.57097232392469, 62.14244381088996, 22.528222500550818, 38.64825079113299, 160.16540753039772, 7.030030902230836, 26.609331614896316, 20.221665631974027, 121.77407920167559, 16.32324487526719, 62.409990836467756, 10.472262101728184, 6.828694467285141, 13.678674980684228, 34.458305479193974, 28.296698522616232, 36.04700584113141, 91.96253269284199, 18.106122662887117, 13.603789015590014, 29.999774828797396, 72.132804280283, 28.9019462210569, 12.049651320766223, 46.77870329388041, 29.332202098017135, 5.316121616915943, 14.664923069566164, 125.92904968482378, 83.47081207459759, 50.50923809054481, 50.14313940840741, 86.83302839686112, 7.303380931119605, 19.05565590644587, 53.889650713721274, 101.11278809159518, 47.08411496891837, 24.043687742619134, 49.84041312141523, 53.96883661871482, 40.57823388590202, 143.1023642472025, 74.88770691881105, 54.548946955786505, 57.73451173119255, 99.92460791867408, 38.76488704958237, 31.229659076353542, 30.806001503116626, 22.205331996284578, 27.843207400662294, 75.57007211310865, 75.74940570741092, 57.42969379937862, 33.977993624369546, 22.09726196790136, 82.79070147638765, 33.80776419217525, 89.75603788561004, 34.97851459454658, 171.66377634588207, 13.981739540037147, 48.586264406725334, 71.37206523833902, 52.31152086226845, 71.26728546501863, 58.17836733338686, 49.09139635946376, 27.47200695978212, 39.997261650409826, 12.236802206677563, 29.01477959442717, 70.70812486572474, 46.33040174137532, 20.35621965549847, 71.70977181057445, 5.255242199840155, 79.44464634742786, 39.557258943814716, 80.86654548944729, 58.9259057584482, 11.500827151016939, 68.60845732139259, 113.75194576332746, 87.95576081868674, 6.383072565858601, 16.285462077395213, 18.05688385157825, 26.207542885851183, 99.85018616186804, 20.646874205001087, 58.69096752627861, 62.70906481369707, 12.25987130327122, 28.617868536636724, 85.7810417300575, 180.86188523423925, 15.751007001389544, 101.56970180165368, 132.93669781835044, 75.15407395020097, 21.10949657179134, 28.082826707529136, 96.94832867042489, 56.227155342238206, 21.207432577038244, 43.79752530898938, 59.70378539606212, 79.09223757582183, 154.73478087831666, 22.987300257509144, 10.768551040237826, 13.030647421211087, 6.176633598966462, 25.696475913920743, 89.61238091453886, 33.33326182021478, 62.92590481552418, 69.76661923090286, 37.28735481698153, 40.181679168796926, 85.66261092507605, 24.780695056804078, 29.22263567609248, 50.049432188078974, 13.390006969175959, 39.85691939175182, 48.6681695100065, 31.405370603567945, 81.70525897257932, 20.40878288189984, 26.758376671105367, 11.736188676943168, 31.44997632153414, 164.9140327870062, 7.161551064045267, 146.36701793530327, 200.72112167541195, 83.75817096543837, 13.267081585168658, 21.178515611111433, 30.584811286927216, 16.81491668736646, 97.68664612940796, 5.389277174317963, 33.248524517819696, 18.68919699356963, 28.954690455648027, 86.92036591772036, 33.48237279269978, 31.418999029834616, 8.239714880154118, 85.55388690484881, 19.679484958219184, 21.454100185613036, 11.792827693728617, 7.359622393437701, 146.28042558396436, 28.564180074005233, 31.409661733856204, 54.49089303194626, 31.583097042279945, 100.36422335023835, 11.062768359117502, 29.514079264974797, 49.254122401160814, 19.84066405565632, 7.357192256936264, 6.183203977566722, 79.92285862274272, 102.97200524269553, 67.50070944202635, 53.540556178470176, 65.84840094420329, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2506571.081037751, 2668426.0584083423, 2678362.186239134, 2687361.835233721, 2724012.2198325796, 2888435.725040255, 2961503.2644539387, 2966276.5408025295, 3041337.9713468133, 3048858.195840382, 3048909.9783973363, 3067996.875, 3095867.1875, 3154218.0314541506, 3181240.2105343975, 3200116.059493903, 3204542.1875, 3251128.125, 3254512.9156785626, 3277214.3332344946, 3312651.0605413173, 3312825.4573235363, 3343681.25, 3346762.3255646676, 3349018.75, 3382649.5419827662, 3394675.303736573, 3408355.4750688314, 3415651.475562867, 3429240.1113527603, 3461145.3125, 3493889.0625, 3493893.2818330326, 3504252.168615242, 3511144.572900909, 3590026.9396341722, 3606138.4188329317, 3634571.875, 3634595.177438578, 3635398.4375, 3636759.2384142103, 3636935.0280074324, 3637720.3125, 3645704.715093123, 3645720.258836728, 3650083.9737648815, 3653386.79865756, 3653848.4375, 3667370.2581784735, 3698583.7094473275, 3705113.3835161384, 3721751.3883940196, 3722823.4375, 3723367.1875, 3726265.5384310917, 3759893.3793277335, 3761297.5491771493, 3784437.144083865, 3788835.6094142837, 3803523.1330335536, 3806296.71005238, 3824937.280705996, 3873231.25, 3885696.0669490704, 3889811.396619312, 3911370.309806202, 3918032.0551841687, 3918214.612254042, 3940475.7543714424, 3985598.126666754, 3988231.709388229, 3992775.1270369827, 4002784.28113325, 4010382.5278315796, 4011713.870053513, 4011737.192069017, 4012243.2464960376, 4017771.875, 4020851.5625, 4026836.858309958, 4028297.3373686187, 4034196.875, 4036341.0256896424, 4036818.633938017, 4041640.408837122, 4077273.0765482695, 4083937.5, 4083955.513063042, 4085605.122515674, 4138856.2009054795, 4144281.25, 4145523.0558193433, 4149780.5311440304, 4172487.1652765027, 4189308.6399318445, 4189316.0091289263, 4194210.9375, 4194621.875, 4198862.112382033, 4239400.0, 4246425.0, 4254358.128129054, 4286807.127746819, 4293133.95140034, 4304258.853407227, 4339765.625, 4357064.575922975, 4357732.8125, 4358080.919860666, 4358148.16009275, 4358314.8561620535, 4359160.9375, 4359257.01782451, 4359333.837162143, 4359356.026739908, 4359435.918559663, 4359586.668365393, 4360970.117984264, 4369068.730524058, 4404884.10876051, 4419487.5, 4580001.946963303, 4590225.0, 4605094.077314248, 4632081.25, 4633562.911704905, 4633969.825273938, 4636698.32019968, 4649823.73164908, 4765065.313806917, 4892723.4375, 4893663.539816932, 4894156.25, 4906089.783866073, 4906755.109093207, 4929492.1875, 5112692.73323442, 5151693.477524352, 5151713.139784519, 5207074.958589915, 5222452.591406889, 5238846.823541579, 5252721.875, 5374607.8125, 5405978.125, 5407520.0730957985, 5430149.804223267, 5451158.330047695, 5465893.468267643, 5467889.226630617, 5472111.540428503, 5474992.124314672, 5475909.375, 5475994.649967393, 5476021.875, 5480071.907927351, 5484146.2529291315, 5487745.499394996, 5487750.360934613, 5487757.465845689, 5488288.755620559, 5488823.300132071, 5492768.75, 5500634.375, 5500946.875, 5503601.066650635, 5505782.078594599, 5507228.943644282, 5507236.035206754, 5507490.736312859, 5507561.228934378, 5511711.09200071, 5558052.449222331, 5562704.6875, 5580932.8125, 5614638.574244082, 5642402.953142872, 5644198.4375, 5644462.074393175, 5644585.878000145, 5644593.412755663, 5646009.185299378, 5646089.0625, 5646434.670791811, 5646550.68763443, 5646878.125, 5647623.405730964, 5647624.347382811, 5647643.75, 5647689.548273778, 5647691.848696706, 5647709.026485211, 5648056.761386601, 5648094.26692271, 5648220.594416451, 5648506.90468786, 5648589.0625, 5648863.380481876, 5648985.524756117, 5649122.689160854, 5649139.3150007725, 5649160.184330057, 5649569.940017677, 5649621.636272202, 5649892.794352365, 5650127.904005117, 5650450.492873316, 5651159.923264564, 5651196.824581777, 5651648.958265282, 5651711.743565074, 5651729.561878386, 5651863.345429475, 5652153.0673852805, 5652577.137499408, 5652644.628564007, 5652835.9375, 5652945.522766042, 5655001.302176416, 5655023.312708138, 5655631.858626365, 5656463.403152813, 5657545.7457206985, 5658897.172797231, 5659475.790852417, 5660230.137519477, 5660279.6875, 5661611.55753113, 5662182.8125, 5662615.386131813, 5663660.9375, 5663703.125, 5664963.364003558, 5664995.977535276, 5665328.125, 5665486.397115406, 5666245.207439426, 5667375.0, 5668984.375, 5715598.463002133, 5765511.744908301, 5765885.1415320225, 5783439.228319164, 5786759.128541197, 5789683.359405084, 5792718.75, 5824909.236966613, 5831982.49753826, 5845482.8125, 5864151.4520591, 5871422.108614036, 5872365.625, 5872365.915221053, 5874895.3125, 5874902.0886657685, 5876110.006338556, 5877846.875, 5878024.643215261, 5878082.314136642, 5878089.272982032, 5878187.630219845, 5878286.131788976, 5878310.070196637, 5878498.995407811, 5879071.875, 5879198.4375, 5879441.9628104195, 5879445.005475454, 5879531.25, 5879863.110618802, 5880036.6438740995, 5880136.361810383, 5880224.414324768, 5880412.520166408, 5880464.0625, 5881227.848749554, 5881248.4375, 5881258.085148845, 5881498.191239137, 5881519.285958445, 5881673.5296289, 5881726.502165058, 5881735.9375, 5881962.775800541, 5882461.694811432, 5883721.543316613, 5884052.920960863, 5884329.6075902805, 5884336.926451082, 5884360.660092915, 5884495.198941799, 5884924.533568568, 5885229.271477084, 5885298.522159406, 5885316.999819901, 5885618.75, 5885777.810129399, 5887243.188548444, 5887625.0, 5888547.874494507, 5888967.1875, 5889330.892246679, 5889344.9370479565, 5890576.303743716, 5891985.9375, 5892520.3125, 5893267.481397504, 5896347.968814054, 5896745.3125, 5897071.5975928055, 5897477.680904012, 5897837.89182469, 5898918.450156573, 5899089.014994109, 5900625.956389884, 5904818.75, 5905887.319082028, 5909305.802344758, 5911002.555850502, 5911330.94964119, 5912176.5625, 5913589.0625, 5915737.5, 5922280.00898035, 5924781.0287160175, 5945779.687918979, 5948918.75, 5949321.637040447, 5949502.680813309, 5957670.301526006, 5961925.896290411, 5963806.402409926, 5977076.5625, 6014489.9419297045, 6019891.809782542, 6025698.533427445, 6029583.314149455, 6029714.621249217, 6030339.03387128, 6036409.804353521, 6037656.928459903, 6038513.887924155, 6039027.58241786, 6041379.927440745, 6042644.805846626, 6043337.469991686, 6043966.686414598, 6043996.09133107, 6043998.360434143, 6044239.0625, 6044587.2742918, 6045772.2783695115, 6045819.752419506, 6045888.5550113395, 6046011.604135417, 6046512.5, 6046658.757915402, 6046729.210363714, 6047798.324486935, 6047851.445292385, 6047858.9036093885, 6048480.6508973725, 6048487.871127495, 6048515.625, 6048594.5061660465, 6049625.173785648, 6049713.646967384, 6049719.987740401, 6049951.5625, 6051900.269442852, 6054500.0, 6054504.6875, 6055317.96965693, 6055412.5, 6055418.75, 6056380.6344580995, 6056420.3125, 6056631.25, 6059946.316394338, 6060505.189239075, 6060763.701051987, 6061815.32482696, 6062737.268539287, 6064759.793749788, 6067751.412330916, 6069049.943971612, 6069072.389984137, 6073625.96620116, 6073642.166227004, 6075282.949239078, 6079760.565537584, 6079861.821120851, 6081410.625732792, 6083616.941426395, 6084926.893756791, 6085140.732740152, 6085182.370906517, 6090386.421746979, 6091762.336941707, 6092474.643037403, 6093924.428487385, 6094160.9375, 6095047.406927242, 6095689.072642084, 6095743.870632399, 6095767.21877967, 6096106.09383286, 6096393.75, 6096635.029873052, 6096829.6875, 6097406.998748607, 6098010.9375, 6098238.314634845, 6098982.196202419, 6099029.742593159, 6099608.09942646, 6105321.544520357, 6106122.830875835, 6107435.098764743, 6110028.795911208, 6111885.9375, 6117781.25, 6118008.475769448, 6118024.9949199725, 6119256.25, 6119807.030167277, 6120262.980930389, 6120945.373036069, 6122135.265607135, 6123590.309689962, 6134763.061662041, 6136872.35677349, 6136906.566788269, 6137492.168651074, 6137594.234308505, 6137862.5, 6137997.63263671, 6138837.5, 6138870.056333319, 6139808.21675066, 6140672.92179541, 6144884.057655499, 6145915.625, 6146396.875, 6147010.1486551175, 6147420.08653175, 6147725.27764688, 6147940.565739688, 6149825.0, 6154535.9375, 6156087.5, 6157021.875, 6157060.9375, 6157082.452633086, 6157880.037933615, 6161611.3086355645, 6161652.823843024, 6162462.5, 6162642.158064374, 6162677.3398510935, 6162777.202704423, 6162942.2315496495, 6163231.641619663, 6163232.8125, 6163250.0, 6163254.6875, 6163428.125, 6163566.103329901, 6163678.735185614, 6163678.786901315, 6164031.608346037, 6164278.998651971, 6164601.5625, 6165054.6875, 6165059.375, 6165337.759195307, 6165339.0625, 6165408.777838932, 6165647.601373062, 6165685.836595103, 6165820.3125, 6165867.089721597, 6165929.932467983, 6165971.804535599, 6165989.2960059345, 6166268.343774182, 6166332.8125, 6166362.339657207, 6166474.624324873, 6166474.688725681, 6166707.891189039, 6166739.970806804, 6166769.718440973, 6166859.005539308, 6167032.481239822, 6167033.530853268, 6167071.875, 6167169.863415188, 6167190.771734611, 6167220.3125, 6167225.878081239, 6167351.5625, 6167376.39968807, 6167433.530364277, 6167435.548409362, 6167468.75, 6167577.847346907, 6167622.802180071, 6167975.745843482, 6168030.810965435, 6168326.4505448, 6168348.41308969, 6168362.575206242, 6168523.4375, 6168566.659598656, 6168583.766682755, 6168593.15790603, 6168627.26718944, 6168724.661232441, 6168912.025726253, 6168917.757909087, 6169170.676170574, 6169171.875, 6169252.058701057, 6169276.5625, 6169771.210442897, 6170018.75, 6170030.481915777, 6170042.8734334335, 6170427.31409859, 6170687.236868326, 6170897.520436, 6172797.012849662, 6172820.0265536215, 6172909.461775116, 6173501.832751215, 6177423.011933861, 6182052.338937985, 6182912.5, 6183035.045725492, 6184890.313444717, 6186837.655284901, 6188478.125, 6194751.5625, 6195913.248845588, 6197090.625, 6199198.252111543, 6205680.075931538, 6211078.125, 6212015.582232464, 6212082.105774506, 6212098.172584967, 6212207.8125, 6212411.248660785, 6212982.75294854, 6213171.192647205, 6214350.414115114, 6214398.4375, 6214735.849282798, 6214852.706323157, 6216441.92685565, 6216645.3125, 6216929.6875, 6220907.631134612, 6222756.296554814, 6223467.228292044, 6224964.0625, 6260607.060518727, 6268262.043877355, 6280130.233806425, 6318559.03308423, 6319465.816993814, 6323440.217979258, 6323802.886323294, 6324170.583605278, 6324236.367276548, 6324871.667762012, 6325148.131190227, 6326529.633186591, 6327476.111369269, 6327840.18798557, 6327880.186980598, 6328130.565146196, 6329338.028124084, 6329606.774187752, 6329687.5, 6331115.731844712, 6331909.375, 6335387.291773907, 6338509.654339128, 6349018.253083884, 6372506.25, 6400777.26177858, 6418205.801747723, 6418211.799023577, 6418220.3125, 6419818.613747902, 6421771.875, 6422429.6875, 6423577.937958909, 6424176.550034832, 6424284.008221628, 6424339.0625, 6424396.875, 6424498.012971327, 6424764.0625, 6425110.9375, 6425394.614313745, 6425462.911651098, 6425471.796002999, 6425515.063576277, 6425629.843431995, 6425678.500166196, 6425972.991141735, 6426042.037134548, 6426048.554191356, 6426439.499280778, 6426441.991049832, 6426447.995841485, 6426522.071024064, 6426565.625, 6426653.610141079, 6426814.230876904, 6427039.977261335, 6427124.389635915, 6427125.0, 6427303.18180924, 6427535.9375, 6428015.343153227, 6428085.395430654, 6428798.954147079, 6429243.75, 6429299.895288797, 6429331.992251416, 6429830.505923132, 6430188.943516202, 6431445.3125, 6435915.625, 6436429.350499198, 6447654.430567546, 6454798.4375, 6457875.427460553, 6459447.675202711, 6459462.5, 6462525.0, 6464081.25, 6464712.5, 6466540.625, 6469204.6875, 6469598.921176951, 6469847.513825911, 6470238.370841199, 6471884.307751008, 6472197.920301846, 6473194.22742866, 6473439.0625, 6473874.3799309125, 6473932.21204523, 6474118.028392813, 6474440.625, 6475341.339814363, 6475370.663273757, 6475492.1875, 6476089.309428037, 6476092.8557556765, 6476144.269619334, 6476237.270543099, 6476320.097238858, 6476540.902111631, 6477428.049725225, 6477538.894560035, 6477839.223253912, 6477950.985230623, 6478075.91733857, 6478342.1875, 6478867.451844721, 6478869.404017076, 6478993.75, 6479046.875, 6479181.25, 6479399.648832505, 6479596.771202758, 6480426.5625, 6480451.886325018, 6480464.764785923, 6480823.714941433, 6480848.292672779, 6480848.367633025, 6480914.0625, 6480929.502050238, 6480935.413579709, 6481010.811323146, 6481426.4695461225, 6481583.93511952, 6482526.5625, 6482570.76744597, 6482623.0381, 6482904.607562839, 6483047.054411081, 6483102.071750862, 6483503.125, 6484136.238548257, 6485245.3125, 6486663.455909014, 6486809.297618854, 6487690.270709825, 6487929.972098058, 6488928.125, 6489545.649172787, 6489676.5625, 6489725.0, 6489951.5625, 6490026.71517285, 6490329.2430334035, 6490343.597815428, 6490517.56440803, 6491165.369358697, 6492693.435613757, 6492714.07080024, 6492732.8125, 6492904.50590441, 6493445.932003003, 6493753.619409298, 6495721.822717669, 6495735.371087541, 6496665.625, 6497192.1875, 6503430.868466386, 6504446.601349308, 6506468.069851152, 6506534.375, 6506614.702048714, 6506634.375, 6506685.7108031465, 6507195.3125, 6507473.900286169, 6507474.3889838, 6507818.974184023, 6508015.2386327, 6508890.2063619075, 6509573.729617333, 6509801.065845252, 6510195.134264886, 6510614.0625, 6511036.450963554, 6511151.587318719, 6511240.840298538, 6512234.886662796, 6512414.038055584, 6512882.026231166, 6512971.323554601, 6513362.5, 6513692.729286281, 6513818.355848496, 6514089.687595423, 6514377.852294877, 6514626.5625, 6514635.115195856, 6514906.7082858635, 6516063.176549499, 6516287.311516966, 6516354.930040834, 6516668.593758511, 6516701.5625, 6516713.558569622, 6516718.75, 6516943.75, 6517480.277058318, 6517720.3125, 6518879.6875, 6519377.501391888, 6523938.494233981, 6524121.001963955, 6524464.0625, 6524825.940971946, 6524932.0718907295, 6525421.386918757, 6525761.717678702, 6526471.7443239745, 6526576.604216262, 6526681.25, 6527243.645186318, 6527520.96992481, 6530103.200157643, 6533734.4397436995, 6533923.4375, 6535416.52350839, 6536709.375, 6542765.602429468, 6544581.478743286, 6545470.180375896, 6546356.91800144, 6546474.237931494, 6547293.923153595, 6547401.5625, 6558574.718882848, 6564231.25, 6565026.157606214, 6565037.216058431, 6566068.7385911215, 6566247.337130324, 6566955.818058434, 6567693.75, 6567728.190143674, 6567876.5625, 6567898.051905414, 6568025.0, 6568206.173883535, 6568410.903361634, 6568603.125, 6568682.8125, 6568728.466576336, 6568969.932376295, 6568979.6006582845, 6569045.110992434, 6569147.308380669, 6569319.9449149715, 6569370.3125, 6569524.43467174, 6569688.501665026, 6569764.0625, 6569800.0, 6569848.4375, 6569866.1671319185, 6569925.1391419545, 6570064.0625, 6570137.5, 6570194.91036178, 6570237.5, 6570288.297355056, 6570348.077916682, 6570495.207566814, 6570535.299843366, 6570598.496070021, 6570676.8206963185, 6570835.9375, 6570882.348372997, 6570940.942983171, 6571122.813112206, 6571187.5, 6571367.501759842, 6571464.0625, 6571870.3125, 6571883.451956874, 6571929.28587248, 6572014.0625, 6572025.0, 6572045.3125, 6572309.894330662, 6572367.1875, 6573237.5, 6573249.227245421, 6573418.675491105, 6573431.25, 6573612.5, 6573695.938580775, 6573871.875, 6574366.1362070525, 6575594.399652248, 6575806.650949953, 6575830.195157773, 6575987.420752027, 6576211.0651501985, 6576401.285092781, 6576706.25, 6576771.875, 6577250.479608769, 6577590.170663376, 6577744.425300236, 6577895.266146451, 6578205.872768504, 6578240.124898234, 6578659.375, 6578793.75, 6579126.5625, 6579768.318552042, 6580262.464606394, 6581214.275902409, 6583897.986516936, 6584258.732382245, 6584770.294431296, 6586100.866049465, 6586357.101247608, 6586978.125, 6587134.375, 6587143.121206586, 6588907.8125, 6589842.585689783, 6589881.70417012, 6589964.0625, 6591945.02829247, 6597757.8125, 6597992.1875, 6598871.875, 6599165.749054673, 6599381.25, 6599391.234953026, 6599393.75, 6599550.0, 6600156.25, 6601538.814769113, 6601656.25, 6601714.419294921, 6602009.685483008, 6604214.023835399, 6605759.375, 6608123.4375, 6611164.288778888, 6611221.139225392, 6611411.826273452, 6614167.000233125, 6614961.802717162, 6615300.771035117, 6615947.506766559, 6621895.973858712, 6622712.5, 6622816.059622182, 6623752.123776004, 6623948.609645235, 6623991.245827197, 6624660.9375, 6624849.804286072, 6624902.233655605, 6625536.134819621, 6625777.46834939, 6632448.4375, 6649923.4375, 6652211.2725394685, 6655008.771532918, 6662681.25, 6663862.5, 6664651.032318749, 6665672.363483364, 6669129.5134347305, 6670090.625, 6670260.9375, 6670639.326180026, 6670837.25739316, 6671610.325977033, 6671911.747905177, 6672102.545436662, 6672303.125, 6672335.346713612, 6673124.889354117, 6673506.25, 6674677.400540963, 6675680.154103448, 6675898.744703675, 6677691.964069235, 6677709.375, 6678012.5, 6678718.273188949, 6681901.5625, 6682499.4886296615, 6682833.879747504, 6683000.0, 6696510.986708679, 6698058.345519944, 6703941.6532715075, 6704807.66774605, 6705013.118172248, 6705506.400379709, 6705691.171027833, 6708038.443921743, 6708949.157120724, 6709269.790828273, 6710238.530375345, 6712128.125, 6712130.105219725, 6712245.3125, 6713337.257326159, 6714859.375, 6718397.6015118025, 6719196.875, 6722657.8125, 6722789.341933758, 6764333.371197482, 6768287.410318521, 6770414.0625, 6770621.171703428, 6771678.808431766, 6771994.13756665, 6772144.584663597, 6772435.9375, 6772890.625, 6773007.8125, 6773016.237173264, 6773144.841548923, 6773351.074244082, 6773364.020553308, 6773370.3125, 6773430.445895149, 6773441.464805114, 6773836.764311848, 6774352.429950446, 6774749.4991042605, 6774782.698168715, 6774917.1875, 6775479.378517172, 6775787.119649945, ...], [5.571580085969963, 13.314853899095198, 29.99830476936915, 19.993164153840773, 24.007424796571996, 7.528160583964245, 47.75473628052242, 28.102516792759925, 17.1044787738149, 11.841995830562741, 5.363031977057266, 32.46631095939207, 75.71197386579011, 17.237272829749095, 13.566572404683, 5.357033958102229, 40.75974003095411, 57.254206486939474, 30.08202310761751, 17.888938099403212, 48.58697975934666, 9.75054409113775, 33.73953143732928, 25.49909643483587, 45.713295564293205, 71.94210536772893, 16.2410774151137, 70.57338689120996, 16.82882530574051, 30.820632472550905, 36.88794984940111, 67.44122503142351, 13.414083012704042, 8.635405540786742, 19.395229125972403, 131.85728850835005, 20.170431365372743, 64.39725824352286, 10.922961658173769, 51.65819976000807, 81.43258184503736, 15.250741756049809, 36.75667225432329, 112.094427442491, 35.013483306213104, 13.604931285281616, 36.070454861582185, 168.8008784180373, 14.738426082233698, 10.225591955873297, 10.209847278012127, 71.51992400519391, 101.56270257426941, 70.87432638718712, 26.92241440791254, 10.593865514553245, 40.574755445249, 23.06183524440023, 23.398494675722837, 5.124048062288461, 25.64408614964192, 32.02711318276574, 135.87220605964873, 8.730364587043477, 11.930131228707989, 16.55014270275593, 19.260293723587097, 84.01087031969273, 10.062646446077498, 10.674291817621217, 11.930656796491117, 9.441180858775054, 14.595409409913144, 99.12714198316223, 105.61791942403192, 43.180887695021674, 171.3994304513542, 37.749326427449816, 73.33372200474183, 12.954048341816705, 140.34970230530394, 64.15377111682568, 65.31518730121267, 23.1598397081546, 58.32256497188004, 92.21489987952113, 45.24503521601529, 6.624791250931047, 8.530846109634473, 117.3496744824181, 60.805219207801535, 19.793511964722754, 73.2367794771965, 13.802700263732781, 7.9326854783035445, 35.085924019132236, 86.46994633032892, 123.80884655087966, 13.644745589653592, 65.31024615652737, 104.11242810599492, 16.682295862490346, 12.536099580142269, 53.341508491327076, 46.03404172263862, 54.53879274485512, 5.216702737329203, 153.82880180758409, 172.48027385899175, 24.043687322452346, 33.67821398649898, 33.72298075114962, 10.07763526157044, 102.46838890545398, 14.15375636508295, 43.88558558106491, 18.125296908910915, 122.05769876230538, 34.42047705849929, 32.07765996276674, 55.83530774881755, 29.24068994820448, 68.64401926528353, 9.624400126459694, 36.85059814403449, 78.10955195452388, 10.442930563944216, 14.51250175914861, 234.1189802473792, 23.6088107671689, 38.481924543526674, 77.88058822378525, 84.6950678061882, 37.76489892320134, 25.663258577736773, 29.88951494266187, 16.724926389291195, 10.72694253222711, 12.300412276042996, 77.6721681741939, 21.164411073809095, 55.28149983067757, 78.05372469555087, 35.29587506333345, 81.5910092647126, 19.598643957631225, 53.091348538928315, 12.046058086529891, 23.986924207178337, 11.394325189897078, 103.42633046880441, 104.2104831403606, 46.32024933032576, 20.01174250608953, 54.61759640112497, 15.06851608922756, 8.855519602037864, 21.31445329554362, 81.66186981456812, 7.482492811023404, 23.663262289234495, 83.45502484880929, 60.44141708580413, 68.5488423555451, 28.825509420539674, 13.337428039814732, 10.146332118085601, 36.624159110780454, 24.76905811436793, 7.64399998905237, 5.835863270517589, 65.52656603695581, 10.213598074256804, 90.59312403869745, 41.63219807594441, 91.56039968076405, 14.561303064413018, 47.71536662370077, 22.26876301659671, 93.64438252660909, 31.862996358658098, 36.523976346887906, 45.55718550509742, 8.449446249741849, 35.09233209655594, 130.536186363203, 27.91127930890805, 20.094748114424142, 30.03554130177522, 40.11687023835988, 23.267422702820923, 13.761002029791062, 7.262697183169464, 17.361344161003075, 9.581725515471751, 9.953975551585149, 68.17544989369482, 19.85114371362667, 13.571546170530894, 79.63207033630518, 7.189446915373718, 10.12437743717298, 22.867024416591665, 5.796525117107642, 17.899756313796, 76.22289720518337, 5.98350880575438, 17.544068162122088, 27.565177346371417, 80.83808556958796, 12.674623344666164, 26.154959439458082, 68.46181254056718, 5.934403744325193, 7.82534442318675, 8.813103621119705, 54.122911830206576, 15.808461128699468, 110.82130454194106, 26.280395361402, 29.28126300525186, 48.15642455363832, 81.92842714795125, 7.201997443526393, 29.69742367434648, 7.244995641602436, 60.151665867430005, 72.41327208034545, 66.4515721190474, 14.103038736359814, 42.39059625045119, 73.94957969758597, 96.55939344098698, 15.007829364041086, 43.80958567035263, 39.92841510489815, 6.742711743078844, 51.06992066484975, 33.34349495452412, 84.71771844990948, 12.677789490250866, 100.71112067917223, 58.803749301710994, 8.160408564857025, 12.105651953083271, 66.87135403494099, 14.440257803670654, 49.32272925109363, 45.116425054688534, 19.74183410945148, 15.913551234708109, 48.64102658077072, 8.446254886399228, 29.247318683715726, 38.19376490543548, 98.82677332248963, 40.225126095126726, 6.051766298227257, 61.790694620814705, 34.5947708527704, 46.28393254081461, 23.897419264542954, 12.421327943948304, 6.578255273478304, 52.82079755188969, 88.88132699359147, 77.69022521244474, 5.597281647640377, 58.00326875954774, 165.06571549102742, 50.11676331107674, 7.764268169471744, 6.195933648385809, 32.25428428871826, 35.834563735106954, 13.983671662752116, 39.96864088748394, 5.171760411569145, 62.809188530532396, 109.53520518746818, 5.947469022985012, 45.747389972099356, 115.84257794729248, 69.19035180193215, 99.31836210900953, 73.32035333464785, 36.102312835037964, 6.257154867517131, 8.889353867470462, 81.64842962592483, 8.227425092940562, 21.83463057705169, 13.562078190920316, 15.274317777665514, 8.189761444802684, 50.294171172995384, 10.668800451159814, 10.350547542387616, 34.160267752381145, 20.484489993441887, 31.921036253536638, 6.2230327155294995, 8.097533745555612, 63.13726621949173, 73.29097841323035, 63.02460232724635, 23.464844040856324, 182.77013984383353, 57.14659567728326, 24.043688067975726, 170.74483815480716, 9.686249295319323, 69.1379880955898, 41.485056263084715, 15.493926108538313, 29.627879743230043, 25.40115921633547, 22.0316581940038, 69.4181541963545, 23.746159432643868, 65.23802565773865, 33.21742277259285, 75.87035086316587, 105.83067560814516, 100.91713282023976, 31.87696943903389, 73.7226148572241, 9.137986118975526, 13.481549717957703, 66.36988651638048, 73.86723374393492, 15.556089414762063, 85.49691121558985, 19.842565354458973, 125.86844127641996, 15.320195793706763, 35.2407808078549, 17.606343800015015, 11.083251194328028, 36.42994993311158, 12.384421201988513, 23.7869645334747, 21.078583609008724, 15.903672187248606, 21.42698505301839, 14.828352197370924, 13.323074355356347, 12.610943972294729, 27.08790800568118, 47.18864761386201, 24.74848629678934, 25.294198571853173, 26.088158442652706, 47.60129352425925, 18.283006754805168, 58.1234512487141, 146.12290279847974, 6.671847328646007, 26.474314965230153, 68.48733755665891, 21.783321842296026, 133.54665044808561, 20.6199636306781, 81.40357648683198, 30.863435684545905, 24.09484320945458, 22.379227235448543, 23.43954168977345, 70.05625442933258, 16.07861558171086, 135.87205949637354, 68.9259986275357, 10.093690384016451, 43.64896646435525, 39.367738893041164, 22.754758936731292, 40.91007340669727, 72.3171064230603, 8.011730650576219, 64.6798652559947, 89.75144532177686, 12.950226278062996, 24.66758116626999, 16.82035480019322, 89.8159578995791, 27.46304039685617, 28.127403104907003, 20.70133133940961, 43.62787632003272, 26.60740035624889, 6.430321950909329, 59.44876064397755, 8.128314947872438, 38.20050882819332, 11.688216099910452, 16.062407940707924, 33.24906295002932, 79.92419630814418, 80.9579765113919, 23.049408209685545, 103.4274559707179, 48.88712074631297, 12.075133106084454, 11.143596623525957, 7.153527457647565, 76.20907493875443, 7.547714670040573, 52.695393330706004, 38.01052808376751, 44.84315956021289, 53.6650178459623, 58.647883340531735, 8.770100969225934, 124.89595934539474, 7.623286224837821, 16.160883854219975, 60.78951131209111, 17.15513025389003, 21.340798485332435, 18.31124910831001, 77.57996118913849, 95.237994186415, 53.98385670323248, 11.11977566636794, 38.548944953183145, 27.453642937550253, 11.972996149194213, 21.361629418493887, 19.600191135177084, 66.17593385710288, 12.13595705700221, 9.774942480554326, 14.768002982597238, 11.098371980821215, 72.5398976114204, 33.33409375066161, 12.562055710543364, 85.85525806670405, 5.795266181045285, 16.744241721008468, 31.912451632431047, 6.701762898769955, 56.98556676763659, 44.80573909285694, 70.89039336026518, 9.147373733771072, 78.93476113279586, 6.0819582699780925, 85.6565613311364, 44.62282148478634, 39.48113600428862, 89.8562949624775, 42.47415607294994, 25.063554331190986, 6.312512195964132, 16.573836958555432, 23.73597412728853, 133.21839131810273, 34.821040119309025, 42.57258728619861, 63.11762272717292, 18.947405303814676, 5.974251477383515, 39.76062447817865, 84.32475415951339, 90.0064593485738, 41.75496957549096, 56.50653072109616, 7.839920603065268, 79.66804171923594, 16.5092705001727, 12.574497063831952, 99.81658471238701, 31.466440127569573, 69.71101396282357, 52.283912801461696, 30.917367118348356, 20.57569375627456, 26.674413202985033, 65.20249454532465, 71.04697177340125, 76.36214772712776, 14.458022570607532, 11.019324143193826, 15.913060230595772, 47.76134239745939, 51.43640222125139, 25.71517489102258, 71.69788138582605, 60.05769230730526, 5.344625317562912, 36.59018185139657, 10.310841283538494, 10.595473674406001, 6.054315443828371, 91.69396439706162, 142.97643730650537, 28.27005690298293, 15.531930101921985, 42.585866086134025, 10.203500130117696, 34.71075347921743, 16.89692758538297, 18.62907812130471, 90.36299794007252, 49.108086721272805, 23.424857610977664, 20.241673842891863, 10.053185431441117, 75.67569903828725, 124.65391996942498, 8.273710791894514, 15.236123656093834, 143.01357352446263, 10.391956459297463, 47.07057553926822, 13.080705861650767, 80.29676047986844, 23.267856725830722, 24.70985081441556, 9.865265295454542, 7.740289226753224, 81.53344047902583, 29.64957771040369, 54.137753064690486, 12.896878529208442, 40.59415511579158, 138.88061853112185, 18.41138695124187, 51.69421562241786, 14.025228100670875, 18.14465012941579, 6.284773204809568, 23.931932592473252, 9.405870299441942, 16.082394048947073, 46.30176767329614, 19.046426343247855, 39.46051627051518, 35.69412197239194, 23.604252639398116, 48.990255929076156, 33.5848527796605, 61.64543964863893, 18.107227494165613, 40.46522213204624, 25.334147255364748, 8.50325350889592, 182.27991378668037, 27.705926267061773, 20.984207265064313, 31.601347767638035, 45.353669371500125, 32.222651326322506, 27.399358299367048, 19.848414109585025, 16.795923766414404, 35.10994532338245, 95.16760622720884, 77.03853474503026, 61.10144875585084, 103.52424120929675, 47.41798003784576, 5.285517690555006, 38.23630053628598, 21.86035587418792, 84.33477444472305, 19.300668004552456, 13.472908389797315, 12.104427509217066, 36.324179510576776, 8.390785255137766, 37.209877698209866, 43.35788843753071, 16.08638877035312, 48.93964036179447, 160.77903040366834, 10.680455696888894, 56.807650788191175, 90.24801163099642, 22.145299784346985, 17.261829087969815, 12.846766569368821, 5.360350223637204, 17.403247990900585, 86.06956946959123, 86.95653096080605, 32.13565584368131, 138.67823639077773, 57.64178129396832, 77.53684111945344, 29.37677561812675, 18.501556844595207, 6.042693207282458, 10.184247542379822, 52.5623224795938, 7.0860898843976665, 51.8474183691749, 133.4261867123456, 25.30948232446698, 38.97925202900044, 10.599036939110198, 63.41177841255313, 87.49132478056022, 141.27364389588504, 54.69964032213408, 35.92034209981543, 26.03470963214746, 134.02434917446982, 19.258341863525764, 24.24585829468934, 15.571135057374095, 6.315790799914169, 33.4363435892844, 14.397771444517321, 11.315136740634044, 11.886725658774765, 61.27152240538115, 130.53901673294973, 21.423788388918833, 49.7119176755581, 15.484031981482982, 5.296316791298493, 20.135911537375453, 49.91927178528276, 100.59178280428797, 5.069930809654408, 103.10820052799455, 6.232233898193228, 21.08345622221784, 9.810125487055679, 44.50703558587802, 10.967888076431466, 6.168844795744928, 27.80681403526293, 14.50659720112957, 49.15949112252465, 48.153619233782265, 12.631369640389444, 43.56026053497301, 72.73619394060847, 21.582339144843232, 91.83092642903638, 64.99519769621179, 36.838924683960684, 89.4112144583128, 108.58979389751232, 62.7871624335643, 193.1040945343219, 22.459661440877657, 5.997038478565994, 27.425405934018112, 106.93802403303727, 21.323238041943128, 6.3294632139831455, 42.176888417930776, 47.3696867628087, 26.849745434558955, 118.87403108808792, 68.12635305470985, 18.60799463048804, 65.78490737578987, 49.507224183994836, 7.695057518951766, 9.968523499196623, 170.06291251585566, 24.695690514975592, 14.179953197790978, 9.577249185310853, 66.88461721110095, 6.730435495915615, 41.808089300539635, 20.755438077176255, 20.15774435507111, 51.46600793506929, 9.565392143993353, 13.775473191038834, 51.881915066816276, 44.676914008602964, 187.24143697331485, 13.753023611109514, 8.232439873767927, 54.23212281918017, 16.338348719654007, 8.696496706566329, 6.820189140275607, 14.416807442631809, 14.681732368920063, 38.16705794015157, 70.76021215389221, 6.663231294583811, 79.74428053376408, 26.812567211874004, 15.49209108380128, 54.000174671069644, 7.24640879433623, 5.034876932599977, 72.8665175090617, 81.32602138382684, 17.317384687241756, 36.65974135954322, 11.633295865892611, 59.79767676136683, 7.397650756327247, 27.08237843994052, 5.788222793337041, 115.1140555158878, 69.32360240187711, 75.41361547903641, 80.21510379968939, 55.32375310110278, 122.13128822436717, 6.286682124646657, 39.93545246777934, 6.072415059205123, 17.327663185800347, 24.33439692824109, 10.669458742330836, 24.247694719213214, 67.362339522335, 7.538852126500605, 27.142315716264388, 5.557566763988992, 5.530548483775074, 13.147765105913539, 86.38148970904254, 125.74434972864506, 42.84822062757667, 11.79972381230052, 44.98309325182605, 65.22570051893693, 5.144409911986069, 94.08975498030473, 10.790936259989204, 54.46745626527093, 188.72321823134388, 7.9878933060827615, 15.870875506739566, 6.6887472229802665, 6.682710911971275, 16.18553165494681, 21.746574412205277, 31.73471005106285, 31.031430329249424, 5.418472867843364, 11.166722924016286, 26.086372869795504, 17.331172986316933, 11.089712367178707, 5.873737500693305, 13.187323425264358, 92.59082163273655, 32.12961902829179, 55.83226218591811, 18.0144548890541, 9.110990610474191, 34.67081501469185, 18.78537084732544, 26.25571168509331, 96.80730532035344, 30.275232394091603, 15.954241630625164, 109.72821598327123, 36.6335356566452, 64.06605231633216, 58.632107080853224, 33.37705045715576, 12.19389594736682, 75.98215501776295, 111.21002264081561, 10.275309374606662, 38.033836881486934, 35.61445464346477, 58.3560139948631, 10.277796750590948, 47.30383975367529, 66.21410387986845, 12.614072163664359, 69.4658338260908, 11.193544122192968, 61.99415934784753, 74.82642490775238, 120.4043505994224, 11.247250903221152, 112.96905231002677, 120.91430121206719, 41.31197473819441, 80.47834858150087, 88.2610949719122, 9.53260956844665, 40.83355753957747, 62.535133114151385, 5.5732313933061715, 54.58585983294914, 52.3442330960852, 23.99497825549984, 39.03919683551813, 22.49736970852911, 6.059061264561906, 85.50650321135194, 51.59396047911173, 84.82923339257852, 60.97995319979772, 15.195759330457395, 46.12553702205069, 148.98522140640432, 112.44642062095984, 14.659114473989929, 127.90300906578668, 42.106312192639315, 28.534237354221993, 16.42563585922118, 22.7785247982335, 70.11217923243736, 5.694052432537864, 66.58233219946999, 46.0003575899795, 40.68164839887108, 69.11216241420486, 6.981436822259093, 42.596949330614514, 43.75987701117152, 75.98387695535837, 78.53029342884498, 25.774432869678648, 80.57097232392469, 62.14244381088996, 22.528222500550818, 38.64825079113299, 160.16540753039772, 7.030030902230836, 26.609331614896316, 20.221665631974027, 121.77407920167559, 16.32324487526719, 62.409990836467756, 10.472262101728184, 6.828694467285141, 13.678674980684228, 34.458305479193974, 28.296698522616232, 36.04700584113141, 91.96253269284199, 18.106122662887117, 13.603789015590014, 29.999774828797396, 72.132804280283, 28.9019462210569, 12.049651320766223, 46.77870329388041, 29.332202098017135, 5.316121616915943, 14.664923069566164, 125.92904968482378, 83.47081207459759, 50.50923809054481, 50.14313940840741, 86.83302839686112, 7.303380931119605, 19.05565590644587, 53.889650713721274, 101.11278809159518, 47.08411496891837, 24.043687742619134, 49.84041312141523, 53.96883661871482, 40.57823388590202, 143.1023642472025, 74.88770691881105, 54.548946955786505, 57.73451173119255, 99.92460791867408, 38.76488704958237, 31.229659076353542, 30.806001503116626, 22.205331996284578, 27.843207400662294, 75.57007211310865, 75.74940570741092, 57.42969379937862, 33.977993624369546, 22.09726196790136, 82.79070147638765, 33.80776419217525, 89.75603788561004, 34.97851459454658, 171.66377634588207, 13.981739540037147, 48.586264406725334, 71.37206523833902, 52.31152086226845, 71.26728546501863, 58.17836733338686, 49.09139635946376, 27.47200695978212, 39.997261650409826, 12.236802206677563, 29.01477959442717, 70.70812486572474, 46.33040174137532, 20.35621965549847, 71.70977181057445, 5.255242199840155, 79.44464634742786, 39.557258943814716, 80.86654548944729, 58.9259057584482, 11.500827151016939, 68.60845732139259, 113.75194576332746, 87.95576081868674, 6.383072565858601, 16.285462077395213, 18.05688385157825, 26.207542885851183, 99.85018616186804, 20.646874205001087, 58.69096752627861, 62.70906481369707, 12.25987130327122, 28.617868536636724, 85.7810417300575, 180.86188523423925, 15.751007001389544, 101.56970180165368, 132.93669781835044, 75.15407395020097, 21.10949657179134, 28.082826707529136, 96.94832867042489, 56.227155342238206, 21.207432577038244, 43.79752530898938, 59.70378539606212, 79.09223757582183, 154.73478087831666, 22.987300257509144, 10.768551040237826, 13.030647421211087, 6.176633598966462, 25.696475913920743, 89.61238091453886, 33.33326182021478, 62.92590481552418, 69.76661923090286, 37.28735481698153, 40.181679168796926, 85.66261092507605, 24.780695056804078, 29.22263567609248, 50.049432188078974, 13.390006969175959, 39.85691939175182, 48.6681695100065, 31.405370603567945, 81.70525897257932, 20.40878288189984, 26.758376671105367, 11.736188676943168, 31.44997632153414, 164.9140327870062, 7.161551064045267, 146.36701793530327, 200.72112167541195, 83.75817096543837, 13.267081585168658, 21.178515611111433, 30.584811286927216, 16.81491668736646, 97.68664612940796, 5.389277174317963, 33.248524517819696, 18.68919699356963, 28.954690455648027, 86.92036591772036, 33.48237279269978, 31.418999029834616, 8.239714880154118, 85.55388690484881, 19.679484958219184, 21.454100185613036, 11.792827693728617, 7.359622393437701, 146.28042558396436, 28.564180074005233, 31.409661733856204, 54.49089303194626, 31.583097042279945, 100.36422335023835, 11.062768359117502, 29.514079264974797, 49.254122401160814, 19.84066405565632, 7.357192256936264, 6.183203977566722, 79.92285862274272, 102.97200524269553, 67.50070944202635, 53.540556178470176, 65.84840094420329, ...])
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);
([2506571.081037751, 2668426.0584083423, 2678362.186239134, 2687361.835233721, 2724012.2198325796, 2888435.725040255, 2961503.2644539387, 2966276.5408025295, 3041337.9713468133, 3048858.195840382, 3048909.9783973363, 3067996.875, 3095867.1875, 3154218.0314541506, 3181240.2105343975, 3200116.059493903, 3204542.1875, 3251128.125, 3254512.9156785626, 3277214.3332344946, 3312651.0605413173, 3312825.4573235363, 3343681.25, 3346762.3255646676, 3349018.75, 3382649.5419827662, 3394675.303736573, 3408355.4750688314, 3415651.475562867, 3429240.1113527603, 3461145.3125, 3493889.0625, 3493893.2818330326, 3504252.168615242, 3511144.572900909, 3590026.9396341722, 3606138.4188329317, 3634571.875, 3634595.177438578, 3635398.4375, 3636759.2384142103, 3636935.0280074324, 3637720.3125, 3645704.715093123, 3645720.258836728, 3650083.9737648815, 3653386.79865756, 3653848.4375, 3667370.2581784735, 3698583.7094473275, 3705113.3835161384, 3721751.3883940196, 3722823.4375, 3723367.1875, 3726265.5384310917, 3759893.3793277335, 3761297.5491771493, 3784437.144083865, 3788835.6094142837, 3803523.1330335536, 3806296.71005238, 3824937.280705996, 3873231.25, 3885696.0669490704, 3889811.396619312, 3911370.309806202, 3918032.0551841687, 3918214.612254042, 3940475.7543714424, 3985598.126666754, 3988231.709388229, 3992775.1270369827, 4002784.28113325, 4010382.5278315796, 4011713.870053513, 4011737.192069017, 4012243.2464960376, 4017771.875, 4020851.5625, 4026836.858309958, 4028297.3373686187, 4034196.875, 4036341.0256896424, 4036818.633938017, 4041640.408837122, 4077273.0765482695, 4083937.5, 4083955.513063042, 4085605.122515674, 4138856.2009054795, 4144281.25, 4145523.0558193433, 4149780.5311440304, 4172487.1652765027, 4189308.6399318445, 4189316.0091289263, 4194210.9375, 4194621.875, 4198862.112382033, 4239400.0, 4246425.0, 4254358.128129054, 4286807.127746819, 4293133.95140034, 4304258.853407227, 4339765.625, 4357064.575922975, 4357732.8125, 4358080.919860666, 4358148.16009275, 4358314.8561620535, 4359160.9375, 4359257.01782451, 4359333.837162143, 4359356.026739908, 4359435.918559663, 4359586.668365393, 4360970.117984264, 4369068.730524058, 4404884.10876051, 4419487.5, 4580001.946963303, 4590225.0, 4605094.077314248, 4632081.25, 4633562.911704905, 4633969.825273938, 4636698.32019968, 4649823.73164908, 4765065.313806917, 4892723.4375, 4893663.539816932, 4894156.25, 4906089.783866073, 4906755.109093207, 4929492.1875, 5112692.73323442, 5151693.477524352, 5151713.139784519, 5207074.958589915, 5222452.591406889, 5238846.823541579, 5252721.875, 5374607.8125, 5405978.125, 5407520.0730957985, 5430149.804223267, 5451158.330047695, 5465893.468267643, 5467889.226630617, 5472111.540428503, 5474992.124314672, 5475909.375, 5475994.649967393, 5476021.875, 5480071.907927351, 5484146.2529291315, 5487745.499394996, 5487750.360934613, 5487757.465845689, 5488288.755620559, 5488823.300132071, 5492768.75, 5500634.375, 5500946.875, 5503601.066650635, 5505782.078594599, 5507228.943644282, 5507236.035206754, 5507490.736312859, 5507561.228934378, 5511711.09200071, 5558052.449222331, 5562704.6875, 5580932.8125, 5614638.574244082, 5642402.953142872, 5644198.4375, 5644462.074393175, 5644585.878000145, 5644593.412755663, 5646009.185299378, 5646089.0625, 5646434.670791811, 5646550.68763443, 5646878.125, 5647623.405730964, 5647624.347382811, 5647643.75, 5647689.548273778, 5647691.848696706, 5647709.026485211, 5648056.761386601, 5648094.26692271, 5648220.594416451, 5648506.90468786, 5648589.0625, 5648863.380481876, 5648985.524756117, 5649122.689160854, 5649139.3150007725, 5649160.184330057, 5649569.940017677, 5649621.636272202, 5649892.794352365, 5650127.904005117, 5650450.492873316, 5651159.923264564, 5651196.824581777, 5651648.958265282, 5651711.743565074, 5651729.561878386, 5651863.345429475, 5652153.0673852805, 5652577.137499408, 5652644.628564007, 5652835.9375, 5652945.522766042, 5655001.302176416, 5655023.312708138, 5655631.858626365, 5656463.403152813, 5657545.7457206985, 5658897.172797231, 5659475.790852417, 5660230.137519477, 5660279.6875, 5661611.55753113, 5662182.8125, 5662615.386131813, 5663660.9375, 5663703.125, 5664963.364003558, 5664995.977535276, 5665328.125, 5665486.397115406, 5666245.207439426, 5667375.0, 5668984.375, 5715598.463002133, 5765511.744908301, 5765885.1415320225, 5783439.228319164, 5786759.128541197, 5789683.359405084, 5792718.75, 5824909.236966613, 5831982.49753826, 5845482.8125, 5864151.4520591, 5871422.108614036, 5872365.625, 5872365.915221053, 5874895.3125, 5874902.0886657685, 5876110.006338556, 5877846.875, 5878024.643215261, 5878082.314136642, 5878089.272982032, 5878187.630219845, 5878286.131788976, 5878310.070196637, 5878498.995407811, 5879071.875, 5879198.4375, 5879441.9628104195, 5879445.005475454, 5879531.25, 5879863.110618802, 5880036.6438740995, 5880136.361810383, 5880224.414324768, 5880412.520166408, 5880464.0625, 5881227.848749554, 5881248.4375, 5881258.085148845, 5881498.191239137, 5881519.285958445, 5881673.5296289, 5881726.502165058, 5881735.9375, 5881962.775800541, 5882461.694811432, 5883721.543316613, 5884052.920960863, 5884329.6075902805, 5884336.926451082, 5884360.660092915, 5884495.198941799, 5884924.533568568, 5885229.271477084, 5885298.522159406, 5885316.999819901, 5885618.75, 5885777.810129399, 5887243.188548444, 5887625.0, 5888547.874494507, 5888967.1875, 5889330.892246679, 5889344.9370479565, 5890576.303743716, 5891985.9375, 5892520.3125, 5893267.481397504, 5896347.968814054, 5896745.3125, 5897071.5975928055, 5897477.680904012, 5897837.89182469, 5898918.450156573, 5899089.014994109, 5900625.956389884, 5904818.75, 5905887.319082028, 5909305.802344758, 5911002.555850502, 5911330.94964119, 5912176.5625, 5913589.0625, 5915737.5, 5922280.00898035, 5924781.0287160175, 5945779.687918979, 5948918.75, 5949321.637040447, 5949502.680813309, 5957670.301526006, 5961925.896290411, 5963806.402409926, 5977076.5625, 6014489.9419297045, 6019891.809782542, 6025698.533427445, 6029583.314149455, 6029714.621249217, 6030339.03387128, 6036409.804353521, 6037656.928459903, 6038513.887924155, 6039027.58241786, 6041379.927440745, 6042644.805846626, 6043337.469991686, 6043966.686414598, 6043996.09133107, 6043998.360434143, 6044239.0625, 6044587.2742918, 6045772.2783695115, 6045819.752419506, 6045888.5550113395, 6046011.604135417, 6046512.5, 6046658.757915402, 6046729.210363714, 6047798.324486935, 6047851.445292385, 6047858.9036093885, 6048480.6508973725, 6048487.871127495, 6048515.625, 6048594.5061660465, 6049625.173785648, 6049713.646967384, 6049719.987740401, 6049951.5625, 6051900.269442852, 6054500.0, 6054504.6875, 6055317.96965693, 6055412.5, 6055418.75, 6056380.6344580995, 6056420.3125, 6056631.25, 6059946.316394338, 6060505.189239075, 6060763.701051987, 6061815.32482696, 6062737.268539287, 6064759.793749788, 6067751.412330916, 6069049.943971612, 6069072.389984137, 6073625.96620116, 6073642.166227004, 6075282.949239078, 6079760.565537584, 6079861.821120851, 6081410.625732792, 6083616.941426395, 6084926.893756791, 6085140.732740152, 6085182.370906517, 6090386.421746979, 6091762.336941707, 6092474.643037403, 6093924.428487385, 6094160.9375, 6095047.406927242, 6095689.072642084, 6095743.870632399, 6095767.21877967, 6096106.09383286, 6096393.75, 6096635.029873052, 6096829.6875, 6097406.998748607, 6098010.9375, 6098238.314634845, 6098982.196202419, 6099029.742593159, 6099608.09942646, 6105321.544520357, 6106122.830875835, 6107435.098764743, 6110028.795911208, 6111885.9375, 6117781.25, 6118008.475769448, 6118024.9949199725, 6119256.25, 6119807.030167277, 6120262.980930389, 6120945.373036069, 6122135.265607135, 6123590.309689962, 6134763.061662041, 6136872.35677349, 6136906.566788269, 6137492.168651074, 6137594.234308505, 6137862.5, 6137997.63263671, 6138837.5, 6138870.056333319, 6139808.21675066, 6140672.92179541, 6144884.057655499, 6145915.625, 6146396.875, 6147010.1486551175, 6147420.08653175, 6147725.27764688, 6147940.565739688, 6149825.0, 6154535.9375, 6156087.5, 6157021.875, 6157060.9375, 6157082.452633086, 6157880.037933615, 6161611.3086355645, 6161652.823843024, 6162462.5, 6162642.158064374, 6162677.3398510935, 6162777.202704423, 6162942.2315496495, 6163231.641619663, 6163232.8125, 6163250.0, 6163254.6875, 6163428.125, 6163566.103329901, 6163678.735185614, 6163678.786901315, 6164031.608346037, 6164278.998651971, 6164601.5625, 6165054.6875, 6165059.375, 6165337.759195307, 6165339.0625, 6165408.777838932, 6165647.601373062, 6165685.836595103, 6165820.3125, 6165867.089721597, 6165929.932467983, 6165971.804535599, 6165989.2960059345, 6166268.343774182, 6166332.8125, 6166362.339657207, 6166474.624324873, 6166474.688725681, 6166707.891189039, 6166739.970806804, 6166769.718440973, 6166859.005539308, 6167032.481239822, 6167033.530853268, 6167071.875, 6167169.863415188, 6167190.771734611, 6167220.3125, 6167225.878081239, 6167351.5625, 6167376.39968807, 6167433.530364277, 6167435.548409362, 6167468.75, 6167577.847346907, 6167622.802180071, 6167975.745843482, 6168030.810965435, 6168326.4505448, 6168348.41308969, 6168362.575206242, 6168523.4375, 6168566.659598656, 6168583.766682755, 6168593.15790603, 6168627.26718944, 6168724.661232441, 6168912.025726253, 6168917.757909087, 6169170.676170574, 6169171.875, 6169252.058701057, 6169276.5625, 6169771.210442897, 6170018.75, 6170030.481915777, 6170042.8734334335, 6170427.31409859, 6170687.236868326, 6170897.520436, 6172797.012849662, 6172820.0265536215, 6172909.461775116, 6173501.832751215, 6177423.011933861, 6182052.338937985, 6182912.5, 6183035.045725492, 6184890.313444717, 6186837.655284901, 6188478.125, 6194751.5625, 6195913.248845588, 6197090.625, 6199198.252111543, 6205680.075931538, 6211078.125, 6212015.582232464, 6212082.105774506, 6212098.172584967, 6212207.8125, 6212411.248660785, 6212982.75294854, 6213171.192647205, 6214350.414115114, 6214398.4375, 6214735.849282798, 6214852.706323157, 6216441.92685565, 6216645.3125, 6216929.6875, 6220907.631134612, 6222756.296554814, 6223467.228292044, 6224964.0625, 6260607.060518727, 6268262.043877355, 6280130.233806425, 6318559.03308423, 6319465.816993814, 6323440.217979258, 6323802.886323294, 6324170.583605278, 6324236.367276548, 6324871.667762012, 6325148.131190227, 6326529.633186591, 6327476.111369269, 6327840.18798557, 6327880.186980598, 6328130.565146196, 6329338.028124084, 6329606.774187752, 6329687.5, 6331115.731844712, 6331909.375, 6335387.291773907, 6338509.654339128, 6349018.253083884, 6372506.25, 6400777.26177858, 6418205.801747723, 6418211.799023577, 6418220.3125, 6419818.613747902, 6421771.875, 6422429.6875, 6423577.937958909, 6424176.550034832, 6424284.008221628, 6424339.0625, 6424396.875, 6424498.012971327, 6424764.0625, 6425110.9375, 6425394.614313745, 6425462.911651098, 6425471.796002999, 6425515.063576277, 6425629.843431995, 6425678.500166196, 6425972.991141735, 6426042.037134548, 6426048.554191356, 6426439.499280778, 6426441.991049832, 6426447.995841485, 6426522.071024064, 6426565.625, 6426653.610141079, 6426814.230876904, 6427039.977261335, 6427124.389635915, 6427125.0, 6427303.18180924, 6427535.9375, 6428015.343153227, 6428085.395430654, 6428798.954147079, 6429243.75, 6429299.895288797, 6429331.992251416, 6429830.505923132, 6430188.943516202, 6431445.3125, 6435915.625, 6436429.350499198, 6447654.430567546, 6454798.4375, 6457875.427460553, 6459447.675202711, 6459462.5, 6462525.0, 6464081.25, 6464712.5, 6466540.625, 6469204.6875, 6469598.921176951, 6469847.513825911, 6470238.370841199, 6471884.307751008, 6472197.920301846, 6473194.22742866, 6473439.0625, 6473874.3799309125, 6473932.21204523, 6474118.028392813, 6474440.625, 6475341.339814363, 6475370.663273757, 6475492.1875, 6476089.309428037, 6476092.8557556765, 6476144.269619334, 6476237.270543099, 6476320.097238858, 6476540.902111631, 6477428.049725225, 6477538.894560035, 6477839.223253912, 6477950.985230623, 6478075.91733857, 6478342.1875, 6478867.451844721, 6478869.404017076, 6478993.75, 6479046.875, 6479181.25, 6479399.648832505, 6479596.771202758, 6480426.5625, 6480451.886325018, 6480464.764785923, 6480823.714941433, 6480848.292672779, 6480848.367633025, 6480914.0625, 6480929.502050238, 6480935.413579709, 6481010.811323146, 6481426.4695461225, 6481583.93511952, 6482526.5625, 6482570.76744597, 6482623.0381, 6482904.607562839, 6483047.054411081, 6483102.071750862, 6483503.125, 6484136.238548257, 6485245.3125, 6486663.455909014, 6486809.297618854, 6487690.270709825, 6487929.972098058, 6488928.125, 6489545.649172787, 6489676.5625, 6489725.0, 6489951.5625, 6490026.71517285, 6490329.2430334035, 6490343.597815428, 6490517.56440803, 6491165.369358697, 6492693.435613757, 6492714.07080024, 6492732.8125, 6492904.50590441, 6493445.932003003, 6493753.619409298, 6495721.822717669, 6495735.371087541, 6496665.625, 6497192.1875, 6503430.868466386, 6504446.601349308, 6506468.069851152, 6506534.375, 6506614.702048714, 6506634.375, 6506685.7108031465, 6507195.3125, 6507473.900286169, 6507474.3889838, 6507818.974184023, 6508015.2386327, 6508890.2063619075, 6509573.729617333, 6509801.065845252, 6510195.134264886, 6510614.0625, 6511036.450963554, 6511151.587318719, 6511240.840298538, 6512234.886662796, 6512414.038055584, 6512882.026231166, 6512971.323554601, 6513362.5, 6513692.729286281, 6513818.355848496, 6514089.687595423, 6514377.852294877, 6514626.5625, 6514635.115195856, 6514906.7082858635, 6516063.176549499, 6516287.311516966, 6516354.930040834, 6516668.593758511, 6516701.5625, 6516713.558569622, 6516718.75, 6516943.75, 6517480.277058318, 6517720.3125, 6518879.6875, 6519377.501391888, 6523938.494233981, 6524121.001963955, 6524464.0625, 6524825.940971946, 6524932.0718907295, 6525421.386918757, 6525761.717678702, 6526471.7443239745, 6526576.604216262, 6526681.25, 6527243.645186318, 6527520.96992481, 6530103.200157643, 6533734.4397436995, 6533923.4375, 6535416.52350839, 6536709.375, 6542765.602429468, 6544581.478743286, 6545470.180375896, 6546356.91800144, 6546474.237931494, 6547293.923153595, 6547401.5625, 6558574.718882848, 6564231.25, 6565026.157606214, 6565037.216058431, 6566068.7385911215, 6566247.337130324, 6566955.818058434, 6567693.75, 6567728.190143674, 6567876.5625, 6567898.051905414, 6568025.0, 6568206.173883535, 6568410.903361634, 6568603.125, 6568682.8125, 6568728.466576336, 6568969.932376295, 6568979.6006582845, 6569045.110992434, 6569147.308380669, 6569319.9449149715, 6569370.3125, 6569524.43467174, 6569688.501665026, 6569764.0625, 6569800.0, 6569848.4375, 6569866.1671319185, 6569925.1391419545, 6570064.0625, 6570137.5, 6570194.91036178, 6570237.5, 6570288.297355056, 6570348.077916682, 6570495.207566814, 6570535.299843366, 6570598.496070021, 6570676.8206963185, 6570835.9375, 6570882.348372997, 6570940.942983171, 6571122.813112206, 6571187.5, 6571367.501759842, 6571464.0625, 6571870.3125, 6571883.451956874, 6571929.28587248, 6572014.0625, 6572025.0, 6572045.3125, 6572309.894330662, 6572367.1875, 6573237.5, 6573249.227245421, 6573418.675491105, 6573431.25, 6573612.5, 6573695.938580775, 6573871.875, 6574366.1362070525, 6575594.399652248, 6575806.650949953, 6575830.195157773, 6575987.420752027, 6576211.0651501985, 6576401.285092781, 6576706.25, 6576771.875, 6577250.479608769, 6577590.170663376, 6577744.425300236, 6577895.266146451, 6578205.872768504, 6578240.124898234, 6578659.375, 6578793.75, 6579126.5625, 6579768.318552042, 6580262.464606394, 6581214.275902409, 6583897.986516936, 6584258.732382245, 6584770.294431296, 6586100.866049465, 6586357.101247608, 6586978.125, 6587134.375, 6587143.121206586, 6588907.8125, 6589842.585689783, 6589881.70417012, 6589964.0625, 6591945.02829247, 6597757.8125, 6597992.1875, 6598871.875, 6599165.749054673, 6599381.25, 6599391.234953026, 6599393.75, 6599550.0, 6600156.25, 6601538.814769113, 6601656.25, 6601714.419294921, 6602009.685483008, 6604214.023835399, 6605759.375, 6608123.4375, 6611164.288778888, 6611221.139225392, 6611411.826273452, 6614167.000233125, 6614961.802717162, 6615300.771035117, 6615947.506766559, 6621895.973858712, 6622712.5, 6622816.059622182, 6623752.123776004, 6623948.609645235, 6623991.245827197, 6624660.9375, 6624849.804286072, 6624902.233655605, 6625536.134819621, 6625777.46834939, 6632448.4375, 6649923.4375, 6652211.2725394685, 6655008.771532918, 6662681.25, 6663862.5, 6664651.032318749, 6665672.363483364, 6669129.5134347305, 6670090.625, 6670260.9375, 6670639.326180026, 6670837.25739316, 6671610.325977033, 6671911.747905177, 6672102.545436662, 6672303.125, 6672335.346713612, 6673124.889354117, 6673506.25, 6674677.400540963, 6675680.154103448, 6675898.744703675, 6677691.964069235, 6677709.375, 6678012.5, 6678718.273188949, 6681901.5625, 6682499.4886296615, 6682833.879747504, 6683000.0, 6696510.986708679, 6698058.345519944, 6703941.6532715075, 6704807.66774605, 6705013.118172248, 6705506.400379709, 6705691.171027833, 6708038.443921743, 6708949.157120724, 6709269.790828273, 6710238.530375345, 6712128.125, 6712130.105219725, 6712245.3125, 6713337.257326159, 6714859.375, 6718397.6015118025, 6719196.875, 6722657.8125, 6722789.341933758, 6764333.371197482, 6768287.410318521, 6770414.0625, 6770621.171703428, 6771678.808431766, 6771994.13756665, 6772144.584663597, 6772435.9375, 6772890.625, 6773007.8125, 6773016.237173264, 6773144.841548923, 6773351.074244082, 6773364.020553308, 6773370.3125, 6773430.445895149, 6773441.464805114, 6773836.764311848, 6774352.429950446, 6774749.4991042605, 6774782.698168715, 6774917.1875, 6775479.378517172, 6775787.119649945, ...], [5.571580085969963, 13.314853899095198, 29.99830476936915, 19.993164153840773, 24.007424796571996, 7.528160583964245, 47.75473628052242, 28.102516792759925, 17.1044787738149, 11.841995830562741, 5.363031977057266, 32.46631095939207, 75.71197386579011, 17.237272829749095, 13.566572404683, 5.357033958102229, 40.75974003095411, 57.254206486939474, 30.08202310761751, 17.888938099403212, 48.58697975934666, 9.75054409113775, 33.73953143732928, 25.49909643483587, 45.713295564293205, 71.94210536772893, 16.2410774151137, 70.57338689120996, 16.82882530574051, 30.820632472550905, 36.88794984940111, 67.44122503142351, 13.414083012704042, 8.635405540786742, 19.395229125972403, 131.85728850835005, 20.170431365372743, 64.39725824352286, 10.922961658173769, 51.65819976000807, 81.43258184503736, 15.250741756049809, 36.75667225432329, 112.094427442491, 35.013483306213104, 13.604931285281616, 36.070454861582185, 168.8008784180373, 14.738426082233698, 10.225591955873297, 10.209847278012127, 71.51992400519391, 101.56270257426941, 70.87432638718712, 26.92241440791254, 10.593865514553245, 40.574755445249, 23.06183524440023, 23.398494675722837, 5.124048062288461, 25.64408614964192, 32.02711318276574, 135.87220605964873, 8.730364587043477, 11.930131228707989, 16.55014270275593, 19.260293723587097, 84.01087031969273, 10.062646446077498, 10.674291817621217, 11.930656796491117, 9.441180858775054, 14.595409409913144, 99.12714198316223, 105.61791942403192, 43.180887695021674, 171.3994304513542, 37.749326427449816, 73.33372200474183, 12.954048341816705, 140.34970230530394, 64.15377111682568, 65.31518730121267, 23.1598397081546, 58.32256497188004, 92.21489987952113, 45.24503521601529, 6.624791250931047, 8.530846109634473, 117.3496744824181, 60.805219207801535, 19.793511964722754, 73.2367794771965, 13.802700263732781, 7.9326854783035445, 35.085924019132236, 86.46994633032892, 123.80884655087966, 13.644745589653592, 65.31024615652737, 104.11242810599492, 16.682295862490346, 12.536099580142269, 53.341508491327076, 46.03404172263862, 54.53879274485512, 5.216702737329203, 153.82880180758409, 172.48027385899175, 24.043687322452346, 33.67821398649898, 33.72298075114962, 10.07763526157044, 102.46838890545398, 14.15375636508295, 43.88558558106491, 18.125296908910915, 122.05769876230538, 34.42047705849929, 32.07765996276674, 55.83530774881755, 29.24068994820448, 68.64401926528353, 9.624400126459694, 36.85059814403449, 78.10955195452388, 10.442930563944216, 14.51250175914861, 234.1189802473792, 23.6088107671689, 38.481924543526674, 77.88058822378525, 84.6950678061882, 37.76489892320134, 25.663258577736773, 29.88951494266187, 16.724926389291195, 10.72694253222711, 12.300412276042996, 77.6721681741939, 21.164411073809095, 55.28149983067757, 78.05372469555087, 35.29587506333345, 81.5910092647126, 19.598643957631225, 53.091348538928315, 12.046058086529891, 23.986924207178337, 11.394325189897078, 103.42633046880441, 104.2104831403606, 46.32024933032576, 20.01174250608953, 54.61759640112497, 15.06851608922756, 8.855519602037864, 21.31445329554362, 81.66186981456812, 7.482492811023404, 23.663262289234495, 83.45502484880929, 60.44141708580413, 68.5488423555451, 28.825509420539674, 13.337428039814732, 10.146332118085601, 36.624159110780454, 24.76905811436793, 7.64399998905237, 5.835863270517589, 65.52656603695581, 10.213598074256804, 90.59312403869745, 41.63219807594441, 91.56039968076405, 14.561303064413018, 47.71536662370077, 22.26876301659671, 93.64438252660909, 31.862996358658098, 36.523976346887906, 45.55718550509742, 8.449446249741849, 35.09233209655594, 130.536186363203, 27.91127930890805, 20.094748114424142, 30.03554130177522, 40.11687023835988, 23.267422702820923, 13.761002029791062, 7.262697183169464, 17.361344161003075, 9.581725515471751, 9.953975551585149, 68.17544989369482, 19.85114371362667, 13.571546170530894, 79.63207033630518, 7.189446915373718, 10.12437743717298, 22.867024416591665, 5.796525117107642, 17.899756313796, 76.22289720518337, 5.98350880575438, 17.544068162122088, 27.565177346371417, 80.83808556958796, 12.674623344666164, 26.154959439458082, 68.46181254056718, 5.934403744325193, 7.82534442318675, 8.813103621119705, 54.122911830206576, 15.808461128699468, 110.82130454194106, 26.280395361402, 29.28126300525186, 48.15642455363832, 81.92842714795125, 7.201997443526393, 29.69742367434648, 7.244995641602436, 60.151665867430005, 72.41327208034545, 66.4515721190474, 14.103038736359814, 42.39059625045119, 73.94957969758597, 96.55939344098698, 15.007829364041086, 43.80958567035263, 39.92841510489815, 6.742711743078844, 51.06992066484975, 33.34349495452412, 84.71771844990948, 12.677789490250866, 100.71112067917223, 58.803749301710994, 8.160408564857025, 12.105651953083271, 66.87135403494099, 14.440257803670654, 49.32272925109363, 45.116425054688534, 19.74183410945148, 15.913551234708109, 48.64102658077072, 8.446254886399228, 29.247318683715726, 38.19376490543548, 98.82677332248963, 40.225126095126726, 6.051766298227257, 61.790694620814705, 34.5947708527704, 46.28393254081461, 23.897419264542954, 12.421327943948304, 6.578255273478304, 52.82079755188969, 88.88132699359147, 77.69022521244474, 5.597281647640377, 58.00326875954774, 165.06571549102742, 50.11676331107674, 7.764268169471744, 6.195933648385809, 32.25428428871826, 35.834563735106954, 13.983671662752116, 39.96864088748394, 5.171760411569145, 62.809188530532396, 109.53520518746818, 5.947469022985012, 45.747389972099356, 115.84257794729248, 69.19035180193215, 99.31836210900953, 73.32035333464785, 36.102312835037964, 6.257154867517131, 8.889353867470462, 81.64842962592483, 8.227425092940562, 21.83463057705169, 13.562078190920316, 15.274317777665514, 8.189761444802684, 50.294171172995384, 10.668800451159814, 10.350547542387616, 34.160267752381145, 20.484489993441887, 31.921036253536638, 6.2230327155294995, 8.097533745555612, 63.13726621949173, 73.29097841323035, 63.02460232724635, 23.464844040856324, 182.77013984383353, 57.14659567728326, 24.043688067975726, 170.74483815480716, 9.686249295319323, 69.1379880955898, 41.485056263084715, 15.493926108538313, 29.627879743230043, 25.40115921633547, 22.0316581940038, 69.4181541963545, 23.746159432643868, 65.23802565773865, 33.21742277259285, 75.87035086316587, 105.83067560814516, 100.91713282023976, 31.87696943903389, 73.7226148572241, 9.137986118975526, 13.481549717957703, 66.36988651638048, 73.86723374393492, 15.556089414762063, 85.49691121558985, 19.842565354458973, 125.86844127641996, 15.320195793706763, 35.2407808078549, 17.606343800015015, 11.083251194328028, 36.42994993311158, 12.384421201988513, 23.7869645334747, 21.078583609008724, 15.903672187248606, 21.42698505301839, 14.828352197370924, 13.323074355356347, 12.610943972294729, 27.08790800568118, 47.18864761386201, 24.74848629678934, 25.294198571853173, 26.088158442652706, 47.60129352425925, 18.283006754805168, 58.1234512487141, 146.12290279847974, 6.671847328646007, 26.474314965230153, 68.48733755665891, 21.783321842296026, 133.54665044808561, 20.6199636306781, 81.40357648683198, 30.863435684545905, 24.09484320945458, 22.379227235448543, 23.43954168977345, 70.05625442933258, 16.07861558171086, 135.87205949637354, 68.9259986275357, 10.093690384016451, 43.64896646435525, 39.367738893041164, 22.754758936731292, 40.91007340669727, 72.3171064230603, 8.011730650576219, 64.6798652559947, 89.75144532177686, 12.950226278062996, 24.66758116626999, 16.82035480019322, 89.8159578995791, 27.46304039685617, 28.127403104907003, 20.70133133940961, 43.62787632003272, 26.60740035624889, 6.430321950909329, 59.44876064397755, 8.128314947872438, 38.20050882819332, 11.688216099910452, 16.062407940707924, 33.24906295002932, 79.92419630814418, 80.9579765113919, 23.049408209685545, 103.4274559707179, 48.88712074631297, 12.075133106084454, 11.143596623525957, 7.153527457647565, 76.20907493875443, 7.547714670040573, 52.695393330706004, 38.01052808376751, 44.84315956021289, 53.6650178459623, 58.647883340531735, 8.770100969225934, 124.89595934539474, 7.623286224837821, 16.160883854219975, 60.78951131209111, 17.15513025389003, 21.340798485332435, 18.31124910831001, 77.57996118913849, 95.237994186415, 53.98385670323248, 11.11977566636794, 38.548944953183145, 27.453642937550253, 11.972996149194213, 21.361629418493887, 19.600191135177084, 66.17593385710288, 12.13595705700221, 9.774942480554326, 14.768002982597238, 11.098371980821215, 72.5398976114204, 33.33409375066161, 12.562055710543364, 85.85525806670405, 5.795266181045285, 16.744241721008468, 31.912451632431047, 6.701762898769955, 56.98556676763659, 44.80573909285694, 70.89039336026518, 9.147373733771072, 78.93476113279586, 6.0819582699780925, 85.6565613311364, 44.62282148478634, 39.48113600428862, 89.8562949624775, 42.47415607294994, 25.063554331190986, 6.312512195964132, 16.573836958555432, 23.73597412728853, 133.21839131810273, 34.821040119309025, 42.57258728619861, 63.11762272717292, 18.947405303814676, 5.974251477383515, 39.76062447817865, 84.32475415951339, 90.0064593485738, 41.75496957549096, 56.50653072109616, 7.839920603065268, 79.66804171923594, 16.5092705001727, 12.574497063831952, 99.81658471238701, 31.466440127569573, 69.71101396282357, 52.283912801461696, 30.917367118348356, 20.57569375627456, 26.674413202985033, 65.20249454532465, 71.04697177340125, 76.36214772712776, 14.458022570607532, 11.019324143193826, 15.913060230595772, 47.76134239745939, 51.43640222125139, 25.71517489102258, 71.69788138582605, 60.05769230730526, 5.344625317562912, 36.59018185139657, 10.310841283538494, 10.595473674406001, 6.054315443828371, 91.69396439706162, 142.97643730650537, 28.27005690298293, 15.531930101921985, 42.585866086134025, 10.203500130117696, 34.71075347921743, 16.89692758538297, 18.62907812130471, 90.36299794007252, 49.108086721272805, 23.424857610977664, 20.241673842891863, 10.053185431441117, 75.67569903828725, 124.65391996942498, 8.273710791894514, 15.236123656093834, 143.01357352446263, 10.391956459297463, 47.07057553926822, 13.080705861650767, 80.29676047986844, 23.267856725830722, 24.70985081441556, 9.865265295454542, 7.740289226753224, 81.53344047902583, 29.64957771040369, 54.137753064690486, 12.896878529208442, 40.59415511579158, 138.88061853112185, 18.41138695124187, 51.69421562241786, 14.025228100670875, 18.14465012941579, 6.284773204809568, 23.931932592473252, 9.405870299441942, 16.082394048947073, 46.30176767329614, 19.046426343247855, 39.46051627051518, 35.69412197239194, 23.604252639398116, 48.990255929076156, 33.5848527796605, 61.64543964863893, 18.107227494165613, 40.46522213204624, 25.334147255364748, 8.50325350889592, 182.27991378668037, 27.705926267061773, 20.984207265064313, 31.601347767638035, 45.353669371500125, 32.222651326322506, 27.399358299367048, 19.848414109585025, 16.795923766414404, 35.10994532338245, 95.16760622720884, 77.03853474503026, 61.10144875585084, 103.52424120929675, 47.41798003784576, 5.285517690555006, 38.23630053628598, 21.86035587418792, 84.33477444472305, 19.300668004552456, 13.472908389797315, 12.104427509217066, 36.324179510576776, 8.390785255137766, 37.209877698209866, 43.35788843753071, 16.08638877035312, 48.93964036179447, 160.77903040366834, 10.680455696888894, 56.807650788191175, 90.24801163099642, 22.145299784346985, 17.261829087969815, 12.846766569368821, 5.360350223637204, 17.403247990900585, 86.06956946959123, 86.95653096080605, 32.13565584368131, 138.67823639077773, 57.64178129396832, 77.53684111945344, 29.37677561812675, 18.501556844595207, 6.042693207282458, 10.184247542379822, 52.5623224795938, 7.0860898843976665, 51.8474183691749, 133.4261867123456, 25.30948232446698, 38.97925202900044, 10.599036939110198, 63.41177841255313, 87.49132478056022, 141.27364389588504, 54.69964032213408, 35.92034209981543, 26.03470963214746, 134.02434917446982, 19.258341863525764, 24.24585829468934, 15.571135057374095, 6.315790799914169, 33.4363435892844, 14.397771444517321, 11.315136740634044, 11.886725658774765, 61.27152240538115, 130.53901673294973, 21.423788388918833, 49.7119176755581, 15.484031981482982, 5.296316791298493, 20.135911537375453, 49.91927178528276, 100.59178280428797, 5.069930809654408, 103.10820052799455, 6.232233898193228, 21.08345622221784, 9.810125487055679, 44.50703558587802, 10.967888076431466, 6.168844795744928, 27.80681403526293, 14.50659720112957, 49.15949112252465, 48.153619233782265, 12.631369640389444, 43.56026053497301, 72.73619394060847, 21.582339144843232, 91.83092642903638, 64.99519769621179, 36.838924683960684, 89.4112144583128, 108.58979389751232, 62.7871624335643, 193.1040945343219, 22.459661440877657, 5.997038478565994, 27.425405934018112, 106.93802403303727, 21.323238041943128, 6.3294632139831455, 42.176888417930776, 47.3696867628087, 26.849745434558955, 118.87403108808792, 68.12635305470985, 18.60799463048804, 65.78490737578987, 49.507224183994836, 7.695057518951766, 9.968523499196623, 170.06291251585566, 24.695690514975592, 14.179953197790978, 9.577249185310853, 66.88461721110095, 6.730435495915615, 41.808089300539635, 20.755438077176255, 20.15774435507111, 51.46600793506929, 9.565392143993353, 13.775473191038834, 51.881915066816276, 44.676914008602964, 187.24143697331485, 13.753023611109514, 8.232439873767927, 54.23212281918017, 16.338348719654007, 8.696496706566329, 6.820189140275607, 14.416807442631809, 14.681732368920063, 38.16705794015157, 70.76021215389221, 6.663231294583811, 79.74428053376408, 26.812567211874004, 15.49209108380128, 54.000174671069644, 7.24640879433623, 5.034876932599977, 72.8665175090617, 81.32602138382684, 17.317384687241756, 36.65974135954322, 11.633295865892611, 59.79767676136683, 7.397650756327247, 27.08237843994052, 5.788222793337041, 115.1140555158878, 69.32360240187711, 75.41361547903641, 80.21510379968939, 55.32375310110278, 122.13128822436717, 6.286682124646657, 39.93545246777934, 6.072415059205123, 17.327663185800347, 24.33439692824109, 10.669458742330836, 24.247694719213214, 67.362339522335, 7.538852126500605, 27.142315716264388, 5.557566763988992, 5.530548483775074, 13.147765105913539, 86.38148970904254, 125.74434972864506, 42.84822062757667, 11.79972381230052, 44.98309325182605, 65.22570051893693, 5.144409911986069, 94.08975498030473, 10.790936259989204, 54.46745626527093, 188.72321823134388, 7.9878933060827615, 15.870875506739566, 6.6887472229802665, 6.682710911971275, 16.18553165494681, 21.746574412205277, 31.73471005106285, 31.031430329249424, 5.418472867843364, 11.166722924016286, 26.086372869795504, 17.331172986316933, 11.089712367178707, 5.873737500693305, 13.187323425264358, 92.59082163273655, 32.12961902829179, 55.83226218591811, 18.0144548890541, 9.110990610474191, 34.67081501469185, 18.78537084732544, 26.25571168509331, 96.80730532035344, 30.275232394091603, 15.954241630625164, 109.72821598327123, 36.6335356566452, 64.06605231633216, 58.632107080853224, 33.37705045715576, 12.19389594736682, 75.98215501776295, 111.21002264081561, 10.275309374606662, 38.033836881486934, 35.61445464346477, 58.3560139948631, 10.277796750590948, 47.30383975367529, 66.21410387986845, 12.614072163664359, 69.4658338260908, 11.193544122192968, 61.99415934784753, 74.82642490775238, 120.4043505994224, 11.247250903221152, 112.96905231002677, 120.91430121206719, 41.31197473819441, 80.47834858150087, 88.2610949719122, 9.53260956844665, 40.83355753957747, 62.535133114151385, 5.5732313933061715, 54.58585983294914, 52.3442330960852, 23.99497825549984, 39.03919683551813, 22.49736970852911, 6.059061264561906, 85.50650321135194, 51.59396047911173, 84.82923339257852, 60.97995319979772, 15.195759330457395, 46.12553702205069, 148.98522140640432, 112.44642062095984, 14.659114473989929, 127.90300906578668, 42.106312192639315, 28.534237354221993, 16.42563585922118, 22.7785247982335, 70.11217923243736, 5.694052432537864, 66.58233219946999, 46.0003575899795, 40.68164839887108, 69.11216241420486, 6.981436822259093, 42.596949330614514, 43.75987701117152, 75.98387695535837, 78.53029342884498, 25.774432869678648, 80.57097232392469, 62.14244381088996, 22.528222500550818, 38.64825079113299, 160.16540753039772, 7.030030902230836, 26.609331614896316, 20.221665631974027, 121.77407920167559, 16.32324487526719, 62.409990836467756, 10.472262101728184, 6.828694467285141, 13.678674980684228, 34.458305479193974, 28.296698522616232, 36.04700584113141, 91.96253269284199, 18.106122662887117, 13.603789015590014, 29.999774828797396, 72.132804280283, 28.9019462210569, 12.049651320766223, 46.77870329388041, 29.332202098017135, 5.316121616915943, 14.664923069566164, 125.92904968482378, 83.47081207459759, 50.50923809054481, 50.14313940840741, 86.83302839686112, 7.303380931119605, 19.05565590644587, 53.889650713721274, 101.11278809159518, 47.08411496891837, 24.043687742619134, 49.84041312141523, 53.96883661871482, 40.57823388590202, 143.1023642472025, 74.88770691881105, 54.548946955786505, 57.73451173119255, 99.92460791867408, 38.76488704958237, 31.229659076353542, 30.806001503116626, 22.205331996284578, 27.843207400662294, 75.57007211310865, 75.74940570741092, 57.42969379937862, 33.977993624369546, 22.09726196790136, 82.79070147638765, 33.80776419217525, 89.75603788561004, 34.97851459454658, 171.66377634588207, 13.981739540037147, 48.586264406725334, 71.37206523833902, 52.31152086226845, 71.26728546501863, 58.17836733338686, 49.09139635946376, 27.47200695978212, 39.997261650409826, 12.236802206677563, 29.01477959442717, 70.70812486572474, 46.33040174137532, 20.35621965549847, 71.70977181057445, 5.255242199840155, 79.44464634742786, 39.557258943814716, 80.86654548944729, 58.9259057584482, 11.500827151016939, 68.60845732139259, 113.75194576332746, 87.95576081868674, 6.383072565858601, 16.285462077395213, 18.05688385157825, 26.207542885851183, 99.85018616186804, 20.646874205001087, 58.69096752627861, 62.70906481369707, 12.25987130327122, 28.617868536636724, 85.7810417300575, 180.86188523423925, 15.751007001389544, 101.56970180165368, 132.93669781835044, 75.15407395020097, 21.10949657179134, 28.082826707529136, 96.94832867042489, 56.227155342238206, 21.207432577038244, 43.79752530898938, 59.70378539606212, 79.09223757582183, 154.73478087831666, 22.987300257509144, 10.768551040237826, 13.030647421211087, 6.176633598966462, 25.696475913920743, 89.61238091453886, 33.33326182021478, 62.92590481552418, 69.76661923090286, 37.28735481698153, 40.181679168796926, 85.66261092507605, 24.780695056804078, 29.22263567609248, 50.049432188078974, 13.390006969175959, 39.85691939175182, 48.6681695100065, 31.405370603567945, 81.70525897257932, 20.40878288189984, 26.758376671105367, 11.736188676943168, 31.44997632153414, 164.9140327870062, 7.161551064045267, 146.36701793530327, 200.72112167541195, 83.75817096543837, 13.267081585168658, 21.178515611111433, 30.584811286927216, 16.81491668736646, 97.68664612940796, 5.389277174317963, 33.248524517819696, 18.68919699356963, 28.954690455648027, 86.92036591772036, 33.48237279269978, 31.418999029834616, 8.239714880154118, 85.55388690484881, 19.679484958219184, 21.454100185613036, 11.792827693728617, 7.359622393437701, 146.28042558396436, 28.564180074005233, 31.409661733856204, 54.49089303194626, 31.583097042279945, 100.36422335023835, 11.062768359117502, 29.514079264974797, 49.254122401160814, 19.84066405565632, 7.357192256936264, 6.183203977566722, 79.92285862274272, 102.97200524269553, 67.50070944202635, 53.540556178470176, 65.84840094420329, ...])
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)