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 = 48236
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);
([7166567.1875, 7190676.273870116, 7191920.607170682, 7193378.517128852, 7194634.520979669, 7196987.476162372, 7202353.125, 7207712.975861646, 7208810.9375, 7208953.502408549, 7209144.963705017, 7209553.294762152, 7210743.79906026, 7210882.011060998, 7216840.625, 7223810.9375, 7268165.684264948, 7275568.178085273, 7281822.643696694, 7315115.625, 7335690.625, 7375977.990563832, 7380542.1875, 7383612.5, 7385988.109944785, 7386694.013104657, 7386786.747004024, 7413303.125, 7413906.705667058, 7414200.0, 7415482.277507957, 7415752.397854438, 7415783.286078135, 7419205.519022898, 7422158.960424237, 7422283.642798279, 7422454.6875, 7423468.091593591, 7423470.3125, 7423614.713491678, 7423748.085805375, 7423887.505600769, 7424808.922645882, 7424895.3125, 7425111.925184529, 7425474.661960215, 7426976.5625, 7427157.563861699, 7428635.9375, 7430318.75, 7441426.5625, 7442472.176391954, 7443528.359426235, 7444959.375, 7447848.390238488, 7449319.747188868, 7465070.227967049, 7465426.670765881, 7468938.482909768, 7468958.8866236545, 7468967.1875, 7470036.645277036, 7474854.550868973, 7479096.875, 7479986.250156162, 7485016.6821265295, 7485206.25, 7486285.192866451, 7498481.25, 7498484.582451331, 7498504.974705763, 7509590.519157954, 7511442.431569662, 7557098.0892236205, 7559072.8501895955, 7560193.75, 7562361.934050098, 7562825.875902712, 7562905.06757185, 7562981.865031824, 7566486.716677001, 7568020.219521015, 7571283.038718549, 7580421.082216166, 7594741.954059829, 7596960.593509557, 7597689.355100506, 7599688.596677835, 7604183.48888491, 7604184.807425227, 7604226.567549191, 7605439.0625, 7605467.154418598, 7606235.778174926, 7606405.848077879, 7606461.593494381, 7606498.355014986, 7606703.125, 7606712.5, 7606940.944149844, 7610090.3737366125, 7610187.5, 7610707.8125, 7612439.485052332, 7613032.311326798, 7616528.125, 7618040.295465209, 7620049.595893592, 7620885.9375, 7621268.603953865, 7621324.3160284, 7623393.792071438, 7624207.672755244, 7624968.777788371, 7628460.9375, 7629864.617008162, 7629905.712559649, 7630348.632979038, 7630869.653364114, 7631483.845757672, 7631605.084240689, 7631723.406434359, 7633253.614934446, 7638956.882333914, 7640578.813761709, 7643293.75, 7643790.209874464, 7644624.313314499, 7647275.83294369, 7650775.606549721, 7651995.989276308, 7652911.240871992, 7655195.3125, 7660998.727233472, 7663518.217023239, 7664580.714044369, 7664920.631293192, 7666537.992268077, 7668879.6875, 7669074.896059845, 7670209.4277358875, 7673879.010647655, 7674396.471134996, 7674496.477350563, 7676908.790307819, 7676952.024135963, 7676973.890931398, 7677310.9375, 7678480.684499035, 7681241.0003773905, 7682407.706615661, 7682824.279531374, 7683807.83881885, 7684443.434801328, 7684480.3669965295, 7687646.875, 7688049.7245879285, 7688064.03130809, 7689255.067889444, 7693165.625, 7694364.0625, 7694524.718954345, 7694829.770607259, 7696312.894166918, 7696985.8873112025, 7697068.811411767, 7697261.006605942, 7698331.766660022, 7698631.136907592, 7698730.094915823, 7698835.747959118, 7699397.560927019, 7716246.27536568, 7743898.204885349, 7760509.551207954, 7785554.687349381, 7785914.590175365, 7786298.4375, 7788418.462914339, 7789334.375, 7841746.231068687, 7875256.25, 7877869.190835026, 7889504.6875, 7893646.25445802, 7897639.631769862, 7900721.687333354, 7924268.75, 7931300.987931005, 7937911.134229511, 7976971.875, 7985106.3487900095, 8001570.013911299, 8007029.313783746, 8013556.148800589, 8019693.272631559, 8033246.086075529, 8033246.757624151, 8034414.0625, 8040020.288072063, 8042321.766403356, 8042831.68528478, 8043559.389380177, 8043575.778566738, 8044359.997585499, 8057851.363484913, 8060767.646341425, 8060794.203256231, 8064876.518730296, 8065551.5435601035, 8065599.297577945, 8066268.719907396, 8066562.304733363, 8067489.920381898, 8067833.636278542, 8109381.25, 8119031.927816714, 8132758.613260476, 8134199.556904449, 8141226.124475924, 8144616.333575003, 8161540.411512152, 8169340.928343701, 8171748.327633429, 8182976.2901174715, 8184235.673762059, 8189634.730607148, 8189971.511766647, 8199453.536422833, 8205577.639074793, 8205624.707320324, 8206287.5, 8207506.25, 8207653.125, 8208670.164947815, 8216639.723246273, 8217179.6875, 8217218.034372373, 8217379.570140176, 8218669.786118449, 8219123.722365116, 8229754.241305664, 8230989.645171283, 8234257.8125, 8235423.180496896, 8238630.487520441, 8240873.4375, 8249424.200342542, 8249621.346610063, 8261568.521824226, 8289905.001086114, 8290247.3887637295, 8290978.827285337, 8298728.125, 8302907.823533542, 8311024.355256553, 8312457.8125, 8338839.742063672, 8339216.463681795, 8341593.24923813, 8354207.8125, 8370666.567749467, 8396083.134648379, 8397307.851732703, 8397315.335307667, 8397316.155685775, 8398091.597729323, 8398383.090368351, 8398395.3125, 8398912.273607789, 8402083.96590047, 8410398.229054194, 8425101.5625, 8427720.51560234, 8427760.445940057, 8428031.042427089, 8428360.9375, 8429440.625, 8431356.07857515, 8431683.888060262, 8432750.566092245, 8433551.216339434, 8448454.6875, 8453849.678075682, 8454142.1875, 8456498.17362449, 8458212.379358867, 8458399.363572575, 8461903.599243494, 8464642.1875, 8464838.774690645, 8464862.502512163, 8466115.508136291, 8471910.701948106, 8473031.104135787, 8481173.668159373, 8494131.811775425, 8495354.382456843, 8504308.1944434, 8513223.4375, 8513495.131168641, 8528225.0, 8529830.699797872, 8532578.419527292, 8545337.5, 8549279.6875, 8556757.8125, 8559196.240498316, 8559361.449484317, 8560175.0, 8562740.104144564, 8563646.821570544, 8566546.571848312, 8569312.849376481, 8571137.456479462, 8571734.055482462, 8587371.637750588, 8587779.6875, 8587869.50496177, 8587894.590690117, 8588065.76153851, 8592571.875, 8592574.108628428, 8592704.21937601, 8594063.905382283, 8594071.739361707, 8594588.845464887, 8595944.365885237, 8596639.0625, 8596863.941091657, 8597878.17862374, 8597902.924484665, 8598198.157754406, 8612550.0, 8612606.25, 8613596.39968257, 8615553.95697568, 8617385.666401036, 8619534.021863231, 8621127.81020969, 8621776.509509113, 8622904.6875, 8624774.80981209, 8624792.1875, 8626555.024685342, 8627536.19295037, 8628649.53692816, 8629360.545257969, 8629363.068687381, 8632959.375, 8643150.279687261, 8647987.5, 8648640.714325793, 8649217.88080503, 8649789.47813798, 8651352.315906866, 8670496.428059993, 8686741.975561563, 8687449.815351529, 8688078.581094071, 8691194.909329463, 8700639.665343022, 8709582.8125, 8709872.694307495, 8710101.071121054, 8710639.666770108, 8710929.6875, 8711995.037941054, 8712337.5, 8716557.973676827, 8717689.909666188, 8718621.724209085, 8718663.477286143, 8722404.981197929, 8737031.25, 8738397.385720585, 8739799.673477074, 8742198.4375, 8744802.399630414, 8747239.428332258, 8754923.272219652, 8760907.597817592, 8768856.001861528, 8777361.139227517, 8785137.5, 8789753.510742519, 8792120.237109585, 8792773.744640592, 8792809.375, 8793198.96823097, 8793378.05969978, 8793609.688266383, 8794427.906279244, 8806151.146318013, 8807214.415357884, 8807255.238358868, 8808200.0, 8810108.605489613, 8815776.5625, 8848096.740369793, 8850070.106095696, 8852412.5, 8853317.439297274, 8854039.07928744, 8858148.281290207, 8858184.539178003, 8861763.667979684, 8863158.042658176, 8863559.375, 8872351.264382523, 8877931.922932511, 8878899.311003264, 8893071.875, 8894280.681744315, 8895558.248722529, 8898462.872815484, 8900599.302795634, 8901931.029588882, 8902952.78372013, 8903210.433186227, 8903240.461087171, 8903723.787054503, 8906072.474204702, 8909154.202708483, 8910857.203383178, 8922697.36418027, 8924200.92257287, 8930646.754104499, 8931016.90031196, 8931426.21907141, 8939297.358107379, 8943881.25, 8948298.4375, 8948801.225838343, 8961454.6875, 8977461.116111785, 8977573.4375, 8977700.882098595, 8979174.082801802, 8979675.978536766, 8979993.655612266, 8979994.283328887, 8980969.924514906, 8981795.3125, 8981976.280056305, 8982032.845839173, 8982122.52392819, 8982505.985057024, 8983201.095596468, 8984824.619666044, 8985136.331420725, 8986007.328400197, 8986040.754120357, 8990867.512901276, 8995590.30310769, 8995896.205521066, 9010933.549772792, 9012397.902885333, 9013661.35975369, 9013755.878033038, 9014732.644354168, 9017439.813745381, 9018540.499326985, 9018588.180723982, 9033471.473651227, 9033971.875, 9034523.4375, 9035361.583553385, 9035476.224918317, 9035775.166312605, 9041082.276407883, 9043768.101174513, 9046980.168098064, 9047625.590268975, 9067121.96548929, 9068141.929025043, 9073132.373742813, 9079412.898738379, 9081028.125, 9093863.045506, 9101106.94746807, 9111541.284724023, 9112211.795035725, 9115805.798099823, 9116925.414210493, 9130342.53281427, 9138123.819406211, 9143731.27690004, 9147875.912822895, 9163765.27005979, 9171619.913856875, 9181113.012527667, 9184736.401611852, 9192581.347997705, 9192584.375, 9240359.45258223, 9257623.632948685, 9257648.905602435, 9283497.787356205, 9337751.05887112, 9338387.5, 9349829.880337687, 9350440.625, 9358253.650582984, 9362406.063251395, 9364125.653757915, 9374540.625, 9378755.472072529, 9379944.558430946, 9418946.689053679, 9418971.242411887, 9426769.582026372, 9428764.0625, 9429242.370645182, 9436929.6875, 9438134.924344203, 9438573.371458694, 9438915.476563225, 9439461.884653017, 9439509.375, 9439660.9375, 9440067.1875, 9440854.067744073, 9443444.28267686, 9444252.662598144, 9444555.983331455, 9446693.456557136, 9447158.777235761, 9463862.23964554, 9467485.073274586, 9470045.3125, 9471981.25, 9488084.169550339, 9489571.974933932, 9489660.383428557, 9531448.14034273, 9532755.823836075, 9532856.148717644, 9532866.562088262, 9532955.17606221, 9572124.321204834, 9578843.75, 9617836.345206259, 9619758.405322837, 9632809.10400456, 9655655.318769699, 9656675.073866837, 9691274.528292527, 9701618.019586466, 9702704.125732405, 9752155.476143857, 9767146.875, 9769803.125, 9806800.082573704, 9828383.30883586, 9829775.263756588, 9832600.972008755, 9836507.442103539, 9863936.796430403, 9869646.750116449, 9889686.434205307, 9988157.198692437, 10020714.078748193, 10053925.0, 10071145.403188994, 10071903.125, 10105663.72247809, 10109745.411353542, 10166285.9375, 10167030.676758872, 10167678.313811783, 10167678.872280978, 10168229.6875, 10190326.31371541, 10200959.375, 10202584.375, 10223198.4375, 10223250.50919209, 10237731.882337172, 10272604.175617235, 10308146.704714596, 10308718.330509959, 10308741.246287445, 10312302.471927611, 10313012.395225745, 10317953.125, 10346785.9375, 10346879.6875, 10356622.667609096, 10357109.378326612, 10359045.3125, 10364009.156159807, 10369395.3125, 10369591.50496067, 10370665.695142016, 10444603.316041235, 10483049.46802346, 10483597.920890156, 10483607.676031597, 10484426.5625, 10484642.1875, 10486479.6875, 10488547.491421176, 10523214.541757168, 10523598.4375, 10524920.938865071, 10525094.920525694, 10528250.52517134, 10535501.902225625, 10536025.141556999, 10538230.4936838, 10580233.510477072, 10585331.944019655, 10626359.375, 10626377.388425458, 10628865.625, 10632259.08520941, 10655585.459797956, 10656567.1875, 10669939.0625, 10670677.95132262, 10670796.875, 10670803.62968342, 10681770.763667852, 10692860.121934947, 10708590.625, 10709953.125, 10709984.36226082, 10726795.3125, 10730558.108105712, 10735473.144751586, 10787845.3125, 10806242.1875, 10839983.652254296, 10842982.8125, 10851739.759220371, 10854586.686614374, 10893281.25, 10893485.718110908, 10911259.85999906, 11021688.705410965, 11024191.545188127, 11039590.881775066, 11086134.185981756, 11100635.9375, 11100643.75, 11136862.5, 11137319.860909998, 11189250.0, 11189913.92021518, 11211932.429839866, 11216215.625, 11286743.75, 11297363.672922734, 11329654.6875, 11368750.431696156, 11370777.538720012, 11379842.1875, 11379957.5985116, 11421596.875, 11421783.379074698, 11421823.4375, 11441435.804906007, 11442636.934574408, 11443993.958194787, 11445467.237216882, 11479082.8125, 11486033.829005655, 11511615.341236727, 11520011.017246922, 11542947.459169336, 11577868.189723866, 11632029.30719113, 11639862.04564251, 11645933.83823531, 11659838.667411452, 11696900.125338065, 11700377.560032086, 11784983.577044697, 11787817.14007789, 11876659.375, 11886230.214327717, 11901696.884368766, 11909135.9375, 11978519.545160167, 12008048.661647221, 12010320.3125, 12016506.701124739, 12019480.76121587, 12047100.0, 12067881.008924544, 12079126.77353452, 12119389.659753932, 12138370.11455953, 12146188.640935892, 12200446.875, 12200753.295176804, 12253294.976490686, 12271344.925556097, 12277103.125, 12301974.074085213, 12312530.176320128, 12353793.157886628, 12353803.096651945, 12356239.0625, 12386426.688953472, 12386646.022203442, 12393644.1744153, 12396943.834154738, 12417353.125, 12424971.23396928, 12426426.5625, 12426565.625, 12428466.99079385, 12443171.738280013, 12466977.333496375, 12478788.47874759, 12479259.208446207, 12480172.724835059, 12487318.75, 12497905.491558198, 12500634.21585366, 12504843.029466804, 12510709.403624414, 12510743.734222995, 12517320.3125, 12522688.928869447, 12526809.375, 12529769.076811949, 12558991.769031338, 12560328.093604116, 12571877.536417898, 12578324.345339583, 12614242.035147088, 12626169.744848052, 12629681.496654091, 12636725.074378055, 12641814.548937181, 12645076.7438199, 12663598.376471072, 12691151.5625, 12692245.3125, 12693891.15843564, 12712059.375, 12712764.0625, 12714525.384370593, 12717921.637028767, 12720278.54336128, 12724469.101966184, 12728658.139046077, 12729917.1875, 12731765.061088381, 12735675.290920855, 12735977.417297278, 12761555.016260272, 12762584.627921399, 12766225.0, 12766368.871793885, 12766881.802674128, 12767083.708015503, 12768629.6875, 12769735.743457703, 12805468.75, 12806268.665648619, 12806859.793480957, 12832901.466375189, 12842957.8125, 12846776.5625, 12885420.3125, 12886078.125, 12887428.17070485, 12887510.014887642, 12889642.651169265, 12896593.302985841, 12901609.00186378, 12908828.843484186, 12949942.25471438, 12951581.182757435, 12998026.34552584, 13005079.609681973, 13007364.615675123, 13007662.5, 13010239.630987514, 13011480.101339508, 13011756.25, 13012432.301397718, 13012652.171128085, 13017523.263506874, 13022657.8125, 13033554.6875, 13033794.721712342, 13034159.562858423, 13034338.753726263, 13034790.108080672, 13035398.31121837, 13036212.709412184, 13036248.936453111, 13046349.630197428, 13050764.0625, 13051739.379015792, 13052653.155356186, 13056118.86061632, 13058603.50852641, 13066835.148861539, 13071023.4375, 13091368.556392847, 13093026.364993282, 13093226.5625, 13094187.266021261, 13104389.0625, 13105668.130349124, 13107124.044357711, 13107476.498089744, 13108817.1875, 13109673.639448805, 13109678.125, 13109709.735565692, 13119208.916698819, 13120826.116805246, 13120829.602805547, 13122201.5625, 13122209.02483721, 13122987.5, 13124109.86526543, 13126229.6875, 13140450.0, 13147772.544627808, 13148523.851452136, 13148864.41103576, 13148925.483751457, 13148991.559017774, 13151531.472374637, 13151813.07954008, 13158886.225696173, 13159423.4375, 13160941.852557067, 13161112.990398942, 13161372.699729139, 13163101.895502234, 13163615.625, 13186029.134760855, 13191010.570442004, 13192331.19339924, 13196882.348891763, 13199862.9145095, 13202220.081765356, 13223173.062130114, 13230766.264067836, 13232666.822060192, 13232942.205763424, 13236318.75, 13244993.682614414, 13247738.446874563, 13249221.875, 13249975.0, 13271830.247150132, 13272364.028978176, 13272876.5625, 13273320.3125, 13273940.625, 13274844.937597036, 13274868.75, 13274918.886599524, 13275127.828669168, 13280941.929722052, 13282414.598104887, 13302848.467535125, 13314841.92991461, 13315569.311629646, 13317705.83660799, 13334548.66616917, 13338555.657143, 13339240.625, 13340501.971690731, 13368398.676523458, 13389409.599339452, 13392420.83775465, 13392959.134509228, 13393150.0, 13393835.624324646, 13397095.621303525, 13428626.5625, 13431649.495205315, 13443901.5625, 13444682.348282581, 13444689.0625, 13503921.511850016, 13519759.053411689, 13528721.875, 13535398.4375, 13543313.192954466, 13544500.0, 13550501.634877065, 13580311.754455922, 13604766.057884295, 13606093.75, 13618433.282610217, 13633296.207649969, 13639780.590029702, 13640159.049106866, 13641424.131799238, 13648052.430616321, 13667163.979771087, 13668018.907261087, 13687989.0625, 13697185.478491558, 13701963.900668796, 13706506.858377658, 13732002.574634068, 13737062.404995302, 13814251.39169109, 13815050.651047533, 13821810.530990146, 13864741.949662335, 13869038.130834568, 13883824.887733046, 13975058.383099291, 13975481.156588465, 13976650.0, 13996932.27895246, 14051610.724227138, 14082156.664997417, 14084018.647478078, 14103969.596052472, 14153027.886315973, 14159587.5, 14161369.635444479, 14163904.649949126, 14188772.344246263, 14198632.8125, 14214606.067400185, 14234906.25, 14249517.1875, 14307625.366466269, 14346367.1875, 14384735.76274896, 14396229.491645465, 14399068.064708011, 14411193.768727992, 14416157.454156006, 14510342.71075253, 14523794.130709589, 14523802.568682378, 14527198.03608345, 14527574.897177424, 14531189.0625, 14531380.741754266, 14537823.247602442, 14558066.795164589, 14558140.625, 14558920.880880257, 14560998.185633142, 14569664.49205528, 14569837.5, 14584082.8125, 14585195.218262868, 14586926.388420725, 14602383.45018311, 14629009.17764095, 14631614.0625, 14633251.5625, 14636621.176872237, 14640148.4375, 14643333.391036803, 14647270.3125, 14649575.250072839, 14650106.764898095, 14651208.759641016, 14651806.283849811, 14652698.433304617, 14654650.747817421, 14656126.248415964, 14660923.4375, 14661234.302225193, 14661286.667705933, 14661653.430728221, 14662367.482270038, 14663433.76483039, 14665180.179440254, 14665627.668365255, 14677720.13008306, 14683532.8125, 14684174.088320706, 14748593.154438356, 14748841.668158457, 14752476.342795849, 14752490.625, 14760397.595688593, 14760908.625414563, 14760943.270767478, 14762252.277778186, 14762265.14368632, 14763810.534149975, 14765434.375, 14765448.4375, 14765462.484752452, 14765858.606658138, 14766808.899933342, 14773942.1875, 14784675.0, ...], [82.03812298704078, 23.897073843369736, 5.5475548170367315, 5.7321770410867, 6.7930044723871665, 103.50254621052682, 48.619798535285696, 8.555342334538553, 42.48961419104087, 25.31904232362297, 23.146841267339894, 19.68782173102678, 110.29259132692422, 18.934521097393606, 71.98139548110285, 31.073515666869795, 15.231513392298336, 23.832389855337663, 87.71885078223917, 100.75000507167402, 34.842327604511254, 14.45271860563547, 32.92071353773597, 29.9919598565488, 36.69610283602439, 6.8171952787378585, 19.29297147433988, 29.783123263668696, 8.543195539317715, 90.90825554344968, 10.383157403582029, 12.74421162244161, 8.553965314160266, 5.317482546808846, 7.016576063832631, 5.148652789394583, 103.46140978228304, 12.912181137225017, 56.12434457456136, 8.663698267398697, 23.112134917633167, 5.068998162704071, 50.82269126407056, 68.21485563272115, 13.12571033792936, 23.27670047836992, 71.44893134126119, 24.42976254014496, 34.41678603748053, 46.85190446382725, 30.868543437121907, 30.253335788341374, 11.515027830231185, 29.420108378698668, 22.752033892079876, 31.448782560867926, 10.998098003484115, 78.53868531885622, 10.328395101512932, 8.949986023644714, 104.66838106811704, 18.559583433873424, 26.088875499589303, 86.41442909846707, 16.284072108044196, 10.420082672462899, 29.052885948063462, 19.356637822177923, 36.59395520464656, 9.513199169989718, 17.04840032143926, 26.594062207952344, 15.961239085869563, 23.15306205489397, 20.664211274816655, 56.60580313785761, 15.012508180046703, 5.881762586079686, 23.97258854876242, 12.24755992251158, 24.68306984045476, 26.81213736664041, 94.84691680115111, 5.028432456604893, 41.027368984270794, 46.167538040758686, 47.94441600306275, 52.149835515672045, 36.46987297627054, 16.893004639521774, 20.28223640886239, 42.806109666771306, 28.798279631829796, 5.161667541390312, 16.358271229763325, 17.738850593782217, 43.22046587166702, 73.21899634823667, 76.15486545189698, 26.5890443087417, 36.497561263065904, 98.8856420636156, 97.01418926763162, 16.84047104291118, 21.481404898424874, 96.99649706862445, 68.77641270302443, 22.506174926227033, 138.63022627324955, 14.412611613518289, 18.617621639180335, 23.86768830583308, 26.039059264936256, 11.171421397122977, 114.20041983645663, 64.97661455522947, 67.73552867050543, 8.392727753705959, 20.040079059239545, 21.206269271185718, 11.810153763365626, 39.20519955184494, 59.65415290929093, 7.849158346415027, 17.977297261978826, 43.54021571770661, 6.216137260363643, 6.951930120162348, 12.738440115746, 6.89095826729773, 9.977698236922599, 16.239326621781636, 29.244683078510782, 8.445975797969862, 7.421210052331208, 80.10635221886984, 57.38475023579908, 17.221121441337083, 52.067252199224, 49.74682179144578, 7.135383664357946, 7.958384351287933, 107.31146465794723, 85.45774456065101, 6.652133637341563, 104.53358041463186, 17.00626029066123, 35.50454165011239, 20.863664974867252, 16.7946844267928, 36.25118671533023, 114.76086875389002, 67.25113894671, 23.558521858385415, 27.860814162479592, 46.60012206207788, 24.069982930961874, 20.625587855385856, 67.66262376661336, 85.50947832260917, 44.6666330412171, 165.59547325799142, 15.268028198659481, 16.69185205502644, 44.681769131087414, 25.004736346380042, 17.62682571721456, 30.136133513601713, 35.51793043249083, 36.44153169388501, 26.062801665981468, 26.854508668634644, 190.7613980552813, 24.651428990567076, 18.702422893650418, 33.50482042471064, 9.82134655498658, 52.62344415622175, 13.949616720912914, 46.90691183643342, 20.168186461393702, 30.521673266580752, 5.978738062844616, 48.21181647061518, 10.278976645318325, 5.990563081736745, 25.30016125482744, 125.28888303619948, 8.888637356863518, 15.748401895871856, 76.56871329266731, 155.5990636996208, 13.91372494269103, 77.00948140702656, 26.67228181198421, 21.721872472521973, 8.74291499718297, 40.43743663623116, 67.42781338049608, 16.303887574457, 8.229972523257727, 16.908302841770958, 23.321007304247303, 39.5993392125246, 5.747560774527261, 14.23359225724666, 11.92958820747467, 11.91869056055169, 27.687392467175346, 14.869807488481669, 5.372283284238141, 27.942897376928094, 25.187576067642624, 26.252992149225587, 12.716570219811283, 56.863287629120826, 12.383009604424473, 12.662143225205185, 10.49921431002919, 36.78869341268948, 6.604215548070623, 41.09400494551852, 55.18109358881884, 77.36783706430231, 31.43058690805855, 76.35380189812727, 24.791208206491063, 19.621952156436784, 16.781775645214456, 19.36327961962265, 78.97516362761222, 51.89635815846735, 64.51899327384886, 108.268923591076, 25.915146631914247, 13.908955941982832, 54.00221094450353, 5.269482263640297, 60.322041168354176, 27.94110148197187, 16.67519417781713, 19.665602186815608, 12.17951211117442, 59.245815440007696, 24.31595720667056, 44.66727224461357, 28.874075759820887, 18.947398914215764, 13.248959416837778, 94.20865624675875, 118.83133353155728, 20.83220201256195, 12.437061721160056, 74.21155557134554, 14.983731549056598, 49.81314226929083, 58.90929996752012, 18.368751546291826, 85.29544128463587, 21.4855035369452, 61.148439445166076, 10.279923996637363, 22.22982288631735, 11.189588811811646, 16.49960725413263, 17.4409568392577, 13.086730394233692, 11.591707140481942, 77.62628793483185, 52.681137038467625, 13.582091813771894, 31.711258289805603, 29.435771199220756, 45.476212053369544, 19.744387027691104, 31.665252733844174, 97.67913410711171, 34.53390162348022, 14.326037913076622, 24.41433228610485, 12.14510118483965, 9.054906998225716, 116.36770098246565, 49.57608480109471, 48.97150400746202, 30.045152880595438, 128.41458423141955, 20.232184540780953, 17.12050256894301, 47.62434517255944, 17.361631089299294, 22.909755117764565, 53.53367206258835, 24.61043070189463, 97.2121563241386, 7.688849505646301, 165.55149106452797, 48.82925976940919, 11.782247288964596, 32.804668148806805, 10.855629249375118, 40.4433481051426, 14.617908311717459, 50.60950406488248, 55.0984123029221, 28.594927791776144, 65.1166185547543, 20.248692030079877, 60.78409302592784, 31.70383104221426, 10.56417472238623, 62.542188185606314, 23.710566533544707, 25.240255253024955, 27.691997711544026, 38.87608712295048, 14.08619533386472, 42.63431067940061, 31.873121555646406, 53.63206147149367, 8.36012552386133, 29.354357333739628, 37.198736253303366, 13.414203040226226, 64.36811666958697, 10.922113629563206, 24.871691878687475, 17.956306766821807, 59.31769391296939, 65.71333011628013, 21.10093948467956, 38.50991451782042, 13.972660126603968, 118.21268860798665, 41.958588133684536, 68.25903973304453, 19.465294392584756, 66.78479610200881, 23.094921292631753, 72.1308828266657, 11.045876652518473, 60.216864774074196, 8.188499895546459, 59.409364110650785, 155.30164380934983, 16.013594766662145, 21.86956145834815, 22.639895142057842, 5.857291656321554, 113.69484053587304, 9.579647777734019, 36.150317568226356, 15.581153196016743, 18.46105260772568, 16.803940777917603, 87.09982033272595, 5.442904887172403, 24.944789023184587, 11.408760606950493, 17.02076227201315, 8.08429192582706, 41.44843781236021, 108.01169614522448, 39.73359026927655, 8.04276616325254, 17.883676259315738, 42.46394288382292, 24.081248189417643, 115.90076077506457, 75.35562513877129, 7.941356079400836, 14.396312018948912, 20.683175421702533, 104.00598951919142, 29.04544232373883, 25.230416126233745, 28.70524680936898, 98.28655294781555, 19.505384641904367, 11.752099014450673, 25.6389678589677, 40.487339259546175, 41.927231412659935, 80.20323281740046, 79.5809411925538, 16.648421443351122, 9.268459613782928, 9.605351172220747, 92.27402754048937, 12.072705919744452, 64.2700518611934, 16.28702488402038, 14.168605702822676, 24.960965045128294, 11.727997365716506, 5.742736565578715, 33.91495778781324, 19.168813192431372, 56.31735009078628, 26.121007266688963, 25.024751808516957, 29.337508165459447, 28.363999056784635, 6.489726032504031, 14.377761094538323, 50.64012756846512, 22.614064719964276, 9.533904584977385, 64.63710090746217, 49.33725909875942, 7.31034252418276, 28.107565175708196, 69.54661942112875, 55.44784790492366, 141.1478856384479, 21.61539469061963, 12.81655949740887, 8.173360882469002, 13.782831031732456, 135.25237785128684, 6.071217992222701, 9.645560724497782, 17.852243810543964, 34.19521072591845, 10.76700311858059, 33.74825387014956, 14.6106961596305, 7.560089369756158, 14.788399165821147, 27.62981461704026, 14.143155389840148, 100.1593056464311, 33.34793462810099, 7.485848332141209, 73.75103652682519, 22.31812248083717, 88.13697821380327, 43.575316254097345, 24.591253384674374, 16.8973480500738, 26.788045858654367, 41.282110528514664, 9.023558513949702, 33.97977559180716, 136.90846966794567, 5.166138759441028, 54.03344058789237, 34.60814832310432, 5.677673681561727, 83.84213124474834, 153.1374444953588, 65.76135148483746, 8.35605935710789, 11.67750605746042, 23.47506851191022, 19.9541112151568, 5.14657805434681, 17.99868443412724, 47.59798017180427, 58.976913994181956, 5.336192766374242, 34.75912869260127, 17.797650607681987, 5.42515110612267, 103.05940670427033, 63.351039320096916, 74.6836237803565, 24.42415110875436, 21.30873821455362, 37.039133517710006, 70.65044261785692, 103.07027714489494, 8.558201392871569, 12.195383184443626, 25.82190070941413, 72.90784471288498, 8.986058873296484, 5.844084587191619, 48.24829181824759, 17.527780148669706, 103.47151187229518, 6.9027726681166595, 12.797689717524637, 26.459346475610868, 14.218563374000624, 7.733096557252715, 17.84182272366715, 11.981750218898942, 12.933993354613971, 6.223372119245975, 13.612483582952324, 38.502127613804056, 65.12026045688012, 11.284418099608846, 79.62064269316636, 15.245698371133786, 9.502320970872757, 25.15387012949006, 28.400891055543084, 13.316118364970427, 31.947404464995955, 158.35298487984258, 92.36078100191627, 106.2721972803595, 25.31384333860043, 18.1986339919635, 83.69800153468525, 32.25112568309138, 20.134892968674208, 145.86442011038363, 68.25837497534165, 53.41081710268092, 48.02351947266211, 130.73169532218301, 29.83192318505574, 5.361104811792844, 8.251959635888355, 112.51792811728637, 13.020862347289636, 41.90986665924656, 32.5687326029865, 186.3682558389222, 6.967539869211392, 5.142052059316887, 21.876544215393892, 10.734989862748506, 13.929747794394006, 20.570304855774655, 96.2856645427732, 132.45706937705853, 62.020248920101366, 95.03849913683757, 29.640581863080946, 6.783622959420687, 10.3596076929714, 23.787121634588843, 96.37744727127453, 14.569027360558746, 20.327076424592878, 5.8510362629226345, 240.60541367437253, 102.81401935013534, 11.830969249866262, 7.286523107187409, 6.710584105985401, 12.28215180006914, 69.80261361914415, 36.60569528467804, 19.466153801694055, 80.20440093736718, 137.98562207529454, 29.938179151197613, 70.68849856979043, 54.7217429044879, 26.02342459143337, 17.62752024166077, 93.10941965634139, 5.787073163208089, 45.12414586061354, 26.27889917274959, 104.14331065764212, 60.780242965669636, 124.9850279263818, 54.44959584052748, 59.61979823079204, 35.65738001663822, 23.25263351966136, 11.285818561128439, 30.219589809323363, 57.56754104030299, 189.89960722705354, 7.897894463573807, 37.545494443799576, 138.93770859289583, 28.92595793678273, 65.69901996387013, 40.44950587031949, 5.642848951376373, 55.83568619324978, 24.482712710261996, 25.56227148088232, 58.86343229526557, 9.918480519109902, 10.240297784670428, 26.612003904871056, 78.27757521757599, 48.980996077476405, 104.00029942940043, 73.52978536155106, 14.954204087742065, 127.71866517619947, 95.72415547936988, 46.743340020712886, 33.12895098833045, 30.502038780038244, 9.498337890833014, 103.85691309899127, 86.86851190912563, 14.44567514556881, 31.678522438687306, 77.98910419282082, 86.84902481721423, 27.16312138856282, 11.96969066903408, 44.548469373781955, 54.623601900776265, 22.642935309959736, 84.34857354471788, 9.636188143808996, 19.096138813760508, 7.923396317788151, 10.000656772213258, 9.996357066937428, 41.29212648474149, 19.418509118337102, 69.95076053955535, 101.51770228138466, 27.65449540294611, 86.34558903506964, 58.91003150771029, 25.51060678084975, 29.94249005858897, 132.9555919074108, 16.99395816814007, 111.36061992404225, 49.84614401857091, 61.31550608383197, 28.275241639758345, 39.74255703333707, 83.48191648099821, 23.843814701150624, 74.52472693225975, 36.04446334185125, 120.5373706337611, 77.91551655555772, 96.11975990833807, 18.84874849205234, 54.18825222247119, 32.23925600931902, 69.05306940228107, 199.78622355121135, 20.181954470910267, 13.584016963668171, 7.53627433469891, 30.67242081001523, 55.879838488035006, 76.82671538649991, 22.051598638563856, 49.982833461062256, 54.56275051671426, 28.756369273151485, 40.68183148179147, 68.00537839384421, 5.328747196643122, 73.25856435352955, 26.404171103359204, 5.376524300483672, 37.91286899938541, 25.53224074748036, 33.711009364599576, 17.653208866021867, 70.25733336657974, 88.2442939881049, 65.75618972773667, 21.33786169498189, 126.52897284290972, 67.15400184435288, 179.51610175896874, 31.026233779995668, 36.75152676739673, 9.879557203057994, 34.422161441745295, 32.48318897702751, 32.868689324382046, 149.9481670421574, 86.47381769636918, 8.353989302198247, 117.18439217744866, 26.348802063039386, 14.763787594497588, 35.849393780028024, 15.2351035806251, 14.977339417106219, 36.24061307494487, 25.594391552406407, 15.87070957526841, 40.11278410959834, 226.9429630564359, 122.17324694633088, 29.127102105421095, 24.533778819360066, 15.811889698429345, 53.601753026123745, 78.58576208842923, 79.24749220321453, 39.264357689565465, 42.37110763228343, 23.30141803025689, 31.19107899048079, 146.00648342414001, 54.44747508965942, 9.78201513198437, 126.94655886729907, 61.49804537031389, 37.20852359491854, 15.446438838983369, 8.701280790303816, 29.263510347362242, 77.66417835663046, 29.365576555942422, 6.023881467445485, 31.083144836522482, 31.325387631340977, 25.166387415826428, 94.94075151484233, 12.592804409449291, 35.39046355495168, 63.22768794642181, 68.29699354662112, 84.2058513589871, 26.47703981758479, 36.84753504318155, 8.788384594248674, 57.783224894575454, 11.591167334525332, 67.51462910759852, 51.830412087911526, 63.68234156214348, 37.401359038404294, 13.555028901350175, 7.591921661378636, 10.317473882479051, 5.884351746713451, 71.22191212516034, 20.843777277729256, 99.66602452975201, 58.9664505700973, 8.561731415587335, 23.444567541196637, 55.948141818795925, 31.284635790581163, 41.15677842287276, 15.997014624161213, 29.66850394253909, 78.23005151034161, 6.842748506264007, 24.576785407901035, 9.712113169472923, 16.47731657520718, 28.322929270616306, 53.37780110055946, 13.154350265860105, 28.41250475237335, 27.59791049921637, 8.468435072680286, 27.087469833018503, 36.51915116671542, 7.153839884804659, 6.1475221027071765, 6.637273740687517, 54.51139436633299, 25.205631496669394, 60.39054978464129, 26.96081645359079, 16.818935079683484, 33.83562632226431, 29.50517347461097, 60.01396910592367, 60.631574812391236, 106.19576432318796, 6.494279813158426, 5.650453036854421, 30.124346605327258, 10.49417460559313, 69.40660483523752, 38.269947329042466, 8.322444143894247, 27.26154718537088, 10.8046928757404, 115.98926032287858, 6.879208251867193, 39.49675415515249, 81.13876496997085, 47.32794815088872, 38.48309493049537, 25.862590968902765, 11.894876096890535, 17.055290886699005, 34.290926806248656, 46.37154563508444, 7.402678026435582, 15.70938235089635, 23.63931255723048, 42.44202020369248, 54.34605444353563, 101.96632685841728, 25.12569569384354, 76.22104516640539, 57.85350286729516, 19.734451076543152, 40.296167908268416, 6.099678377806963, 25.22072671769724, 12.59942885112399, 45.5407725219704, 7.53468274103305, 59.734521558726584, 55.34982440563746, 24.632368340975127, 182.28914530022, 6.025947283998612, 90.0621606004737, 124.28927086903228, 88.16876308986951, 54.412361267696376, 31.878135941304915, 20.29924394398526, 21.91940401786453, 13.26160823448064, 6.079335800928904, 103.9957953760626, 6.433566230505597, 51.98605029488779, 142.64903589145408, 59.535764590869775, 68.47074368750839, 14.521253736594737, 26.866650171426734, 98.16902544277431, 17.941802559978314, 7.980017957433338, 6.522524713725376, 103.98560944727129, 148.21490300139067, 40.76036839058168, 23.314425257840725, 6.865526130606268, 26.866169567429164, 34.78829713252287, 66.93979585462185, 10.361246189546096, 13.705511900072853, 7.10665210254125, 46.99128956502382, 73.4519827959643, 63.09649866549223, 6.690811411088027, 8.656144515489785, 33.27015809834913, 5.707921327081729, 160.00944661424273, 27.259000099463556, 13.020150684866254, 57.65907915403171, 58.77986915628644, 5.217918497640361, 14.815260961688352, 28.59845636215261, 152.2681572100643, 98.54650451307114, 9.033319022612456, 72.1345147124302, 5.2953254522313955, 103.0836940848619, 25.937618477407458, 81.23813144367253, 33.99332442068762, 24.308083020701684, 76.11939340807105, 113.60390619622804, 19.05132808241104, 106.5414896509892, 49.57616069447045, 11.833796078195459, 21.08411141946764, 43.54092679605026, 17.40942443376605, 28.374391511380846, 39.747766287104824, 144.9531252027057, 5.966756844292129, 62.08501443605123, 21.445403670714747, 73.89067215224787, 34.054270005237306, 75.8259317158326, 35.94640793486433, 8.123535234330916, 49.68801017807414, 42.98935905520545, 12.41636403307768, 58.55856231570167, 11.242753253725647, 119.75193255478025, 11.879205255447946, 85.66128393022474, 24.117879644356343, 8.824396976434786, 20.033108627582685, 23.425533092403548, 18.467777847188266, 10.191898162112746, 26.988996369855226, 11.38274706631381, 66.38199794670966, 21.911996860545106, 30.835876002092704, 169.52308337656945, 10.364167041567546, 8.236968201810601, 25.554281274330226, 7.857001586036071, 22.479323966891563, 59.26429432524752, 173.4736141423408, 14.530196542559404, 17.67744039070043, 42.5575882204088, 74.32724390391228, 50.834649587943915, 51.594227697992984, 16.80056733733128, 10.971152505827106, 83.56420274356856, 24.566894019359683, 124.16531013430162, 19.891732129876345, 27.802878712965, 8.551355544605812, 74.16898640444882, 25.37589848931403, 76.29927266003762, 32.07304957995371, 9.661765203720213, 65.78273217169681, 32.69329850008291, 53.815118016938655, 90.08982646201848, 15.013375479237277, 23.0330289605216, 18.10027740064302, 58.17253708721171, 7.413700942287383, 7.01978344114903, 5.242276584170304, 64.62553575106129, 16.423042248006062, 114.54441065458758, 62.76797552094759, 36.11265926836611, 34.48815596474681, 7.056780907546351, 65.07491192881655, 91.67832376882228, 39.901040178275416, 36.71643886163675, 13.29662251275121, 6.1570217927429916, 104.64143937102602, 30.58701826879854, 218.56560417170456, 19.72083284929224, 29.521706329410314, 12.170902361370075, 50.58712319094483, 5.408120912523176, 20.994384157041992, 140.25659572415987, 233.90131103461331, 11.121155475082235, 41.564643895702616, 10.669869541592474, 28.960442783991727, 327.0758121643501, 12.49963329700153, 20.480982242732754, 15.31505947160204, 22.917288643818846, 15.463147710344025, 21.936881338656683, 10.854066025782293, 49.12466510942705, 69.85315415856776, 32.849201796580495, 120.59178443741119, 203.76721112975045, 79.26676034163826, 10.025459546429467, 28.981545043762384, 20.655648887734856, 119.62888034298574, 13.377516486134308, 13.598778182211325, 39.20929984159507, 86.4148288182337, 42.27984205682034, 48.88342354067548, 53.71899653327694, 49.454318727196416, 120.94333721675679, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7166567.1875, 7190676.273870116, 7191920.607170682, 7193378.517128852, 7194634.520979669, 7196987.476162372, 7202353.125, 7207712.975861646, 7208810.9375, 7208953.502408549, 7209144.963705017, 7209553.294762152, 7210743.79906026, 7210882.011060998, 7216840.625, 7223810.9375, 7268165.684264948, 7275568.178085273, 7281822.643696694, 7315115.625, 7335690.625, 7375977.990563832, 7380542.1875, 7383612.5, 7385988.109944785, 7386694.013104657, 7386786.747004024, 7413303.125, 7413906.705667058, 7414200.0, 7415482.277507957, 7415752.397854438, 7415783.286078135, 7419205.519022898, 7422158.960424237, 7422283.642798279, 7422454.6875, 7423468.091593591, 7423470.3125, 7423614.713491678, 7423748.085805375, 7423887.505600769, 7424808.922645882, 7424895.3125, 7425111.925184529, 7425474.661960215, 7426976.5625, 7427157.563861699, 7428635.9375, 7430318.75, 7441426.5625, 7442472.176391954, 7443528.359426235, 7444959.375, 7447848.390238488, 7449319.747188868, 7465070.227967049, 7465426.670765881, 7468938.482909768, 7468958.8866236545, 7468967.1875, 7470036.645277036, 7474854.550868973, 7479096.875, 7479986.250156162, 7485016.6821265295, 7485206.25, 7486285.192866451, 7498481.25, 7498484.582451331, 7498504.974705763, 7509590.519157954, 7511442.431569662, 7557098.0892236205, 7559072.8501895955, 7560193.75, 7562361.934050098, 7562825.875902712, 7562905.06757185, 7562981.865031824, 7566486.716677001, 7568020.219521015, 7571283.038718549, 7580421.082216166, 7594741.954059829, 7596960.593509557, 7597689.355100506, 7599688.596677835, 7604183.48888491, 7604184.807425227, 7604226.567549191, 7605439.0625, 7605467.154418598, 7606235.778174926, 7606405.848077879, 7606461.593494381, 7606498.355014986, 7606703.125, 7606712.5, 7606940.944149844, 7610090.3737366125, 7610187.5, 7610707.8125, 7612439.485052332, 7613032.311326798, 7616528.125, 7618040.295465209, 7620049.595893592, 7620885.9375, 7621268.603953865, 7621324.3160284, 7623393.792071438, 7624207.672755244, 7624968.777788371, 7628460.9375, 7629864.617008162, 7629905.712559649, 7630348.632979038, 7630869.653364114, 7631483.845757672, 7631605.084240689, 7631723.406434359, 7633253.614934446, 7638956.882333914, 7640578.813761709, 7643293.75, 7643790.209874464, 7644624.313314499, 7647275.83294369, 7650775.606549721, 7651995.989276308, 7652911.240871992, 7655195.3125, 7660998.727233472, 7663518.217023239, 7664580.714044369, 7664920.631293192, 7666537.992268077, 7668879.6875, 7669074.896059845, 7670209.4277358875, 7673879.010647655, 7674396.471134996, 7674496.477350563, 7676908.790307819, 7676952.024135963, 7676973.890931398, 7677310.9375, 7678480.684499035, 7681241.0003773905, 7682407.706615661, 7682824.279531374, 7683807.83881885, 7684443.434801328, 7684480.3669965295, 7687646.875, 7688049.7245879285, 7688064.03130809, 7689255.067889444, 7693165.625, 7694364.0625, 7694524.718954345, 7694829.770607259, 7696312.894166918, 7696985.8873112025, 7697068.811411767, 7697261.006605942, 7698331.766660022, 7698631.136907592, 7698730.094915823, 7698835.747959118, 7699397.560927019, 7716246.27536568, 7743898.204885349, 7760509.551207954, 7785554.687349381, 7785914.590175365, 7786298.4375, 7788418.462914339, 7789334.375, 7841746.231068687, 7875256.25, 7877869.190835026, 7889504.6875, 7893646.25445802, 7897639.631769862, 7900721.687333354, 7924268.75, 7931300.987931005, 7937911.134229511, 7976971.875, 7985106.3487900095, 8001570.013911299, 8007029.313783746, 8013556.148800589, 8019693.272631559, 8033246.086075529, 8033246.757624151, 8034414.0625, 8040020.288072063, 8042321.766403356, 8042831.68528478, 8043559.389380177, 8043575.778566738, 8044359.997585499, 8057851.363484913, 8060767.646341425, 8060794.203256231, 8064876.518730296, 8065551.5435601035, 8065599.297577945, 8066268.719907396, 8066562.304733363, 8067489.920381898, 8067833.636278542, 8109381.25, 8119031.927816714, 8132758.613260476, 8134199.556904449, 8141226.124475924, 8144616.333575003, 8161540.411512152, 8169340.928343701, 8171748.327633429, 8182976.2901174715, 8184235.673762059, 8189634.730607148, 8189971.511766647, 8199453.536422833, 8205577.639074793, 8205624.707320324, 8206287.5, 8207506.25, 8207653.125, 8208670.164947815, 8216639.723246273, 8217179.6875, 8217218.034372373, 8217379.570140176, 8218669.786118449, 8219123.722365116, 8229754.241305664, 8230989.645171283, 8234257.8125, 8235423.180496896, 8238630.487520441, 8240873.4375, 8249424.200342542, 8249621.346610063, 8261568.521824226, 8289905.001086114, 8290247.3887637295, 8290978.827285337, 8298728.125, 8302907.823533542, 8311024.355256553, 8312457.8125, 8338839.742063672, 8339216.463681795, 8341593.24923813, 8354207.8125, 8370666.567749467, 8396083.134648379, 8397307.851732703, 8397315.335307667, 8397316.155685775, 8398091.597729323, 8398383.090368351, 8398395.3125, 8398912.273607789, 8402083.96590047, 8410398.229054194, 8425101.5625, 8427720.51560234, 8427760.445940057, 8428031.042427089, 8428360.9375, 8429440.625, 8431356.07857515, 8431683.888060262, 8432750.566092245, 8433551.216339434, 8448454.6875, 8453849.678075682, 8454142.1875, 8456498.17362449, 8458212.379358867, 8458399.363572575, 8461903.599243494, 8464642.1875, 8464838.774690645, 8464862.502512163, 8466115.508136291, 8471910.701948106, 8473031.104135787, 8481173.668159373, 8494131.811775425, 8495354.382456843, 8504308.1944434, 8513223.4375, 8513495.131168641, 8528225.0, 8529830.699797872, 8532578.419527292, 8545337.5, 8549279.6875, 8556757.8125, 8559196.240498316, 8559361.449484317, 8560175.0, 8562740.104144564, 8563646.821570544, 8566546.571848312, 8569312.849376481, 8571137.456479462, 8571734.055482462, 8587371.637750588, 8587779.6875, 8587869.50496177, 8587894.590690117, 8588065.76153851, 8592571.875, 8592574.108628428, 8592704.21937601, 8594063.905382283, 8594071.739361707, 8594588.845464887, 8595944.365885237, 8596639.0625, 8596863.941091657, 8597878.17862374, 8597902.924484665, 8598198.157754406, 8612550.0, 8612606.25, 8613596.39968257, 8615553.95697568, 8617385.666401036, 8619534.021863231, 8621127.81020969, 8621776.509509113, 8622904.6875, 8624774.80981209, 8624792.1875, 8626555.024685342, 8627536.19295037, 8628649.53692816, 8629360.545257969, 8629363.068687381, 8632959.375, 8643150.279687261, 8647987.5, 8648640.714325793, 8649217.88080503, 8649789.47813798, 8651352.315906866, 8670496.428059993, 8686741.975561563, 8687449.815351529, 8688078.581094071, 8691194.909329463, 8700639.665343022, 8709582.8125, 8709872.694307495, 8710101.071121054, 8710639.666770108, 8710929.6875, 8711995.037941054, 8712337.5, 8716557.973676827, 8717689.909666188, 8718621.724209085, 8718663.477286143, 8722404.981197929, 8737031.25, 8738397.385720585, 8739799.673477074, 8742198.4375, 8744802.399630414, 8747239.428332258, 8754923.272219652, 8760907.597817592, 8768856.001861528, 8777361.139227517, 8785137.5, 8789753.510742519, 8792120.237109585, 8792773.744640592, 8792809.375, 8793198.96823097, 8793378.05969978, 8793609.688266383, 8794427.906279244, 8806151.146318013, 8807214.415357884, 8807255.238358868, 8808200.0, 8810108.605489613, 8815776.5625, 8848096.740369793, 8850070.106095696, 8852412.5, 8853317.439297274, 8854039.07928744, 8858148.281290207, 8858184.539178003, 8861763.667979684, 8863158.042658176, 8863559.375, 8872351.264382523, 8877931.922932511, 8878899.311003264, 8893071.875, 8894280.681744315, 8895558.248722529, 8898462.872815484, 8900599.302795634, 8901931.029588882, 8902952.78372013, 8903210.433186227, 8903240.461087171, 8903723.787054503, 8906072.474204702, 8909154.202708483, 8910857.203383178, 8922697.36418027, 8924200.92257287, 8930646.754104499, 8931016.90031196, 8931426.21907141, 8939297.358107379, 8943881.25, 8948298.4375, 8948801.225838343, 8961454.6875, 8977461.116111785, 8977573.4375, 8977700.882098595, 8979174.082801802, 8979675.978536766, 8979993.655612266, 8979994.283328887, 8980969.924514906, 8981795.3125, 8981976.280056305, 8982032.845839173, 8982122.52392819, 8982505.985057024, 8983201.095596468, 8984824.619666044, 8985136.331420725, 8986007.328400197, 8986040.754120357, 8990867.512901276, 8995590.30310769, 8995896.205521066, 9010933.549772792, 9012397.902885333, 9013661.35975369, 9013755.878033038, 9014732.644354168, 9017439.813745381, 9018540.499326985, 9018588.180723982, 9033471.473651227, 9033971.875, 9034523.4375, 9035361.583553385, 9035476.224918317, 9035775.166312605, 9041082.276407883, 9043768.101174513, 9046980.168098064, 9047625.590268975, 9067121.96548929, 9068141.929025043, 9073132.373742813, 9079412.898738379, 9081028.125, 9093863.045506, 9101106.94746807, 9111541.284724023, 9112211.795035725, 9115805.798099823, 9116925.414210493, 9130342.53281427, 9138123.819406211, 9143731.27690004, 9147875.912822895, 9163765.27005979, 9171619.913856875, 9181113.012527667, 9184736.401611852, 9192581.347997705, 9192584.375, 9240359.45258223, 9257623.632948685, 9257648.905602435, 9283497.787356205, 9337751.05887112, 9338387.5, 9349829.880337687, 9350440.625, 9358253.650582984, 9362406.063251395, 9364125.653757915, 9374540.625, 9378755.472072529, 9379944.558430946, 9418946.689053679, 9418971.242411887, 9426769.582026372, 9428764.0625, 9429242.370645182, 9436929.6875, 9438134.924344203, 9438573.371458694, 9438915.476563225, 9439461.884653017, 9439509.375, 9439660.9375, 9440067.1875, 9440854.067744073, 9443444.28267686, 9444252.662598144, 9444555.983331455, 9446693.456557136, 9447158.777235761, 9463862.23964554, 9467485.073274586, 9470045.3125, 9471981.25, 9488084.169550339, 9489571.974933932, 9489660.383428557, 9531448.14034273, 9532755.823836075, 9532856.148717644, 9532866.562088262, 9532955.17606221, 9572124.321204834, 9578843.75, 9617836.345206259, 9619758.405322837, 9632809.10400456, 9655655.318769699, 9656675.073866837, 9691274.528292527, 9701618.019586466, 9702704.125732405, 9752155.476143857, 9767146.875, 9769803.125, 9806800.082573704, 9828383.30883586, 9829775.263756588, 9832600.972008755, 9836507.442103539, 9863936.796430403, 9869646.750116449, 9889686.434205307, 9988157.198692437, 10020714.078748193, 10053925.0, 10071145.403188994, 10071903.125, 10105663.72247809, 10109745.411353542, 10166285.9375, 10167030.676758872, 10167678.313811783, 10167678.872280978, 10168229.6875, 10190326.31371541, 10200959.375, 10202584.375, 10223198.4375, 10223250.50919209, 10237731.882337172, 10272604.175617235, 10308146.704714596, 10308718.330509959, 10308741.246287445, 10312302.471927611, 10313012.395225745, 10317953.125, 10346785.9375, 10346879.6875, 10356622.667609096, 10357109.378326612, 10359045.3125, 10364009.156159807, 10369395.3125, 10369591.50496067, 10370665.695142016, 10444603.316041235, 10483049.46802346, 10483597.920890156, 10483607.676031597, 10484426.5625, 10484642.1875, 10486479.6875, 10488547.491421176, 10523214.541757168, 10523598.4375, 10524920.938865071, 10525094.920525694, 10528250.52517134, 10535501.902225625, 10536025.141556999, 10538230.4936838, 10580233.510477072, 10585331.944019655, 10626359.375, 10626377.388425458, 10628865.625, 10632259.08520941, 10655585.459797956, 10656567.1875, 10669939.0625, 10670677.95132262, 10670796.875, 10670803.62968342, 10681770.763667852, 10692860.121934947, 10708590.625, 10709953.125, 10709984.36226082, 10726795.3125, 10730558.108105712, 10735473.144751586, 10787845.3125, 10806242.1875, 10839983.652254296, 10842982.8125, 10851739.759220371, 10854586.686614374, 10893281.25, 10893485.718110908, 10911259.85999906, 11021688.705410965, 11024191.545188127, 11039590.881775066, 11086134.185981756, 11100635.9375, 11100643.75, 11136862.5, 11137319.860909998, 11189250.0, 11189913.92021518, 11211932.429839866, 11216215.625, 11286743.75, 11297363.672922734, 11329654.6875, 11368750.431696156, 11370777.538720012, 11379842.1875, 11379957.5985116, 11421596.875, 11421783.379074698, 11421823.4375, 11441435.804906007, 11442636.934574408, 11443993.958194787, 11445467.237216882, 11479082.8125, 11486033.829005655, 11511615.341236727, 11520011.017246922, 11542947.459169336, 11577868.189723866, 11632029.30719113, 11639862.04564251, 11645933.83823531, 11659838.667411452, 11696900.125338065, 11700377.560032086, 11784983.577044697, 11787817.14007789, 11876659.375, 11886230.214327717, 11901696.884368766, 11909135.9375, 11978519.545160167, 12008048.661647221, 12010320.3125, 12016506.701124739, 12019480.76121587, 12047100.0, 12067881.008924544, 12079126.77353452, 12119389.659753932, 12138370.11455953, 12146188.640935892, 12200446.875, 12200753.295176804, 12253294.976490686, 12271344.925556097, 12277103.125, 12301974.074085213, 12312530.176320128, 12353793.157886628, 12353803.096651945, 12356239.0625, 12386426.688953472, 12386646.022203442, 12393644.1744153, 12396943.834154738, 12417353.125, 12424971.23396928, 12426426.5625, 12426565.625, 12428466.99079385, 12443171.738280013, 12466977.333496375, 12478788.47874759, 12479259.208446207, 12480172.724835059, 12487318.75, 12497905.491558198, 12500634.21585366, 12504843.029466804, 12510709.403624414, 12510743.734222995, 12517320.3125, 12522688.928869447, 12526809.375, 12529769.076811949, 12558991.769031338, 12560328.093604116, 12571877.536417898, 12578324.345339583, 12614242.035147088, 12626169.744848052, 12629681.496654091, 12636725.074378055, 12641814.548937181, 12645076.7438199, 12663598.376471072, 12691151.5625, 12692245.3125, 12693891.15843564, 12712059.375, 12712764.0625, 12714525.384370593, 12717921.637028767, 12720278.54336128, 12724469.101966184, 12728658.139046077, 12729917.1875, 12731765.061088381, 12735675.290920855, 12735977.417297278, 12761555.016260272, 12762584.627921399, 12766225.0, 12766368.871793885, 12766881.802674128, 12767083.708015503, 12768629.6875, 12769735.743457703, 12805468.75, 12806268.665648619, 12806859.793480957, 12832901.466375189, 12842957.8125, 12846776.5625, 12885420.3125, 12886078.125, 12887428.17070485, 12887510.014887642, 12889642.651169265, 12896593.302985841, 12901609.00186378, 12908828.843484186, 12949942.25471438, 12951581.182757435, 12998026.34552584, 13005079.609681973, 13007364.615675123, 13007662.5, 13010239.630987514, 13011480.101339508, 13011756.25, 13012432.301397718, 13012652.171128085, 13017523.263506874, 13022657.8125, 13033554.6875, 13033794.721712342, 13034159.562858423, 13034338.753726263, 13034790.108080672, 13035398.31121837, 13036212.709412184, 13036248.936453111, 13046349.630197428, 13050764.0625, 13051739.379015792, 13052653.155356186, 13056118.86061632, 13058603.50852641, 13066835.148861539, 13071023.4375, 13091368.556392847, 13093026.364993282, 13093226.5625, 13094187.266021261, 13104389.0625, 13105668.130349124, 13107124.044357711, 13107476.498089744, 13108817.1875, 13109673.639448805, 13109678.125, 13109709.735565692, 13119208.916698819, 13120826.116805246, 13120829.602805547, 13122201.5625, 13122209.02483721, 13122987.5, 13124109.86526543, 13126229.6875, 13140450.0, 13147772.544627808, 13148523.851452136, 13148864.41103576, 13148925.483751457, 13148991.559017774, 13151531.472374637, 13151813.07954008, 13158886.225696173, 13159423.4375, 13160941.852557067, 13161112.990398942, 13161372.699729139, 13163101.895502234, 13163615.625, 13186029.134760855, 13191010.570442004, 13192331.19339924, 13196882.348891763, 13199862.9145095, 13202220.081765356, 13223173.062130114, 13230766.264067836, 13232666.822060192, 13232942.205763424, 13236318.75, 13244993.682614414, 13247738.446874563, 13249221.875, 13249975.0, 13271830.247150132, 13272364.028978176, 13272876.5625, 13273320.3125, 13273940.625, 13274844.937597036, 13274868.75, 13274918.886599524, 13275127.828669168, 13280941.929722052, 13282414.598104887, 13302848.467535125, 13314841.92991461, 13315569.311629646, 13317705.83660799, 13334548.66616917, 13338555.657143, 13339240.625, 13340501.971690731, 13368398.676523458, 13389409.599339452, 13392420.83775465, 13392959.134509228, 13393150.0, 13393835.624324646, 13397095.621303525, 13428626.5625, 13431649.495205315, 13443901.5625, 13444682.348282581, 13444689.0625, 13503921.511850016, 13519759.053411689, 13528721.875, 13535398.4375, 13543313.192954466, 13544500.0, 13550501.634877065, 13580311.754455922, 13604766.057884295, 13606093.75, 13618433.282610217, 13633296.207649969, 13639780.590029702, 13640159.049106866, 13641424.131799238, 13648052.430616321, 13667163.979771087, 13668018.907261087, 13687989.0625, 13697185.478491558, 13701963.900668796, 13706506.858377658, 13732002.574634068, 13737062.404995302, 13814251.39169109, 13815050.651047533, 13821810.530990146, 13864741.949662335, 13869038.130834568, 13883824.887733046, 13975058.383099291, 13975481.156588465, 13976650.0, 13996932.27895246, 14051610.724227138, 14082156.664997417, 14084018.647478078, 14103969.596052472, 14153027.886315973, 14159587.5, 14161369.635444479, 14163904.649949126, 14188772.344246263, 14198632.8125, 14214606.067400185, 14234906.25, 14249517.1875, 14307625.366466269, 14346367.1875, 14384735.76274896, 14396229.491645465, 14399068.064708011, 14411193.768727992, 14416157.454156006, 14510342.71075253, 14523794.130709589, 14523802.568682378, 14527198.03608345, 14527574.897177424, 14531189.0625, 14531380.741754266, 14537823.247602442, 14558066.795164589, 14558140.625, 14558920.880880257, 14560998.185633142, 14569664.49205528, 14569837.5, 14584082.8125, 14585195.218262868, 14586926.388420725, 14602383.45018311, 14629009.17764095, 14631614.0625, 14633251.5625, 14636621.176872237, 14640148.4375, 14643333.391036803, 14647270.3125, 14649575.250072839, 14650106.764898095, 14651208.759641016, 14651806.283849811, 14652698.433304617, 14654650.747817421, 14656126.248415964, 14660923.4375, 14661234.302225193, 14661286.667705933, 14661653.430728221, 14662367.482270038, 14663433.76483039, 14665180.179440254, 14665627.668365255, 14677720.13008306, 14683532.8125, 14684174.088320706, 14748593.154438356, 14748841.668158457, 14752476.342795849, 14752490.625, 14760397.595688593, 14760908.625414563, 14760943.270767478, 14762252.277778186, 14762265.14368632, 14763810.534149975, 14765434.375, 14765448.4375, 14765462.484752452, 14765858.606658138, 14766808.899933342, 14773942.1875, 14784675.0, ...], [82.03812298704078, 23.897073843369736, 5.5475548170367315, 5.7321770410867, 6.7930044723871665, 103.50254621052682, 48.619798535285696, 8.555342334538553, 42.48961419104087, 25.31904232362297, 23.146841267339894, 19.68782173102678, 110.29259132692422, 18.934521097393606, 71.98139548110285, 31.073515666869795, 15.231513392298336, 23.832389855337663, 87.71885078223917, 100.75000507167402, 34.842327604511254, 14.45271860563547, 32.92071353773597, 29.9919598565488, 36.69610283602439, 6.8171952787378585, 19.29297147433988, 29.783123263668696, 8.543195539317715, 90.90825554344968, 10.383157403582029, 12.74421162244161, 8.553965314160266, 5.317482546808846, 7.016576063832631, 5.148652789394583, 103.46140978228304, 12.912181137225017, 56.12434457456136, 8.663698267398697, 23.112134917633167, 5.068998162704071, 50.82269126407056, 68.21485563272115, 13.12571033792936, 23.27670047836992, 71.44893134126119, 24.42976254014496, 34.41678603748053, 46.85190446382725, 30.868543437121907, 30.253335788341374, 11.515027830231185, 29.420108378698668, 22.752033892079876, 31.448782560867926, 10.998098003484115, 78.53868531885622, 10.328395101512932, 8.949986023644714, 104.66838106811704, 18.559583433873424, 26.088875499589303, 86.41442909846707, 16.284072108044196, 10.420082672462899, 29.052885948063462, 19.356637822177923, 36.59395520464656, 9.513199169989718, 17.04840032143926, 26.594062207952344, 15.961239085869563, 23.15306205489397, 20.664211274816655, 56.60580313785761, 15.012508180046703, 5.881762586079686, 23.97258854876242, 12.24755992251158, 24.68306984045476, 26.81213736664041, 94.84691680115111, 5.028432456604893, 41.027368984270794, 46.167538040758686, 47.94441600306275, 52.149835515672045, 36.46987297627054, 16.893004639521774, 20.28223640886239, 42.806109666771306, 28.798279631829796, 5.161667541390312, 16.358271229763325, 17.738850593782217, 43.22046587166702, 73.21899634823667, 76.15486545189698, 26.5890443087417, 36.497561263065904, 98.8856420636156, 97.01418926763162, 16.84047104291118, 21.481404898424874, 96.99649706862445, 68.77641270302443, 22.506174926227033, 138.63022627324955, 14.412611613518289, 18.617621639180335, 23.86768830583308, 26.039059264936256, 11.171421397122977, 114.20041983645663, 64.97661455522947, 67.73552867050543, 8.392727753705959, 20.040079059239545, 21.206269271185718, 11.810153763365626, 39.20519955184494, 59.65415290929093, 7.849158346415027, 17.977297261978826, 43.54021571770661, 6.216137260363643, 6.951930120162348, 12.738440115746, 6.89095826729773, 9.977698236922599, 16.239326621781636, 29.244683078510782, 8.445975797969862, 7.421210052331208, 80.10635221886984, 57.38475023579908, 17.221121441337083, 52.067252199224, 49.74682179144578, 7.135383664357946, 7.958384351287933, 107.31146465794723, 85.45774456065101, 6.652133637341563, 104.53358041463186, 17.00626029066123, 35.50454165011239, 20.863664974867252, 16.7946844267928, 36.25118671533023, 114.76086875389002, 67.25113894671, 23.558521858385415, 27.860814162479592, 46.60012206207788, 24.069982930961874, 20.625587855385856, 67.66262376661336, 85.50947832260917, 44.6666330412171, 165.59547325799142, 15.268028198659481, 16.69185205502644, 44.681769131087414, 25.004736346380042, 17.62682571721456, 30.136133513601713, 35.51793043249083, 36.44153169388501, 26.062801665981468, 26.854508668634644, 190.7613980552813, 24.651428990567076, 18.702422893650418, 33.50482042471064, 9.82134655498658, 52.62344415622175, 13.949616720912914, 46.90691183643342, 20.168186461393702, 30.521673266580752, 5.978738062844616, 48.21181647061518, 10.278976645318325, 5.990563081736745, 25.30016125482744, 125.28888303619948, 8.888637356863518, 15.748401895871856, 76.56871329266731, 155.5990636996208, 13.91372494269103, 77.00948140702656, 26.67228181198421, 21.721872472521973, 8.74291499718297, 40.43743663623116, 67.42781338049608, 16.303887574457, 8.229972523257727, 16.908302841770958, 23.321007304247303, 39.5993392125246, 5.747560774527261, 14.23359225724666, 11.92958820747467, 11.91869056055169, 27.687392467175346, 14.869807488481669, 5.372283284238141, 27.942897376928094, 25.187576067642624, 26.252992149225587, 12.716570219811283, 56.863287629120826, 12.383009604424473, 12.662143225205185, 10.49921431002919, 36.78869341268948, 6.604215548070623, 41.09400494551852, 55.18109358881884, 77.36783706430231, 31.43058690805855, 76.35380189812727, 24.791208206491063, 19.621952156436784, 16.781775645214456, 19.36327961962265, 78.97516362761222, 51.89635815846735, 64.51899327384886, 108.268923591076, 25.915146631914247, 13.908955941982832, 54.00221094450353, 5.269482263640297, 60.322041168354176, 27.94110148197187, 16.67519417781713, 19.665602186815608, 12.17951211117442, 59.245815440007696, 24.31595720667056, 44.66727224461357, 28.874075759820887, 18.947398914215764, 13.248959416837778, 94.20865624675875, 118.83133353155728, 20.83220201256195, 12.437061721160056, 74.21155557134554, 14.983731549056598, 49.81314226929083, 58.90929996752012, 18.368751546291826, 85.29544128463587, 21.4855035369452, 61.148439445166076, 10.279923996637363, 22.22982288631735, 11.189588811811646, 16.49960725413263, 17.4409568392577, 13.086730394233692, 11.591707140481942, 77.62628793483185, 52.681137038467625, 13.582091813771894, 31.711258289805603, 29.435771199220756, 45.476212053369544, 19.744387027691104, 31.665252733844174, 97.67913410711171, 34.53390162348022, 14.326037913076622, 24.41433228610485, 12.14510118483965, 9.054906998225716, 116.36770098246565, 49.57608480109471, 48.97150400746202, 30.045152880595438, 128.41458423141955, 20.232184540780953, 17.12050256894301, 47.62434517255944, 17.361631089299294, 22.909755117764565, 53.53367206258835, 24.61043070189463, 97.2121563241386, 7.688849505646301, 165.55149106452797, 48.82925976940919, 11.782247288964596, 32.804668148806805, 10.855629249375118, 40.4433481051426, 14.617908311717459, 50.60950406488248, 55.0984123029221, 28.594927791776144, 65.1166185547543, 20.248692030079877, 60.78409302592784, 31.70383104221426, 10.56417472238623, 62.542188185606314, 23.710566533544707, 25.240255253024955, 27.691997711544026, 38.87608712295048, 14.08619533386472, 42.63431067940061, 31.873121555646406, 53.63206147149367, 8.36012552386133, 29.354357333739628, 37.198736253303366, 13.414203040226226, 64.36811666958697, 10.922113629563206, 24.871691878687475, 17.956306766821807, 59.31769391296939, 65.71333011628013, 21.10093948467956, 38.50991451782042, 13.972660126603968, 118.21268860798665, 41.958588133684536, 68.25903973304453, 19.465294392584756, 66.78479610200881, 23.094921292631753, 72.1308828266657, 11.045876652518473, 60.216864774074196, 8.188499895546459, 59.409364110650785, 155.30164380934983, 16.013594766662145, 21.86956145834815, 22.639895142057842, 5.857291656321554, 113.69484053587304, 9.579647777734019, 36.150317568226356, 15.581153196016743, 18.46105260772568, 16.803940777917603, 87.09982033272595, 5.442904887172403, 24.944789023184587, 11.408760606950493, 17.02076227201315, 8.08429192582706, 41.44843781236021, 108.01169614522448, 39.73359026927655, 8.04276616325254, 17.883676259315738, 42.46394288382292, 24.081248189417643, 115.90076077506457, 75.35562513877129, 7.941356079400836, 14.396312018948912, 20.683175421702533, 104.00598951919142, 29.04544232373883, 25.230416126233745, 28.70524680936898, 98.28655294781555, 19.505384641904367, 11.752099014450673, 25.6389678589677, 40.487339259546175, 41.927231412659935, 80.20323281740046, 79.5809411925538, 16.648421443351122, 9.268459613782928, 9.605351172220747, 92.27402754048937, 12.072705919744452, 64.2700518611934, 16.28702488402038, 14.168605702822676, 24.960965045128294, 11.727997365716506, 5.742736565578715, 33.91495778781324, 19.168813192431372, 56.31735009078628, 26.121007266688963, 25.024751808516957, 29.337508165459447, 28.363999056784635, 6.489726032504031, 14.377761094538323, 50.64012756846512, 22.614064719964276, 9.533904584977385, 64.63710090746217, 49.33725909875942, 7.31034252418276, 28.107565175708196, 69.54661942112875, 55.44784790492366, 141.1478856384479, 21.61539469061963, 12.81655949740887, 8.173360882469002, 13.782831031732456, 135.25237785128684, 6.071217992222701, 9.645560724497782, 17.852243810543964, 34.19521072591845, 10.76700311858059, 33.74825387014956, 14.6106961596305, 7.560089369756158, 14.788399165821147, 27.62981461704026, 14.143155389840148, 100.1593056464311, 33.34793462810099, 7.485848332141209, 73.75103652682519, 22.31812248083717, 88.13697821380327, 43.575316254097345, 24.591253384674374, 16.8973480500738, 26.788045858654367, 41.282110528514664, 9.023558513949702, 33.97977559180716, 136.90846966794567, 5.166138759441028, 54.03344058789237, 34.60814832310432, 5.677673681561727, 83.84213124474834, 153.1374444953588, 65.76135148483746, 8.35605935710789, 11.67750605746042, 23.47506851191022, 19.9541112151568, 5.14657805434681, 17.99868443412724, 47.59798017180427, 58.976913994181956, 5.336192766374242, 34.75912869260127, 17.797650607681987, 5.42515110612267, 103.05940670427033, 63.351039320096916, 74.6836237803565, 24.42415110875436, 21.30873821455362, 37.039133517710006, 70.65044261785692, 103.07027714489494, 8.558201392871569, 12.195383184443626, 25.82190070941413, 72.90784471288498, 8.986058873296484, 5.844084587191619, 48.24829181824759, 17.527780148669706, 103.47151187229518, 6.9027726681166595, 12.797689717524637, 26.459346475610868, 14.218563374000624, 7.733096557252715, 17.84182272366715, 11.981750218898942, 12.933993354613971, 6.223372119245975, 13.612483582952324, 38.502127613804056, 65.12026045688012, 11.284418099608846, 79.62064269316636, 15.245698371133786, 9.502320970872757, 25.15387012949006, 28.400891055543084, 13.316118364970427, 31.947404464995955, 158.35298487984258, 92.36078100191627, 106.2721972803595, 25.31384333860043, 18.1986339919635, 83.69800153468525, 32.25112568309138, 20.134892968674208, 145.86442011038363, 68.25837497534165, 53.41081710268092, 48.02351947266211, 130.73169532218301, 29.83192318505574, 5.361104811792844, 8.251959635888355, 112.51792811728637, 13.020862347289636, 41.90986665924656, 32.5687326029865, 186.3682558389222, 6.967539869211392, 5.142052059316887, 21.876544215393892, 10.734989862748506, 13.929747794394006, 20.570304855774655, 96.2856645427732, 132.45706937705853, 62.020248920101366, 95.03849913683757, 29.640581863080946, 6.783622959420687, 10.3596076929714, 23.787121634588843, 96.37744727127453, 14.569027360558746, 20.327076424592878, 5.8510362629226345, 240.60541367437253, 102.81401935013534, 11.830969249866262, 7.286523107187409, 6.710584105985401, 12.28215180006914, 69.80261361914415, 36.60569528467804, 19.466153801694055, 80.20440093736718, 137.98562207529454, 29.938179151197613, 70.68849856979043, 54.7217429044879, 26.02342459143337, 17.62752024166077, 93.10941965634139, 5.787073163208089, 45.12414586061354, 26.27889917274959, 104.14331065764212, 60.780242965669636, 124.9850279263818, 54.44959584052748, 59.61979823079204, 35.65738001663822, 23.25263351966136, 11.285818561128439, 30.219589809323363, 57.56754104030299, 189.89960722705354, 7.897894463573807, 37.545494443799576, 138.93770859289583, 28.92595793678273, 65.69901996387013, 40.44950587031949, 5.642848951376373, 55.83568619324978, 24.482712710261996, 25.56227148088232, 58.86343229526557, 9.918480519109902, 10.240297784670428, 26.612003904871056, 78.27757521757599, 48.980996077476405, 104.00029942940043, 73.52978536155106, 14.954204087742065, 127.71866517619947, 95.72415547936988, 46.743340020712886, 33.12895098833045, 30.502038780038244, 9.498337890833014, 103.85691309899127, 86.86851190912563, 14.44567514556881, 31.678522438687306, 77.98910419282082, 86.84902481721423, 27.16312138856282, 11.96969066903408, 44.548469373781955, 54.623601900776265, 22.642935309959736, 84.34857354471788, 9.636188143808996, 19.096138813760508, 7.923396317788151, 10.000656772213258, 9.996357066937428, 41.29212648474149, 19.418509118337102, 69.95076053955535, 101.51770228138466, 27.65449540294611, 86.34558903506964, 58.91003150771029, 25.51060678084975, 29.94249005858897, 132.9555919074108, 16.99395816814007, 111.36061992404225, 49.84614401857091, 61.31550608383197, 28.275241639758345, 39.74255703333707, 83.48191648099821, 23.843814701150624, 74.52472693225975, 36.04446334185125, 120.5373706337611, 77.91551655555772, 96.11975990833807, 18.84874849205234, 54.18825222247119, 32.23925600931902, 69.05306940228107, 199.78622355121135, 20.181954470910267, 13.584016963668171, 7.53627433469891, 30.67242081001523, 55.879838488035006, 76.82671538649991, 22.051598638563856, 49.982833461062256, 54.56275051671426, 28.756369273151485, 40.68183148179147, 68.00537839384421, 5.328747196643122, 73.25856435352955, 26.404171103359204, 5.376524300483672, 37.91286899938541, 25.53224074748036, 33.711009364599576, 17.653208866021867, 70.25733336657974, 88.2442939881049, 65.75618972773667, 21.33786169498189, 126.52897284290972, 67.15400184435288, 179.51610175896874, 31.026233779995668, 36.75152676739673, 9.879557203057994, 34.422161441745295, 32.48318897702751, 32.868689324382046, 149.9481670421574, 86.47381769636918, 8.353989302198247, 117.18439217744866, 26.348802063039386, 14.763787594497588, 35.849393780028024, 15.2351035806251, 14.977339417106219, 36.24061307494487, 25.594391552406407, 15.87070957526841, 40.11278410959834, 226.9429630564359, 122.17324694633088, 29.127102105421095, 24.533778819360066, 15.811889698429345, 53.601753026123745, 78.58576208842923, 79.24749220321453, 39.264357689565465, 42.37110763228343, 23.30141803025689, 31.19107899048079, 146.00648342414001, 54.44747508965942, 9.78201513198437, 126.94655886729907, 61.49804537031389, 37.20852359491854, 15.446438838983369, 8.701280790303816, 29.263510347362242, 77.66417835663046, 29.365576555942422, 6.023881467445485, 31.083144836522482, 31.325387631340977, 25.166387415826428, 94.94075151484233, 12.592804409449291, 35.39046355495168, 63.22768794642181, 68.29699354662112, 84.2058513589871, 26.47703981758479, 36.84753504318155, 8.788384594248674, 57.783224894575454, 11.591167334525332, 67.51462910759852, 51.830412087911526, 63.68234156214348, 37.401359038404294, 13.555028901350175, 7.591921661378636, 10.317473882479051, 5.884351746713451, 71.22191212516034, 20.843777277729256, 99.66602452975201, 58.9664505700973, 8.561731415587335, 23.444567541196637, 55.948141818795925, 31.284635790581163, 41.15677842287276, 15.997014624161213, 29.66850394253909, 78.23005151034161, 6.842748506264007, 24.576785407901035, 9.712113169472923, 16.47731657520718, 28.322929270616306, 53.37780110055946, 13.154350265860105, 28.41250475237335, 27.59791049921637, 8.468435072680286, 27.087469833018503, 36.51915116671542, 7.153839884804659, 6.1475221027071765, 6.637273740687517, 54.51139436633299, 25.205631496669394, 60.39054978464129, 26.96081645359079, 16.818935079683484, 33.83562632226431, 29.50517347461097, 60.01396910592367, 60.631574812391236, 106.19576432318796, 6.494279813158426, 5.650453036854421, 30.124346605327258, 10.49417460559313, 69.40660483523752, 38.269947329042466, 8.322444143894247, 27.26154718537088, 10.8046928757404, 115.98926032287858, 6.879208251867193, 39.49675415515249, 81.13876496997085, 47.32794815088872, 38.48309493049537, 25.862590968902765, 11.894876096890535, 17.055290886699005, 34.290926806248656, 46.37154563508444, 7.402678026435582, 15.70938235089635, 23.63931255723048, 42.44202020369248, 54.34605444353563, 101.96632685841728, 25.12569569384354, 76.22104516640539, 57.85350286729516, 19.734451076543152, 40.296167908268416, 6.099678377806963, 25.22072671769724, 12.59942885112399, 45.5407725219704, 7.53468274103305, 59.734521558726584, 55.34982440563746, 24.632368340975127, 182.28914530022, 6.025947283998612, 90.0621606004737, 124.28927086903228, 88.16876308986951, 54.412361267696376, 31.878135941304915, 20.29924394398526, 21.91940401786453, 13.26160823448064, 6.079335800928904, 103.9957953760626, 6.433566230505597, 51.98605029488779, 142.64903589145408, 59.535764590869775, 68.47074368750839, 14.521253736594737, 26.866650171426734, 98.16902544277431, 17.941802559978314, 7.980017957433338, 6.522524713725376, 103.98560944727129, 148.21490300139067, 40.76036839058168, 23.314425257840725, 6.865526130606268, 26.866169567429164, 34.78829713252287, 66.93979585462185, 10.361246189546096, 13.705511900072853, 7.10665210254125, 46.99128956502382, 73.4519827959643, 63.09649866549223, 6.690811411088027, 8.656144515489785, 33.27015809834913, 5.707921327081729, 160.00944661424273, 27.259000099463556, 13.020150684866254, 57.65907915403171, 58.77986915628644, 5.217918497640361, 14.815260961688352, 28.59845636215261, 152.2681572100643, 98.54650451307114, 9.033319022612456, 72.1345147124302, 5.2953254522313955, 103.0836940848619, 25.937618477407458, 81.23813144367253, 33.99332442068762, 24.308083020701684, 76.11939340807105, 113.60390619622804, 19.05132808241104, 106.5414896509892, 49.57616069447045, 11.833796078195459, 21.08411141946764, 43.54092679605026, 17.40942443376605, 28.374391511380846, 39.747766287104824, 144.9531252027057, 5.966756844292129, 62.08501443605123, 21.445403670714747, 73.89067215224787, 34.054270005237306, 75.8259317158326, 35.94640793486433, 8.123535234330916, 49.68801017807414, 42.98935905520545, 12.41636403307768, 58.55856231570167, 11.242753253725647, 119.75193255478025, 11.879205255447946, 85.66128393022474, 24.117879644356343, 8.824396976434786, 20.033108627582685, 23.425533092403548, 18.467777847188266, 10.191898162112746, 26.988996369855226, 11.38274706631381, 66.38199794670966, 21.911996860545106, 30.835876002092704, 169.52308337656945, 10.364167041567546, 8.236968201810601, 25.554281274330226, 7.857001586036071, 22.479323966891563, 59.26429432524752, 173.4736141423408, 14.530196542559404, 17.67744039070043, 42.5575882204088, 74.32724390391228, 50.834649587943915, 51.594227697992984, 16.80056733733128, 10.971152505827106, 83.56420274356856, 24.566894019359683, 124.16531013430162, 19.891732129876345, 27.802878712965, 8.551355544605812, 74.16898640444882, 25.37589848931403, 76.29927266003762, 32.07304957995371, 9.661765203720213, 65.78273217169681, 32.69329850008291, 53.815118016938655, 90.08982646201848, 15.013375479237277, 23.0330289605216, 18.10027740064302, 58.17253708721171, 7.413700942287383, 7.01978344114903, 5.242276584170304, 64.62553575106129, 16.423042248006062, 114.54441065458758, 62.76797552094759, 36.11265926836611, 34.48815596474681, 7.056780907546351, 65.07491192881655, 91.67832376882228, 39.901040178275416, 36.71643886163675, 13.29662251275121, 6.1570217927429916, 104.64143937102602, 30.58701826879854, 218.56560417170456, 19.72083284929224, 29.521706329410314, 12.170902361370075, 50.58712319094483, 5.408120912523176, 20.994384157041992, 140.25659572415987, 233.90131103461331, 11.121155475082235, 41.564643895702616, 10.669869541592474, 28.960442783991727, 327.0758121643501, 12.49963329700153, 20.480982242732754, 15.31505947160204, 22.917288643818846, 15.463147710344025, 21.936881338656683, 10.854066025782293, 49.12466510942705, 69.85315415856776, 32.849201796580495, 120.59178443741119, 203.76721112975045, 79.26676034163826, 10.025459546429467, 28.981545043762384, 20.655648887734856, 119.62888034298574, 13.377516486134308, 13.598778182211325, 39.20929984159507, 86.4148288182337, 42.27984205682034, 48.88342354067548, 53.71899653327694, 49.454318727196416, 120.94333721675679, ...])
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);
([7166567.1875, 7190676.273870116, 7191920.607170682, 7193378.517128852, 7194634.520979669, 7196987.476162372, 7202353.125, 7207712.975861646, 7208810.9375, 7208953.502408549, 7209144.963705017, 7209553.294762152, 7210743.79906026, 7210882.011060998, 7216840.625, 7223810.9375, 7268165.684264948, 7275568.178085273, 7281822.643696694, 7315115.625, 7335690.625, 7375977.990563832, 7380542.1875, 7383612.5, 7385988.109944785, 7386694.013104657, 7386786.747004024, 7413303.125, 7413906.705667058, 7414200.0, 7415482.277507957, 7415752.397854438, 7415783.286078135, 7419205.519022898, 7422158.960424237, 7422283.642798279, 7422454.6875, 7423468.091593591, 7423470.3125, 7423614.713491678, 7423748.085805375, 7423887.505600769, 7424808.922645882, 7424895.3125, 7425111.925184529, 7425474.661960215, 7426976.5625, 7427157.563861699, 7428635.9375, 7430318.75, 7441426.5625, 7442472.176391954, 7443528.359426235, 7444959.375, 7447848.390238488, 7449319.747188868, 7465070.227967049, 7465426.670765881, 7468938.482909768, 7468958.8866236545, 7468967.1875, 7470036.645277036, 7474854.550868973, 7479096.875, 7479986.250156162, 7485016.6821265295, 7485206.25, 7486285.192866451, 7498481.25, 7498484.582451331, 7498504.974705763, 7509590.519157954, 7511442.431569662, 7557098.0892236205, 7559072.8501895955, 7560193.75, 7562361.934050098, 7562825.875902712, 7562905.06757185, 7562981.865031824, 7566486.716677001, 7568020.219521015, 7571283.038718549, 7580421.082216166, 7594741.954059829, 7596960.593509557, 7597689.355100506, 7599688.596677835, 7604183.48888491, 7604184.807425227, 7604226.567549191, 7605439.0625, 7605467.154418598, 7606235.778174926, 7606405.848077879, 7606461.593494381, 7606498.355014986, 7606703.125, 7606712.5, 7606940.944149844, 7610090.3737366125, 7610187.5, 7610707.8125, 7612439.485052332, 7613032.311326798, 7616528.125, 7618040.295465209, 7620049.595893592, 7620885.9375, 7621268.603953865, 7621324.3160284, 7623393.792071438, 7624207.672755244, 7624968.777788371, 7628460.9375, 7629864.617008162, 7629905.712559649, 7630348.632979038, 7630869.653364114, 7631483.845757672, 7631605.084240689, 7631723.406434359, 7633253.614934446, 7638956.882333914, 7640578.813761709, 7643293.75, 7643790.209874464, 7644624.313314499, 7647275.83294369, 7650775.606549721, 7651995.989276308, 7652911.240871992, 7655195.3125, 7660998.727233472, 7663518.217023239, 7664580.714044369, 7664920.631293192, 7666537.992268077, 7668879.6875, 7669074.896059845, 7670209.4277358875, 7673879.010647655, 7674396.471134996, 7674496.477350563, 7676908.790307819, 7676952.024135963, 7676973.890931398, 7677310.9375, 7678480.684499035, 7681241.0003773905, 7682407.706615661, 7682824.279531374, 7683807.83881885, 7684443.434801328, 7684480.3669965295, 7687646.875, 7688049.7245879285, 7688064.03130809, 7689255.067889444, 7693165.625, 7694364.0625, 7694524.718954345, 7694829.770607259, 7696312.894166918, 7696985.8873112025, 7697068.811411767, 7697261.006605942, 7698331.766660022, 7698631.136907592, 7698730.094915823, 7698835.747959118, 7699397.560927019, 7716246.27536568, 7743898.204885349, 7760509.551207954, 7785554.687349381, 7785914.590175365, 7786298.4375, 7788418.462914339, 7789334.375, 7841746.231068687, 7875256.25, 7877869.190835026, 7889504.6875, 7893646.25445802, 7897639.631769862, 7900721.687333354, 7924268.75, 7931300.987931005, 7937911.134229511, 7976971.875, 7985106.3487900095, 8001570.013911299, 8007029.313783746, 8013556.148800589, 8019693.272631559, 8033246.086075529, 8033246.757624151, 8034414.0625, 8040020.288072063, 8042321.766403356, 8042831.68528478, 8043559.389380177, 8043575.778566738, 8044359.997585499, 8057851.363484913, 8060767.646341425, 8060794.203256231, 8064876.518730296, 8065551.5435601035, 8065599.297577945, 8066268.719907396, 8066562.304733363, 8067489.920381898, 8067833.636278542, 8109381.25, 8119031.927816714, 8132758.613260476, 8134199.556904449, 8141226.124475924, 8144616.333575003, 8161540.411512152, 8169340.928343701, 8171748.327633429, 8182976.2901174715, 8184235.673762059, 8189634.730607148, 8189971.511766647, 8199453.536422833, 8205577.639074793, 8205624.707320324, 8206287.5, 8207506.25, 8207653.125, 8208670.164947815, 8216639.723246273, 8217179.6875, 8217218.034372373, 8217379.570140176, 8218669.786118449, 8219123.722365116, 8229754.241305664, 8230989.645171283, 8234257.8125, 8235423.180496896, 8238630.487520441, 8240873.4375, 8249424.200342542, 8249621.346610063, 8261568.521824226, 8289905.001086114, 8290247.3887637295, 8290978.827285337, 8298728.125, 8302907.823533542, 8311024.355256553, 8312457.8125, 8338839.742063672, 8339216.463681795, 8341593.24923813, 8354207.8125, 8370666.567749467, 8396083.134648379, 8397307.851732703, 8397315.335307667, 8397316.155685775, 8398091.597729323, 8398383.090368351, 8398395.3125, 8398912.273607789, 8402083.96590047, 8410398.229054194, 8425101.5625, 8427720.51560234, 8427760.445940057, 8428031.042427089, 8428360.9375, 8429440.625, 8431356.07857515, 8431683.888060262, 8432750.566092245, 8433551.216339434, 8448454.6875, 8453849.678075682, 8454142.1875, 8456498.17362449, 8458212.379358867, 8458399.363572575, 8461903.599243494, 8464642.1875, 8464838.774690645, 8464862.502512163, 8466115.508136291, 8471910.701948106, 8473031.104135787, 8481173.668159373, 8494131.811775425, 8495354.382456843, 8504308.1944434, 8513223.4375, 8513495.131168641, 8528225.0, 8529830.699797872, 8532578.419527292, 8545337.5, 8549279.6875, 8556757.8125, 8559196.240498316, 8559361.449484317, 8560175.0, 8562740.104144564, 8563646.821570544, 8566546.571848312, 8569312.849376481, 8571137.456479462, 8571734.055482462, 8587371.637750588, 8587779.6875, 8587869.50496177, 8587894.590690117, 8588065.76153851, 8592571.875, 8592574.108628428, 8592704.21937601, 8594063.905382283, 8594071.739361707, 8594588.845464887, 8595944.365885237, 8596639.0625, 8596863.941091657, 8597878.17862374, 8597902.924484665, 8598198.157754406, 8612550.0, 8612606.25, 8613596.39968257, 8615553.95697568, 8617385.666401036, 8619534.021863231, 8621127.81020969, 8621776.509509113, 8622904.6875, 8624774.80981209, 8624792.1875, 8626555.024685342, 8627536.19295037, 8628649.53692816, 8629360.545257969, 8629363.068687381, 8632959.375, 8643150.279687261, 8647987.5, 8648640.714325793, 8649217.88080503, 8649789.47813798, 8651352.315906866, 8670496.428059993, 8686741.975561563, 8687449.815351529, 8688078.581094071, 8691194.909329463, 8700639.665343022, 8709582.8125, 8709872.694307495, 8710101.071121054, 8710639.666770108, 8710929.6875, 8711995.037941054, 8712337.5, 8716557.973676827, 8717689.909666188, 8718621.724209085, 8718663.477286143, 8722404.981197929, 8737031.25, 8738397.385720585, 8739799.673477074, 8742198.4375, 8744802.399630414, 8747239.428332258, 8754923.272219652, 8760907.597817592, 8768856.001861528, 8777361.139227517, 8785137.5, 8789753.510742519, 8792120.237109585, 8792773.744640592, 8792809.375, 8793198.96823097, 8793378.05969978, 8793609.688266383, 8794427.906279244, 8806151.146318013, 8807214.415357884, 8807255.238358868, 8808200.0, 8810108.605489613, 8815776.5625, 8848096.740369793, 8850070.106095696, 8852412.5, 8853317.439297274, 8854039.07928744, 8858148.281290207, 8858184.539178003, 8861763.667979684, 8863158.042658176, 8863559.375, 8872351.264382523, 8877931.922932511, 8878899.311003264, 8893071.875, 8894280.681744315, 8895558.248722529, 8898462.872815484, 8900599.302795634, 8901931.029588882, 8902952.78372013, 8903210.433186227, 8903240.461087171, 8903723.787054503, 8906072.474204702, 8909154.202708483, 8910857.203383178, 8922697.36418027, 8924200.92257287, 8930646.754104499, 8931016.90031196, 8931426.21907141, 8939297.358107379, 8943881.25, 8948298.4375, 8948801.225838343, 8961454.6875, 8977461.116111785, 8977573.4375, 8977700.882098595, 8979174.082801802, 8979675.978536766, 8979993.655612266, 8979994.283328887, 8980969.924514906, 8981795.3125, 8981976.280056305, 8982032.845839173, 8982122.52392819, 8982505.985057024, 8983201.095596468, 8984824.619666044, 8985136.331420725, 8986007.328400197, 8986040.754120357, 8990867.512901276, 8995590.30310769, 8995896.205521066, 9010933.549772792, 9012397.902885333, 9013661.35975369, 9013755.878033038, 9014732.644354168, 9017439.813745381, 9018540.499326985, 9018588.180723982, 9033471.473651227, 9033971.875, 9034523.4375, 9035361.583553385, 9035476.224918317, 9035775.166312605, 9041082.276407883, 9043768.101174513, 9046980.168098064, 9047625.590268975, 9067121.96548929, 9068141.929025043, 9073132.373742813, 9079412.898738379, 9081028.125, 9093863.045506, 9101106.94746807, 9111541.284724023, 9112211.795035725, 9115805.798099823, 9116925.414210493, 9130342.53281427, 9138123.819406211, 9143731.27690004, 9147875.912822895, 9163765.27005979, 9171619.913856875, 9181113.012527667, 9184736.401611852, 9192581.347997705, 9192584.375, 9240359.45258223, 9257623.632948685, 9257648.905602435, 9283497.787356205, 9337751.05887112, 9338387.5, 9349829.880337687, 9350440.625, 9358253.650582984, 9362406.063251395, 9364125.653757915, 9374540.625, 9378755.472072529, 9379944.558430946, 9418946.689053679, 9418971.242411887, 9426769.582026372, 9428764.0625, 9429242.370645182, 9436929.6875, 9438134.924344203, 9438573.371458694, 9438915.476563225, 9439461.884653017, 9439509.375, 9439660.9375, 9440067.1875, 9440854.067744073, 9443444.28267686, 9444252.662598144, 9444555.983331455, 9446693.456557136, 9447158.777235761, 9463862.23964554, 9467485.073274586, 9470045.3125, 9471981.25, 9488084.169550339, 9489571.974933932, 9489660.383428557, 9531448.14034273, 9532755.823836075, 9532856.148717644, 9532866.562088262, 9532955.17606221, 9572124.321204834, 9578843.75, 9617836.345206259, 9619758.405322837, 9632809.10400456, 9655655.318769699, 9656675.073866837, 9691274.528292527, 9701618.019586466, 9702704.125732405, 9752155.476143857, 9767146.875, 9769803.125, 9806800.082573704, 9828383.30883586, 9829775.263756588, 9832600.972008755, 9836507.442103539, 9863936.796430403, 9869646.750116449, 9889686.434205307, 9988157.198692437, 10020714.078748193, 10053925.0, 10071145.403188994, 10071903.125, 10105663.72247809, 10109745.411353542, 10166285.9375, 10167030.676758872, 10167678.313811783, 10167678.872280978, 10168229.6875, 10190326.31371541, 10200959.375, 10202584.375, 10223198.4375, 10223250.50919209, 10237731.882337172, 10272604.175617235, 10308146.704714596, 10308718.330509959, 10308741.246287445, 10312302.471927611, 10313012.395225745, 10317953.125, 10346785.9375, 10346879.6875, 10356622.667609096, 10357109.378326612, 10359045.3125, 10364009.156159807, 10369395.3125, 10369591.50496067, 10370665.695142016, 10444603.316041235, 10483049.46802346, 10483597.920890156, 10483607.676031597, 10484426.5625, 10484642.1875, 10486479.6875, 10488547.491421176, 10523214.541757168, 10523598.4375, 10524920.938865071, 10525094.920525694, 10528250.52517134, 10535501.902225625, 10536025.141556999, 10538230.4936838, 10580233.510477072, 10585331.944019655, 10626359.375, 10626377.388425458, 10628865.625, 10632259.08520941, 10655585.459797956, 10656567.1875, 10669939.0625, 10670677.95132262, 10670796.875, 10670803.62968342, 10681770.763667852, 10692860.121934947, 10708590.625, 10709953.125, 10709984.36226082, 10726795.3125, 10730558.108105712, 10735473.144751586, 10787845.3125, 10806242.1875, 10839983.652254296, 10842982.8125, 10851739.759220371, 10854586.686614374, 10893281.25, 10893485.718110908, 10911259.85999906, 11021688.705410965, 11024191.545188127, 11039590.881775066, 11086134.185981756, 11100635.9375, 11100643.75, 11136862.5, 11137319.860909998, 11189250.0, 11189913.92021518, 11211932.429839866, 11216215.625, 11286743.75, 11297363.672922734, 11329654.6875, 11368750.431696156, 11370777.538720012, 11379842.1875, 11379957.5985116, 11421596.875, 11421783.379074698, 11421823.4375, 11441435.804906007, 11442636.934574408, 11443993.958194787, 11445467.237216882, 11479082.8125, 11486033.829005655, 11511615.341236727, 11520011.017246922, 11542947.459169336, 11577868.189723866, 11632029.30719113, 11639862.04564251, 11645933.83823531, 11659838.667411452, 11696900.125338065, 11700377.560032086, 11784983.577044697, 11787817.14007789, 11876659.375, 11886230.214327717, 11901696.884368766, 11909135.9375, 11978519.545160167, 12008048.661647221, 12010320.3125, 12016506.701124739, 12019480.76121587, 12047100.0, 12067881.008924544, 12079126.77353452, 12119389.659753932, 12138370.11455953, 12146188.640935892, 12200446.875, 12200753.295176804, 12253294.976490686, 12271344.925556097, 12277103.125, 12301974.074085213, 12312530.176320128, 12353793.157886628, 12353803.096651945, 12356239.0625, 12386426.688953472, 12386646.022203442, 12393644.1744153, 12396943.834154738, 12417353.125, 12424971.23396928, 12426426.5625, 12426565.625, 12428466.99079385, 12443171.738280013, 12466977.333496375, 12478788.47874759, 12479259.208446207, 12480172.724835059, 12487318.75, 12497905.491558198, 12500634.21585366, 12504843.029466804, 12510709.403624414, 12510743.734222995, 12517320.3125, 12522688.928869447, 12526809.375, 12529769.076811949, 12558991.769031338, 12560328.093604116, 12571877.536417898, 12578324.345339583, 12614242.035147088, 12626169.744848052, 12629681.496654091, 12636725.074378055, 12641814.548937181, 12645076.7438199, 12663598.376471072, 12691151.5625, 12692245.3125, 12693891.15843564, 12712059.375, 12712764.0625, 12714525.384370593, 12717921.637028767, 12720278.54336128, 12724469.101966184, 12728658.139046077, 12729917.1875, 12731765.061088381, 12735675.290920855, 12735977.417297278, 12761555.016260272, 12762584.627921399, 12766225.0, 12766368.871793885, 12766881.802674128, 12767083.708015503, 12768629.6875, 12769735.743457703, 12805468.75, 12806268.665648619, 12806859.793480957, 12832901.466375189, 12842957.8125, 12846776.5625, 12885420.3125, 12886078.125, 12887428.17070485, 12887510.014887642, 12889642.651169265, 12896593.302985841, 12901609.00186378, 12908828.843484186, 12949942.25471438, 12951581.182757435, 12998026.34552584, 13005079.609681973, 13007364.615675123, 13007662.5, 13010239.630987514, 13011480.101339508, 13011756.25, 13012432.301397718, 13012652.171128085, 13017523.263506874, 13022657.8125, 13033554.6875, 13033794.721712342, 13034159.562858423, 13034338.753726263, 13034790.108080672, 13035398.31121837, 13036212.709412184, 13036248.936453111, 13046349.630197428, 13050764.0625, 13051739.379015792, 13052653.155356186, 13056118.86061632, 13058603.50852641, 13066835.148861539, 13071023.4375, 13091368.556392847, 13093026.364993282, 13093226.5625, 13094187.266021261, 13104389.0625, 13105668.130349124, 13107124.044357711, 13107476.498089744, 13108817.1875, 13109673.639448805, 13109678.125, 13109709.735565692, 13119208.916698819, 13120826.116805246, 13120829.602805547, 13122201.5625, 13122209.02483721, 13122987.5, 13124109.86526543, 13126229.6875, 13140450.0, 13147772.544627808, 13148523.851452136, 13148864.41103576, 13148925.483751457, 13148991.559017774, 13151531.472374637, 13151813.07954008, 13158886.225696173, 13159423.4375, 13160941.852557067, 13161112.990398942, 13161372.699729139, 13163101.895502234, 13163615.625, 13186029.134760855, 13191010.570442004, 13192331.19339924, 13196882.348891763, 13199862.9145095, 13202220.081765356, 13223173.062130114, 13230766.264067836, 13232666.822060192, 13232942.205763424, 13236318.75, 13244993.682614414, 13247738.446874563, 13249221.875, 13249975.0, 13271830.247150132, 13272364.028978176, 13272876.5625, 13273320.3125, 13273940.625, 13274844.937597036, 13274868.75, 13274918.886599524, 13275127.828669168, 13280941.929722052, 13282414.598104887, 13302848.467535125, 13314841.92991461, 13315569.311629646, 13317705.83660799, 13334548.66616917, 13338555.657143, 13339240.625, 13340501.971690731, 13368398.676523458, 13389409.599339452, 13392420.83775465, 13392959.134509228, 13393150.0, 13393835.624324646, 13397095.621303525, 13428626.5625, 13431649.495205315, 13443901.5625, 13444682.348282581, 13444689.0625, 13503921.511850016, 13519759.053411689, 13528721.875, 13535398.4375, 13543313.192954466, 13544500.0, 13550501.634877065, 13580311.754455922, 13604766.057884295, 13606093.75, 13618433.282610217, 13633296.207649969, 13639780.590029702, 13640159.049106866, 13641424.131799238, 13648052.430616321, 13667163.979771087, 13668018.907261087, 13687989.0625, 13697185.478491558, 13701963.900668796, 13706506.858377658, 13732002.574634068, 13737062.404995302, 13814251.39169109, 13815050.651047533, 13821810.530990146, 13864741.949662335, 13869038.130834568, 13883824.887733046, 13975058.383099291, 13975481.156588465, 13976650.0, 13996932.27895246, 14051610.724227138, 14082156.664997417, 14084018.647478078, 14103969.596052472, 14153027.886315973, 14159587.5, 14161369.635444479, 14163904.649949126, 14188772.344246263, 14198632.8125, 14214606.067400185, 14234906.25, 14249517.1875, 14307625.366466269, 14346367.1875, 14384735.76274896, 14396229.491645465, 14399068.064708011, 14411193.768727992, 14416157.454156006, 14510342.71075253, 14523794.130709589, 14523802.568682378, 14527198.03608345, 14527574.897177424, 14531189.0625, 14531380.741754266, 14537823.247602442, 14558066.795164589, 14558140.625, 14558920.880880257, 14560998.185633142, 14569664.49205528, 14569837.5, 14584082.8125, 14585195.218262868, 14586926.388420725, 14602383.45018311, 14629009.17764095, 14631614.0625, 14633251.5625, 14636621.176872237, 14640148.4375, 14643333.391036803, 14647270.3125, 14649575.250072839, 14650106.764898095, 14651208.759641016, 14651806.283849811, 14652698.433304617, 14654650.747817421, 14656126.248415964, 14660923.4375, 14661234.302225193, 14661286.667705933, 14661653.430728221, 14662367.482270038, 14663433.76483039, 14665180.179440254, 14665627.668365255, 14677720.13008306, 14683532.8125, 14684174.088320706, 14748593.154438356, 14748841.668158457, 14752476.342795849, 14752490.625, 14760397.595688593, 14760908.625414563, 14760943.270767478, 14762252.277778186, 14762265.14368632, 14763810.534149975, 14765434.375, 14765448.4375, 14765462.484752452, 14765858.606658138, 14766808.899933342, 14773942.1875, 14784675.0, ...], [82.03812298704078, 23.897073843369736, 5.5475548170367315, 5.7321770410867, 6.7930044723871665, 103.50254621052682, 48.619798535285696, 8.555342334538553, 42.48961419104087, 25.31904232362297, 23.146841267339894, 19.68782173102678, 110.29259132692422, 18.934521097393606, 71.98139548110285, 31.073515666869795, 15.231513392298336, 23.832389855337663, 87.71885078223917, 100.75000507167402, 34.842327604511254, 14.45271860563547, 32.92071353773597, 29.9919598565488, 36.69610283602439, 6.8171952787378585, 19.29297147433988, 29.783123263668696, 8.543195539317715, 90.90825554344968, 10.383157403582029, 12.74421162244161, 8.553965314160266, 5.317482546808846, 7.016576063832631, 5.148652789394583, 103.46140978228304, 12.912181137225017, 56.12434457456136, 8.663698267398697, 23.112134917633167, 5.068998162704071, 50.82269126407056, 68.21485563272115, 13.12571033792936, 23.27670047836992, 71.44893134126119, 24.42976254014496, 34.41678603748053, 46.85190446382725, 30.868543437121907, 30.253335788341374, 11.515027830231185, 29.420108378698668, 22.752033892079876, 31.448782560867926, 10.998098003484115, 78.53868531885622, 10.328395101512932, 8.949986023644714, 104.66838106811704, 18.559583433873424, 26.088875499589303, 86.41442909846707, 16.284072108044196, 10.420082672462899, 29.052885948063462, 19.356637822177923, 36.59395520464656, 9.513199169989718, 17.04840032143926, 26.594062207952344, 15.961239085869563, 23.15306205489397, 20.664211274816655, 56.60580313785761, 15.012508180046703, 5.881762586079686, 23.97258854876242, 12.24755992251158, 24.68306984045476, 26.81213736664041, 94.84691680115111, 5.028432456604893, 41.027368984270794, 46.167538040758686, 47.94441600306275, 52.149835515672045, 36.46987297627054, 16.893004639521774, 20.28223640886239, 42.806109666771306, 28.798279631829796, 5.161667541390312, 16.358271229763325, 17.738850593782217, 43.22046587166702, 73.21899634823667, 76.15486545189698, 26.5890443087417, 36.497561263065904, 98.8856420636156, 97.01418926763162, 16.84047104291118, 21.481404898424874, 96.99649706862445, 68.77641270302443, 22.506174926227033, 138.63022627324955, 14.412611613518289, 18.617621639180335, 23.86768830583308, 26.039059264936256, 11.171421397122977, 114.20041983645663, 64.97661455522947, 67.73552867050543, 8.392727753705959, 20.040079059239545, 21.206269271185718, 11.810153763365626, 39.20519955184494, 59.65415290929093, 7.849158346415027, 17.977297261978826, 43.54021571770661, 6.216137260363643, 6.951930120162348, 12.738440115746, 6.89095826729773, 9.977698236922599, 16.239326621781636, 29.244683078510782, 8.445975797969862, 7.421210052331208, 80.10635221886984, 57.38475023579908, 17.221121441337083, 52.067252199224, 49.74682179144578, 7.135383664357946, 7.958384351287933, 107.31146465794723, 85.45774456065101, 6.652133637341563, 104.53358041463186, 17.00626029066123, 35.50454165011239, 20.863664974867252, 16.7946844267928, 36.25118671533023, 114.76086875389002, 67.25113894671, 23.558521858385415, 27.860814162479592, 46.60012206207788, 24.069982930961874, 20.625587855385856, 67.66262376661336, 85.50947832260917, 44.6666330412171, 165.59547325799142, 15.268028198659481, 16.69185205502644, 44.681769131087414, 25.004736346380042, 17.62682571721456, 30.136133513601713, 35.51793043249083, 36.44153169388501, 26.062801665981468, 26.854508668634644, 190.7613980552813, 24.651428990567076, 18.702422893650418, 33.50482042471064, 9.82134655498658, 52.62344415622175, 13.949616720912914, 46.90691183643342, 20.168186461393702, 30.521673266580752, 5.978738062844616, 48.21181647061518, 10.278976645318325, 5.990563081736745, 25.30016125482744, 125.28888303619948, 8.888637356863518, 15.748401895871856, 76.56871329266731, 155.5990636996208, 13.91372494269103, 77.00948140702656, 26.67228181198421, 21.721872472521973, 8.74291499718297, 40.43743663623116, 67.42781338049608, 16.303887574457, 8.229972523257727, 16.908302841770958, 23.321007304247303, 39.5993392125246, 5.747560774527261, 14.23359225724666, 11.92958820747467, 11.91869056055169, 27.687392467175346, 14.869807488481669, 5.372283284238141, 27.942897376928094, 25.187576067642624, 26.252992149225587, 12.716570219811283, 56.863287629120826, 12.383009604424473, 12.662143225205185, 10.49921431002919, 36.78869341268948, 6.604215548070623, 41.09400494551852, 55.18109358881884, 77.36783706430231, 31.43058690805855, 76.35380189812727, 24.791208206491063, 19.621952156436784, 16.781775645214456, 19.36327961962265, 78.97516362761222, 51.89635815846735, 64.51899327384886, 108.268923591076, 25.915146631914247, 13.908955941982832, 54.00221094450353, 5.269482263640297, 60.322041168354176, 27.94110148197187, 16.67519417781713, 19.665602186815608, 12.17951211117442, 59.245815440007696, 24.31595720667056, 44.66727224461357, 28.874075759820887, 18.947398914215764, 13.248959416837778, 94.20865624675875, 118.83133353155728, 20.83220201256195, 12.437061721160056, 74.21155557134554, 14.983731549056598, 49.81314226929083, 58.90929996752012, 18.368751546291826, 85.29544128463587, 21.4855035369452, 61.148439445166076, 10.279923996637363, 22.22982288631735, 11.189588811811646, 16.49960725413263, 17.4409568392577, 13.086730394233692, 11.591707140481942, 77.62628793483185, 52.681137038467625, 13.582091813771894, 31.711258289805603, 29.435771199220756, 45.476212053369544, 19.744387027691104, 31.665252733844174, 97.67913410711171, 34.53390162348022, 14.326037913076622, 24.41433228610485, 12.14510118483965, 9.054906998225716, 116.36770098246565, 49.57608480109471, 48.97150400746202, 30.045152880595438, 128.41458423141955, 20.232184540780953, 17.12050256894301, 47.62434517255944, 17.361631089299294, 22.909755117764565, 53.53367206258835, 24.61043070189463, 97.2121563241386, 7.688849505646301, 165.55149106452797, 48.82925976940919, 11.782247288964596, 32.804668148806805, 10.855629249375118, 40.4433481051426, 14.617908311717459, 50.60950406488248, 55.0984123029221, 28.594927791776144, 65.1166185547543, 20.248692030079877, 60.78409302592784, 31.70383104221426, 10.56417472238623, 62.542188185606314, 23.710566533544707, 25.240255253024955, 27.691997711544026, 38.87608712295048, 14.08619533386472, 42.63431067940061, 31.873121555646406, 53.63206147149367, 8.36012552386133, 29.354357333739628, 37.198736253303366, 13.414203040226226, 64.36811666958697, 10.922113629563206, 24.871691878687475, 17.956306766821807, 59.31769391296939, 65.71333011628013, 21.10093948467956, 38.50991451782042, 13.972660126603968, 118.21268860798665, 41.958588133684536, 68.25903973304453, 19.465294392584756, 66.78479610200881, 23.094921292631753, 72.1308828266657, 11.045876652518473, 60.216864774074196, 8.188499895546459, 59.409364110650785, 155.30164380934983, 16.013594766662145, 21.86956145834815, 22.639895142057842, 5.857291656321554, 113.69484053587304, 9.579647777734019, 36.150317568226356, 15.581153196016743, 18.46105260772568, 16.803940777917603, 87.09982033272595, 5.442904887172403, 24.944789023184587, 11.408760606950493, 17.02076227201315, 8.08429192582706, 41.44843781236021, 108.01169614522448, 39.73359026927655, 8.04276616325254, 17.883676259315738, 42.46394288382292, 24.081248189417643, 115.90076077506457, 75.35562513877129, 7.941356079400836, 14.396312018948912, 20.683175421702533, 104.00598951919142, 29.04544232373883, 25.230416126233745, 28.70524680936898, 98.28655294781555, 19.505384641904367, 11.752099014450673, 25.6389678589677, 40.487339259546175, 41.927231412659935, 80.20323281740046, 79.5809411925538, 16.648421443351122, 9.268459613782928, 9.605351172220747, 92.27402754048937, 12.072705919744452, 64.2700518611934, 16.28702488402038, 14.168605702822676, 24.960965045128294, 11.727997365716506, 5.742736565578715, 33.91495778781324, 19.168813192431372, 56.31735009078628, 26.121007266688963, 25.024751808516957, 29.337508165459447, 28.363999056784635, 6.489726032504031, 14.377761094538323, 50.64012756846512, 22.614064719964276, 9.533904584977385, 64.63710090746217, 49.33725909875942, 7.31034252418276, 28.107565175708196, 69.54661942112875, 55.44784790492366, 141.1478856384479, 21.61539469061963, 12.81655949740887, 8.173360882469002, 13.782831031732456, 135.25237785128684, 6.071217992222701, 9.645560724497782, 17.852243810543964, 34.19521072591845, 10.76700311858059, 33.74825387014956, 14.6106961596305, 7.560089369756158, 14.788399165821147, 27.62981461704026, 14.143155389840148, 100.1593056464311, 33.34793462810099, 7.485848332141209, 73.75103652682519, 22.31812248083717, 88.13697821380327, 43.575316254097345, 24.591253384674374, 16.8973480500738, 26.788045858654367, 41.282110528514664, 9.023558513949702, 33.97977559180716, 136.90846966794567, 5.166138759441028, 54.03344058789237, 34.60814832310432, 5.677673681561727, 83.84213124474834, 153.1374444953588, 65.76135148483746, 8.35605935710789, 11.67750605746042, 23.47506851191022, 19.9541112151568, 5.14657805434681, 17.99868443412724, 47.59798017180427, 58.976913994181956, 5.336192766374242, 34.75912869260127, 17.797650607681987, 5.42515110612267, 103.05940670427033, 63.351039320096916, 74.6836237803565, 24.42415110875436, 21.30873821455362, 37.039133517710006, 70.65044261785692, 103.07027714489494, 8.558201392871569, 12.195383184443626, 25.82190070941413, 72.90784471288498, 8.986058873296484, 5.844084587191619, 48.24829181824759, 17.527780148669706, 103.47151187229518, 6.9027726681166595, 12.797689717524637, 26.459346475610868, 14.218563374000624, 7.733096557252715, 17.84182272366715, 11.981750218898942, 12.933993354613971, 6.223372119245975, 13.612483582952324, 38.502127613804056, 65.12026045688012, 11.284418099608846, 79.62064269316636, 15.245698371133786, 9.502320970872757, 25.15387012949006, 28.400891055543084, 13.316118364970427, 31.947404464995955, 158.35298487984258, 92.36078100191627, 106.2721972803595, 25.31384333860043, 18.1986339919635, 83.69800153468525, 32.25112568309138, 20.134892968674208, 145.86442011038363, 68.25837497534165, 53.41081710268092, 48.02351947266211, 130.73169532218301, 29.83192318505574, 5.361104811792844, 8.251959635888355, 112.51792811728637, 13.020862347289636, 41.90986665924656, 32.5687326029865, 186.3682558389222, 6.967539869211392, 5.142052059316887, 21.876544215393892, 10.734989862748506, 13.929747794394006, 20.570304855774655, 96.2856645427732, 132.45706937705853, 62.020248920101366, 95.03849913683757, 29.640581863080946, 6.783622959420687, 10.3596076929714, 23.787121634588843, 96.37744727127453, 14.569027360558746, 20.327076424592878, 5.8510362629226345, 240.60541367437253, 102.81401935013534, 11.830969249866262, 7.286523107187409, 6.710584105985401, 12.28215180006914, 69.80261361914415, 36.60569528467804, 19.466153801694055, 80.20440093736718, 137.98562207529454, 29.938179151197613, 70.68849856979043, 54.7217429044879, 26.02342459143337, 17.62752024166077, 93.10941965634139, 5.787073163208089, 45.12414586061354, 26.27889917274959, 104.14331065764212, 60.780242965669636, 124.9850279263818, 54.44959584052748, 59.61979823079204, 35.65738001663822, 23.25263351966136, 11.285818561128439, 30.219589809323363, 57.56754104030299, 189.89960722705354, 7.897894463573807, 37.545494443799576, 138.93770859289583, 28.92595793678273, 65.69901996387013, 40.44950587031949, 5.642848951376373, 55.83568619324978, 24.482712710261996, 25.56227148088232, 58.86343229526557, 9.918480519109902, 10.240297784670428, 26.612003904871056, 78.27757521757599, 48.980996077476405, 104.00029942940043, 73.52978536155106, 14.954204087742065, 127.71866517619947, 95.72415547936988, 46.743340020712886, 33.12895098833045, 30.502038780038244, 9.498337890833014, 103.85691309899127, 86.86851190912563, 14.44567514556881, 31.678522438687306, 77.98910419282082, 86.84902481721423, 27.16312138856282, 11.96969066903408, 44.548469373781955, 54.623601900776265, 22.642935309959736, 84.34857354471788, 9.636188143808996, 19.096138813760508, 7.923396317788151, 10.000656772213258, 9.996357066937428, 41.29212648474149, 19.418509118337102, 69.95076053955535, 101.51770228138466, 27.65449540294611, 86.34558903506964, 58.91003150771029, 25.51060678084975, 29.94249005858897, 132.9555919074108, 16.99395816814007, 111.36061992404225, 49.84614401857091, 61.31550608383197, 28.275241639758345, 39.74255703333707, 83.48191648099821, 23.843814701150624, 74.52472693225975, 36.04446334185125, 120.5373706337611, 77.91551655555772, 96.11975990833807, 18.84874849205234, 54.18825222247119, 32.23925600931902, 69.05306940228107, 199.78622355121135, 20.181954470910267, 13.584016963668171, 7.53627433469891, 30.67242081001523, 55.879838488035006, 76.82671538649991, 22.051598638563856, 49.982833461062256, 54.56275051671426, 28.756369273151485, 40.68183148179147, 68.00537839384421, 5.328747196643122, 73.25856435352955, 26.404171103359204, 5.376524300483672, 37.91286899938541, 25.53224074748036, 33.711009364599576, 17.653208866021867, 70.25733336657974, 88.2442939881049, 65.75618972773667, 21.33786169498189, 126.52897284290972, 67.15400184435288, 179.51610175896874, 31.026233779995668, 36.75152676739673, 9.879557203057994, 34.422161441745295, 32.48318897702751, 32.868689324382046, 149.9481670421574, 86.47381769636918, 8.353989302198247, 117.18439217744866, 26.348802063039386, 14.763787594497588, 35.849393780028024, 15.2351035806251, 14.977339417106219, 36.24061307494487, 25.594391552406407, 15.87070957526841, 40.11278410959834, 226.9429630564359, 122.17324694633088, 29.127102105421095, 24.533778819360066, 15.811889698429345, 53.601753026123745, 78.58576208842923, 79.24749220321453, 39.264357689565465, 42.37110763228343, 23.30141803025689, 31.19107899048079, 146.00648342414001, 54.44747508965942, 9.78201513198437, 126.94655886729907, 61.49804537031389, 37.20852359491854, 15.446438838983369, 8.701280790303816, 29.263510347362242, 77.66417835663046, 29.365576555942422, 6.023881467445485, 31.083144836522482, 31.325387631340977, 25.166387415826428, 94.94075151484233, 12.592804409449291, 35.39046355495168, 63.22768794642181, 68.29699354662112, 84.2058513589871, 26.47703981758479, 36.84753504318155, 8.788384594248674, 57.783224894575454, 11.591167334525332, 67.51462910759852, 51.830412087911526, 63.68234156214348, 37.401359038404294, 13.555028901350175, 7.591921661378636, 10.317473882479051, 5.884351746713451, 71.22191212516034, 20.843777277729256, 99.66602452975201, 58.9664505700973, 8.561731415587335, 23.444567541196637, 55.948141818795925, 31.284635790581163, 41.15677842287276, 15.997014624161213, 29.66850394253909, 78.23005151034161, 6.842748506264007, 24.576785407901035, 9.712113169472923, 16.47731657520718, 28.322929270616306, 53.37780110055946, 13.154350265860105, 28.41250475237335, 27.59791049921637, 8.468435072680286, 27.087469833018503, 36.51915116671542, 7.153839884804659, 6.1475221027071765, 6.637273740687517, 54.51139436633299, 25.205631496669394, 60.39054978464129, 26.96081645359079, 16.818935079683484, 33.83562632226431, 29.50517347461097, 60.01396910592367, 60.631574812391236, 106.19576432318796, 6.494279813158426, 5.650453036854421, 30.124346605327258, 10.49417460559313, 69.40660483523752, 38.269947329042466, 8.322444143894247, 27.26154718537088, 10.8046928757404, 115.98926032287858, 6.879208251867193, 39.49675415515249, 81.13876496997085, 47.32794815088872, 38.48309493049537, 25.862590968902765, 11.894876096890535, 17.055290886699005, 34.290926806248656, 46.37154563508444, 7.402678026435582, 15.70938235089635, 23.63931255723048, 42.44202020369248, 54.34605444353563, 101.96632685841728, 25.12569569384354, 76.22104516640539, 57.85350286729516, 19.734451076543152, 40.296167908268416, 6.099678377806963, 25.22072671769724, 12.59942885112399, 45.5407725219704, 7.53468274103305, 59.734521558726584, 55.34982440563746, 24.632368340975127, 182.28914530022, 6.025947283998612, 90.0621606004737, 124.28927086903228, 88.16876308986951, 54.412361267696376, 31.878135941304915, 20.29924394398526, 21.91940401786453, 13.26160823448064, 6.079335800928904, 103.9957953760626, 6.433566230505597, 51.98605029488779, 142.64903589145408, 59.535764590869775, 68.47074368750839, 14.521253736594737, 26.866650171426734, 98.16902544277431, 17.941802559978314, 7.980017957433338, 6.522524713725376, 103.98560944727129, 148.21490300139067, 40.76036839058168, 23.314425257840725, 6.865526130606268, 26.866169567429164, 34.78829713252287, 66.93979585462185, 10.361246189546096, 13.705511900072853, 7.10665210254125, 46.99128956502382, 73.4519827959643, 63.09649866549223, 6.690811411088027, 8.656144515489785, 33.27015809834913, 5.707921327081729, 160.00944661424273, 27.259000099463556, 13.020150684866254, 57.65907915403171, 58.77986915628644, 5.217918497640361, 14.815260961688352, 28.59845636215261, 152.2681572100643, 98.54650451307114, 9.033319022612456, 72.1345147124302, 5.2953254522313955, 103.0836940848619, 25.937618477407458, 81.23813144367253, 33.99332442068762, 24.308083020701684, 76.11939340807105, 113.60390619622804, 19.05132808241104, 106.5414896509892, 49.57616069447045, 11.833796078195459, 21.08411141946764, 43.54092679605026, 17.40942443376605, 28.374391511380846, 39.747766287104824, 144.9531252027057, 5.966756844292129, 62.08501443605123, 21.445403670714747, 73.89067215224787, 34.054270005237306, 75.8259317158326, 35.94640793486433, 8.123535234330916, 49.68801017807414, 42.98935905520545, 12.41636403307768, 58.55856231570167, 11.242753253725647, 119.75193255478025, 11.879205255447946, 85.66128393022474, 24.117879644356343, 8.824396976434786, 20.033108627582685, 23.425533092403548, 18.467777847188266, 10.191898162112746, 26.988996369855226, 11.38274706631381, 66.38199794670966, 21.911996860545106, 30.835876002092704, 169.52308337656945, 10.364167041567546, 8.236968201810601, 25.554281274330226, 7.857001586036071, 22.479323966891563, 59.26429432524752, 173.4736141423408, 14.530196542559404, 17.67744039070043, 42.5575882204088, 74.32724390391228, 50.834649587943915, 51.594227697992984, 16.80056733733128, 10.971152505827106, 83.56420274356856, 24.566894019359683, 124.16531013430162, 19.891732129876345, 27.802878712965, 8.551355544605812, 74.16898640444882, 25.37589848931403, 76.29927266003762, 32.07304957995371, 9.661765203720213, 65.78273217169681, 32.69329850008291, 53.815118016938655, 90.08982646201848, 15.013375479237277, 23.0330289605216, 18.10027740064302, 58.17253708721171, 7.413700942287383, 7.01978344114903, 5.242276584170304, 64.62553575106129, 16.423042248006062, 114.54441065458758, 62.76797552094759, 36.11265926836611, 34.48815596474681, 7.056780907546351, 65.07491192881655, 91.67832376882228, 39.901040178275416, 36.71643886163675, 13.29662251275121, 6.1570217927429916, 104.64143937102602, 30.58701826879854, 218.56560417170456, 19.72083284929224, 29.521706329410314, 12.170902361370075, 50.58712319094483, 5.408120912523176, 20.994384157041992, 140.25659572415987, 233.90131103461331, 11.121155475082235, 41.564643895702616, 10.669869541592474, 28.960442783991727, 327.0758121643501, 12.49963329700153, 20.480982242732754, 15.31505947160204, 22.917288643818846, 15.463147710344025, 21.936881338656683, 10.854066025782293, 49.12466510942705, 69.85315415856776, 32.849201796580495, 120.59178443741119, 203.76721112975045, 79.26676034163826, 10.025459546429467, 28.981545043762384, 20.655648887734856, 119.62888034298574, 13.377516486134308, 13.598778182211325, 39.20929984159507, 86.4148288182337, 42.27984205682034, 48.88342354067548, 53.71899653327694, 49.454318727196416, 120.94333721675679, ...])
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)