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 = 47209
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);
([7552154.12216747, 7942587.350821121, 8240693.199707967, 8279452.734551979, 8280987.5, 8283879.058632798, 8357689.003306504, 8379107.736780202, 8425959.427255299, 8526452.885672504, 8526537.094924808, 8526906.034109186, 8529110.954343302, 8535645.3125, 8537181.55830105, 8543126.5625, 8545010.9375, 8578832.470611552, 8578859.375, 8594724.749855515, 8656299.34509313, 8659187.5, 8660635.604999896, 8670923.084445396, 8689209.375, 8690407.8125, 8690418.08649627, 8696021.384489594, 8696186.96415056, 8704851.5625, 8708631.25, 8711750.362513699, 8713819.74168353, 8720965.876179991, 8727150.572182624, 8751551.5625, 8753479.62237411, 8835017.896498857, 8836301.486663148, 8841532.8125, 8855834.286667949, 8857238.655076655, 8865325.276409911, 8870718.280951435, 8874951.181186363, 8931121.875, 8956262.88139537, 8959007.570893327, 8959196.875, 8961506.169396512, 8963508.822061056, 8964391.89126427, 8964409.375, 8964685.9375, 8977425.0, 8988331.25, 9056673.522669118, 9125060.326050613, 9141789.0625, 9144503.125, 9144611.184758466, 9184655.697078498, 9190983.965820042, 9198554.6875, 9224945.253415791, 9241121.677360075, 9262052.401720995, 9265207.990694001, 9313647.182725238, 9326071.606010363, 9342284.825019803, 9436574.793291679, 9449840.625, 9467187.5, 9467514.0625, 9467701.871690394, 9468121.754545713, 9471676.5625, 9500958.121271735, 9501014.16219146, 9502698.178768631, 9503740.931325201, 9504439.862152604, 9505139.822978856, 9505730.463533442, 9522758.144364033, 9527562.386873934, 9565417.1875, 9601905.810656901, 9603253.125, 9606744.224855654, 9607577.534284282, 9608830.885306358, 9614884.375, 9712853.059713965, 9718392.688246576, 9725101.799830923, 9725333.565560836, 9738044.05637575, 9739382.63946059, 9744980.865076104, 9749995.731942862, 9751174.93097443, 9768703.786763672, 9769446.522215584, 9769608.756268369, 9770435.242097102, 9770817.1875, 9771216.252413077, 9773268.73096351, 9774567.277419517, 9778189.0625, 9788450.0, 9799356.07192886, 9800598.4375, 9800906.25, 9800935.321551383, 9801654.087453835, 9801683.549287736, 9802300.410329506, 9803284.463767096, 9804146.875, 9804928.125, 9805256.25, 9805417.776224805, 9806093.75, 9806492.130554354, 9806501.69884163, 9806735.361777613, 9808173.261183284, 9808539.259029388, 9809995.416488906, 9810268.411632726, 9822810.950839134, 9841931.267951675, 9843096.020816498, 9843438.837038321, 9843489.610087857, 9845033.116012901, 9845202.819997424, 9845973.4375, 9846143.430935001, 9846204.6875, 9847191.352108287, 9848649.176526489, 9849118.300164284, 9850222.44687194, 9850577.542189596, 9851091.438824896, 9851574.926836854, 9851577.240849711, 9851995.98433789, 9857076.908592723, 9857869.229253402, 9858059.981785914, 9858581.981533578, 9858842.089156054, 9860068.171103321, 9860530.689021936, 9861079.582170652, 9865682.929811062, 9866985.9375, 9869259.17785427, 9870536.417500129, 9871172.34390852, 9871565.708742812, 9872347.218480572, 9875309.375, 9875343.727330334, 9881912.766162487, 9886226.23844747, 9886518.878684178, 9886593.75, 9886602.676516684, 9886985.808174353, 9887057.613193985, 9888209.375, 9892159.8577874, 9919920.3125, 9931108.096436672, 9953642.332583994, 9957760.69867504, 9959671.875, 9964625.13118911, 9965384.492765402, 9967514.0625, 9980319.916787313, 9980910.926215122, 9997191.944760077, 9997246.755578374, 9998316.2348059, 10005489.0625, 10009308.397336783, 10010271.875, 10011737.321352532, 10012063.407132512, 10014293.75, 10017929.059557434, 10018305.809199333, 10018900.63400911, 10019723.850414066, 10026296.959745323, 10033625.104123225, 10078827.752168797, 10079681.25, 10080109.375, 10081075.378211033, 10081096.770771058, 10082259.816402344, 10082342.124917613, 10082352.570734398, 10083371.511146162, 10084166.40453008, 10086486.251154708, 10086540.82535283, 10097743.75, 10098986.936162282, 10105867.637935827, 10112032.015550015, 10116981.25, 10116987.418576058, 10116996.3386669, 10117035.9375, 10117672.790874686, 10119466.491054162, 10119476.202733284, 10120538.941104604, 10120642.456086341, 10120893.75, 10121400.665822819, 10121483.34183086, 10121743.75, 10121915.646626297, 10123391.924044456, 10124389.030536763, 10124979.763654487, 10126109.449695513, 10127719.104959408, 10137296.391439585, 10138190.152715094, 10151776.596202344, 10152372.10402118, 10152386.546532307, 10153899.862704517, 10159332.8125, 10159595.43207373, 10161144.281433942, 10162967.103201183, 10164527.82396127, 10165771.875, 10166112.096624773, 10166812.5, 10169892.147197906, 10171225.78281642, 10171484.156226985, 10171729.477570519, 10171986.580132686, 10172808.35525086, 10174925.674725836, 10177401.220521474, 10177444.886361433, 10177671.153334457, 10178562.72688761, 10178771.875, 10178812.5, 10178875.0, 10179901.092017833, 10180918.303649709, 10183664.832189035, 10183875.586561536, 10184264.0625, 10185348.30282063, 10185725.817404399, 10186039.136917084, 10188262.755813112, 10189088.592362283, 10189320.3125, 10189462.5, 10192085.765200697, 10192283.913506627, 10193105.581757156, 10193212.364474835, 10194541.037883166, 10194715.262372967, 10195715.243857425, 10196021.592944633, 10197645.634398224, 10221527.271770207, 10222163.379687194, 10222200.769805705, 10251051.5625, 10253227.345833987, 10254312.919022964, 10255443.278488176, 10255449.56228314, 10256935.700121215, 10259122.153566658, 10264300.036853898, 10265438.466363253, 10266016.500859648, 10267785.116564501, 10268628.60130139, 10276040.78322051, 10279341.897207793, 10279494.84447707, 10281256.583356945, 10284027.862629551, 10284147.362920042, 10284310.880386902, 10285673.313585658, 10285764.756716166, 10286149.44330474, 10286503.068384493, 10290952.300938027, 10291727.80118091, 10292339.864996145, 10292623.363866597, 10292915.868790725, 10293164.720558196, 10293206.770862754, 10294364.0625, 10294994.556031616, 10298713.965532206, 10299080.108764194, 10306707.69818281, 10306916.760068214, 10307485.356303165, 10309752.975181166, 10310271.04528839, 10311668.75, 10312289.0625, 10312837.215852575, 10313350.0, 10313409.375, 10313469.92966044, 10313493.75, 10313634.261544684, 10314170.038408982, 10314609.375, 10314809.375, 10314834.640860101, 10314873.855562497, 10314895.210829992, 10315116.380739693, 10315231.421703048, 10315299.162878329, 10315442.1875, 10315551.06006276, 10315735.9375, 10315742.395942003, 10316352.370378947, 10316526.791434119, 10316539.0625, 10316878.950961325, 10317195.3125, 10317200.022012725, 10317201.104826437, 10317289.930835152, 10317330.132193716, 10317455.197023256, 10317656.00926209, 10317682.468763638, 10318123.537053505, 10318329.155758996, 10318580.588054856, 10318687.48091512, 10318857.913348481, 10319103.121610828, 10319601.5625, 10319761.55437235, 10320086.127006385, 10320233.912884738, 10320380.925634092, 10320526.5625, 10320592.1875, 10320608.17636046, 10320645.3125, 10320657.030187987, 10321084.618166141, 10321345.3125, 10321385.9375, 10321853.443708802, 10321978.125, 10322306.223485442, 10323191.58898681, 10323397.26784297, 10323532.8125, 10323598.4375, 10323643.227697019, 10323650.067316473, 10323740.06227271, 10324134.194651313, 10324309.344745291, 10324410.882695213, 10324580.220863136, 10324581.533624196, 10324598.033393601, 10324776.172072189, 10324899.250062605, 10325050.655429406, 10325462.43249897, 10325494.858704222, 10325782.8125, 10325788.174801137, 10325903.38576658, 10326539.0625, 10326951.5625, 10327097.533533342, 10327113.194672806, 10327541.778489992, 10327726.539138965, 10328354.687141502, 10329084.375, 10329725.0, 10332433.752680363, 10332586.303926136, 10332765.625, 10333038.93648216, 10334039.0625, 10334465.425572675, 10334757.498887314, 10335276.409999777, 10335393.75, 10335630.90600434, 10335700.0, 10335720.17156597, 10335739.0625, 10335942.454399569, 10336774.000857461, 10337851.243003966, 10338094.30255442, 10338326.688363254, 10338755.785101797, 10339295.3125, 10339462.876298577, 10339910.638291296, 10340713.133697476, 10340746.875, 10343614.0625, 10343714.0625, 10345255.977153527, 10347439.0625, 10348730.814422108, 10349033.629630709, 10349049.852682436, 10349714.0625, 10350381.353422547, 10350516.948845388, 10350730.465678945, 10350833.312603695, 10350905.38548868, 10351174.825346887, 10352401.438377585, 10352644.19268067, 10352690.438925931, 10356520.202586861, 10356547.253918368, 10356794.713699844, 10356947.933352847, 10357231.873197822, 10357423.4375, 10357616.988528293, 10357853.045100216, 10358100.0, 10358757.276717717, 10358789.0625, 10358842.21307109, 10358879.775983158, 10359118.75, 10359145.3125, 10359155.73730832, 10359164.0625, 10359362.671627447, 10359987.058224652, 10360048.152017722, 10360189.497876402, 10360974.541072909, 10360976.667663774, 10361339.0625, 10361995.708611539, 10362234.375, 10362445.241045501, 10362890.677098872, 10362959.064576365, 10363771.875, 10363944.081172954, 10364084.375, 10364270.168296732, 10365982.822641917, 10366163.752842193, 10366760.664656887, 10367811.122568747, 10367928.38567067, 10369389.0625, 10369628.125, 10369822.929555701, 10369845.436806554, 10370176.6178969, 10370550.941524526, 10370705.492246587, 10370856.580779139, 10371194.69107384, 10371644.27530692, 10372576.285064977, 10374465.24328802, 10374843.75, 10377025.048596887, 10377128.100063955, 10377862.63867493, 10377956.25, 10378025.0, 10378365.601958664, 10378881.99497354, 10379337.5, 10379559.375, 10379735.10616924, 10379774.647239331, 10379814.0625, 10379939.0625, 10380037.5, 10380151.168157475, 10380183.194836758, 10380356.634657824, 10380506.449672611, 10380619.43627412, 10380693.633641057, 10380867.1875, 10381015.794188898, 10381027.619243633, 10381042.410100121, 10381051.5625, 10381121.419944905, 10381218.75, 10381582.61803015, 10381749.486539163, 10381762.287191011, 10381770.3125, 10381772.515865974, 10381828.783275638, 10382072.226835858, 10382159.307469135, 10382188.15530221, 10382298.55983821, 10382444.202288894, 10382598.4375, 10382885.699044151, 10383435.9375, 10383468.75, 10383715.818733238, 10383823.785402978, 10384321.311656123, 10384897.355567385, 10384989.039689837, 10385308.087185645, 10385329.6875, 10386751.640930017, 10388489.895621896, 10392988.466958065, 10393170.45757178, 10393609.459862413, 10394135.9375, 10394663.252743322, 10396007.8125, 10397323.84327011, 10398182.770350186, 10398970.3125, 10404109.375, 10405169.753137741, 10406302.61799065, 10406318.093546519, 10412239.613132842, 10414373.272105176, 10415228.125, 10417533.827578785, 10418038.726772398, 10418586.279838782, 10419375.0, 10419898.4375, 10419993.75, 10420155.57764248, 10420243.712221218, 10420703.125, 10421080.597880203, 10421360.9375, 10421376.465523032, 10421812.937611744, 10421917.1875, 10423395.3125, 10424615.491356475, 10424754.374238757, 10425097.083645372, 10426021.875, 10427564.993021183, 10429665.460962987, 10430421.875, 10430554.6875, 10430667.129747959, 10430820.800397336, 10430844.967409685, 10430886.987305626, 10430894.870493785, 10431256.507374221, 10431415.625, 10431432.571044108, 10431453.737836396, 10431528.696525833, 10431695.890081223, 10431746.880204003, 10431891.7152242, 10432052.72801654, 10432077.693378225, 10432245.3125, 10432382.8125, 10432540.203889884, 10432673.4375, 10432808.954150561, 10433001.5625, 10433003.039795266, 10433590.625, 10433754.6875, 10434148.92836896, 10434572.069402546, 10434608.898553036, 10434696.904616635, 10434712.5, 10434907.711782511, 10435167.279685142, 10436466.401694885, 10436732.932311898, 10436743.568919051, 10437502.034525398, 10437672.349068157, 10438739.630282883, 10439298.40954009, 10440335.575267466, 10440547.223961856, 10440807.64039699, 10440885.9375, 10441009.375, 10442397.407859232, 10444759.235863369, 10444780.616051696, 10446131.019047111, 10446957.8125, 10447740.589463754, 10448097.96509539, 10450221.875, 10451812.5, 10451827.741147773, 10452790.486664215, 10452806.411163723, 10453223.4375, 10453469.68543398, 10454214.331183154, 10454234.785304725, 10457115.98333949, 10461510.115299447, 10463667.763657464, 10463720.877641277, 10465059.092720391, 10469962.820513757, 10476218.203521196, 10477113.890775405, 10478468.75, 10478656.25, 10478861.435039258, 10479515.380052067, 10479699.795465957, 10479959.375, 10480238.576498916, 10480296.875, 10480345.633992616, 10480443.75, 10480568.75, 10480723.835316464, 10480780.003539516, 10480972.416155532, 10481231.25, 10481293.75, 10481421.864007078, 10481505.651624637, 10481621.748721976, 10481673.4375, 10481757.752368178, 10481900.58223293, 10481934.844089968, 10482260.834464783, 10482399.67467596, 10482407.374536103, 10482421.868193304, 10483048.82420681, 10483437.139250832, 10483468.75, 10483521.375975003, 10483804.184603037, 10483862.907714475, 10484373.49474508, 10484498.059741063, 10484943.472592765, 10484974.964162262, 10485000.031643465, 10485028.25331237, 10485385.408799974, 10486102.37152978, 10486457.587477496, 10486758.527340723, 10487068.44300244, 10487999.546303645, 10488086.519160744, 10488808.964302229, 10489277.354427896, 10489282.8125, 10489537.127488209, 10489621.811459458, 10489757.8125, 10489760.51607861, 10489907.208620427, 10489909.375, 10489939.0625, 10489999.099348875, 10490152.008432182, 10490300.0, 10490304.6875, 10490453.710912222, 10490482.8125, 10490564.0625, 10490675.0, 10490904.6875, 10490943.578681735, 10490962.719020473, 10491024.047467533, 10491025.336649876, 10491058.545510598, 10491156.25, 10491352.745924039, 10491426.778753193, 10491516.958010029, 10491571.201862874, 10491667.1875, 10491735.9375, 10491788.201770026, 10491825.0, 10491881.087942116, 10491913.790199634, 10491915.625, 10491920.142805554, 10491948.4375, 10492059.375, 10492071.296255535, 10492077.019595318, 10492077.188741451, 10492086.70638374, 10492094.338464098, 10492200.91244383, 10492257.8125, 10492265.635162406, 10492298.625228046, 10492408.519664433, 10492489.094922846, 10492559.125400249, 10492576.5625, 10492646.594985154, 10492798.4375, 10493171.21261335, 10493208.226615114, 10493440.418459646, 10493493.75, 10493534.348463729, 10493657.8125, 10493673.20429124, 10493682.8125, 10493698.572375283, 10493737.38688729, 10493786.108108213, 10493827.709532041, 10493885.360357983, 10494013.680346113, 10494076.5625, 10494097.476187672, 10494104.725374233, 10494216.99482456, 10494366.679626046, 10494492.137028558, 10494534.690746004, 10494541.30591094, 10494574.284256732, 10494641.655118644, 10494663.908348186, 10494684.742593968, 10494732.06748614, 10494743.042346653, 10494775.764429273, 10494842.1875, 10494872.438769283, 10494991.677319886, 10495051.078020422, 10495147.735876137, 10495287.478268169, 10495305.597433336, 10495362.436624901, 10495397.016143415, 10495408.59576958, 10495501.861462282, 10495513.041400451, 10495642.635501847, 10495653.125, 10495734.375, 10495758.773902671, 10495797.23006106, 10495803.125, 10495817.1875, 10495907.163928866, 10495981.406895781, 10495982.565776573, 10496002.688194953, 10496028.125, 10496065.030083502, 10496228.104745978, 10496236.454427617, 10496244.830114355, 10496253.720017666, 10496295.264445169, 10496335.0376444, 10496455.865070919, 10496517.1875, 10496576.5625, 10496597.21340758, 10496604.464948783, 10496746.875, 10496754.6875, 10496758.339079732, 10496767.081937289, 10496842.67375887, 10496844.221154064, 10496910.871132279, 10496917.091883447, 10496960.039160026, 10497136.491467537, 10497250.630087396, 10497320.965523269, 10497352.998102048, 10497368.864253694, 10497394.406191686, 10497494.76961671, 10497568.75, 10497584.214672387, 10497674.275759079, 10497714.318305323, 10497790.322175588, 10498009.112653734, 10498075.468690893, 10498083.251613393, 10498086.815698478, 10498143.996834708, 10498267.1875, 10498279.6875, 10498350.048262753, 10498674.294467283, 10498810.279388428, 10498898.03466522, 10498901.5625, 10498985.9375, 10499046.832953773, 10499186.802378139, 10499360.362213518, 10499503.125, 10499517.175968776, 10499520.394022562, 10499620.3125, 10499673.205354191, 10499682.804256335, 10499812.5, 10499812.850964986, 10499868.75, 10499957.8125, 10500052.622171063, 10500068.75, 10500409.959576651, 10500452.93376293, 10500719.960266039, 10500950.032711204, 10501053.571317848, 10501161.863633085, 10501162.998493362, 10501175.0, 10501279.63136881, 10501306.235404285, 10501337.324244976, 10501554.25387999, 10501610.551080972, 10501623.964244137, 10501667.408303417, 10501860.9375, 10501933.674716821, 10502074.808462894, 10502320.3125, 10502490.306838498, 10502513.582876403, 10502526.808399176, 10502712.514830759, 10503146.640238067, 10503239.0625, 10503607.8125, 10503664.114050278, 10503842.1875, 10504258.571021704, 10504414.90613006, 10505353.125, 10505413.413376769, 10505721.253249967, 10507234.375, 10507486.754903624, 10507851.867335455, 10507871.732857674, 10509181.25, 10509375.524713947, 10509635.9375, 10509700.576712443, 10509825.0, 10511687.390148472, 10512637.199731626, 10513215.577429412, 10513830.336342476, 10514987.30939806, 10515182.535093177, 10515319.179585325, 10515977.232817547, 10516290.037520612, 10516290.625, 10516485.639066145, 10518167.1875, 10518196.488757959, 10518335.406636178, 10518779.6875, 10518800.441888398, 10519278.837992044, 10520336.686817227, 10520665.193109842, 10521953.125, 10522285.541283967, 10522509.375, 10522527.663347116, 10523171.875, 10524837.949604787, 10525007.947122237, 10525075.0, 10525128.697106296, 10525347.588869488, 10525384.016436357, 10526004.478445541, 10526356.047436735, 10526416.768568251, 10526572.74167879, 10526632.024790253, 10526648.648964338, 10527493.846577607, 10527561.349299792, 10527610.459319403, 10527632.8125, 10527780.690300638, 10527871.242846925, 10527987.725858374, 10528032.251140643, 10528111.306212453, 10528190.625, 10528573.4375, 10528675.89481969, 10529170.29050481, 10529273.65072472, 10529548.4375, 10529717.1875, 10529782.8125, 10529822.899271443, 10529935.9375, 10530160.933117595, 10530453.046844622, 10530571.368239723, 10530669.775946727, 10530824.657988155, 10531335.645289626, 10531544.979047315, 10531861.239549575, 10532115.556995679, 10532216.875355255, 10532482.687734105, 10532801.5625, 10532848.93436245, 10533004.6875, 10533254.729128115, 10533704.672247333, 10533742.409583671, 10533743.93491652, 10533744.03876276, 10534096.495884705, 10534814.524198383, 10534909.375, 10535403.041772034, 10535696.875, 10535823.914775392, 10536036.352310166, ...], [5.377292912067609, 42.85096832724632, 36.06997576388019, 113.05391044305097, 34.82726708587262, 18.21110281679456, 7.581967797642596, 27.111545642287663, 122.41562875061263, 24.55797294962212, 6.425413175519395, 23.271988312837095, 100.3416312867893, 150.20812350454273, 100.29377375852283, 44.78900505948462, 46.8510929437316, 29.340719302561396, 109.72202226552733, 48.60335685935459, 29.54822653152523, 72.84278007944845, 58.761465008311575, 5.5161875669892755, 45.93247327192898, 93.56500153215534, 8.827024061334157, 13.352111153081394, 26.487521074097266, 55.42260335191908, 68.69143637764881, 11.74591939756124, 20.814605367761494, 15.993894180506217, 92.68447978112415, 69.23152953963424, 104.21035053639858, 65.07704242442651, 11.011202428419157, 50.595520290822336, 26.891974064074244, 6.21706004111014, 73.07730118106238, 11.74782551223283, 13.572719058269584, 56.562344677051826, 113.54525657108759, 10.769953691494559, 73.95359022932784, 42.601868720843875, 18.495515746314066, 23.798944368731796, 53.14317878246346, 32.715120271578, 70.07118767922077, 44.58696607082981, 15.276384802729883, 71.85243630487534, 30.90278680654286, 64.4924440466157, 34.141969641635164, 8.014334638935006, 53.94696964578738, 55.533526198990685, 14.720990831062453, 14.238159431187633, 38.06477756070771, 11.418147142968932, 16.26026548655907, 56.23351375195564, 11.912390050663449, 63.72336513469136, 45.85682110531029, 88.53632906724955, 72.64224907223793, 9.607280429779877, 20.617660432800406, 66.45258739075223, 28.411894426047205, 15.335606916571003, 32.48978256956251, 9.60458412570289, 19.21865785411499, 35.74033234213629, 81.3153678890258, 13.990052280116057, 65.47326467055724, 49.18676746786604, 10.504048059561697, 103.71915903917329, 9.768016955531161, 113.65242028817335, 118.61689117978585, 81.70597356701337, 83.96536753740025, 25.224848879887734, 15.93045897444589, 61.43194097074759, 53.25410559087415, 14.320580512945176, 22.723361789245335, 16.824016481032604, 27.229833692573056, 58.54399082512924, 23.099124115136842, 20.385174381463557, 10.190714091362008, 34.48960616164163, 12.27390859637282, 80.07175886484718, 15.295686618730558, 61.262132940560726, 61.567328369599394, 25.444056191927704, 88.46198512640643, 30.954016064973356, 6.026305526812784, 13.060147663870842, 7.893389440849629, 26.303859282245, 119.70453039145546, 73.92693579866216, 42.15015878977109, 121.95416099649319, 140.78187874422665, 157.6920938135032, 14.728812454182123, 17.537677774832826, 67.27627523807683, 14.309521163628355, 86.60537893218225, 15.353255047118292, 68.88832290012401, 11.14862093553782, 74.47633668777091, 12.450496521772655, 14.146570547125476, 8.599057649240892, 28.719286693470774, 9.086167965555035, 97.69662427878002, 13.850493586652401, 42.541785700196876, 169.83648596269632, 18.777101996542818, 180.26218323984978, 22.82271491442402, 60.0383538693584, 31.04511734459758, 29.405134998177367, 18.360655290992888, 12.369911638888988, 38.9286051483806, 17.148311412425883, 23.82664833660291, 77.91259524064088, 79.47813032902523, 20.740584225982126, 13.162087397559, 63.22147018234251, 6.282134425656459, 73.38810988832773, 25.170976397152668, 22.25177160917459, 17.09102178016421, 22.09749456167993, 16.435074869583836, 57.528826132648966, 79.92173420739114, 24.673337659618504, 5.092131229161502, 15.455777992057948, 54.20380332307686, 22.022875327690993, 5.526836707722797, 6.456295630618108, 112.43648744747635, 49.36655132637889, 40.055260266133764, 16.146733941815537, 58.30701596409888, 223.05295737442248, 79.37242398311264, 15.466283964217771, 196.31880079429934, 49.43778548503248, 82.70641649957963, 28.30351919838564, 6.237009440877441, 26.3683849260598, 21.03912634692503, 64.73793283841864, 130.58178686426785, 99.03199763909711, 25.435357795589752, 58.66205423475062, 65.75099344332452, 32.95785609973276, 18.592419680997466, 18.071205831748127, 17.62399305352422, 11.26280421907666, 26.51651862319398, 22.862965325062135, 40.730443976549886, 48.873178382429536, 15.628440141479373, 10.968606898988389, 16.941156438457224, 14.708221873176356, 89.31576385984891, 12.735741821338546, 31.21548990446189, 55.798308980986405, 5.17005408351995, 53.76085773629574, 13.154545010572718, 16.98998481076872, 92.37867697133028, 51.706254575639356, 7.1002110185890945, 21.138156497430696, 220.20915018420908, 27.83975963142302, 51.33209308879119, 6.693746312881367, 5.200340123223475, 11.575186245823119, 72.27270913993502, 27.700448278204636, 71.29573553791495, 126.37680048796443, 9.349756619185616, 14.024197865009517, 11.07811106232042, 9.39663704765632, 106.10201935094084, 35.380525179491116, 21.658676528384206, 8.961622929359216, 15.071542026621543, 97.42768958623743, 29.481120213796785, 26.078225749833425, 61.82741481170949, 23.172305266132774, 73.90420297325358, 26.96172829222803, 84.92288999798703, 56.18714541644982, 38.73291226230759, 68.41004504593548, 76.61921693678674, 94.27373135783337, 86.45806727293021, 5.390508814200288, 32.72264742591546, 35.862789205386775, 5.264430225738512, 33.73071205947699, 46.1690849659789, 40.89591500543363, 16.811160897418997, 30.4619104345695, 94.94025562753541, 41.425386656754334, 110.42271399952892, 93.62531108151768, 6.171972501792686, 12.18763057697642, 71.58717946281935, 10.923523415059174, 5.370733702111973, 44.932076001670325, 73.77634188584993, 51.118495446500816, 64.1953039395555, 122.44801705023804, 10.868664424722262, 42.24326507124627, 19.96433561154726, 10.92227991675084, 16.78944580418423, 98.93933211419673, 9.028658614616486, 40.68323412207539, 11.671113699126812, 7.321274267423897, 26.502740794111485, 98.10385983405854, 55.93704444620765, 19.097170807104902, 6.132785504735845, 13.404751538934192, 22.41109213494545, 34.0653605074603, 11.59295309805634, 67.52568591902373, 10.308328995732671, 19.81352922503796, 18.900140425444953, 17.131910857789528, 7.163673544668949, 5.688528798257063, 36.17407911153184, 112.18466812399366, 95.98242016193049, 15.072899049148388, 5.934447157592845, 23.735203392084593, 117.54001005104304, 138.70126071589112, 194.80179593886092, 10.044995062300734, 6.7005358625023534, 17.865872496895584, 27.148281259372695, 11.531419664132311, 90.67756776767928, 17.384036417389126, 54.33464381557051, 72.43882914681751, 15.347806439883172, 5.637782487027674, 14.522981518403094, 53.9053548285692, 84.88833914940446, 25.87943696825184, 5.367674754747129, 36.589879827132805, 44.81601610898723, 22.113609620404507, 30.499341187613176, 38.03657711105214, 13.658798062610133, 67.05541619856224, 68.24597170993651, 13.990487571624245, 38.420378790248726, 63.70302247008497, 147.27659152655423, 5.4800009869923105, 26.66432811903424, 35.31359041981459, 7.666543165015285, 12.48874534994682, 38.230487485725185, 21.468821881634128, 89.72594649459629, 15.800331357172963, 16.17171520304916, 15.892332768223595, 60.663327523088704, 7.932041051210042, 41.95987445592592, 15.026080704876184, 10.480507206057045, 118.48476342291133, 136.40540157155664, 61.57425061721089, 71.22448703075571, 10.629814507668458, 110.54048445706977, 108.60084692609792, 250.92288533739804, 145.78111310922807, 366.2986381839745, 63.894260396703736, 111.75369098919836, 7.842704422661798, 72.51109043723002, 10.47482998693516, 23.44441185813076, 72.23236328208735, 100.37881540548335, 5.302460544908664, 28.93184415780703, 18.96890016014661, 114.15727571909652, 101.39152671900263, 73.1950550013646, 82.2403760951533, 91.85962012107574, 45.67089208453989, 7.993551794176087, 40.06303912687736, 45.64543804831202, 70.21682715703727, 21.273464283774306, 15.20444982659993, 93.61310620306375, 25.409723417171705, 11.0807437647725, 68.67270557669369, 9.827151753369268, 16.14525702548743, 6.217457715556713, 141.30979006439813, 25.056925595639925, 18.209527822513273, 62.30738145197161, 102.77660131889252, 90.60365501780765, 18.33704233601103, 50.059629812874526, 43.0491159665812, 90.81226092512819, 23.150844405982753, 16.144387315766718, 119.07867026237864, 33.4989674713835, 35.14437219195843, 29.33932458127784, 72.17449894508682, 13.003076961419021, 9.661726632261976, 44.78185590874502, 26.26040657106595, 32.10492024362468, 13.829734543121319, 13.86724876999353, 10.897421880616388, 47.38527342637134, 35.459499604577424, 46.45255938861859, 40.155545001142386, 43.80295472930596, 14.523952419792039, 31.67171213917444, 23.504860841930878, 14.994293552574833, 15.443970438571343, 21.850554826604203, 79.30908129603395, 11.771656449168974, 40.91638001939047, 32.47411064761398, 55.28324647407377, 30.368453455729327, 96.93952222046221, 130.80630620207307, 84.29769617086211, 22.160753642182684, 27.858659401329348, 19.25722149971928, 47.69829231421292, 103.36267135088418, 10.77409728600179, 32.13187821289581, 114.76325802664195, 18.701104229194673, 21.379871193389654, 120.23474445612139, 52.63014859782117, 40.31758841656037, 25.733656366406596, 11.776567966298936, 42.33015539435232, 13.314702288788792, 50.334093677512215, 31.839766875831113, 66.05770990000399, 37.11294402771302, 92.84724861033298, 21.143427841666483, 58.99127553337769, 13.827349898370489, 17.024578443048995, 55.04328276191819, 38.40830553308299, 13.291420392261632, 106.47465373511702, 14.050558717140031, 59.840413377567835, 5.449645296677018, 178.691688150336, 128.39961330492775, 31.648236866559717, 112.9334652268579, 155.58341619286603, 94.35572200171742, 27.186772390452052, 20.393446822617594, 39.90595272875743, 54.05389301944355, 7.211315914285633, 235.81239110858135, 6.464721227380967, 21.79317006898471, 20.39540693703238, 13.99443078811461, 6.5164990611212446, 82.14320203092723, 53.1688714935828, 64.57414012361161, 13.304341002259893, 17.62384617856216, 11.215413978554327, 5.7694190515614325, 24.477183851462282, 30.66247253129214, 103.59361554624454, 18.77613474303606, 9.107339177487495, 39.40507300889924, 59.352419036672174, 5.943648837966643, 32.08524372724467, 6.284879383968142, 28.7671527482662, 38.79994540762159, 28.076820471847633, 17.86945994009889, 132.40466431644697, 65.07437324883848, 8.715184945509208, 9.049932229017438, 40.04522098582074, 88.11357075590789, 29.80767657198369, 21.257642245371407, 55.30509549096054, 16.64285165482152, 22.582908122095795, 9.98796046578192, 34.98534864015203, 60.38587292951114, 46.01398030807207, 21.435868955768584, 20.902882454402594, 97.10419509932544, 173.0117730361768, 50.34814917752902, 81.3934738404294, 145.10756224354594, 41.14782681295188, 71.84165055635606, 18.11518304952701, 17.608659970921273, 16.47666558023236, 32.42059341845406, 238.4029303141371, 15.429250838218971, 17.00004792644514, 70.9845045109032, 24.57005938418395, 186.6980892916604, 205.1687458631252, 5.134664330280105, 6.835008850688357, 10.348228836631163, 8.558182861422218, 109.01847794091128, 111.90949990769084, 56.977642059954874, 23.762754991061236, 111.80358069445226, 26.84388862943622, 55.07646826720035, 7.63422207906947, 62.554319323707766, 8.729248780301983, 126.13228626292397, 31.026604620604395, 9.296015622336093, 109.25514029001997, 69.87172258249504, 10.353109688470255, 5.675232884360324, 12.91705137320806, 109.78287566890111, 32.027684558487515, 46.51524584620006, 21.032741524459215, 21.030847807421384, 6.833832142220172, 34.86247345441681, 55.81689200992983, 64.21979335573432, 19.93035258403655, 9.29966207287971, 38.410400906161996, 15.683345682378668, 35.24796698752922, 88.86412415820854, 9.731032682407996, 38.27448535370997, 67.3155478997805, 10.925046965988008, 10.670988262778579, 8.40008287003578, 86.98497882526117, 77.23672113146998, 14.351085950687697, 59.697704164513496, 59.34843945716605, 27.43184023943178, 17.196577410500392, 64.53082922732112, 16.91308118018187, 13.48773409646721, 5.136041121375775, 57.485879449379475, 5.037498293495243, 5.179884179864187, 16.70657090007346, 143.1462840825871, 14.961381816335855, 21.543539223201122, 13.617325818206046, 39.61547467836871, 89.7087179425551, 38.86767086916261, 22.3179020802533, 76.21162375592966, 13.548177207999522, 87.23488141778259, 50.16105301454425, 33.89105007486562, 68.44254828836065, 5.641789909225688, 66.04093195181864, 21.731316614002488, 9.356571894167363, 57.93047201361455, 96.82717137108921, 15.304916317307908, 10.087561242183876, 35.734891845686946, 25.398708700396316, 17.10822895376444, 118.51433087860552, 25.46794910064331, 11.084283103523644, 54.45582866538386, 5.970382478260357, 25.534555411679037, 111.34512418238916, 71.48500348464825, 23.741081060324145, 26.04877064272404, 148.88264407735136, 7.062036335689129, 34.63017432720941, 5.811355558410716, 23.48714577461339, 49.69008815587938, 40.70405240269598, 66.48945730894135, 85.35599993811627, 15.593558687127413, 38.41032193427759, 16.40307660070809, 16.07506680700278, 5.9759519609922656, 11.738161050053478, 18.786103806091734, 428.1319893458302, 5.142766846759505, 7.504235964618506, 11.668590395583077, 21.041649576218663, 109.02991777188409, 45.33743187494208, 47.20583477176388, 6.33217424052349, 32.014877188931244, 9.164245672787304, 64.56606928262056, 64.07656742730171, 106.490812391734, 8.46423407578154, 181.6920875432131, 74.47756593121696, 134.37703335351037, 25.12277849341787, 83.10823385163576, 41.94795965854109, 84.44747641552412, 81.03777782388025, 63.343595032694765, 26.256169125133805, 53.54884473480722, 9.281070665891122, 70.54267324602478, 17.092022216479894, 26.64128634407057, 33.16769965094516, 16.23990578641396, 14.915628795195355, 16.653377211750765, 35.596913372903195, 37.63056534791583, 13.32871713564345, 36.445684735502994, 88.87687138109132, 14.958169899155484, 8.096428116335531, 54.28743180979945, 27.83489332194169, 47.92873247828991, 11.334370447981335, 32.620572826181075, 244.22091873611535, 24.758173117369356, 47.65958498024856, 153.974536436497, 92.33046920958824, 17.744496422857054, 10.54119914522349, 87.3561533005928, 49.67762378540575, 7.473842998647512, 35.57225744850089, 41.30394175335024, 22.31449186278256, 32.26030230457131, 82.03219224794981, 82.06123910798162, 18.251525904320907, 126.04869631374403, 39.347903796099665, 74.81379995913778, 5.992107820342952, 110.57306970023267, 64.95301310649434, 68.69808543237852, 45.904568581186865, 25.546512833229094, 22.837765337803994, 17.919205757101626, 16.401284348042847, 18.734711493925804, 51.41850074675868, 33.314342861784134, 7.6833713316290755, 10.786995099554106, 19.923930464148757, 64.67688219642076, 57.654962133057445, 12.435915893624731, 115.6968565581288, 182.26837769251034, 24.1111342289922, 92.08403152951212, 20.57454669635199, 61.55306141225984, 76.16056076038497, 50.721623084975775, 6.5612144299725355, 6.155737396204878, 18.99123711800917, 17.786075123798522, 20.11633038302126, 66.66527767438902, 140.285333878137, 5.624514817442839, 52.59075512839954, 11.178766822847104, 10.75876111804464, 29.088172559156227, 38.692867575850705, 140.77799145586252, 18.130482027570928, 60.726321165712, 25.022778585913006, 73.3452674910562, 8.272594176819911, 54.64197438060397, 14.121368052896782, 46.88702246237715, 22.597467266868875, 14.527218985310077, 7.666131736683491, 22.379940600875532, 13.119623522031674, 5.90680213903568, 57.21420181076257, 6.8897729485968835, 8.306707920507675, 25.225825581687037, 13.304532736055833, 59.16961042140808, 32.579994637850284, 91.9859961873634, 36.451998581454376, 23.02706206337287, 14.384798294367709, 16.555889147104974, 16.705513599567414, 19.64480516858896, 40.970021507412945, 28.775912650952915, 55.10065656779878, 21.392145724527264, 10.446403393834935, 170.70310230352845, 18.88146893670055, 124.50355378760315, 27.330638923854572, 22.581212874543063, 43.28889303138706, 11.069581035517063, 124.4832069728219, 90.52625751260976, 28.58033891259811, 125.84355120648684, 129.92653760037058, 59.291679233470695, 55.10665977617394, 71.7893869091173, 20.128872225924464, 15.889705949936616, 24.455997514918348, 10.507321772054045, 51.507011676771256, 13.073397911741159, 92.36164500237719, 24.86753151139107, 10.449053752403712, 27.965935850640598, 198.99319042757617, 12.349854205402803, 168.96797776348728, 113.21358336353855, 109.68563997059059, 134.35250954625982, 10.796794749086171, 82.31932425929695, 66.4526380878138, 8.586160199906123, 81.9829863023716, 5.258961588850503, 5.981514272126638, 33.21499292217426, 6.078212059426743, 18.26670847062485, 70.6880186377334, 101.40506181274925, 60.73806207036132, 26.246079332042317, 11.311115623678374, 68.46154550458559, 17.466131038402015, 31.08791255518025, 25.7154100164769, 19.514191047119684, 11.552560268373663, 34.542760180345034, 26.051760374144614, 113.11560267959099, 9.73251411849788, 5.270407521745413, 24.1112273100956, 30.037016278396287, 104.35111873409167, 5.463841849988771, 53.81227421427221, 78.69232458262755, 92.46546865467566, 45.430290505739336, 73.16402393919117, 34.5695565905726, 23.898679163893366, 20.773574149141442, 84.92217350083038, 73.1787307724167, 330.49839137567074, 32.02868865245348, 155.8593787849931, 28.362869210788347, 58.914737254454955, 16.47231723385129, 131.9021868884147, 59.07617952504778, 21.46492643001744, 60.191080695134474, 7.284092868460722, 91.00494099567014, 102.9713842576092, 53.43791385795249, 11.905196104259549, 12.967466401511011, 28.20137763713415, 68.7011015543277, 11.041089150293596, 33.89723941919396, 34.77837454951628, 51.6084668155763, 55.227467110874684, 17.418057091977335, 31.727466271943527, 32.77923703614007, 70.31589991568606, 113.0090447212871, 92.32054879906599, 8.125201617352635, 95.5300122377904, 6.2987740165282196, 14.998340252202448, 116.50193663051662, 107.83799682381202, 57.10515817189671, 9.37537556637813, 41.71259484986565, 181.33874922003392, 170.90406347494562, 93.57072049171225, 13.492608584159276, 35.277342483970244, 75.69846753427254, 44.78868655130437, 16.246357590011904, 18.209827054187834, 31.835537621250925, 41.4041097246203, 38.20921792548226, 9.871803037791185, 64.28376968369977, 12.252492808021138, 42.937746030373255, 16.999499704563515, 12.319929899943945, 25.25653443337863, 70.76638949525314, 9.723128088973745, 9.970740916525068, 5.670362259144964, 68.78256240279353, 50.65783437709804, 57.03466157568111, 95.14324846879933, 6.406973673443702, 34.42767040293958, 5.415640037797861, 17.84042033533673, 15.270113664408264, 68.25474929776622, 103.49168886867504, 19.484769785818756, 64.84891354500013, 46.361003046080356, 84.59809768101726, 6.856713663858303, 24.49615338984406, 37.27235274889238, 20.173151811425033, 22.744187518564658, 64.5386451877709, 40.240312644099696, 7.069202879725946, 5.903734264208494, 12.819931757674086, 20.241771529833464, 11.475149098295827, 35.31560927995612, 53.57303636423704, 76.74211165233186, 66.16626284206075, 7.41261601588905, 30.950517661828048, 28.29151314860831, 20.90209302186137, 5.730632670808355, 75.14718624227483, 90.86766622276039, 10.223092213827368, 28.096819226470455, 8.402647289892087, 78.4083624798913, 77.32006954025124, 29.002192897978748, 112.87328140007459, 83.42870449041739, 28.438647521156554, 14.651756704577595, 10.4183436906559, 13.227037801749407, 67.68176180473857, 83.15340945472948, 6.6987124997563665, 126.62707560979828, 27.24798744510106, 6.056229474945379, 26.28081913893292, 49.57282103726214, 6.866928054473602, 224.00119353715564, 15.102586222848482, 50.82189639828505, 5.626449634457716, 8.386846427278785, 5.9649535058013905, 84.37921518372865, 23.145073319930848, 53.145086717257485, 6.079486793652755, 31.529368257414237, 15.394804777130599, 6.554143632083325, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7552154.12216747, 7942587.350821121, 8240693.199707967, 8279452.734551979, 8280987.5, 8283879.058632798, 8357689.003306504, 8379107.736780202, 8425959.427255299, 8526452.885672504, 8526537.094924808, 8526906.034109186, 8529110.954343302, 8535645.3125, 8537181.55830105, 8543126.5625, 8545010.9375, 8578832.470611552, 8578859.375, 8594724.749855515, 8656299.34509313, 8659187.5, 8660635.604999896, 8670923.084445396, 8689209.375, 8690407.8125, 8690418.08649627, 8696021.384489594, 8696186.96415056, 8704851.5625, 8708631.25, 8711750.362513699, 8713819.74168353, 8720965.876179991, 8727150.572182624, 8751551.5625, 8753479.62237411, 8835017.896498857, 8836301.486663148, 8841532.8125, 8855834.286667949, 8857238.655076655, 8865325.276409911, 8870718.280951435, 8874951.181186363, 8931121.875, 8956262.88139537, 8959007.570893327, 8959196.875, 8961506.169396512, 8963508.822061056, 8964391.89126427, 8964409.375, 8964685.9375, 8977425.0, 8988331.25, 9056673.522669118, 9125060.326050613, 9141789.0625, 9144503.125, 9144611.184758466, 9184655.697078498, 9190983.965820042, 9198554.6875, 9224945.253415791, 9241121.677360075, 9262052.401720995, 9265207.990694001, 9313647.182725238, 9326071.606010363, 9342284.825019803, 9436574.793291679, 9449840.625, 9467187.5, 9467514.0625, 9467701.871690394, 9468121.754545713, 9471676.5625, 9500958.121271735, 9501014.16219146, 9502698.178768631, 9503740.931325201, 9504439.862152604, 9505139.822978856, 9505730.463533442, 9522758.144364033, 9527562.386873934, 9565417.1875, 9601905.810656901, 9603253.125, 9606744.224855654, 9607577.534284282, 9608830.885306358, 9614884.375, 9712853.059713965, 9718392.688246576, 9725101.799830923, 9725333.565560836, 9738044.05637575, 9739382.63946059, 9744980.865076104, 9749995.731942862, 9751174.93097443, 9768703.786763672, 9769446.522215584, 9769608.756268369, 9770435.242097102, 9770817.1875, 9771216.252413077, 9773268.73096351, 9774567.277419517, 9778189.0625, 9788450.0, 9799356.07192886, 9800598.4375, 9800906.25, 9800935.321551383, 9801654.087453835, 9801683.549287736, 9802300.410329506, 9803284.463767096, 9804146.875, 9804928.125, 9805256.25, 9805417.776224805, 9806093.75, 9806492.130554354, 9806501.69884163, 9806735.361777613, 9808173.261183284, 9808539.259029388, 9809995.416488906, 9810268.411632726, 9822810.950839134, 9841931.267951675, 9843096.020816498, 9843438.837038321, 9843489.610087857, 9845033.116012901, 9845202.819997424, 9845973.4375, 9846143.430935001, 9846204.6875, 9847191.352108287, 9848649.176526489, 9849118.300164284, 9850222.44687194, 9850577.542189596, 9851091.438824896, 9851574.926836854, 9851577.240849711, 9851995.98433789, 9857076.908592723, 9857869.229253402, 9858059.981785914, 9858581.981533578, 9858842.089156054, 9860068.171103321, 9860530.689021936, 9861079.582170652, 9865682.929811062, 9866985.9375, 9869259.17785427, 9870536.417500129, 9871172.34390852, 9871565.708742812, 9872347.218480572, 9875309.375, 9875343.727330334, 9881912.766162487, 9886226.23844747, 9886518.878684178, 9886593.75, 9886602.676516684, 9886985.808174353, 9887057.613193985, 9888209.375, 9892159.8577874, 9919920.3125, 9931108.096436672, 9953642.332583994, 9957760.69867504, 9959671.875, 9964625.13118911, 9965384.492765402, 9967514.0625, 9980319.916787313, 9980910.926215122, 9997191.944760077, 9997246.755578374, 9998316.2348059, 10005489.0625, 10009308.397336783, 10010271.875, 10011737.321352532, 10012063.407132512, 10014293.75, 10017929.059557434, 10018305.809199333, 10018900.63400911, 10019723.850414066, 10026296.959745323, 10033625.104123225, 10078827.752168797, 10079681.25, 10080109.375, 10081075.378211033, 10081096.770771058, 10082259.816402344, 10082342.124917613, 10082352.570734398, 10083371.511146162, 10084166.40453008, 10086486.251154708, 10086540.82535283, 10097743.75, 10098986.936162282, 10105867.637935827, 10112032.015550015, 10116981.25, 10116987.418576058, 10116996.3386669, 10117035.9375, 10117672.790874686, 10119466.491054162, 10119476.202733284, 10120538.941104604, 10120642.456086341, 10120893.75, 10121400.665822819, 10121483.34183086, 10121743.75, 10121915.646626297, 10123391.924044456, 10124389.030536763, 10124979.763654487, 10126109.449695513, 10127719.104959408, 10137296.391439585, 10138190.152715094, 10151776.596202344, 10152372.10402118, 10152386.546532307, 10153899.862704517, 10159332.8125, 10159595.43207373, 10161144.281433942, 10162967.103201183, 10164527.82396127, 10165771.875, 10166112.096624773, 10166812.5, 10169892.147197906, 10171225.78281642, 10171484.156226985, 10171729.477570519, 10171986.580132686, 10172808.35525086, 10174925.674725836, 10177401.220521474, 10177444.886361433, 10177671.153334457, 10178562.72688761, 10178771.875, 10178812.5, 10178875.0, 10179901.092017833, 10180918.303649709, 10183664.832189035, 10183875.586561536, 10184264.0625, 10185348.30282063, 10185725.817404399, 10186039.136917084, 10188262.755813112, 10189088.592362283, 10189320.3125, 10189462.5, 10192085.765200697, 10192283.913506627, 10193105.581757156, 10193212.364474835, 10194541.037883166, 10194715.262372967, 10195715.243857425, 10196021.592944633, 10197645.634398224, 10221527.271770207, 10222163.379687194, 10222200.769805705, 10251051.5625, 10253227.345833987, 10254312.919022964, 10255443.278488176, 10255449.56228314, 10256935.700121215, 10259122.153566658, 10264300.036853898, 10265438.466363253, 10266016.500859648, 10267785.116564501, 10268628.60130139, 10276040.78322051, 10279341.897207793, 10279494.84447707, 10281256.583356945, 10284027.862629551, 10284147.362920042, 10284310.880386902, 10285673.313585658, 10285764.756716166, 10286149.44330474, 10286503.068384493, 10290952.300938027, 10291727.80118091, 10292339.864996145, 10292623.363866597, 10292915.868790725, 10293164.720558196, 10293206.770862754, 10294364.0625, 10294994.556031616, 10298713.965532206, 10299080.108764194, 10306707.69818281, 10306916.760068214, 10307485.356303165, 10309752.975181166, 10310271.04528839, 10311668.75, 10312289.0625, 10312837.215852575, 10313350.0, 10313409.375, 10313469.92966044, 10313493.75, 10313634.261544684, 10314170.038408982, 10314609.375, 10314809.375, 10314834.640860101, 10314873.855562497, 10314895.210829992, 10315116.380739693, 10315231.421703048, 10315299.162878329, 10315442.1875, 10315551.06006276, 10315735.9375, 10315742.395942003, 10316352.370378947, 10316526.791434119, 10316539.0625, 10316878.950961325, 10317195.3125, 10317200.022012725, 10317201.104826437, 10317289.930835152, 10317330.132193716, 10317455.197023256, 10317656.00926209, 10317682.468763638, 10318123.537053505, 10318329.155758996, 10318580.588054856, 10318687.48091512, 10318857.913348481, 10319103.121610828, 10319601.5625, 10319761.55437235, 10320086.127006385, 10320233.912884738, 10320380.925634092, 10320526.5625, 10320592.1875, 10320608.17636046, 10320645.3125, 10320657.030187987, 10321084.618166141, 10321345.3125, 10321385.9375, 10321853.443708802, 10321978.125, 10322306.223485442, 10323191.58898681, 10323397.26784297, 10323532.8125, 10323598.4375, 10323643.227697019, 10323650.067316473, 10323740.06227271, 10324134.194651313, 10324309.344745291, 10324410.882695213, 10324580.220863136, 10324581.533624196, 10324598.033393601, 10324776.172072189, 10324899.250062605, 10325050.655429406, 10325462.43249897, 10325494.858704222, 10325782.8125, 10325788.174801137, 10325903.38576658, 10326539.0625, 10326951.5625, 10327097.533533342, 10327113.194672806, 10327541.778489992, 10327726.539138965, 10328354.687141502, 10329084.375, 10329725.0, 10332433.752680363, 10332586.303926136, 10332765.625, 10333038.93648216, 10334039.0625, 10334465.425572675, 10334757.498887314, 10335276.409999777, 10335393.75, 10335630.90600434, 10335700.0, 10335720.17156597, 10335739.0625, 10335942.454399569, 10336774.000857461, 10337851.243003966, 10338094.30255442, 10338326.688363254, 10338755.785101797, 10339295.3125, 10339462.876298577, 10339910.638291296, 10340713.133697476, 10340746.875, 10343614.0625, 10343714.0625, 10345255.977153527, 10347439.0625, 10348730.814422108, 10349033.629630709, 10349049.852682436, 10349714.0625, 10350381.353422547, 10350516.948845388, 10350730.465678945, 10350833.312603695, 10350905.38548868, 10351174.825346887, 10352401.438377585, 10352644.19268067, 10352690.438925931, 10356520.202586861, 10356547.253918368, 10356794.713699844, 10356947.933352847, 10357231.873197822, 10357423.4375, 10357616.988528293, 10357853.045100216, 10358100.0, 10358757.276717717, 10358789.0625, 10358842.21307109, 10358879.775983158, 10359118.75, 10359145.3125, 10359155.73730832, 10359164.0625, 10359362.671627447, 10359987.058224652, 10360048.152017722, 10360189.497876402, 10360974.541072909, 10360976.667663774, 10361339.0625, 10361995.708611539, 10362234.375, 10362445.241045501, 10362890.677098872, 10362959.064576365, 10363771.875, 10363944.081172954, 10364084.375, 10364270.168296732, 10365982.822641917, 10366163.752842193, 10366760.664656887, 10367811.122568747, 10367928.38567067, 10369389.0625, 10369628.125, 10369822.929555701, 10369845.436806554, 10370176.6178969, 10370550.941524526, 10370705.492246587, 10370856.580779139, 10371194.69107384, 10371644.27530692, 10372576.285064977, 10374465.24328802, 10374843.75, 10377025.048596887, 10377128.100063955, 10377862.63867493, 10377956.25, 10378025.0, 10378365.601958664, 10378881.99497354, 10379337.5, 10379559.375, 10379735.10616924, 10379774.647239331, 10379814.0625, 10379939.0625, 10380037.5, 10380151.168157475, 10380183.194836758, 10380356.634657824, 10380506.449672611, 10380619.43627412, 10380693.633641057, 10380867.1875, 10381015.794188898, 10381027.619243633, 10381042.410100121, 10381051.5625, 10381121.419944905, 10381218.75, 10381582.61803015, 10381749.486539163, 10381762.287191011, 10381770.3125, 10381772.515865974, 10381828.783275638, 10382072.226835858, 10382159.307469135, 10382188.15530221, 10382298.55983821, 10382444.202288894, 10382598.4375, 10382885.699044151, 10383435.9375, 10383468.75, 10383715.818733238, 10383823.785402978, 10384321.311656123, 10384897.355567385, 10384989.039689837, 10385308.087185645, 10385329.6875, 10386751.640930017, 10388489.895621896, 10392988.466958065, 10393170.45757178, 10393609.459862413, 10394135.9375, 10394663.252743322, 10396007.8125, 10397323.84327011, 10398182.770350186, 10398970.3125, 10404109.375, 10405169.753137741, 10406302.61799065, 10406318.093546519, 10412239.613132842, 10414373.272105176, 10415228.125, 10417533.827578785, 10418038.726772398, 10418586.279838782, 10419375.0, 10419898.4375, 10419993.75, 10420155.57764248, 10420243.712221218, 10420703.125, 10421080.597880203, 10421360.9375, 10421376.465523032, 10421812.937611744, 10421917.1875, 10423395.3125, 10424615.491356475, 10424754.374238757, 10425097.083645372, 10426021.875, 10427564.993021183, 10429665.460962987, 10430421.875, 10430554.6875, 10430667.129747959, 10430820.800397336, 10430844.967409685, 10430886.987305626, 10430894.870493785, 10431256.507374221, 10431415.625, 10431432.571044108, 10431453.737836396, 10431528.696525833, 10431695.890081223, 10431746.880204003, 10431891.7152242, 10432052.72801654, 10432077.693378225, 10432245.3125, 10432382.8125, 10432540.203889884, 10432673.4375, 10432808.954150561, 10433001.5625, 10433003.039795266, 10433590.625, 10433754.6875, 10434148.92836896, 10434572.069402546, 10434608.898553036, 10434696.904616635, 10434712.5, 10434907.711782511, 10435167.279685142, 10436466.401694885, 10436732.932311898, 10436743.568919051, 10437502.034525398, 10437672.349068157, 10438739.630282883, 10439298.40954009, 10440335.575267466, 10440547.223961856, 10440807.64039699, 10440885.9375, 10441009.375, 10442397.407859232, 10444759.235863369, 10444780.616051696, 10446131.019047111, 10446957.8125, 10447740.589463754, 10448097.96509539, 10450221.875, 10451812.5, 10451827.741147773, 10452790.486664215, 10452806.411163723, 10453223.4375, 10453469.68543398, 10454214.331183154, 10454234.785304725, 10457115.98333949, 10461510.115299447, 10463667.763657464, 10463720.877641277, 10465059.092720391, 10469962.820513757, 10476218.203521196, 10477113.890775405, 10478468.75, 10478656.25, 10478861.435039258, 10479515.380052067, 10479699.795465957, 10479959.375, 10480238.576498916, 10480296.875, 10480345.633992616, 10480443.75, 10480568.75, 10480723.835316464, 10480780.003539516, 10480972.416155532, 10481231.25, 10481293.75, 10481421.864007078, 10481505.651624637, 10481621.748721976, 10481673.4375, 10481757.752368178, 10481900.58223293, 10481934.844089968, 10482260.834464783, 10482399.67467596, 10482407.374536103, 10482421.868193304, 10483048.82420681, 10483437.139250832, 10483468.75, 10483521.375975003, 10483804.184603037, 10483862.907714475, 10484373.49474508, 10484498.059741063, 10484943.472592765, 10484974.964162262, 10485000.031643465, 10485028.25331237, 10485385.408799974, 10486102.37152978, 10486457.587477496, 10486758.527340723, 10487068.44300244, 10487999.546303645, 10488086.519160744, 10488808.964302229, 10489277.354427896, 10489282.8125, 10489537.127488209, 10489621.811459458, 10489757.8125, 10489760.51607861, 10489907.208620427, 10489909.375, 10489939.0625, 10489999.099348875, 10490152.008432182, 10490300.0, 10490304.6875, 10490453.710912222, 10490482.8125, 10490564.0625, 10490675.0, 10490904.6875, 10490943.578681735, 10490962.719020473, 10491024.047467533, 10491025.336649876, 10491058.545510598, 10491156.25, 10491352.745924039, 10491426.778753193, 10491516.958010029, 10491571.201862874, 10491667.1875, 10491735.9375, 10491788.201770026, 10491825.0, 10491881.087942116, 10491913.790199634, 10491915.625, 10491920.142805554, 10491948.4375, 10492059.375, 10492071.296255535, 10492077.019595318, 10492077.188741451, 10492086.70638374, 10492094.338464098, 10492200.91244383, 10492257.8125, 10492265.635162406, 10492298.625228046, 10492408.519664433, 10492489.094922846, 10492559.125400249, 10492576.5625, 10492646.594985154, 10492798.4375, 10493171.21261335, 10493208.226615114, 10493440.418459646, 10493493.75, 10493534.348463729, 10493657.8125, 10493673.20429124, 10493682.8125, 10493698.572375283, 10493737.38688729, 10493786.108108213, 10493827.709532041, 10493885.360357983, 10494013.680346113, 10494076.5625, 10494097.476187672, 10494104.725374233, 10494216.99482456, 10494366.679626046, 10494492.137028558, 10494534.690746004, 10494541.30591094, 10494574.284256732, 10494641.655118644, 10494663.908348186, 10494684.742593968, 10494732.06748614, 10494743.042346653, 10494775.764429273, 10494842.1875, 10494872.438769283, 10494991.677319886, 10495051.078020422, 10495147.735876137, 10495287.478268169, 10495305.597433336, 10495362.436624901, 10495397.016143415, 10495408.59576958, 10495501.861462282, 10495513.041400451, 10495642.635501847, 10495653.125, 10495734.375, 10495758.773902671, 10495797.23006106, 10495803.125, 10495817.1875, 10495907.163928866, 10495981.406895781, 10495982.565776573, 10496002.688194953, 10496028.125, 10496065.030083502, 10496228.104745978, 10496236.454427617, 10496244.830114355, 10496253.720017666, 10496295.264445169, 10496335.0376444, 10496455.865070919, 10496517.1875, 10496576.5625, 10496597.21340758, 10496604.464948783, 10496746.875, 10496754.6875, 10496758.339079732, 10496767.081937289, 10496842.67375887, 10496844.221154064, 10496910.871132279, 10496917.091883447, 10496960.039160026, 10497136.491467537, 10497250.630087396, 10497320.965523269, 10497352.998102048, 10497368.864253694, 10497394.406191686, 10497494.76961671, 10497568.75, 10497584.214672387, 10497674.275759079, 10497714.318305323, 10497790.322175588, 10498009.112653734, 10498075.468690893, 10498083.251613393, 10498086.815698478, 10498143.996834708, 10498267.1875, 10498279.6875, 10498350.048262753, 10498674.294467283, 10498810.279388428, 10498898.03466522, 10498901.5625, 10498985.9375, 10499046.832953773, 10499186.802378139, 10499360.362213518, 10499503.125, 10499517.175968776, 10499520.394022562, 10499620.3125, 10499673.205354191, 10499682.804256335, 10499812.5, 10499812.850964986, 10499868.75, 10499957.8125, 10500052.622171063, 10500068.75, 10500409.959576651, 10500452.93376293, 10500719.960266039, 10500950.032711204, 10501053.571317848, 10501161.863633085, 10501162.998493362, 10501175.0, 10501279.63136881, 10501306.235404285, 10501337.324244976, 10501554.25387999, 10501610.551080972, 10501623.964244137, 10501667.408303417, 10501860.9375, 10501933.674716821, 10502074.808462894, 10502320.3125, 10502490.306838498, 10502513.582876403, 10502526.808399176, 10502712.514830759, 10503146.640238067, 10503239.0625, 10503607.8125, 10503664.114050278, 10503842.1875, 10504258.571021704, 10504414.90613006, 10505353.125, 10505413.413376769, 10505721.253249967, 10507234.375, 10507486.754903624, 10507851.867335455, 10507871.732857674, 10509181.25, 10509375.524713947, 10509635.9375, 10509700.576712443, 10509825.0, 10511687.390148472, 10512637.199731626, 10513215.577429412, 10513830.336342476, 10514987.30939806, 10515182.535093177, 10515319.179585325, 10515977.232817547, 10516290.037520612, 10516290.625, 10516485.639066145, 10518167.1875, 10518196.488757959, 10518335.406636178, 10518779.6875, 10518800.441888398, 10519278.837992044, 10520336.686817227, 10520665.193109842, 10521953.125, 10522285.541283967, 10522509.375, 10522527.663347116, 10523171.875, 10524837.949604787, 10525007.947122237, 10525075.0, 10525128.697106296, 10525347.588869488, 10525384.016436357, 10526004.478445541, 10526356.047436735, 10526416.768568251, 10526572.74167879, 10526632.024790253, 10526648.648964338, 10527493.846577607, 10527561.349299792, 10527610.459319403, 10527632.8125, 10527780.690300638, 10527871.242846925, 10527987.725858374, 10528032.251140643, 10528111.306212453, 10528190.625, 10528573.4375, 10528675.89481969, 10529170.29050481, 10529273.65072472, 10529548.4375, 10529717.1875, 10529782.8125, 10529822.899271443, 10529935.9375, 10530160.933117595, 10530453.046844622, 10530571.368239723, 10530669.775946727, 10530824.657988155, 10531335.645289626, 10531544.979047315, 10531861.239549575, 10532115.556995679, 10532216.875355255, 10532482.687734105, 10532801.5625, 10532848.93436245, 10533004.6875, 10533254.729128115, 10533704.672247333, 10533742.409583671, 10533743.93491652, 10533744.03876276, 10534096.495884705, 10534814.524198383, 10534909.375, 10535403.041772034, 10535696.875, 10535823.914775392, 10536036.352310166, ...], [5.377292912067609, 42.85096832724632, 36.06997576388019, 113.05391044305097, 34.82726708587262, 18.21110281679456, 7.581967797642596, 27.111545642287663, 122.41562875061263, 24.55797294962212, 6.425413175519395, 23.271988312837095, 100.3416312867893, 150.20812350454273, 100.29377375852283, 44.78900505948462, 46.8510929437316, 29.340719302561396, 109.72202226552733, 48.60335685935459, 29.54822653152523, 72.84278007944845, 58.761465008311575, 5.5161875669892755, 45.93247327192898, 93.56500153215534, 8.827024061334157, 13.352111153081394, 26.487521074097266, 55.42260335191908, 68.69143637764881, 11.74591939756124, 20.814605367761494, 15.993894180506217, 92.68447978112415, 69.23152953963424, 104.21035053639858, 65.07704242442651, 11.011202428419157, 50.595520290822336, 26.891974064074244, 6.21706004111014, 73.07730118106238, 11.74782551223283, 13.572719058269584, 56.562344677051826, 113.54525657108759, 10.769953691494559, 73.95359022932784, 42.601868720843875, 18.495515746314066, 23.798944368731796, 53.14317878246346, 32.715120271578, 70.07118767922077, 44.58696607082981, 15.276384802729883, 71.85243630487534, 30.90278680654286, 64.4924440466157, 34.141969641635164, 8.014334638935006, 53.94696964578738, 55.533526198990685, 14.720990831062453, 14.238159431187633, 38.06477756070771, 11.418147142968932, 16.26026548655907, 56.23351375195564, 11.912390050663449, 63.72336513469136, 45.85682110531029, 88.53632906724955, 72.64224907223793, 9.607280429779877, 20.617660432800406, 66.45258739075223, 28.411894426047205, 15.335606916571003, 32.48978256956251, 9.60458412570289, 19.21865785411499, 35.74033234213629, 81.3153678890258, 13.990052280116057, 65.47326467055724, 49.18676746786604, 10.504048059561697, 103.71915903917329, 9.768016955531161, 113.65242028817335, 118.61689117978585, 81.70597356701337, 83.96536753740025, 25.224848879887734, 15.93045897444589, 61.43194097074759, 53.25410559087415, 14.320580512945176, 22.723361789245335, 16.824016481032604, 27.229833692573056, 58.54399082512924, 23.099124115136842, 20.385174381463557, 10.190714091362008, 34.48960616164163, 12.27390859637282, 80.07175886484718, 15.295686618730558, 61.262132940560726, 61.567328369599394, 25.444056191927704, 88.46198512640643, 30.954016064973356, 6.026305526812784, 13.060147663870842, 7.893389440849629, 26.303859282245, 119.70453039145546, 73.92693579866216, 42.15015878977109, 121.95416099649319, 140.78187874422665, 157.6920938135032, 14.728812454182123, 17.537677774832826, 67.27627523807683, 14.309521163628355, 86.60537893218225, 15.353255047118292, 68.88832290012401, 11.14862093553782, 74.47633668777091, 12.450496521772655, 14.146570547125476, 8.599057649240892, 28.719286693470774, 9.086167965555035, 97.69662427878002, 13.850493586652401, 42.541785700196876, 169.83648596269632, 18.777101996542818, 180.26218323984978, 22.82271491442402, 60.0383538693584, 31.04511734459758, 29.405134998177367, 18.360655290992888, 12.369911638888988, 38.9286051483806, 17.148311412425883, 23.82664833660291, 77.91259524064088, 79.47813032902523, 20.740584225982126, 13.162087397559, 63.22147018234251, 6.282134425656459, 73.38810988832773, 25.170976397152668, 22.25177160917459, 17.09102178016421, 22.09749456167993, 16.435074869583836, 57.528826132648966, 79.92173420739114, 24.673337659618504, 5.092131229161502, 15.455777992057948, 54.20380332307686, 22.022875327690993, 5.526836707722797, 6.456295630618108, 112.43648744747635, 49.36655132637889, 40.055260266133764, 16.146733941815537, 58.30701596409888, 223.05295737442248, 79.37242398311264, 15.466283964217771, 196.31880079429934, 49.43778548503248, 82.70641649957963, 28.30351919838564, 6.237009440877441, 26.3683849260598, 21.03912634692503, 64.73793283841864, 130.58178686426785, 99.03199763909711, 25.435357795589752, 58.66205423475062, 65.75099344332452, 32.95785609973276, 18.592419680997466, 18.071205831748127, 17.62399305352422, 11.26280421907666, 26.51651862319398, 22.862965325062135, 40.730443976549886, 48.873178382429536, 15.628440141479373, 10.968606898988389, 16.941156438457224, 14.708221873176356, 89.31576385984891, 12.735741821338546, 31.21548990446189, 55.798308980986405, 5.17005408351995, 53.76085773629574, 13.154545010572718, 16.98998481076872, 92.37867697133028, 51.706254575639356, 7.1002110185890945, 21.138156497430696, 220.20915018420908, 27.83975963142302, 51.33209308879119, 6.693746312881367, 5.200340123223475, 11.575186245823119, 72.27270913993502, 27.700448278204636, 71.29573553791495, 126.37680048796443, 9.349756619185616, 14.024197865009517, 11.07811106232042, 9.39663704765632, 106.10201935094084, 35.380525179491116, 21.658676528384206, 8.961622929359216, 15.071542026621543, 97.42768958623743, 29.481120213796785, 26.078225749833425, 61.82741481170949, 23.172305266132774, 73.90420297325358, 26.96172829222803, 84.92288999798703, 56.18714541644982, 38.73291226230759, 68.41004504593548, 76.61921693678674, 94.27373135783337, 86.45806727293021, 5.390508814200288, 32.72264742591546, 35.862789205386775, 5.264430225738512, 33.73071205947699, 46.1690849659789, 40.89591500543363, 16.811160897418997, 30.4619104345695, 94.94025562753541, 41.425386656754334, 110.42271399952892, 93.62531108151768, 6.171972501792686, 12.18763057697642, 71.58717946281935, 10.923523415059174, 5.370733702111973, 44.932076001670325, 73.77634188584993, 51.118495446500816, 64.1953039395555, 122.44801705023804, 10.868664424722262, 42.24326507124627, 19.96433561154726, 10.92227991675084, 16.78944580418423, 98.93933211419673, 9.028658614616486, 40.68323412207539, 11.671113699126812, 7.321274267423897, 26.502740794111485, 98.10385983405854, 55.93704444620765, 19.097170807104902, 6.132785504735845, 13.404751538934192, 22.41109213494545, 34.0653605074603, 11.59295309805634, 67.52568591902373, 10.308328995732671, 19.81352922503796, 18.900140425444953, 17.131910857789528, 7.163673544668949, 5.688528798257063, 36.17407911153184, 112.18466812399366, 95.98242016193049, 15.072899049148388, 5.934447157592845, 23.735203392084593, 117.54001005104304, 138.70126071589112, 194.80179593886092, 10.044995062300734, 6.7005358625023534, 17.865872496895584, 27.148281259372695, 11.531419664132311, 90.67756776767928, 17.384036417389126, 54.33464381557051, 72.43882914681751, 15.347806439883172, 5.637782487027674, 14.522981518403094, 53.9053548285692, 84.88833914940446, 25.87943696825184, 5.367674754747129, 36.589879827132805, 44.81601610898723, 22.113609620404507, 30.499341187613176, 38.03657711105214, 13.658798062610133, 67.05541619856224, 68.24597170993651, 13.990487571624245, 38.420378790248726, 63.70302247008497, 147.27659152655423, 5.4800009869923105, 26.66432811903424, 35.31359041981459, 7.666543165015285, 12.48874534994682, 38.230487485725185, 21.468821881634128, 89.72594649459629, 15.800331357172963, 16.17171520304916, 15.892332768223595, 60.663327523088704, 7.932041051210042, 41.95987445592592, 15.026080704876184, 10.480507206057045, 118.48476342291133, 136.40540157155664, 61.57425061721089, 71.22448703075571, 10.629814507668458, 110.54048445706977, 108.60084692609792, 250.92288533739804, 145.78111310922807, 366.2986381839745, 63.894260396703736, 111.75369098919836, 7.842704422661798, 72.51109043723002, 10.47482998693516, 23.44441185813076, 72.23236328208735, 100.37881540548335, 5.302460544908664, 28.93184415780703, 18.96890016014661, 114.15727571909652, 101.39152671900263, 73.1950550013646, 82.2403760951533, 91.85962012107574, 45.67089208453989, 7.993551794176087, 40.06303912687736, 45.64543804831202, 70.21682715703727, 21.273464283774306, 15.20444982659993, 93.61310620306375, 25.409723417171705, 11.0807437647725, 68.67270557669369, 9.827151753369268, 16.14525702548743, 6.217457715556713, 141.30979006439813, 25.056925595639925, 18.209527822513273, 62.30738145197161, 102.77660131889252, 90.60365501780765, 18.33704233601103, 50.059629812874526, 43.0491159665812, 90.81226092512819, 23.150844405982753, 16.144387315766718, 119.07867026237864, 33.4989674713835, 35.14437219195843, 29.33932458127784, 72.17449894508682, 13.003076961419021, 9.661726632261976, 44.78185590874502, 26.26040657106595, 32.10492024362468, 13.829734543121319, 13.86724876999353, 10.897421880616388, 47.38527342637134, 35.459499604577424, 46.45255938861859, 40.155545001142386, 43.80295472930596, 14.523952419792039, 31.67171213917444, 23.504860841930878, 14.994293552574833, 15.443970438571343, 21.850554826604203, 79.30908129603395, 11.771656449168974, 40.91638001939047, 32.47411064761398, 55.28324647407377, 30.368453455729327, 96.93952222046221, 130.80630620207307, 84.29769617086211, 22.160753642182684, 27.858659401329348, 19.25722149971928, 47.69829231421292, 103.36267135088418, 10.77409728600179, 32.13187821289581, 114.76325802664195, 18.701104229194673, 21.379871193389654, 120.23474445612139, 52.63014859782117, 40.31758841656037, 25.733656366406596, 11.776567966298936, 42.33015539435232, 13.314702288788792, 50.334093677512215, 31.839766875831113, 66.05770990000399, 37.11294402771302, 92.84724861033298, 21.143427841666483, 58.99127553337769, 13.827349898370489, 17.024578443048995, 55.04328276191819, 38.40830553308299, 13.291420392261632, 106.47465373511702, 14.050558717140031, 59.840413377567835, 5.449645296677018, 178.691688150336, 128.39961330492775, 31.648236866559717, 112.9334652268579, 155.58341619286603, 94.35572200171742, 27.186772390452052, 20.393446822617594, 39.90595272875743, 54.05389301944355, 7.211315914285633, 235.81239110858135, 6.464721227380967, 21.79317006898471, 20.39540693703238, 13.99443078811461, 6.5164990611212446, 82.14320203092723, 53.1688714935828, 64.57414012361161, 13.304341002259893, 17.62384617856216, 11.215413978554327, 5.7694190515614325, 24.477183851462282, 30.66247253129214, 103.59361554624454, 18.77613474303606, 9.107339177487495, 39.40507300889924, 59.352419036672174, 5.943648837966643, 32.08524372724467, 6.284879383968142, 28.7671527482662, 38.79994540762159, 28.076820471847633, 17.86945994009889, 132.40466431644697, 65.07437324883848, 8.715184945509208, 9.049932229017438, 40.04522098582074, 88.11357075590789, 29.80767657198369, 21.257642245371407, 55.30509549096054, 16.64285165482152, 22.582908122095795, 9.98796046578192, 34.98534864015203, 60.38587292951114, 46.01398030807207, 21.435868955768584, 20.902882454402594, 97.10419509932544, 173.0117730361768, 50.34814917752902, 81.3934738404294, 145.10756224354594, 41.14782681295188, 71.84165055635606, 18.11518304952701, 17.608659970921273, 16.47666558023236, 32.42059341845406, 238.4029303141371, 15.429250838218971, 17.00004792644514, 70.9845045109032, 24.57005938418395, 186.6980892916604, 205.1687458631252, 5.134664330280105, 6.835008850688357, 10.348228836631163, 8.558182861422218, 109.01847794091128, 111.90949990769084, 56.977642059954874, 23.762754991061236, 111.80358069445226, 26.84388862943622, 55.07646826720035, 7.63422207906947, 62.554319323707766, 8.729248780301983, 126.13228626292397, 31.026604620604395, 9.296015622336093, 109.25514029001997, 69.87172258249504, 10.353109688470255, 5.675232884360324, 12.91705137320806, 109.78287566890111, 32.027684558487515, 46.51524584620006, 21.032741524459215, 21.030847807421384, 6.833832142220172, 34.86247345441681, 55.81689200992983, 64.21979335573432, 19.93035258403655, 9.29966207287971, 38.410400906161996, 15.683345682378668, 35.24796698752922, 88.86412415820854, 9.731032682407996, 38.27448535370997, 67.3155478997805, 10.925046965988008, 10.670988262778579, 8.40008287003578, 86.98497882526117, 77.23672113146998, 14.351085950687697, 59.697704164513496, 59.34843945716605, 27.43184023943178, 17.196577410500392, 64.53082922732112, 16.91308118018187, 13.48773409646721, 5.136041121375775, 57.485879449379475, 5.037498293495243, 5.179884179864187, 16.70657090007346, 143.1462840825871, 14.961381816335855, 21.543539223201122, 13.617325818206046, 39.61547467836871, 89.7087179425551, 38.86767086916261, 22.3179020802533, 76.21162375592966, 13.548177207999522, 87.23488141778259, 50.16105301454425, 33.89105007486562, 68.44254828836065, 5.641789909225688, 66.04093195181864, 21.731316614002488, 9.356571894167363, 57.93047201361455, 96.82717137108921, 15.304916317307908, 10.087561242183876, 35.734891845686946, 25.398708700396316, 17.10822895376444, 118.51433087860552, 25.46794910064331, 11.084283103523644, 54.45582866538386, 5.970382478260357, 25.534555411679037, 111.34512418238916, 71.48500348464825, 23.741081060324145, 26.04877064272404, 148.88264407735136, 7.062036335689129, 34.63017432720941, 5.811355558410716, 23.48714577461339, 49.69008815587938, 40.70405240269598, 66.48945730894135, 85.35599993811627, 15.593558687127413, 38.41032193427759, 16.40307660070809, 16.07506680700278, 5.9759519609922656, 11.738161050053478, 18.786103806091734, 428.1319893458302, 5.142766846759505, 7.504235964618506, 11.668590395583077, 21.041649576218663, 109.02991777188409, 45.33743187494208, 47.20583477176388, 6.33217424052349, 32.014877188931244, 9.164245672787304, 64.56606928262056, 64.07656742730171, 106.490812391734, 8.46423407578154, 181.6920875432131, 74.47756593121696, 134.37703335351037, 25.12277849341787, 83.10823385163576, 41.94795965854109, 84.44747641552412, 81.03777782388025, 63.343595032694765, 26.256169125133805, 53.54884473480722, 9.281070665891122, 70.54267324602478, 17.092022216479894, 26.64128634407057, 33.16769965094516, 16.23990578641396, 14.915628795195355, 16.653377211750765, 35.596913372903195, 37.63056534791583, 13.32871713564345, 36.445684735502994, 88.87687138109132, 14.958169899155484, 8.096428116335531, 54.28743180979945, 27.83489332194169, 47.92873247828991, 11.334370447981335, 32.620572826181075, 244.22091873611535, 24.758173117369356, 47.65958498024856, 153.974536436497, 92.33046920958824, 17.744496422857054, 10.54119914522349, 87.3561533005928, 49.67762378540575, 7.473842998647512, 35.57225744850089, 41.30394175335024, 22.31449186278256, 32.26030230457131, 82.03219224794981, 82.06123910798162, 18.251525904320907, 126.04869631374403, 39.347903796099665, 74.81379995913778, 5.992107820342952, 110.57306970023267, 64.95301310649434, 68.69808543237852, 45.904568581186865, 25.546512833229094, 22.837765337803994, 17.919205757101626, 16.401284348042847, 18.734711493925804, 51.41850074675868, 33.314342861784134, 7.6833713316290755, 10.786995099554106, 19.923930464148757, 64.67688219642076, 57.654962133057445, 12.435915893624731, 115.6968565581288, 182.26837769251034, 24.1111342289922, 92.08403152951212, 20.57454669635199, 61.55306141225984, 76.16056076038497, 50.721623084975775, 6.5612144299725355, 6.155737396204878, 18.99123711800917, 17.786075123798522, 20.11633038302126, 66.66527767438902, 140.285333878137, 5.624514817442839, 52.59075512839954, 11.178766822847104, 10.75876111804464, 29.088172559156227, 38.692867575850705, 140.77799145586252, 18.130482027570928, 60.726321165712, 25.022778585913006, 73.3452674910562, 8.272594176819911, 54.64197438060397, 14.121368052896782, 46.88702246237715, 22.597467266868875, 14.527218985310077, 7.666131736683491, 22.379940600875532, 13.119623522031674, 5.90680213903568, 57.21420181076257, 6.8897729485968835, 8.306707920507675, 25.225825581687037, 13.304532736055833, 59.16961042140808, 32.579994637850284, 91.9859961873634, 36.451998581454376, 23.02706206337287, 14.384798294367709, 16.555889147104974, 16.705513599567414, 19.64480516858896, 40.970021507412945, 28.775912650952915, 55.10065656779878, 21.392145724527264, 10.446403393834935, 170.70310230352845, 18.88146893670055, 124.50355378760315, 27.330638923854572, 22.581212874543063, 43.28889303138706, 11.069581035517063, 124.4832069728219, 90.52625751260976, 28.58033891259811, 125.84355120648684, 129.92653760037058, 59.291679233470695, 55.10665977617394, 71.7893869091173, 20.128872225924464, 15.889705949936616, 24.455997514918348, 10.507321772054045, 51.507011676771256, 13.073397911741159, 92.36164500237719, 24.86753151139107, 10.449053752403712, 27.965935850640598, 198.99319042757617, 12.349854205402803, 168.96797776348728, 113.21358336353855, 109.68563997059059, 134.35250954625982, 10.796794749086171, 82.31932425929695, 66.4526380878138, 8.586160199906123, 81.9829863023716, 5.258961588850503, 5.981514272126638, 33.21499292217426, 6.078212059426743, 18.26670847062485, 70.6880186377334, 101.40506181274925, 60.73806207036132, 26.246079332042317, 11.311115623678374, 68.46154550458559, 17.466131038402015, 31.08791255518025, 25.7154100164769, 19.514191047119684, 11.552560268373663, 34.542760180345034, 26.051760374144614, 113.11560267959099, 9.73251411849788, 5.270407521745413, 24.1112273100956, 30.037016278396287, 104.35111873409167, 5.463841849988771, 53.81227421427221, 78.69232458262755, 92.46546865467566, 45.430290505739336, 73.16402393919117, 34.5695565905726, 23.898679163893366, 20.773574149141442, 84.92217350083038, 73.1787307724167, 330.49839137567074, 32.02868865245348, 155.8593787849931, 28.362869210788347, 58.914737254454955, 16.47231723385129, 131.9021868884147, 59.07617952504778, 21.46492643001744, 60.191080695134474, 7.284092868460722, 91.00494099567014, 102.9713842576092, 53.43791385795249, 11.905196104259549, 12.967466401511011, 28.20137763713415, 68.7011015543277, 11.041089150293596, 33.89723941919396, 34.77837454951628, 51.6084668155763, 55.227467110874684, 17.418057091977335, 31.727466271943527, 32.77923703614007, 70.31589991568606, 113.0090447212871, 92.32054879906599, 8.125201617352635, 95.5300122377904, 6.2987740165282196, 14.998340252202448, 116.50193663051662, 107.83799682381202, 57.10515817189671, 9.37537556637813, 41.71259484986565, 181.33874922003392, 170.90406347494562, 93.57072049171225, 13.492608584159276, 35.277342483970244, 75.69846753427254, 44.78868655130437, 16.246357590011904, 18.209827054187834, 31.835537621250925, 41.4041097246203, 38.20921792548226, 9.871803037791185, 64.28376968369977, 12.252492808021138, 42.937746030373255, 16.999499704563515, 12.319929899943945, 25.25653443337863, 70.76638949525314, 9.723128088973745, 9.970740916525068, 5.670362259144964, 68.78256240279353, 50.65783437709804, 57.03466157568111, 95.14324846879933, 6.406973673443702, 34.42767040293958, 5.415640037797861, 17.84042033533673, 15.270113664408264, 68.25474929776622, 103.49168886867504, 19.484769785818756, 64.84891354500013, 46.361003046080356, 84.59809768101726, 6.856713663858303, 24.49615338984406, 37.27235274889238, 20.173151811425033, 22.744187518564658, 64.5386451877709, 40.240312644099696, 7.069202879725946, 5.903734264208494, 12.819931757674086, 20.241771529833464, 11.475149098295827, 35.31560927995612, 53.57303636423704, 76.74211165233186, 66.16626284206075, 7.41261601588905, 30.950517661828048, 28.29151314860831, 20.90209302186137, 5.730632670808355, 75.14718624227483, 90.86766622276039, 10.223092213827368, 28.096819226470455, 8.402647289892087, 78.4083624798913, 77.32006954025124, 29.002192897978748, 112.87328140007459, 83.42870449041739, 28.438647521156554, 14.651756704577595, 10.4183436906559, 13.227037801749407, 67.68176180473857, 83.15340945472948, 6.6987124997563665, 126.62707560979828, 27.24798744510106, 6.056229474945379, 26.28081913893292, 49.57282103726214, 6.866928054473602, 224.00119353715564, 15.102586222848482, 50.82189639828505, 5.626449634457716, 8.386846427278785, 5.9649535058013905, 84.37921518372865, 23.145073319930848, 53.145086717257485, 6.079486793652755, 31.529368257414237, 15.394804777130599, 6.554143632083325, ...])
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);
([7552154.12216747, 7942587.350821121, 8240693.199707967, 8279452.734551979, 8280987.5, 8283879.058632798, 8357689.003306504, 8379107.736780202, 8425959.427255299, 8526452.885672504, 8526537.094924808, 8526906.034109186, 8529110.954343302, 8535645.3125, 8537181.55830105, 8543126.5625, 8545010.9375, 8578832.470611552, 8578859.375, 8594724.749855515, 8656299.34509313, 8659187.5, 8660635.604999896, 8670923.084445396, 8689209.375, 8690407.8125, 8690418.08649627, 8696021.384489594, 8696186.96415056, 8704851.5625, 8708631.25, 8711750.362513699, 8713819.74168353, 8720965.876179991, 8727150.572182624, 8751551.5625, 8753479.62237411, 8835017.896498857, 8836301.486663148, 8841532.8125, 8855834.286667949, 8857238.655076655, 8865325.276409911, 8870718.280951435, 8874951.181186363, 8931121.875, 8956262.88139537, 8959007.570893327, 8959196.875, 8961506.169396512, 8963508.822061056, 8964391.89126427, 8964409.375, 8964685.9375, 8977425.0, 8988331.25, 9056673.522669118, 9125060.326050613, 9141789.0625, 9144503.125, 9144611.184758466, 9184655.697078498, 9190983.965820042, 9198554.6875, 9224945.253415791, 9241121.677360075, 9262052.401720995, 9265207.990694001, 9313647.182725238, 9326071.606010363, 9342284.825019803, 9436574.793291679, 9449840.625, 9467187.5, 9467514.0625, 9467701.871690394, 9468121.754545713, 9471676.5625, 9500958.121271735, 9501014.16219146, 9502698.178768631, 9503740.931325201, 9504439.862152604, 9505139.822978856, 9505730.463533442, 9522758.144364033, 9527562.386873934, 9565417.1875, 9601905.810656901, 9603253.125, 9606744.224855654, 9607577.534284282, 9608830.885306358, 9614884.375, 9712853.059713965, 9718392.688246576, 9725101.799830923, 9725333.565560836, 9738044.05637575, 9739382.63946059, 9744980.865076104, 9749995.731942862, 9751174.93097443, 9768703.786763672, 9769446.522215584, 9769608.756268369, 9770435.242097102, 9770817.1875, 9771216.252413077, 9773268.73096351, 9774567.277419517, 9778189.0625, 9788450.0, 9799356.07192886, 9800598.4375, 9800906.25, 9800935.321551383, 9801654.087453835, 9801683.549287736, 9802300.410329506, 9803284.463767096, 9804146.875, 9804928.125, 9805256.25, 9805417.776224805, 9806093.75, 9806492.130554354, 9806501.69884163, 9806735.361777613, 9808173.261183284, 9808539.259029388, 9809995.416488906, 9810268.411632726, 9822810.950839134, 9841931.267951675, 9843096.020816498, 9843438.837038321, 9843489.610087857, 9845033.116012901, 9845202.819997424, 9845973.4375, 9846143.430935001, 9846204.6875, 9847191.352108287, 9848649.176526489, 9849118.300164284, 9850222.44687194, 9850577.542189596, 9851091.438824896, 9851574.926836854, 9851577.240849711, 9851995.98433789, 9857076.908592723, 9857869.229253402, 9858059.981785914, 9858581.981533578, 9858842.089156054, 9860068.171103321, 9860530.689021936, 9861079.582170652, 9865682.929811062, 9866985.9375, 9869259.17785427, 9870536.417500129, 9871172.34390852, 9871565.708742812, 9872347.218480572, 9875309.375, 9875343.727330334, 9881912.766162487, 9886226.23844747, 9886518.878684178, 9886593.75, 9886602.676516684, 9886985.808174353, 9887057.613193985, 9888209.375, 9892159.8577874, 9919920.3125, 9931108.096436672, 9953642.332583994, 9957760.69867504, 9959671.875, 9964625.13118911, 9965384.492765402, 9967514.0625, 9980319.916787313, 9980910.926215122, 9997191.944760077, 9997246.755578374, 9998316.2348059, 10005489.0625, 10009308.397336783, 10010271.875, 10011737.321352532, 10012063.407132512, 10014293.75, 10017929.059557434, 10018305.809199333, 10018900.63400911, 10019723.850414066, 10026296.959745323, 10033625.104123225, 10078827.752168797, 10079681.25, 10080109.375, 10081075.378211033, 10081096.770771058, 10082259.816402344, 10082342.124917613, 10082352.570734398, 10083371.511146162, 10084166.40453008, 10086486.251154708, 10086540.82535283, 10097743.75, 10098986.936162282, 10105867.637935827, 10112032.015550015, 10116981.25, 10116987.418576058, 10116996.3386669, 10117035.9375, 10117672.790874686, 10119466.491054162, 10119476.202733284, 10120538.941104604, 10120642.456086341, 10120893.75, 10121400.665822819, 10121483.34183086, 10121743.75, 10121915.646626297, 10123391.924044456, 10124389.030536763, 10124979.763654487, 10126109.449695513, 10127719.104959408, 10137296.391439585, 10138190.152715094, 10151776.596202344, 10152372.10402118, 10152386.546532307, 10153899.862704517, 10159332.8125, 10159595.43207373, 10161144.281433942, 10162967.103201183, 10164527.82396127, 10165771.875, 10166112.096624773, 10166812.5, 10169892.147197906, 10171225.78281642, 10171484.156226985, 10171729.477570519, 10171986.580132686, 10172808.35525086, 10174925.674725836, 10177401.220521474, 10177444.886361433, 10177671.153334457, 10178562.72688761, 10178771.875, 10178812.5, 10178875.0, 10179901.092017833, 10180918.303649709, 10183664.832189035, 10183875.586561536, 10184264.0625, 10185348.30282063, 10185725.817404399, 10186039.136917084, 10188262.755813112, 10189088.592362283, 10189320.3125, 10189462.5, 10192085.765200697, 10192283.913506627, 10193105.581757156, 10193212.364474835, 10194541.037883166, 10194715.262372967, 10195715.243857425, 10196021.592944633, 10197645.634398224, 10221527.271770207, 10222163.379687194, 10222200.769805705, 10251051.5625, 10253227.345833987, 10254312.919022964, 10255443.278488176, 10255449.56228314, 10256935.700121215, 10259122.153566658, 10264300.036853898, 10265438.466363253, 10266016.500859648, 10267785.116564501, 10268628.60130139, 10276040.78322051, 10279341.897207793, 10279494.84447707, 10281256.583356945, 10284027.862629551, 10284147.362920042, 10284310.880386902, 10285673.313585658, 10285764.756716166, 10286149.44330474, 10286503.068384493, 10290952.300938027, 10291727.80118091, 10292339.864996145, 10292623.363866597, 10292915.868790725, 10293164.720558196, 10293206.770862754, 10294364.0625, 10294994.556031616, 10298713.965532206, 10299080.108764194, 10306707.69818281, 10306916.760068214, 10307485.356303165, 10309752.975181166, 10310271.04528839, 10311668.75, 10312289.0625, 10312837.215852575, 10313350.0, 10313409.375, 10313469.92966044, 10313493.75, 10313634.261544684, 10314170.038408982, 10314609.375, 10314809.375, 10314834.640860101, 10314873.855562497, 10314895.210829992, 10315116.380739693, 10315231.421703048, 10315299.162878329, 10315442.1875, 10315551.06006276, 10315735.9375, 10315742.395942003, 10316352.370378947, 10316526.791434119, 10316539.0625, 10316878.950961325, 10317195.3125, 10317200.022012725, 10317201.104826437, 10317289.930835152, 10317330.132193716, 10317455.197023256, 10317656.00926209, 10317682.468763638, 10318123.537053505, 10318329.155758996, 10318580.588054856, 10318687.48091512, 10318857.913348481, 10319103.121610828, 10319601.5625, 10319761.55437235, 10320086.127006385, 10320233.912884738, 10320380.925634092, 10320526.5625, 10320592.1875, 10320608.17636046, 10320645.3125, 10320657.030187987, 10321084.618166141, 10321345.3125, 10321385.9375, 10321853.443708802, 10321978.125, 10322306.223485442, 10323191.58898681, 10323397.26784297, 10323532.8125, 10323598.4375, 10323643.227697019, 10323650.067316473, 10323740.06227271, 10324134.194651313, 10324309.344745291, 10324410.882695213, 10324580.220863136, 10324581.533624196, 10324598.033393601, 10324776.172072189, 10324899.250062605, 10325050.655429406, 10325462.43249897, 10325494.858704222, 10325782.8125, 10325788.174801137, 10325903.38576658, 10326539.0625, 10326951.5625, 10327097.533533342, 10327113.194672806, 10327541.778489992, 10327726.539138965, 10328354.687141502, 10329084.375, 10329725.0, 10332433.752680363, 10332586.303926136, 10332765.625, 10333038.93648216, 10334039.0625, 10334465.425572675, 10334757.498887314, 10335276.409999777, 10335393.75, 10335630.90600434, 10335700.0, 10335720.17156597, 10335739.0625, 10335942.454399569, 10336774.000857461, 10337851.243003966, 10338094.30255442, 10338326.688363254, 10338755.785101797, 10339295.3125, 10339462.876298577, 10339910.638291296, 10340713.133697476, 10340746.875, 10343614.0625, 10343714.0625, 10345255.977153527, 10347439.0625, 10348730.814422108, 10349033.629630709, 10349049.852682436, 10349714.0625, 10350381.353422547, 10350516.948845388, 10350730.465678945, 10350833.312603695, 10350905.38548868, 10351174.825346887, 10352401.438377585, 10352644.19268067, 10352690.438925931, 10356520.202586861, 10356547.253918368, 10356794.713699844, 10356947.933352847, 10357231.873197822, 10357423.4375, 10357616.988528293, 10357853.045100216, 10358100.0, 10358757.276717717, 10358789.0625, 10358842.21307109, 10358879.775983158, 10359118.75, 10359145.3125, 10359155.73730832, 10359164.0625, 10359362.671627447, 10359987.058224652, 10360048.152017722, 10360189.497876402, 10360974.541072909, 10360976.667663774, 10361339.0625, 10361995.708611539, 10362234.375, 10362445.241045501, 10362890.677098872, 10362959.064576365, 10363771.875, 10363944.081172954, 10364084.375, 10364270.168296732, 10365982.822641917, 10366163.752842193, 10366760.664656887, 10367811.122568747, 10367928.38567067, 10369389.0625, 10369628.125, 10369822.929555701, 10369845.436806554, 10370176.6178969, 10370550.941524526, 10370705.492246587, 10370856.580779139, 10371194.69107384, 10371644.27530692, 10372576.285064977, 10374465.24328802, 10374843.75, 10377025.048596887, 10377128.100063955, 10377862.63867493, 10377956.25, 10378025.0, 10378365.601958664, 10378881.99497354, 10379337.5, 10379559.375, 10379735.10616924, 10379774.647239331, 10379814.0625, 10379939.0625, 10380037.5, 10380151.168157475, 10380183.194836758, 10380356.634657824, 10380506.449672611, 10380619.43627412, 10380693.633641057, 10380867.1875, 10381015.794188898, 10381027.619243633, 10381042.410100121, 10381051.5625, 10381121.419944905, 10381218.75, 10381582.61803015, 10381749.486539163, 10381762.287191011, 10381770.3125, 10381772.515865974, 10381828.783275638, 10382072.226835858, 10382159.307469135, 10382188.15530221, 10382298.55983821, 10382444.202288894, 10382598.4375, 10382885.699044151, 10383435.9375, 10383468.75, 10383715.818733238, 10383823.785402978, 10384321.311656123, 10384897.355567385, 10384989.039689837, 10385308.087185645, 10385329.6875, 10386751.640930017, 10388489.895621896, 10392988.466958065, 10393170.45757178, 10393609.459862413, 10394135.9375, 10394663.252743322, 10396007.8125, 10397323.84327011, 10398182.770350186, 10398970.3125, 10404109.375, 10405169.753137741, 10406302.61799065, 10406318.093546519, 10412239.613132842, 10414373.272105176, 10415228.125, 10417533.827578785, 10418038.726772398, 10418586.279838782, 10419375.0, 10419898.4375, 10419993.75, 10420155.57764248, 10420243.712221218, 10420703.125, 10421080.597880203, 10421360.9375, 10421376.465523032, 10421812.937611744, 10421917.1875, 10423395.3125, 10424615.491356475, 10424754.374238757, 10425097.083645372, 10426021.875, 10427564.993021183, 10429665.460962987, 10430421.875, 10430554.6875, 10430667.129747959, 10430820.800397336, 10430844.967409685, 10430886.987305626, 10430894.870493785, 10431256.507374221, 10431415.625, 10431432.571044108, 10431453.737836396, 10431528.696525833, 10431695.890081223, 10431746.880204003, 10431891.7152242, 10432052.72801654, 10432077.693378225, 10432245.3125, 10432382.8125, 10432540.203889884, 10432673.4375, 10432808.954150561, 10433001.5625, 10433003.039795266, 10433590.625, 10433754.6875, 10434148.92836896, 10434572.069402546, 10434608.898553036, 10434696.904616635, 10434712.5, 10434907.711782511, 10435167.279685142, 10436466.401694885, 10436732.932311898, 10436743.568919051, 10437502.034525398, 10437672.349068157, 10438739.630282883, 10439298.40954009, 10440335.575267466, 10440547.223961856, 10440807.64039699, 10440885.9375, 10441009.375, 10442397.407859232, 10444759.235863369, 10444780.616051696, 10446131.019047111, 10446957.8125, 10447740.589463754, 10448097.96509539, 10450221.875, 10451812.5, 10451827.741147773, 10452790.486664215, 10452806.411163723, 10453223.4375, 10453469.68543398, 10454214.331183154, 10454234.785304725, 10457115.98333949, 10461510.115299447, 10463667.763657464, 10463720.877641277, 10465059.092720391, 10469962.820513757, 10476218.203521196, 10477113.890775405, 10478468.75, 10478656.25, 10478861.435039258, 10479515.380052067, 10479699.795465957, 10479959.375, 10480238.576498916, 10480296.875, 10480345.633992616, 10480443.75, 10480568.75, 10480723.835316464, 10480780.003539516, 10480972.416155532, 10481231.25, 10481293.75, 10481421.864007078, 10481505.651624637, 10481621.748721976, 10481673.4375, 10481757.752368178, 10481900.58223293, 10481934.844089968, 10482260.834464783, 10482399.67467596, 10482407.374536103, 10482421.868193304, 10483048.82420681, 10483437.139250832, 10483468.75, 10483521.375975003, 10483804.184603037, 10483862.907714475, 10484373.49474508, 10484498.059741063, 10484943.472592765, 10484974.964162262, 10485000.031643465, 10485028.25331237, 10485385.408799974, 10486102.37152978, 10486457.587477496, 10486758.527340723, 10487068.44300244, 10487999.546303645, 10488086.519160744, 10488808.964302229, 10489277.354427896, 10489282.8125, 10489537.127488209, 10489621.811459458, 10489757.8125, 10489760.51607861, 10489907.208620427, 10489909.375, 10489939.0625, 10489999.099348875, 10490152.008432182, 10490300.0, 10490304.6875, 10490453.710912222, 10490482.8125, 10490564.0625, 10490675.0, 10490904.6875, 10490943.578681735, 10490962.719020473, 10491024.047467533, 10491025.336649876, 10491058.545510598, 10491156.25, 10491352.745924039, 10491426.778753193, 10491516.958010029, 10491571.201862874, 10491667.1875, 10491735.9375, 10491788.201770026, 10491825.0, 10491881.087942116, 10491913.790199634, 10491915.625, 10491920.142805554, 10491948.4375, 10492059.375, 10492071.296255535, 10492077.019595318, 10492077.188741451, 10492086.70638374, 10492094.338464098, 10492200.91244383, 10492257.8125, 10492265.635162406, 10492298.625228046, 10492408.519664433, 10492489.094922846, 10492559.125400249, 10492576.5625, 10492646.594985154, 10492798.4375, 10493171.21261335, 10493208.226615114, 10493440.418459646, 10493493.75, 10493534.348463729, 10493657.8125, 10493673.20429124, 10493682.8125, 10493698.572375283, 10493737.38688729, 10493786.108108213, 10493827.709532041, 10493885.360357983, 10494013.680346113, 10494076.5625, 10494097.476187672, 10494104.725374233, 10494216.99482456, 10494366.679626046, 10494492.137028558, 10494534.690746004, 10494541.30591094, 10494574.284256732, 10494641.655118644, 10494663.908348186, 10494684.742593968, 10494732.06748614, 10494743.042346653, 10494775.764429273, 10494842.1875, 10494872.438769283, 10494991.677319886, 10495051.078020422, 10495147.735876137, 10495287.478268169, 10495305.597433336, 10495362.436624901, 10495397.016143415, 10495408.59576958, 10495501.861462282, 10495513.041400451, 10495642.635501847, 10495653.125, 10495734.375, 10495758.773902671, 10495797.23006106, 10495803.125, 10495817.1875, 10495907.163928866, 10495981.406895781, 10495982.565776573, 10496002.688194953, 10496028.125, 10496065.030083502, 10496228.104745978, 10496236.454427617, 10496244.830114355, 10496253.720017666, 10496295.264445169, 10496335.0376444, 10496455.865070919, 10496517.1875, 10496576.5625, 10496597.21340758, 10496604.464948783, 10496746.875, 10496754.6875, 10496758.339079732, 10496767.081937289, 10496842.67375887, 10496844.221154064, 10496910.871132279, 10496917.091883447, 10496960.039160026, 10497136.491467537, 10497250.630087396, 10497320.965523269, 10497352.998102048, 10497368.864253694, 10497394.406191686, 10497494.76961671, 10497568.75, 10497584.214672387, 10497674.275759079, 10497714.318305323, 10497790.322175588, 10498009.112653734, 10498075.468690893, 10498083.251613393, 10498086.815698478, 10498143.996834708, 10498267.1875, 10498279.6875, 10498350.048262753, 10498674.294467283, 10498810.279388428, 10498898.03466522, 10498901.5625, 10498985.9375, 10499046.832953773, 10499186.802378139, 10499360.362213518, 10499503.125, 10499517.175968776, 10499520.394022562, 10499620.3125, 10499673.205354191, 10499682.804256335, 10499812.5, 10499812.850964986, 10499868.75, 10499957.8125, 10500052.622171063, 10500068.75, 10500409.959576651, 10500452.93376293, 10500719.960266039, 10500950.032711204, 10501053.571317848, 10501161.863633085, 10501162.998493362, 10501175.0, 10501279.63136881, 10501306.235404285, 10501337.324244976, 10501554.25387999, 10501610.551080972, 10501623.964244137, 10501667.408303417, 10501860.9375, 10501933.674716821, 10502074.808462894, 10502320.3125, 10502490.306838498, 10502513.582876403, 10502526.808399176, 10502712.514830759, 10503146.640238067, 10503239.0625, 10503607.8125, 10503664.114050278, 10503842.1875, 10504258.571021704, 10504414.90613006, 10505353.125, 10505413.413376769, 10505721.253249967, 10507234.375, 10507486.754903624, 10507851.867335455, 10507871.732857674, 10509181.25, 10509375.524713947, 10509635.9375, 10509700.576712443, 10509825.0, 10511687.390148472, 10512637.199731626, 10513215.577429412, 10513830.336342476, 10514987.30939806, 10515182.535093177, 10515319.179585325, 10515977.232817547, 10516290.037520612, 10516290.625, 10516485.639066145, 10518167.1875, 10518196.488757959, 10518335.406636178, 10518779.6875, 10518800.441888398, 10519278.837992044, 10520336.686817227, 10520665.193109842, 10521953.125, 10522285.541283967, 10522509.375, 10522527.663347116, 10523171.875, 10524837.949604787, 10525007.947122237, 10525075.0, 10525128.697106296, 10525347.588869488, 10525384.016436357, 10526004.478445541, 10526356.047436735, 10526416.768568251, 10526572.74167879, 10526632.024790253, 10526648.648964338, 10527493.846577607, 10527561.349299792, 10527610.459319403, 10527632.8125, 10527780.690300638, 10527871.242846925, 10527987.725858374, 10528032.251140643, 10528111.306212453, 10528190.625, 10528573.4375, 10528675.89481969, 10529170.29050481, 10529273.65072472, 10529548.4375, 10529717.1875, 10529782.8125, 10529822.899271443, 10529935.9375, 10530160.933117595, 10530453.046844622, 10530571.368239723, 10530669.775946727, 10530824.657988155, 10531335.645289626, 10531544.979047315, 10531861.239549575, 10532115.556995679, 10532216.875355255, 10532482.687734105, 10532801.5625, 10532848.93436245, 10533004.6875, 10533254.729128115, 10533704.672247333, 10533742.409583671, 10533743.93491652, 10533744.03876276, 10534096.495884705, 10534814.524198383, 10534909.375, 10535403.041772034, 10535696.875, 10535823.914775392, 10536036.352310166, ...], [5.377292912067609, 42.85096832724632, 36.06997576388019, 113.05391044305097, 34.82726708587262, 18.21110281679456, 7.581967797642596, 27.111545642287663, 122.41562875061263, 24.55797294962212, 6.425413175519395, 23.271988312837095, 100.3416312867893, 150.20812350454273, 100.29377375852283, 44.78900505948462, 46.8510929437316, 29.340719302561396, 109.72202226552733, 48.60335685935459, 29.54822653152523, 72.84278007944845, 58.761465008311575, 5.5161875669892755, 45.93247327192898, 93.56500153215534, 8.827024061334157, 13.352111153081394, 26.487521074097266, 55.42260335191908, 68.69143637764881, 11.74591939756124, 20.814605367761494, 15.993894180506217, 92.68447978112415, 69.23152953963424, 104.21035053639858, 65.07704242442651, 11.011202428419157, 50.595520290822336, 26.891974064074244, 6.21706004111014, 73.07730118106238, 11.74782551223283, 13.572719058269584, 56.562344677051826, 113.54525657108759, 10.769953691494559, 73.95359022932784, 42.601868720843875, 18.495515746314066, 23.798944368731796, 53.14317878246346, 32.715120271578, 70.07118767922077, 44.58696607082981, 15.276384802729883, 71.85243630487534, 30.90278680654286, 64.4924440466157, 34.141969641635164, 8.014334638935006, 53.94696964578738, 55.533526198990685, 14.720990831062453, 14.238159431187633, 38.06477756070771, 11.418147142968932, 16.26026548655907, 56.23351375195564, 11.912390050663449, 63.72336513469136, 45.85682110531029, 88.53632906724955, 72.64224907223793, 9.607280429779877, 20.617660432800406, 66.45258739075223, 28.411894426047205, 15.335606916571003, 32.48978256956251, 9.60458412570289, 19.21865785411499, 35.74033234213629, 81.3153678890258, 13.990052280116057, 65.47326467055724, 49.18676746786604, 10.504048059561697, 103.71915903917329, 9.768016955531161, 113.65242028817335, 118.61689117978585, 81.70597356701337, 83.96536753740025, 25.224848879887734, 15.93045897444589, 61.43194097074759, 53.25410559087415, 14.320580512945176, 22.723361789245335, 16.824016481032604, 27.229833692573056, 58.54399082512924, 23.099124115136842, 20.385174381463557, 10.190714091362008, 34.48960616164163, 12.27390859637282, 80.07175886484718, 15.295686618730558, 61.262132940560726, 61.567328369599394, 25.444056191927704, 88.46198512640643, 30.954016064973356, 6.026305526812784, 13.060147663870842, 7.893389440849629, 26.303859282245, 119.70453039145546, 73.92693579866216, 42.15015878977109, 121.95416099649319, 140.78187874422665, 157.6920938135032, 14.728812454182123, 17.537677774832826, 67.27627523807683, 14.309521163628355, 86.60537893218225, 15.353255047118292, 68.88832290012401, 11.14862093553782, 74.47633668777091, 12.450496521772655, 14.146570547125476, 8.599057649240892, 28.719286693470774, 9.086167965555035, 97.69662427878002, 13.850493586652401, 42.541785700196876, 169.83648596269632, 18.777101996542818, 180.26218323984978, 22.82271491442402, 60.0383538693584, 31.04511734459758, 29.405134998177367, 18.360655290992888, 12.369911638888988, 38.9286051483806, 17.148311412425883, 23.82664833660291, 77.91259524064088, 79.47813032902523, 20.740584225982126, 13.162087397559, 63.22147018234251, 6.282134425656459, 73.38810988832773, 25.170976397152668, 22.25177160917459, 17.09102178016421, 22.09749456167993, 16.435074869583836, 57.528826132648966, 79.92173420739114, 24.673337659618504, 5.092131229161502, 15.455777992057948, 54.20380332307686, 22.022875327690993, 5.526836707722797, 6.456295630618108, 112.43648744747635, 49.36655132637889, 40.055260266133764, 16.146733941815537, 58.30701596409888, 223.05295737442248, 79.37242398311264, 15.466283964217771, 196.31880079429934, 49.43778548503248, 82.70641649957963, 28.30351919838564, 6.237009440877441, 26.3683849260598, 21.03912634692503, 64.73793283841864, 130.58178686426785, 99.03199763909711, 25.435357795589752, 58.66205423475062, 65.75099344332452, 32.95785609973276, 18.592419680997466, 18.071205831748127, 17.62399305352422, 11.26280421907666, 26.51651862319398, 22.862965325062135, 40.730443976549886, 48.873178382429536, 15.628440141479373, 10.968606898988389, 16.941156438457224, 14.708221873176356, 89.31576385984891, 12.735741821338546, 31.21548990446189, 55.798308980986405, 5.17005408351995, 53.76085773629574, 13.154545010572718, 16.98998481076872, 92.37867697133028, 51.706254575639356, 7.1002110185890945, 21.138156497430696, 220.20915018420908, 27.83975963142302, 51.33209308879119, 6.693746312881367, 5.200340123223475, 11.575186245823119, 72.27270913993502, 27.700448278204636, 71.29573553791495, 126.37680048796443, 9.349756619185616, 14.024197865009517, 11.07811106232042, 9.39663704765632, 106.10201935094084, 35.380525179491116, 21.658676528384206, 8.961622929359216, 15.071542026621543, 97.42768958623743, 29.481120213796785, 26.078225749833425, 61.82741481170949, 23.172305266132774, 73.90420297325358, 26.96172829222803, 84.92288999798703, 56.18714541644982, 38.73291226230759, 68.41004504593548, 76.61921693678674, 94.27373135783337, 86.45806727293021, 5.390508814200288, 32.72264742591546, 35.862789205386775, 5.264430225738512, 33.73071205947699, 46.1690849659789, 40.89591500543363, 16.811160897418997, 30.4619104345695, 94.94025562753541, 41.425386656754334, 110.42271399952892, 93.62531108151768, 6.171972501792686, 12.18763057697642, 71.58717946281935, 10.923523415059174, 5.370733702111973, 44.932076001670325, 73.77634188584993, 51.118495446500816, 64.1953039395555, 122.44801705023804, 10.868664424722262, 42.24326507124627, 19.96433561154726, 10.92227991675084, 16.78944580418423, 98.93933211419673, 9.028658614616486, 40.68323412207539, 11.671113699126812, 7.321274267423897, 26.502740794111485, 98.10385983405854, 55.93704444620765, 19.097170807104902, 6.132785504735845, 13.404751538934192, 22.41109213494545, 34.0653605074603, 11.59295309805634, 67.52568591902373, 10.308328995732671, 19.81352922503796, 18.900140425444953, 17.131910857789528, 7.163673544668949, 5.688528798257063, 36.17407911153184, 112.18466812399366, 95.98242016193049, 15.072899049148388, 5.934447157592845, 23.735203392084593, 117.54001005104304, 138.70126071589112, 194.80179593886092, 10.044995062300734, 6.7005358625023534, 17.865872496895584, 27.148281259372695, 11.531419664132311, 90.67756776767928, 17.384036417389126, 54.33464381557051, 72.43882914681751, 15.347806439883172, 5.637782487027674, 14.522981518403094, 53.9053548285692, 84.88833914940446, 25.87943696825184, 5.367674754747129, 36.589879827132805, 44.81601610898723, 22.113609620404507, 30.499341187613176, 38.03657711105214, 13.658798062610133, 67.05541619856224, 68.24597170993651, 13.990487571624245, 38.420378790248726, 63.70302247008497, 147.27659152655423, 5.4800009869923105, 26.66432811903424, 35.31359041981459, 7.666543165015285, 12.48874534994682, 38.230487485725185, 21.468821881634128, 89.72594649459629, 15.800331357172963, 16.17171520304916, 15.892332768223595, 60.663327523088704, 7.932041051210042, 41.95987445592592, 15.026080704876184, 10.480507206057045, 118.48476342291133, 136.40540157155664, 61.57425061721089, 71.22448703075571, 10.629814507668458, 110.54048445706977, 108.60084692609792, 250.92288533739804, 145.78111310922807, 366.2986381839745, 63.894260396703736, 111.75369098919836, 7.842704422661798, 72.51109043723002, 10.47482998693516, 23.44441185813076, 72.23236328208735, 100.37881540548335, 5.302460544908664, 28.93184415780703, 18.96890016014661, 114.15727571909652, 101.39152671900263, 73.1950550013646, 82.2403760951533, 91.85962012107574, 45.67089208453989, 7.993551794176087, 40.06303912687736, 45.64543804831202, 70.21682715703727, 21.273464283774306, 15.20444982659993, 93.61310620306375, 25.409723417171705, 11.0807437647725, 68.67270557669369, 9.827151753369268, 16.14525702548743, 6.217457715556713, 141.30979006439813, 25.056925595639925, 18.209527822513273, 62.30738145197161, 102.77660131889252, 90.60365501780765, 18.33704233601103, 50.059629812874526, 43.0491159665812, 90.81226092512819, 23.150844405982753, 16.144387315766718, 119.07867026237864, 33.4989674713835, 35.14437219195843, 29.33932458127784, 72.17449894508682, 13.003076961419021, 9.661726632261976, 44.78185590874502, 26.26040657106595, 32.10492024362468, 13.829734543121319, 13.86724876999353, 10.897421880616388, 47.38527342637134, 35.459499604577424, 46.45255938861859, 40.155545001142386, 43.80295472930596, 14.523952419792039, 31.67171213917444, 23.504860841930878, 14.994293552574833, 15.443970438571343, 21.850554826604203, 79.30908129603395, 11.771656449168974, 40.91638001939047, 32.47411064761398, 55.28324647407377, 30.368453455729327, 96.93952222046221, 130.80630620207307, 84.29769617086211, 22.160753642182684, 27.858659401329348, 19.25722149971928, 47.69829231421292, 103.36267135088418, 10.77409728600179, 32.13187821289581, 114.76325802664195, 18.701104229194673, 21.379871193389654, 120.23474445612139, 52.63014859782117, 40.31758841656037, 25.733656366406596, 11.776567966298936, 42.33015539435232, 13.314702288788792, 50.334093677512215, 31.839766875831113, 66.05770990000399, 37.11294402771302, 92.84724861033298, 21.143427841666483, 58.99127553337769, 13.827349898370489, 17.024578443048995, 55.04328276191819, 38.40830553308299, 13.291420392261632, 106.47465373511702, 14.050558717140031, 59.840413377567835, 5.449645296677018, 178.691688150336, 128.39961330492775, 31.648236866559717, 112.9334652268579, 155.58341619286603, 94.35572200171742, 27.186772390452052, 20.393446822617594, 39.90595272875743, 54.05389301944355, 7.211315914285633, 235.81239110858135, 6.464721227380967, 21.79317006898471, 20.39540693703238, 13.99443078811461, 6.5164990611212446, 82.14320203092723, 53.1688714935828, 64.57414012361161, 13.304341002259893, 17.62384617856216, 11.215413978554327, 5.7694190515614325, 24.477183851462282, 30.66247253129214, 103.59361554624454, 18.77613474303606, 9.107339177487495, 39.40507300889924, 59.352419036672174, 5.943648837966643, 32.08524372724467, 6.284879383968142, 28.7671527482662, 38.79994540762159, 28.076820471847633, 17.86945994009889, 132.40466431644697, 65.07437324883848, 8.715184945509208, 9.049932229017438, 40.04522098582074, 88.11357075590789, 29.80767657198369, 21.257642245371407, 55.30509549096054, 16.64285165482152, 22.582908122095795, 9.98796046578192, 34.98534864015203, 60.38587292951114, 46.01398030807207, 21.435868955768584, 20.902882454402594, 97.10419509932544, 173.0117730361768, 50.34814917752902, 81.3934738404294, 145.10756224354594, 41.14782681295188, 71.84165055635606, 18.11518304952701, 17.608659970921273, 16.47666558023236, 32.42059341845406, 238.4029303141371, 15.429250838218971, 17.00004792644514, 70.9845045109032, 24.57005938418395, 186.6980892916604, 205.1687458631252, 5.134664330280105, 6.835008850688357, 10.348228836631163, 8.558182861422218, 109.01847794091128, 111.90949990769084, 56.977642059954874, 23.762754991061236, 111.80358069445226, 26.84388862943622, 55.07646826720035, 7.63422207906947, 62.554319323707766, 8.729248780301983, 126.13228626292397, 31.026604620604395, 9.296015622336093, 109.25514029001997, 69.87172258249504, 10.353109688470255, 5.675232884360324, 12.91705137320806, 109.78287566890111, 32.027684558487515, 46.51524584620006, 21.032741524459215, 21.030847807421384, 6.833832142220172, 34.86247345441681, 55.81689200992983, 64.21979335573432, 19.93035258403655, 9.29966207287971, 38.410400906161996, 15.683345682378668, 35.24796698752922, 88.86412415820854, 9.731032682407996, 38.27448535370997, 67.3155478997805, 10.925046965988008, 10.670988262778579, 8.40008287003578, 86.98497882526117, 77.23672113146998, 14.351085950687697, 59.697704164513496, 59.34843945716605, 27.43184023943178, 17.196577410500392, 64.53082922732112, 16.91308118018187, 13.48773409646721, 5.136041121375775, 57.485879449379475, 5.037498293495243, 5.179884179864187, 16.70657090007346, 143.1462840825871, 14.961381816335855, 21.543539223201122, 13.617325818206046, 39.61547467836871, 89.7087179425551, 38.86767086916261, 22.3179020802533, 76.21162375592966, 13.548177207999522, 87.23488141778259, 50.16105301454425, 33.89105007486562, 68.44254828836065, 5.641789909225688, 66.04093195181864, 21.731316614002488, 9.356571894167363, 57.93047201361455, 96.82717137108921, 15.304916317307908, 10.087561242183876, 35.734891845686946, 25.398708700396316, 17.10822895376444, 118.51433087860552, 25.46794910064331, 11.084283103523644, 54.45582866538386, 5.970382478260357, 25.534555411679037, 111.34512418238916, 71.48500348464825, 23.741081060324145, 26.04877064272404, 148.88264407735136, 7.062036335689129, 34.63017432720941, 5.811355558410716, 23.48714577461339, 49.69008815587938, 40.70405240269598, 66.48945730894135, 85.35599993811627, 15.593558687127413, 38.41032193427759, 16.40307660070809, 16.07506680700278, 5.9759519609922656, 11.738161050053478, 18.786103806091734, 428.1319893458302, 5.142766846759505, 7.504235964618506, 11.668590395583077, 21.041649576218663, 109.02991777188409, 45.33743187494208, 47.20583477176388, 6.33217424052349, 32.014877188931244, 9.164245672787304, 64.56606928262056, 64.07656742730171, 106.490812391734, 8.46423407578154, 181.6920875432131, 74.47756593121696, 134.37703335351037, 25.12277849341787, 83.10823385163576, 41.94795965854109, 84.44747641552412, 81.03777782388025, 63.343595032694765, 26.256169125133805, 53.54884473480722, 9.281070665891122, 70.54267324602478, 17.092022216479894, 26.64128634407057, 33.16769965094516, 16.23990578641396, 14.915628795195355, 16.653377211750765, 35.596913372903195, 37.63056534791583, 13.32871713564345, 36.445684735502994, 88.87687138109132, 14.958169899155484, 8.096428116335531, 54.28743180979945, 27.83489332194169, 47.92873247828991, 11.334370447981335, 32.620572826181075, 244.22091873611535, 24.758173117369356, 47.65958498024856, 153.974536436497, 92.33046920958824, 17.744496422857054, 10.54119914522349, 87.3561533005928, 49.67762378540575, 7.473842998647512, 35.57225744850089, 41.30394175335024, 22.31449186278256, 32.26030230457131, 82.03219224794981, 82.06123910798162, 18.251525904320907, 126.04869631374403, 39.347903796099665, 74.81379995913778, 5.992107820342952, 110.57306970023267, 64.95301310649434, 68.69808543237852, 45.904568581186865, 25.546512833229094, 22.837765337803994, 17.919205757101626, 16.401284348042847, 18.734711493925804, 51.41850074675868, 33.314342861784134, 7.6833713316290755, 10.786995099554106, 19.923930464148757, 64.67688219642076, 57.654962133057445, 12.435915893624731, 115.6968565581288, 182.26837769251034, 24.1111342289922, 92.08403152951212, 20.57454669635199, 61.55306141225984, 76.16056076038497, 50.721623084975775, 6.5612144299725355, 6.155737396204878, 18.99123711800917, 17.786075123798522, 20.11633038302126, 66.66527767438902, 140.285333878137, 5.624514817442839, 52.59075512839954, 11.178766822847104, 10.75876111804464, 29.088172559156227, 38.692867575850705, 140.77799145586252, 18.130482027570928, 60.726321165712, 25.022778585913006, 73.3452674910562, 8.272594176819911, 54.64197438060397, 14.121368052896782, 46.88702246237715, 22.597467266868875, 14.527218985310077, 7.666131736683491, 22.379940600875532, 13.119623522031674, 5.90680213903568, 57.21420181076257, 6.8897729485968835, 8.306707920507675, 25.225825581687037, 13.304532736055833, 59.16961042140808, 32.579994637850284, 91.9859961873634, 36.451998581454376, 23.02706206337287, 14.384798294367709, 16.555889147104974, 16.705513599567414, 19.64480516858896, 40.970021507412945, 28.775912650952915, 55.10065656779878, 21.392145724527264, 10.446403393834935, 170.70310230352845, 18.88146893670055, 124.50355378760315, 27.330638923854572, 22.581212874543063, 43.28889303138706, 11.069581035517063, 124.4832069728219, 90.52625751260976, 28.58033891259811, 125.84355120648684, 129.92653760037058, 59.291679233470695, 55.10665977617394, 71.7893869091173, 20.128872225924464, 15.889705949936616, 24.455997514918348, 10.507321772054045, 51.507011676771256, 13.073397911741159, 92.36164500237719, 24.86753151139107, 10.449053752403712, 27.965935850640598, 198.99319042757617, 12.349854205402803, 168.96797776348728, 113.21358336353855, 109.68563997059059, 134.35250954625982, 10.796794749086171, 82.31932425929695, 66.4526380878138, 8.586160199906123, 81.9829863023716, 5.258961588850503, 5.981514272126638, 33.21499292217426, 6.078212059426743, 18.26670847062485, 70.6880186377334, 101.40506181274925, 60.73806207036132, 26.246079332042317, 11.311115623678374, 68.46154550458559, 17.466131038402015, 31.08791255518025, 25.7154100164769, 19.514191047119684, 11.552560268373663, 34.542760180345034, 26.051760374144614, 113.11560267959099, 9.73251411849788, 5.270407521745413, 24.1112273100956, 30.037016278396287, 104.35111873409167, 5.463841849988771, 53.81227421427221, 78.69232458262755, 92.46546865467566, 45.430290505739336, 73.16402393919117, 34.5695565905726, 23.898679163893366, 20.773574149141442, 84.92217350083038, 73.1787307724167, 330.49839137567074, 32.02868865245348, 155.8593787849931, 28.362869210788347, 58.914737254454955, 16.47231723385129, 131.9021868884147, 59.07617952504778, 21.46492643001744, 60.191080695134474, 7.284092868460722, 91.00494099567014, 102.9713842576092, 53.43791385795249, 11.905196104259549, 12.967466401511011, 28.20137763713415, 68.7011015543277, 11.041089150293596, 33.89723941919396, 34.77837454951628, 51.6084668155763, 55.227467110874684, 17.418057091977335, 31.727466271943527, 32.77923703614007, 70.31589991568606, 113.0090447212871, 92.32054879906599, 8.125201617352635, 95.5300122377904, 6.2987740165282196, 14.998340252202448, 116.50193663051662, 107.83799682381202, 57.10515817189671, 9.37537556637813, 41.71259484986565, 181.33874922003392, 170.90406347494562, 93.57072049171225, 13.492608584159276, 35.277342483970244, 75.69846753427254, 44.78868655130437, 16.246357590011904, 18.209827054187834, 31.835537621250925, 41.4041097246203, 38.20921792548226, 9.871803037791185, 64.28376968369977, 12.252492808021138, 42.937746030373255, 16.999499704563515, 12.319929899943945, 25.25653443337863, 70.76638949525314, 9.723128088973745, 9.970740916525068, 5.670362259144964, 68.78256240279353, 50.65783437709804, 57.03466157568111, 95.14324846879933, 6.406973673443702, 34.42767040293958, 5.415640037797861, 17.84042033533673, 15.270113664408264, 68.25474929776622, 103.49168886867504, 19.484769785818756, 64.84891354500013, 46.361003046080356, 84.59809768101726, 6.856713663858303, 24.49615338984406, 37.27235274889238, 20.173151811425033, 22.744187518564658, 64.5386451877709, 40.240312644099696, 7.069202879725946, 5.903734264208494, 12.819931757674086, 20.241771529833464, 11.475149098295827, 35.31560927995612, 53.57303636423704, 76.74211165233186, 66.16626284206075, 7.41261601588905, 30.950517661828048, 28.29151314860831, 20.90209302186137, 5.730632670808355, 75.14718624227483, 90.86766622276039, 10.223092213827368, 28.096819226470455, 8.402647289892087, 78.4083624798913, 77.32006954025124, 29.002192897978748, 112.87328140007459, 83.42870449041739, 28.438647521156554, 14.651756704577595, 10.4183436906559, 13.227037801749407, 67.68176180473857, 83.15340945472948, 6.6987124997563665, 126.62707560979828, 27.24798744510106, 6.056229474945379, 26.28081913893292, 49.57282103726214, 6.866928054473602, 224.00119353715564, 15.102586222848482, 50.82189639828505, 5.626449634457716, 8.386846427278785, 5.9649535058013905, 84.37921518372865, 23.145073319930848, 53.145086717257485, 6.079486793652755, 31.529368257414237, 15.394804777130599, 6.554143632083325, ...])
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)