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 = 47188
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);
([3951240.1043347735, 3951243.4412668804, 4208465.71401173, 4350870.3125, 4487585.360380844, 4717787.390616475, 4739387.040519379, 4754280.438726792, 4774818.75, 4779292.1875, 5666147.639343094, 5668245.242200024, 5722260.267733136, 6429956.189525563, 6670830.669365733, 6782451.335886526, 6796648.4375, 6872875.724715889, 6923047.144304167, 6923715.162203462, 6931014.607784944, 6931220.186823114, 6931890.331501137, 6932078.125, 6932771.050606822, 6935797.005966833, 6974365.997996309, 7031666.606271985, 7104819.7242669575, 7130560.703926495, 7131452.9226598535, 7156451.5625, 7156863.513199173, 7159074.819040733, 7160799.392923372, 7162387.5, 7166582.519848267, 7168007.150675715, 7172303.953203483, 7180433.017233375, 7184901.523379269, 7185295.236854148, 7186342.7109378325, 7186759.70991989, 7187115.479712444, 7187468.552234785, 7226598.75383731, 7244372.171276956, 7246579.6875, 7249547.396976491, 7273991.960830425, 7274214.590912526, 7274220.3125, 7274448.108594327, 7275395.571450133, 7276589.061004128, 7277260.81294561, 7278124.725060732, 7278645.3125, 7279481.042812118, 7281718.10834093, 7285543.700666593, 7291074.242180548, 7292256.25, 7293400.909714388, 7295702.281545293, 7297022.300291749, 7297030.331898681, 7298009.9677402405, 7298321.871278311, 7298440.8458576, 7298617.1875, 7298737.525770072, 7298963.735752051, 7299069.445006276, 7299131.563680676, 7299417.1875, 7299571.875, 7300005.947525874, 7300143.896211451, 7300151.5625, 7301120.3125, 7301407.812269733, 7301698.386330677, 7302415.625, 7302652.478796875, 7302717.1875, 7303072.689569642, 7303284.375, 7303650.0, 7303779.6875, 7304098.4375, 7307482.8125, 7313269.147583847, 7338604.986081492, 7339550.99047563, 7397106.25, 7401579.584244766, 7406428.8571477495, 7417025.8515343405, 7417476.2906876, 7419781.25, 7436746.336705671, 7454529.294736711, 7457802.584312841, 7458995.3125, 7460960.783518215, 7460979.537724832, 7461154.6875, 7461238.12647974, 7461436.670177543, 7461558.184099194, 7461645.164058877, 7461780.955530946, 7461809.375, 7461890.625, 7461930.538099138, 7461983.592166365, 7462158.677865064, 7462188.461521469, 7462223.078220599, 7462227.68735295, 7462273.4375, 7462293.75, 7462365.684845795, 7462369.335142315, 7462463.887003163, 7462502.61488701, 7462556.25, 7462574.186463698, 7462659.814980122, 7462676.5625, 7462831.0945933685, 7462880.838007688, 7463072.530929086, 7463573.1081151925, 7463594.206820841, 7463642.80130833, 7465452.3440836845, 7466019.392605816, 7466414.549758041, 7467106.25, 7467183.93546804, 7467187.73853438, 7467428.424783861, 7467514.642730441, 7467600.0, 7467633.119495285, 7467662.5, 7467691.903658578, 7467692.764552684, 7467700.0, 7467729.6875, 7467739.789571478, 7467800.311141072, 7467879.96369625, 7467995.3125, 7468026.843788674, 7468248.174720393, 7468451.104351407, 7468478.125, 7468503.125, 7468690.625, 7468759.375, 7468842.937014256, 7469058.069761145, 7469065.1841215715, 7469215.266199076, 7469231.100255333, 7469735.9375, 7469784.272895118, 7469823.4375, 7470026.540408748, 7470125.97321202, 7470158.996086658, 7470232.685807213, 7470307.691047976, 7470370.3125, 7470543.943680982, 7470624.958069224, 7470775.0, 7470814.05925283, 7470817.627368855, 7470820.742943679, 7470900.0, 7470909.375, 7471054.6875, 7471113.960706005, 7471115.552437111, 7471126.678949229, 7471303.042595948, 7471623.4375, 7471953.507847597, 7472687.5, 7472689.800841289, 7473006.368097803, 7473553.125, 7473624.87422353, 7473649.132799411, 7473828.941093115, 7474099.08931969, 7474521.356420012, 7474741.952464898, 7476878.125, 7494521.875, 7502788.211283191, 7506490.625, 7510348.4375, 7515229.6875, 7568328.125, 7571239.0625, 7572328.125, 7572404.703587775, 7575383.02437973, 7627188.379168551, 7630628.125, 7655746.875, 7696402.260472585, 7697526.5625, 7708464.722292206, 7711984.375, 7722925.0, 7728461.603317147, 7729327.618095329, 7729446.875, 7729953.863493834, 7729961.175667317, 7730039.043017296, 7730542.122172946, 7732448.320516664, 7732464.766634305, 7732612.966599142, 7733166.979045449, 7733608.770071319, 7740238.437402691, 7740445.747443938, 7740688.036645981, 7741122.287367979, 7741217.1875, 7741255.435548161, 7742625.0, 7742686.721017159, 7743698.4375, 7744229.584004417, 7744478.368982679, 7744664.0625, 7746186.2575727925, 7746781.981659391, 7750454.464069101, 7750533.048885262, 7751492.150545711, 7756917.1875, 7762267.1875, 7762567.33978433, 7763037.5, 7763375.897149312, 7764785.760953937, 7765720.3125, 7767251.4886295665, 7767588.02508644, 7768617.551641297, 7769034.375, 7769732.238940957, 7770696.875, 7773737.384364319, 7773815.478111088, 7773999.535818435, 7774521.506846679, 7774798.899299045, 7775095.3125, 7775211.782879403, 7775212.64590806, 7775376.359002975, 7775951.5625, 7776390.116831386, 7780901.5625, 7780916.208775502, 7781029.6875, 7781081.25, 7781161.998364563, 7782818.571096632, 7782839.551128441, 7789055.855038404, 7789056.73014199, 7790112.023205275, 7795383.253080444, 7799282.272418326, 7800801.459567545, 7801107.660264129, 7802144.541980016, 7802758.060478074, 7803181.25, 7803751.439887927, 7804431.119939513, 7808047.871624589, 7808707.615106865, 7809239.947594501, 7809275.0, 7811582.8125, 7813107.415617372, 7815575.0, 7815835.815212171, 7815837.541666229, 7817228.408605696, 7817831.691782169, 7822741.28980209, 7825302.595518883, 7825664.0625, 7825970.714351522, 7826021.788038649, 7826830.214811827, 7827600.0, 7827674.448078118, 7828101.5625, 7828480.835759662, 7830727.105607879, 7831169.829369603, 7831906.658076257, 7832355.786241121, 7832452.78908203, 7832511.903824791, 7832861.6552208755, 7832953.767501546, 7833245.3125, 7835200.0, 7835856.6850819215, 7836895.956560395, 7839321.883615739, 7840668.165174281, 7842217.5605853945, 7842226.5625, 7846428.837838143, 7847235.9375, 7847639.0625, 7850442.760857081, 7852395.3125, 7852478.954345857, 7853312.5, 7854440.241044932, 7858520.3125, 7863575.430816918, 7867996.494975887, 7868965.897735591, 7877004.274211073, 7877241.5044523515, 7878960.9375, 7880410.9375, 7880971.875, 7881296.184240591, 7883044.879254569, 7883327.250269778, 7883365.625, 7883709.375, 7883868.75, 7884095.087615756, 7884281.668720481, 7885982.353377194, 7887610.252452612, 7888510.637037571, 7890296.875, 7890648.4375, 7890943.910786754, 7891268.75, 7892402.491771198, 7893688.945328199, 7900863.991705497, 7902129.3599353265, 7904084.375, 7906906.25, 7907049.0360389175, 7907196.3088766625, 7907801.54051907, 7907980.18998311, 7909496.819444741, 7909929.881593148, 7910296.282899352, 7910350.027145816, 7910679.529558322, 7910893.284834628, 7911625.59526026, 7912252.546989315, 7913357.416605841, 7913359.079532106, 7913899.376650144, 7913902.814513596, 7913967.078592371, 7913996.815545268, 7914308.462583017, 7914423.4375, 7914568.120526756, 7914620.3125, 7914640.664408467, 7914662.557755505, 7914833.438778487, 7914861.633801909, 7915029.395834525, 7915211.472661665, 7915243.75, 7915319.355204411, 7915346.045507901, 7915374.234133465, 7916046.343617477, 7916429.875536806, 7916434.911496271, 7916475.0, 7916492.272851645, 7916494.034112012, 7916554.6875, 7916602.9856785545, 7916788.756286163, 7916926.5625, 7917020.264010212, 7917024.967799992, 7917397.59671525, 7917805.507935744, 7918547.055965437, 7918651.529010921, 7919121.322003185, 7919227.072836371, 7919379.6875, 7919715.625, 7919900.0, 7920118.75, 7920207.948709539, 7920279.617655119, 7921151.423439881, 7921176.5625, 7921181.25, 7921668.75, 7921785.345086269, 7921976.309967049, 7922123.039454746, 7922143.802108681, 7922364.5087468065, 7922460.159274379, 7923282.456628646, 7923405.52335799, 7923467.1875, 7923703.976190365, 7923784.0300748395, 7923992.1875, 7924070.3125, 7924546.875, 7925812.325534586, 7925843.618148759, 7928117.289975699, 7928382.730844191, 7928828.134745756, 7930970.990686329, 7931212.718276915, 7931256.242680907, 7931268.323035125, 7931450.503920375, 7931579.6875, 7931817.936542292, 7931825.0, 7931998.4375, 7932027.790626242, 7932320.77836196, 7933165.625, 7933299.905322731, 7933381.247880021, 7933810.658668937, 7934140.625, 7934229.278407463, 7934312.671076305, 7935342.047647514, 7935398.4375, 7935531.25, 7935907.633768698, 7936061.099471133, 7936332.508526044, 7936357.581783088, 7936395.3125, 7936456.25, 7936675.0, 7936685.426126621, 7936801.050995443, 7936860.126696809, 7937146.212883196, 7937262.5, 7937408.286101062, 7938143.75, 7938262.781774632, 7938324.851657686, 7938509.640528393, 7938590.625, 7938866.671321862, 7938943.75, 7939153.0091473665, 7939372.854170479, 7939484.375, 7939635.634890733, 7939873.4375, 7940258.410258994, 7940602.932500942, 7941010.9375, 7941024.504001735, 7941493.26216557, 7942443.75, 7942569.869730281, 7942695.015716, 7943258.038858349, 7943261.597233026, 7943273.85445333, 7943534.242025573, 7943603.095331662, 7943728.548249047, 7944197.373957977, 7944329.733057025, 7944356.240342609, 7944390.121028754, 7944512.5, 7944582.663233951, 7944595.060708228, 7944682.046332098, 7944710.412043246, 7944766.502874081, 7944870.645242723, 7945026.186233014, 7945056.746856951, 7945108.563976815, 7945145.657307183, 7945244.938921333, 7945254.557626691, 7945284.961196242, 7945284.980368867, 7945292.1875, 7945302.062866463, 7945329.536978424, 7945503.18902631, 7945529.696464026, 7945531.18576654, 7945583.865229701, 7945666.938857235, 7945751.423642874, 7945869.887939117, 7945894.967141885, 7945947.603496562, 7946000.0, 7946027.273636702, 7946061.162550834, 7946154.6875, 7946174.939493824, 7946261.298533047, 7946422.3846606705, 7946549.633301485, 7946571.752265381, 7946639.0625, 7946717.979545844, 7946754.294731224, 7946793.040336039, 7946980.55978174, 7947096.875, 7947237.5, 7947299.548072203, 7947323.4375, 7947370.741194824, 7947435.9375, 7947437.5, 7947593.913579182, 7948526.313690672, 7948982.8125, 7949057.679288142, 7949743.75, 7949846.854661284, 7949973.078567323, 7950143.005795796, 7950397.329260544, 7950407.306897678, 7950602.501237629, 7950628.125, 7950664.0625, 7950941.815531233, 7950957.142507953, 7951046.975011341, 7951171.875, 7951260.9375, 7951341.545925467, 7951344.307220019, 7951401.651204636, 7951518.75, 7951662.5, 7951669.737916265, 7951740.625, 7951796.955435435, 7951800.816614492, 7951802.941550944, 7952035.991053951, 7952112.351938878, 7952116.135130258, 7952166.048372487, 7952193.929167213, 7952221.029564918, 7952225.0, 7952287.5, 7952333.920944939, 7952364.0625, 7952386.235935299, 7952387.121814508, 7952403.125, 7952447.920425023, 7952646.1787694795, 7952684.519347985, 7952719.748588083, 7952760.739377462, 7952812.5, 7952887.686942044, 7952910.597417344, 7952975.0, 7952994.361187522, 7953068.208086049, 7953115.625, 7953158.475266751, 7953264.0625, 7953304.6875, 7953379.6875, 7953618.75, 7953737.173132459, 7953757.8125, 7953759.29807921, 7953769.265785657, 7953917.086784894, 7954196.106642018, 7954229.6875, 7954248.441688207, 7954643.541090545, 7954705.88541767, 7954731.732058348, 7954737.5, 7954801.315179116, 7955089.421796108, 7960987.276828692, 7962782.8125, 7963135.992911833, 7966832.804014121, 7970537.410627341, 7972762.5, 7981950.5046481965, 7984717.1875, 7985208.386987167, 7985284.999775966, 7985565.186168115, 7985631.25, 7985897.137430768, 7986266.806719222, 7986349.2297503725, 7986543.13570859, 7987335.378982177, 7987399.027754989, 7987412.641224793, 7987511.03617373, 7987515.625, 7987904.4670154415, 7987928.026683927, 7988008.401665245, 7988205.626804644, 7988453.13564531, 7988865.625, 7988887.369037338, 7989062.5, 7989124.454874533, 7989146.800861418, 7989218.75, 7989328.125, 7989379.82995473, 7989528.125, 7989594.870118725, 7989595.239604881, 7989646.341520769, 7989739.032543416, 7989744.5947249085, 7989749.551844405, 7989964.0625, 7989968.75, 7989980.490681476, 7989989.306349442, 7990119.483006158, 7990146.569110757, 7990163.594367617, 7990196.708916981, 7990423.248135724, 7990607.806251315, 7990642.1875, 7991072.36469041, 7991104.639209573, 7991142.334928748, 7991201.5625, 7991217.7288043685, 7991309.0872147195, 7991354.271017275, 7991410.9375, 7991434.375, 7991437.152906299, 7991467.612596967, 7991655.27089955, 7991691.794112683, 7991692.1875, 7991761.941292969, 7991796.823782714, 7992212.915786028, 7992237.613872278, 7992385.599292607, 7992482.8125, 7992546.269206362, 7992557.8125, 7992635.432675231, 7992698.235629637, 7992967.504617969, 7993001.879809856, 7993231.556538115, 7993449.048309075, 7993524.100608475, 7993564.100546299, 7993781.25, 7993807.520130708, 7993848.537728432, 7994238.606092312, 7994366.645636756, 7994679.085794833, 7995159.053392231, 7995525.0, 7995818.105625929, 7995828.255352136, 7996059.42169137, 7996452.685874858, 7997141.697905833, 7997785.698911394, 7999465.625, 7999860.36647216, 8000063.026463271, 8000324.642691498, 8001351.285093103, 8001950.684646776, 8003114.0625, 8003993.029661533, 8003999.792199512, 8004335.806951701, 8004434.194908624, 8005806.837542247, 8006122.643064392, 8006161.386487969, 8006660.959248346, 8007296.875, 8007297.670603243, 8007604.404021821, 8010427.018738014, 8012349.598881422, 8013761.520181798, 8014492.1875, 8018966.830961497, 8021914.0625, 8023620.215185704, 8024522.301650325, 8025825.324015533, 8027934.375, 8028258.503790069, 8028384.469050878, 8031073.357542801, 8031675.505873426, 8031680.7591437595, 8031737.786642672, 8031745.554588878, 8032320.555549848, 8034066.805096899, 8034189.688250267, 8034704.6875, 8034874.201312184, 8035094.491599817, 8035259.079161156, 8035354.340895943, 8035655.135414824, 8036007.8125, 8036820.1941885585, 8037666.975268079, 8037674.073632281, 8038264.344206881, 8039175.0, 8039344.801477116, 8039817.1875, 8040207.353855031, 8040449.70144263, 8041215.129065063, 8041311.522855823, 8041564.0625, 8041628.077473268, 8041656.471791778, 8041960.9375, 8042085.9375, 8042286.740000484, 8042560.9375, 8042621.223779962, 8042698.108626138, 8042831.25, 8042848.4375, 8043016.0625758385, 8043203.125, 8043211.564493171, 8043215.072133802, 8043224.936691463, 8043479.198960828, 8043487.344136422, 8043582.105787095, 8043743.3887518775, 8043829.6875, 8043856.86643057, 8043893.75, 8043929.479890279, 8043950.922757966, 8043951.5625, 8043971.639675014, 8044103.125, 8044123.82244072, 8044297.981662747, 8044318.853340443, 8044327.202095281, 8044341.213613494, 8044469.591188585, 8044643.375445469, 8044646.548023713, 8044651.5625, 8044687.665971105, 8044890.625, 8044934.375, 8045050.0, 8045093.613323984, 8045226.304760806, 8045276.490303773, 8045316.464527967, 8045433.428183821, 8045536.139484384, 8045549.45259363, 8045704.6875, 8045840.625, 8045939.0625, 8046057.8125, 8046240.625, 8046385.9375, 8046418.483157756, 8046622.984842198, 8046631.25, 8046679.6875, 8046787.007189383, 8046812.5, 8046832.2665199, 8046929.6875, 8047166.730339352, 8047242.1875, 8047453.4600718245, 8047459.165974548, 8047480.491848831, 8047566.895419961, 8047872.715163369, 8047979.6875, 8048102.501412565, 8048292.366494258, 8048344.27952869, 8048430.146522015, 8048461.038855283, 8048614.079286859, 8048760.859162276, 8049056.3496467685, 8049445.003166417, 8049638.0727620395, 8049692.1875, 8049851.5625, 8049882.8125, 8049901.3839753, 8050012.5, 8050229.656567488, 8050640.625, 8050661.5566576095, 8050687.01860112, 8051150.0, 8051508.473934085, 8051685.644222952, 8051856.923715798, 8054346.2508511385, 8055335.9375, 8055335.9375, 8056762.699857542, 8065450.0, 8066184.375, 8067003.652644212, 8067477.588046147, 8067646.0926638525, 8068270.3125, 8068320.812398802, 8068498.4375, 8068531.147536963, 8068651.5625, 8069408.851598827, 8070332.315063264, 8070539.0625, 8070886.550345948, 8073280.505026677, 8075228.836990436, 8076247.601301793, 8077239.7277902765, 8079562.5, 8079625.717084333, 8079768.13121345, 8080492.040758252, 8081296.857807793, 8081434.161970823, 8081954.775381426, 8081957.757464007, 8082819.886194859, 8082899.577664249, 8083626.5625, 8083768.75, 8084111.967132237, 8084130.2889932245, 8084182.8125, 8084345.086170801, 8084452.348458052, 8084998.985912342, 8085193.75, 8085672.815199187, 8085764.0625, 8085849.991638294, 8085897.071119632, 8086651.5625, 8087112.892430239, 8087453.125, 8087474.601260962, 8087802.994838631, 8088143.030567483, 8088153.272645685, 8088302.4139329735, 8088389.831482187, 8088403.125, 8088424.314810103, 8088487.808575377, 8088596.875, 8088770.936690546, 8088784.571414797, 8089077.299613431, 8089092.1875, 8089182.119798782, 8089190.625, 8089234.375, 8089271.6303713, 8089348.4375, 8089348.851787137, 8089449.929738716, 8089460.9375, 8089639.26405835, 8089679.6875, 8089789.013272934, 8089838.583006551, 8089874.255360741, 8089933.15307234, 8090024.5661768755, 8090065.092628171, 8090075.593291021, 8090104.523108596, 8090112.5, 8090186.771633873, 8090205.8526634285, 8090207.432504389, 8090218.75, 8090226.829801065, 8090249.736205487, 8090256.694668988, 8090257.299001285, 8090265.625, 8090293.75, 8090378.125, 8090397.473300856, 8090518.75, 8090523.4375, 8090559.375, 8090574.690224529, 8090579.13725833, 8090593.75, 8090602.009832119, 8090606.243909534, 8090610.944546044, 8090621.377622817, 8090644.10412091, 8090661.870948707, 8090670.53145383, 8090677.264925659, 8090705.922180164, 8090712.5, 8090714.011494279, 8090715.166623203, 8090730.954570375, 8090754.811466875, 8090781.710780296, 8090800.486277855, 8090802.738997754, 8090804.6875, 8090814.640037232, 8090820.296826554, 8090839.1894543385, 8090845.2651455235, 8090845.3125, 8090867.1762114195, ...], [10.400962410743308, 23.639825467851395, 47.58240110989277, 62.74425161416574, 20.75681064016595, 48.33547233233634, 10.478196221882312, 5.8717373260956816, 29.538648078433674, 45.70422236900783, 25.739839278103357, 73.59019045652849, 12.88395956833397, 14.715912495040282, 8.884381712690937, 55.545875712034814, 60.12957004894906, 6.1668514392045894, 9.56999176224366, 10.473960131451578, 12.102339152258384, 38.528359291048325, 23.834141415604087, 29.532018773388124, 18.770605481039293, 5.950892636029585, 46.082783190515414, 66.15121123088998, 70.35190523782177, 24.63802700743465, 25.083871218865035, 31.68060374320346, 63.18712173799698, 14.293896620686736, 58.458325672993944, 122.88407494669318, 20.379440710262404, 71.11213701816432, 58.505150405798105, 24.677368178753625, 9.298542006843213, 11.011490833045187, 45.529883393441324, 101.4449325256267, 6.734843574427124, 87.58552365209864, 11.660988989436737, 31.04347504241282, 61.95636994119724, 23.926165295072323, 106.52524690152103, 9.822098242102443, 73.1487403820039, 6.4367394679264684, 11.558114332271058, 11.125369463418055, 33.44761828125941, 10.7235346238878, 44.53747891939113, 7.0680328948749995, 13.260400042099254, 14.756749495736345, 12.671362363092229, 30.29386777367889, 60.600643522066946, 162.3965105647888, 14.49763440585043, 6.352197574653877, 39.98887681302709, 28.45166218596297, 21.58424022299912, 45.27941583463799, 43.16412117837018, 23.414982591707048, 8.691811731828487, 72.28852517672595, 49.98887821121553, 53.79278637281861, 10.685691714959175, 9.458170787524402, 101.50554186361842, 44.941843204836275, 14.940631823950799, 38.39295837359084, 95.30864546142459, 18.382283471229705, 42.677525373445526, 60.14860958418742, 35.83366594242249, 31.214492453012728, 64.5720459636841, 73.28249210849248, 35.005622613264386, 9.69184128717084, 35.59878518159729, 96.4805669160928, 38.73668445657988, 26.63757737986945, 39.320318970678954, 26.291268134419568, 79.42517035841942, 66.44479846355664, 28.11640835423109, 29.201311590814896, 16.59226495663074, 113.80270350083741, 49.61570699470526, 170.8615958350486, 28.657647140322705, 7.8467119203740685, 113.62240308140312, 34.17446709006069, 8.209608697761148, 13.926548215714316, 90.55142837250804, 40.11390359931883, 15.057717577611637, 45.44927481805355, 19.728800497829877, 6.6491775224437, 67.7075973976671, 8.986872387970328, 113.39439424257966, 62.21112792977878, 7.62502725674398, 58.51389886330279, 30.32290892259968, 5.119747770411367, 40.247916301749015, 12.542216155229484, 58.73119334843799, 54.18654295907914, 49.89746688435776, 56.69447746356925, 18.212787773252387, 59.37104439052547, 8.543887641470066, 17.631459654395414, 19.084258018460297, 18.126386542880933, 12.023877399778916, 130.0670304197411, 154.25826865562772, 77.23512162616116, 16.222123131738574, 6.15059062241635, 51.736406715107236, 16.25674931265862, 64.7371454282867, 33.87610813642884, 48.49164393553527, 85.06006919550643, 50.492628885366685, 12.492560687954425, 23.42434724285142, 24.26068861840961, 35.74268390241503, 6.5321086506771024, 5.916843189414651, 59.34562622992541, 104.61971459627186, 38.86050255582926, 28.94782029830402, 60.29320692336586, 106.35002123384888, 104.47687635464571, 41.82506372416525, 10.609658411776408, 66.0678930520318, 87.25725949808675, 16.841409127720993, 110.71406714092186, 28.094981466264414, 20.646363553618226, 9.030322581562304, 26.24941751565295, 26.335034673553146, 129.04071136775337, 50.10468515790366, 14.784061696856815, 33.18859409595213, 28.461017837936684, 16.932904913971253, 11.87450237000353, 117.03708137088071, 80.37011920699896, 43.25856653783284, 5.806486579395853, 9.270791673433484, 36.883815220334164, 16.26823922180114, 55.13070597254647, 16.633567555072585, 40.54973977464229, 108.68717854099597, 38.64294399489056, 38.024714884439085, 73.27757378518456, 71.9185090851467, 53.966967166019316, 6.901009553481489, 8.928300904740096, 24.617632120733898, 72.65798150812897, 50.342245422467364, 18.583661864659067, 38.1137152781328, 65.60414658071153, 50.10416240820579, 36.165464054241156, 63.25702131873062, 79.56654319331771, 36.04743205295372, 108.99033395993523, 12.850504858556032, 31.010091021471435, 52.245870451629074, 12.427482033182544, 69.07406721426717, 12.343651915688726, 180.513005306369, 83.51950980051836, 12.356764858842865, 13.307175461669846, 46.00968121359469, 18.77333861616935, 6.525085596452619, 42.33033668618461, 58.08181450845464, 7.561467791837342, 40.35820496670206, 11.944776886022789, 24.995055504454808, 149.0959893683194, 6.025420545276324, 88.99984706198423, 35.398366501312154, 45.1236583245297, 38.87409622203402, 6.007309583813928, 36.555560117207534, 5.658912389004685, 40.420663535422094, 10.969700286722016, 12.365065086322929, 48.523464624821926, 16.32005933705371, 6.364286437930071, 85.56450321868864, 5.209486420703978, 7.589926407987325, 48.57294227676627, 44.68437423401886, 56.08524175121541, 45.6081189659847, 20.032243970417582, 20.558773676686734, 40.07809966511236, 8.247895931145653, 80.75439671767721, 16.538442585342306, 77.5842815003383, 36.32475190281197, 29.26622552053781, 17.093195450362217, 84.47687354770761, 21.858007840615464, 5.062262235475568, 9.75499377921698, 47.547026830103455, 8.790678035855764, 26.986446603101605, 14.218736087902228, 60.58896108801835, 26.733208575602674, 62.119835793682505, 8.62145874158588, 55.35883292160984, 44.61394015326393, 20.25736723382071, 25.431497845276482, 11.98824076343529, 7.466371599638049, 8.557925923096029, 30.819749146223366, 26.46381407979677, 13.217596066739883, 18.557580443198574, 60.288259598350315, 12.641567349866849, 36.29373629516258, 52.671101154896995, 36.508465551042406, 14.46791749639854, 20.860199456350433, 33.326441382685594, 7.37532457860167, 53.61305179874029, 77.63642699204556, 13.617620164341423, 65.984781078766, 10.941795585194965, 58.258844890808405, 30.00364931858151, 27.315005834877645, 27.054037096643334, 51.795031738641725, 54.726486993181794, 16.942257686154875, 37.68943895033582, 17.929542423158537, 89.92038126261612, 6.658104692216695, 40.11576391570961, 22.393495691945738, 17.513652973764646, 49.61209934466028, 72.55362895400395, 104.82248568887609, 5.035928169309472, 38.78745085875888, 12.471534535826358, 88.11263258014638, 120.91740517678167, 102.016007900209, 8.530885609038345, 9.942632748279744, 20.50987824825039, 5.890043667998871, 37.449090188206824, 64.98693534158025, 18.59436656678515, 47.7185271179537, 49.832744277556294, 7.824667037830881, 98.08874127566669, 128.48865050005415, 112.36564654268713, 116.5739554191322, 89.4056374407295, 17.04845049468957, 29.52549163645054, 92.12847688009799, 7.016889374013605, 8.813707052593326, 36.54487572441659, 48.088862491784425, 43.648400432027536, 10.196112518693695, 10.51191901118631, 18.071198701484292, 130.93134273211194, 41.22241577576648, 41.607979605298006, 10.793496478919915, 7.76204361419789, 10.478653681733283, 19.826471738176135, 13.907903901687499, 48.82474240870702, 56.75998144469541, 190.88436602492894, 123.554459577745, 6.964382677936984, 26.40545763674529, 27.198457094463578, 8.120632564086886, 147.08953424971548, 73.89810885707674, 112.44777604826237, 13.148525912967367, 5.612829258809081, 17.278851272397826, 14.733904012733626, 6.802884428520733, 16.634270491438283, 15.045995964417333, 47.282533429281344, 113.58743733109227, 5.745719028740554, 74.8194491821044, 17.947482016476645, 38.09334232952903, 139.6681011023045, 39.843755862988196, 26.542712569055855, 11.036029731300767, 52.480375077015175, 137.4725896582385, 12.984905564935884, 49.87676557690176, 15.093874068582908, 12.138063088646735, 6.1557415508059705, 34.963750189209094, 69.75299158044893, 17.467057841098995, 75.76386949377952, 9.901548392005036, 10.039004287353265, 208.3504920259022, 13.24091066483085, 28.761497880298265, 17.474860689351676, 71.17732248192189, 5.712211630919645, 9.583773519996297, 44.182474860102026, 38.47256079116525, 27.888262611831312, 124.81947177462408, 108.02760903637694, 9.304323855199154, 146.0489839584649, 20.82434318063104, 7.169848607949519, 196.12648864789298, 20.98023237784482, 64.20499659062416, 105.9055315732106, 52.90834361219296, 35.345180807398954, 73.11596170378051, 83.35735135363043, 13.358335015820984, 62.30567801286384, 78.80649276912303, 92.08483297301824, 66.29217664615895, 5.5820900560212205, 24.376613948165364, 34.297329177324926, 83.37918027442913, 7.243914387913397, 52.04465818547687, 9.04759121109012, 10.154653083359701, 61.706308022142565, 151.82863088359278, 23.193360246680044, 64.15001600503024, 46.13265879351743, 82.9853087755609, 76.29421664266849, 104.18674389310168, 11.291751979609778, 71.05130103661031, 7.606766364091917, 12.383820731477208, 17.84614542488493, 28.38097079657936, 33.45985842752049, 134.7175906642812, 46.00347609786686, 12.54239550960354, 78.73929854376519, 88.18466900000934, 9.063817374855368, 20.427118705119454, 31.394421346763284, 98.44197127731199, 28.483270759308823, 9.10626251755003, 116.71806665624706, 22.45055891938578, 78.91214493647935, 26.037339790342877, 32.86225028000116, 47.750740422334744, 94.28205898402598, 15.59702728653796, 23.70011225676356, 32.2671340649546, 79.10568205562907, 41.55740053404081, 74.34293267991043, 103.43818672657342, 6.665511650675135, 7.3341399145250445, 17.91092489020519, 29.98205726698739, 5.640793427737235, 30.658213340672162, 11.598682433115023, 5.392833165383943, 179.99988925482785, 97.70875074890581, 50.07834164938612, 118.97249405494246, 66.31363769749822, 31.890763292926245, 47.34667160615387, 37.815342475904565, 47.589627674720255, 43.38872299576941, 21.80059230222273, 29.921615484819085, 10.431864823617772, 115.77786018971582, 50.139141244449235, 22.08365392356763, 23.79190871949959, 62.97547681644533, 16.121746479720038, 18.954948940074804, 26.14766982085155, 34.95968961925218, 105.16188835937395, 17.258870760327536, 65.02169802014355, 6.7615800754288555, 14.793193298536323, 69.14146878755773, 14.401544587935946, 53.549653081788954, 17.69005517761632, 42.98104050109356, 19.829899711031988, 11.502532894211118, 40.96056837751239, 6.8669268611805, 30.65473136021926, 16.44165940080369, 30.452775601115754, 49.71448378559719, 19.361471771163274, 127.15850984954389, 126.89749110869795, 86.82045053239064, 39.26953330637987, 154.95073249860133, 8.291323347976109, 27.315268481128395, 139.04454162218997, 14.071542777802856, 10.917385792850899, 22.280168860188112, 13.770513841703574, 10.034036715050226, 91.43210690694889, 144.07184815171973, 168.39538347586412, 136.5882542040751, 27.382161465385508, 320.9424641326983, 6.3338118432565516, 15.300622833253314, 35.008270668620696, 54.19286161890331, 19.161779998300275, 22.63391660289839, 19.628853556379603, 5.500494236678707, 28.873289343821508, 41.06422429789514, 189.32156069089334, 59.69359122212708, 176.6369070138275, 52.95257995051452, 38.583560877355886, 15.95747254637068, 51.3405133004139, 89.63960607029549, 14.45696663834607, 30.502669984039404, 28.12855441944551, 37.80385100482644, 19.359921221704866, 26.374974109621355, 5.324889990629898, 6.191480961064078, 78.0313764175809, 89.59061348799216, 10.592145546138703, 72.14487598084334, 9.417424744168075, 47.14587261470892, 54.24978357317438, 10.253911144751225, 30.326118124904927, 7.635638839395711, 59.029604257358336, 158.3155268206521, 10.334493125287214, 88.26913377740009, 36.12764135068203, 100.00567949057857, 25.363166185681166, 15.149637960569363, 7.550550169899062, 22.669732157049562, 13.406742378210474, 14.225458498731825, 82.96644455356466, 42.64920476677582, 29.81295113857795, 48.71350585510403, 55.14111183227511, 11.297264531040392, 13.67252572355071, 47.12295435947573, 311.5300651703841, 8.80476890758695, 32.131440892283514, 8.896134123464474, 39.73547833959445, 67.14275851250338, 21.872809078666137, 48.36725360294672, 105.57715866416254, 20.64767853278124, 100.11954868680483, 37.39512326292361, 12.350120481945956, 31.48862131851539, 71.14466104272466, 71.77454905079199, 49.762114840133876, 29.148383721966955, 39.147205807397384, 6.475100450497457, 22.13813754598648, 10.973849065957182, 30.194348556023183, 47.99840695399697, 5.24526252706175, 14.200854985472137, 117.23413423847948, 36.69450932307914, 47.65098288169487, 81.87367670936193, 22.207527670966066, 24.78437089198236, 65.2931161150748, 127.41081057176353, 40.50613928639768, 22.691091465601087, 52.646752159602364, 7.796561520886866, 165.39443671568614, 132.5746483540036, 9.922166822120714, 70.86154734039674, 77.03570664211286, 54.35024066451737, 22.77095427077337, 6.011502501159456, 6.026465932853288, 20.928561807825716, 17.79706306301397, 5.295469616540124, 15.331435730027255, 118.64091502155436, 24.83863151876337, 26.721137921270643, 5.992410102146504, 31.43288992111666, 7.60709245335062, 37.619950794094365, 38.6770018010513, 80.41768383338582, 21.054458531851576, 34.295389153453634, 52.29042311143173, 63.90552574316276, 11.357920683048746, 44.58345596909514, 8.065718424693399, 61.91395658193693, 21.1655040436697, 14.828545185630723, 7.940281198692213, 13.470314337581053, 30.91241466267853, 116.58700830775382, 10.117405142380477, 15.960230622034423, 75.16072117053795, 12.602865235644128, 53.36531747745555, 8.200660107879438, 20.575984127499897, 16.688511481235466, 41.97991585216473, 17.206635149749243, 113.1036143537925, 84.06200239012432, 32.130411981033305, 12.101094928430708, 5.158713005895861, 119.7151709248181, 52.20051209845731, 45.75516283518044, 5.280484843430409, 7.237867662555545, 20.003239656824363, 22.626901163524114, 76.6569114358037, 5.2741356214957, 5.611216947031169, 70.75236434772697, 64.14840533551984, 68.78310031685818, 31.8551876050154, 86.06587835998616, 54.825074745173666, 15.64282919186178, 9.166350658585198, 37.63925546558275, 76.66411052287852, 16.25454819367221, 22.518858884323457, 12.35086427632177, 121.03463646461961, 100.54773618820357, 9.095846650704411, 11.288069561753087, 53.20905404939188, 21.08541542401838, 114.54450044677078, 57.46481253354781, 44.706024818643776, 5.434772679085111, 11.337757366259783, 15.122512484336582, 22.122641928930957, 121.13924017402029, 24.568217609123714, 34.084303827597815, 13.135637774530684, 17.416428398121468, 28.82424632642737, 24.043691968746344, 18.40275396374026, 58.04668146741526, 32.28207799325128, 39.2193397097781, 38.66967983263793, 14.296813789981861, 5.42142048703157, 27.900699070473742, 36.73678677368128, 20.21377345013805, 53.09488735711708, 6.373237507698214, 101.4205817054017, 11.924504622065596, 43.66286373432136, 17.750720194886863, 33.34713539817323, 13.736910778229992, 79.36032697792933, 14.58312738611211, 95.85884263535212, 9.621275902863788, 105.43705084689675, 12.412683187627197, 15.312528625405136, 236.4960425777029, 73.65336376954404, 28.547085909215284, 25.59499250736047, 90.83722991839474, 8.419428775053147, 13.660083730389806, 18.018608127417327, 87.15404788438006, 12.576240712674572, 12.52544621095229, 19.74850689738896, 13.766757229224181, 5.979385496565035, 193.28731622164463, 9.233328389190433, 29.27796711293181, 46.24674662776292, 57.13654760411967, 33.57837039690342, 100.61480311841794, 30.842865627331687, 13.440752931184347, 5.387181816586832, 8.944540037089325, 17.767046946621583, 40.61294803023665, 47.69902973082617, 11.493030163429085, 140.45970045153987, 41.4284300573997, 5.875844483155071, 63.148961912166975, 20.10651489838371, 39.360836992918486, 45.87462799102657, 49.89160931443997, 13.255709847934273, 62.681610253059, 18.02649798622879, 50.614402852448364, 52.60363012649631, 10.441271578420542, 25.78478104780325, 8.79768715481434, 5.3296935640539695, 75.54496777025163, 12.250527839785638, 52.560060370829916, 85.14495991275034, 5.434962100780362, 34.538081762159294, 115.54858367734323, 88.17755523467216, 96.64862905075728, 83.88341863341509, 15.350588403057849, 18.107012088786146, 17.7869910473765, 19.537096308721146, 7.47316169046839, 5.911427444828262, 75.56193921559017, 15.614242589714978, 161.15322099773007, 65.53219745953788, 35.95998205880176, 26.08815409260088, 49.460156819750516, 77.1369936147791, 19.52410376998067, 5.422544464233035, 25.853476156421493, 30.684366756508247, 113.40168767995306, 117.76095511227904, 38.694779898759954, 93.63143948254123, 57.51854385865014, 54.05015939146233, 19.89985702047359, 121.0440899554408, 172.62298685428794, 81.13789263604815, 10.435881256373012, 28.87083004225567, 13.201857026633249, 35.217184206746595, 93.64123783897307, 48.2351133994546, 33.67676319316092, 24.986801593375738, 30.939713350858927, 23.852438121736927, 202.38868685720865, 66.74163421813819, 12.999850971290606, 54.37369686730494, 35.4892321811155, 70.90560804870083, 15.342432949051418, 15.005881442747913, 14.651099188063057, 28.018348481062066, 28.48480874581145, 22.788535227659906, 56.93371364874609, 158.78833698316532, 57.87468124831223, 10.85967427841267, 108.84333903187705, 50.27562987740627, 29.940256847907712, 68.68466976815702, 21.68068512779282, 45.62198568584412, 18.248804544108765, 13.930264994385524, 40.28345053797901, 34.24407434294551, 28.911980063877124, 42.96688544989523, 7.6771583723321815, 78.6826073618883, 89.00049121160869, 25.91082296188571, 13.225964869595211, 24.40772626325957, 49.143808784118434, 65.82957530505408, 119.45063295174064, 10.971240354785925, 58.18255603207465, 30.05305952338827, 21.51870833213216, 65.89875668860273, 17.937226678444144, 5.877052287224873, 18.588528727571678, 134.93150723921065, 30.013111084893072, 132.9709968901364, 18.623680592273512, 43.51012231955114, 76.09165698886723, 14.876383190594114, 64.40635014329706, 11.267906869522365, 14.735806824849403, 145.04795638515586, 36.123158641051425, 33.228362645074355, 57.66037396407329, 44.39635766784256, 16.64229811558284, 63.363853944566294, 24.739721378286347, 19.824413967861084, 38.73949638930499, 95.53606870429482, 20.35408021117176, 50.87711941918601, 11.114662023866316, 31.118780572461127, 82.01640308154025, 16.77833482014562, 34.29357389180598, 43.10655974122084, 35.145533709987774, 19.551823486720867, 27.251623996062612, 19.617741735033775, 125.8428357608371, 102.81969386163684, 60.81423751043909, 16.264363204801164, 177.03392418323335, 217.44116748179164, 64.67966306534733, 8.719050882543499, 50.13390266376285, 161.1502708127048, 69.25828565682208, 70.12651176293612, 10.76571741391346, 44.56502060077005, 20.625978472102368, 148.69531537673873, 76.86334640883038, 83.27759192309753, 31.445371226590467, 50.82620453653022, 75.0549535787062, 17.98068632798711, 134.38055554975787, 105.93620235748632, 193.46701278004937, 67.00712983540572, 75.18924622300742, 90.64518087752889, 115.5112438525244, 22.582235581335418, 87.10832097022731, 148.56505751231478, 49.2027029845833, 14.023119834844428, 83.65600542931874, 27.190950649971803, 167.9242164789431, 59.2460985579138, 53.06536368394965, 161.1867544199855, 163.8914088719676, 97.72152770619628, 43.7333317087691, 30.842466365279996, 28.850052366440117, 69.34140683447858, 90.06296945414879, 59.69210308402824, 8.290306909455785, 21.51930419454063, 16.48808989032988, 106.10815756481841, 8.405860133627526, 7.878716343266846, 108.6014400832428, 120.47594029344896, 35.289028316012676, 32.28764197858591, 9.093498433074874, 110.04402364674726, 11.933378594978194, 11.983579398643359, 78.6218011400354, 31.939387314287977, 16.52993442723919, 94.50263441915547, 109.83791236325317, 14.764036816841044, 46.558571772718736, 8.280616743558946, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3951240.1043347735, 3951243.4412668804, 4208465.71401173, 4350870.3125, 4487585.360380844, 4717787.390616475, 4739387.040519379, 4754280.438726792, 4774818.75, 4779292.1875, 5666147.639343094, 5668245.242200024, 5722260.267733136, 6429956.189525563, 6670830.669365733, 6782451.335886526, 6796648.4375, 6872875.724715889, 6923047.144304167, 6923715.162203462, 6931014.607784944, 6931220.186823114, 6931890.331501137, 6932078.125, 6932771.050606822, 6935797.005966833, 6974365.997996309, 7031666.606271985, 7104819.7242669575, 7130560.703926495, 7131452.9226598535, 7156451.5625, 7156863.513199173, 7159074.819040733, 7160799.392923372, 7162387.5, 7166582.519848267, 7168007.150675715, 7172303.953203483, 7180433.017233375, 7184901.523379269, 7185295.236854148, 7186342.7109378325, 7186759.70991989, 7187115.479712444, 7187468.552234785, 7226598.75383731, 7244372.171276956, 7246579.6875, 7249547.396976491, 7273991.960830425, 7274214.590912526, 7274220.3125, 7274448.108594327, 7275395.571450133, 7276589.061004128, 7277260.81294561, 7278124.725060732, 7278645.3125, 7279481.042812118, 7281718.10834093, 7285543.700666593, 7291074.242180548, 7292256.25, 7293400.909714388, 7295702.281545293, 7297022.300291749, 7297030.331898681, 7298009.9677402405, 7298321.871278311, 7298440.8458576, 7298617.1875, 7298737.525770072, 7298963.735752051, 7299069.445006276, 7299131.563680676, 7299417.1875, 7299571.875, 7300005.947525874, 7300143.896211451, 7300151.5625, 7301120.3125, 7301407.812269733, 7301698.386330677, 7302415.625, 7302652.478796875, 7302717.1875, 7303072.689569642, 7303284.375, 7303650.0, 7303779.6875, 7304098.4375, 7307482.8125, 7313269.147583847, 7338604.986081492, 7339550.99047563, 7397106.25, 7401579.584244766, 7406428.8571477495, 7417025.8515343405, 7417476.2906876, 7419781.25, 7436746.336705671, 7454529.294736711, 7457802.584312841, 7458995.3125, 7460960.783518215, 7460979.537724832, 7461154.6875, 7461238.12647974, 7461436.670177543, 7461558.184099194, 7461645.164058877, 7461780.955530946, 7461809.375, 7461890.625, 7461930.538099138, 7461983.592166365, 7462158.677865064, 7462188.461521469, 7462223.078220599, 7462227.68735295, 7462273.4375, 7462293.75, 7462365.684845795, 7462369.335142315, 7462463.887003163, 7462502.61488701, 7462556.25, 7462574.186463698, 7462659.814980122, 7462676.5625, 7462831.0945933685, 7462880.838007688, 7463072.530929086, 7463573.1081151925, 7463594.206820841, 7463642.80130833, 7465452.3440836845, 7466019.392605816, 7466414.549758041, 7467106.25, 7467183.93546804, 7467187.73853438, 7467428.424783861, 7467514.642730441, 7467600.0, 7467633.119495285, 7467662.5, 7467691.903658578, 7467692.764552684, 7467700.0, 7467729.6875, 7467739.789571478, 7467800.311141072, 7467879.96369625, 7467995.3125, 7468026.843788674, 7468248.174720393, 7468451.104351407, 7468478.125, 7468503.125, 7468690.625, 7468759.375, 7468842.937014256, 7469058.069761145, 7469065.1841215715, 7469215.266199076, 7469231.100255333, 7469735.9375, 7469784.272895118, 7469823.4375, 7470026.540408748, 7470125.97321202, 7470158.996086658, 7470232.685807213, 7470307.691047976, 7470370.3125, 7470543.943680982, 7470624.958069224, 7470775.0, 7470814.05925283, 7470817.627368855, 7470820.742943679, 7470900.0, 7470909.375, 7471054.6875, 7471113.960706005, 7471115.552437111, 7471126.678949229, 7471303.042595948, 7471623.4375, 7471953.507847597, 7472687.5, 7472689.800841289, 7473006.368097803, 7473553.125, 7473624.87422353, 7473649.132799411, 7473828.941093115, 7474099.08931969, 7474521.356420012, 7474741.952464898, 7476878.125, 7494521.875, 7502788.211283191, 7506490.625, 7510348.4375, 7515229.6875, 7568328.125, 7571239.0625, 7572328.125, 7572404.703587775, 7575383.02437973, 7627188.379168551, 7630628.125, 7655746.875, 7696402.260472585, 7697526.5625, 7708464.722292206, 7711984.375, 7722925.0, 7728461.603317147, 7729327.618095329, 7729446.875, 7729953.863493834, 7729961.175667317, 7730039.043017296, 7730542.122172946, 7732448.320516664, 7732464.766634305, 7732612.966599142, 7733166.979045449, 7733608.770071319, 7740238.437402691, 7740445.747443938, 7740688.036645981, 7741122.287367979, 7741217.1875, 7741255.435548161, 7742625.0, 7742686.721017159, 7743698.4375, 7744229.584004417, 7744478.368982679, 7744664.0625, 7746186.2575727925, 7746781.981659391, 7750454.464069101, 7750533.048885262, 7751492.150545711, 7756917.1875, 7762267.1875, 7762567.33978433, 7763037.5, 7763375.897149312, 7764785.760953937, 7765720.3125, 7767251.4886295665, 7767588.02508644, 7768617.551641297, 7769034.375, 7769732.238940957, 7770696.875, 7773737.384364319, 7773815.478111088, 7773999.535818435, 7774521.506846679, 7774798.899299045, 7775095.3125, 7775211.782879403, 7775212.64590806, 7775376.359002975, 7775951.5625, 7776390.116831386, 7780901.5625, 7780916.208775502, 7781029.6875, 7781081.25, 7781161.998364563, 7782818.571096632, 7782839.551128441, 7789055.855038404, 7789056.73014199, 7790112.023205275, 7795383.253080444, 7799282.272418326, 7800801.459567545, 7801107.660264129, 7802144.541980016, 7802758.060478074, 7803181.25, 7803751.439887927, 7804431.119939513, 7808047.871624589, 7808707.615106865, 7809239.947594501, 7809275.0, 7811582.8125, 7813107.415617372, 7815575.0, 7815835.815212171, 7815837.541666229, 7817228.408605696, 7817831.691782169, 7822741.28980209, 7825302.595518883, 7825664.0625, 7825970.714351522, 7826021.788038649, 7826830.214811827, 7827600.0, 7827674.448078118, 7828101.5625, 7828480.835759662, 7830727.105607879, 7831169.829369603, 7831906.658076257, 7832355.786241121, 7832452.78908203, 7832511.903824791, 7832861.6552208755, 7832953.767501546, 7833245.3125, 7835200.0, 7835856.6850819215, 7836895.956560395, 7839321.883615739, 7840668.165174281, 7842217.5605853945, 7842226.5625, 7846428.837838143, 7847235.9375, 7847639.0625, 7850442.760857081, 7852395.3125, 7852478.954345857, 7853312.5, 7854440.241044932, 7858520.3125, 7863575.430816918, 7867996.494975887, 7868965.897735591, 7877004.274211073, 7877241.5044523515, 7878960.9375, 7880410.9375, 7880971.875, 7881296.184240591, 7883044.879254569, 7883327.250269778, 7883365.625, 7883709.375, 7883868.75, 7884095.087615756, 7884281.668720481, 7885982.353377194, 7887610.252452612, 7888510.637037571, 7890296.875, 7890648.4375, 7890943.910786754, 7891268.75, 7892402.491771198, 7893688.945328199, 7900863.991705497, 7902129.3599353265, 7904084.375, 7906906.25, 7907049.0360389175, 7907196.3088766625, 7907801.54051907, 7907980.18998311, 7909496.819444741, 7909929.881593148, 7910296.282899352, 7910350.027145816, 7910679.529558322, 7910893.284834628, 7911625.59526026, 7912252.546989315, 7913357.416605841, 7913359.079532106, 7913899.376650144, 7913902.814513596, 7913967.078592371, 7913996.815545268, 7914308.462583017, 7914423.4375, 7914568.120526756, 7914620.3125, 7914640.664408467, 7914662.557755505, 7914833.438778487, 7914861.633801909, 7915029.395834525, 7915211.472661665, 7915243.75, 7915319.355204411, 7915346.045507901, 7915374.234133465, 7916046.343617477, 7916429.875536806, 7916434.911496271, 7916475.0, 7916492.272851645, 7916494.034112012, 7916554.6875, 7916602.9856785545, 7916788.756286163, 7916926.5625, 7917020.264010212, 7917024.967799992, 7917397.59671525, 7917805.507935744, 7918547.055965437, 7918651.529010921, 7919121.322003185, 7919227.072836371, 7919379.6875, 7919715.625, 7919900.0, 7920118.75, 7920207.948709539, 7920279.617655119, 7921151.423439881, 7921176.5625, 7921181.25, 7921668.75, 7921785.345086269, 7921976.309967049, 7922123.039454746, 7922143.802108681, 7922364.5087468065, 7922460.159274379, 7923282.456628646, 7923405.52335799, 7923467.1875, 7923703.976190365, 7923784.0300748395, 7923992.1875, 7924070.3125, 7924546.875, 7925812.325534586, 7925843.618148759, 7928117.289975699, 7928382.730844191, 7928828.134745756, 7930970.990686329, 7931212.718276915, 7931256.242680907, 7931268.323035125, 7931450.503920375, 7931579.6875, 7931817.936542292, 7931825.0, 7931998.4375, 7932027.790626242, 7932320.77836196, 7933165.625, 7933299.905322731, 7933381.247880021, 7933810.658668937, 7934140.625, 7934229.278407463, 7934312.671076305, 7935342.047647514, 7935398.4375, 7935531.25, 7935907.633768698, 7936061.099471133, 7936332.508526044, 7936357.581783088, 7936395.3125, 7936456.25, 7936675.0, 7936685.426126621, 7936801.050995443, 7936860.126696809, 7937146.212883196, 7937262.5, 7937408.286101062, 7938143.75, 7938262.781774632, 7938324.851657686, 7938509.640528393, 7938590.625, 7938866.671321862, 7938943.75, 7939153.0091473665, 7939372.854170479, 7939484.375, 7939635.634890733, 7939873.4375, 7940258.410258994, 7940602.932500942, 7941010.9375, 7941024.504001735, 7941493.26216557, 7942443.75, 7942569.869730281, 7942695.015716, 7943258.038858349, 7943261.597233026, 7943273.85445333, 7943534.242025573, 7943603.095331662, 7943728.548249047, 7944197.373957977, 7944329.733057025, 7944356.240342609, 7944390.121028754, 7944512.5, 7944582.663233951, 7944595.060708228, 7944682.046332098, 7944710.412043246, 7944766.502874081, 7944870.645242723, 7945026.186233014, 7945056.746856951, 7945108.563976815, 7945145.657307183, 7945244.938921333, 7945254.557626691, 7945284.961196242, 7945284.980368867, 7945292.1875, 7945302.062866463, 7945329.536978424, 7945503.18902631, 7945529.696464026, 7945531.18576654, 7945583.865229701, 7945666.938857235, 7945751.423642874, 7945869.887939117, 7945894.967141885, 7945947.603496562, 7946000.0, 7946027.273636702, 7946061.162550834, 7946154.6875, 7946174.939493824, 7946261.298533047, 7946422.3846606705, 7946549.633301485, 7946571.752265381, 7946639.0625, 7946717.979545844, 7946754.294731224, 7946793.040336039, 7946980.55978174, 7947096.875, 7947237.5, 7947299.548072203, 7947323.4375, 7947370.741194824, 7947435.9375, 7947437.5, 7947593.913579182, 7948526.313690672, 7948982.8125, 7949057.679288142, 7949743.75, 7949846.854661284, 7949973.078567323, 7950143.005795796, 7950397.329260544, 7950407.306897678, 7950602.501237629, 7950628.125, 7950664.0625, 7950941.815531233, 7950957.142507953, 7951046.975011341, 7951171.875, 7951260.9375, 7951341.545925467, 7951344.307220019, 7951401.651204636, 7951518.75, 7951662.5, 7951669.737916265, 7951740.625, 7951796.955435435, 7951800.816614492, 7951802.941550944, 7952035.991053951, 7952112.351938878, 7952116.135130258, 7952166.048372487, 7952193.929167213, 7952221.029564918, 7952225.0, 7952287.5, 7952333.920944939, 7952364.0625, 7952386.235935299, 7952387.121814508, 7952403.125, 7952447.920425023, 7952646.1787694795, 7952684.519347985, 7952719.748588083, 7952760.739377462, 7952812.5, 7952887.686942044, 7952910.597417344, 7952975.0, 7952994.361187522, 7953068.208086049, 7953115.625, 7953158.475266751, 7953264.0625, 7953304.6875, 7953379.6875, 7953618.75, 7953737.173132459, 7953757.8125, 7953759.29807921, 7953769.265785657, 7953917.086784894, 7954196.106642018, 7954229.6875, 7954248.441688207, 7954643.541090545, 7954705.88541767, 7954731.732058348, 7954737.5, 7954801.315179116, 7955089.421796108, 7960987.276828692, 7962782.8125, 7963135.992911833, 7966832.804014121, 7970537.410627341, 7972762.5, 7981950.5046481965, 7984717.1875, 7985208.386987167, 7985284.999775966, 7985565.186168115, 7985631.25, 7985897.137430768, 7986266.806719222, 7986349.2297503725, 7986543.13570859, 7987335.378982177, 7987399.027754989, 7987412.641224793, 7987511.03617373, 7987515.625, 7987904.4670154415, 7987928.026683927, 7988008.401665245, 7988205.626804644, 7988453.13564531, 7988865.625, 7988887.369037338, 7989062.5, 7989124.454874533, 7989146.800861418, 7989218.75, 7989328.125, 7989379.82995473, 7989528.125, 7989594.870118725, 7989595.239604881, 7989646.341520769, 7989739.032543416, 7989744.5947249085, 7989749.551844405, 7989964.0625, 7989968.75, 7989980.490681476, 7989989.306349442, 7990119.483006158, 7990146.569110757, 7990163.594367617, 7990196.708916981, 7990423.248135724, 7990607.806251315, 7990642.1875, 7991072.36469041, 7991104.639209573, 7991142.334928748, 7991201.5625, 7991217.7288043685, 7991309.0872147195, 7991354.271017275, 7991410.9375, 7991434.375, 7991437.152906299, 7991467.612596967, 7991655.27089955, 7991691.794112683, 7991692.1875, 7991761.941292969, 7991796.823782714, 7992212.915786028, 7992237.613872278, 7992385.599292607, 7992482.8125, 7992546.269206362, 7992557.8125, 7992635.432675231, 7992698.235629637, 7992967.504617969, 7993001.879809856, 7993231.556538115, 7993449.048309075, 7993524.100608475, 7993564.100546299, 7993781.25, 7993807.520130708, 7993848.537728432, 7994238.606092312, 7994366.645636756, 7994679.085794833, 7995159.053392231, 7995525.0, 7995818.105625929, 7995828.255352136, 7996059.42169137, 7996452.685874858, 7997141.697905833, 7997785.698911394, 7999465.625, 7999860.36647216, 8000063.026463271, 8000324.642691498, 8001351.285093103, 8001950.684646776, 8003114.0625, 8003993.029661533, 8003999.792199512, 8004335.806951701, 8004434.194908624, 8005806.837542247, 8006122.643064392, 8006161.386487969, 8006660.959248346, 8007296.875, 8007297.670603243, 8007604.404021821, 8010427.018738014, 8012349.598881422, 8013761.520181798, 8014492.1875, 8018966.830961497, 8021914.0625, 8023620.215185704, 8024522.301650325, 8025825.324015533, 8027934.375, 8028258.503790069, 8028384.469050878, 8031073.357542801, 8031675.505873426, 8031680.7591437595, 8031737.786642672, 8031745.554588878, 8032320.555549848, 8034066.805096899, 8034189.688250267, 8034704.6875, 8034874.201312184, 8035094.491599817, 8035259.079161156, 8035354.340895943, 8035655.135414824, 8036007.8125, 8036820.1941885585, 8037666.975268079, 8037674.073632281, 8038264.344206881, 8039175.0, 8039344.801477116, 8039817.1875, 8040207.353855031, 8040449.70144263, 8041215.129065063, 8041311.522855823, 8041564.0625, 8041628.077473268, 8041656.471791778, 8041960.9375, 8042085.9375, 8042286.740000484, 8042560.9375, 8042621.223779962, 8042698.108626138, 8042831.25, 8042848.4375, 8043016.0625758385, 8043203.125, 8043211.564493171, 8043215.072133802, 8043224.936691463, 8043479.198960828, 8043487.344136422, 8043582.105787095, 8043743.3887518775, 8043829.6875, 8043856.86643057, 8043893.75, 8043929.479890279, 8043950.922757966, 8043951.5625, 8043971.639675014, 8044103.125, 8044123.82244072, 8044297.981662747, 8044318.853340443, 8044327.202095281, 8044341.213613494, 8044469.591188585, 8044643.375445469, 8044646.548023713, 8044651.5625, 8044687.665971105, 8044890.625, 8044934.375, 8045050.0, 8045093.613323984, 8045226.304760806, 8045276.490303773, 8045316.464527967, 8045433.428183821, 8045536.139484384, 8045549.45259363, 8045704.6875, 8045840.625, 8045939.0625, 8046057.8125, 8046240.625, 8046385.9375, 8046418.483157756, 8046622.984842198, 8046631.25, 8046679.6875, 8046787.007189383, 8046812.5, 8046832.2665199, 8046929.6875, 8047166.730339352, 8047242.1875, 8047453.4600718245, 8047459.165974548, 8047480.491848831, 8047566.895419961, 8047872.715163369, 8047979.6875, 8048102.501412565, 8048292.366494258, 8048344.27952869, 8048430.146522015, 8048461.038855283, 8048614.079286859, 8048760.859162276, 8049056.3496467685, 8049445.003166417, 8049638.0727620395, 8049692.1875, 8049851.5625, 8049882.8125, 8049901.3839753, 8050012.5, 8050229.656567488, 8050640.625, 8050661.5566576095, 8050687.01860112, 8051150.0, 8051508.473934085, 8051685.644222952, 8051856.923715798, 8054346.2508511385, 8055335.9375, 8055335.9375, 8056762.699857542, 8065450.0, 8066184.375, 8067003.652644212, 8067477.588046147, 8067646.0926638525, 8068270.3125, 8068320.812398802, 8068498.4375, 8068531.147536963, 8068651.5625, 8069408.851598827, 8070332.315063264, 8070539.0625, 8070886.550345948, 8073280.505026677, 8075228.836990436, 8076247.601301793, 8077239.7277902765, 8079562.5, 8079625.717084333, 8079768.13121345, 8080492.040758252, 8081296.857807793, 8081434.161970823, 8081954.775381426, 8081957.757464007, 8082819.886194859, 8082899.577664249, 8083626.5625, 8083768.75, 8084111.967132237, 8084130.2889932245, 8084182.8125, 8084345.086170801, 8084452.348458052, 8084998.985912342, 8085193.75, 8085672.815199187, 8085764.0625, 8085849.991638294, 8085897.071119632, 8086651.5625, 8087112.892430239, 8087453.125, 8087474.601260962, 8087802.994838631, 8088143.030567483, 8088153.272645685, 8088302.4139329735, 8088389.831482187, 8088403.125, 8088424.314810103, 8088487.808575377, 8088596.875, 8088770.936690546, 8088784.571414797, 8089077.299613431, 8089092.1875, 8089182.119798782, 8089190.625, 8089234.375, 8089271.6303713, 8089348.4375, 8089348.851787137, 8089449.929738716, 8089460.9375, 8089639.26405835, 8089679.6875, 8089789.013272934, 8089838.583006551, 8089874.255360741, 8089933.15307234, 8090024.5661768755, 8090065.092628171, 8090075.593291021, 8090104.523108596, 8090112.5, 8090186.771633873, 8090205.8526634285, 8090207.432504389, 8090218.75, 8090226.829801065, 8090249.736205487, 8090256.694668988, 8090257.299001285, 8090265.625, 8090293.75, 8090378.125, 8090397.473300856, 8090518.75, 8090523.4375, 8090559.375, 8090574.690224529, 8090579.13725833, 8090593.75, 8090602.009832119, 8090606.243909534, 8090610.944546044, 8090621.377622817, 8090644.10412091, 8090661.870948707, 8090670.53145383, 8090677.264925659, 8090705.922180164, 8090712.5, 8090714.011494279, 8090715.166623203, 8090730.954570375, 8090754.811466875, 8090781.710780296, 8090800.486277855, 8090802.738997754, 8090804.6875, 8090814.640037232, 8090820.296826554, 8090839.1894543385, 8090845.2651455235, 8090845.3125, 8090867.1762114195, ...], [10.400962410743308, 23.639825467851395, 47.58240110989277, 62.74425161416574, 20.75681064016595, 48.33547233233634, 10.478196221882312, 5.8717373260956816, 29.538648078433674, 45.70422236900783, 25.739839278103357, 73.59019045652849, 12.88395956833397, 14.715912495040282, 8.884381712690937, 55.545875712034814, 60.12957004894906, 6.1668514392045894, 9.56999176224366, 10.473960131451578, 12.102339152258384, 38.528359291048325, 23.834141415604087, 29.532018773388124, 18.770605481039293, 5.950892636029585, 46.082783190515414, 66.15121123088998, 70.35190523782177, 24.63802700743465, 25.083871218865035, 31.68060374320346, 63.18712173799698, 14.293896620686736, 58.458325672993944, 122.88407494669318, 20.379440710262404, 71.11213701816432, 58.505150405798105, 24.677368178753625, 9.298542006843213, 11.011490833045187, 45.529883393441324, 101.4449325256267, 6.734843574427124, 87.58552365209864, 11.660988989436737, 31.04347504241282, 61.95636994119724, 23.926165295072323, 106.52524690152103, 9.822098242102443, 73.1487403820039, 6.4367394679264684, 11.558114332271058, 11.125369463418055, 33.44761828125941, 10.7235346238878, 44.53747891939113, 7.0680328948749995, 13.260400042099254, 14.756749495736345, 12.671362363092229, 30.29386777367889, 60.600643522066946, 162.3965105647888, 14.49763440585043, 6.352197574653877, 39.98887681302709, 28.45166218596297, 21.58424022299912, 45.27941583463799, 43.16412117837018, 23.414982591707048, 8.691811731828487, 72.28852517672595, 49.98887821121553, 53.79278637281861, 10.685691714959175, 9.458170787524402, 101.50554186361842, 44.941843204836275, 14.940631823950799, 38.39295837359084, 95.30864546142459, 18.382283471229705, 42.677525373445526, 60.14860958418742, 35.83366594242249, 31.214492453012728, 64.5720459636841, 73.28249210849248, 35.005622613264386, 9.69184128717084, 35.59878518159729, 96.4805669160928, 38.73668445657988, 26.63757737986945, 39.320318970678954, 26.291268134419568, 79.42517035841942, 66.44479846355664, 28.11640835423109, 29.201311590814896, 16.59226495663074, 113.80270350083741, 49.61570699470526, 170.8615958350486, 28.657647140322705, 7.8467119203740685, 113.62240308140312, 34.17446709006069, 8.209608697761148, 13.926548215714316, 90.55142837250804, 40.11390359931883, 15.057717577611637, 45.44927481805355, 19.728800497829877, 6.6491775224437, 67.7075973976671, 8.986872387970328, 113.39439424257966, 62.21112792977878, 7.62502725674398, 58.51389886330279, 30.32290892259968, 5.119747770411367, 40.247916301749015, 12.542216155229484, 58.73119334843799, 54.18654295907914, 49.89746688435776, 56.69447746356925, 18.212787773252387, 59.37104439052547, 8.543887641470066, 17.631459654395414, 19.084258018460297, 18.126386542880933, 12.023877399778916, 130.0670304197411, 154.25826865562772, 77.23512162616116, 16.222123131738574, 6.15059062241635, 51.736406715107236, 16.25674931265862, 64.7371454282867, 33.87610813642884, 48.49164393553527, 85.06006919550643, 50.492628885366685, 12.492560687954425, 23.42434724285142, 24.26068861840961, 35.74268390241503, 6.5321086506771024, 5.916843189414651, 59.34562622992541, 104.61971459627186, 38.86050255582926, 28.94782029830402, 60.29320692336586, 106.35002123384888, 104.47687635464571, 41.82506372416525, 10.609658411776408, 66.0678930520318, 87.25725949808675, 16.841409127720993, 110.71406714092186, 28.094981466264414, 20.646363553618226, 9.030322581562304, 26.24941751565295, 26.335034673553146, 129.04071136775337, 50.10468515790366, 14.784061696856815, 33.18859409595213, 28.461017837936684, 16.932904913971253, 11.87450237000353, 117.03708137088071, 80.37011920699896, 43.25856653783284, 5.806486579395853, 9.270791673433484, 36.883815220334164, 16.26823922180114, 55.13070597254647, 16.633567555072585, 40.54973977464229, 108.68717854099597, 38.64294399489056, 38.024714884439085, 73.27757378518456, 71.9185090851467, 53.966967166019316, 6.901009553481489, 8.928300904740096, 24.617632120733898, 72.65798150812897, 50.342245422467364, 18.583661864659067, 38.1137152781328, 65.60414658071153, 50.10416240820579, 36.165464054241156, 63.25702131873062, 79.56654319331771, 36.04743205295372, 108.99033395993523, 12.850504858556032, 31.010091021471435, 52.245870451629074, 12.427482033182544, 69.07406721426717, 12.343651915688726, 180.513005306369, 83.51950980051836, 12.356764858842865, 13.307175461669846, 46.00968121359469, 18.77333861616935, 6.525085596452619, 42.33033668618461, 58.08181450845464, 7.561467791837342, 40.35820496670206, 11.944776886022789, 24.995055504454808, 149.0959893683194, 6.025420545276324, 88.99984706198423, 35.398366501312154, 45.1236583245297, 38.87409622203402, 6.007309583813928, 36.555560117207534, 5.658912389004685, 40.420663535422094, 10.969700286722016, 12.365065086322929, 48.523464624821926, 16.32005933705371, 6.364286437930071, 85.56450321868864, 5.209486420703978, 7.589926407987325, 48.57294227676627, 44.68437423401886, 56.08524175121541, 45.6081189659847, 20.032243970417582, 20.558773676686734, 40.07809966511236, 8.247895931145653, 80.75439671767721, 16.538442585342306, 77.5842815003383, 36.32475190281197, 29.26622552053781, 17.093195450362217, 84.47687354770761, 21.858007840615464, 5.062262235475568, 9.75499377921698, 47.547026830103455, 8.790678035855764, 26.986446603101605, 14.218736087902228, 60.58896108801835, 26.733208575602674, 62.119835793682505, 8.62145874158588, 55.35883292160984, 44.61394015326393, 20.25736723382071, 25.431497845276482, 11.98824076343529, 7.466371599638049, 8.557925923096029, 30.819749146223366, 26.46381407979677, 13.217596066739883, 18.557580443198574, 60.288259598350315, 12.641567349866849, 36.29373629516258, 52.671101154896995, 36.508465551042406, 14.46791749639854, 20.860199456350433, 33.326441382685594, 7.37532457860167, 53.61305179874029, 77.63642699204556, 13.617620164341423, 65.984781078766, 10.941795585194965, 58.258844890808405, 30.00364931858151, 27.315005834877645, 27.054037096643334, 51.795031738641725, 54.726486993181794, 16.942257686154875, 37.68943895033582, 17.929542423158537, 89.92038126261612, 6.658104692216695, 40.11576391570961, 22.393495691945738, 17.513652973764646, 49.61209934466028, 72.55362895400395, 104.82248568887609, 5.035928169309472, 38.78745085875888, 12.471534535826358, 88.11263258014638, 120.91740517678167, 102.016007900209, 8.530885609038345, 9.942632748279744, 20.50987824825039, 5.890043667998871, 37.449090188206824, 64.98693534158025, 18.59436656678515, 47.7185271179537, 49.832744277556294, 7.824667037830881, 98.08874127566669, 128.48865050005415, 112.36564654268713, 116.5739554191322, 89.4056374407295, 17.04845049468957, 29.52549163645054, 92.12847688009799, 7.016889374013605, 8.813707052593326, 36.54487572441659, 48.088862491784425, 43.648400432027536, 10.196112518693695, 10.51191901118631, 18.071198701484292, 130.93134273211194, 41.22241577576648, 41.607979605298006, 10.793496478919915, 7.76204361419789, 10.478653681733283, 19.826471738176135, 13.907903901687499, 48.82474240870702, 56.75998144469541, 190.88436602492894, 123.554459577745, 6.964382677936984, 26.40545763674529, 27.198457094463578, 8.120632564086886, 147.08953424971548, 73.89810885707674, 112.44777604826237, 13.148525912967367, 5.612829258809081, 17.278851272397826, 14.733904012733626, 6.802884428520733, 16.634270491438283, 15.045995964417333, 47.282533429281344, 113.58743733109227, 5.745719028740554, 74.8194491821044, 17.947482016476645, 38.09334232952903, 139.6681011023045, 39.843755862988196, 26.542712569055855, 11.036029731300767, 52.480375077015175, 137.4725896582385, 12.984905564935884, 49.87676557690176, 15.093874068582908, 12.138063088646735, 6.1557415508059705, 34.963750189209094, 69.75299158044893, 17.467057841098995, 75.76386949377952, 9.901548392005036, 10.039004287353265, 208.3504920259022, 13.24091066483085, 28.761497880298265, 17.474860689351676, 71.17732248192189, 5.712211630919645, 9.583773519996297, 44.182474860102026, 38.47256079116525, 27.888262611831312, 124.81947177462408, 108.02760903637694, 9.304323855199154, 146.0489839584649, 20.82434318063104, 7.169848607949519, 196.12648864789298, 20.98023237784482, 64.20499659062416, 105.9055315732106, 52.90834361219296, 35.345180807398954, 73.11596170378051, 83.35735135363043, 13.358335015820984, 62.30567801286384, 78.80649276912303, 92.08483297301824, 66.29217664615895, 5.5820900560212205, 24.376613948165364, 34.297329177324926, 83.37918027442913, 7.243914387913397, 52.04465818547687, 9.04759121109012, 10.154653083359701, 61.706308022142565, 151.82863088359278, 23.193360246680044, 64.15001600503024, 46.13265879351743, 82.9853087755609, 76.29421664266849, 104.18674389310168, 11.291751979609778, 71.05130103661031, 7.606766364091917, 12.383820731477208, 17.84614542488493, 28.38097079657936, 33.45985842752049, 134.7175906642812, 46.00347609786686, 12.54239550960354, 78.73929854376519, 88.18466900000934, 9.063817374855368, 20.427118705119454, 31.394421346763284, 98.44197127731199, 28.483270759308823, 9.10626251755003, 116.71806665624706, 22.45055891938578, 78.91214493647935, 26.037339790342877, 32.86225028000116, 47.750740422334744, 94.28205898402598, 15.59702728653796, 23.70011225676356, 32.2671340649546, 79.10568205562907, 41.55740053404081, 74.34293267991043, 103.43818672657342, 6.665511650675135, 7.3341399145250445, 17.91092489020519, 29.98205726698739, 5.640793427737235, 30.658213340672162, 11.598682433115023, 5.392833165383943, 179.99988925482785, 97.70875074890581, 50.07834164938612, 118.97249405494246, 66.31363769749822, 31.890763292926245, 47.34667160615387, 37.815342475904565, 47.589627674720255, 43.38872299576941, 21.80059230222273, 29.921615484819085, 10.431864823617772, 115.77786018971582, 50.139141244449235, 22.08365392356763, 23.79190871949959, 62.97547681644533, 16.121746479720038, 18.954948940074804, 26.14766982085155, 34.95968961925218, 105.16188835937395, 17.258870760327536, 65.02169802014355, 6.7615800754288555, 14.793193298536323, 69.14146878755773, 14.401544587935946, 53.549653081788954, 17.69005517761632, 42.98104050109356, 19.829899711031988, 11.502532894211118, 40.96056837751239, 6.8669268611805, 30.65473136021926, 16.44165940080369, 30.452775601115754, 49.71448378559719, 19.361471771163274, 127.15850984954389, 126.89749110869795, 86.82045053239064, 39.26953330637987, 154.95073249860133, 8.291323347976109, 27.315268481128395, 139.04454162218997, 14.071542777802856, 10.917385792850899, 22.280168860188112, 13.770513841703574, 10.034036715050226, 91.43210690694889, 144.07184815171973, 168.39538347586412, 136.5882542040751, 27.382161465385508, 320.9424641326983, 6.3338118432565516, 15.300622833253314, 35.008270668620696, 54.19286161890331, 19.161779998300275, 22.63391660289839, 19.628853556379603, 5.500494236678707, 28.873289343821508, 41.06422429789514, 189.32156069089334, 59.69359122212708, 176.6369070138275, 52.95257995051452, 38.583560877355886, 15.95747254637068, 51.3405133004139, 89.63960607029549, 14.45696663834607, 30.502669984039404, 28.12855441944551, 37.80385100482644, 19.359921221704866, 26.374974109621355, 5.324889990629898, 6.191480961064078, 78.0313764175809, 89.59061348799216, 10.592145546138703, 72.14487598084334, 9.417424744168075, 47.14587261470892, 54.24978357317438, 10.253911144751225, 30.326118124904927, 7.635638839395711, 59.029604257358336, 158.3155268206521, 10.334493125287214, 88.26913377740009, 36.12764135068203, 100.00567949057857, 25.363166185681166, 15.149637960569363, 7.550550169899062, 22.669732157049562, 13.406742378210474, 14.225458498731825, 82.96644455356466, 42.64920476677582, 29.81295113857795, 48.71350585510403, 55.14111183227511, 11.297264531040392, 13.67252572355071, 47.12295435947573, 311.5300651703841, 8.80476890758695, 32.131440892283514, 8.896134123464474, 39.73547833959445, 67.14275851250338, 21.872809078666137, 48.36725360294672, 105.57715866416254, 20.64767853278124, 100.11954868680483, 37.39512326292361, 12.350120481945956, 31.48862131851539, 71.14466104272466, 71.77454905079199, 49.762114840133876, 29.148383721966955, 39.147205807397384, 6.475100450497457, 22.13813754598648, 10.973849065957182, 30.194348556023183, 47.99840695399697, 5.24526252706175, 14.200854985472137, 117.23413423847948, 36.69450932307914, 47.65098288169487, 81.87367670936193, 22.207527670966066, 24.78437089198236, 65.2931161150748, 127.41081057176353, 40.50613928639768, 22.691091465601087, 52.646752159602364, 7.796561520886866, 165.39443671568614, 132.5746483540036, 9.922166822120714, 70.86154734039674, 77.03570664211286, 54.35024066451737, 22.77095427077337, 6.011502501159456, 6.026465932853288, 20.928561807825716, 17.79706306301397, 5.295469616540124, 15.331435730027255, 118.64091502155436, 24.83863151876337, 26.721137921270643, 5.992410102146504, 31.43288992111666, 7.60709245335062, 37.619950794094365, 38.6770018010513, 80.41768383338582, 21.054458531851576, 34.295389153453634, 52.29042311143173, 63.90552574316276, 11.357920683048746, 44.58345596909514, 8.065718424693399, 61.91395658193693, 21.1655040436697, 14.828545185630723, 7.940281198692213, 13.470314337581053, 30.91241466267853, 116.58700830775382, 10.117405142380477, 15.960230622034423, 75.16072117053795, 12.602865235644128, 53.36531747745555, 8.200660107879438, 20.575984127499897, 16.688511481235466, 41.97991585216473, 17.206635149749243, 113.1036143537925, 84.06200239012432, 32.130411981033305, 12.101094928430708, 5.158713005895861, 119.7151709248181, 52.20051209845731, 45.75516283518044, 5.280484843430409, 7.237867662555545, 20.003239656824363, 22.626901163524114, 76.6569114358037, 5.2741356214957, 5.611216947031169, 70.75236434772697, 64.14840533551984, 68.78310031685818, 31.8551876050154, 86.06587835998616, 54.825074745173666, 15.64282919186178, 9.166350658585198, 37.63925546558275, 76.66411052287852, 16.25454819367221, 22.518858884323457, 12.35086427632177, 121.03463646461961, 100.54773618820357, 9.095846650704411, 11.288069561753087, 53.20905404939188, 21.08541542401838, 114.54450044677078, 57.46481253354781, 44.706024818643776, 5.434772679085111, 11.337757366259783, 15.122512484336582, 22.122641928930957, 121.13924017402029, 24.568217609123714, 34.084303827597815, 13.135637774530684, 17.416428398121468, 28.82424632642737, 24.043691968746344, 18.40275396374026, 58.04668146741526, 32.28207799325128, 39.2193397097781, 38.66967983263793, 14.296813789981861, 5.42142048703157, 27.900699070473742, 36.73678677368128, 20.21377345013805, 53.09488735711708, 6.373237507698214, 101.4205817054017, 11.924504622065596, 43.66286373432136, 17.750720194886863, 33.34713539817323, 13.736910778229992, 79.36032697792933, 14.58312738611211, 95.85884263535212, 9.621275902863788, 105.43705084689675, 12.412683187627197, 15.312528625405136, 236.4960425777029, 73.65336376954404, 28.547085909215284, 25.59499250736047, 90.83722991839474, 8.419428775053147, 13.660083730389806, 18.018608127417327, 87.15404788438006, 12.576240712674572, 12.52544621095229, 19.74850689738896, 13.766757229224181, 5.979385496565035, 193.28731622164463, 9.233328389190433, 29.27796711293181, 46.24674662776292, 57.13654760411967, 33.57837039690342, 100.61480311841794, 30.842865627331687, 13.440752931184347, 5.387181816586832, 8.944540037089325, 17.767046946621583, 40.61294803023665, 47.69902973082617, 11.493030163429085, 140.45970045153987, 41.4284300573997, 5.875844483155071, 63.148961912166975, 20.10651489838371, 39.360836992918486, 45.87462799102657, 49.89160931443997, 13.255709847934273, 62.681610253059, 18.02649798622879, 50.614402852448364, 52.60363012649631, 10.441271578420542, 25.78478104780325, 8.79768715481434, 5.3296935640539695, 75.54496777025163, 12.250527839785638, 52.560060370829916, 85.14495991275034, 5.434962100780362, 34.538081762159294, 115.54858367734323, 88.17755523467216, 96.64862905075728, 83.88341863341509, 15.350588403057849, 18.107012088786146, 17.7869910473765, 19.537096308721146, 7.47316169046839, 5.911427444828262, 75.56193921559017, 15.614242589714978, 161.15322099773007, 65.53219745953788, 35.95998205880176, 26.08815409260088, 49.460156819750516, 77.1369936147791, 19.52410376998067, 5.422544464233035, 25.853476156421493, 30.684366756508247, 113.40168767995306, 117.76095511227904, 38.694779898759954, 93.63143948254123, 57.51854385865014, 54.05015939146233, 19.89985702047359, 121.0440899554408, 172.62298685428794, 81.13789263604815, 10.435881256373012, 28.87083004225567, 13.201857026633249, 35.217184206746595, 93.64123783897307, 48.2351133994546, 33.67676319316092, 24.986801593375738, 30.939713350858927, 23.852438121736927, 202.38868685720865, 66.74163421813819, 12.999850971290606, 54.37369686730494, 35.4892321811155, 70.90560804870083, 15.342432949051418, 15.005881442747913, 14.651099188063057, 28.018348481062066, 28.48480874581145, 22.788535227659906, 56.93371364874609, 158.78833698316532, 57.87468124831223, 10.85967427841267, 108.84333903187705, 50.27562987740627, 29.940256847907712, 68.68466976815702, 21.68068512779282, 45.62198568584412, 18.248804544108765, 13.930264994385524, 40.28345053797901, 34.24407434294551, 28.911980063877124, 42.96688544989523, 7.6771583723321815, 78.6826073618883, 89.00049121160869, 25.91082296188571, 13.225964869595211, 24.40772626325957, 49.143808784118434, 65.82957530505408, 119.45063295174064, 10.971240354785925, 58.18255603207465, 30.05305952338827, 21.51870833213216, 65.89875668860273, 17.937226678444144, 5.877052287224873, 18.588528727571678, 134.93150723921065, 30.013111084893072, 132.9709968901364, 18.623680592273512, 43.51012231955114, 76.09165698886723, 14.876383190594114, 64.40635014329706, 11.267906869522365, 14.735806824849403, 145.04795638515586, 36.123158641051425, 33.228362645074355, 57.66037396407329, 44.39635766784256, 16.64229811558284, 63.363853944566294, 24.739721378286347, 19.824413967861084, 38.73949638930499, 95.53606870429482, 20.35408021117176, 50.87711941918601, 11.114662023866316, 31.118780572461127, 82.01640308154025, 16.77833482014562, 34.29357389180598, 43.10655974122084, 35.145533709987774, 19.551823486720867, 27.251623996062612, 19.617741735033775, 125.8428357608371, 102.81969386163684, 60.81423751043909, 16.264363204801164, 177.03392418323335, 217.44116748179164, 64.67966306534733, 8.719050882543499, 50.13390266376285, 161.1502708127048, 69.25828565682208, 70.12651176293612, 10.76571741391346, 44.56502060077005, 20.625978472102368, 148.69531537673873, 76.86334640883038, 83.27759192309753, 31.445371226590467, 50.82620453653022, 75.0549535787062, 17.98068632798711, 134.38055554975787, 105.93620235748632, 193.46701278004937, 67.00712983540572, 75.18924622300742, 90.64518087752889, 115.5112438525244, 22.582235581335418, 87.10832097022731, 148.56505751231478, 49.2027029845833, 14.023119834844428, 83.65600542931874, 27.190950649971803, 167.9242164789431, 59.2460985579138, 53.06536368394965, 161.1867544199855, 163.8914088719676, 97.72152770619628, 43.7333317087691, 30.842466365279996, 28.850052366440117, 69.34140683447858, 90.06296945414879, 59.69210308402824, 8.290306909455785, 21.51930419454063, 16.48808989032988, 106.10815756481841, 8.405860133627526, 7.878716343266846, 108.6014400832428, 120.47594029344896, 35.289028316012676, 32.28764197858591, 9.093498433074874, 110.04402364674726, 11.933378594978194, 11.983579398643359, 78.6218011400354, 31.939387314287977, 16.52993442723919, 94.50263441915547, 109.83791236325317, 14.764036816841044, 46.558571772718736, 8.280616743558946, ...])
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);
([3951240.1043347735, 3951243.4412668804, 4208465.71401173, 4350870.3125, 4487585.360380844, 4717787.390616475, 4739387.040519379, 4754280.438726792, 4774818.75, 4779292.1875, 5666147.639343094, 5668245.242200024, 5722260.267733136, 6429956.189525563, 6670830.669365733, 6782451.335886526, 6796648.4375, 6872875.724715889, 6923047.144304167, 6923715.162203462, 6931014.607784944, 6931220.186823114, 6931890.331501137, 6932078.125, 6932771.050606822, 6935797.005966833, 6974365.997996309, 7031666.606271985, 7104819.7242669575, 7130560.703926495, 7131452.9226598535, 7156451.5625, 7156863.513199173, 7159074.819040733, 7160799.392923372, 7162387.5, 7166582.519848267, 7168007.150675715, 7172303.953203483, 7180433.017233375, 7184901.523379269, 7185295.236854148, 7186342.7109378325, 7186759.70991989, 7187115.479712444, 7187468.552234785, 7226598.75383731, 7244372.171276956, 7246579.6875, 7249547.396976491, 7273991.960830425, 7274214.590912526, 7274220.3125, 7274448.108594327, 7275395.571450133, 7276589.061004128, 7277260.81294561, 7278124.725060732, 7278645.3125, 7279481.042812118, 7281718.10834093, 7285543.700666593, 7291074.242180548, 7292256.25, 7293400.909714388, 7295702.281545293, 7297022.300291749, 7297030.331898681, 7298009.9677402405, 7298321.871278311, 7298440.8458576, 7298617.1875, 7298737.525770072, 7298963.735752051, 7299069.445006276, 7299131.563680676, 7299417.1875, 7299571.875, 7300005.947525874, 7300143.896211451, 7300151.5625, 7301120.3125, 7301407.812269733, 7301698.386330677, 7302415.625, 7302652.478796875, 7302717.1875, 7303072.689569642, 7303284.375, 7303650.0, 7303779.6875, 7304098.4375, 7307482.8125, 7313269.147583847, 7338604.986081492, 7339550.99047563, 7397106.25, 7401579.584244766, 7406428.8571477495, 7417025.8515343405, 7417476.2906876, 7419781.25, 7436746.336705671, 7454529.294736711, 7457802.584312841, 7458995.3125, 7460960.783518215, 7460979.537724832, 7461154.6875, 7461238.12647974, 7461436.670177543, 7461558.184099194, 7461645.164058877, 7461780.955530946, 7461809.375, 7461890.625, 7461930.538099138, 7461983.592166365, 7462158.677865064, 7462188.461521469, 7462223.078220599, 7462227.68735295, 7462273.4375, 7462293.75, 7462365.684845795, 7462369.335142315, 7462463.887003163, 7462502.61488701, 7462556.25, 7462574.186463698, 7462659.814980122, 7462676.5625, 7462831.0945933685, 7462880.838007688, 7463072.530929086, 7463573.1081151925, 7463594.206820841, 7463642.80130833, 7465452.3440836845, 7466019.392605816, 7466414.549758041, 7467106.25, 7467183.93546804, 7467187.73853438, 7467428.424783861, 7467514.642730441, 7467600.0, 7467633.119495285, 7467662.5, 7467691.903658578, 7467692.764552684, 7467700.0, 7467729.6875, 7467739.789571478, 7467800.311141072, 7467879.96369625, 7467995.3125, 7468026.843788674, 7468248.174720393, 7468451.104351407, 7468478.125, 7468503.125, 7468690.625, 7468759.375, 7468842.937014256, 7469058.069761145, 7469065.1841215715, 7469215.266199076, 7469231.100255333, 7469735.9375, 7469784.272895118, 7469823.4375, 7470026.540408748, 7470125.97321202, 7470158.996086658, 7470232.685807213, 7470307.691047976, 7470370.3125, 7470543.943680982, 7470624.958069224, 7470775.0, 7470814.05925283, 7470817.627368855, 7470820.742943679, 7470900.0, 7470909.375, 7471054.6875, 7471113.960706005, 7471115.552437111, 7471126.678949229, 7471303.042595948, 7471623.4375, 7471953.507847597, 7472687.5, 7472689.800841289, 7473006.368097803, 7473553.125, 7473624.87422353, 7473649.132799411, 7473828.941093115, 7474099.08931969, 7474521.356420012, 7474741.952464898, 7476878.125, 7494521.875, 7502788.211283191, 7506490.625, 7510348.4375, 7515229.6875, 7568328.125, 7571239.0625, 7572328.125, 7572404.703587775, 7575383.02437973, 7627188.379168551, 7630628.125, 7655746.875, 7696402.260472585, 7697526.5625, 7708464.722292206, 7711984.375, 7722925.0, 7728461.603317147, 7729327.618095329, 7729446.875, 7729953.863493834, 7729961.175667317, 7730039.043017296, 7730542.122172946, 7732448.320516664, 7732464.766634305, 7732612.966599142, 7733166.979045449, 7733608.770071319, 7740238.437402691, 7740445.747443938, 7740688.036645981, 7741122.287367979, 7741217.1875, 7741255.435548161, 7742625.0, 7742686.721017159, 7743698.4375, 7744229.584004417, 7744478.368982679, 7744664.0625, 7746186.2575727925, 7746781.981659391, 7750454.464069101, 7750533.048885262, 7751492.150545711, 7756917.1875, 7762267.1875, 7762567.33978433, 7763037.5, 7763375.897149312, 7764785.760953937, 7765720.3125, 7767251.4886295665, 7767588.02508644, 7768617.551641297, 7769034.375, 7769732.238940957, 7770696.875, 7773737.384364319, 7773815.478111088, 7773999.535818435, 7774521.506846679, 7774798.899299045, 7775095.3125, 7775211.782879403, 7775212.64590806, 7775376.359002975, 7775951.5625, 7776390.116831386, 7780901.5625, 7780916.208775502, 7781029.6875, 7781081.25, 7781161.998364563, 7782818.571096632, 7782839.551128441, 7789055.855038404, 7789056.73014199, 7790112.023205275, 7795383.253080444, 7799282.272418326, 7800801.459567545, 7801107.660264129, 7802144.541980016, 7802758.060478074, 7803181.25, 7803751.439887927, 7804431.119939513, 7808047.871624589, 7808707.615106865, 7809239.947594501, 7809275.0, 7811582.8125, 7813107.415617372, 7815575.0, 7815835.815212171, 7815837.541666229, 7817228.408605696, 7817831.691782169, 7822741.28980209, 7825302.595518883, 7825664.0625, 7825970.714351522, 7826021.788038649, 7826830.214811827, 7827600.0, 7827674.448078118, 7828101.5625, 7828480.835759662, 7830727.105607879, 7831169.829369603, 7831906.658076257, 7832355.786241121, 7832452.78908203, 7832511.903824791, 7832861.6552208755, 7832953.767501546, 7833245.3125, 7835200.0, 7835856.6850819215, 7836895.956560395, 7839321.883615739, 7840668.165174281, 7842217.5605853945, 7842226.5625, 7846428.837838143, 7847235.9375, 7847639.0625, 7850442.760857081, 7852395.3125, 7852478.954345857, 7853312.5, 7854440.241044932, 7858520.3125, 7863575.430816918, 7867996.494975887, 7868965.897735591, 7877004.274211073, 7877241.5044523515, 7878960.9375, 7880410.9375, 7880971.875, 7881296.184240591, 7883044.879254569, 7883327.250269778, 7883365.625, 7883709.375, 7883868.75, 7884095.087615756, 7884281.668720481, 7885982.353377194, 7887610.252452612, 7888510.637037571, 7890296.875, 7890648.4375, 7890943.910786754, 7891268.75, 7892402.491771198, 7893688.945328199, 7900863.991705497, 7902129.3599353265, 7904084.375, 7906906.25, 7907049.0360389175, 7907196.3088766625, 7907801.54051907, 7907980.18998311, 7909496.819444741, 7909929.881593148, 7910296.282899352, 7910350.027145816, 7910679.529558322, 7910893.284834628, 7911625.59526026, 7912252.546989315, 7913357.416605841, 7913359.079532106, 7913899.376650144, 7913902.814513596, 7913967.078592371, 7913996.815545268, 7914308.462583017, 7914423.4375, 7914568.120526756, 7914620.3125, 7914640.664408467, 7914662.557755505, 7914833.438778487, 7914861.633801909, 7915029.395834525, 7915211.472661665, 7915243.75, 7915319.355204411, 7915346.045507901, 7915374.234133465, 7916046.343617477, 7916429.875536806, 7916434.911496271, 7916475.0, 7916492.272851645, 7916494.034112012, 7916554.6875, 7916602.9856785545, 7916788.756286163, 7916926.5625, 7917020.264010212, 7917024.967799992, 7917397.59671525, 7917805.507935744, 7918547.055965437, 7918651.529010921, 7919121.322003185, 7919227.072836371, 7919379.6875, 7919715.625, 7919900.0, 7920118.75, 7920207.948709539, 7920279.617655119, 7921151.423439881, 7921176.5625, 7921181.25, 7921668.75, 7921785.345086269, 7921976.309967049, 7922123.039454746, 7922143.802108681, 7922364.5087468065, 7922460.159274379, 7923282.456628646, 7923405.52335799, 7923467.1875, 7923703.976190365, 7923784.0300748395, 7923992.1875, 7924070.3125, 7924546.875, 7925812.325534586, 7925843.618148759, 7928117.289975699, 7928382.730844191, 7928828.134745756, 7930970.990686329, 7931212.718276915, 7931256.242680907, 7931268.323035125, 7931450.503920375, 7931579.6875, 7931817.936542292, 7931825.0, 7931998.4375, 7932027.790626242, 7932320.77836196, 7933165.625, 7933299.905322731, 7933381.247880021, 7933810.658668937, 7934140.625, 7934229.278407463, 7934312.671076305, 7935342.047647514, 7935398.4375, 7935531.25, 7935907.633768698, 7936061.099471133, 7936332.508526044, 7936357.581783088, 7936395.3125, 7936456.25, 7936675.0, 7936685.426126621, 7936801.050995443, 7936860.126696809, 7937146.212883196, 7937262.5, 7937408.286101062, 7938143.75, 7938262.781774632, 7938324.851657686, 7938509.640528393, 7938590.625, 7938866.671321862, 7938943.75, 7939153.0091473665, 7939372.854170479, 7939484.375, 7939635.634890733, 7939873.4375, 7940258.410258994, 7940602.932500942, 7941010.9375, 7941024.504001735, 7941493.26216557, 7942443.75, 7942569.869730281, 7942695.015716, 7943258.038858349, 7943261.597233026, 7943273.85445333, 7943534.242025573, 7943603.095331662, 7943728.548249047, 7944197.373957977, 7944329.733057025, 7944356.240342609, 7944390.121028754, 7944512.5, 7944582.663233951, 7944595.060708228, 7944682.046332098, 7944710.412043246, 7944766.502874081, 7944870.645242723, 7945026.186233014, 7945056.746856951, 7945108.563976815, 7945145.657307183, 7945244.938921333, 7945254.557626691, 7945284.961196242, 7945284.980368867, 7945292.1875, 7945302.062866463, 7945329.536978424, 7945503.18902631, 7945529.696464026, 7945531.18576654, 7945583.865229701, 7945666.938857235, 7945751.423642874, 7945869.887939117, 7945894.967141885, 7945947.603496562, 7946000.0, 7946027.273636702, 7946061.162550834, 7946154.6875, 7946174.939493824, 7946261.298533047, 7946422.3846606705, 7946549.633301485, 7946571.752265381, 7946639.0625, 7946717.979545844, 7946754.294731224, 7946793.040336039, 7946980.55978174, 7947096.875, 7947237.5, 7947299.548072203, 7947323.4375, 7947370.741194824, 7947435.9375, 7947437.5, 7947593.913579182, 7948526.313690672, 7948982.8125, 7949057.679288142, 7949743.75, 7949846.854661284, 7949973.078567323, 7950143.005795796, 7950397.329260544, 7950407.306897678, 7950602.501237629, 7950628.125, 7950664.0625, 7950941.815531233, 7950957.142507953, 7951046.975011341, 7951171.875, 7951260.9375, 7951341.545925467, 7951344.307220019, 7951401.651204636, 7951518.75, 7951662.5, 7951669.737916265, 7951740.625, 7951796.955435435, 7951800.816614492, 7951802.941550944, 7952035.991053951, 7952112.351938878, 7952116.135130258, 7952166.048372487, 7952193.929167213, 7952221.029564918, 7952225.0, 7952287.5, 7952333.920944939, 7952364.0625, 7952386.235935299, 7952387.121814508, 7952403.125, 7952447.920425023, 7952646.1787694795, 7952684.519347985, 7952719.748588083, 7952760.739377462, 7952812.5, 7952887.686942044, 7952910.597417344, 7952975.0, 7952994.361187522, 7953068.208086049, 7953115.625, 7953158.475266751, 7953264.0625, 7953304.6875, 7953379.6875, 7953618.75, 7953737.173132459, 7953757.8125, 7953759.29807921, 7953769.265785657, 7953917.086784894, 7954196.106642018, 7954229.6875, 7954248.441688207, 7954643.541090545, 7954705.88541767, 7954731.732058348, 7954737.5, 7954801.315179116, 7955089.421796108, 7960987.276828692, 7962782.8125, 7963135.992911833, 7966832.804014121, 7970537.410627341, 7972762.5, 7981950.5046481965, 7984717.1875, 7985208.386987167, 7985284.999775966, 7985565.186168115, 7985631.25, 7985897.137430768, 7986266.806719222, 7986349.2297503725, 7986543.13570859, 7987335.378982177, 7987399.027754989, 7987412.641224793, 7987511.03617373, 7987515.625, 7987904.4670154415, 7987928.026683927, 7988008.401665245, 7988205.626804644, 7988453.13564531, 7988865.625, 7988887.369037338, 7989062.5, 7989124.454874533, 7989146.800861418, 7989218.75, 7989328.125, 7989379.82995473, 7989528.125, 7989594.870118725, 7989595.239604881, 7989646.341520769, 7989739.032543416, 7989744.5947249085, 7989749.551844405, 7989964.0625, 7989968.75, 7989980.490681476, 7989989.306349442, 7990119.483006158, 7990146.569110757, 7990163.594367617, 7990196.708916981, 7990423.248135724, 7990607.806251315, 7990642.1875, 7991072.36469041, 7991104.639209573, 7991142.334928748, 7991201.5625, 7991217.7288043685, 7991309.0872147195, 7991354.271017275, 7991410.9375, 7991434.375, 7991437.152906299, 7991467.612596967, 7991655.27089955, 7991691.794112683, 7991692.1875, 7991761.941292969, 7991796.823782714, 7992212.915786028, 7992237.613872278, 7992385.599292607, 7992482.8125, 7992546.269206362, 7992557.8125, 7992635.432675231, 7992698.235629637, 7992967.504617969, 7993001.879809856, 7993231.556538115, 7993449.048309075, 7993524.100608475, 7993564.100546299, 7993781.25, 7993807.520130708, 7993848.537728432, 7994238.606092312, 7994366.645636756, 7994679.085794833, 7995159.053392231, 7995525.0, 7995818.105625929, 7995828.255352136, 7996059.42169137, 7996452.685874858, 7997141.697905833, 7997785.698911394, 7999465.625, 7999860.36647216, 8000063.026463271, 8000324.642691498, 8001351.285093103, 8001950.684646776, 8003114.0625, 8003993.029661533, 8003999.792199512, 8004335.806951701, 8004434.194908624, 8005806.837542247, 8006122.643064392, 8006161.386487969, 8006660.959248346, 8007296.875, 8007297.670603243, 8007604.404021821, 8010427.018738014, 8012349.598881422, 8013761.520181798, 8014492.1875, 8018966.830961497, 8021914.0625, 8023620.215185704, 8024522.301650325, 8025825.324015533, 8027934.375, 8028258.503790069, 8028384.469050878, 8031073.357542801, 8031675.505873426, 8031680.7591437595, 8031737.786642672, 8031745.554588878, 8032320.555549848, 8034066.805096899, 8034189.688250267, 8034704.6875, 8034874.201312184, 8035094.491599817, 8035259.079161156, 8035354.340895943, 8035655.135414824, 8036007.8125, 8036820.1941885585, 8037666.975268079, 8037674.073632281, 8038264.344206881, 8039175.0, 8039344.801477116, 8039817.1875, 8040207.353855031, 8040449.70144263, 8041215.129065063, 8041311.522855823, 8041564.0625, 8041628.077473268, 8041656.471791778, 8041960.9375, 8042085.9375, 8042286.740000484, 8042560.9375, 8042621.223779962, 8042698.108626138, 8042831.25, 8042848.4375, 8043016.0625758385, 8043203.125, 8043211.564493171, 8043215.072133802, 8043224.936691463, 8043479.198960828, 8043487.344136422, 8043582.105787095, 8043743.3887518775, 8043829.6875, 8043856.86643057, 8043893.75, 8043929.479890279, 8043950.922757966, 8043951.5625, 8043971.639675014, 8044103.125, 8044123.82244072, 8044297.981662747, 8044318.853340443, 8044327.202095281, 8044341.213613494, 8044469.591188585, 8044643.375445469, 8044646.548023713, 8044651.5625, 8044687.665971105, 8044890.625, 8044934.375, 8045050.0, 8045093.613323984, 8045226.304760806, 8045276.490303773, 8045316.464527967, 8045433.428183821, 8045536.139484384, 8045549.45259363, 8045704.6875, 8045840.625, 8045939.0625, 8046057.8125, 8046240.625, 8046385.9375, 8046418.483157756, 8046622.984842198, 8046631.25, 8046679.6875, 8046787.007189383, 8046812.5, 8046832.2665199, 8046929.6875, 8047166.730339352, 8047242.1875, 8047453.4600718245, 8047459.165974548, 8047480.491848831, 8047566.895419961, 8047872.715163369, 8047979.6875, 8048102.501412565, 8048292.366494258, 8048344.27952869, 8048430.146522015, 8048461.038855283, 8048614.079286859, 8048760.859162276, 8049056.3496467685, 8049445.003166417, 8049638.0727620395, 8049692.1875, 8049851.5625, 8049882.8125, 8049901.3839753, 8050012.5, 8050229.656567488, 8050640.625, 8050661.5566576095, 8050687.01860112, 8051150.0, 8051508.473934085, 8051685.644222952, 8051856.923715798, 8054346.2508511385, 8055335.9375, 8055335.9375, 8056762.699857542, 8065450.0, 8066184.375, 8067003.652644212, 8067477.588046147, 8067646.0926638525, 8068270.3125, 8068320.812398802, 8068498.4375, 8068531.147536963, 8068651.5625, 8069408.851598827, 8070332.315063264, 8070539.0625, 8070886.550345948, 8073280.505026677, 8075228.836990436, 8076247.601301793, 8077239.7277902765, 8079562.5, 8079625.717084333, 8079768.13121345, 8080492.040758252, 8081296.857807793, 8081434.161970823, 8081954.775381426, 8081957.757464007, 8082819.886194859, 8082899.577664249, 8083626.5625, 8083768.75, 8084111.967132237, 8084130.2889932245, 8084182.8125, 8084345.086170801, 8084452.348458052, 8084998.985912342, 8085193.75, 8085672.815199187, 8085764.0625, 8085849.991638294, 8085897.071119632, 8086651.5625, 8087112.892430239, 8087453.125, 8087474.601260962, 8087802.994838631, 8088143.030567483, 8088153.272645685, 8088302.4139329735, 8088389.831482187, 8088403.125, 8088424.314810103, 8088487.808575377, 8088596.875, 8088770.936690546, 8088784.571414797, 8089077.299613431, 8089092.1875, 8089182.119798782, 8089190.625, 8089234.375, 8089271.6303713, 8089348.4375, 8089348.851787137, 8089449.929738716, 8089460.9375, 8089639.26405835, 8089679.6875, 8089789.013272934, 8089838.583006551, 8089874.255360741, 8089933.15307234, 8090024.5661768755, 8090065.092628171, 8090075.593291021, 8090104.523108596, 8090112.5, 8090186.771633873, 8090205.8526634285, 8090207.432504389, 8090218.75, 8090226.829801065, 8090249.736205487, 8090256.694668988, 8090257.299001285, 8090265.625, 8090293.75, 8090378.125, 8090397.473300856, 8090518.75, 8090523.4375, 8090559.375, 8090574.690224529, 8090579.13725833, 8090593.75, 8090602.009832119, 8090606.243909534, 8090610.944546044, 8090621.377622817, 8090644.10412091, 8090661.870948707, 8090670.53145383, 8090677.264925659, 8090705.922180164, 8090712.5, 8090714.011494279, 8090715.166623203, 8090730.954570375, 8090754.811466875, 8090781.710780296, 8090800.486277855, 8090802.738997754, 8090804.6875, 8090814.640037232, 8090820.296826554, 8090839.1894543385, 8090845.2651455235, 8090845.3125, 8090867.1762114195, ...], [10.400962410743308, 23.639825467851395, 47.58240110989277, 62.74425161416574, 20.75681064016595, 48.33547233233634, 10.478196221882312, 5.8717373260956816, 29.538648078433674, 45.70422236900783, 25.739839278103357, 73.59019045652849, 12.88395956833397, 14.715912495040282, 8.884381712690937, 55.545875712034814, 60.12957004894906, 6.1668514392045894, 9.56999176224366, 10.473960131451578, 12.102339152258384, 38.528359291048325, 23.834141415604087, 29.532018773388124, 18.770605481039293, 5.950892636029585, 46.082783190515414, 66.15121123088998, 70.35190523782177, 24.63802700743465, 25.083871218865035, 31.68060374320346, 63.18712173799698, 14.293896620686736, 58.458325672993944, 122.88407494669318, 20.379440710262404, 71.11213701816432, 58.505150405798105, 24.677368178753625, 9.298542006843213, 11.011490833045187, 45.529883393441324, 101.4449325256267, 6.734843574427124, 87.58552365209864, 11.660988989436737, 31.04347504241282, 61.95636994119724, 23.926165295072323, 106.52524690152103, 9.822098242102443, 73.1487403820039, 6.4367394679264684, 11.558114332271058, 11.125369463418055, 33.44761828125941, 10.7235346238878, 44.53747891939113, 7.0680328948749995, 13.260400042099254, 14.756749495736345, 12.671362363092229, 30.29386777367889, 60.600643522066946, 162.3965105647888, 14.49763440585043, 6.352197574653877, 39.98887681302709, 28.45166218596297, 21.58424022299912, 45.27941583463799, 43.16412117837018, 23.414982591707048, 8.691811731828487, 72.28852517672595, 49.98887821121553, 53.79278637281861, 10.685691714959175, 9.458170787524402, 101.50554186361842, 44.941843204836275, 14.940631823950799, 38.39295837359084, 95.30864546142459, 18.382283471229705, 42.677525373445526, 60.14860958418742, 35.83366594242249, 31.214492453012728, 64.5720459636841, 73.28249210849248, 35.005622613264386, 9.69184128717084, 35.59878518159729, 96.4805669160928, 38.73668445657988, 26.63757737986945, 39.320318970678954, 26.291268134419568, 79.42517035841942, 66.44479846355664, 28.11640835423109, 29.201311590814896, 16.59226495663074, 113.80270350083741, 49.61570699470526, 170.8615958350486, 28.657647140322705, 7.8467119203740685, 113.62240308140312, 34.17446709006069, 8.209608697761148, 13.926548215714316, 90.55142837250804, 40.11390359931883, 15.057717577611637, 45.44927481805355, 19.728800497829877, 6.6491775224437, 67.7075973976671, 8.986872387970328, 113.39439424257966, 62.21112792977878, 7.62502725674398, 58.51389886330279, 30.32290892259968, 5.119747770411367, 40.247916301749015, 12.542216155229484, 58.73119334843799, 54.18654295907914, 49.89746688435776, 56.69447746356925, 18.212787773252387, 59.37104439052547, 8.543887641470066, 17.631459654395414, 19.084258018460297, 18.126386542880933, 12.023877399778916, 130.0670304197411, 154.25826865562772, 77.23512162616116, 16.222123131738574, 6.15059062241635, 51.736406715107236, 16.25674931265862, 64.7371454282867, 33.87610813642884, 48.49164393553527, 85.06006919550643, 50.492628885366685, 12.492560687954425, 23.42434724285142, 24.26068861840961, 35.74268390241503, 6.5321086506771024, 5.916843189414651, 59.34562622992541, 104.61971459627186, 38.86050255582926, 28.94782029830402, 60.29320692336586, 106.35002123384888, 104.47687635464571, 41.82506372416525, 10.609658411776408, 66.0678930520318, 87.25725949808675, 16.841409127720993, 110.71406714092186, 28.094981466264414, 20.646363553618226, 9.030322581562304, 26.24941751565295, 26.335034673553146, 129.04071136775337, 50.10468515790366, 14.784061696856815, 33.18859409595213, 28.461017837936684, 16.932904913971253, 11.87450237000353, 117.03708137088071, 80.37011920699896, 43.25856653783284, 5.806486579395853, 9.270791673433484, 36.883815220334164, 16.26823922180114, 55.13070597254647, 16.633567555072585, 40.54973977464229, 108.68717854099597, 38.64294399489056, 38.024714884439085, 73.27757378518456, 71.9185090851467, 53.966967166019316, 6.901009553481489, 8.928300904740096, 24.617632120733898, 72.65798150812897, 50.342245422467364, 18.583661864659067, 38.1137152781328, 65.60414658071153, 50.10416240820579, 36.165464054241156, 63.25702131873062, 79.56654319331771, 36.04743205295372, 108.99033395993523, 12.850504858556032, 31.010091021471435, 52.245870451629074, 12.427482033182544, 69.07406721426717, 12.343651915688726, 180.513005306369, 83.51950980051836, 12.356764858842865, 13.307175461669846, 46.00968121359469, 18.77333861616935, 6.525085596452619, 42.33033668618461, 58.08181450845464, 7.561467791837342, 40.35820496670206, 11.944776886022789, 24.995055504454808, 149.0959893683194, 6.025420545276324, 88.99984706198423, 35.398366501312154, 45.1236583245297, 38.87409622203402, 6.007309583813928, 36.555560117207534, 5.658912389004685, 40.420663535422094, 10.969700286722016, 12.365065086322929, 48.523464624821926, 16.32005933705371, 6.364286437930071, 85.56450321868864, 5.209486420703978, 7.589926407987325, 48.57294227676627, 44.68437423401886, 56.08524175121541, 45.6081189659847, 20.032243970417582, 20.558773676686734, 40.07809966511236, 8.247895931145653, 80.75439671767721, 16.538442585342306, 77.5842815003383, 36.32475190281197, 29.26622552053781, 17.093195450362217, 84.47687354770761, 21.858007840615464, 5.062262235475568, 9.75499377921698, 47.547026830103455, 8.790678035855764, 26.986446603101605, 14.218736087902228, 60.58896108801835, 26.733208575602674, 62.119835793682505, 8.62145874158588, 55.35883292160984, 44.61394015326393, 20.25736723382071, 25.431497845276482, 11.98824076343529, 7.466371599638049, 8.557925923096029, 30.819749146223366, 26.46381407979677, 13.217596066739883, 18.557580443198574, 60.288259598350315, 12.641567349866849, 36.29373629516258, 52.671101154896995, 36.508465551042406, 14.46791749639854, 20.860199456350433, 33.326441382685594, 7.37532457860167, 53.61305179874029, 77.63642699204556, 13.617620164341423, 65.984781078766, 10.941795585194965, 58.258844890808405, 30.00364931858151, 27.315005834877645, 27.054037096643334, 51.795031738641725, 54.726486993181794, 16.942257686154875, 37.68943895033582, 17.929542423158537, 89.92038126261612, 6.658104692216695, 40.11576391570961, 22.393495691945738, 17.513652973764646, 49.61209934466028, 72.55362895400395, 104.82248568887609, 5.035928169309472, 38.78745085875888, 12.471534535826358, 88.11263258014638, 120.91740517678167, 102.016007900209, 8.530885609038345, 9.942632748279744, 20.50987824825039, 5.890043667998871, 37.449090188206824, 64.98693534158025, 18.59436656678515, 47.7185271179537, 49.832744277556294, 7.824667037830881, 98.08874127566669, 128.48865050005415, 112.36564654268713, 116.5739554191322, 89.4056374407295, 17.04845049468957, 29.52549163645054, 92.12847688009799, 7.016889374013605, 8.813707052593326, 36.54487572441659, 48.088862491784425, 43.648400432027536, 10.196112518693695, 10.51191901118631, 18.071198701484292, 130.93134273211194, 41.22241577576648, 41.607979605298006, 10.793496478919915, 7.76204361419789, 10.478653681733283, 19.826471738176135, 13.907903901687499, 48.82474240870702, 56.75998144469541, 190.88436602492894, 123.554459577745, 6.964382677936984, 26.40545763674529, 27.198457094463578, 8.120632564086886, 147.08953424971548, 73.89810885707674, 112.44777604826237, 13.148525912967367, 5.612829258809081, 17.278851272397826, 14.733904012733626, 6.802884428520733, 16.634270491438283, 15.045995964417333, 47.282533429281344, 113.58743733109227, 5.745719028740554, 74.8194491821044, 17.947482016476645, 38.09334232952903, 139.6681011023045, 39.843755862988196, 26.542712569055855, 11.036029731300767, 52.480375077015175, 137.4725896582385, 12.984905564935884, 49.87676557690176, 15.093874068582908, 12.138063088646735, 6.1557415508059705, 34.963750189209094, 69.75299158044893, 17.467057841098995, 75.76386949377952, 9.901548392005036, 10.039004287353265, 208.3504920259022, 13.24091066483085, 28.761497880298265, 17.474860689351676, 71.17732248192189, 5.712211630919645, 9.583773519996297, 44.182474860102026, 38.47256079116525, 27.888262611831312, 124.81947177462408, 108.02760903637694, 9.304323855199154, 146.0489839584649, 20.82434318063104, 7.169848607949519, 196.12648864789298, 20.98023237784482, 64.20499659062416, 105.9055315732106, 52.90834361219296, 35.345180807398954, 73.11596170378051, 83.35735135363043, 13.358335015820984, 62.30567801286384, 78.80649276912303, 92.08483297301824, 66.29217664615895, 5.5820900560212205, 24.376613948165364, 34.297329177324926, 83.37918027442913, 7.243914387913397, 52.04465818547687, 9.04759121109012, 10.154653083359701, 61.706308022142565, 151.82863088359278, 23.193360246680044, 64.15001600503024, 46.13265879351743, 82.9853087755609, 76.29421664266849, 104.18674389310168, 11.291751979609778, 71.05130103661031, 7.606766364091917, 12.383820731477208, 17.84614542488493, 28.38097079657936, 33.45985842752049, 134.7175906642812, 46.00347609786686, 12.54239550960354, 78.73929854376519, 88.18466900000934, 9.063817374855368, 20.427118705119454, 31.394421346763284, 98.44197127731199, 28.483270759308823, 9.10626251755003, 116.71806665624706, 22.45055891938578, 78.91214493647935, 26.037339790342877, 32.86225028000116, 47.750740422334744, 94.28205898402598, 15.59702728653796, 23.70011225676356, 32.2671340649546, 79.10568205562907, 41.55740053404081, 74.34293267991043, 103.43818672657342, 6.665511650675135, 7.3341399145250445, 17.91092489020519, 29.98205726698739, 5.640793427737235, 30.658213340672162, 11.598682433115023, 5.392833165383943, 179.99988925482785, 97.70875074890581, 50.07834164938612, 118.97249405494246, 66.31363769749822, 31.890763292926245, 47.34667160615387, 37.815342475904565, 47.589627674720255, 43.38872299576941, 21.80059230222273, 29.921615484819085, 10.431864823617772, 115.77786018971582, 50.139141244449235, 22.08365392356763, 23.79190871949959, 62.97547681644533, 16.121746479720038, 18.954948940074804, 26.14766982085155, 34.95968961925218, 105.16188835937395, 17.258870760327536, 65.02169802014355, 6.7615800754288555, 14.793193298536323, 69.14146878755773, 14.401544587935946, 53.549653081788954, 17.69005517761632, 42.98104050109356, 19.829899711031988, 11.502532894211118, 40.96056837751239, 6.8669268611805, 30.65473136021926, 16.44165940080369, 30.452775601115754, 49.71448378559719, 19.361471771163274, 127.15850984954389, 126.89749110869795, 86.82045053239064, 39.26953330637987, 154.95073249860133, 8.291323347976109, 27.315268481128395, 139.04454162218997, 14.071542777802856, 10.917385792850899, 22.280168860188112, 13.770513841703574, 10.034036715050226, 91.43210690694889, 144.07184815171973, 168.39538347586412, 136.5882542040751, 27.382161465385508, 320.9424641326983, 6.3338118432565516, 15.300622833253314, 35.008270668620696, 54.19286161890331, 19.161779998300275, 22.63391660289839, 19.628853556379603, 5.500494236678707, 28.873289343821508, 41.06422429789514, 189.32156069089334, 59.69359122212708, 176.6369070138275, 52.95257995051452, 38.583560877355886, 15.95747254637068, 51.3405133004139, 89.63960607029549, 14.45696663834607, 30.502669984039404, 28.12855441944551, 37.80385100482644, 19.359921221704866, 26.374974109621355, 5.324889990629898, 6.191480961064078, 78.0313764175809, 89.59061348799216, 10.592145546138703, 72.14487598084334, 9.417424744168075, 47.14587261470892, 54.24978357317438, 10.253911144751225, 30.326118124904927, 7.635638839395711, 59.029604257358336, 158.3155268206521, 10.334493125287214, 88.26913377740009, 36.12764135068203, 100.00567949057857, 25.363166185681166, 15.149637960569363, 7.550550169899062, 22.669732157049562, 13.406742378210474, 14.225458498731825, 82.96644455356466, 42.64920476677582, 29.81295113857795, 48.71350585510403, 55.14111183227511, 11.297264531040392, 13.67252572355071, 47.12295435947573, 311.5300651703841, 8.80476890758695, 32.131440892283514, 8.896134123464474, 39.73547833959445, 67.14275851250338, 21.872809078666137, 48.36725360294672, 105.57715866416254, 20.64767853278124, 100.11954868680483, 37.39512326292361, 12.350120481945956, 31.48862131851539, 71.14466104272466, 71.77454905079199, 49.762114840133876, 29.148383721966955, 39.147205807397384, 6.475100450497457, 22.13813754598648, 10.973849065957182, 30.194348556023183, 47.99840695399697, 5.24526252706175, 14.200854985472137, 117.23413423847948, 36.69450932307914, 47.65098288169487, 81.87367670936193, 22.207527670966066, 24.78437089198236, 65.2931161150748, 127.41081057176353, 40.50613928639768, 22.691091465601087, 52.646752159602364, 7.796561520886866, 165.39443671568614, 132.5746483540036, 9.922166822120714, 70.86154734039674, 77.03570664211286, 54.35024066451737, 22.77095427077337, 6.011502501159456, 6.026465932853288, 20.928561807825716, 17.79706306301397, 5.295469616540124, 15.331435730027255, 118.64091502155436, 24.83863151876337, 26.721137921270643, 5.992410102146504, 31.43288992111666, 7.60709245335062, 37.619950794094365, 38.6770018010513, 80.41768383338582, 21.054458531851576, 34.295389153453634, 52.29042311143173, 63.90552574316276, 11.357920683048746, 44.58345596909514, 8.065718424693399, 61.91395658193693, 21.1655040436697, 14.828545185630723, 7.940281198692213, 13.470314337581053, 30.91241466267853, 116.58700830775382, 10.117405142380477, 15.960230622034423, 75.16072117053795, 12.602865235644128, 53.36531747745555, 8.200660107879438, 20.575984127499897, 16.688511481235466, 41.97991585216473, 17.206635149749243, 113.1036143537925, 84.06200239012432, 32.130411981033305, 12.101094928430708, 5.158713005895861, 119.7151709248181, 52.20051209845731, 45.75516283518044, 5.280484843430409, 7.237867662555545, 20.003239656824363, 22.626901163524114, 76.6569114358037, 5.2741356214957, 5.611216947031169, 70.75236434772697, 64.14840533551984, 68.78310031685818, 31.8551876050154, 86.06587835998616, 54.825074745173666, 15.64282919186178, 9.166350658585198, 37.63925546558275, 76.66411052287852, 16.25454819367221, 22.518858884323457, 12.35086427632177, 121.03463646461961, 100.54773618820357, 9.095846650704411, 11.288069561753087, 53.20905404939188, 21.08541542401838, 114.54450044677078, 57.46481253354781, 44.706024818643776, 5.434772679085111, 11.337757366259783, 15.122512484336582, 22.122641928930957, 121.13924017402029, 24.568217609123714, 34.084303827597815, 13.135637774530684, 17.416428398121468, 28.82424632642737, 24.043691968746344, 18.40275396374026, 58.04668146741526, 32.28207799325128, 39.2193397097781, 38.66967983263793, 14.296813789981861, 5.42142048703157, 27.900699070473742, 36.73678677368128, 20.21377345013805, 53.09488735711708, 6.373237507698214, 101.4205817054017, 11.924504622065596, 43.66286373432136, 17.750720194886863, 33.34713539817323, 13.736910778229992, 79.36032697792933, 14.58312738611211, 95.85884263535212, 9.621275902863788, 105.43705084689675, 12.412683187627197, 15.312528625405136, 236.4960425777029, 73.65336376954404, 28.547085909215284, 25.59499250736047, 90.83722991839474, 8.419428775053147, 13.660083730389806, 18.018608127417327, 87.15404788438006, 12.576240712674572, 12.52544621095229, 19.74850689738896, 13.766757229224181, 5.979385496565035, 193.28731622164463, 9.233328389190433, 29.27796711293181, 46.24674662776292, 57.13654760411967, 33.57837039690342, 100.61480311841794, 30.842865627331687, 13.440752931184347, 5.387181816586832, 8.944540037089325, 17.767046946621583, 40.61294803023665, 47.69902973082617, 11.493030163429085, 140.45970045153987, 41.4284300573997, 5.875844483155071, 63.148961912166975, 20.10651489838371, 39.360836992918486, 45.87462799102657, 49.89160931443997, 13.255709847934273, 62.681610253059, 18.02649798622879, 50.614402852448364, 52.60363012649631, 10.441271578420542, 25.78478104780325, 8.79768715481434, 5.3296935640539695, 75.54496777025163, 12.250527839785638, 52.560060370829916, 85.14495991275034, 5.434962100780362, 34.538081762159294, 115.54858367734323, 88.17755523467216, 96.64862905075728, 83.88341863341509, 15.350588403057849, 18.107012088786146, 17.7869910473765, 19.537096308721146, 7.47316169046839, 5.911427444828262, 75.56193921559017, 15.614242589714978, 161.15322099773007, 65.53219745953788, 35.95998205880176, 26.08815409260088, 49.460156819750516, 77.1369936147791, 19.52410376998067, 5.422544464233035, 25.853476156421493, 30.684366756508247, 113.40168767995306, 117.76095511227904, 38.694779898759954, 93.63143948254123, 57.51854385865014, 54.05015939146233, 19.89985702047359, 121.0440899554408, 172.62298685428794, 81.13789263604815, 10.435881256373012, 28.87083004225567, 13.201857026633249, 35.217184206746595, 93.64123783897307, 48.2351133994546, 33.67676319316092, 24.986801593375738, 30.939713350858927, 23.852438121736927, 202.38868685720865, 66.74163421813819, 12.999850971290606, 54.37369686730494, 35.4892321811155, 70.90560804870083, 15.342432949051418, 15.005881442747913, 14.651099188063057, 28.018348481062066, 28.48480874581145, 22.788535227659906, 56.93371364874609, 158.78833698316532, 57.87468124831223, 10.85967427841267, 108.84333903187705, 50.27562987740627, 29.940256847907712, 68.68466976815702, 21.68068512779282, 45.62198568584412, 18.248804544108765, 13.930264994385524, 40.28345053797901, 34.24407434294551, 28.911980063877124, 42.96688544989523, 7.6771583723321815, 78.6826073618883, 89.00049121160869, 25.91082296188571, 13.225964869595211, 24.40772626325957, 49.143808784118434, 65.82957530505408, 119.45063295174064, 10.971240354785925, 58.18255603207465, 30.05305952338827, 21.51870833213216, 65.89875668860273, 17.937226678444144, 5.877052287224873, 18.588528727571678, 134.93150723921065, 30.013111084893072, 132.9709968901364, 18.623680592273512, 43.51012231955114, 76.09165698886723, 14.876383190594114, 64.40635014329706, 11.267906869522365, 14.735806824849403, 145.04795638515586, 36.123158641051425, 33.228362645074355, 57.66037396407329, 44.39635766784256, 16.64229811558284, 63.363853944566294, 24.739721378286347, 19.824413967861084, 38.73949638930499, 95.53606870429482, 20.35408021117176, 50.87711941918601, 11.114662023866316, 31.118780572461127, 82.01640308154025, 16.77833482014562, 34.29357389180598, 43.10655974122084, 35.145533709987774, 19.551823486720867, 27.251623996062612, 19.617741735033775, 125.8428357608371, 102.81969386163684, 60.81423751043909, 16.264363204801164, 177.03392418323335, 217.44116748179164, 64.67966306534733, 8.719050882543499, 50.13390266376285, 161.1502708127048, 69.25828565682208, 70.12651176293612, 10.76571741391346, 44.56502060077005, 20.625978472102368, 148.69531537673873, 76.86334640883038, 83.27759192309753, 31.445371226590467, 50.82620453653022, 75.0549535787062, 17.98068632798711, 134.38055554975787, 105.93620235748632, 193.46701278004937, 67.00712983540572, 75.18924622300742, 90.64518087752889, 115.5112438525244, 22.582235581335418, 87.10832097022731, 148.56505751231478, 49.2027029845833, 14.023119834844428, 83.65600542931874, 27.190950649971803, 167.9242164789431, 59.2460985579138, 53.06536368394965, 161.1867544199855, 163.8914088719676, 97.72152770619628, 43.7333317087691, 30.842466365279996, 28.850052366440117, 69.34140683447858, 90.06296945414879, 59.69210308402824, 8.290306909455785, 21.51930419454063, 16.48808989032988, 106.10815756481841, 8.405860133627526, 7.878716343266846, 108.6014400832428, 120.47594029344896, 35.289028316012676, 32.28764197858591, 9.093498433074874, 110.04402364674726, 11.933378594978194, 11.983579398643359, 78.6218011400354, 31.939387314287977, 16.52993442723919, 94.50263441915547, 109.83791236325317, 14.764036816841044, 46.558571772718736, 8.280616743558946, ...])
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)