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 = 44922
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);
([7185040.083356966, 7318519.598003406, 7321401.522430563, 7323591.7241539145, 7324239.0625, 7338351.469399757, 7396434.379079841, 7460117.1875, 7462455.186060571, 7483051.148069568, 7500511.960733038, 7502567.682522433, 7503076.738641613, 7504360.9375, 7506879.091099258, 7506984.375, 7507460.278544808, 7531555.99976133, 7532045.321748931, 7532612.39301213, 7534685.9375, 7535443.75, 7535451.3523943275, 7535716.525355463, 7535806.25, 7536240.472522778, 7537128.125, 7537797.897322267, 7538000.8727461845, 7538505.385905587, 7539400.434502515, 7539838.768203646, 7539906.6748292865, 7540222.759054282, 7541896.875, 7549987.152293328, 7551084.235452043, 7555254.6875, 7583549.879918013, 7583846.572460869, 7586737.5, 7589118.75, 7604711.373580476, 7604830.3222331405, 7606400.876085454, 7609238.620894101, 7616842.1875, 7639601.35640777, 7640692.1875, 7640973.388029618, 7641786.026183613, 7643668.75, 7644094.144720282, 7644151.9590566475, 7644247.5921242265, 7644746.360053708, 7644921.36393791, 7645012.5, 7645445.217915192, 7646246.211435369, 7646960.9375, 7649334.236034014, 7650975.0, 7658786.009882366, 7661906.473734007, 7662186.104658305, 7662196.471705617, 7664296.070856835, 7665378.125, 7667746.088458987, 7669690.625, 7670404.6875, 7695656.25, 7696224.597874599, 7697180.880271218, 7698712.132585651, 7701431.477660925, 7703582.762696406, 7703620.230443345, 7707176.225950746, 7707198.04663381, 7710200.15931688, 7714176.859753687, 7716218.145550226, 7716946.875, 7717926.595959302, 7718702.977488236, 7720124.370700134, 7721541.437068801, 7728947.715460217, 7729188.280871597, 7732164.0625, 7732465.936571652, 7733428.125, 7735607.8125, 7736753.028531387, 7743719.427537006, 7749003.92948892, 7750205.923768832, 7750452.682071633, 7751024.736581746, 7752060.180045154, 7752071.327673657, 7752359.375, 7752457.561001189, 7752481.25, 7755875.590049346, 7763820.284480761, 7764623.699486151, 7765424.966194701, 7769973.4375, 7770023.896655707, 7770095.840948453, 7770559.669355408, 7771858.081756807, 7772742.1875, 7774470.3125, 7776024.797039737, 7776474.476955382, 7777042.939924422, 7778649.784142025, 7779861.65169378, 7779935.9375, 7780327.471003415, 7780514.0625, 7780775.962847442, 7781108.402507088, 7781313.685576275, 7781835.9375, 7781912.291905482, 7781933.655508903, 7787358.916639099, 7789683.801835754, 7790941.693617751, 7795930.838439375, 7800515.182428211, 7801789.0625, 7802369.615805896, 7802548.878013454, 7802921.074990985, 7803096.631247126, 7803833.521462049, 7804784.214256733, 7805980.673172045, 7806604.37618242, 7806798.4375, 7806972.728705002, 7807301.8341919845, 7808057.8125, 7808921.798281049, 7809589.185934154, 7831792.659604385, 7834804.174737666, 7840526.5625, 7843513.11022817, 7853828.958887676, 7855918.40514629, 7856185.9375, 7856571.937021888, 7857488.608304305, 7858762.244827776, 7859493.75, 7860807.8125, 7860856.25, 7862795.653458138, 7862816.410027736, 7864535.9375, 7865023.788464187, 7865764.0625, 7866035.9375, 7866559.95739946, 7867000.0, 7867402.883637181, 7868341.3248316925, 7868502.724263746, 7872519.62268714, 7872721.875, 7873860.9375, 7875201.37596861, 7880284.375, 7889426.782467155, 7896570.432732888, 7896605.675239185, 7896704.321005982, 7898298.117134769, 7898942.418426052, 7900265.984839063, 7900509.076787587, 7901728.125, 7905377.995541432, 7905924.981335378, 7905955.334371549, 7906072.5003995085, 7907055.292802233, 7907815.828220732, 7907956.530397679, 7908590.625, 7909105.460135957, 7909509.375, 7910808.009559108, 7911085.9375, 7911665.625, 7913406.25, 7913977.682853642, 7915145.064347295, 7915265.625, 7917537.41540606, 7920051.5625, 7922201.850625366, 7922652.980070238, 7924437.406006304, 7927077.5529575525, 7933722.234266613, 7933808.66323375, 7935443.908989962, 7938606.057015147, 7938753.990514579, 7939246.679126166, 7940296.719690762, 7940453.114753773, 7941061.764183553, 7942109.043588898, 7944140.625, 7944800.136140802, 7944946.355285984, 7946671.642979504, 7947385.274915277, 7947485.746995529, 7952185.527258274, 7958011.875886369, 7959448.096291252, 7960754.6875, 7962322.030388535, 7962650.86081777, 7963172.486859694, 7963216.245733054, 7964204.681155202, 7964255.319457561, 7965369.323743853, 7966637.5, 7966834.265952463, 7967637.964753245, 7967639.68464396, 7967697.575276583, 7968220.762387347, 7968555.43913329, 7969227.525079232, 7969385.9375, 7970514.047762309, 7970858.754768899, 7971625.0, 7971779.8402057085, 7971831.25, 7971880.563585441, 7972162.766337341, 7972223.321658005, 7972516.198368501, 7973031.927316458, 7973540.625, 7973803.125, 7975563.751353648, 7975757.5223460775, 7977633.130853016, 7977663.661162853, 7977990.157993134, 7978151.747474988, 7980088.626088386, 7980488.336383577, 7980562.5, 7981641.922141449, 7981645.3125, 7981744.491676656, 7981951.945519191, 7982296.436471735, 7982696.875, 7983293.75, 7984571.833226791, 7984622.477901829, 7984806.131997251, 7986049.936387749, 7987519.302683729, 7988570.6497693965, 7989067.298629909, 7989273.116254805, 7989551.860135988, 7990265.53273274, 7990593.102122873, 7990627.561308681, 7990752.270332596, 7991435.9375, 7991920.633718044, 7992190.625, 7992689.548926184, 7993668.401840406, 7993695.2955175415, 7994082.330965746, 7994573.4375, 7995940.633132978, 7996234.275834842, 7996626.398481594, 7996648.25483704, 7996753.976272485, 7996846.722474509, 7997047.495031769, 7997052.942867117, 7997749.545118887, 7997860.516449839, 7998496.076174473, 7999829.6875, 8000232.8125, 8000518.883275117, 8000614.512600282, 8000894.451714425, 8001328.74481603, 8001498.774087717, 8001557.621865781, 8002601.5625, 8002751.126077481, 8003057.661920199, 8003499.88638265, 8003523.85671553, 8003574.710141283, 8004360.188682576, 8004612.365599451, 8006637.459848961, 8013281.25, 8016563.839666477, 8019448.4375, 8020811.188723922, 8025884.121041329, 8038953.3907887135, 8040056.25, 8040544.181406097, 8040975.539402123, 8041030.063163453, 8041139.0625, 8041315.819421858, 8041809.346907231, 8041938.072113584, 8041980.323701944, 8042462.332752581, 8042474.603641622, 8042970.753812124, 8043570.243243528, 8043579.37581915, 8044003.185128932, 8045116.62478453, 8045305.483131569, 8046272.992806553, 8046903.125, 8048297.6937810145, 8051779.329548967, 8066020.3125, 8068260.536598699, 8068298.362191622, 8070029.082595739, 8080082.8125, 8087441.302830067, 8088937.225206018, 8089111.273134701, 8089698.982378414, 8090289.0625, 8090572.24041664, 8090592.1875, 8090845.3125, 8090992.1875, 8091316.560417072, 8091749.235460222, 8092309.639452827, 8093178.722597916, 8095159.610365668, 8095484.375, 8095498.081952801, 8095501.007646004, 8095551.5625, 8095785.641690473, 8095904.6875, 8096073.013741893, 8096402.858516981, 8096443.208798953, 8096552.57928963, 8096637.975585375, 8096640.27208676, 8096690.880406973, 8096707.946142029, 8096722.468738424, 8097094.976106706, 8097112.5, 8097417.1875, 8097518.415618742, 8097554.03123383, 8097782.330017931, 8098132.530136663, 8098345.690412224, 8098478.368005842, 8098492.474204067, 8099050.240290612, 8099076.378917945, 8099382.8125, 8099468.75, 8099883.996657011, 8100117.566136508, 8100296.832203575, 8100551.967646896, 8100690.040199368, 8101105.84579297, 8101726.817405068, 8101991.820287772, 8102156.052977721, 8104237.068491729, 8107585.9375, 8109556.255977803, 8110839.273366383, 8111033.069536956, 8112191.617149678, 8112247.785357833, 8112880.670223516, 8113730.610779011, 8114911.847383454, 8116413.703226603, 8120914.527933667, 8125933.9228374325, 8126423.307029533, 8132535.7080706395, 8132832.8125, 8136045.957947824, 8136053.494325734, 8136303.727644242, 8139556.25, 8139557.544219481, 8139558.4667820055, 8144115.625, 8144256.25, 8144291.707546893, 8144490.327343382, 8147401.5625, 8147601.5625, 8148219.695617376, 8148594.404112146, 8149604.484050729, 8151557.181683297, 8151563.347154897, 8154156.692428882, 8161151.236103417, 8164386.783625666, 8166248.626086139, 8166296.875, 8166928.959936989, 8168125.99277973, 8168339.041574122, 8169030.958784647, 8169440.329300654, 8169802.578670444, 8170896.441428001, 8170959.1630190825, 8171649.356941983, 8173577.604387777, 8173620.3125, 8174193.538664248, 8175257.354315883, 8178559.375, 8179658.943215969, 8181359.375, 8185412.216874326, 8185552.543081701, 8190558.349340927, 8193839.890233594, 8198468.85740507, 8202584.375, 8202743.223497279, 8203778.483318837, 8205026.435000808, 8205220.778364258, 8205811.5015775, 8206113.13877066, 8206660.607248201, 8206916.621828211, 8207484.337055733, 8207945.735967094, 8208443.75, 8208743.722374747, 8209160.556493961, 8209713.1370743, 8210661.853165214, 8213398.4375, 8214377.470066076, 8215635.9375, 8216084.942251155, 8216206.913818343, 8216755.949536791, 8217658.639119494, 8219378.6996417465, 8222442.1875, 8224149.130060822, 8225773.909486044, 8226578.164735718, 8229162.5, 8230599.4511391735, 8231615.625, 8232238.856385416, 8232715.443972272, 8233474.329218491, 8233597.936118939, 8233653.428622191, 8233820.779796056, 8234225.623958788, 8234278.125, 8237430.687567826, 8237713.78711272, 8245012.289075898, 8246885.9375, 8247401.5625, 8248940.487740186, 8249035.842776349, 8249293.202086221, 8250833.046839759, 8251092.490807907, 8251529.6875, 8251568.338973334, 8251606.006061231, 8251629.098934478, 8251729.61135772, 8251990.067895527, 8252163.799682077, 8252473.83133724, 8253684.960531592, 8254527.840744794, 8255409.375, 8255535.140725009, 8256121.875, 8257310.973462642, 8257870.849410453, 8258346.273753614, 8260771.579887529, 8261934.375, 8263132.8125, 8263353.125, 8266175.0, 8270450.448557038, 8270728.982278952, 8273611.7220441885, 8274256.047053611, 8274659.375, 8276013.700307858, 8276297.321793135, 8276930.762639277, 8277047.398146586, 8277497.099931899, 8277584.858606892, 8277793.486268422, 8278112.283770957, 8281462.5, 8283370.3125, 8284113.041146315, 8288577.462773608, 8294987.57478321, 8295451.713712678, 8296510.002022742, 8296854.173834063, 8305148.99225236, 8305483.224102689, 8306237.5, 8308713.327928626, 8309707.775354877, 8310301.825278589, 8311245.513563736, 8315134.796125161, 8316560.861621481, 8316603.579206013, 8317564.0625, 8320131.137006212, 8321180.020666459, 8322482.8125, 8323557.012889665, 8324564.766130294, 8325848.759402331, 8325889.0625, 8326079.520007053, 8328864.0625, 8329270.606458618, 8329923.4375, 8331605.666504214, 8331639.246640541, 8332842.1875, 8332918.75, 8333854.680022496, 8334245.295849044, 8337954.5646236725, 8339520.553887878, 8340226.257938181, 8340527.941853814, 8341842.1875, 8342646.245946879, 8342873.351269588, 8345362.883198694, 8345677.050491325, 8349802.045945886, 8350005.651914258, 8351173.253105631, 8351684.208009383, 8354185.868262415, 8354999.970036516, 8355237.732576007, 8355282.812324187, 8355982.072868149, 8356175.863576424, 8356225.655157985, 8356600.435668419, 8357542.343121762, 8359262.887576837, 8360309.375, 8361085.487467763, 8361187.618584814, 8361740.175020526, 8361741.367801537, 8362764.522555003, 8365340.9181561805, 8365437.251092185, 8367919.694074752, 8376171.283672757, 8390231.416176056, 8398802.087471636, 8411278.494260011, 8416646.844433093, 8418561.280544095, 8418981.159772953, 8424710.9375, 8426615.297149196, 8432402.47991622, 8432773.94911894, 8433889.196709672, 8433921.507203959, 8438666.596449833, 8446977.300462786, 8453284.70434348, 8453318.75, 8459392.295453154, 8459409.592595248, 8460729.19052975, 8476450.653629798, 8476912.115471423, 8485045.3125, 8487445.185986882, 8488174.107783688, 8504387.36369538, 8506401.529241785, 8506401.5979556, 8512914.802299606, 8514889.0625, 8518028.776330238, 8519509.343011312, 8519788.699359514, 8519956.658479339, 8520273.727921737, 8520923.337881252, 8529265.23647073, 8537352.160338247, 8552014.10924906, 8557943.815684441, 8561779.09221605, 8562073.016620547, 8562133.86376447, 8565800.233521879, 8565864.04823253, 8569610.738599468, 8571684.56998657, 8571731.172534332, 8608242.168190766, 8610196.850675918, 8610332.291667117, 8653657.539577784, 8655334.09135587, 8656950.596185105, 8657003.661043214, 8659951.5625, 8660356.694448134, 8681678.702503532, 8685980.282964882, 8713133.294709755, 8713358.717513693, 8716854.6875, 8716885.695575029, 8721435.21501596, 8724478.998933068, 8727508.79486945, 8728206.198885975, 8728380.674871448, 8728659.826558823, 8729235.9375, 8736531.467800021, 8753752.496922769, 8753932.695927816, 8760324.195490342, 8762627.424440416, 8762814.973044185, 8765181.25, 8765444.912065562, 8765720.630950708, 8766990.011422325, 8768410.717446588, 8769210.607411075, 8769507.993142787, 8771324.739515323, 8772146.577852959, 8774316.89537174, 8774331.927935202, 8776729.272453923, 8780592.708263822, 8780592.956239512, 8781073.010392532, 8782907.884270418, 8787536.702329237, 8794004.6875, 8799303.125, 8808895.187542, 8829444.633836305, 8834361.051352745, 8834451.5625, 8849243.553808836, 8854787.5, 8856221.811866343, 8861121.869246975, 8862589.0625, 8866283.861850603, 8870704.6875, 8874192.235196467, 8875779.6875, 8877125.0, 8877696.960972419, 8877817.999143729, 8877928.075166883, 8881942.810260875, 8882764.0625, 8893057.718682833, 8899603.044345211, 8900341.28619379, 8907366.054640703, 8910617.1875, 8919183.04891031, 8919566.708929375, 8919751.5625, 8919772.980332095, 8920151.138883095, 8920414.06111077, 8920752.934040084, 8921717.505288286, 8921820.3125, 8922254.6875, 8922518.324604698, 8922518.75, 8922551.5625, 8923010.9357318, 8923435.661642913, 8923537.492496854, 8923618.20659707, 8924667.03193558, 8925262.5, 8925463.675540911, 8928631.002407629, 8930008.654938553, 8930126.259806704, 8931920.843334856, 8932250.285631081, 8932312.423408598, 8933133.183436925, 8933721.990704346, 8934454.157240348, 8934510.667887082, 8934748.48099183, 8935252.710753538, 8935904.325798225, 8939232.8125, 8940971.875, 8942127.218306273, 8942142.330839608, 8952179.107935974, 8954142.079542272, 8956307.803788574, 8957501.5625, 8957527.847593244, 8957543.75, 8957587.515719727, 8957851.83171191, 8957867.621873105, 8958276.61727931, 8958711.484941978, 8959690.922746614, 8959873.4375, 8960027.003271386, 8960508.44496407, 8960800.87513154, 8961074.892827883, 8964053.659876855, 8965849.724494798, 8969372.096236015, 8969572.937414832, 8970141.80706371, 8970363.23262346, 8973293.163565196, 8973542.704147138, 8973890.67186479, 8974279.6875, 8974825.355479054, 8975436.674576413, 8975882.8125, 8976585.387243928, 8979309.434257096, 8985587.527123516, 8985658.248158485, 8985686.115984673, 8986402.148462838, 8986851.5625, 8987438.662116531, 8988902.838293925, 8990487.5, 8993112.160907626, 8996799.665408405, 8998262.5, 8999627.851752166, 9005917.08962537, 9009998.524760578, 9014716.602287775, 9014740.625, 9016335.653268173, 9021380.120291686, 9022282.149987591, 9022322.769495897, 9023134.375, 9024150.20543436, 9027468.729750115, 9027533.301039223, 9028599.012187963, 9029920.372548822, 9030782.644232178, 9033895.632273648, 9034121.928535081, 9034682.8125, 9040521.875, 9043139.877101202, 9043641.564718327, 9057963.729665194, 9058429.6875, 9059023.960086029, 9060720.942919308, 9060942.1875, 9060973.48927169, 9061804.6875, 9062438.973965928, 9062542.252316123, 9062640.625, 9063107.967271985, 9063363.997581711, 9063565.188232627, 9063583.515331322, 9063893.75, 9064209.215784447, 9064268.75, 9067634.375, 9068549.699997729, 9072147.475951983, 9074160.519854996, 9083224.414332071, 9089110.991813129, 9089283.70590751, 9091409.776302725, 9092002.792575458, 9094939.767566385, 9110635.697400797, 9118497.196119241, 9119126.315342953, 9119699.457528926, 9121086.278090412, 9124325.149777902, 9154540.744870035, 9164766.052370062, 9165100.607689729, 9165992.134776285, 9172396.485613225, 9176872.084506312, 9184528.876531266, 9185426.040025769, 9185712.5, 9185719.785366535, 9185926.5625, 9186728.125, 9187949.786995757, 9188951.5625, 9189516.348707357, 9190000.0, 9193184.375, 9193383.653139235, 9193565.513021441, 9194011.805727387, 9194557.8125, 9202768.647526015, 9204228.340503493, 9212930.066918012, 9218113.770196658, 9218132.587425312, 9234468.341174973, 9242271.346923243, 9261852.134248206, 9262584.634184431, 9264084.375, 9264087.416386867, 9264967.01634449, 9267050.0, 9267327.12801476, 9268171.056159524, 9270739.0625, 9271150.58136436, 9271617.1875, 9271668.87371397, 9273850.672124922, 9275069.517492164, 9275932.8125, 9276097.161327614, 9276335.331035955, 9276704.191073958, 9277339.77029469, 9277917.1875, 9278039.35349647, 9278621.202554917, 9281320.019118166, 9286215.231516587, 9286357.35865133, 9288089.588607918, 9289187.50780748, 9289192.762318285, 9293195.3125, 9294704.285261858, 9300398.012024479, 9302586.895131378, 9303774.460773997, 9309858.330685055, 9309878.75544081, 9311619.766231608, 9313162.79731577, 9314145.937310554, 9320736.531677196, 9320954.6875, 9320998.340226034, 9321364.0625, 9324214.944448689, 9328730.34398687, 9329314.80150237, 9329418.67489745, 9335863.487973874, 9338964.179310577, 9340375.978330392, 9347721.875, 9362862.56656138, 9366870.124300985, 9368262.56802203, 9368446.30350915, 9368923.067991013, 9370303.125, 9371353.692682875, 9372187.60058123, 9374449.307899462, 9378517.669053523, 9379534.5530151, 9381084.196537811, 9391461.422015283, 9391467.1875, 9397901.95080024, 9404190.625, 9423326.312796237, 9432018.206660049, 9433561.6327911, 9433750.0, 9434637.933047032, 9452485.735961039, 9456246.493285945, 9458829.33588325, 9464455.40291336, 9465763.490276776, 9466175.053758005, 9474646.695870603, 9477974.772368873, 9493590.730575675, 9494873.701751724, 9495106.239958799, 9496488.360275807, 9496557.103974408, 9502068.75, 9504555.252760932, 9507546.875, 9507993.912074689, 9509245.361236315, 9515151.300215552, 9538357.8125, 9539178.088285388, 9552183.559299404, 9581912.5, 9582328.94611481, 9590715.561549747, 9592928.263666058, 9624924.238244725, 9627047.187052837, ...], [50.16971668092333, 19.590648528435768, 27.755970621482607, 71.58362720685523, 71.480887243442, 39.934203462590816, 52.49480621073509, 69.23779432746579, 17.256622131219714, 6.046036948087193, 21.11013491896005, 38.36188633317265, 11.414660588345907, 97.91534344599472, 68.60948653308452, 76.780002568381, 39.58603935255602, 63.894985315567865, 98.01735396685307, 42.9191198314451, 31.702194540186458, 29.606661795556416, 14.19691175515505, 89.66974952266163, 67.80374186932637, 6.463451811172936, 32.58838040122066, 18.159700543868848, 89.01860102927523, 50.27431926030465, 5.257471066072382, 13.92708653098294, 7.764474818303042, 19.88034051128954, 54.33416571461757, 19.59142514625455, 9.216130546135476, 49.877285159061074, 26.357527083220837, 5.158375026786872, 32.71563666939485, 74.48785825561018, 16.91256633315792, 17.303477129214244, 27.11497229478818, 76.7538502813137, 32.05487158112641, 61.594103305249625, 30.10661131440274, 27.582522617351145, 26.8803414442031, 62.22648110886401, 110.73627967887475, 16.704227755947635, 12.470196563074788, 21.345287543456422, 118.75352555190932, 66.51320674451866, 9.252686734103955, 47.13794061534256, 29.077574308456825, 52.09565242509955, 29.180462543099615, 16.789412478108517, 9.528029873599053, 11.39944024033848, 54.12267060249557, 18.915017492950078, 34.203081677094005, 39.92779923179908, 39.46707487379637, 43.479308942021795, 58.005455776163195, 10.552404104737088, 10.595117757558139, 34.17242051283793, 15.886573636239563, 54.83947340395421, 14.637707470849376, 121.97191443079691, 31.780068794525988, 15.58563274309198, 41.73063842074547, 36.0557312842374, 130.67067067106095, 15.070592895194078, 14.407571146380546, 31.906158880949825, 23.09658671157684, 26.308143110235996, 113.65615484428612, 35.82653123904294, 11.65233441057802, 33.43928548262218, 38.412900301070316, 80.90186031711144, 6.161509831873175, 69.91279014385073, 85.72847581568556, 6.212813791344412, 24.22954707775476, 58.38408089165404, 105.690485497722, 37.75064756291327, 6.235937757484116, 40.236094005622746, 77.47152123196825, 98.13605815745215, 15.625483941489442, 45.22008701907815, 52.1230086006128, 38.548743885740244, 99.38664221132642, 95.22823705758239, 5.724111225173306, 45.00624917236048, 54.72880695165534, 9.165489138257934, 19.9581180402153, 69.87508874311081, 31.587018937727446, 10.018344549079005, 47.397252107405684, 48.82635470023238, 121.6944276365675, 107.60668473374054, 144.48780487780755, 74.87907509294766, 90.38874349963922, 62.95011741346351, 5.115417421665713, 28.34021509853378, 20.793029114426762, 5.676030807143797, 8.080302133426391, 10.499888542979289, 67.94556133077307, 179.96551902433492, 7.770732691960413, 8.735632814032664, 51.18991533341972, 27.006578340532364, 6.731834190533878, 30.47105501581742, 23.607243791246006, 50.979788103463385, 19.635743568278386, 6.8189876506796665, 111.28877944893863, 70.6131192132856, 26.6849860045266, 61.9007974437315, 113.18722683269473, 28.757966551072162, 5.563448394961415, 68.3367483657882, 23.194221310467377, 28.618405507933957, 57.077863934153605, 8.974774859269003, 66.68486367780667, 78.33203356932945, 53.59103281979491, 44.76351268778901, 224.782899118623, 41.358693698595985, 36.383326617933015, 11.724492663975422, 80.0024983869896, 58.78719002283802, 12.178945479364133, 44.70426604692827, 5.691567311826976, 18.505319030149145, 12.855947290173257, 19.280772809022068, 29.509756686414548, 89.18265272173699, 10.848148069180489, 84.86900572485823, 7.684781909599705, 35.79322691385228, 22.06593476682735, 5.90811207681746, 50.179101712010414, 91.11172291539401, 109.92838440399431, 79.51558220529199, 29.664631171277325, 99.48397833063449, 28.16071340735172, 32.67725998529324, 9.922826229447224, 24.612906266543582, 7.678430936278875, 7.707901892695863, 37.494642037275256, 94.14423623803364, 35.153781061022656, 189.3688798647126, 61.86958727184321, 35.53277328527979, 57.683924666799584, 10.500436304270778, 24.436409044637774, 42.49112775895409, 36.55284596464003, 34.66965610904588, 194.28354325500484, 67.07605676841676, 20.28150660409304, 20.803331483851164, 57.636405536372905, 5.499505463860568, 11.697508100455966, 37.7422950125286, 39.806431108448834, 10.834750331973433, 54.21443775066159, 5.8132225216588385, 27.45655351812352, 13.812770366259832, 68.21284172959012, 6.28455337915434, 44.72013060442305, 24.65974243323057, 16.58950542246151, 14.261925471268313, 10.54179422472429, 66.88536369581354, 34.2499323737901, 77.9741279473923, 15.568810858395743, 8.80108300521483, 17.931046640143283, 64.17227760306248, 5.706354326575772, 65.99783407521619, 20.098855397600914, 72.97069834319078, 54.675072395389385, 18.10727905844439, 101.48552757660782, 28.668302385552852, 23.363527966611777, 10.05960529774904, 38.21961498553705, 104.16862231041833, 91.01658881001617, 20.37209652380766, 73.93382234370641, 114.20852428444117, 33.89123972161458, 10.201172778967264, 210.03435196077209, 6.076134947223226, 6.149825542668888, 48.511638504628785, 162.96650886816695, 57.36969726873305, 23.609399013178777, 9.097547969146367, 16.471650310268323, 68.31705205643786, 21.554778494018215, 19.806573229750544, 120.03167239824991, 19.499563062001126, 74.10454895381751, 14.018148793054038, 30.75320750200284, 18.79585549587595, 94.04824205376948, 50.10221151255415, 43.70622280863324, 34.544655336230576, 26.162386700614597, 13.784167169593232, 14.51003725632589, 66.46500575092095, 6.879100577026024, 174.67069440691793, 36.318849454111664, 7.039491174658062, 7.714555703913523, 36.05305038762516, 210.68884001252542, 5.377353179951022, 116.95073270354246, 99.16343183070808, 6.538652144546886, 91.97420410397052, 6.330675221921498, 10.623882887163916, 127.3630356597378, 53.2478543617124, 102.24377239231526, 20.32031820035596, 67.44210913707595, 14.39764390948432, 5.800587274420207, 33.17812080868409, 25.836949756730096, 116.18057101251723, 28.677079072513017, 48.02257317176179, 8.999068731707538, 209.43979448969853, 54.240381182926335, 32.17924311872406, 53.36266801524968, 17.62914662208084, 35.46086403596668, 12.257720475883765, 16.400977720093238, 19.639326685312536, 150.8857040391467, 203.07870218731415, 67.227539685114, 98.80422535767548, 16.822815191072642, 13.940939647436913, 79.60511254201842, 10.810494610466204, 44.120411924967, 56.00643519782848, 38.77489486406236, 55.28658533809107, 15.994096510740855, 81.68225919801888, 75.94493868182467, 39.68401995996625, 21.92244793010896, 66.32998935132744, 16.59685996308039, 43.91732783395954, 22.130513676992646, 9.30776158136964, 5.744162678635406, 17.0503741327581, 25.60875886866164, 37.35626398934722, 7.242501312294597, 89.71713644206136, 5.518142509135055, 6.77557050979114, 137.82465230439053, 7.347580318943598, 22.063143606987545, 46.14917889525138, 19.363633641338843, 54.36471352442703, 45.82027961999595, 22.54210583021743, 55.323961743635856, 10.297750928355008, 69.11901640673436, 7.8682877913180755, 24.0781433281278, 5.476359151773863, 5.988304275953719, 44.854334026678046, 11.75132451199727, 46.86005678072784, 63.38962649083362, 35.440144729375085, 38.313258778942966, 16.66576516291829, 149.35975956250377, 8.630077440879502, 23.645016800865772, 75.01185794329358, 5.788133004289067, 20.96281532207824, 43.211083774593504, 23.80441714087011, 78.38011122756052, 10.524205398937658, 10.73524729331024, 23.079950580304516, 35.342871058668514, 11.962446987002375, 15.404845411834565, 21.560810803129563, 11.343226965499026, 17.818487037262667, 13.797631977928221, 36.94665382346323, 55.52949412988422, 25.790364404631074, 10.236527486181545, 30.03647286880424, 6.059220005155454, 16.608326541928747, 44.09007003735606, 23.330449492737507, 20.00665326811477, 55.42208564558811, 97.08084349059189, 224.15259221694797, 31.30227123320298, 11.776039228814462, 27.705391586580735, 38.697332650560675, 20.686918415963753, 156.72043727212866, 15.036828129514682, 22.928557246866553, 36.84032273674461, 5.902687925164182, 115.21142671331872, 53.17110536282506, 7.681327509071774, 9.558629298762321, 13.137415921432224, 25.544328060928997, 27.18527855917095, 100.82024727530612, 51.467144096552374, 132.01531343823405, 44.448917296517294, 56.98981957094093, 21.274422132303464, 5.797197272208005, 34.85121172712536, 17.23191598301797, 27.62486236380069, 80.88051755465189, 159.8083962121732, 63.93603778719566, 12.331696760231202, 46.55970622234614, 65.22290080600054, 29.544907923309324, 29.21840316189663, 34.31277343978835, 31.895510062332264, 10.28335937747194, 63.31583184939966, 25.06770381274679, 28.843318702903893, 78.00724130063118, 86.17556176607283, 6.054802032173126, 79.38892742149034, 7.672900554713671, 63.37871648380095, 62.21265719295942, 13.139070141985433, 24.485511731219837, 51.94549546290804, 10.624279772851835, 83.83308216865063, 5.233170403653709, 6.240782521456259, 21.039873147627947, 59.515098485943604, 38.32180455009282, 31.98439557433396, 126.93988954022194, 45.31066718372364, 72.04926100399167, 86.65101052109392, 56.78194929256824, 20.713074337156, 6.87563397215305, 143.23176520669665, 60.929758412581386, 63.274747179500274, 118.30951141411856, 40.44698680653182, 44.82282408433079, 99.17001317636739, 83.31494459410148, 70.61556416794846, 73.06488490874193, 34.66715735474327, 27.795539421442133, 29.82004832070558, 31.689767740806214, 22.112376288869378, 5.5933080644460125, 39.753726739781754, 6.961201974372743, 45.74075288553384, 20.075275274698733, 33.05073123201791, 150.07032723140355, 25.972416884262955, 10.688440261525859, 51.661501203638096, 55.47706904067573, 83.56920026873358, 18.456022651345737, 14.588151270192018, 6.493338244888808, 83.47538171525774, 53.878651119746266, 78.77497956739174, 25.02895508883362, 32.18866527275518, 24.703282115745406, 21.47933446893706, 16.2405280736419, 199.61845810809393, 301.8330140041806, 40.15782753271648, 46.188977232173436, 24.070310114333104, 24.95939887064227, 66.85906891846604, 110.57697595182141, 10.919731083218888, 17.80012389557667, 15.951481995257959, 120.02712507460406, 72.7106744246634, 126.51058440809024, 38.95120373760028, 178.32682936550188, 83.92734552141604, 14.65902124796545, 6.6571583266969485, 31.128610045541134, 9.688202100900302, 42.18104395989404, 23.953964838994526, 37.7195308184985, 12.580644378475936, 72.32849630952809, 22.57117678949198, 9.830778533187841, 20.539264227655767, 5.387310742123936, 36.21302136907863, 42.610794099484316, 81.75840326178047, 106.51152432240097, 9.741849311564795, 51.48098139109906, 6.6175345389425875, 25.07503106133257, 40.158488819072296, 22.98755222649575, 26.301699927494184, 8.044637802877707, 17.397226130063302, 11.498484783092909, 28.858606241162715, 29.50851927278446, 5.064985270585189, 47.93167764735229, 38.322847404119315, 17.078748739345908, 51.9682364616812, 15.234420693075846, 40.581109512169974, 18.026685812766193, 218.73139962546134, 17.582534552107184, 102.10080009899218, 66.58629466460206, 61.486557208593595, 15.880155636420612, 16.047557753803055, 15.767563545965594, 16.83291342103403, 55.50875286118382, 17.0104757345787, 51.34674190856442, 26.47463515307126, 9.629951869894743, 96.95064044096084, 22.88780695378366, 28.16630616815515, 11.671121186959759, 64.78142139374121, 141.61890858536918, 39.90295780253114, 16.19429932752905, 96.95841709448602, 10.323646652586449, 22.631933277783823, 51.976628617483925, 33.8580036703269, 14.913085065954467, 41.3837447935697, 41.840768124876476, 24.672287012469397, 79.09904919022372, 5.695200400987444, 97.73682870637626, 20.295583530740153, 73.85630719278912, 17.414888729054624, 17.197104217170942, 33.47896382353667, 49.75432293381934, 170.49665379297, 92.99418345423977, 62.30561778414916, 27.94533614353212, 78.1997744338004, 39.68017197394295, 30.17232056501004, 19.714452239621405, 18.207757691273024, 113.04503236772763, 112.72556522168092, 16.65785194997879, 175.72938594808548, 8.06211573016289, 7.646698375300556, 5.034041615785409, 18.803830275224488, 49.3692819065491, 7.712824019300812, 68.97666695558905, 72.11876333909362, 20.6279999241865, 12.531702553526658, 37.05801631758582, 23.62167375379196, 9.30569017750868, 9.63934885421945, 40.24908653694434, 144.02446995849363, 13.823618043617035, 27.20377300044172, 102.60258078885666, 32.52359153643566, 28.77414447672402, 33.60972058823495, 130.4670648394623, 11.68471311797578, 35.99169030867408, 15.369585131547534, 37.021901432560064, 21.523376946108495, 29.0705007667083, 42.804106932105476, 37.00982330905618, 23.520992061332933, 62.146125793548094, 10.921134365833485, 125.94811623165651, 15.078393866072965, 10.046499195564744, 89.5610512709922, 5.998207962615489, 9.30450061146344, 5.908392881748137, 26.412844434129738, 6.118830354579449, 5.039869155439409, 22.68214592998419, 18.59147082347462, 9.371247456577592, 15.197920928785736, 141.363908396887, 29.314528561720365, 5.324703480027178, 21.522096123681553, 83.37821737893367, 41.64382979557571, 11.446803558445621, 35.2584983677348, 35.911253396675306, 12.711433276890974, 7.425131434919186, 7.507421554300136, 42.54050765954829, 12.207786136474148, 12.083495891936954, 55.89326723470507, 9.737783627001862, 8.61755937750898, 45.75277822441218, 8.559175147060815, 10.235088369137252, 40.252554795548534, 7.5180200359492995, 38.06711265081026, 12.837662381548117, 34.828051350860235, 63.31915288471663, 95.14928306385079, 5.357636774861152, 30.259917975886065, 11.75133298338373, 54.50226096653492, 9.234742254118604, 25.98033383338413, 33.06945898684982, 6.188198635044736, 33.17000665623194, 14.255794130487615, 16.312170088269117, 37.43823667072116, 48.10361048771265, 15.902212241389826, 7.669906435911999, 24.268968549561066, 29.478003893030582, 23.851815727933737, 27.27761572092504, 5.591488157431366, 69.68827259286637, 18.990187452593457, 73.35120408396102, 17.86943769356978, 18.961786474789, 55.20959285026644, 43.34315759739107, 42.62292205909807, 165.30289607997645, 32.28805735287918, 44.77467759791672, 14.24297560720926, 100.47952127549203, 9.278584589658937, 14.919626832256323, 65.44749243389141, 27.818589884658337, 30.437860363653026, 70.4768427210536, 37.690521493806116, 34.62991208794456, 67.16340711556654, 81.9799970086349, 27.5758815743635, 48.60739982271819, 54.24860450776601, 9.253315601813794, 63.759344913675925, 6.5959870939481835, 73.64154150430375, 49.86357041325412, 15.926266607653869, 13.385121730170761, 83.44375264226854, 51.04497107975476, 36.44378912032076, 14.936216969628884, 120.51861805169585, 12.07520813117831, 50.49100730012914, 35.570442791890436, 22.271068474587672, 35.84169658196641, 51.85552189477314, 11.124944118084331, 6.232963773299974, 14.912987854670902, 88.63730057842722, 25.78944604647415, 110.41863110727444, 10.572327471442222, 6.715063250524434, 6.944214970782144, 27.055575945510153, 139.31626290475057, 6.821902579857222, 61.096747032828475, 27.133915075429403, 33.123739541417734, 42.95505288181174, 6.445641584514511, 15.109912234839955, 10.536572457185745, 170.01588562314262, 42.5037613483611, 37.78592434609993, 24.832391836824385, 20.712285084035422, 89.85182378562152, 26.55859840927919, 57.844977259163414, 40.84943248705226, 24.043693828347386, 72.36266847126237, 11.152366966250517, 5.252742974784886, 16.903421464442776, 8.315759543611517, 17.539206970616487, 5.836344412668481, 37.89829877379142, 8.534280704392241, 48.11551226032681, 30.504978839782343, 166.5061770482885, 91.74691576664078, 24.068753951459737, 90.26674554485311, 6.037594139997405, 85.62991648042122, 85.63171761488184, 5.582404565934963, 8.580089448775832, 130.2829537270993, 35.98701197018, 83.34962202542592, 20.29995355411326, 47.244192910050785, 21.006002448813174, 15.172284601024987, 15.045909287002885, 18.910232400484333, 11.418641205654776, 12.186380073825498, 73.84026782400296, 44.32800242354523, 29.329149359621923, 71.89305187011831, 7.035078971492953, 20.164566850247297, 212.36109451527534, 5.063960895071668, 35.200767959602544, 15.284874433331321, 20.68319019425719, 56.99291779931897, 83.58100877694113, 20.655215012863454, 12.90195955843749, 80.2473111665622, 106.4721263582748, 9.511367952827902, 28.13025864800112, 24.660278584023835, 23.93538030019812, 48.171013995742605, 14.955043222419146, 166.74865694303747, 5.4005245789362295, 28.68739230316398, 46.30939901231086, 65.19354387799972, 71.06768940372638, 23.34019183843018, 75.02125109674974, 12.056220553099061, 18.04829403552849, 91.89642839742854, 54.99435583592953, 40.746825410806835, 38.77594183109848, 107.65003080556747, 30.124714274041157, 9.465792594807185, 18.775243359414944, 44.82764687315917, 27.966739543543053, 77.11364660250958, 55.76067023757901, 34.229686527539634, 49.38905521392291, 23.750712658514306, 17.863069744819136, 10.532147997279662, 45.916456425999755, 53.50997629795788, 23.339715659938978, 62.7637371836387, 45.992163954233035, 12.44325115367721, 20.08607202381959, 16.32515440758607, 24.45005066326475, 5.5073194596368085, 35.7737598897742, 5.825146296674114, 5.403076407425756, 80.7997200158199, 31.764613409946385, 59.86478299377904, 47.089427901293796, 22.19487988103957, 25.36087953101989, 21.271799603234264, 50.59509888497658, 32.33628051712823, 30.542952906549562, 72.76315537059891, 83.98086242431312, 57.8128496379397, 27.00612300761987, 81.47996440212987, 29.882587068891677, 19.532795782898962, 9.238480400235598, 19.751817508795078, 45.81623766533066, 7.566590362318937, 113.39980945467099, 92.78786812822783, 10.699617730051393, 59.906185331770324, 12.861550928787189, 8.921524631143226, 99.6568448217649, 16.030875808519298, 90.7942532081549, 26.97363006637192, 59.48607364103805, 33.75813986732393, 15.574501137588236, 164.07452140849753, 112.31653353582514, 17.74269091422308, 50.07416798429122, 11.326747066795171, 69.73457413718896, 135.91840063445906, 70.25181216377304, 7.710187827461635, 33.76468206051153, 13.335844934730115, 45.79260249950457, 37.202682065229546, 48.78120273909711, 122.46084428442032, 127.68034775170621, 22.625811734362816, 70.46159753896166, 9.819748905282735, 12.340768109871163, 17.173836721631854, 42.446836899072956, 10.552256478110444, 22.270194076632364, 69.46199484636057, 92.07110373650818, 33.21400607549887, 9.928163218631246, 47.42032009856787, 16.210318568102487, 6.58970901975142, 9.88999823889528, 54.872073526950366, 10.978990819206693, 37.345383364938655, 14.819034092213155, 25.193018757513634, 96.49404503629269, 62.56628394950036, 22.105284522402503, 134.55128239375335, 18.061377693741164, 108.77624913718907, 7.627490522397774, 64.90777309770648, 8.322879081000416, 20.808401965365302, 76.12734454834852, 52.93862730549774, 9.862442492140364, 7.148144811545717, 58.25896736105467, 28.856321016348524, 11.417843092550573, 31.08892420343036, 11.980087825234127, 63.73595827469085, 48.59478316104685, 48.01069973918177, 28.123948021198565, 29.984442116900727, 26.72379729409649, 47.311068622302415, 58.45206413186247, 73.42662953355746, 14.440516926831464, 6.052281815990194, 12.466362428157495, 13.132502233440468, 11.21278669213757, 32.297652264104705, 138.2853489970303, 11.296838071023169, 16.054408936042563, 38.53114786344023, 27.398692338278483, 6.946876434952625, 54.137841045812465, 17.64531790526659, 114.00679336539429, 15.597472311867662, 37.054978012455514, 53.00172012186643, 39.030861696312236, 49.49379403663521, 106.40966552612414, 60.7810937506064, 19.38151522465678, 53.22049834634712, 5.346695820417559, 7.34915235516477, 9.609976902507876, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7185040.083356966, 7318519.598003406, 7321401.522430563, 7323591.7241539145, 7324239.0625, 7338351.469399757, 7396434.379079841, 7460117.1875, 7462455.186060571, 7483051.148069568, 7500511.960733038, 7502567.682522433, 7503076.738641613, 7504360.9375, 7506879.091099258, 7506984.375, 7507460.278544808, 7531555.99976133, 7532045.321748931, 7532612.39301213, 7534685.9375, 7535443.75, 7535451.3523943275, 7535716.525355463, 7535806.25, 7536240.472522778, 7537128.125, 7537797.897322267, 7538000.8727461845, 7538505.385905587, 7539400.434502515, 7539838.768203646, 7539906.6748292865, 7540222.759054282, 7541896.875, 7549987.152293328, 7551084.235452043, 7555254.6875, 7583549.879918013, 7583846.572460869, 7586737.5, 7589118.75, 7604711.373580476, 7604830.3222331405, 7606400.876085454, 7609238.620894101, 7616842.1875, 7639601.35640777, 7640692.1875, 7640973.388029618, 7641786.026183613, 7643668.75, 7644094.144720282, 7644151.9590566475, 7644247.5921242265, 7644746.360053708, 7644921.36393791, 7645012.5, 7645445.217915192, 7646246.211435369, 7646960.9375, 7649334.236034014, 7650975.0, 7658786.009882366, 7661906.473734007, 7662186.104658305, 7662196.471705617, 7664296.070856835, 7665378.125, 7667746.088458987, 7669690.625, 7670404.6875, 7695656.25, 7696224.597874599, 7697180.880271218, 7698712.132585651, 7701431.477660925, 7703582.762696406, 7703620.230443345, 7707176.225950746, 7707198.04663381, 7710200.15931688, 7714176.859753687, 7716218.145550226, 7716946.875, 7717926.595959302, 7718702.977488236, 7720124.370700134, 7721541.437068801, 7728947.715460217, 7729188.280871597, 7732164.0625, 7732465.936571652, 7733428.125, 7735607.8125, 7736753.028531387, 7743719.427537006, 7749003.92948892, 7750205.923768832, 7750452.682071633, 7751024.736581746, 7752060.180045154, 7752071.327673657, 7752359.375, 7752457.561001189, 7752481.25, 7755875.590049346, 7763820.284480761, 7764623.699486151, 7765424.966194701, 7769973.4375, 7770023.896655707, 7770095.840948453, 7770559.669355408, 7771858.081756807, 7772742.1875, 7774470.3125, 7776024.797039737, 7776474.476955382, 7777042.939924422, 7778649.784142025, 7779861.65169378, 7779935.9375, 7780327.471003415, 7780514.0625, 7780775.962847442, 7781108.402507088, 7781313.685576275, 7781835.9375, 7781912.291905482, 7781933.655508903, 7787358.916639099, 7789683.801835754, 7790941.693617751, 7795930.838439375, 7800515.182428211, 7801789.0625, 7802369.615805896, 7802548.878013454, 7802921.074990985, 7803096.631247126, 7803833.521462049, 7804784.214256733, 7805980.673172045, 7806604.37618242, 7806798.4375, 7806972.728705002, 7807301.8341919845, 7808057.8125, 7808921.798281049, 7809589.185934154, 7831792.659604385, 7834804.174737666, 7840526.5625, 7843513.11022817, 7853828.958887676, 7855918.40514629, 7856185.9375, 7856571.937021888, 7857488.608304305, 7858762.244827776, 7859493.75, 7860807.8125, 7860856.25, 7862795.653458138, 7862816.410027736, 7864535.9375, 7865023.788464187, 7865764.0625, 7866035.9375, 7866559.95739946, 7867000.0, 7867402.883637181, 7868341.3248316925, 7868502.724263746, 7872519.62268714, 7872721.875, 7873860.9375, 7875201.37596861, 7880284.375, 7889426.782467155, 7896570.432732888, 7896605.675239185, 7896704.321005982, 7898298.117134769, 7898942.418426052, 7900265.984839063, 7900509.076787587, 7901728.125, 7905377.995541432, 7905924.981335378, 7905955.334371549, 7906072.5003995085, 7907055.292802233, 7907815.828220732, 7907956.530397679, 7908590.625, 7909105.460135957, 7909509.375, 7910808.009559108, 7911085.9375, 7911665.625, 7913406.25, 7913977.682853642, 7915145.064347295, 7915265.625, 7917537.41540606, 7920051.5625, 7922201.850625366, 7922652.980070238, 7924437.406006304, 7927077.5529575525, 7933722.234266613, 7933808.66323375, 7935443.908989962, 7938606.057015147, 7938753.990514579, 7939246.679126166, 7940296.719690762, 7940453.114753773, 7941061.764183553, 7942109.043588898, 7944140.625, 7944800.136140802, 7944946.355285984, 7946671.642979504, 7947385.274915277, 7947485.746995529, 7952185.527258274, 7958011.875886369, 7959448.096291252, 7960754.6875, 7962322.030388535, 7962650.86081777, 7963172.486859694, 7963216.245733054, 7964204.681155202, 7964255.319457561, 7965369.323743853, 7966637.5, 7966834.265952463, 7967637.964753245, 7967639.68464396, 7967697.575276583, 7968220.762387347, 7968555.43913329, 7969227.525079232, 7969385.9375, 7970514.047762309, 7970858.754768899, 7971625.0, 7971779.8402057085, 7971831.25, 7971880.563585441, 7972162.766337341, 7972223.321658005, 7972516.198368501, 7973031.927316458, 7973540.625, 7973803.125, 7975563.751353648, 7975757.5223460775, 7977633.130853016, 7977663.661162853, 7977990.157993134, 7978151.747474988, 7980088.626088386, 7980488.336383577, 7980562.5, 7981641.922141449, 7981645.3125, 7981744.491676656, 7981951.945519191, 7982296.436471735, 7982696.875, 7983293.75, 7984571.833226791, 7984622.477901829, 7984806.131997251, 7986049.936387749, 7987519.302683729, 7988570.6497693965, 7989067.298629909, 7989273.116254805, 7989551.860135988, 7990265.53273274, 7990593.102122873, 7990627.561308681, 7990752.270332596, 7991435.9375, 7991920.633718044, 7992190.625, 7992689.548926184, 7993668.401840406, 7993695.2955175415, 7994082.330965746, 7994573.4375, 7995940.633132978, 7996234.275834842, 7996626.398481594, 7996648.25483704, 7996753.976272485, 7996846.722474509, 7997047.495031769, 7997052.942867117, 7997749.545118887, 7997860.516449839, 7998496.076174473, 7999829.6875, 8000232.8125, 8000518.883275117, 8000614.512600282, 8000894.451714425, 8001328.74481603, 8001498.774087717, 8001557.621865781, 8002601.5625, 8002751.126077481, 8003057.661920199, 8003499.88638265, 8003523.85671553, 8003574.710141283, 8004360.188682576, 8004612.365599451, 8006637.459848961, 8013281.25, 8016563.839666477, 8019448.4375, 8020811.188723922, 8025884.121041329, 8038953.3907887135, 8040056.25, 8040544.181406097, 8040975.539402123, 8041030.063163453, 8041139.0625, 8041315.819421858, 8041809.346907231, 8041938.072113584, 8041980.323701944, 8042462.332752581, 8042474.603641622, 8042970.753812124, 8043570.243243528, 8043579.37581915, 8044003.185128932, 8045116.62478453, 8045305.483131569, 8046272.992806553, 8046903.125, 8048297.6937810145, 8051779.329548967, 8066020.3125, 8068260.536598699, 8068298.362191622, 8070029.082595739, 8080082.8125, 8087441.302830067, 8088937.225206018, 8089111.273134701, 8089698.982378414, 8090289.0625, 8090572.24041664, 8090592.1875, 8090845.3125, 8090992.1875, 8091316.560417072, 8091749.235460222, 8092309.639452827, 8093178.722597916, 8095159.610365668, 8095484.375, 8095498.081952801, 8095501.007646004, 8095551.5625, 8095785.641690473, 8095904.6875, 8096073.013741893, 8096402.858516981, 8096443.208798953, 8096552.57928963, 8096637.975585375, 8096640.27208676, 8096690.880406973, 8096707.946142029, 8096722.468738424, 8097094.976106706, 8097112.5, 8097417.1875, 8097518.415618742, 8097554.03123383, 8097782.330017931, 8098132.530136663, 8098345.690412224, 8098478.368005842, 8098492.474204067, 8099050.240290612, 8099076.378917945, 8099382.8125, 8099468.75, 8099883.996657011, 8100117.566136508, 8100296.832203575, 8100551.967646896, 8100690.040199368, 8101105.84579297, 8101726.817405068, 8101991.820287772, 8102156.052977721, 8104237.068491729, 8107585.9375, 8109556.255977803, 8110839.273366383, 8111033.069536956, 8112191.617149678, 8112247.785357833, 8112880.670223516, 8113730.610779011, 8114911.847383454, 8116413.703226603, 8120914.527933667, 8125933.9228374325, 8126423.307029533, 8132535.7080706395, 8132832.8125, 8136045.957947824, 8136053.494325734, 8136303.727644242, 8139556.25, 8139557.544219481, 8139558.4667820055, 8144115.625, 8144256.25, 8144291.707546893, 8144490.327343382, 8147401.5625, 8147601.5625, 8148219.695617376, 8148594.404112146, 8149604.484050729, 8151557.181683297, 8151563.347154897, 8154156.692428882, 8161151.236103417, 8164386.783625666, 8166248.626086139, 8166296.875, 8166928.959936989, 8168125.99277973, 8168339.041574122, 8169030.958784647, 8169440.329300654, 8169802.578670444, 8170896.441428001, 8170959.1630190825, 8171649.356941983, 8173577.604387777, 8173620.3125, 8174193.538664248, 8175257.354315883, 8178559.375, 8179658.943215969, 8181359.375, 8185412.216874326, 8185552.543081701, 8190558.349340927, 8193839.890233594, 8198468.85740507, 8202584.375, 8202743.223497279, 8203778.483318837, 8205026.435000808, 8205220.778364258, 8205811.5015775, 8206113.13877066, 8206660.607248201, 8206916.621828211, 8207484.337055733, 8207945.735967094, 8208443.75, 8208743.722374747, 8209160.556493961, 8209713.1370743, 8210661.853165214, 8213398.4375, 8214377.470066076, 8215635.9375, 8216084.942251155, 8216206.913818343, 8216755.949536791, 8217658.639119494, 8219378.6996417465, 8222442.1875, 8224149.130060822, 8225773.909486044, 8226578.164735718, 8229162.5, 8230599.4511391735, 8231615.625, 8232238.856385416, 8232715.443972272, 8233474.329218491, 8233597.936118939, 8233653.428622191, 8233820.779796056, 8234225.623958788, 8234278.125, 8237430.687567826, 8237713.78711272, 8245012.289075898, 8246885.9375, 8247401.5625, 8248940.487740186, 8249035.842776349, 8249293.202086221, 8250833.046839759, 8251092.490807907, 8251529.6875, 8251568.338973334, 8251606.006061231, 8251629.098934478, 8251729.61135772, 8251990.067895527, 8252163.799682077, 8252473.83133724, 8253684.960531592, 8254527.840744794, 8255409.375, 8255535.140725009, 8256121.875, 8257310.973462642, 8257870.849410453, 8258346.273753614, 8260771.579887529, 8261934.375, 8263132.8125, 8263353.125, 8266175.0, 8270450.448557038, 8270728.982278952, 8273611.7220441885, 8274256.047053611, 8274659.375, 8276013.700307858, 8276297.321793135, 8276930.762639277, 8277047.398146586, 8277497.099931899, 8277584.858606892, 8277793.486268422, 8278112.283770957, 8281462.5, 8283370.3125, 8284113.041146315, 8288577.462773608, 8294987.57478321, 8295451.713712678, 8296510.002022742, 8296854.173834063, 8305148.99225236, 8305483.224102689, 8306237.5, 8308713.327928626, 8309707.775354877, 8310301.825278589, 8311245.513563736, 8315134.796125161, 8316560.861621481, 8316603.579206013, 8317564.0625, 8320131.137006212, 8321180.020666459, 8322482.8125, 8323557.012889665, 8324564.766130294, 8325848.759402331, 8325889.0625, 8326079.520007053, 8328864.0625, 8329270.606458618, 8329923.4375, 8331605.666504214, 8331639.246640541, 8332842.1875, 8332918.75, 8333854.680022496, 8334245.295849044, 8337954.5646236725, 8339520.553887878, 8340226.257938181, 8340527.941853814, 8341842.1875, 8342646.245946879, 8342873.351269588, 8345362.883198694, 8345677.050491325, 8349802.045945886, 8350005.651914258, 8351173.253105631, 8351684.208009383, 8354185.868262415, 8354999.970036516, 8355237.732576007, 8355282.812324187, 8355982.072868149, 8356175.863576424, 8356225.655157985, 8356600.435668419, 8357542.343121762, 8359262.887576837, 8360309.375, 8361085.487467763, 8361187.618584814, 8361740.175020526, 8361741.367801537, 8362764.522555003, 8365340.9181561805, 8365437.251092185, 8367919.694074752, 8376171.283672757, 8390231.416176056, 8398802.087471636, 8411278.494260011, 8416646.844433093, 8418561.280544095, 8418981.159772953, 8424710.9375, 8426615.297149196, 8432402.47991622, 8432773.94911894, 8433889.196709672, 8433921.507203959, 8438666.596449833, 8446977.300462786, 8453284.70434348, 8453318.75, 8459392.295453154, 8459409.592595248, 8460729.19052975, 8476450.653629798, 8476912.115471423, 8485045.3125, 8487445.185986882, 8488174.107783688, 8504387.36369538, 8506401.529241785, 8506401.5979556, 8512914.802299606, 8514889.0625, 8518028.776330238, 8519509.343011312, 8519788.699359514, 8519956.658479339, 8520273.727921737, 8520923.337881252, 8529265.23647073, 8537352.160338247, 8552014.10924906, 8557943.815684441, 8561779.09221605, 8562073.016620547, 8562133.86376447, 8565800.233521879, 8565864.04823253, 8569610.738599468, 8571684.56998657, 8571731.172534332, 8608242.168190766, 8610196.850675918, 8610332.291667117, 8653657.539577784, 8655334.09135587, 8656950.596185105, 8657003.661043214, 8659951.5625, 8660356.694448134, 8681678.702503532, 8685980.282964882, 8713133.294709755, 8713358.717513693, 8716854.6875, 8716885.695575029, 8721435.21501596, 8724478.998933068, 8727508.79486945, 8728206.198885975, 8728380.674871448, 8728659.826558823, 8729235.9375, 8736531.467800021, 8753752.496922769, 8753932.695927816, 8760324.195490342, 8762627.424440416, 8762814.973044185, 8765181.25, 8765444.912065562, 8765720.630950708, 8766990.011422325, 8768410.717446588, 8769210.607411075, 8769507.993142787, 8771324.739515323, 8772146.577852959, 8774316.89537174, 8774331.927935202, 8776729.272453923, 8780592.708263822, 8780592.956239512, 8781073.010392532, 8782907.884270418, 8787536.702329237, 8794004.6875, 8799303.125, 8808895.187542, 8829444.633836305, 8834361.051352745, 8834451.5625, 8849243.553808836, 8854787.5, 8856221.811866343, 8861121.869246975, 8862589.0625, 8866283.861850603, 8870704.6875, 8874192.235196467, 8875779.6875, 8877125.0, 8877696.960972419, 8877817.999143729, 8877928.075166883, 8881942.810260875, 8882764.0625, 8893057.718682833, 8899603.044345211, 8900341.28619379, 8907366.054640703, 8910617.1875, 8919183.04891031, 8919566.708929375, 8919751.5625, 8919772.980332095, 8920151.138883095, 8920414.06111077, 8920752.934040084, 8921717.505288286, 8921820.3125, 8922254.6875, 8922518.324604698, 8922518.75, 8922551.5625, 8923010.9357318, 8923435.661642913, 8923537.492496854, 8923618.20659707, 8924667.03193558, 8925262.5, 8925463.675540911, 8928631.002407629, 8930008.654938553, 8930126.259806704, 8931920.843334856, 8932250.285631081, 8932312.423408598, 8933133.183436925, 8933721.990704346, 8934454.157240348, 8934510.667887082, 8934748.48099183, 8935252.710753538, 8935904.325798225, 8939232.8125, 8940971.875, 8942127.218306273, 8942142.330839608, 8952179.107935974, 8954142.079542272, 8956307.803788574, 8957501.5625, 8957527.847593244, 8957543.75, 8957587.515719727, 8957851.83171191, 8957867.621873105, 8958276.61727931, 8958711.484941978, 8959690.922746614, 8959873.4375, 8960027.003271386, 8960508.44496407, 8960800.87513154, 8961074.892827883, 8964053.659876855, 8965849.724494798, 8969372.096236015, 8969572.937414832, 8970141.80706371, 8970363.23262346, 8973293.163565196, 8973542.704147138, 8973890.67186479, 8974279.6875, 8974825.355479054, 8975436.674576413, 8975882.8125, 8976585.387243928, 8979309.434257096, 8985587.527123516, 8985658.248158485, 8985686.115984673, 8986402.148462838, 8986851.5625, 8987438.662116531, 8988902.838293925, 8990487.5, 8993112.160907626, 8996799.665408405, 8998262.5, 8999627.851752166, 9005917.08962537, 9009998.524760578, 9014716.602287775, 9014740.625, 9016335.653268173, 9021380.120291686, 9022282.149987591, 9022322.769495897, 9023134.375, 9024150.20543436, 9027468.729750115, 9027533.301039223, 9028599.012187963, 9029920.372548822, 9030782.644232178, 9033895.632273648, 9034121.928535081, 9034682.8125, 9040521.875, 9043139.877101202, 9043641.564718327, 9057963.729665194, 9058429.6875, 9059023.960086029, 9060720.942919308, 9060942.1875, 9060973.48927169, 9061804.6875, 9062438.973965928, 9062542.252316123, 9062640.625, 9063107.967271985, 9063363.997581711, 9063565.188232627, 9063583.515331322, 9063893.75, 9064209.215784447, 9064268.75, 9067634.375, 9068549.699997729, 9072147.475951983, 9074160.519854996, 9083224.414332071, 9089110.991813129, 9089283.70590751, 9091409.776302725, 9092002.792575458, 9094939.767566385, 9110635.697400797, 9118497.196119241, 9119126.315342953, 9119699.457528926, 9121086.278090412, 9124325.149777902, 9154540.744870035, 9164766.052370062, 9165100.607689729, 9165992.134776285, 9172396.485613225, 9176872.084506312, 9184528.876531266, 9185426.040025769, 9185712.5, 9185719.785366535, 9185926.5625, 9186728.125, 9187949.786995757, 9188951.5625, 9189516.348707357, 9190000.0, 9193184.375, 9193383.653139235, 9193565.513021441, 9194011.805727387, 9194557.8125, 9202768.647526015, 9204228.340503493, 9212930.066918012, 9218113.770196658, 9218132.587425312, 9234468.341174973, 9242271.346923243, 9261852.134248206, 9262584.634184431, 9264084.375, 9264087.416386867, 9264967.01634449, 9267050.0, 9267327.12801476, 9268171.056159524, 9270739.0625, 9271150.58136436, 9271617.1875, 9271668.87371397, 9273850.672124922, 9275069.517492164, 9275932.8125, 9276097.161327614, 9276335.331035955, 9276704.191073958, 9277339.77029469, 9277917.1875, 9278039.35349647, 9278621.202554917, 9281320.019118166, 9286215.231516587, 9286357.35865133, 9288089.588607918, 9289187.50780748, 9289192.762318285, 9293195.3125, 9294704.285261858, 9300398.012024479, 9302586.895131378, 9303774.460773997, 9309858.330685055, 9309878.75544081, 9311619.766231608, 9313162.79731577, 9314145.937310554, 9320736.531677196, 9320954.6875, 9320998.340226034, 9321364.0625, 9324214.944448689, 9328730.34398687, 9329314.80150237, 9329418.67489745, 9335863.487973874, 9338964.179310577, 9340375.978330392, 9347721.875, 9362862.56656138, 9366870.124300985, 9368262.56802203, 9368446.30350915, 9368923.067991013, 9370303.125, 9371353.692682875, 9372187.60058123, 9374449.307899462, 9378517.669053523, 9379534.5530151, 9381084.196537811, 9391461.422015283, 9391467.1875, 9397901.95080024, 9404190.625, 9423326.312796237, 9432018.206660049, 9433561.6327911, 9433750.0, 9434637.933047032, 9452485.735961039, 9456246.493285945, 9458829.33588325, 9464455.40291336, 9465763.490276776, 9466175.053758005, 9474646.695870603, 9477974.772368873, 9493590.730575675, 9494873.701751724, 9495106.239958799, 9496488.360275807, 9496557.103974408, 9502068.75, 9504555.252760932, 9507546.875, 9507993.912074689, 9509245.361236315, 9515151.300215552, 9538357.8125, 9539178.088285388, 9552183.559299404, 9581912.5, 9582328.94611481, 9590715.561549747, 9592928.263666058, 9624924.238244725, 9627047.187052837, ...], [50.16971668092333, 19.590648528435768, 27.755970621482607, 71.58362720685523, 71.480887243442, 39.934203462590816, 52.49480621073509, 69.23779432746579, 17.256622131219714, 6.046036948087193, 21.11013491896005, 38.36188633317265, 11.414660588345907, 97.91534344599472, 68.60948653308452, 76.780002568381, 39.58603935255602, 63.894985315567865, 98.01735396685307, 42.9191198314451, 31.702194540186458, 29.606661795556416, 14.19691175515505, 89.66974952266163, 67.80374186932637, 6.463451811172936, 32.58838040122066, 18.159700543868848, 89.01860102927523, 50.27431926030465, 5.257471066072382, 13.92708653098294, 7.764474818303042, 19.88034051128954, 54.33416571461757, 19.59142514625455, 9.216130546135476, 49.877285159061074, 26.357527083220837, 5.158375026786872, 32.71563666939485, 74.48785825561018, 16.91256633315792, 17.303477129214244, 27.11497229478818, 76.7538502813137, 32.05487158112641, 61.594103305249625, 30.10661131440274, 27.582522617351145, 26.8803414442031, 62.22648110886401, 110.73627967887475, 16.704227755947635, 12.470196563074788, 21.345287543456422, 118.75352555190932, 66.51320674451866, 9.252686734103955, 47.13794061534256, 29.077574308456825, 52.09565242509955, 29.180462543099615, 16.789412478108517, 9.528029873599053, 11.39944024033848, 54.12267060249557, 18.915017492950078, 34.203081677094005, 39.92779923179908, 39.46707487379637, 43.479308942021795, 58.005455776163195, 10.552404104737088, 10.595117757558139, 34.17242051283793, 15.886573636239563, 54.83947340395421, 14.637707470849376, 121.97191443079691, 31.780068794525988, 15.58563274309198, 41.73063842074547, 36.0557312842374, 130.67067067106095, 15.070592895194078, 14.407571146380546, 31.906158880949825, 23.09658671157684, 26.308143110235996, 113.65615484428612, 35.82653123904294, 11.65233441057802, 33.43928548262218, 38.412900301070316, 80.90186031711144, 6.161509831873175, 69.91279014385073, 85.72847581568556, 6.212813791344412, 24.22954707775476, 58.38408089165404, 105.690485497722, 37.75064756291327, 6.235937757484116, 40.236094005622746, 77.47152123196825, 98.13605815745215, 15.625483941489442, 45.22008701907815, 52.1230086006128, 38.548743885740244, 99.38664221132642, 95.22823705758239, 5.724111225173306, 45.00624917236048, 54.72880695165534, 9.165489138257934, 19.9581180402153, 69.87508874311081, 31.587018937727446, 10.018344549079005, 47.397252107405684, 48.82635470023238, 121.6944276365675, 107.60668473374054, 144.48780487780755, 74.87907509294766, 90.38874349963922, 62.95011741346351, 5.115417421665713, 28.34021509853378, 20.793029114426762, 5.676030807143797, 8.080302133426391, 10.499888542979289, 67.94556133077307, 179.96551902433492, 7.770732691960413, 8.735632814032664, 51.18991533341972, 27.006578340532364, 6.731834190533878, 30.47105501581742, 23.607243791246006, 50.979788103463385, 19.635743568278386, 6.8189876506796665, 111.28877944893863, 70.6131192132856, 26.6849860045266, 61.9007974437315, 113.18722683269473, 28.757966551072162, 5.563448394961415, 68.3367483657882, 23.194221310467377, 28.618405507933957, 57.077863934153605, 8.974774859269003, 66.68486367780667, 78.33203356932945, 53.59103281979491, 44.76351268778901, 224.782899118623, 41.358693698595985, 36.383326617933015, 11.724492663975422, 80.0024983869896, 58.78719002283802, 12.178945479364133, 44.70426604692827, 5.691567311826976, 18.505319030149145, 12.855947290173257, 19.280772809022068, 29.509756686414548, 89.18265272173699, 10.848148069180489, 84.86900572485823, 7.684781909599705, 35.79322691385228, 22.06593476682735, 5.90811207681746, 50.179101712010414, 91.11172291539401, 109.92838440399431, 79.51558220529199, 29.664631171277325, 99.48397833063449, 28.16071340735172, 32.67725998529324, 9.922826229447224, 24.612906266543582, 7.678430936278875, 7.707901892695863, 37.494642037275256, 94.14423623803364, 35.153781061022656, 189.3688798647126, 61.86958727184321, 35.53277328527979, 57.683924666799584, 10.500436304270778, 24.436409044637774, 42.49112775895409, 36.55284596464003, 34.66965610904588, 194.28354325500484, 67.07605676841676, 20.28150660409304, 20.803331483851164, 57.636405536372905, 5.499505463860568, 11.697508100455966, 37.7422950125286, 39.806431108448834, 10.834750331973433, 54.21443775066159, 5.8132225216588385, 27.45655351812352, 13.812770366259832, 68.21284172959012, 6.28455337915434, 44.72013060442305, 24.65974243323057, 16.58950542246151, 14.261925471268313, 10.54179422472429, 66.88536369581354, 34.2499323737901, 77.9741279473923, 15.568810858395743, 8.80108300521483, 17.931046640143283, 64.17227760306248, 5.706354326575772, 65.99783407521619, 20.098855397600914, 72.97069834319078, 54.675072395389385, 18.10727905844439, 101.48552757660782, 28.668302385552852, 23.363527966611777, 10.05960529774904, 38.21961498553705, 104.16862231041833, 91.01658881001617, 20.37209652380766, 73.93382234370641, 114.20852428444117, 33.89123972161458, 10.201172778967264, 210.03435196077209, 6.076134947223226, 6.149825542668888, 48.511638504628785, 162.96650886816695, 57.36969726873305, 23.609399013178777, 9.097547969146367, 16.471650310268323, 68.31705205643786, 21.554778494018215, 19.806573229750544, 120.03167239824991, 19.499563062001126, 74.10454895381751, 14.018148793054038, 30.75320750200284, 18.79585549587595, 94.04824205376948, 50.10221151255415, 43.70622280863324, 34.544655336230576, 26.162386700614597, 13.784167169593232, 14.51003725632589, 66.46500575092095, 6.879100577026024, 174.67069440691793, 36.318849454111664, 7.039491174658062, 7.714555703913523, 36.05305038762516, 210.68884001252542, 5.377353179951022, 116.95073270354246, 99.16343183070808, 6.538652144546886, 91.97420410397052, 6.330675221921498, 10.623882887163916, 127.3630356597378, 53.2478543617124, 102.24377239231526, 20.32031820035596, 67.44210913707595, 14.39764390948432, 5.800587274420207, 33.17812080868409, 25.836949756730096, 116.18057101251723, 28.677079072513017, 48.02257317176179, 8.999068731707538, 209.43979448969853, 54.240381182926335, 32.17924311872406, 53.36266801524968, 17.62914662208084, 35.46086403596668, 12.257720475883765, 16.400977720093238, 19.639326685312536, 150.8857040391467, 203.07870218731415, 67.227539685114, 98.80422535767548, 16.822815191072642, 13.940939647436913, 79.60511254201842, 10.810494610466204, 44.120411924967, 56.00643519782848, 38.77489486406236, 55.28658533809107, 15.994096510740855, 81.68225919801888, 75.94493868182467, 39.68401995996625, 21.92244793010896, 66.32998935132744, 16.59685996308039, 43.91732783395954, 22.130513676992646, 9.30776158136964, 5.744162678635406, 17.0503741327581, 25.60875886866164, 37.35626398934722, 7.242501312294597, 89.71713644206136, 5.518142509135055, 6.77557050979114, 137.82465230439053, 7.347580318943598, 22.063143606987545, 46.14917889525138, 19.363633641338843, 54.36471352442703, 45.82027961999595, 22.54210583021743, 55.323961743635856, 10.297750928355008, 69.11901640673436, 7.8682877913180755, 24.0781433281278, 5.476359151773863, 5.988304275953719, 44.854334026678046, 11.75132451199727, 46.86005678072784, 63.38962649083362, 35.440144729375085, 38.313258778942966, 16.66576516291829, 149.35975956250377, 8.630077440879502, 23.645016800865772, 75.01185794329358, 5.788133004289067, 20.96281532207824, 43.211083774593504, 23.80441714087011, 78.38011122756052, 10.524205398937658, 10.73524729331024, 23.079950580304516, 35.342871058668514, 11.962446987002375, 15.404845411834565, 21.560810803129563, 11.343226965499026, 17.818487037262667, 13.797631977928221, 36.94665382346323, 55.52949412988422, 25.790364404631074, 10.236527486181545, 30.03647286880424, 6.059220005155454, 16.608326541928747, 44.09007003735606, 23.330449492737507, 20.00665326811477, 55.42208564558811, 97.08084349059189, 224.15259221694797, 31.30227123320298, 11.776039228814462, 27.705391586580735, 38.697332650560675, 20.686918415963753, 156.72043727212866, 15.036828129514682, 22.928557246866553, 36.84032273674461, 5.902687925164182, 115.21142671331872, 53.17110536282506, 7.681327509071774, 9.558629298762321, 13.137415921432224, 25.544328060928997, 27.18527855917095, 100.82024727530612, 51.467144096552374, 132.01531343823405, 44.448917296517294, 56.98981957094093, 21.274422132303464, 5.797197272208005, 34.85121172712536, 17.23191598301797, 27.62486236380069, 80.88051755465189, 159.8083962121732, 63.93603778719566, 12.331696760231202, 46.55970622234614, 65.22290080600054, 29.544907923309324, 29.21840316189663, 34.31277343978835, 31.895510062332264, 10.28335937747194, 63.31583184939966, 25.06770381274679, 28.843318702903893, 78.00724130063118, 86.17556176607283, 6.054802032173126, 79.38892742149034, 7.672900554713671, 63.37871648380095, 62.21265719295942, 13.139070141985433, 24.485511731219837, 51.94549546290804, 10.624279772851835, 83.83308216865063, 5.233170403653709, 6.240782521456259, 21.039873147627947, 59.515098485943604, 38.32180455009282, 31.98439557433396, 126.93988954022194, 45.31066718372364, 72.04926100399167, 86.65101052109392, 56.78194929256824, 20.713074337156, 6.87563397215305, 143.23176520669665, 60.929758412581386, 63.274747179500274, 118.30951141411856, 40.44698680653182, 44.82282408433079, 99.17001317636739, 83.31494459410148, 70.61556416794846, 73.06488490874193, 34.66715735474327, 27.795539421442133, 29.82004832070558, 31.689767740806214, 22.112376288869378, 5.5933080644460125, 39.753726739781754, 6.961201974372743, 45.74075288553384, 20.075275274698733, 33.05073123201791, 150.07032723140355, 25.972416884262955, 10.688440261525859, 51.661501203638096, 55.47706904067573, 83.56920026873358, 18.456022651345737, 14.588151270192018, 6.493338244888808, 83.47538171525774, 53.878651119746266, 78.77497956739174, 25.02895508883362, 32.18866527275518, 24.703282115745406, 21.47933446893706, 16.2405280736419, 199.61845810809393, 301.8330140041806, 40.15782753271648, 46.188977232173436, 24.070310114333104, 24.95939887064227, 66.85906891846604, 110.57697595182141, 10.919731083218888, 17.80012389557667, 15.951481995257959, 120.02712507460406, 72.7106744246634, 126.51058440809024, 38.95120373760028, 178.32682936550188, 83.92734552141604, 14.65902124796545, 6.6571583266969485, 31.128610045541134, 9.688202100900302, 42.18104395989404, 23.953964838994526, 37.7195308184985, 12.580644378475936, 72.32849630952809, 22.57117678949198, 9.830778533187841, 20.539264227655767, 5.387310742123936, 36.21302136907863, 42.610794099484316, 81.75840326178047, 106.51152432240097, 9.741849311564795, 51.48098139109906, 6.6175345389425875, 25.07503106133257, 40.158488819072296, 22.98755222649575, 26.301699927494184, 8.044637802877707, 17.397226130063302, 11.498484783092909, 28.858606241162715, 29.50851927278446, 5.064985270585189, 47.93167764735229, 38.322847404119315, 17.078748739345908, 51.9682364616812, 15.234420693075846, 40.581109512169974, 18.026685812766193, 218.73139962546134, 17.582534552107184, 102.10080009899218, 66.58629466460206, 61.486557208593595, 15.880155636420612, 16.047557753803055, 15.767563545965594, 16.83291342103403, 55.50875286118382, 17.0104757345787, 51.34674190856442, 26.47463515307126, 9.629951869894743, 96.95064044096084, 22.88780695378366, 28.16630616815515, 11.671121186959759, 64.78142139374121, 141.61890858536918, 39.90295780253114, 16.19429932752905, 96.95841709448602, 10.323646652586449, 22.631933277783823, 51.976628617483925, 33.8580036703269, 14.913085065954467, 41.3837447935697, 41.840768124876476, 24.672287012469397, 79.09904919022372, 5.695200400987444, 97.73682870637626, 20.295583530740153, 73.85630719278912, 17.414888729054624, 17.197104217170942, 33.47896382353667, 49.75432293381934, 170.49665379297, 92.99418345423977, 62.30561778414916, 27.94533614353212, 78.1997744338004, 39.68017197394295, 30.17232056501004, 19.714452239621405, 18.207757691273024, 113.04503236772763, 112.72556522168092, 16.65785194997879, 175.72938594808548, 8.06211573016289, 7.646698375300556, 5.034041615785409, 18.803830275224488, 49.3692819065491, 7.712824019300812, 68.97666695558905, 72.11876333909362, 20.6279999241865, 12.531702553526658, 37.05801631758582, 23.62167375379196, 9.30569017750868, 9.63934885421945, 40.24908653694434, 144.02446995849363, 13.823618043617035, 27.20377300044172, 102.60258078885666, 32.52359153643566, 28.77414447672402, 33.60972058823495, 130.4670648394623, 11.68471311797578, 35.99169030867408, 15.369585131547534, 37.021901432560064, 21.523376946108495, 29.0705007667083, 42.804106932105476, 37.00982330905618, 23.520992061332933, 62.146125793548094, 10.921134365833485, 125.94811623165651, 15.078393866072965, 10.046499195564744, 89.5610512709922, 5.998207962615489, 9.30450061146344, 5.908392881748137, 26.412844434129738, 6.118830354579449, 5.039869155439409, 22.68214592998419, 18.59147082347462, 9.371247456577592, 15.197920928785736, 141.363908396887, 29.314528561720365, 5.324703480027178, 21.522096123681553, 83.37821737893367, 41.64382979557571, 11.446803558445621, 35.2584983677348, 35.911253396675306, 12.711433276890974, 7.425131434919186, 7.507421554300136, 42.54050765954829, 12.207786136474148, 12.083495891936954, 55.89326723470507, 9.737783627001862, 8.61755937750898, 45.75277822441218, 8.559175147060815, 10.235088369137252, 40.252554795548534, 7.5180200359492995, 38.06711265081026, 12.837662381548117, 34.828051350860235, 63.31915288471663, 95.14928306385079, 5.357636774861152, 30.259917975886065, 11.75133298338373, 54.50226096653492, 9.234742254118604, 25.98033383338413, 33.06945898684982, 6.188198635044736, 33.17000665623194, 14.255794130487615, 16.312170088269117, 37.43823667072116, 48.10361048771265, 15.902212241389826, 7.669906435911999, 24.268968549561066, 29.478003893030582, 23.851815727933737, 27.27761572092504, 5.591488157431366, 69.68827259286637, 18.990187452593457, 73.35120408396102, 17.86943769356978, 18.961786474789, 55.20959285026644, 43.34315759739107, 42.62292205909807, 165.30289607997645, 32.28805735287918, 44.77467759791672, 14.24297560720926, 100.47952127549203, 9.278584589658937, 14.919626832256323, 65.44749243389141, 27.818589884658337, 30.437860363653026, 70.4768427210536, 37.690521493806116, 34.62991208794456, 67.16340711556654, 81.9799970086349, 27.5758815743635, 48.60739982271819, 54.24860450776601, 9.253315601813794, 63.759344913675925, 6.5959870939481835, 73.64154150430375, 49.86357041325412, 15.926266607653869, 13.385121730170761, 83.44375264226854, 51.04497107975476, 36.44378912032076, 14.936216969628884, 120.51861805169585, 12.07520813117831, 50.49100730012914, 35.570442791890436, 22.271068474587672, 35.84169658196641, 51.85552189477314, 11.124944118084331, 6.232963773299974, 14.912987854670902, 88.63730057842722, 25.78944604647415, 110.41863110727444, 10.572327471442222, 6.715063250524434, 6.944214970782144, 27.055575945510153, 139.31626290475057, 6.821902579857222, 61.096747032828475, 27.133915075429403, 33.123739541417734, 42.95505288181174, 6.445641584514511, 15.109912234839955, 10.536572457185745, 170.01588562314262, 42.5037613483611, 37.78592434609993, 24.832391836824385, 20.712285084035422, 89.85182378562152, 26.55859840927919, 57.844977259163414, 40.84943248705226, 24.043693828347386, 72.36266847126237, 11.152366966250517, 5.252742974784886, 16.903421464442776, 8.315759543611517, 17.539206970616487, 5.836344412668481, 37.89829877379142, 8.534280704392241, 48.11551226032681, 30.504978839782343, 166.5061770482885, 91.74691576664078, 24.068753951459737, 90.26674554485311, 6.037594139997405, 85.62991648042122, 85.63171761488184, 5.582404565934963, 8.580089448775832, 130.2829537270993, 35.98701197018, 83.34962202542592, 20.29995355411326, 47.244192910050785, 21.006002448813174, 15.172284601024987, 15.045909287002885, 18.910232400484333, 11.418641205654776, 12.186380073825498, 73.84026782400296, 44.32800242354523, 29.329149359621923, 71.89305187011831, 7.035078971492953, 20.164566850247297, 212.36109451527534, 5.063960895071668, 35.200767959602544, 15.284874433331321, 20.68319019425719, 56.99291779931897, 83.58100877694113, 20.655215012863454, 12.90195955843749, 80.2473111665622, 106.4721263582748, 9.511367952827902, 28.13025864800112, 24.660278584023835, 23.93538030019812, 48.171013995742605, 14.955043222419146, 166.74865694303747, 5.4005245789362295, 28.68739230316398, 46.30939901231086, 65.19354387799972, 71.06768940372638, 23.34019183843018, 75.02125109674974, 12.056220553099061, 18.04829403552849, 91.89642839742854, 54.99435583592953, 40.746825410806835, 38.77594183109848, 107.65003080556747, 30.124714274041157, 9.465792594807185, 18.775243359414944, 44.82764687315917, 27.966739543543053, 77.11364660250958, 55.76067023757901, 34.229686527539634, 49.38905521392291, 23.750712658514306, 17.863069744819136, 10.532147997279662, 45.916456425999755, 53.50997629795788, 23.339715659938978, 62.7637371836387, 45.992163954233035, 12.44325115367721, 20.08607202381959, 16.32515440758607, 24.45005066326475, 5.5073194596368085, 35.7737598897742, 5.825146296674114, 5.403076407425756, 80.7997200158199, 31.764613409946385, 59.86478299377904, 47.089427901293796, 22.19487988103957, 25.36087953101989, 21.271799603234264, 50.59509888497658, 32.33628051712823, 30.542952906549562, 72.76315537059891, 83.98086242431312, 57.8128496379397, 27.00612300761987, 81.47996440212987, 29.882587068891677, 19.532795782898962, 9.238480400235598, 19.751817508795078, 45.81623766533066, 7.566590362318937, 113.39980945467099, 92.78786812822783, 10.699617730051393, 59.906185331770324, 12.861550928787189, 8.921524631143226, 99.6568448217649, 16.030875808519298, 90.7942532081549, 26.97363006637192, 59.48607364103805, 33.75813986732393, 15.574501137588236, 164.07452140849753, 112.31653353582514, 17.74269091422308, 50.07416798429122, 11.326747066795171, 69.73457413718896, 135.91840063445906, 70.25181216377304, 7.710187827461635, 33.76468206051153, 13.335844934730115, 45.79260249950457, 37.202682065229546, 48.78120273909711, 122.46084428442032, 127.68034775170621, 22.625811734362816, 70.46159753896166, 9.819748905282735, 12.340768109871163, 17.173836721631854, 42.446836899072956, 10.552256478110444, 22.270194076632364, 69.46199484636057, 92.07110373650818, 33.21400607549887, 9.928163218631246, 47.42032009856787, 16.210318568102487, 6.58970901975142, 9.88999823889528, 54.872073526950366, 10.978990819206693, 37.345383364938655, 14.819034092213155, 25.193018757513634, 96.49404503629269, 62.56628394950036, 22.105284522402503, 134.55128239375335, 18.061377693741164, 108.77624913718907, 7.627490522397774, 64.90777309770648, 8.322879081000416, 20.808401965365302, 76.12734454834852, 52.93862730549774, 9.862442492140364, 7.148144811545717, 58.25896736105467, 28.856321016348524, 11.417843092550573, 31.08892420343036, 11.980087825234127, 63.73595827469085, 48.59478316104685, 48.01069973918177, 28.123948021198565, 29.984442116900727, 26.72379729409649, 47.311068622302415, 58.45206413186247, 73.42662953355746, 14.440516926831464, 6.052281815990194, 12.466362428157495, 13.132502233440468, 11.21278669213757, 32.297652264104705, 138.2853489970303, 11.296838071023169, 16.054408936042563, 38.53114786344023, 27.398692338278483, 6.946876434952625, 54.137841045812465, 17.64531790526659, 114.00679336539429, 15.597472311867662, 37.054978012455514, 53.00172012186643, 39.030861696312236, 49.49379403663521, 106.40966552612414, 60.7810937506064, 19.38151522465678, 53.22049834634712, 5.346695820417559, 7.34915235516477, 9.609976902507876, ...])
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);
([7185040.083356966, 7318519.598003406, 7321401.522430563, 7323591.7241539145, 7324239.0625, 7338351.469399757, 7396434.379079841, 7460117.1875, 7462455.186060571, 7483051.148069568, 7500511.960733038, 7502567.682522433, 7503076.738641613, 7504360.9375, 7506879.091099258, 7506984.375, 7507460.278544808, 7531555.99976133, 7532045.321748931, 7532612.39301213, 7534685.9375, 7535443.75, 7535451.3523943275, 7535716.525355463, 7535806.25, 7536240.472522778, 7537128.125, 7537797.897322267, 7538000.8727461845, 7538505.385905587, 7539400.434502515, 7539838.768203646, 7539906.6748292865, 7540222.759054282, 7541896.875, 7549987.152293328, 7551084.235452043, 7555254.6875, 7583549.879918013, 7583846.572460869, 7586737.5, 7589118.75, 7604711.373580476, 7604830.3222331405, 7606400.876085454, 7609238.620894101, 7616842.1875, 7639601.35640777, 7640692.1875, 7640973.388029618, 7641786.026183613, 7643668.75, 7644094.144720282, 7644151.9590566475, 7644247.5921242265, 7644746.360053708, 7644921.36393791, 7645012.5, 7645445.217915192, 7646246.211435369, 7646960.9375, 7649334.236034014, 7650975.0, 7658786.009882366, 7661906.473734007, 7662186.104658305, 7662196.471705617, 7664296.070856835, 7665378.125, 7667746.088458987, 7669690.625, 7670404.6875, 7695656.25, 7696224.597874599, 7697180.880271218, 7698712.132585651, 7701431.477660925, 7703582.762696406, 7703620.230443345, 7707176.225950746, 7707198.04663381, 7710200.15931688, 7714176.859753687, 7716218.145550226, 7716946.875, 7717926.595959302, 7718702.977488236, 7720124.370700134, 7721541.437068801, 7728947.715460217, 7729188.280871597, 7732164.0625, 7732465.936571652, 7733428.125, 7735607.8125, 7736753.028531387, 7743719.427537006, 7749003.92948892, 7750205.923768832, 7750452.682071633, 7751024.736581746, 7752060.180045154, 7752071.327673657, 7752359.375, 7752457.561001189, 7752481.25, 7755875.590049346, 7763820.284480761, 7764623.699486151, 7765424.966194701, 7769973.4375, 7770023.896655707, 7770095.840948453, 7770559.669355408, 7771858.081756807, 7772742.1875, 7774470.3125, 7776024.797039737, 7776474.476955382, 7777042.939924422, 7778649.784142025, 7779861.65169378, 7779935.9375, 7780327.471003415, 7780514.0625, 7780775.962847442, 7781108.402507088, 7781313.685576275, 7781835.9375, 7781912.291905482, 7781933.655508903, 7787358.916639099, 7789683.801835754, 7790941.693617751, 7795930.838439375, 7800515.182428211, 7801789.0625, 7802369.615805896, 7802548.878013454, 7802921.074990985, 7803096.631247126, 7803833.521462049, 7804784.214256733, 7805980.673172045, 7806604.37618242, 7806798.4375, 7806972.728705002, 7807301.8341919845, 7808057.8125, 7808921.798281049, 7809589.185934154, 7831792.659604385, 7834804.174737666, 7840526.5625, 7843513.11022817, 7853828.958887676, 7855918.40514629, 7856185.9375, 7856571.937021888, 7857488.608304305, 7858762.244827776, 7859493.75, 7860807.8125, 7860856.25, 7862795.653458138, 7862816.410027736, 7864535.9375, 7865023.788464187, 7865764.0625, 7866035.9375, 7866559.95739946, 7867000.0, 7867402.883637181, 7868341.3248316925, 7868502.724263746, 7872519.62268714, 7872721.875, 7873860.9375, 7875201.37596861, 7880284.375, 7889426.782467155, 7896570.432732888, 7896605.675239185, 7896704.321005982, 7898298.117134769, 7898942.418426052, 7900265.984839063, 7900509.076787587, 7901728.125, 7905377.995541432, 7905924.981335378, 7905955.334371549, 7906072.5003995085, 7907055.292802233, 7907815.828220732, 7907956.530397679, 7908590.625, 7909105.460135957, 7909509.375, 7910808.009559108, 7911085.9375, 7911665.625, 7913406.25, 7913977.682853642, 7915145.064347295, 7915265.625, 7917537.41540606, 7920051.5625, 7922201.850625366, 7922652.980070238, 7924437.406006304, 7927077.5529575525, 7933722.234266613, 7933808.66323375, 7935443.908989962, 7938606.057015147, 7938753.990514579, 7939246.679126166, 7940296.719690762, 7940453.114753773, 7941061.764183553, 7942109.043588898, 7944140.625, 7944800.136140802, 7944946.355285984, 7946671.642979504, 7947385.274915277, 7947485.746995529, 7952185.527258274, 7958011.875886369, 7959448.096291252, 7960754.6875, 7962322.030388535, 7962650.86081777, 7963172.486859694, 7963216.245733054, 7964204.681155202, 7964255.319457561, 7965369.323743853, 7966637.5, 7966834.265952463, 7967637.964753245, 7967639.68464396, 7967697.575276583, 7968220.762387347, 7968555.43913329, 7969227.525079232, 7969385.9375, 7970514.047762309, 7970858.754768899, 7971625.0, 7971779.8402057085, 7971831.25, 7971880.563585441, 7972162.766337341, 7972223.321658005, 7972516.198368501, 7973031.927316458, 7973540.625, 7973803.125, 7975563.751353648, 7975757.5223460775, 7977633.130853016, 7977663.661162853, 7977990.157993134, 7978151.747474988, 7980088.626088386, 7980488.336383577, 7980562.5, 7981641.922141449, 7981645.3125, 7981744.491676656, 7981951.945519191, 7982296.436471735, 7982696.875, 7983293.75, 7984571.833226791, 7984622.477901829, 7984806.131997251, 7986049.936387749, 7987519.302683729, 7988570.6497693965, 7989067.298629909, 7989273.116254805, 7989551.860135988, 7990265.53273274, 7990593.102122873, 7990627.561308681, 7990752.270332596, 7991435.9375, 7991920.633718044, 7992190.625, 7992689.548926184, 7993668.401840406, 7993695.2955175415, 7994082.330965746, 7994573.4375, 7995940.633132978, 7996234.275834842, 7996626.398481594, 7996648.25483704, 7996753.976272485, 7996846.722474509, 7997047.495031769, 7997052.942867117, 7997749.545118887, 7997860.516449839, 7998496.076174473, 7999829.6875, 8000232.8125, 8000518.883275117, 8000614.512600282, 8000894.451714425, 8001328.74481603, 8001498.774087717, 8001557.621865781, 8002601.5625, 8002751.126077481, 8003057.661920199, 8003499.88638265, 8003523.85671553, 8003574.710141283, 8004360.188682576, 8004612.365599451, 8006637.459848961, 8013281.25, 8016563.839666477, 8019448.4375, 8020811.188723922, 8025884.121041329, 8038953.3907887135, 8040056.25, 8040544.181406097, 8040975.539402123, 8041030.063163453, 8041139.0625, 8041315.819421858, 8041809.346907231, 8041938.072113584, 8041980.323701944, 8042462.332752581, 8042474.603641622, 8042970.753812124, 8043570.243243528, 8043579.37581915, 8044003.185128932, 8045116.62478453, 8045305.483131569, 8046272.992806553, 8046903.125, 8048297.6937810145, 8051779.329548967, 8066020.3125, 8068260.536598699, 8068298.362191622, 8070029.082595739, 8080082.8125, 8087441.302830067, 8088937.225206018, 8089111.273134701, 8089698.982378414, 8090289.0625, 8090572.24041664, 8090592.1875, 8090845.3125, 8090992.1875, 8091316.560417072, 8091749.235460222, 8092309.639452827, 8093178.722597916, 8095159.610365668, 8095484.375, 8095498.081952801, 8095501.007646004, 8095551.5625, 8095785.641690473, 8095904.6875, 8096073.013741893, 8096402.858516981, 8096443.208798953, 8096552.57928963, 8096637.975585375, 8096640.27208676, 8096690.880406973, 8096707.946142029, 8096722.468738424, 8097094.976106706, 8097112.5, 8097417.1875, 8097518.415618742, 8097554.03123383, 8097782.330017931, 8098132.530136663, 8098345.690412224, 8098478.368005842, 8098492.474204067, 8099050.240290612, 8099076.378917945, 8099382.8125, 8099468.75, 8099883.996657011, 8100117.566136508, 8100296.832203575, 8100551.967646896, 8100690.040199368, 8101105.84579297, 8101726.817405068, 8101991.820287772, 8102156.052977721, 8104237.068491729, 8107585.9375, 8109556.255977803, 8110839.273366383, 8111033.069536956, 8112191.617149678, 8112247.785357833, 8112880.670223516, 8113730.610779011, 8114911.847383454, 8116413.703226603, 8120914.527933667, 8125933.9228374325, 8126423.307029533, 8132535.7080706395, 8132832.8125, 8136045.957947824, 8136053.494325734, 8136303.727644242, 8139556.25, 8139557.544219481, 8139558.4667820055, 8144115.625, 8144256.25, 8144291.707546893, 8144490.327343382, 8147401.5625, 8147601.5625, 8148219.695617376, 8148594.404112146, 8149604.484050729, 8151557.181683297, 8151563.347154897, 8154156.692428882, 8161151.236103417, 8164386.783625666, 8166248.626086139, 8166296.875, 8166928.959936989, 8168125.99277973, 8168339.041574122, 8169030.958784647, 8169440.329300654, 8169802.578670444, 8170896.441428001, 8170959.1630190825, 8171649.356941983, 8173577.604387777, 8173620.3125, 8174193.538664248, 8175257.354315883, 8178559.375, 8179658.943215969, 8181359.375, 8185412.216874326, 8185552.543081701, 8190558.349340927, 8193839.890233594, 8198468.85740507, 8202584.375, 8202743.223497279, 8203778.483318837, 8205026.435000808, 8205220.778364258, 8205811.5015775, 8206113.13877066, 8206660.607248201, 8206916.621828211, 8207484.337055733, 8207945.735967094, 8208443.75, 8208743.722374747, 8209160.556493961, 8209713.1370743, 8210661.853165214, 8213398.4375, 8214377.470066076, 8215635.9375, 8216084.942251155, 8216206.913818343, 8216755.949536791, 8217658.639119494, 8219378.6996417465, 8222442.1875, 8224149.130060822, 8225773.909486044, 8226578.164735718, 8229162.5, 8230599.4511391735, 8231615.625, 8232238.856385416, 8232715.443972272, 8233474.329218491, 8233597.936118939, 8233653.428622191, 8233820.779796056, 8234225.623958788, 8234278.125, 8237430.687567826, 8237713.78711272, 8245012.289075898, 8246885.9375, 8247401.5625, 8248940.487740186, 8249035.842776349, 8249293.202086221, 8250833.046839759, 8251092.490807907, 8251529.6875, 8251568.338973334, 8251606.006061231, 8251629.098934478, 8251729.61135772, 8251990.067895527, 8252163.799682077, 8252473.83133724, 8253684.960531592, 8254527.840744794, 8255409.375, 8255535.140725009, 8256121.875, 8257310.973462642, 8257870.849410453, 8258346.273753614, 8260771.579887529, 8261934.375, 8263132.8125, 8263353.125, 8266175.0, 8270450.448557038, 8270728.982278952, 8273611.7220441885, 8274256.047053611, 8274659.375, 8276013.700307858, 8276297.321793135, 8276930.762639277, 8277047.398146586, 8277497.099931899, 8277584.858606892, 8277793.486268422, 8278112.283770957, 8281462.5, 8283370.3125, 8284113.041146315, 8288577.462773608, 8294987.57478321, 8295451.713712678, 8296510.002022742, 8296854.173834063, 8305148.99225236, 8305483.224102689, 8306237.5, 8308713.327928626, 8309707.775354877, 8310301.825278589, 8311245.513563736, 8315134.796125161, 8316560.861621481, 8316603.579206013, 8317564.0625, 8320131.137006212, 8321180.020666459, 8322482.8125, 8323557.012889665, 8324564.766130294, 8325848.759402331, 8325889.0625, 8326079.520007053, 8328864.0625, 8329270.606458618, 8329923.4375, 8331605.666504214, 8331639.246640541, 8332842.1875, 8332918.75, 8333854.680022496, 8334245.295849044, 8337954.5646236725, 8339520.553887878, 8340226.257938181, 8340527.941853814, 8341842.1875, 8342646.245946879, 8342873.351269588, 8345362.883198694, 8345677.050491325, 8349802.045945886, 8350005.651914258, 8351173.253105631, 8351684.208009383, 8354185.868262415, 8354999.970036516, 8355237.732576007, 8355282.812324187, 8355982.072868149, 8356175.863576424, 8356225.655157985, 8356600.435668419, 8357542.343121762, 8359262.887576837, 8360309.375, 8361085.487467763, 8361187.618584814, 8361740.175020526, 8361741.367801537, 8362764.522555003, 8365340.9181561805, 8365437.251092185, 8367919.694074752, 8376171.283672757, 8390231.416176056, 8398802.087471636, 8411278.494260011, 8416646.844433093, 8418561.280544095, 8418981.159772953, 8424710.9375, 8426615.297149196, 8432402.47991622, 8432773.94911894, 8433889.196709672, 8433921.507203959, 8438666.596449833, 8446977.300462786, 8453284.70434348, 8453318.75, 8459392.295453154, 8459409.592595248, 8460729.19052975, 8476450.653629798, 8476912.115471423, 8485045.3125, 8487445.185986882, 8488174.107783688, 8504387.36369538, 8506401.529241785, 8506401.5979556, 8512914.802299606, 8514889.0625, 8518028.776330238, 8519509.343011312, 8519788.699359514, 8519956.658479339, 8520273.727921737, 8520923.337881252, 8529265.23647073, 8537352.160338247, 8552014.10924906, 8557943.815684441, 8561779.09221605, 8562073.016620547, 8562133.86376447, 8565800.233521879, 8565864.04823253, 8569610.738599468, 8571684.56998657, 8571731.172534332, 8608242.168190766, 8610196.850675918, 8610332.291667117, 8653657.539577784, 8655334.09135587, 8656950.596185105, 8657003.661043214, 8659951.5625, 8660356.694448134, 8681678.702503532, 8685980.282964882, 8713133.294709755, 8713358.717513693, 8716854.6875, 8716885.695575029, 8721435.21501596, 8724478.998933068, 8727508.79486945, 8728206.198885975, 8728380.674871448, 8728659.826558823, 8729235.9375, 8736531.467800021, 8753752.496922769, 8753932.695927816, 8760324.195490342, 8762627.424440416, 8762814.973044185, 8765181.25, 8765444.912065562, 8765720.630950708, 8766990.011422325, 8768410.717446588, 8769210.607411075, 8769507.993142787, 8771324.739515323, 8772146.577852959, 8774316.89537174, 8774331.927935202, 8776729.272453923, 8780592.708263822, 8780592.956239512, 8781073.010392532, 8782907.884270418, 8787536.702329237, 8794004.6875, 8799303.125, 8808895.187542, 8829444.633836305, 8834361.051352745, 8834451.5625, 8849243.553808836, 8854787.5, 8856221.811866343, 8861121.869246975, 8862589.0625, 8866283.861850603, 8870704.6875, 8874192.235196467, 8875779.6875, 8877125.0, 8877696.960972419, 8877817.999143729, 8877928.075166883, 8881942.810260875, 8882764.0625, 8893057.718682833, 8899603.044345211, 8900341.28619379, 8907366.054640703, 8910617.1875, 8919183.04891031, 8919566.708929375, 8919751.5625, 8919772.980332095, 8920151.138883095, 8920414.06111077, 8920752.934040084, 8921717.505288286, 8921820.3125, 8922254.6875, 8922518.324604698, 8922518.75, 8922551.5625, 8923010.9357318, 8923435.661642913, 8923537.492496854, 8923618.20659707, 8924667.03193558, 8925262.5, 8925463.675540911, 8928631.002407629, 8930008.654938553, 8930126.259806704, 8931920.843334856, 8932250.285631081, 8932312.423408598, 8933133.183436925, 8933721.990704346, 8934454.157240348, 8934510.667887082, 8934748.48099183, 8935252.710753538, 8935904.325798225, 8939232.8125, 8940971.875, 8942127.218306273, 8942142.330839608, 8952179.107935974, 8954142.079542272, 8956307.803788574, 8957501.5625, 8957527.847593244, 8957543.75, 8957587.515719727, 8957851.83171191, 8957867.621873105, 8958276.61727931, 8958711.484941978, 8959690.922746614, 8959873.4375, 8960027.003271386, 8960508.44496407, 8960800.87513154, 8961074.892827883, 8964053.659876855, 8965849.724494798, 8969372.096236015, 8969572.937414832, 8970141.80706371, 8970363.23262346, 8973293.163565196, 8973542.704147138, 8973890.67186479, 8974279.6875, 8974825.355479054, 8975436.674576413, 8975882.8125, 8976585.387243928, 8979309.434257096, 8985587.527123516, 8985658.248158485, 8985686.115984673, 8986402.148462838, 8986851.5625, 8987438.662116531, 8988902.838293925, 8990487.5, 8993112.160907626, 8996799.665408405, 8998262.5, 8999627.851752166, 9005917.08962537, 9009998.524760578, 9014716.602287775, 9014740.625, 9016335.653268173, 9021380.120291686, 9022282.149987591, 9022322.769495897, 9023134.375, 9024150.20543436, 9027468.729750115, 9027533.301039223, 9028599.012187963, 9029920.372548822, 9030782.644232178, 9033895.632273648, 9034121.928535081, 9034682.8125, 9040521.875, 9043139.877101202, 9043641.564718327, 9057963.729665194, 9058429.6875, 9059023.960086029, 9060720.942919308, 9060942.1875, 9060973.48927169, 9061804.6875, 9062438.973965928, 9062542.252316123, 9062640.625, 9063107.967271985, 9063363.997581711, 9063565.188232627, 9063583.515331322, 9063893.75, 9064209.215784447, 9064268.75, 9067634.375, 9068549.699997729, 9072147.475951983, 9074160.519854996, 9083224.414332071, 9089110.991813129, 9089283.70590751, 9091409.776302725, 9092002.792575458, 9094939.767566385, 9110635.697400797, 9118497.196119241, 9119126.315342953, 9119699.457528926, 9121086.278090412, 9124325.149777902, 9154540.744870035, 9164766.052370062, 9165100.607689729, 9165992.134776285, 9172396.485613225, 9176872.084506312, 9184528.876531266, 9185426.040025769, 9185712.5, 9185719.785366535, 9185926.5625, 9186728.125, 9187949.786995757, 9188951.5625, 9189516.348707357, 9190000.0, 9193184.375, 9193383.653139235, 9193565.513021441, 9194011.805727387, 9194557.8125, 9202768.647526015, 9204228.340503493, 9212930.066918012, 9218113.770196658, 9218132.587425312, 9234468.341174973, 9242271.346923243, 9261852.134248206, 9262584.634184431, 9264084.375, 9264087.416386867, 9264967.01634449, 9267050.0, 9267327.12801476, 9268171.056159524, 9270739.0625, 9271150.58136436, 9271617.1875, 9271668.87371397, 9273850.672124922, 9275069.517492164, 9275932.8125, 9276097.161327614, 9276335.331035955, 9276704.191073958, 9277339.77029469, 9277917.1875, 9278039.35349647, 9278621.202554917, 9281320.019118166, 9286215.231516587, 9286357.35865133, 9288089.588607918, 9289187.50780748, 9289192.762318285, 9293195.3125, 9294704.285261858, 9300398.012024479, 9302586.895131378, 9303774.460773997, 9309858.330685055, 9309878.75544081, 9311619.766231608, 9313162.79731577, 9314145.937310554, 9320736.531677196, 9320954.6875, 9320998.340226034, 9321364.0625, 9324214.944448689, 9328730.34398687, 9329314.80150237, 9329418.67489745, 9335863.487973874, 9338964.179310577, 9340375.978330392, 9347721.875, 9362862.56656138, 9366870.124300985, 9368262.56802203, 9368446.30350915, 9368923.067991013, 9370303.125, 9371353.692682875, 9372187.60058123, 9374449.307899462, 9378517.669053523, 9379534.5530151, 9381084.196537811, 9391461.422015283, 9391467.1875, 9397901.95080024, 9404190.625, 9423326.312796237, 9432018.206660049, 9433561.6327911, 9433750.0, 9434637.933047032, 9452485.735961039, 9456246.493285945, 9458829.33588325, 9464455.40291336, 9465763.490276776, 9466175.053758005, 9474646.695870603, 9477974.772368873, 9493590.730575675, 9494873.701751724, 9495106.239958799, 9496488.360275807, 9496557.103974408, 9502068.75, 9504555.252760932, 9507546.875, 9507993.912074689, 9509245.361236315, 9515151.300215552, 9538357.8125, 9539178.088285388, 9552183.559299404, 9581912.5, 9582328.94611481, 9590715.561549747, 9592928.263666058, 9624924.238244725, 9627047.187052837, ...], [50.16971668092333, 19.590648528435768, 27.755970621482607, 71.58362720685523, 71.480887243442, 39.934203462590816, 52.49480621073509, 69.23779432746579, 17.256622131219714, 6.046036948087193, 21.11013491896005, 38.36188633317265, 11.414660588345907, 97.91534344599472, 68.60948653308452, 76.780002568381, 39.58603935255602, 63.894985315567865, 98.01735396685307, 42.9191198314451, 31.702194540186458, 29.606661795556416, 14.19691175515505, 89.66974952266163, 67.80374186932637, 6.463451811172936, 32.58838040122066, 18.159700543868848, 89.01860102927523, 50.27431926030465, 5.257471066072382, 13.92708653098294, 7.764474818303042, 19.88034051128954, 54.33416571461757, 19.59142514625455, 9.216130546135476, 49.877285159061074, 26.357527083220837, 5.158375026786872, 32.71563666939485, 74.48785825561018, 16.91256633315792, 17.303477129214244, 27.11497229478818, 76.7538502813137, 32.05487158112641, 61.594103305249625, 30.10661131440274, 27.582522617351145, 26.8803414442031, 62.22648110886401, 110.73627967887475, 16.704227755947635, 12.470196563074788, 21.345287543456422, 118.75352555190932, 66.51320674451866, 9.252686734103955, 47.13794061534256, 29.077574308456825, 52.09565242509955, 29.180462543099615, 16.789412478108517, 9.528029873599053, 11.39944024033848, 54.12267060249557, 18.915017492950078, 34.203081677094005, 39.92779923179908, 39.46707487379637, 43.479308942021795, 58.005455776163195, 10.552404104737088, 10.595117757558139, 34.17242051283793, 15.886573636239563, 54.83947340395421, 14.637707470849376, 121.97191443079691, 31.780068794525988, 15.58563274309198, 41.73063842074547, 36.0557312842374, 130.67067067106095, 15.070592895194078, 14.407571146380546, 31.906158880949825, 23.09658671157684, 26.308143110235996, 113.65615484428612, 35.82653123904294, 11.65233441057802, 33.43928548262218, 38.412900301070316, 80.90186031711144, 6.161509831873175, 69.91279014385073, 85.72847581568556, 6.212813791344412, 24.22954707775476, 58.38408089165404, 105.690485497722, 37.75064756291327, 6.235937757484116, 40.236094005622746, 77.47152123196825, 98.13605815745215, 15.625483941489442, 45.22008701907815, 52.1230086006128, 38.548743885740244, 99.38664221132642, 95.22823705758239, 5.724111225173306, 45.00624917236048, 54.72880695165534, 9.165489138257934, 19.9581180402153, 69.87508874311081, 31.587018937727446, 10.018344549079005, 47.397252107405684, 48.82635470023238, 121.6944276365675, 107.60668473374054, 144.48780487780755, 74.87907509294766, 90.38874349963922, 62.95011741346351, 5.115417421665713, 28.34021509853378, 20.793029114426762, 5.676030807143797, 8.080302133426391, 10.499888542979289, 67.94556133077307, 179.96551902433492, 7.770732691960413, 8.735632814032664, 51.18991533341972, 27.006578340532364, 6.731834190533878, 30.47105501581742, 23.607243791246006, 50.979788103463385, 19.635743568278386, 6.8189876506796665, 111.28877944893863, 70.6131192132856, 26.6849860045266, 61.9007974437315, 113.18722683269473, 28.757966551072162, 5.563448394961415, 68.3367483657882, 23.194221310467377, 28.618405507933957, 57.077863934153605, 8.974774859269003, 66.68486367780667, 78.33203356932945, 53.59103281979491, 44.76351268778901, 224.782899118623, 41.358693698595985, 36.383326617933015, 11.724492663975422, 80.0024983869896, 58.78719002283802, 12.178945479364133, 44.70426604692827, 5.691567311826976, 18.505319030149145, 12.855947290173257, 19.280772809022068, 29.509756686414548, 89.18265272173699, 10.848148069180489, 84.86900572485823, 7.684781909599705, 35.79322691385228, 22.06593476682735, 5.90811207681746, 50.179101712010414, 91.11172291539401, 109.92838440399431, 79.51558220529199, 29.664631171277325, 99.48397833063449, 28.16071340735172, 32.67725998529324, 9.922826229447224, 24.612906266543582, 7.678430936278875, 7.707901892695863, 37.494642037275256, 94.14423623803364, 35.153781061022656, 189.3688798647126, 61.86958727184321, 35.53277328527979, 57.683924666799584, 10.500436304270778, 24.436409044637774, 42.49112775895409, 36.55284596464003, 34.66965610904588, 194.28354325500484, 67.07605676841676, 20.28150660409304, 20.803331483851164, 57.636405536372905, 5.499505463860568, 11.697508100455966, 37.7422950125286, 39.806431108448834, 10.834750331973433, 54.21443775066159, 5.8132225216588385, 27.45655351812352, 13.812770366259832, 68.21284172959012, 6.28455337915434, 44.72013060442305, 24.65974243323057, 16.58950542246151, 14.261925471268313, 10.54179422472429, 66.88536369581354, 34.2499323737901, 77.9741279473923, 15.568810858395743, 8.80108300521483, 17.931046640143283, 64.17227760306248, 5.706354326575772, 65.99783407521619, 20.098855397600914, 72.97069834319078, 54.675072395389385, 18.10727905844439, 101.48552757660782, 28.668302385552852, 23.363527966611777, 10.05960529774904, 38.21961498553705, 104.16862231041833, 91.01658881001617, 20.37209652380766, 73.93382234370641, 114.20852428444117, 33.89123972161458, 10.201172778967264, 210.03435196077209, 6.076134947223226, 6.149825542668888, 48.511638504628785, 162.96650886816695, 57.36969726873305, 23.609399013178777, 9.097547969146367, 16.471650310268323, 68.31705205643786, 21.554778494018215, 19.806573229750544, 120.03167239824991, 19.499563062001126, 74.10454895381751, 14.018148793054038, 30.75320750200284, 18.79585549587595, 94.04824205376948, 50.10221151255415, 43.70622280863324, 34.544655336230576, 26.162386700614597, 13.784167169593232, 14.51003725632589, 66.46500575092095, 6.879100577026024, 174.67069440691793, 36.318849454111664, 7.039491174658062, 7.714555703913523, 36.05305038762516, 210.68884001252542, 5.377353179951022, 116.95073270354246, 99.16343183070808, 6.538652144546886, 91.97420410397052, 6.330675221921498, 10.623882887163916, 127.3630356597378, 53.2478543617124, 102.24377239231526, 20.32031820035596, 67.44210913707595, 14.39764390948432, 5.800587274420207, 33.17812080868409, 25.836949756730096, 116.18057101251723, 28.677079072513017, 48.02257317176179, 8.999068731707538, 209.43979448969853, 54.240381182926335, 32.17924311872406, 53.36266801524968, 17.62914662208084, 35.46086403596668, 12.257720475883765, 16.400977720093238, 19.639326685312536, 150.8857040391467, 203.07870218731415, 67.227539685114, 98.80422535767548, 16.822815191072642, 13.940939647436913, 79.60511254201842, 10.810494610466204, 44.120411924967, 56.00643519782848, 38.77489486406236, 55.28658533809107, 15.994096510740855, 81.68225919801888, 75.94493868182467, 39.68401995996625, 21.92244793010896, 66.32998935132744, 16.59685996308039, 43.91732783395954, 22.130513676992646, 9.30776158136964, 5.744162678635406, 17.0503741327581, 25.60875886866164, 37.35626398934722, 7.242501312294597, 89.71713644206136, 5.518142509135055, 6.77557050979114, 137.82465230439053, 7.347580318943598, 22.063143606987545, 46.14917889525138, 19.363633641338843, 54.36471352442703, 45.82027961999595, 22.54210583021743, 55.323961743635856, 10.297750928355008, 69.11901640673436, 7.8682877913180755, 24.0781433281278, 5.476359151773863, 5.988304275953719, 44.854334026678046, 11.75132451199727, 46.86005678072784, 63.38962649083362, 35.440144729375085, 38.313258778942966, 16.66576516291829, 149.35975956250377, 8.630077440879502, 23.645016800865772, 75.01185794329358, 5.788133004289067, 20.96281532207824, 43.211083774593504, 23.80441714087011, 78.38011122756052, 10.524205398937658, 10.73524729331024, 23.079950580304516, 35.342871058668514, 11.962446987002375, 15.404845411834565, 21.560810803129563, 11.343226965499026, 17.818487037262667, 13.797631977928221, 36.94665382346323, 55.52949412988422, 25.790364404631074, 10.236527486181545, 30.03647286880424, 6.059220005155454, 16.608326541928747, 44.09007003735606, 23.330449492737507, 20.00665326811477, 55.42208564558811, 97.08084349059189, 224.15259221694797, 31.30227123320298, 11.776039228814462, 27.705391586580735, 38.697332650560675, 20.686918415963753, 156.72043727212866, 15.036828129514682, 22.928557246866553, 36.84032273674461, 5.902687925164182, 115.21142671331872, 53.17110536282506, 7.681327509071774, 9.558629298762321, 13.137415921432224, 25.544328060928997, 27.18527855917095, 100.82024727530612, 51.467144096552374, 132.01531343823405, 44.448917296517294, 56.98981957094093, 21.274422132303464, 5.797197272208005, 34.85121172712536, 17.23191598301797, 27.62486236380069, 80.88051755465189, 159.8083962121732, 63.93603778719566, 12.331696760231202, 46.55970622234614, 65.22290080600054, 29.544907923309324, 29.21840316189663, 34.31277343978835, 31.895510062332264, 10.28335937747194, 63.31583184939966, 25.06770381274679, 28.843318702903893, 78.00724130063118, 86.17556176607283, 6.054802032173126, 79.38892742149034, 7.672900554713671, 63.37871648380095, 62.21265719295942, 13.139070141985433, 24.485511731219837, 51.94549546290804, 10.624279772851835, 83.83308216865063, 5.233170403653709, 6.240782521456259, 21.039873147627947, 59.515098485943604, 38.32180455009282, 31.98439557433396, 126.93988954022194, 45.31066718372364, 72.04926100399167, 86.65101052109392, 56.78194929256824, 20.713074337156, 6.87563397215305, 143.23176520669665, 60.929758412581386, 63.274747179500274, 118.30951141411856, 40.44698680653182, 44.82282408433079, 99.17001317636739, 83.31494459410148, 70.61556416794846, 73.06488490874193, 34.66715735474327, 27.795539421442133, 29.82004832070558, 31.689767740806214, 22.112376288869378, 5.5933080644460125, 39.753726739781754, 6.961201974372743, 45.74075288553384, 20.075275274698733, 33.05073123201791, 150.07032723140355, 25.972416884262955, 10.688440261525859, 51.661501203638096, 55.47706904067573, 83.56920026873358, 18.456022651345737, 14.588151270192018, 6.493338244888808, 83.47538171525774, 53.878651119746266, 78.77497956739174, 25.02895508883362, 32.18866527275518, 24.703282115745406, 21.47933446893706, 16.2405280736419, 199.61845810809393, 301.8330140041806, 40.15782753271648, 46.188977232173436, 24.070310114333104, 24.95939887064227, 66.85906891846604, 110.57697595182141, 10.919731083218888, 17.80012389557667, 15.951481995257959, 120.02712507460406, 72.7106744246634, 126.51058440809024, 38.95120373760028, 178.32682936550188, 83.92734552141604, 14.65902124796545, 6.6571583266969485, 31.128610045541134, 9.688202100900302, 42.18104395989404, 23.953964838994526, 37.7195308184985, 12.580644378475936, 72.32849630952809, 22.57117678949198, 9.830778533187841, 20.539264227655767, 5.387310742123936, 36.21302136907863, 42.610794099484316, 81.75840326178047, 106.51152432240097, 9.741849311564795, 51.48098139109906, 6.6175345389425875, 25.07503106133257, 40.158488819072296, 22.98755222649575, 26.301699927494184, 8.044637802877707, 17.397226130063302, 11.498484783092909, 28.858606241162715, 29.50851927278446, 5.064985270585189, 47.93167764735229, 38.322847404119315, 17.078748739345908, 51.9682364616812, 15.234420693075846, 40.581109512169974, 18.026685812766193, 218.73139962546134, 17.582534552107184, 102.10080009899218, 66.58629466460206, 61.486557208593595, 15.880155636420612, 16.047557753803055, 15.767563545965594, 16.83291342103403, 55.50875286118382, 17.0104757345787, 51.34674190856442, 26.47463515307126, 9.629951869894743, 96.95064044096084, 22.88780695378366, 28.16630616815515, 11.671121186959759, 64.78142139374121, 141.61890858536918, 39.90295780253114, 16.19429932752905, 96.95841709448602, 10.323646652586449, 22.631933277783823, 51.976628617483925, 33.8580036703269, 14.913085065954467, 41.3837447935697, 41.840768124876476, 24.672287012469397, 79.09904919022372, 5.695200400987444, 97.73682870637626, 20.295583530740153, 73.85630719278912, 17.414888729054624, 17.197104217170942, 33.47896382353667, 49.75432293381934, 170.49665379297, 92.99418345423977, 62.30561778414916, 27.94533614353212, 78.1997744338004, 39.68017197394295, 30.17232056501004, 19.714452239621405, 18.207757691273024, 113.04503236772763, 112.72556522168092, 16.65785194997879, 175.72938594808548, 8.06211573016289, 7.646698375300556, 5.034041615785409, 18.803830275224488, 49.3692819065491, 7.712824019300812, 68.97666695558905, 72.11876333909362, 20.6279999241865, 12.531702553526658, 37.05801631758582, 23.62167375379196, 9.30569017750868, 9.63934885421945, 40.24908653694434, 144.02446995849363, 13.823618043617035, 27.20377300044172, 102.60258078885666, 32.52359153643566, 28.77414447672402, 33.60972058823495, 130.4670648394623, 11.68471311797578, 35.99169030867408, 15.369585131547534, 37.021901432560064, 21.523376946108495, 29.0705007667083, 42.804106932105476, 37.00982330905618, 23.520992061332933, 62.146125793548094, 10.921134365833485, 125.94811623165651, 15.078393866072965, 10.046499195564744, 89.5610512709922, 5.998207962615489, 9.30450061146344, 5.908392881748137, 26.412844434129738, 6.118830354579449, 5.039869155439409, 22.68214592998419, 18.59147082347462, 9.371247456577592, 15.197920928785736, 141.363908396887, 29.314528561720365, 5.324703480027178, 21.522096123681553, 83.37821737893367, 41.64382979557571, 11.446803558445621, 35.2584983677348, 35.911253396675306, 12.711433276890974, 7.425131434919186, 7.507421554300136, 42.54050765954829, 12.207786136474148, 12.083495891936954, 55.89326723470507, 9.737783627001862, 8.61755937750898, 45.75277822441218, 8.559175147060815, 10.235088369137252, 40.252554795548534, 7.5180200359492995, 38.06711265081026, 12.837662381548117, 34.828051350860235, 63.31915288471663, 95.14928306385079, 5.357636774861152, 30.259917975886065, 11.75133298338373, 54.50226096653492, 9.234742254118604, 25.98033383338413, 33.06945898684982, 6.188198635044736, 33.17000665623194, 14.255794130487615, 16.312170088269117, 37.43823667072116, 48.10361048771265, 15.902212241389826, 7.669906435911999, 24.268968549561066, 29.478003893030582, 23.851815727933737, 27.27761572092504, 5.591488157431366, 69.68827259286637, 18.990187452593457, 73.35120408396102, 17.86943769356978, 18.961786474789, 55.20959285026644, 43.34315759739107, 42.62292205909807, 165.30289607997645, 32.28805735287918, 44.77467759791672, 14.24297560720926, 100.47952127549203, 9.278584589658937, 14.919626832256323, 65.44749243389141, 27.818589884658337, 30.437860363653026, 70.4768427210536, 37.690521493806116, 34.62991208794456, 67.16340711556654, 81.9799970086349, 27.5758815743635, 48.60739982271819, 54.24860450776601, 9.253315601813794, 63.759344913675925, 6.5959870939481835, 73.64154150430375, 49.86357041325412, 15.926266607653869, 13.385121730170761, 83.44375264226854, 51.04497107975476, 36.44378912032076, 14.936216969628884, 120.51861805169585, 12.07520813117831, 50.49100730012914, 35.570442791890436, 22.271068474587672, 35.84169658196641, 51.85552189477314, 11.124944118084331, 6.232963773299974, 14.912987854670902, 88.63730057842722, 25.78944604647415, 110.41863110727444, 10.572327471442222, 6.715063250524434, 6.944214970782144, 27.055575945510153, 139.31626290475057, 6.821902579857222, 61.096747032828475, 27.133915075429403, 33.123739541417734, 42.95505288181174, 6.445641584514511, 15.109912234839955, 10.536572457185745, 170.01588562314262, 42.5037613483611, 37.78592434609993, 24.832391836824385, 20.712285084035422, 89.85182378562152, 26.55859840927919, 57.844977259163414, 40.84943248705226, 24.043693828347386, 72.36266847126237, 11.152366966250517, 5.252742974784886, 16.903421464442776, 8.315759543611517, 17.539206970616487, 5.836344412668481, 37.89829877379142, 8.534280704392241, 48.11551226032681, 30.504978839782343, 166.5061770482885, 91.74691576664078, 24.068753951459737, 90.26674554485311, 6.037594139997405, 85.62991648042122, 85.63171761488184, 5.582404565934963, 8.580089448775832, 130.2829537270993, 35.98701197018, 83.34962202542592, 20.29995355411326, 47.244192910050785, 21.006002448813174, 15.172284601024987, 15.045909287002885, 18.910232400484333, 11.418641205654776, 12.186380073825498, 73.84026782400296, 44.32800242354523, 29.329149359621923, 71.89305187011831, 7.035078971492953, 20.164566850247297, 212.36109451527534, 5.063960895071668, 35.200767959602544, 15.284874433331321, 20.68319019425719, 56.99291779931897, 83.58100877694113, 20.655215012863454, 12.90195955843749, 80.2473111665622, 106.4721263582748, 9.511367952827902, 28.13025864800112, 24.660278584023835, 23.93538030019812, 48.171013995742605, 14.955043222419146, 166.74865694303747, 5.4005245789362295, 28.68739230316398, 46.30939901231086, 65.19354387799972, 71.06768940372638, 23.34019183843018, 75.02125109674974, 12.056220553099061, 18.04829403552849, 91.89642839742854, 54.99435583592953, 40.746825410806835, 38.77594183109848, 107.65003080556747, 30.124714274041157, 9.465792594807185, 18.775243359414944, 44.82764687315917, 27.966739543543053, 77.11364660250958, 55.76067023757901, 34.229686527539634, 49.38905521392291, 23.750712658514306, 17.863069744819136, 10.532147997279662, 45.916456425999755, 53.50997629795788, 23.339715659938978, 62.7637371836387, 45.992163954233035, 12.44325115367721, 20.08607202381959, 16.32515440758607, 24.45005066326475, 5.5073194596368085, 35.7737598897742, 5.825146296674114, 5.403076407425756, 80.7997200158199, 31.764613409946385, 59.86478299377904, 47.089427901293796, 22.19487988103957, 25.36087953101989, 21.271799603234264, 50.59509888497658, 32.33628051712823, 30.542952906549562, 72.76315537059891, 83.98086242431312, 57.8128496379397, 27.00612300761987, 81.47996440212987, 29.882587068891677, 19.532795782898962, 9.238480400235598, 19.751817508795078, 45.81623766533066, 7.566590362318937, 113.39980945467099, 92.78786812822783, 10.699617730051393, 59.906185331770324, 12.861550928787189, 8.921524631143226, 99.6568448217649, 16.030875808519298, 90.7942532081549, 26.97363006637192, 59.48607364103805, 33.75813986732393, 15.574501137588236, 164.07452140849753, 112.31653353582514, 17.74269091422308, 50.07416798429122, 11.326747066795171, 69.73457413718896, 135.91840063445906, 70.25181216377304, 7.710187827461635, 33.76468206051153, 13.335844934730115, 45.79260249950457, 37.202682065229546, 48.78120273909711, 122.46084428442032, 127.68034775170621, 22.625811734362816, 70.46159753896166, 9.819748905282735, 12.340768109871163, 17.173836721631854, 42.446836899072956, 10.552256478110444, 22.270194076632364, 69.46199484636057, 92.07110373650818, 33.21400607549887, 9.928163218631246, 47.42032009856787, 16.210318568102487, 6.58970901975142, 9.88999823889528, 54.872073526950366, 10.978990819206693, 37.345383364938655, 14.819034092213155, 25.193018757513634, 96.49404503629269, 62.56628394950036, 22.105284522402503, 134.55128239375335, 18.061377693741164, 108.77624913718907, 7.627490522397774, 64.90777309770648, 8.322879081000416, 20.808401965365302, 76.12734454834852, 52.93862730549774, 9.862442492140364, 7.148144811545717, 58.25896736105467, 28.856321016348524, 11.417843092550573, 31.08892420343036, 11.980087825234127, 63.73595827469085, 48.59478316104685, 48.01069973918177, 28.123948021198565, 29.984442116900727, 26.72379729409649, 47.311068622302415, 58.45206413186247, 73.42662953355746, 14.440516926831464, 6.052281815990194, 12.466362428157495, 13.132502233440468, 11.21278669213757, 32.297652264104705, 138.2853489970303, 11.296838071023169, 16.054408936042563, 38.53114786344023, 27.398692338278483, 6.946876434952625, 54.137841045812465, 17.64531790526659, 114.00679336539429, 15.597472311867662, 37.054978012455514, 53.00172012186643, 39.030861696312236, 49.49379403663521, 106.40966552612414, 60.7810937506064, 19.38151522465678, 53.22049834634712, 5.346695820417559, 7.34915235516477, 9.609976902507876, ...])
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)