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 = 45501
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);
([3841970.3125, 4718937.319337009, 5229068.75, 5229129.590784737, 5298364.346284543, 5459432.712402757, 5481705.930116726, 5530340.625, 5530342.508458878, 5541951.315100162, 5866332.201618813, 5866523.4375, 5867535.589765672, 5926205.613056854, 6057734.918242133, 6200547.8016914725, 6201034.375, 6203820.3125, 6204227.953867149, 6204534.186029445, 6204627.549897598, 6204925.0, 6205054.6875, 6206824.410982675, 6207621.875, 6207775.660378549, 6208140.625, 6208237.388636292, 6208505.371886939, 6208559.315188776, 6209142.7503817165, 6209460.625302682, 6209792.371953093, 6209914.9989387505, 6211455.965383415, 6211964.0625, 6214047.806339378, 6214342.69615617, 6216552.789949987, 6217444.575122807, 6217478.568471816, 6217871.875, 6218713.662591858, 6219832.7723708935, 6226608.246672892, 6228439.067458776, 6240725.552213102, 6240771.07117405, 6247293.091718935, 6256217.1875, 6289677.062546992, 6292499.911842237, 6292959.081645304, 6294794.993507184, 6295632.711926665, 6296018.75, 6297784.767528563, 6300388.744258886, 6300831.25, 6309862.283939541, 6310792.1875, 6310838.073584061, 6311107.76902699, 6311334.211420715, 6311781.739034747, 6311810.192549146, 6320583.551797501, 6325635.9375, 6342202.287817113, 6342254.854811325, 6343290.625, 6344224.696438583, 6344530.920655984, 6347476.8718078, 6382248.812572954, 6382948.4221551865, 6385321.515693863, 6401352.793688946, 6422229.39370495, 6430404.303626034, 6448187.023094998, 6463309.375, 6464623.4375, 6464640.336909174, 6465389.155939539, 6465512.251049892, 6465818.603557436, 6465874.990111837, 6466168.822845836, 6468167.1875, 6469829.20182248, 6469865.080741927, 6469912.5, 6469934.375, 6470224.053388202, 6470479.241176543, 6470629.140777703, 6470764.0625, 6470864.050662381, 6470921.713042394, 6470966.880537801, 6471357.8125, 6471438.183858498, 6471521.9625891475, 6471589.424050054, 6471593.75, 6471638.830824679, 6472041.394344631, 6472070.798972667, 6472167.1875, 6472223.986919291, 6472268.366917987, 6472400.525368848, 6472412.893215946, 6472526.5625, 6472576.5834025685, 6472621.8045300795, 6472627.099704385, 6472634.245457581, 6472683.867902, 6472809.375, 6472919.751604916, 6472980.83025918, 6473010.3371379785, 6473100.0, 6473135.179232705, 6473182.787341604, 6473327.432370664, 6473383.919822452, 6473479.682576659, 6473506.555802709, 6473520.119100652, 6473921.933084083, 6473985.9375, 6473990.625, 6474114.215090907, 6474135.9375, 6474158.971248535, 6474278.289374947, 6474284.375, 6474309.174383971, 6474357.281257288, 6474401.019630688, 6474498.4375, 6474498.641140645, 6474558.414221311, 6474613.259799807, 6474617.1875, 6474635.920006407, 6474685.485126222, 6474768.180038771, 6474832.459163868, 6474985.9375, 6475013.182280187, 6475100.0, 6475115.448487078, 6475296.794267013, 6475465.853091466, 6475807.710852339, 6475945.3125, 6475958.973661174, 6476153.09165669, 6476153.730559697, 6476413.2830785895, 6476701.31837867, 6476726.5625, 6476829.366539366, 6476831.762255478, 6476871.875, 6476926.5625, 6476945.3125, 6477498.119469463, 6477538.911293086, 6477554.238435233, 6477557.90604668, 6477585.893371002, 6478060.362075271, 6478380.767309585, 6478504.6875, 6478663.473257447, 6478743.75, 6479085.025251464, 6479373.4375, 6479584.545324103, 6479603.125, 6479916.938162303, 6480087.433409252, 6480138.97594327, 6480602.863917879, 6480663.2836163305, 6480728.125, 6480919.753635864, 6481013.589780801, 6481100.162716009, 6481199.8671197435, 6481577.457577116, 6481640.913555596, 6481891.1782342205, 6482790.402285614, 6483133.171677998, 6483573.680165655, 6484046.168522633, 6484329.6875, 6484679.6875, 6489012.624616633, 6489023.4375, 6489067.289113941, 6489192.1875, 6489953.22241992, 6490240.051251683, 6490685.123617484, 6492339.90790614, 6493551.58513562, 6494588.481084244, 6494889.617438455, 6495442.1875, 6500573.4375, 6504169.48554914, 6518046.875, 6519596.467174079, 6524798.841978585, 6528397.654043326, 6534475.591611079, 6540239.901244282, 6546231.25, 6547041.2419698695, 6547963.312271387, 6549355.239254681, 6549720.566657911, 6553496.875, 6574324.212584885, 6591438.687049724, 6611845.966079408, 6612340.879257808, 6620712.444767222, 6636042.1875, 6651782.872948609, 6735287.058111005, 6737496.865726883, 6745153.082477322, 6745766.998469613, 6746077.210400094, 6746710.644717265, 6746943.75, 6747067.1875, 6747467.6848596, 6747500.15790047, 6747578.539364928, 6749871.875, 6756795.393150983, 6758189.0625, 6762850.213144708, 6767416.026040054, 6775794.6282927105, 6776775.0, 6776790.063122126, 6778780.594871188, 6778837.404574341, 6781165.21319622, 6783613.329647138, 6787054.6875, 6787670.024241128, 6789136.243191088, 6789765.625, 6790274.187619316, 6791167.1875, 6791199.80266299, 6791214.416342172, 6791329.6875, 6791336.400635049, 6791501.940319104, 6791515.046054802, 6792001.066896062, 6792022.608843828, 6792108.585444484, 6792212.915714598, 6792219.096781688, 6792224.903878575, 6792371.875, 6792471.875, 6792518.253248555, 6792613.908598816, 6792810.9375, 6793175.177726698, 6793206.25, 6793264.49794295, 6793276.373023523, 6793309.31510017, 6793536.364714886, 6793546.955819467, 6793691.858752326, 6793792.1875, 6793989.63900481, 6794195.267220187, 6794314.97565455, 6794404.6875, 6794438.633680801, 6794868.75, 6795233.852993078, 6795495.214781571, 6795625.0, 6795944.937310518, 6796051.5625, 6796132.8125, 6796336.674455445, 6796673.4375, 6796715.105553795, 6796842.8366547935, 6796892.1875, 6797112.469426611, 6797252.601533005, 6798184.017158526, 6798263.900055529, 6798283.279601892, 6798322.114876188, 6798400.0, 6798446.875, 6798460.9375, 6799507.9057780765, 6800942.865093541, 6801074.65371594, 6801317.1875, 6801463.312470422, 6801685.257545966, 6802471.174143594, 6802553.125, 6803936.053920433, 6805368.468022071, 6821342.890804884, 6827900.0, 6828220.738043858, 6829648.456286212, 6830466.4519366855, 6831634.750896934, 6832209.375, 6832285.9375, 6833218.368357912, 6834472.075261561, 6834828.970430002, 6835315.625, 6835351.164636514, 6835754.6875, 6835857.6288460335, 6836038.876958398, 6836803.125, 6837396.868084738, 6837401.5625, 6838427.757404784, 6838775.411060224, 6845086.091996261, 6848857.542680277, 6853057.602314933, 6860562.417896081, 6860773.4375, 6860834.950577338, 6861352.413222024, 6861532.022906822, 6861628.241123471, 6861981.25, 6862020.225388988, 6862267.137319339, 6862270.643823804, 6862336.916810673, 6862922.525597738, 6862923.343757256, 6863087.5, 6863256.817322454, 6863396.875, 6863635.064040396, 6863811.581227512, 6864378.125, 6864494.655119398, 6864773.092194681, 6864795.3125, 6864964.0625, 6864977.165018739, 6865609.219799789, 6865686.811089369, 6866104.300306527, 6867257.109235765, 6867601.439162375, 6867629.936423413, 6867809.29907518, 6868330.970636656, 6868508.431585357, 6868555.298072, 6868640.625, 6868880.62509008, 6871987.143034962, 6883071.025456524, 6883076.743347332, 6884161.94077835, 6884516.117122318, 6891204.6875, 6895496.875, 6906500.0, 6906960.9375, 6908503.389998217, 6909252.675151116, 6909539.0625, 6910081.59065429, 6910880.644982243, 6913338.707322485, 6913346.875, 6913359.8698784085, 6913817.852782271, 6914349.939254331, 6915069.089733625, 6916373.4375, 6917273.4375, 6926018.829469598, 6935808.915899139, 6941693.721659054, 6945617.114802006, 6949484.332543997, 6949804.254932147, 6957136.40735495, 6957309.375, 6961158.348230148, 6963680.430246056, 6964476.318619425, 6964779.6875, 6966947.9642196465, 6977482.8125, 6978057.268679559, 6980960.741094551, 6981192.1875, 6981211.5730016, 6982003.083059399, 6982071.7847199505, 6982334.006770258, 6982439.845078568, 6982442.857788892, 6982443.369735276, 6982578.755566522, 6982583.063650481, 6982603.125, 6982797.63814391, 6982865.625, 6982868.693001537, 6982880.8894106215, 6982908.2080614995, 6983087.513163427, 6983106.942822976, 6983228.125, 6983259.375, 6983267.932014072, 6983387.5, 6983472.765826791, 6983638.560191699, 6983639.0625, 6983641.847332898, 6983702.677210635, 6983709.569311577, 6983762.190581158, 6983978.125, 6984035.9375, 6984215.625, 6984309.479371843, 6984370.646953988, 6984544.944300847, 6984695.3125, 6984906.25, 6984929.791435768, 6984946.766233003, 6985020.367662448, 6985096.141436657, 6985339.0625, 6985341.992513878, 6985342.1875, 6985344.679862999, 6985391.375048638, 6985970.3125, 6985987.163263167, 6986226.257946513, 6986282.72133385, 6986470.624617542, 6986582.8125, 6986595.3125, 6986645.760656882, 6986893.294705285, 6987178.125, 6987791.489111551, 6988034.726854392, 6988760.057485127, 6989493.75, 6991717.859848321, 6991727.735835124, 6996200.0, 6996672.761028374, 6998035.047553501, 6998635.041752947, 6999389.106479263, 7004435.9375, 7007174.4511391735, 7007617.1875, 7007821.078539802, 7010433.292067021, 7010446.875, 7011417.1875, 7013718.75, 7014242.740325645, 7014629.656700861, 7014856.153829029, 7014902.003171311, 7020528.125, 7020568.666421499, 7022042.1875, 7022063.316706671, 7027501.262845015, 7028625.27408283, 7040415.625, 7053268.043701059, 7068555.040465978, 7073169.416575414, 7073486.5534280455, 7073723.701404357, 7080554.759867909, 7081069.092274842, 7081912.488449278, 7084124.109065565, 7104782.8125, 7116220.95525624, 7118727.99459821, 7125287.227117788, 7134865.072160421, 7137672.770895444, 7137831.7940873755, 7138375.0, 7146487.535981658, 7153348.740581164, 7158777.272143116, 7159149.906270669, 7163179.6875, 7163805.502701289, 7165527.93341732, 7166343.75, 7169387.5, 7169641.895628606, 7171426.368170265, 7171702.559238106, 7171904.6875, 7172171.875, 7172710.9375, 7172821.487451723, 7173210.908145357, 7173214.699792916, 7173491.591517642, 7173539.603334399, 7173619.847583806, 7174879.6875, 7175046.875, 7175069.641552375, 7175173.4375, 7175280.277999667, 7175412.5, 7175673.4375, 7175770.125410269, 7176562.3011116, 7177019.127243048, 7177630.096756549, 7189945.250332515, 7191732.92151253, 7200386.432137141, 7200490.625, 7203765.587206593, 7204443.593733372, 7204471.614184031, 7204514.702081448, 7210561.123107161, 7211423.374587116, 7212892.1875, 7213099.795525229, 7216915.365335686, 7217414.6347748125, 7217821.875, 7218318.155537103, 7218418.75, 7218453.628102538, 7219086.147058257, 7220618.576320371, 7220653.40945464, 7220911.802966882, 7221418.75, 7221515.61635211, 7223078.125, 7223102.303746451, 7223935.524118298, 7224974.409154143, 7225129.294869594, 7225983.9976810105, 7226545.3125, 7229797.125950967, 7230736.276330808, 7231939.296078541, 7231990.21857179, 7233071.161146267, 7233195.3125, 7233333.494015369, 7233459.3702498, 7234444.781588808, 7238129.471592942, 7239372.099639225, 7240328.905706126, 7247376.626213368, 7253273.6342072515, 7253804.6875, 7254024.502811977, 7254332.086794202, 7255494.702275612, 7256651.206765043, 7256680.064629997, 7259123.4375, 7262045.654870946, 7262052.233005759, 7262065.625, 7263553.125, 7267418.708951529, 7269724.011559718, 7275046.844377604, 7275582.01886185, 7278780.202807621, 7286718.75, 7288062.149858788, 7291001.5625, 7291950.405286135, 7293844.044937261, 7296242.1875, 7298613.888519493, 7302271.4578801645, 7303403.174126128, 7304165.625, 7308664.0625, 7312001.460607387, 7316328.796557966, 7320006.89785459, 7322035.9375, 7328279.4234385, 7329261.76688395, 7330242.869259724, 7331759.375, 7332940.801251708, 7332965.625, 7332976.289584278, 7333136.674520453, 7333384.965199043, 7333959.994712933, 7334500.0, 7334504.954318506, 7334699.888868659, 7334865.1216692, 7334910.032797301, 7335210.7881365, 7335241.312889762, 7335248.152003171, 7335268.860410501, 7335300.985301046, 7335323.894064955, 7335325.735871053, 7335469.92751079, 7335493.75, 7335531.25, 7335535.578770095, 7335601.147737076, 7335608.888528988, 7335632.475011558, 7335806.25, 7336053.125, 7336228.8075471185, 7336231.25, 7336244.967479567, 7336509.678057574, 7336560.9375, 7336563.140024678, 7336637.496979945, 7336647.924161373, 7336776.028421884, 7336845.3125, 7336892.845772163, 7337006.902580038, 7337017.1875, 7337023.948084643, 7337047.226319638, 7337116.495058913, 7337204.431252657, 7337210.501018498, 7337307.184200448, 7337315.388845403, 7337322.417128302, 7337487.194654485, 7337604.6875, 7337696.875, 7337698.090357222, 7337706.414853753, 7337718.936509007, 7337793.507717471, 7337795.600885249, 7337812.38566769, 7337823.690354763, 7337832.718390322, 7337904.707809484, 7337910.9375, 7337930.364626565, 7338006.005494157, 7338006.25, 7338010.9375, 7338151.5625, 7338166.915690916, 7338170.6631633565, 7338183.549193066, 7338187.5, 7338225.549460621, 7338272.145729261, 7338302.351139322, 7338362.809253988, 7338421.875, 7338423.154020059, 7338426.767879981, 7338433.876576806, 7338572.933288442, 7338671.111615181, 7338681.25, 7338715.2593237255, 7338736.354178665, 7338757.7750121495, 7338966.607837479, 7339390.70563659, 7339473.506898537, 7339542.1875, 7339856.706543069, 7340393.75, 7340620.207823994, 7341006.25, 7341178.125, 7341266.388506963, 7341320.3125, 7341326.266218089, 7341389.356048372, 7341467.949622929, 7341592.1875, 7341899.030563772, 7342125.86207856, 7342246.725880222, 7342357.8125, 7342418.080893012, 7342751.234404872, 7342846.103681654, 7342879.6875, 7343189.061533134, 7343788.963583038, 7343984.375, 7344471.806779626, 7344851.180326266, 7345345.3125, 7345613.587240875, 7345767.1875, 7346096.875, 7346526.5625, 7348956.172523605, 7348961.177679174, 7349012.986480141, 7349030.903378966, 7349904.865466098, 7350121.875576613, 7350756.196692568, 7350759.375, 7351072.39827583, 7351075.778580214, 7351357.8125, 7351379.565329277, 7351675.0, 7352291.620805912, 7352973.048101757, 7353005.859286807, 7353128.589826097, 7353984.473249854, 7355384.375, 7355385.069628338, 7356674.177075568, 7356743.75, 7357005.156079868, 7357268.128353957, 7360432.881534145, 7360542.443145566, 7361191.916985407, 7361358.313966383, 7361641.684937347, 7362556.962059556, 7362696.875, 7362853.28399113, 7364023.63940077, 7368430.209077034, 7368847.533533342, 7369126.297100131, 7371409.98283108, 7372705.231510487, 7384642.676300576, 7384649.6765688285, 7385388.2464515045, 7389969.564341021, 7395309.298345937, 7395400.28615239, 7401306.307129287, 7406903.269813159, 7407312.5, 7407328.125, 7407771.8583129635, 7407809.567867448, 7407829.713368226, 7408016.052131316, 7409011.975624443, 7409073.280357263, 7409334.375, 7409440.61977656, 7409501.5625, 7410032.8125, 7410204.383622429, 7410471.875, 7410472.107666785, 7410596.930794232, 7410614.028617229, 7410620.3125, 7410620.3125, 7410623.314623637, 7410729.6875, 7410747.505353026, 7410872.659310778, 7410948.4375, 7411214.0625, 7411260.9375, 7411312.524055359, 7411381.910499002, 7411733.513438383, 7411890.625, 7412034.2009335365, 7412121.875, 7412140.117413248, 7412228.125, 7412421.317083104, 7412450.074777172, 7412487.5, 7412511.3673473755, 7412529.6875, 7412533.059365086, 7412712.849042028, 7412804.6875, 7412873.4375, 7412957.233827548, 7412988.929594184, 7413090.625, 7413098.21834438, 7413099.752397678, 7413543.75, 7413567.1875, 7413628.282473464, 7414073.6295471275, 7414102.059846401, 7414141.4210890625, 7414159.61458588, 7414178.804836377, 7414217.1875, 7414434.207664515, 7414753.672729729, 7414756.846015807, 7414768.156833553, 7414810.199022755, 7414892.1875, 7415046.875, 7415121.875, 7415176.5625, 7415510.677865033, 7415610.579347533, 7415712.717497018, 7415739.111025835, 7415746.382809167, 7415829.349406964, 7415976.926243853, 7416041.924700349, 7416103.125, 7416133.951173506, 7416146.73715428, 7416171.875, 7416237.932070111, 7416260.904595588, 7416341.20378046, 7416345.248469157, 7416379.00383661, 7416396.875, 7416434.602614635, 7416455.524547673, 7416531.2441381095, 7416578.455771789, 7416596.875, 7416596.970145905, 7416650.118756138, 7416711.617625246, 7416754.40066205, 7416793.75, 7416834.375, 7416866.870038107, 7416906.632442979, 7416921.875, 7416943.75, 7417086.074676373, 7417086.770359364, 7417162.5, 7417445.3125, 7417495.180091671, 7417691.488922634, 7417955.774017107, 7418035.556390198, 7418090.625, 7418120.100479924, 7418229.291313189, 7418396.856713902, 7418398.081253598, 7418418.618755794, 7418539.642584694, 7418605.524679634, 7418665.625, 7418683.845779131, 7418798.4375, 7418867.1875, 7418903.125, 7418905.4815220935, 7419021.875, 7419065.625, 7419207.8125, 7419267.1875, 7419556.25, 7419646.824302795, 7419831.606241279, 7419923.337522939, 7419975.521885842, 7420169.249705481, 7420231.373811796, 7421245.118767299, 7421359.774225656, 7421865.996043256, 7422243.737916965, 7422842.964579518, 7423789.980332862, 7424381.478944254, 7425788.059054364, 7426034.012103568, 7426526.169349496, 7427043.535824141, 7427223.274790155, 7427248.015462581, 7427351.662694951, 7427517.779435654, 7427519.823598237, 7427767.881874699, 7427990.17492454, 7428045.286979203, 7428086.168791953, 7428104.6875, 7428116.915993924, 7428247.74124481, 7428403.078910689, 7428494.610876258, 7428502.850498406, 7429463.860199771, 7429505.438003482, 7429696.875, 7429957.2722181855, 7430263.597018506, 7430379.191486077, 7430562.5, 7430898.590991023, 7431108.427646491, 7431216.662785338, 7431356.916485882, 7431584.011416217, 7431608.371166534, 7431671.875, 7433563.426061914, 7433564.148395285, 7433988.149018031, 7434114.035039979, 7434425.0, 7435329.525578924, 7436036.172418615, 7436617.84847434, 7439465.497095819, 7440112.639610838, 7442824.170717555, 7447198.4375, 7448388.480922884, 7449332.123674351, 7449387.209429767, 7449464.226218791, 7452490.9168797955, 7453354.940612493, 7455516.437052345, 7455637.488249827, 7456688.061723243, 7457642.383715924, 7458158.1625401545, 7459456.540133822, ...], [70.87302497606748, 9.183175603314755, 46.98446935251356, 5.163115251874986, 16.146014857893515, 24.399432456054072, 229.01921475492446, 76.47944966966264, 18.758526375076137, 48.19441561826658, 6.969623695697363, 36.90078166184731, 9.053719836184662, 7.388041378454243, 17.514443058843185, 5.667454028158528, 85.84294576525409, 49.34331621388995, 55.81243678192806, 5.60367468266916, 5.05858553655131, 58.784430822296926, 68.52858260090969, 30.208669565548142, 36.98607202961634, 18.241884157964517, 29.29042421052544, 5.162776084709278, 19.304254276599053, 14.718334510163933, 7.277718222642615, 31.06978328830136, 15.694474764257434, 20.32144995342924, 23.16776075449441, 41.86480751121046, 12.980630430887715, 30.522486206105665, 42.582876093840454, 10.14236322320258, 7.7719156198147035, 114.31094543635766, 81.60116503128253, 33.011365872274084, 16.90234996702373, 22.077474390645317, 9.846479042452227, 28.267375956471348, 12.91249355753871, 59.36170211743468, 27.51430589786633, 16.432022050243933, 6.706320467157947, 9.075495512420414, 5.70038701021262, 65.53804378746366, 16.73567015412716, 32.67970544140382, 115.71469785828376, 24.88563036926385, 73.80992495525177, 88.1748464791326, 56.65885369490364, 10.88129881463778, 17.202955568345757, 10.133723928777451, 18.779017536913717, 71.73280523345613, 54.13193394763954, 15.620022484707475, 97.6614050206496, 5.236727925760053, 10.6491925438902, 109.28587105843117, 16.593852535807155, 5.5323362724742715, 280.80693346521844, 103.38717995833744, 10.69757143490432, 111.36167205858807, 50.195935442460005, 61.18674927485501, 48.781678777916625, 7.502260839080905, 8.3366156360806, 142.34616376657522, 14.411247751279348, 28.33073999138796, 15.22662836473783, 38.07821261990843, 99.8966779850055, 13.206446220378892, 31.35746083563964, 80.9713537848119, 6.58817475488737, 59.712352692725226, 5.1528213895517965, 78.6850177208038, 58.454320512659834, 81.95397874223677, 23.662214734342015, 79.60495493585266, 5.491904559578188, 11.267430994467551, 25.350691715904162, 44.86555260490065, 31.788248621443152, 18.994592390923124, 15.472097143110108, 112.57988699700093, 21.297231420303106, 6.219982282272625, 28.967898553143844, 124.9868167253024, 50.20840454312464, 6.76768679117877, 27.204207959922282, 16.188074493554943, 34.572647102354104, 5.508965419837714, 74.607890050082, 13.162306450105888, 9.000033632942214, 22.425219342579407, 49.71176008465417, 5.497377383141487, 123.75346841984701, 7.370567318514547, 41.5403420698076, 8.283975495819488, 11.64188516221383, 50.5548546110047, 16.685644262004057, 50.34353247902378, 106.12597781745357, 11.37489746601372, 44.31246373265859, 23.54065230989457, 21.490034634152387, 110.94640065108808, 9.167342538250749, 71.41201796640627, 25.473210243974403, 67.70385819022249, 7.176031651979509, 23.88077974548596, 18.925418354572514, 116.15084105048156, 14.87524863911037, 6.676433621803279, 10.34013446950311, 70.42622783137875, 72.86637881444882, 7.3131469990880795, 65.35818550950503, 14.308859834937623, 84.91509331157943, 27.539118854622487, 150.19342155811418, 84.25920540722956, 10.553434265756612, 62.550367829643925, 15.966373701528207, 8.74917741835702, 14.263020872193556, 99.14642368077712, 95.02992042543607, 88.89437798374192, 33.47855071109736, 73.44500422267527, 45.69449861034966, 19.69736603953706, 38.33893899202421, 22.016713459349695, 204.32731463231124, 75.16550474234533, 30.918099288371913, 21.667528084723426, 67.11490621276933, 10.316673290452567, 47.92275793587127, 33.513295025179055, 72.22133896395172, 37.41309092846943, 47.73988971943294, 33.480926588025476, 74.39297565246423, 43.111430642235675, 58.914349994124386, 108.77380178827421, 34.65470420328424, 20.925331379772942, 59.40682045043326, 5.1016722815220374, 6.250554623597063, 52.90748653507588, 47.127311303811794, 8.60253746143651, 6.23946419066123, 162.1233149032513, 15.954812623951732, 24.756838209030896, 81.11047165554112, 48.23477216619646, 85.89326287643829, 33.31827162306208, 6.783963990468759, 70.91308051923053, 137.46755935329935, 37.343633117209464, 13.998842588194826, 6.628318320927259, 9.350616489222494, 30.123807251656828, 8.603588884983578, 100.90986428000339, 63.20645657357766, 53.02950477609473, 55.48601446357173, 88.82520372388437, 26.466099813175898, 12.864162794109657, 26.67323419767458, 49.48497378193564, 33.225676860062535, 17.963128848362405, 6.1768478061869505, 17.564733390533, 9.555969737618554, 106.89319068934219, 19.03651043041089, 66.16080470911396, 9.9527903464556, 63.932029686322906, 17.92944041766771, 174.17466426412375, 19.154131106184877, 30.971953608139916, 7.5998871946530855, 31.740713861178776, 19.50468748424091, 6.900136159386105, 41.0671949811216, 79.04045272415654, 69.96730398784781, 92.21226846933553, 9.468583679668019, 21.09846351249941, 138.80209322522572, 8.329692419060686, 33.714280809799014, 11.478052425318506, 72.14482750364729, 68.07699631639315, 79.65425759030484, 8.010233278974438, 20.073639369165917, 5.394838487058159, 22.42045999324531, 80.57448168957103, 69.09426333917116, 92.84760639116932, 6.536103009188567, 59.49275045893314, 10.057925179196568, 44.621354563580354, 5.9224025116398336, 30.209966234360188, 218.5517282151821, 25.202997676502633, 50.219956949480355, 10.329180071685798, 21.537065682921806, 6.167888518971249, 35.251832487296085, 13.758419089582574, 7.215694688642529, 66.12962894789659, 38.49645184401333, 55.91782000657666, 81.52758806112503, 91.75592834804105, 187.46440005709397, 201.97560420433712, 173.8613905885217, 16.78967782133195, 9.176169178595481, 14.718010860164975, 6.322726147809003, 7.632732618139838, 30.02187671351446, 53.096357431788164, 23.125100325003096, 13.657413548986309, 20.122330269447477, 33.35711695052241, 22.23382303730161, 143.7837400034918, 34.545550220720564, 28.535501686954387, 84.28728326670824, 122.9196919496758, 40.050936333701465, 57.746182549631584, 22.098621475284272, 34.573351036976675, 61.82767034763685, 24.976226155885815, 79.168376151395, 39.668575119866176, 8.027887452371363, 40.416728412774084, 67.38622315420707, 17.08106924845664, 198.3171947447748, 43.62891071046057, 62.514451151695205, 70.41897057751468, 15.309374270314567, 9.97857977897367, 131.56422268547368, 41.781635613850895, 19.315493929619606, 35.813257500697404, 12.807668353245885, 30.527161495457705, 95.15946118963532, 29.390385972686577, 6.164423408866447, 75.00915457458179, 7.764759431422025, 20.084096826638067, 12.724093320189354, 31.263955380125225, 35.52214854364447, 256.556751798211, 238.2820581476175, 19.737411978534702, 59.27148735114599, 67.47532785677102, 60.27129118132891, 83.5627274222172, 8.191788512016704, 42.48718704279963, 30.45389051326308, 28.38888567264635, 61.398181661198244, 203.6410433267939, 72.57981891319632, 15.564996989864083, 58.83507530393164, 32.425518801240315, 19.96515512744986, 58.41175968222343, 5.857831970457662, 21.35956096797736, 24.213033112617445, 155.85615147343236, 94.94309201737181, 5.807562790219203, 14.753632632717016, 11.688338852034791, 33.08483499041314, 17.347467767542348, 117.81676759879397, 65.38964196041601, 11.710585144360191, 75.27424721828247, 26.443429925094172, 7.853929456602108, 30.246453150341413, 20.054762393608442, 23.188780184624537, 29.50911263307029, 35.61018857195136, 94.19914443654332, 5.696951336824917, 36.70454815112722, 22.697394905997417, 305.4050282885979, 14.491358499454115, 122.98034956545672, 89.11060950742967, 24.017974790800277, 12.25616700522295, 23.263365162947647, 113.18128100290447, 16.13468640915295, 59.024045933632465, 41.385621533445345, 7.1698164737621, 20.92199780651366, 5.483293009830545, 105.80930532833025, 67.49225780572752, 82.29799195102208, 124.09299995543084, 154.78689727432882, 13.465529284126108, 32.94094104582024, 11.70547009135981, 20.505779021670353, 104.96442371034094, 49.40897387912067, 6.866497553930581, 63.86193510080966, 14.060758444461834, 89.88376788214663, 88.95372961635248, 46.51443617849525, 27.324157257496843, 20.348395463198216, 38.94226985029401, 14.671474193500906, 82.48476829073499, 39.07273817738148, 22.83503804394538, 49.53218373181503, 9.829571256632217, 10.049756847268409, 36.92094294837501, 52.12138272781256, 21.763849253725578, 34.57086834186597, 78.95859956540673, 41.137015164693146, 79.18666027640562, 12.291216853843618, 55.3435958110386, 124.5505973133142, 22.91664508669857, 10.094164060568612, 142.1618019224953, 23.701286405799678, 18.049232109360016, 15.993758273360664, 105.39794605334367, 42.68067607462798, 94.81824466070614, 27.445470522790334, 51.580312380512716, 5.303464279141042, 7.12491622636351, 56.26840004542288, 38.424187983531034, 66.32427116844823, 38.93890986083122, 67.13946410587147, 40.65832829018579, 19.459349103575256, 45.62630904979838, 84.94406539499164, 8.979450594006892, 15.737740080654916, 61.86900942303329, 98.73867037260085, 79.19113209757157, 89.16343781310344, 5.619844454037803, 7.728855396817157, 11.817432203677924, 46.6774859277141, 40.55210337353516, 481.8950931782929, 235.87444402983175, 35.05336068756804, 19.441757947135134, 55.809815029817706, 273.29730790324044, 113.36545440872857, 20.264708854262466, 18.855419837296747, 60.66519231825025, 164.41292981553124, 62.689805605260986, 79.91111672049199, 34.92700016726628, 129.71457800404548, 56.21431506089008, 6.1359773822448656, 21.950960571265053, 60.63534130878698, 122.5607003139252, 88.96426730677337, 12.393266552645768, 45.606701967767535, 42.137197560468984, 30.71638096484365, 123.57667713759068, 6.635572857992881, 69.21326288663465, 24.158588938921255, 40.13778372019126, 86.68741374703798, 37.23048874388722, 51.31963243440258, 20.757932752470843, 11.97030257334823, 97.77194499587412, 96.3101013537875, 78.88113177319516, 72.22010977757503, 27.929561561162895, 5.52843119434834, 60.698880538690304, 34.48530973340256, 40.873186392321344, 32.4925739594451, 19.377903235201188, 13.91041149004839, 90.51204142810758, 161.04856457878216, 79.53661145893973, 67.7775027286043, 18.28261123658907, 216.02045096074812, 38.58473623116995, 7.140605810821415, 104.11152561160824, 8.280478541719761, 14.846652226395499, 100.08493917779883, 18.127356039370838, 9.223522501113033, 13.994307194749426, 46.92197519365494, 55.54493099668893, 80.12304066216021, 37.978834698760345, 9.362014147219256, 16.237930380861858, 43.44258527437419, 6.255428529447006, 34.803812967173606, 12.696206039735012, 13.935106302277198, 114.7250497845553, 77.6946027362595, 33.09545692253999, 25.20138981510976, 233.04969641597467, 84.92558690248633, 57.57095966367377, 38.62652091564057, 10.57155109381929, 323.65866154833896, 7.851233354725893, 8.873648320165481, 62.36529704098162, 13.423170435719346, 52.613154986404766, 101.9838273827881, 91.915927726593, 41.959834373290256, 6.344802294012371, 66.37878213983484, 48.443887081649436, 14.541677055589957, 44.378719270761394, 28.201684874022522, 79.76295328127213, 77.10723181319715, 15.373957264374484, 58.949910535919344, 37.27464019633001, 144.64993677862003, 213.06828644486413, 45.708552901260084, 58.719113526722445, 25.26498225688097, 81.02332985077604, 43.74288660760908, 18.244215610516452, 34.65361897968225, 17.687554490870525, 45.71081266564413, 40.8442796786714, 168.76465919227252, 87.65744061512407, 15.805305150840686, 59.714939469639575, 81.45776348206435, 179.75437694890977, 35.129334081400856, 14.908649845056814, 81.35609990324801, 18.792807907851387, 13.569702991420868, 50.67502360132994, 42.74448304724874, 6.690445305052081, 68.58481887803632, 73.4214584488527, 50.54756981625506, 20.670888851304476, 31.46466745056133, 19.595719744705164, 58.019149057068574, 198.2267167924343, 82.57441962804067, 276.3386038709249, 45.0173338051758, 25.240199134833375, 6.3711451076096814, 22.9691103928426, 33.63166205209936, 50.00830859396545, 44.60106259848672, 31.182510902976254, 5.581154100881813, 23.063988453369145, 31.5884021612252, 87.26494799104867, 7.73194608226364, 89.78868658052488, 63.664708984633144, 85.56618419836346, 27.73778672038287, 17.698345763753437, 75.24589525065365, 12.587876151264645, 81.23437225840082, 172.22752498762895, 7.032354674385901, 66.56740263328791, 11.826365265907448, 16.198964631402617, 69.41517737369799, 14.31740224872058, 158.40718532241016, 35.35627170681214, 57.7952587216448, 102.6683073566771, 7.094922325715054, 105.2425652496394, 24.85702156553741, 42.38210959549443, 49.40005750156367, 126.80840131911768, 9.983078084821972, 51.20800849847599, 242.4135481869928, 119.36615065147062, 24.10298273780211, 18.762938912325332, 8.625459709444826, 59.16042199582494, 50.357244746242955, 16.06636556043924, 54.18288346726902, 110.6994815708796, 5.864309455402783, 43.52029024219014, 46.07473291569695, 9.101128405753729, 147.1821399374534, 5.0585484793485085, 58.07665002071674, 5.027883551857652, 209.827720749324, 30.407207376994233, 46.9569954345197, 22.729994287490257, 22.3877229356598, 21.629129141602974, 196.47058761187944, 41.374050235348065, 49.22632173584229, 18.388688764663367, 58.62682224823084, 13.771532496791245, 110.76628871339386, 60.52143515142498, 16.474228982001666, 91.57980743709751, 8.032570894503369, 60.067028893947295, 157.50109502666876, 199.47099051825242, 60.163553141643256, 72.84841251066945, 118.46026995268224, 63.61036543807924, 19.7665816547163, 87.12343228436103, 84.60908187975187, 47.953253067805306, 10.777610550837148, 123.44499856674938, 44.59441296950509, 76.59201606135348, 175.1043940110305, 34.777919526146675, 26.295529800937466, 5.1345083428536, 8.162479344680818, 6.11861110890897, 64.9501488743652, 5.135943192049889, 142.20081484783637, 11.159600916085449, 34.09251874779707, 7.3116001639931945, 342.66284040979446, 137.43432676932395, 74.93273825041821, 48.43833144334779, 236.10568197900895, 11.723936217604713, 19.225013586075065, 75.91631042077977, 8.600211190425792, 87.1735949419505, 41.02575275622348, 34.012867788811775, 31.513325468700405, 10.711748462432881, 76.5104919997969, 13.330366611492154, 128.94946463019113, 26.75727070194337, 42.47416206213815, 13.709624131268566, 5.47993965436095, 116.69610044721185, 6.196638536031023, 12.68316501149716, 26.90178654870732, 262.29508881781703, 26.54172036923827, 142.17745006818893, 65.21652629878727, 36.306061960408876, 53.23818159117862, 148.53355800926187, 92.32807546930798, 16.084908303358247, 16.1923447299096, 70.77284931206096, 179.9871418580817, 7.832812554748081, 88.78396585481512, 14.402046803322941, 61.50579938439034, 32.736157461012795, 8.120375141851795, 63.88651415246736, 63.49399799143969, 11.126195866886395, 5.700491456304462, 127.07462728450723, 27.2441444876442, 22.75492575998828, 49.07675369827237, 75.33004032603289, 91.45621884601013, 92.46813686098923, 168.32110315847476, 256.94584268507145, 451.5003173922081, 36.39897304650127, 5.035750709196995, 15.666184369768649, 14.943707653371897, 63.856094154873105, 38.81041991814438, 67.3297020485893, 78.54524976278691, 28.889389857795216, 26.32325389387261, 102.61984100358299, 20.852627602332536, 22.67223964497047, 29.5819822499494, 17.068554194339892, 7.639163764814423, 78.2598097125833, 70.30828414063643, 11.63380533996179, 32.16325116296521, 11.948664650581666, 59.942169258547295, 15.211329816112066, 16.014496862789954, 14.610100382472655, 17.2730821109397, 70.26023381767985, 16.199419298113632, 79.08123860920321, 11.38565935699121, 21.73163856371576, 12.054183234838423, 22.813498967292333, 38.69490242208644, 113.23553521499669, 5.178227874532873, 29.404723964778405, 283.4790775782011, 6.007158521528364, 6.177085420909107, 59.19558704662877, 11.606515578687361, 141.52042488208446, 15.52377420700764, 38.403558777527266, 43.71642599573669, 22.402960511443833, 54.17381382080448, 5.204081462465927, 16.86478101343768, 104.86279062868803, 57.60525133849556, 71.69791865581112, 28.42210129228167, 45.59721586075379, 55.85031103309909, 23.701337109242196, 51.22166301607944, 7.183985949499552, 24.4282015620234, 50.08718241402747, 44.42636637225467, 60.92281392760346, 26.31169943596132, 78.6843785129295, 7.848330163063212, 115.03322341492387, 33.82613508892777, 56.12704755954883, 57.795469817071336, 5.131016631244637, 73.58940202735072, 5.145770568340665, 233.5682029411101, 8.196624199986323, 62.04294135773035, 8.035235904553424, 65.45524561703363, 172.18493414298678, 15.234396392662635, 50.851760143603144, 126.9025059312872, 63.24193078025508, 26.85824906134645, 200.17291804127512, 50.956437523071905, 103.27429543257405, 20.742629353406798, 25.53141824947157, 59.93749294561071, 206.23835501988998, 24.44394760090732, 156.02128228740912, 42.749726505549205, 162.71558538193312, 42.6959450668763, 127.27459680534514, 12.651183695477773, 114.26773491644344, 17.123689891631646, 148.23016174387345, 94.26017156523747, 9.8418698182643, 132.37598294175808, 62.12987825688965, 51.4232439916266, 48.86099650047332, 56.67246823241488, 152.21681844598208, 142.82661957049075, 24.280416164415037, 113.93094123404425, 11.485583291725026, 256.8011491365202, 108.43658583120923, 185.66547396530115, 30.837367809356216, 62.47095851422696, 66.96494171885672, 198.69524613802582, 53.548910458826356, 44.08151908500967, 16.89110741451427, 8.26925323498785, 64.8164685412342, 27.318894839347784, 22.131769689266996, 63.30590841860332, 22.31030543437927, 12.748270091947925, 64.23974031973952, 61.4297165253807, 92.22697293961686, 16.353924505025148, 15.414333018462232, 6.907334521155886, 26.587975605773742, 107.6029398776862, 88.56473903752081, 42.586808311851414, 7.225749103428992, 52.28744853297186, 116.11876923044493, 21.480682227787646, 6.942009054886145, 76.3347745372997, 53.61981329531434, 73.93446497910013, 5.115847805156183, 63.38744297468456, 123.40101867352676, 35.57098698347436, 14.190607642843506, 145.54722427334136, 46.343198240211265, 35.721869164837486, 200.58321850331097, 9.875307035554135, 5.5751395211631225, 35.64654272871009, 8.920709617596101, 47.48951287527286, 29.81508459123013, 41.49058608597145, 34.93377599331694, 28.792337508359537, 43.99141950757409, 46.24180847285203, 42.63060264206538, 40.04849329669568, 83.22453099247424, 11.734267366815933, 7.56747355037706, 17.38994171446161, 7.7945571442723836, 11.326909074401494, 25.210202072737815, 149.40363914764794, 86.98716683027898, 56.056244794403355, 6.172816793736131, 43.88673830355082, 92.79335460183302, 17.608165081518656, 143.51427687216568, 114.66770749402413, 14.183518312490417, 30.98322111747725, 5.512942417998567, 11.288014728774796, 6.344998616708136, 19.88787951217336, 109.96352156285148, 135.76262193245148, 51.089136181498624, 189.94050841453753, 57.27707609018785, 60.53159563280124, 89.78016259188007, 32.924574940742076, 43.295730334720076, 228.1069513047326, 5.799161893935052, 20.876766674032197, 81.27513843894752, 15.477684301124718, 137.523946410334, 8.040609592467765, 98.15237571498923, 201.37362913630878, 5.747058901990088, 21.250050922175443, 165.73057493252927, 22.97116048728629, 165.76213629628577, 94.39505775440512, 64.72289174279898, 5.946920873703748, 82.05079380181388, 14.850148478876271, 45.605709615759395, 5.3364036869086595, 11.515887843562743, 72.70975162118984, 80.51689242001551, 53.63477275286046, 307.6721197570087, 50.4871495731066, 20.716175965345567, 19.795809278103963, 23.871945857034742, 6.79663792170151, 39.2918019524043, 25.474819776531376, 213.01750630823972, 45.05669731105343, 7.8198761264751155, 29.53409851204097, 28.463125902249736, 108.39470242567262, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3841970.3125, 4718937.319337009, 5229068.75, 5229129.590784737, 5298364.346284543, 5459432.712402757, 5481705.930116726, 5530340.625, 5530342.508458878, 5541951.315100162, 5866332.201618813, 5866523.4375, 5867535.589765672, 5926205.613056854, 6057734.918242133, 6200547.8016914725, 6201034.375, 6203820.3125, 6204227.953867149, 6204534.186029445, 6204627.549897598, 6204925.0, 6205054.6875, 6206824.410982675, 6207621.875, 6207775.660378549, 6208140.625, 6208237.388636292, 6208505.371886939, 6208559.315188776, 6209142.7503817165, 6209460.625302682, 6209792.371953093, 6209914.9989387505, 6211455.965383415, 6211964.0625, 6214047.806339378, 6214342.69615617, 6216552.789949987, 6217444.575122807, 6217478.568471816, 6217871.875, 6218713.662591858, 6219832.7723708935, 6226608.246672892, 6228439.067458776, 6240725.552213102, 6240771.07117405, 6247293.091718935, 6256217.1875, 6289677.062546992, 6292499.911842237, 6292959.081645304, 6294794.993507184, 6295632.711926665, 6296018.75, 6297784.767528563, 6300388.744258886, 6300831.25, 6309862.283939541, 6310792.1875, 6310838.073584061, 6311107.76902699, 6311334.211420715, 6311781.739034747, 6311810.192549146, 6320583.551797501, 6325635.9375, 6342202.287817113, 6342254.854811325, 6343290.625, 6344224.696438583, 6344530.920655984, 6347476.8718078, 6382248.812572954, 6382948.4221551865, 6385321.515693863, 6401352.793688946, 6422229.39370495, 6430404.303626034, 6448187.023094998, 6463309.375, 6464623.4375, 6464640.336909174, 6465389.155939539, 6465512.251049892, 6465818.603557436, 6465874.990111837, 6466168.822845836, 6468167.1875, 6469829.20182248, 6469865.080741927, 6469912.5, 6469934.375, 6470224.053388202, 6470479.241176543, 6470629.140777703, 6470764.0625, 6470864.050662381, 6470921.713042394, 6470966.880537801, 6471357.8125, 6471438.183858498, 6471521.9625891475, 6471589.424050054, 6471593.75, 6471638.830824679, 6472041.394344631, 6472070.798972667, 6472167.1875, 6472223.986919291, 6472268.366917987, 6472400.525368848, 6472412.893215946, 6472526.5625, 6472576.5834025685, 6472621.8045300795, 6472627.099704385, 6472634.245457581, 6472683.867902, 6472809.375, 6472919.751604916, 6472980.83025918, 6473010.3371379785, 6473100.0, 6473135.179232705, 6473182.787341604, 6473327.432370664, 6473383.919822452, 6473479.682576659, 6473506.555802709, 6473520.119100652, 6473921.933084083, 6473985.9375, 6473990.625, 6474114.215090907, 6474135.9375, 6474158.971248535, 6474278.289374947, 6474284.375, 6474309.174383971, 6474357.281257288, 6474401.019630688, 6474498.4375, 6474498.641140645, 6474558.414221311, 6474613.259799807, 6474617.1875, 6474635.920006407, 6474685.485126222, 6474768.180038771, 6474832.459163868, 6474985.9375, 6475013.182280187, 6475100.0, 6475115.448487078, 6475296.794267013, 6475465.853091466, 6475807.710852339, 6475945.3125, 6475958.973661174, 6476153.09165669, 6476153.730559697, 6476413.2830785895, 6476701.31837867, 6476726.5625, 6476829.366539366, 6476831.762255478, 6476871.875, 6476926.5625, 6476945.3125, 6477498.119469463, 6477538.911293086, 6477554.238435233, 6477557.90604668, 6477585.893371002, 6478060.362075271, 6478380.767309585, 6478504.6875, 6478663.473257447, 6478743.75, 6479085.025251464, 6479373.4375, 6479584.545324103, 6479603.125, 6479916.938162303, 6480087.433409252, 6480138.97594327, 6480602.863917879, 6480663.2836163305, 6480728.125, 6480919.753635864, 6481013.589780801, 6481100.162716009, 6481199.8671197435, 6481577.457577116, 6481640.913555596, 6481891.1782342205, 6482790.402285614, 6483133.171677998, 6483573.680165655, 6484046.168522633, 6484329.6875, 6484679.6875, 6489012.624616633, 6489023.4375, 6489067.289113941, 6489192.1875, 6489953.22241992, 6490240.051251683, 6490685.123617484, 6492339.90790614, 6493551.58513562, 6494588.481084244, 6494889.617438455, 6495442.1875, 6500573.4375, 6504169.48554914, 6518046.875, 6519596.467174079, 6524798.841978585, 6528397.654043326, 6534475.591611079, 6540239.901244282, 6546231.25, 6547041.2419698695, 6547963.312271387, 6549355.239254681, 6549720.566657911, 6553496.875, 6574324.212584885, 6591438.687049724, 6611845.966079408, 6612340.879257808, 6620712.444767222, 6636042.1875, 6651782.872948609, 6735287.058111005, 6737496.865726883, 6745153.082477322, 6745766.998469613, 6746077.210400094, 6746710.644717265, 6746943.75, 6747067.1875, 6747467.6848596, 6747500.15790047, 6747578.539364928, 6749871.875, 6756795.393150983, 6758189.0625, 6762850.213144708, 6767416.026040054, 6775794.6282927105, 6776775.0, 6776790.063122126, 6778780.594871188, 6778837.404574341, 6781165.21319622, 6783613.329647138, 6787054.6875, 6787670.024241128, 6789136.243191088, 6789765.625, 6790274.187619316, 6791167.1875, 6791199.80266299, 6791214.416342172, 6791329.6875, 6791336.400635049, 6791501.940319104, 6791515.046054802, 6792001.066896062, 6792022.608843828, 6792108.585444484, 6792212.915714598, 6792219.096781688, 6792224.903878575, 6792371.875, 6792471.875, 6792518.253248555, 6792613.908598816, 6792810.9375, 6793175.177726698, 6793206.25, 6793264.49794295, 6793276.373023523, 6793309.31510017, 6793536.364714886, 6793546.955819467, 6793691.858752326, 6793792.1875, 6793989.63900481, 6794195.267220187, 6794314.97565455, 6794404.6875, 6794438.633680801, 6794868.75, 6795233.852993078, 6795495.214781571, 6795625.0, 6795944.937310518, 6796051.5625, 6796132.8125, 6796336.674455445, 6796673.4375, 6796715.105553795, 6796842.8366547935, 6796892.1875, 6797112.469426611, 6797252.601533005, 6798184.017158526, 6798263.900055529, 6798283.279601892, 6798322.114876188, 6798400.0, 6798446.875, 6798460.9375, 6799507.9057780765, 6800942.865093541, 6801074.65371594, 6801317.1875, 6801463.312470422, 6801685.257545966, 6802471.174143594, 6802553.125, 6803936.053920433, 6805368.468022071, 6821342.890804884, 6827900.0, 6828220.738043858, 6829648.456286212, 6830466.4519366855, 6831634.750896934, 6832209.375, 6832285.9375, 6833218.368357912, 6834472.075261561, 6834828.970430002, 6835315.625, 6835351.164636514, 6835754.6875, 6835857.6288460335, 6836038.876958398, 6836803.125, 6837396.868084738, 6837401.5625, 6838427.757404784, 6838775.411060224, 6845086.091996261, 6848857.542680277, 6853057.602314933, 6860562.417896081, 6860773.4375, 6860834.950577338, 6861352.413222024, 6861532.022906822, 6861628.241123471, 6861981.25, 6862020.225388988, 6862267.137319339, 6862270.643823804, 6862336.916810673, 6862922.525597738, 6862923.343757256, 6863087.5, 6863256.817322454, 6863396.875, 6863635.064040396, 6863811.581227512, 6864378.125, 6864494.655119398, 6864773.092194681, 6864795.3125, 6864964.0625, 6864977.165018739, 6865609.219799789, 6865686.811089369, 6866104.300306527, 6867257.109235765, 6867601.439162375, 6867629.936423413, 6867809.29907518, 6868330.970636656, 6868508.431585357, 6868555.298072, 6868640.625, 6868880.62509008, 6871987.143034962, 6883071.025456524, 6883076.743347332, 6884161.94077835, 6884516.117122318, 6891204.6875, 6895496.875, 6906500.0, 6906960.9375, 6908503.389998217, 6909252.675151116, 6909539.0625, 6910081.59065429, 6910880.644982243, 6913338.707322485, 6913346.875, 6913359.8698784085, 6913817.852782271, 6914349.939254331, 6915069.089733625, 6916373.4375, 6917273.4375, 6926018.829469598, 6935808.915899139, 6941693.721659054, 6945617.114802006, 6949484.332543997, 6949804.254932147, 6957136.40735495, 6957309.375, 6961158.348230148, 6963680.430246056, 6964476.318619425, 6964779.6875, 6966947.9642196465, 6977482.8125, 6978057.268679559, 6980960.741094551, 6981192.1875, 6981211.5730016, 6982003.083059399, 6982071.7847199505, 6982334.006770258, 6982439.845078568, 6982442.857788892, 6982443.369735276, 6982578.755566522, 6982583.063650481, 6982603.125, 6982797.63814391, 6982865.625, 6982868.693001537, 6982880.8894106215, 6982908.2080614995, 6983087.513163427, 6983106.942822976, 6983228.125, 6983259.375, 6983267.932014072, 6983387.5, 6983472.765826791, 6983638.560191699, 6983639.0625, 6983641.847332898, 6983702.677210635, 6983709.569311577, 6983762.190581158, 6983978.125, 6984035.9375, 6984215.625, 6984309.479371843, 6984370.646953988, 6984544.944300847, 6984695.3125, 6984906.25, 6984929.791435768, 6984946.766233003, 6985020.367662448, 6985096.141436657, 6985339.0625, 6985341.992513878, 6985342.1875, 6985344.679862999, 6985391.375048638, 6985970.3125, 6985987.163263167, 6986226.257946513, 6986282.72133385, 6986470.624617542, 6986582.8125, 6986595.3125, 6986645.760656882, 6986893.294705285, 6987178.125, 6987791.489111551, 6988034.726854392, 6988760.057485127, 6989493.75, 6991717.859848321, 6991727.735835124, 6996200.0, 6996672.761028374, 6998035.047553501, 6998635.041752947, 6999389.106479263, 7004435.9375, 7007174.4511391735, 7007617.1875, 7007821.078539802, 7010433.292067021, 7010446.875, 7011417.1875, 7013718.75, 7014242.740325645, 7014629.656700861, 7014856.153829029, 7014902.003171311, 7020528.125, 7020568.666421499, 7022042.1875, 7022063.316706671, 7027501.262845015, 7028625.27408283, 7040415.625, 7053268.043701059, 7068555.040465978, 7073169.416575414, 7073486.5534280455, 7073723.701404357, 7080554.759867909, 7081069.092274842, 7081912.488449278, 7084124.109065565, 7104782.8125, 7116220.95525624, 7118727.99459821, 7125287.227117788, 7134865.072160421, 7137672.770895444, 7137831.7940873755, 7138375.0, 7146487.535981658, 7153348.740581164, 7158777.272143116, 7159149.906270669, 7163179.6875, 7163805.502701289, 7165527.93341732, 7166343.75, 7169387.5, 7169641.895628606, 7171426.368170265, 7171702.559238106, 7171904.6875, 7172171.875, 7172710.9375, 7172821.487451723, 7173210.908145357, 7173214.699792916, 7173491.591517642, 7173539.603334399, 7173619.847583806, 7174879.6875, 7175046.875, 7175069.641552375, 7175173.4375, 7175280.277999667, 7175412.5, 7175673.4375, 7175770.125410269, 7176562.3011116, 7177019.127243048, 7177630.096756549, 7189945.250332515, 7191732.92151253, 7200386.432137141, 7200490.625, 7203765.587206593, 7204443.593733372, 7204471.614184031, 7204514.702081448, 7210561.123107161, 7211423.374587116, 7212892.1875, 7213099.795525229, 7216915.365335686, 7217414.6347748125, 7217821.875, 7218318.155537103, 7218418.75, 7218453.628102538, 7219086.147058257, 7220618.576320371, 7220653.40945464, 7220911.802966882, 7221418.75, 7221515.61635211, 7223078.125, 7223102.303746451, 7223935.524118298, 7224974.409154143, 7225129.294869594, 7225983.9976810105, 7226545.3125, 7229797.125950967, 7230736.276330808, 7231939.296078541, 7231990.21857179, 7233071.161146267, 7233195.3125, 7233333.494015369, 7233459.3702498, 7234444.781588808, 7238129.471592942, 7239372.099639225, 7240328.905706126, 7247376.626213368, 7253273.6342072515, 7253804.6875, 7254024.502811977, 7254332.086794202, 7255494.702275612, 7256651.206765043, 7256680.064629997, 7259123.4375, 7262045.654870946, 7262052.233005759, 7262065.625, 7263553.125, 7267418.708951529, 7269724.011559718, 7275046.844377604, 7275582.01886185, 7278780.202807621, 7286718.75, 7288062.149858788, 7291001.5625, 7291950.405286135, 7293844.044937261, 7296242.1875, 7298613.888519493, 7302271.4578801645, 7303403.174126128, 7304165.625, 7308664.0625, 7312001.460607387, 7316328.796557966, 7320006.89785459, 7322035.9375, 7328279.4234385, 7329261.76688395, 7330242.869259724, 7331759.375, 7332940.801251708, 7332965.625, 7332976.289584278, 7333136.674520453, 7333384.965199043, 7333959.994712933, 7334500.0, 7334504.954318506, 7334699.888868659, 7334865.1216692, 7334910.032797301, 7335210.7881365, 7335241.312889762, 7335248.152003171, 7335268.860410501, 7335300.985301046, 7335323.894064955, 7335325.735871053, 7335469.92751079, 7335493.75, 7335531.25, 7335535.578770095, 7335601.147737076, 7335608.888528988, 7335632.475011558, 7335806.25, 7336053.125, 7336228.8075471185, 7336231.25, 7336244.967479567, 7336509.678057574, 7336560.9375, 7336563.140024678, 7336637.496979945, 7336647.924161373, 7336776.028421884, 7336845.3125, 7336892.845772163, 7337006.902580038, 7337017.1875, 7337023.948084643, 7337047.226319638, 7337116.495058913, 7337204.431252657, 7337210.501018498, 7337307.184200448, 7337315.388845403, 7337322.417128302, 7337487.194654485, 7337604.6875, 7337696.875, 7337698.090357222, 7337706.414853753, 7337718.936509007, 7337793.507717471, 7337795.600885249, 7337812.38566769, 7337823.690354763, 7337832.718390322, 7337904.707809484, 7337910.9375, 7337930.364626565, 7338006.005494157, 7338006.25, 7338010.9375, 7338151.5625, 7338166.915690916, 7338170.6631633565, 7338183.549193066, 7338187.5, 7338225.549460621, 7338272.145729261, 7338302.351139322, 7338362.809253988, 7338421.875, 7338423.154020059, 7338426.767879981, 7338433.876576806, 7338572.933288442, 7338671.111615181, 7338681.25, 7338715.2593237255, 7338736.354178665, 7338757.7750121495, 7338966.607837479, 7339390.70563659, 7339473.506898537, 7339542.1875, 7339856.706543069, 7340393.75, 7340620.207823994, 7341006.25, 7341178.125, 7341266.388506963, 7341320.3125, 7341326.266218089, 7341389.356048372, 7341467.949622929, 7341592.1875, 7341899.030563772, 7342125.86207856, 7342246.725880222, 7342357.8125, 7342418.080893012, 7342751.234404872, 7342846.103681654, 7342879.6875, 7343189.061533134, 7343788.963583038, 7343984.375, 7344471.806779626, 7344851.180326266, 7345345.3125, 7345613.587240875, 7345767.1875, 7346096.875, 7346526.5625, 7348956.172523605, 7348961.177679174, 7349012.986480141, 7349030.903378966, 7349904.865466098, 7350121.875576613, 7350756.196692568, 7350759.375, 7351072.39827583, 7351075.778580214, 7351357.8125, 7351379.565329277, 7351675.0, 7352291.620805912, 7352973.048101757, 7353005.859286807, 7353128.589826097, 7353984.473249854, 7355384.375, 7355385.069628338, 7356674.177075568, 7356743.75, 7357005.156079868, 7357268.128353957, 7360432.881534145, 7360542.443145566, 7361191.916985407, 7361358.313966383, 7361641.684937347, 7362556.962059556, 7362696.875, 7362853.28399113, 7364023.63940077, 7368430.209077034, 7368847.533533342, 7369126.297100131, 7371409.98283108, 7372705.231510487, 7384642.676300576, 7384649.6765688285, 7385388.2464515045, 7389969.564341021, 7395309.298345937, 7395400.28615239, 7401306.307129287, 7406903.269813159, 7407312.5, 7407328.125, 7407771.8583129635, 7407809.567867448, 7407829.713368226, 7408016.052131316, 7409011.975624443, 7409073.280357263, 7409334.375, 7409440.61977656, 7409501.5625, 7410032.8125, 7410204.383622429, 7410471.875, 7410472.107666785, 7410596.930794232, 7410614.028617229, 7410620.3125, 7410620.3125, 7410623.314623637, 7410729.6875, 7410747.505353026, 7410872.659310778, 7410948.4375, 7411214.0625, 7411260.9375, 7411312.524055359, 7411381.910499002, 7411733.513438383, 7411890.625, 7412034.2009335365, 7412121.875, 7412140.117413248, 7412228.125, 7412421.317083104, 7412450.074777172, 7412487.5, 7412511.3673473755, 7412529.6875, 7412533.059365086, 7412712.849042028, 7412804.6875, 7412873.4375, 7412957.233827548, 7412988.929594184, 7413090.625, 7413098.21834438, 7413099.752397678, 7413543.75, 7413567.1875, 7413628.282473464, 7414073.6295471275, 7414102.059846401, 7414141.4210890625, 7414159.61458588, 7414178.804836377, 7414217.1875, 7414434.207664515, 7414753.672729729, 7414756.846015807, 7414768.156833553, 7414810.199022755, 7414892.1875, 7415046.875, 7415121.875, 7415176.5625, 7415510.677865033, 7415610.579347533, 7415712.717497018, 7415739.111025835, 7415746.382809167, 7415829.349406964, 7415976.926243853, 7416041.924700349, 7416103.125, 7416133.951173506, 7416146.73715428, 7416171.875, 7416237.932070111, 7416260.904595588, 7416341.20378046, 7416345.248469157, 7416379.00383661, 7416396.875, 7416434.602614635, 7416455.524547673, 7416531.2441381095, 7416578.455771789, 7416596.875, 7416596.970145905, 7416650.118756138, 7416711.617625246, 7416754.40066205, 7416793.75, 7416834.375, 7416866.870038107, 7416906.632442979, 7416921.875, 7416943.75, 7417086.074676373, 7417086.770359364, 7417162.5, 7417445.3125, 7417495.180091671, 7417691.488922634, 7417955.774017107, 7418035.556390198, 7418090.625, 7418120.100479924, 7418229.291313189, 7418396.856713902, 7418398.081253598, 7418418.618755794, 7418539.642584694, 7418605.524679634, 7418665.625, 7418683.845779131, 7418798.4375, 7418867.1875, 7418903.125, 7418905.4815220935, 7419021.875, 7419065.625, 7419207.8125, 7419267.1875, 7419556.25, 7419646.824302795, 7419831.606241279, 7419923.337522939, 7419975.521885842, 7420169.249705481, 7420231.373811796, 7421245.118767299, 7421359.774225656, 7421865.996043256, 7422243.737916965, 7422842.964579518, 7423789.980332862, 7424381.478944254, 7425788.059054364, 7426034.012103568, 7426526.169349496, 7427043.535824141, 7427223.274790155, 7427248.015462581, 7427351.662694951, 7427517.779435654, 7427519.823598237, 7427767.881874699, 7427990.17492454, 7428045.286979203, 7428086.168791953, 7428104.6875, 7428116.915993924, 7428247.74124481, 7428403.078910689, 7428494.610876258, 7428502.850498406, 7429463.860199771, 7429505.438003482, 7429696.875, 7429957.2722181855, 7430263.597018506, 7430379.191486077, 7430562.5, 7430898.590991023, 7431108.427646491, 7431216.662785338, 7431356.916485882, 7431584.011416217, 7431608.371166534, 7431671.875, 7433563.426061914, 7433564.148395285, 7433988.149018031, 7434114.035039979, 7434425.0, 7435329.525578924, 7436036.172418615, 7436617.84847434, 7439465.497095819, 7440112.639610838, 7442824.170717555, 7447198.4375, 7448388.480922884, 7449332.123674351, 7449387.209429767, 7449464.226218791, 7452490.9168797955, 7453354.940612493, 7455516.437052345, 7455637.488249827, 7456688.061723243, 7457642.383715924, 7458158.1625401545, 7459456.540133822, ...], [70.87302497606748, 9.183175603314755, 46.98446935251356, 5.163115251874986, 16.146014857893515, 24.399432456054072, 229.01921475492446, 76.47944966966264, 18.758526375076137, 48.19441561826658, 6.969623695697363, 36.90078166184731, 9.053719836184662, 7.388041378454243, 17.514443058843185, 5.667454028158528, 85.84294576525409, 49.34331621388995, 55.81243678192806, 5.60367468266916, 5.05858553655131, 58.784430822296926, 68.52858260090969, 30.208669565548142, 36.98607202961634, 18.241884157964517, 29.29042421052544, 5.162776084709278, 19.304254276599053, 14.718334510163933, 7.277718222642615, 31.06978328830136, 15.694474764257434, 20.32144995342924, 23.16776075449441, 41.86480751121046, 12.980630430887715, 30.522486206105665, 42.582876093840454, 10.14236322320258, 7.7719156198147035, 114.31094543635766, 81.60116503128253, 33.011365872274084, 16.90234996702373, 22.077474390645317, 9.846479042452227, 28.267375956471348, 12.91249355753871, 59.36170211743468, 27.51430589786633, 16.432022050243933, 6.706320467157947, 9.075495512420414, 5.70038701021262, 65.53804378746366, 16.73567015412716, 32.67970544140382, 115.71469785828376, 24.88563036926385, 73.80992495525177, 88.1748464791326, 56.65885369490364, 10.88129881463778, 17.202955568345757, 10.133723928777451, 18.779017536913717, 71.73280523345613, 54.13193394763954, 15.620022484707475, 97.6614050206496, 5.236727925760053, 10.6491925438902, 109.28587105843117, 16.593852535807155, 5.5323362724742715, 280.80693346521844, 103.38717995833744, 10.69757143490432, 111.36167205858807, 50.195935442460005, 61.18674927485501, 48.781678777916625, 7.502260839080905, 8.3366156360806, 142.34616376657522, 14.411247751279348, 28.33073999138796, 15.22662836473783, 38.07821261990843, 99.8966779850055, 13.206446220378892, 31.35746083563964, 80.9713537848119, 6.58817475488737, 59.712352692725226, 5.1528213895517965, 78.6850177208038, 58.454320512659834, 81.95397874223677, 23.662214734342015, 79.60495493585266, 5.491904559578188, 11.267430994467551, 25.350691715904162, 44.86555260490065, 31.788248621443152, 18.994592390923124, 15.472097143110108, 112.57988699700093, 21.297231420303106, 6.219982282272625, 28.967898553143844, 124.9868167253024, 50.20840454312464, 6.76768679117877, 27.204207959922282, 16.188074493554943, 34.572647102354104, 5.508965419837714, 74.607890050082, 13.162306450105888, 9.000033632942214, 22.425219342579407, 49.71176008465417, 5.497377383141487, 123.75346841984701, 7.370567318514547, 41.5403420698076, 8.283975495819488, 11.64188516221383, 50.5548546110047, 16.685644262004057, 50.34353247902378, 106.12597781745357, 11.37489746601372, 44.31246373265859, 23.54065230989457, 21.490034634152387, 110.94640065108808, 9.167342538250749, 71.41201796640627, 25.473210243974403, 67.70385819022249, 7.176031651979509, 23.88077974548596, 18.925418354572514, 116.15084105048156, 14.87524863911037, 6.676433621803279, 10.34013446950311, 70.42622783137875, 72.86637881444882, 7.3131469990880795, 65.35818550950503, 14.308859834937623, 84.91509331157943, 27.539118854622487, 150.19342155811418, 84.25920540722956, 10.553434265756612, 62.550367829643925, 15.966373701528207, 8.74917741835702, 14.263020872193556, 99.14642368077712, 95.02992042543607, 88.89437798374192, 33.47855071109736, 73.44500422267527, 45.69449861034966, 19.69736603953706, 38.33893899202421, 22.016713459349695, 204.32731463231124, 75.16550474234533, 30.918099288371913, 21.667528084723426, 67.11490621276933, 10.316673290452567, 47.92275793587127, 33.513295025179055, 72.22133896395172, 37.41309092846943, 47.73988971943294, 33.480926588025476, 74.39297565246423, 43.111430642235675, 58.914349994124386, 108.77380178827421, 34.65470420328424, 20.925331379772942, 59.40682045043326, 5.1016722815220374, 6.250554623597063, 52.90748653507588, 47.127311303811794, 8.60253746143651, 6.23946419066123, 162.1233149032513, 15.954812623951732, 24.756838209030896, 81.11047165554112, 48.23477216619646, 85.89326287643829, 33.31827162306208, 6.783963990468759, 70.91308051923053, 137.46755935329935, 37.343633117209464, 13.998842588194826, 6.628318320927259, 9.350616489222494, 30.123807251656828, 8.603588884983578, 100.90986428000339, 63.20645657357766, 53.02950477609473, 55.48601446357173, 88.82520372388437, 26.466099813175898, 12.864162794109657, 26.67323419767458, 49.48497378193564, 33.225676860062535, 17.963128848362405, 6.1768478061869505, 17.564733390533, 9.555969737618554, 106.89319068934219, 19.03651043041089, 66.16080470911396, 9.9527903464556, 63.932029686322906, 17.92944041766771, 174.17466426412375, 19.154131106184877, 30.971953608139916, 7.5998871946530855, 31.740713861178776, 19.50468748424091, 6.900136159386105, 41.0671949811216, 79.04045272415654, 69.96730398784781, 92.21226846933553, 9.468583679668019, 21.09846351249941, 138.80209322522572, 8.329692419060686, 33.714280809799014, 11.478052425318506, 72.14482750364729, 68.07699631639315, 79.65425759030484, 8.010233278974438, 20.073639369165917, 5.394838487058159, 22.42045999324531, 80.57448168957103, 69.09426333917116, 92.84760639116932, 6.536103009188567, 59.49275045893314, 10.057925179196568, 44.621354563580354, 5.9224025116398336, 30.209966234360188, 218.5517282151821, 25.202997676502633, 50.219956949480355, 10.329180071685798, 21.537065682921806, 6.167888518971249, 35.251832487296085, 13.758419089582574, 7.215694688642529, 66.12962894789659, 38.49645184401333, 55.91782000657666, 81.52758806112503, 91.75592834804105, 187.46440005709397, 201.97560420433712, 173.8613905885217, 16.78967782133195, 9.176169178595481, 14.718010860164975, 6.322726147809003, 7.632732618139838, 30.02187671351446, 53.096357431788164, 23.125100325003096, 13.657413548986309, 20.122330269447477, 33.35711695052241, 22.23382303730161, 143.7837400034918, 34.545550220720564, 28.535501686954387, 84.28728326670824, 122.9196919496758, 40.050936333701465, 57.746182549631584, 22.098621475284272, 34.573351036976675, 61.82767034763685, 24.976226155885815, 79.168376151395, 39.668575119866176, 8.027887452371363, 40.416728412774084, 67.38622315420707, 17.08106924845664, 198.3171947447748, 43.62891071046057, 62.514451151695205, 70.41897057751468, 15.309374270314567, 9.97857977897367, 131.56422268547368, 41.781635613850895, 19.315493929619606, 35.813257500697404, 12.807668353245885, 30.527161495457705, 95.15946118963532, 29.390385972686577, 6.164423408866447, 75.00915457458179, 7.764759431422025, 20.084096826638067, 12.724093320189354, 31.263955380125225, 35.52214854364447, 256.556751798211, 238.2820581476175, 19.737411978534702, 59.27148735114599, 67.47532785677102, 60.27129118132891, 83.5627274222172, 8.191788512016704, 42.48718704279963, 30.45389051326308, 28.38888567264635, 61.398181661198244, 203.6410433267939, 72.57981891319632, 15.564996989864083, 58.83507530393164, 32.425518801240315, 19.96515512744986, 58.41175968222343, 5.857831970457662, 21.35956096797736, 24.213033112617445, 155.85615147343236, 94.94309201737181, 5.807562790219203, 14.753632632717016, 11.688338852034791, 33.08483499041314, 17.347467767542348, 117.81676759879397, 65.38964196041601, 11.710585144360191, 75.27424721828247, 26.443429925094172, 7.853929456602108, 30.246453150341413, 20.054762393608442, 23.188780184624537, 29.50911263307029, 35.61018857195136, 94.19914443654332, 5.696951336824917, 36.70454815112722, 22.697394905997417, 305.4050282885979, 14.491358499454115, 122.98034956545672, 89.11060950742967, 24.017974790800277, 12.25616700522295, 23.263365162947647, 113.18128100290447, 16.13468640915295, 59.024045933632465, 41.385621533445345, 7.1698164737621, 20.92199780651366, 5.483293009830545, 105.80930532833025, 67.49225780572752, 82.29799195102208, 124.09299995543084, 154.78689727432882, 13.465529284126108, 32.94094104582024, 11.70547009135981, 20.505779021670353, 104.96442371034094, 49.40897387912067, 6.866497553930581, 63.86193510080966, 14.060758444461834, 89.88376788214663, 88.95372961635248, 46.51443617849525, 27.324157257496843, 20.348395463198216, 38.94226985029401, 14.671474193500906, 82.48476829073499, 39.07273817738148, 22.83503804394538, 49.53218373181503, 9.829571256632217, 10.049756847268409, 36.92094294837501, 52.12138272781256, 21.763849253725578, 34.57086834186597, 78.95859956540673, 41.137015164693146, 79.18666027640562, 12.291216853843618, 55.3435958110386, 124.5505973133142, 22.91664508669857, 10.094164060568612, 142.1618019224953, 23.701286405799678, 18.049232109360016, 15.993758273360664, 105.39794605334367, 42.68067607462798, 94.81824466070614, 27.445470522790334, 51.580312380512716, 5.303464279141042, 7.12491622636351, 56.26840004542288, 38.424187983531034, 66.32427116844823, 38.93890986083122, 67.13946410587147, 40.65832829018579, 19.459349103575256, 45.62630904979838, 84.94406539499164, 8.979450594006892, 15.737740080654916, 61.86900942303329, 98.73867037260085, 79.19113209757157, 89.16343781310344, 5.619844454037803, 7.728855396817157, 11.817432203677924, 46.6774859277141, 40.55210337353516, 481.8950931782929, 235.87444402983175, 35.05336068756804, 19.441757947135134, 55.809815029817706, 273.29730790324044, 113.36545440872857, 20.264708854262466, 18.855419837296747, 60.66519231825025, 164.41292981553124, 62.689805605260986, 79.91111672049199, 34.92700016726628, 129.71457800404548, 56.21431506089008, 6.1359773822448656, 21.950960571265053, 60.63534130878698, 122.5607003139252, 88.96426730677337, 12.393266552645768, 45.606701967767535, 42.137197560468984, 30.71638096484365, 123.57667713759068, 6.635572857992881, 69.21326288663465, 24.158588938921255, 40.13778372019126, 86.68741374703798, 37.23048874388722, 51.31963243440258, 20.757932752470843, 11.97030257334823, 97.77194499587412, 96.3101013537875, 78.88113177319516, 72.22010977757503, 27.929561561162895, 5.52843119434834, 60.698880538690304, 34.48530973340256, 40.873186392321344, 32.4925739594451, 19.377903235201188, 13.91041149004839, 90.51204142810758, 161.04856457878216, 79.53661145893973, 67.7775027286043, 18.28261123658907, 216.02045096074812, 38.58473623116995, 7.140605810821415, 104.11152561160824, 8.280478541719761, 14.846652226395499, 100.08493917779883, 18.127356039370838, 9.223522501113033, 13.994307194749426, 46.92197519365494, 55.54493099668893, 80.12304066216021, 37.978834698760345, 9.362014147219256, 16.237930380861858, 43.44258527437419, 6.255428529447006, 34.803812967173606, 12.696206039735012, 13.935106302277198, 114.7250497845553, 77.6946027362595, 33.09545692253999, 25.20138981510976, 233.04969641597467, 84.92558690248633, 57.57095966367377, 38.62652091564057, 10.57155109381929, 323.65866154833896, 7.851233354725893, 8.873648320165481, 62.36529704098162, 13.423170435719346, 52.613154986404766, 101.9838273827881, 91.915927726593, 41.959834373290256, 6.344802294012371, 66.37878213983484, 48.443887081649436, 14.541677055589957, 44.378719270761394, 28.201684874022522, 79.76295328127213, 77.10723181319715, 15.373957264374484, 58.949910535919344, 37.27464019633001, 144.64993677862003, 213.06828644486413, 45.708552901260084, 58.719113526722445, 25.26498225688097, 81.02332985077604, 43.74288660760908, 18.244215610516452, 34.65361897968225, 17.687554490870525, 45.71081266564413, 40.8442796786714, 168.76465919227252, 87.65744061512407, 15.805305150840686, 59.714939469639575, 81.45776348206435, 179.75437694890977, 35.129334081400856, 14.908649845056814, 81.35609990324801, 18.792807907851387, 13.569702991420868, 50.67502360132994, 42.74448304724874, 6.690445305052081, 68.58481887803632, 73.4214584488527, 50.54756981625506, 20.670888851304476, 31.46466745056133, 19.595719744705164, 58.019149057068574, 198.2267167924343, 82.57441962804067, 276.3386038709249, 45.0173338051758, 25.240199134833375, 6.3711451076096814, 22.9691103928426, 33.63166205209936, 50.00830859396545, 44.60106259848672, 31.182510902976254, 5.581154100881813, 23.063988453369145, 31.5884021612252, 87.26494799104867, 7.73194608226364, 89.78868658052488, 63.664708984633144, 85.56618419836346, 27.73778672038287, 17.698345763753437, 75.24589525065365, 12.587876151264645, 81.23437225840082, 172.22752498762895, 7.032354674385901, 66.56740263328791, 11.826365265907448, 16.198964631402617, 69.41517737369799, 14.31740224872058, 158.40718532241016, 35.35627170681214, 57.7952587216448, 102.6683073566771, 7.094922325715054, 105.2425652496394, 24.85702156553741, 42.38210959549443, 49.40005750156367, 126.80840131911768, 9.983078084821972, 51.20800849847599, 242.4135481869928, 119.36615065147062, 24.10298273780211, 18.762938912325332, 8.625459709444826, 59.16042199582494, 50.357244746242955, 16.06636556043924, 54.18288346726902, 110.6994815708796, 5.864309455402783, 43.52029024219014, 46.07473291569695, 9.101128405753729, 147.1821399374534, 5.0585484793485085, 58.07665002071674, 5.027883551857652, 209.827720749324, 30.407207376994233, 46.9569954345197, 22.729994287490257, 22.3877229356598, 21.629129141602974, 196.47058761187944, 41.374050235348065, 49.22632173584229, 18.388688764663367, 58.62682224823084, 13.771532496791245, 110.76628871339386, 60.52143515142498, 16.474228982001666, 91.57980743709751, 8.032570894503369, 60.067028893947295, 157.50109502666876, 199.47099051825242, 60.163553141643256, 72.84841251066945, 118.46026995268224, 63.61036543807924, 19.7665816547163, 87.12343228436103, 84.60908187975187, 47.953253067805306, 10.777610550837148, 123.44499856674938, 44.59441296950509, 76.59201606135348, 175.1043940110305, 34.777919526146675, 26.295529800937466, 5.1345083428536, 8.162479344680818, 6.11861110890897, 64.9501488743652, 5.135943192049889, 142.20081484783637, 11.159600916085449, 34.09251874779707, 7.3116001639931945, 342.66284040979446, 137.43432676932395, 74.93273825041821, 48.43833144334779, 236.10568197900895, 11.723936217604713, 19.225013586075065, 75.91631042077977, 8.600211190425792, 87.1735949419505, 41.02575275622348, 34.012867788811775, 31.513325468700405, 10.711748462432881, 76.5104919997969, 13.330366611492154, 128.94946463019113, 26.75727070194337, 42.47416206213815, 13.709624131268566, 5.47993965436095, 116.69610044721185, 6.196638536031023, 12.68316501149716, 26.90178654870732, 262.29508881781703, 26.54172036923827, 142.17745006818893, 65.21652629878727, 36.306061960408876, 53.23818159117862, 148.53355800926187, 92.32807546930798, 16.084908303358247, 16.1923447299096, 70.77284931206096, 179.9871418580817, 7.832812554748081, 88.78396585481512, 14.402046803322941, 61.50579938439034, 32.736157461012795, 8.120375141851795, 63.88651415246736, 63.49399799143969, 11.126195866886395, 5.700491456304462, 127.07462728450723, 27.2441444876442, 22.75492575998828, 49.07675369827237, 75.33004032603289, 91.45621884601013, 92.46813686098923, 168.32110315847476, 256.94584268507145, 451.5003173922081, 36.39897304650127, 5.035750709196995, 15.666184369768649, 14.943707653371897, 63.856094154873105, 38.81041991814438, 67.3297020485893, 78.54524976278691, 28.889389857795216, 26.32325389387261, 102.61984100358299, 20.852627602332536, 22.67223964497047, 29.5819822499494, 17.068554194339892, 7.639163764814423, 78.2598097125833, 70.30828414063643, 11.63380533996179, 32.16325116296521, 11.948664650581666, 59.942169258547295, 15.211329816112066, 16.014496862789954, 14.610100382472655, 17.2730821109397, 70.26023381767985, 16.199419298113632, 79.08123860920321, 11.38565935699121, 21.73163856371576, 12.054183234838423, 22.813498967292333, 38.69490242208644, 113.23553521499669, 5.178227874532873, 29.404723964778405, 283.4790775782011, 6.007158521528364, 6.177085420909107, 59.19558704662877, 11.606515578687361, 141.52042488208446, 15.52377420700764, 38.403558777527266, 43.71642599573669, 22.402960511443833, 54.17381382080448, 5.204081462465927, 16.86478101343768, 104.86279062868803, 57.60525133849556, 71.69791865581112, 28.42210129228167, 45.59721586075379, 55.85031103309909, 23.701337109242196, 51.22166301607944, 7.183985949499552, 24.4282015620234, 50.08718241402747, 44.42636637225467, 60.92281392760346, 26.31169943596132, 78.6843785129295, 7.848330163063212, 115.03322341492387, 33.82613508892777, 56.12704755954883, 57.795469817071336, 5.131016631244637, 73.58940202735072, 5.145770568340665, 233.5682029411101, 8.196624199986323, 62.04294135773035, 8.035235904553424, 65.45524561703363, 172.18493414298678, 15.234396392662635, 50.851760143603144, 126.9025059312872, 63.24193078025508, 26.85824906134645, 200.17291804127512, 50.956437523071905, 103.27429543257405, 20.742629353406798, 25.53141824947157, 59.93749294561071, 206.23835501988998, 24.44394760090732, 156.02128228740912, 42.749726505549205, 162.71558538193312, 42.6959450668763, 127.27459680534514, 12.651183695477773, 114.26773491644344, 17.123689891631646, 148.23016174387345, 94.26017156523747, 9.8418698182643, 132.37598294175808, 62.12987825688965, 51.4232439916266, 48.86099650047332, 56.67246823241488, 152.21681844598208, 142.82661957049075, 24.280416164415037, 113.93094123404425, 11.485583291725026, 256.8011491365202, 108.43658583120923, 185.66547396530115, 30.837367809356216, 62.47095851422696, 66.96494171885672, 198.69524613802582, 53.548910458826356, 44.08151908500967, 16.89110741451427, 8.26925323498785, 64.8164685412342, 27.318894839347784, 22.131769689266996, 63.30590841860332, 22.31030543437927, 12.748270091947925, 64.23974031973952, 61.4297165253807, 92.22697293961686, 16.353924505025148, 15.414333018462232, 6.907334521155886, 26.587975605773742, 107.6029398776862, 88.56473903752081, 42.586808311851414, 7.225749103428992, 52.28744853297186, 116.11876923044493, 21.480682227787646, 6.942009054886145, 76.3347745372997, 53.61981329531434, 73.93446497910013, 5.115847805156183, 63.38744297468456, 123.40101867352676, 35.57098698347436, 14.190607642843506, 145.54722427334136, 46.343198240211265, 35.721869164837486, 200.58321850331097, 9.875307035554135, 5.5751395211631225, 35.64654272871009, 8.920709617596101, 47.48951287527286, 29.81508459123013, 41.49058608597145, 34.93377599331694, 28.792337508359537, 43.99141950757409, 46.24180847285203, 42.63060264206538, 40.04849329669568, 83.22453099247424, 11.734267366815933, 7.56747355037706, 17.38994171446161, 7.7945571442723836, 11.326909074401494, 25.210202072737815, 149.40363914764794, 86.98716683027898, 56.056244794403355, 6.172816793736131, 43.88673830355082, 92.79335460183302, 17.608165081518656, 143.51427687216568, 114.66770749402413, 14.183518312490417, 30.98322111747725, 5.512942417998567, 11.288014728774796, 6.344998616708136, 19.88787951217336, 109.96352156285148, 135.76262193245148, 51.089136181498624, 189.94050841453753, 57.27707609018785, 60.53159563280124, 89.78016259188007, 32.924574940742076, 43.295730334720076, 228.1069513047326, 5.799161893935052, 20.876766674032197, 81.27513843894752, 15.477684301124718, 137.523946410334, 8.040609592467765, 98.15237571498923, 201.37362913630878, 5.747058901990088, 21.250050922175443, 165.73057493252927, 22.97116048728629, 165.76213629628577, 94.39505775440512, 64.72289174279898, 5.946920873703748, 82.05079380181388, 14.850148478876271, 45.605709615759395, 5.3364036869086595, 11.515887843562743, 72.70975162118984, 80.51689242001551, 53.63477275286046, 307.6721197570087, 50.4871495731066, 20.716175965345567, 19.795809278103963, 23.871945857034742, 6.79663792170151, 39.2918019524043, 25.474819776531376, 213.01750630823972, 45.05669731105343, 7.8198761264751155, 29.53409851204097, 28.463125902249736, 108.39470242567262, ...])
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);
([3841970.3125, 4718937.319337009, 5229068.75, 5229129.590784737, 5298364.346284543, 5459432.712402757, 5481705.930116726, 5530340.625, 5530342.508458878, 5541951.315100162, 5866332.201618813, 5866523.4375, 5867535.589765672, 5926205.613056854, 6057734.918242133, 6200547.8016914725, 6201034.375, 6203820.3125, 6204227.953867149, 6204534.186029445, 6204627.549897598, 6204925.0, 6205054.6875, 6206824.410982675, 6207621.875, 6207775.660378549, 6208140.625, 6208237.388636292, 6208505.371886939, 6208559.315188776, 6209142.7503817165, 6209460.625302682, 6209792.371953093, 6209914.9989387505, 6211455.965383415, 6211964.0625, 6214047.806339378, 6214342.69615617, 6216552.789949987, 6217444.575122807, 6217478.568471816, 6217871.875, 6218713.662591858, 6219832.7723708935, 6226608.246672892, 6228439.067458776, 6240725.552213102, 6240771.07117405, 6247293.091718935, 6256217.1875, 6289677.062546992, 6292499.911842237, 6292959.081645304, 6294794.993507184, 6295632.711926665, 6296018.75, 6297784.767528563, 6300388.744258886, 6300831.25, 6309862.283939541, 6310792.1875, 6310838.073584061, 6311107.76902699, 6311334.211420715, 6311781.739034747, 6311810.192549146, 6320583.551797501, 6325635.9375, 6342202.287817113, 6342254.854811325, 6343290.625, 6344224.696438583, 6344530.920655984, 6347476.8718078, 6382248.812572954, 6382948.4221551865, 6385321.515693863, 6401352.793688946, 6422229.39370495, 6430404.303626034, 6448187.023094998, 6463309.375, 6464623.4375, 6464640.336909174, 6465389.155939539, 6465512.251049892, 6465818.603557436, 6465874.990111837, 6466168.822845836, 6468167.1875, 6469829.20182248, 6469865.080741927, 6469912.5, 6469934.375, 6470224.053388202, 6470479.241176543, 6470629.140777703, 6470764.0625, 6470864.050662381, 6470921.713042394, 6470966.880537801, 6471357.8125, 6471438.183858498, 6471521.9625891475, 6471589.424050054, 6471593.75, 6471638.830824679, 6472041.394344631, 6472070.798972667, 6472167.1875, 6472223.986919291, 6472268.366917987, 6472400.525368848, 6472412.893215946, 6472526.5625, 6472576.5834025685, 6472621.8045300795, 6472627.099704385, 6472634.245457581, 6472683.867902, 6472809.375, 6472919.751604916, 6472980.83025918, 6473010.3371379785, 6473100.0, 6473135.179232705, 6473182.787341604, 6473327.432370664, 6473383.919822452, 6473479.682576659, 6473506.555802709, 6473520.119100652, 6473921.933084083, 6473985.9375, 6473990.625, 6474114.215090907, 6474135.9375, 6474158.971248535, 6474278.289374947, 6474284.375, 6474309.174383971, 6474357.281257288, 6474401.019630688, 6474498.4375, 6474498.641140645, 6474558.414221311, 6474613.259799807, 6474617.1875, 6474635.920006407, 6474685.485126222, 6474768.180038771, 6474832.459163868, 6474985.9375, 6475013.182280187, 6475100.0, 6475115.448487078, 6475296.794267013, 6475465.853091466, 6475807.710852339, 6475945.3125, 6475958.973661174, 6476153.09165669, 6476153.730559697, 6476413.2830785895, 6476701.31837867, 6476726.5625, 6476829.366539366, 6476831.762255478, 6476871.875, 6476926.5625, 6476945.3125, 6477498.119469463, 6477538.911293086, 6477554.238435233, 6477557.90604668, 6477585.893371002, 6478060.362075271, 6478380.767309585, 6478504.6875, 6478663.473257447, 6478743.75, 6479085.025251464, 6479373.4375, 6479584.545324103, 6479603.125, 6479916.938162303, 6480087.433409252, 6480138.97594327, 6480602.863917879, 6480663.2836163305, 6480728.125, 6480919.753635864, 6481013.589780801, 6481100.162716009, 6481199.8671197435, 6481577.457577116, 6481640.913555596, 6481891.1782342205, 6482790.402285614, 6483133.171677998, 6483573.680165655, 6484046.168522633, 6484329.6875, 6484679.6875, 6489012.624616633, 6489023.4375, 6489067.289113941, 6489192.1875, 6489953.22241992, 6490240.051251683, 6490685.123617484, 6492339.90790614, 6493551.58513562, 6494588.481084244, 6494889.617438455, 6495442.1875, 6500573.4375, 6504169.48554914, 6518046.875, 6519596.467174079, 6524798.841978585, 6528397.654043326, 6534475.591611079, 6540239.901244282, 6546231.25, 6547041.2419698695, 6547963.312271387, 6549355.239254681, 6549720.566657911, 6553496.875, 6574324.212584885, 6591438.687049724, 6611845.966079408, 6612340.879257808, 6620712.444767222, 6636042.1875, 6651782.872948609, 6735287.058111005, 6737496.865726883, 6745153.082477322, 6745766.998469613, 6746077.210400094, 6746710.644717265, 6746943.75, 6747067.1875, 6747467.6848596, 6747500.15790047, 6747578.539364928, 6749871.875, 6756795.393150983, 6758189.0625, 6762850.213144708, 6767416.026040054, 6775794.6282927105, 6776775.0, 6776790.063122126, 6778780.594871188, 6778837.404574341, 6781165.21319622, 6783613.329647138, 6787054.6875, 6787670.024241128, 6789136.243191088, 6789765.625, 6790274.187619316, 6791167.1875, 6791199.80266299, 6791214.416342172, 6791329.6875, 6791336.400635049, 6791501.940319104, 6791515.046054802, 6792001.066896062, 6792022.608843828, 6792108.585444484, 6792212.915714598, 6792219.096781688, 6792224.903878575, 6792371.875, 6792471.875, 6792518.253248555, 6792613.908598816, 6792810.9375, 6793175.177726698, 6793206.25, 6793264.49794295, 6793276.373023523, 6793309.31510017, 6793536.364714886, 6793546.955819467, 6793691.858752326, 6793792.1875, 6793989.63900481, 6794195.267220187, 6794314.97565455, 6794404.6875, 6794438.633680801, 6794868.75, 6795233.852993078, 6795495.214781571, 6795625.0, 6795944.937310518, 6796051.5625, 6796132.8125, 6796336.674455445, 6796673.4375, 6796715.105553795, 6796842.8366547935, 6796892.1875, 6797112.469426611, 6797252.601533005, 6798184.017158526, 6798263.900055529, 6798283.279601892, 6798322.114876188, 6798400.0, 6798446.875, 6798460.9375, 6799507.9057780765, 6800942.865093541, 6801074.65371594, 6801317.1875, 6801463.312470422, 6801685.257545966, 6802471.174143594, 6802553.125, 6803936.053920433, 6805368.468022071, 6821342.890804884, 6827900.0, 6828220.738043858, 6829648.456286212, 6830466.4519366855, 6831634.750896934, 6832209.375, 6832285.9375, 6833218.368357912, 6834472.075261561, 6834828.970430002, 6835315.625, 6835351.164636514, 6835754.6875, 6835857.6288460335, 6836038.876958398, 6836803.125, 6837396.868084738, 6837401.5625, 6838427.757404784, 6838775.411060224, 6845086.091996261, 6848857.542680277, 6853057.602314933, 6860562.417896081, 6860773.4375, 6860834.950577338, 6861352.413222024, 6861532.022906822, 6861628.241123471, 6861981.25, 6862020.225388988, 6862267.137319339, 6862270.643823804, 6862336.916810673, 6862922.525597738, 6862923.343757256, 6863087.5, 6863256.817322454, 6863396.875, 6863635.064040396, 6863811.581227512, 6864378.125, 6864494.655119398, 6864773.092194681, 6864795.3125, 6864964.0625, 6864977.165018739, 6865609.219799789, 6865686.811089369, 6866104.300306527, 6867257.109235765, 6867601.439162375, 6867629.936423413, 6867809.29907518, 6868330.970636656, 6868508.431585357, 6868555.298072, 6868640.625, 6868880.62509008, 6871987.143034962, 6883071.025456524, 6883076.743347332, 6884161.94077835, 6884516.117122318, 6891204.6875, 6895496.875, 6906500.0, 6906960.9375, 6908503.389998217, 6909252.675151116, 6909539.0625, 6910081.59065429, 6910880.644982243, 6913338.707322485, 6913346.875, 6913359.8698784085, 6913817.852782271, 6914349.939254331, 6915069.089733625, 6916373.4375, 6917273.4375, 6926018.829469598, 6935808.915899139, 6941693.721659054, 6945617.114802006, 6949484.332543997, 6949804.254932147, 6957136.40735495, 6957309.375, 6961158.348230148, 6963680.430246056, 6964476.318619425, 6964779.6875, 6966947.9642196465, 6977482.8125, 6978057.268679559, 6980960.741094551, 6981192.1875, 6981211.5730016, 6982003.083059399, 6982071.7847199505, 6982334.006770258, 6982439.845078568, 6982442.857788892, 6982443.369735276, 6982578.755566522, 6982583.063650481, 6982603.125, 6982797.63814391, 6982865.625, 6982868.693001537, 6982880.8894106215, 6982908.2080614995, 6983087.513163427, 6983106.942822976, 6983228.125, 6983259.375, 6983267.932014072, 6983387.5, 6983472.765826791, 6983638.560191699, 6983639.0625, 6983641.847332898, 6983702.677210635, 6983709.569311577, 6983762.190581158, 6983978.125, 6984035.9375, 6984215.625, 6984309.479371843, 6984370.646953988, 6984544.944300847, 6984695.3125, 6984906.25, 6984929.791435768, 6984946.766233003, 6985020.367662448, 6985096.141436657, 6985339.0625, 6985341.992513878, 6985342.1875, 6985344.679862999, 6985391.375048638, 6985970.3125, 6985987.163263167, 6986226.257946513, 6986282.72133385, 6986470.624617542, 6986582.8125, 6986595.3125, 6986645.760656882, 6986893.294705285, 6987178.125, 6987791.489111551, 6988034.726854392, 6988760.057485127, 6989493.75, 6991717.859848321, 6991727.735835124, 6996200.0, 6996672.761028374, 6998035.047553501, 6998635.041752947, 6999389.106479263, 7004435.9375, 7007174.4511391735, 7007617.1875, 7007821.078539802, 7010433.292067021, 7010446.875, 7011417.1875, 7013718.75, 7014242.740325645, 7014629.656700861, 7014856.153829029, 7014902.003171311, 7020528.125, 7020568.666421499, 7022042.1875, 7022063.316706671, 7027501.262845015, 7028625.27408283, 7040415.625, 7053268.043701059, 7068555.040465978, 7073169.416575414, 7073486.5534280455, 7073723.701404357, 7080554.759867909, 7081069.092274842, 7081912.488449278, 7084124.109065565, 7104782.8125, 7116220.95525624, 7118727.99459821, 7125287.227117788, 7134865.072160421, 7137672.770895444, 7137831.7940873755, 7138375.0, 7146487.535981658, 7153348.740581164, 7158777.272143116, 7159149.906270669, 7163179.6875, 7163805.502701289, 7165527.93341732, 7166343.75, 7169387.5, 7169641.895628606, 7171426.368170265, 7171702.559238106, 7171904.6875, 7172171.875, 7172710.9375, 7172821.487451723, 7173210.908145357, 7173214.699792916, 7173491.591517642, 7173539.603334399, 7173619.847583806, 7174879.6875, 7175046.875, 7175069.641552375, 7175173.4375, 7175280.277999667, 7175412.5, 7175673.4375, 7175770.125410269, 7176562.3011116, 7177019.127243048, 7177630.096756549, 7189945.250332515, 7191732.92151253, 7200386.432137141, 7200490.625, 7203765.587206593, 7204443.593733372, 7204471.614184031, 7204514.702081448, 7210561.123107161, 7211423.374587116, 7212892.1875, 7213099.795525229, 7216915.365335686, 7217414.6347748125, 7217821.875, 7218318.155537103, 7218418.75, 7218453.628102538, 7219086.147058257, 7220618.576320371, 7220653.40945464, 7220911.802966882, 7221418.75, 7221515.61635211, 7223078.125, 7223102.303746451, 7223935.524118298, 7224974.409154143, 7225129.294869594, 7225983.9976810105, 7226545.3125, 7229797.125950967, 7230736.276330808, 7231939.296078541, 7231990.21857179, 7233071.161146267, 7233195.3125, 7233333.494015369, 7233459.3702498, 7234444.781588808, 7238129.471592942, 7239372.099639225, 7240328.905706126, 7247376.626213368, 7253273.6342072515, 7253804.6875, 7254024.502811977, 7254332.086794202, 7255494.702275612, 7256651.206765043, 7256680.064629997, 7259123.4375, 7262045.654870946, 7262052.233005759, 7262065.625, 7263553.125, 7267418.708951529, 7269724.011559718, 7275046.844377604, 7275582.01886185, 7278780.202807621, 7286718.75, 7288062.149858788, 7291001.5625, 7291950.405286135, 7293844.044937261, 7296242.1875, 7298613.888519493, 7302271.4578801645, 7303403.174126128, 7304165.625, 7308664.0625, 7312001.460607387, 7316328.796557966, 7320006.89785459, 7322035.9375, 7328279.4234385, 7329261.76688395, 7330242.869259724, 7331759.375, 7332940.801251708, 7332965.625, 7332976.289584278, 7333136.674520453, 7333384.965199043, 7333959.994712933, 7334500.0, 7334504.954318506, 7334699.888868659, 7334865.1216692, 7334910.032797301, 7335210.7881365, 7335241.312889762, 7335248.152003171, 7335268.860410501, 7335300.985301046, 7335323.894064955, 7335325.735871053, 7335469.92751079, 7335493.75, 7335531.25, 7335535.578770095, 7335601.147737076, 7335608.888528988, 7335632.475011558, 7335806.25, 7336053.125, 7336228.8075471185, 7336231.25, 7336244.967479567, 7336509.678057574, 7336560.9375, 7336563.140024678, 7336637.496979945, 7336647.924161373, 7336776.028421884, 7336845.3125, 7336892.845772163, 7337006.902580038, 7337017.1875, 7337023.948084643, 7337047.226319638, 7337116.495058913, 7337204.431252657, 7337210.501018498, 7337307.184200448, 7337315.388845403, 7337322.417128302, 7337487.194654485, 7337604.6875, 7337696.875, 7337698.090357222, 7337706.414853753, 7337718.936509007, 7337793.507717471, 7337795.600885249, 7337812.38566769, 7337823.690354763, 7337832.718390322, 7337904.707809484, 7337910.9375, 7337930.364626565, 7338006.005494157, 7338006.25, 7338010.9375, 7338151.5625, 7338166.915690916, 7338170.6631633565, 7338183.549193066, 7338187.5, 7338225.549460621, 7338272.145729261, 7338302.351139322, 7338362.809253988, 7338421.875, 7338423.154020059, 7338426.767879981, 7338433.876576806, 7338572.933288442, 7338671.111615181, 7338681.25, 7338715.2593237255, 7338736.354178665, 7338757.7750121495, 7338966.607837479, 7339390.70563659, 7339473.506898537, 7339542.1875, 7339856.706543069, 7340393.75, 7340620.207823994, 7341006.25, 7341178.125, 7341266.388506963, 7341320.3125, 7341326.266218089, 7341389.356048372, 7341467.949622929, 7341592.1875, 7341899.030563772, 7342125.86207856, 7342246.725880222, 7342357.8125, 7342418.080893012, 7342751.234404872, 7342846.103681654, 7342879.6875, 7343189.061533134, 7343788.963583038, 7343984.375, 7344471.806779626, 7344851.180326266, 7345345.3125, 7345613.587240875, 7345767.1875, 7346096.875, 7346526.5625, 7348956.172523605, 7348961.177679174, 7349012.986480141, 7349030.903378966, 7349904.865466098, 7350121.875576613, 7350756.196692568, 7350759.375, 7351072.39827583, 7351075.778580214, 7351357.8125, 7351379.565329277, 7351675.0, 7352291.620805912, 7352973.048101757, 7353005.859286807, 7353128.589826097, 7353984.473249854, 7355384.375, 7355385.069628338, 7356674.177075568, 7356743.75, 7357005.156079868, 7357268.128353957, 7360432.881534145, 7360542.443145566, 7361191.916985407, 7361358.313966383, 7361641.684937347, 7362556.962059556, 7362696.875, 7362853.28399113, 7364023.63940077, 7368430.209077034, 7368847.533533342, 7369126.297100131, 7371409.98283108, 7372705.231510487, 7384642.676300576, 7384649.6765688285, 7385388.2464515045, 7389969.564341021, 7395309.298345937, 7395400.28615239, 7401306.307129287, 7406903.269813159, 7407312.5, 7407328.125, 7407771.8583129635, 7407809.567867448, 7407829.713368226, 7408016.052131316, 7409011.975624443, 7409073.280357263, 7409334.375, 7409440.61977656, 7409501.5625, 7410032.8125, 7410204.383622429, 7410471.875, 7410472.107666785, 7410596.930794232, 7410614.028617229, 7410620.3125, 7410620.3125, 7410623.314623637, 7410729.6875, 7410747.505353026, 7410872.659310778, 7410948.4375, 7411214.0625, 7411260.9375, 7411312.524055359, 7411381.910499002, 7411733.513438383, 7411890.625, 7412034.2009335365, 7412121.875, 7412140.117413248, 7412228.125, 7412421.317083104, 7412450.074777172, 7412487.5, 7412511.3673473755, 7412529.6875, 7412533.059365086, 7412712.849042028, 7412804.6875, 7412873.4375, 7412957.233827548, 7412988.929594184, 7413090.625, 7413098.21834438, 7413099.752397678, 7413543.75, 7413567.1875, 7413628.282473464, 7414073.6295471275, 7414102.059846401, 7414141.4210890625, 7414159.61458588, 7414178.804836377, 7414217.1875, 7414434.207664515, 7414753.672729729, 7414756.846015807, 7414768.156833553, 7414810.199022755, 7414892.1875, 7415046.875, 7415121.875, 7415176.5625, 7415510.677865033, 7415610.579347533, 7415712.717497018, 7415739.111025835, 7415746.382809167, 7415829.349406964, 7415976.926243853, 7416041.924700349, 7416103.125, 7416133.951173506, 7416146.73715428, 7416171.875, 7416237.932070111, 7416260.904595588, 7416341.20378046, 7416345.248469157, 7416379.00383661, 7416396.875, 7416434.602614635, 7416455.524547673, 7416531.2441381095, 7416578.455771789, 7416596.875, 7416596.970145905, 7416650.118756138, 7416711.617625246, 7416754.40066205, 7416793.75, 7416834.375, 7416866.870038107, 7416906.632442979, 7416921.875, 7416943.75, 7417086.074676373, 7417086.770359364, 7417162.5, 7417445.3125, 7417495.180091671, 7417691.488922634, 7417955.774017107, 7418035.556390198, 7418090.625, 7418120.100479924, 7418229.291313189, 7418396.856713902, 7418398.081253598, 7418418.618755794, 7418539.642584694, 7418605.524679634, 7418665.625, 7418683.845779131, 7418798.4375, 7418867.1875, 7418903.125, 7418905.4815220935, 7419021.875, 7419065.625, 7419207.8125, 7419267.1875, 7419556.25, 7419646.824302795, 7419831.606241279, 7419923.337522939, 7419975.521885842, 7420169.249705481, 7420231.373811796, 7421245.118767299, 7421359.774225656, 7421865.996043256, 7422243.737916965, 7422842.964579518, 7423789.980332862, 7424381.478944254, 7425788.059054364, 7426034.012103568, 7426526.169349496, 7427043.535824141, 7427223.274790155, 7427248.015462581, 7427351.662694951, 7427517.779435654, 7427519.823598237, 7427767.881874699, 7427990.17492454, 7428045.286979203, 7428086.168791953, 7428104.6875, 7428116.915993924, 7428247.74124481, 7428403.078910689, 7428494.610876258, 7428502.850498406, 7429463.860199771, 7429505.438003482, 7429696.875, 7429957.2722181855, 7430263.597018506, 7430379.191486077, 7430562.5, 7430898.590991023, 7431108.427646491, 7431216.662785338, 7431356.916485882, 7431584.011416217, 7431608.371166534, 7431671.875, 7433563.426061914, 7433564.148395285, 7433988.149018031, 7434114.035039979, 7434425.0, 7435329.525578924, 7436036.172418615, 7436617.84847434, 7439465.497095819, 7440112.639610838, 7442824.170717555, 7447198.4375, 7448388.480922884, 7449332.123674351, 7449387.209429767, 7449464.226218791, 7452490.9168797955, 7453354.940612493, 7455516.437052345, 7455637.488249827, 7456688.061723243, 7457642.383715924, 7458158.1625401545, 7459456.540133822, ...], [70.87302497606748, 9.183175603314755, 46.98446935251356, 5.163115251874986, 16.146014857893515, 24.399432456054072, 229.01921475492446, 76.47944966966264, 18.758526375076137, 48.19441561826658, 6.969623695697363, 36.90078166184731, 9.053719836184662, 7.388041378454243, 17.514443058843185, 5.667454028158528, 85.84294576525409, 49.34331621388995, 55.81243678192806, 5.60367468266916, 5.05858553655131, 58.784430822296926, 68.52858260090969, 30.208669565548142, 36.98607202961634, 18.241884157964517, 29.29042421052544, 5.162776084709278, 19.304254276599053, 14.718334510163933, 7.277718222642615, 31.06978328830136, 15.694474764257434, 20.32144995342924, 23.16776075449441, 41.86480751121046, 12.980630430887715, 30.522486206105665, 42.582876093840454, 10.14236322320258, 7.7719156198147035, 114.31094543635766, 81.60116503128253, 33.011365872274084, 16.90234996702373, 22.077474390645317, 9.846479042452227, 28.267375956471348, 12.91249355753871, 59.36170211743468, 27.51430589786633, 16.432022050243933, 6.706320467157947, 9.075495512420414, 5.70038701021262, 65.53804378746366, 16.73567015412716, 32.67970544140382, 115.71469785828376, 24.88563036926385, 73.80992495525177, 88.1748464791326, 56.65885369490364, 10.88129881463778, 17.202955568345757, 10.133723928777451, 18.779017536913717, 71.73280523345613, 54.13193394763954, 15.620022484707475, 97.6614050206496, 5.236727925760053, 10.6491925438902, 109.28587105843117, 16.593852535807155, 5.5323362724742715, 280.80693346521844, 103.38717995833744, 10.69757143490432, 111.36167205858807, 50.195935442460005, 61.18674927485501, 48.781678777916625, 7.502260839080905, 8.3366156360806, 142.34616376657522, 14.411247751279348, 28.33073999138796, 15.22662836473783, 38.07821261990843, 99.8966779850055, 13.206446220378892, 31.35746083563964, 80.9713537848119, 6.58817475488737, 59.712352692725226, 5.1528213895517965, 78.6850177208038, 58.454320512659834, 81.95397874223677, 23.662214734342015, 79.60495493585266, 5.491904559578188, 11.267430994467551, 25.350691715904162, 44.86555260490065, 31.788248621443152, 18.994592390923124, 15.472097143110108, 112.57988699700093, 21.297231420303106, 6.219982282272625, 28.967898553143844, 124.9868167253024, 50.20840454312464, 6.76768679117877, 27.204207959922282, 16.188074493554943, 34.572647102354104, 5.508965419837714, 74.607890050082, 13.162306450105888, 9.000033632942214, 22.425219342579407, 49.71176008465417, 5.497377383141487, 123.75346841984701, 7.370567318514547, 41.5403420698076, 8.283975495819488, 11.64188516221383, 50.5548546110047, 16.685644262004057, 50.34353247902378, 106.12597781745357, 11.37489746601372, 44.31246373265859, 23.54065230989457, 21.490034634152387, 110.94640065108808, 9.167342538250749, 71.41201796640627, 25.473210243974403, 67.70385819022249, 7.176031651979509, 23.88077974548596, 18.925418354572514, 116.15084105048156, 14.87524863911037, 6.676433621803279, 10.34013446950311, 70.42622783137875, 72.86637881444882, 7.3131469990880795, 65.35818550950503, 14.308859834937623, 84.91509331157943, 27.539118854622487, 150.19342155811418, 84.25920540722956, 10.553434265756612, 62.550367829643925, 15.966373701528207, 8.74917741835702, 14.263020872193556, 99.14642368077712, 95.02992042543607, 88.89437798374192, 33.47855071109736, 73.44500422267527, 45.69449861034966, 19.69736603953706, 38.33893899202421, 22.016713459349695, 204.32731463231124, 75.16550474234533, 30.918099288371913, 21.667528084723426, 67.11490621276933, 10.316673290452567, 47.92275793587127, 33.513295025179055, 72.22133896395172, 37.41309092846943, 47.73988971943294, 33.480926588025476, 74.39297565246423, 43.111430642235675, 58.914349994124386, 108.77380178827421, 34.65470420328424, 20.925331379772942, 59.40682045043326, 5.1016722815220374, 6.250554623597063, 52.90748653507588, 47.127311303811794, 8.60253746143651, 6.23946419066123, 162.1233149032513, 15.954812623951732, 24.756838209030896, 81.11047165554112, 48.23477216619646, 85.89326287643829, 33.31827162306208, 6.783963990468759, 70.91308051923053, 137.46755935329935, 37.343633117209464, 13.998842588194826, 6.628318320927259, 9.350616489222494, 30.123807251656828, 8.603588884983578, 100.90986428000339, 63.20645657357766, 53.02950477609473, 55.48601446357173, 88.82520372388437, 26.466099813175898, 12.864162794109657, 26.67323419767458, 49.48497378193564, 33.225676860062535, 17.963128848362405, 6.1768478061869505, 17.564733390533, 9.555969737618554, 106.89319068934219, 19.03651043041089, 66.16080470911396, 9.9527903464556, 63.932029686322906, 17.92944041766771, 174.17466426412375, 19.154131106184877, 30.971953608139916, 7.5998871946530855, 31.740713861178776, 19.50468748424091, 6.900136159386105, 41.0671949811216, 79.04045272415654, 69.96730398784781, 92.21226846933553, 9.468583679668019, 21.09846351249941, 138.80209322522572, 8.329692419060686, 33.714280809799014, 11.478052425318506, 72.14482750364729, 68.07699631639315, 79.65425759030484, 8.010233278974438, 20.073639369165917, 5.394838487058159, 22.42045999324531, 80.57448168957103, 69.09426333917116, 92.84760639116932, 6.536103009188567, 59.49275045893314, 10.057925179196568, 44.621354563580354, 5.9224025116398336, 30.209966234360188, 218.5517282151821, 25.202997676502633, 50.219956949480355, 10.329180071685798, 21.537065682921806, 6.167888518971249, 35.251832487296085, 13.758419089582574, 7.215694688642529, 66.12962894789659, 38.49645184401333, 55.91782000657666, 81.52758806112503, 91.75592834804105, 187.46440005709397, 201.97560420433712, 173.8613905885217, 16.78967782133195, 9.176169178595481, 14.718010860164975, 6.322726147809003, 7.632732618139838, 30.02187671351446, 53.096357431788164, 23.125100325003096, 13.657413548986309, 20.122330269447477, 33.35711695052241, 22.23382303730161, 143.7837400034918, 34.545550220720564, 28.535501686954387, 84.28728326670824, 122.9196919496758, 40.050936333701465, 57.746182549631584, 22.098621475284272, 34.573351036976675, 61.82767034763685, 24.976226155885815, 79.168376151395, 39.668575119866176, 8.027887452371363, 40.416728412774084, 67.38622315420707, 17.08106924845664, 198.3171947447748, 43.62891071046057, 62.514451151695205, 70.41897057751468, 15.309374270314567, 9.97857977897367, 131.56422268547368, 41.781635613850895, 19.315493929619606, 35.813257500697404, 12.807668353245885, 30.527161495457705, 95.15946118963532, 29.390385972686577, 6.164423408866447, 75.00915457458179, 7.764759431422025, 20.084096826638067, 12.724093320189354, 31.263955380125225, 35.52214854364447, 256.556751798211, 238.2820581476175, 19.737411978534702, 59.27148735114599, 67.47532785677102, 60.27129118132891, 83.5627274222172, 8.191788512016704, 42.48718704279963, 30.45389051326308, 28.38888567264635, 61.398181661198244, 203.6410433267939, 72.57981891319632, 15.564996989864083, 58.83507530393164, 32.425518801240315, 19.96515512744986, 58.41175968222343, 5.857831970457662, 21.35956096797736, 24.213033112617445, 155.85615147343236, 94.94309201737181, 5.807562790219203, 14.753632632717016, 11.688338852034791, 33.08483499041314, 17.347467767542348, 117.81676759879397, 65.38964196041601, 11.710585144360191, 75.27424721828247, 26.443429925094172, 7.853929456602108, 30.246453150341413, 20.054762393608442, 23.188780184624537, 29.50911263307029, 35.61018857195136, 94.19914443654332, 5.696951336824917, 36.70454815112722, 22.697394905997417, 305.4050282885979, 14.491358499454115, 122.98034956545672, 89.11060950742967, 24.017974790800277, 12.25616700522295, 23.263365162947647, 113.18128100290447, 16.13468640915295, 59.024045933632465, 41.385621533445345, 7.1698164737621, 20.92199780651366, 5.483293009830545, 105.80930532833025, 67.49225780572752, 82.29799195102208, 124.09299995543084, 154.78689727432882, 13.465529284126108, 32.94094104582024, 11.70547009135981, 20.505779021670353, 104.96442371034094, 49.40897387912067, 6.866497553930581, 63.86193510080966, 14.060758444461834, 89.88376788214663, 88.95372961635248, 46.51443617849525, 27.324157257496843, 20.348395463198216, 38.94226985029401, 14.671474193500906, 82.48476829073499, 39.07273817738148, 22.83503804394538, 49.53218373181503, 9.829571256632217, 10.049756847268409, 36.92094294837501, 52.12138272781256, 21.763849253725578, 34.57086834186597, 78.95859956540673, 41.137015164693146, 79.18666027640562, 12.291216853843618, 55.3435958110386, 124.5505973133142, 22.91664508669857, 10.094164060568612, 142.1618019224953, 23.701286405799678, 18.049232109360016, 15.993758273360664, 105.39794605334367, 42.68067607462798, 94.81824466070614, 27.445470522790334, 51.580312380512716, 5.303464279141042, 7.12491622636351, 56.26840004542288, 38.424187983531034, 66.32427116844823, 38.93890986083122, 67.13946410587147, 40.65832829018579, 19.459349103575256, 45.62630904979838, 84.94406539499164, 8.979450594006892, 15.737740080654916, 61.86900942303329, 98.73867037260085, 79.19113209757157, 89.16343781310344, 5.619844454037803, 7.728855396817157, 11.817432203677924, 46.6774859277141, 40.55210337353516, 481.8950931782929, 235.87444402983175, 35.05336068756804, 19.441757947135134, 55.809815029817706, 273.29730790324044, 113.36545440872857, 20.264708854262466, 18.855419837296747, 60.66519231825025, 164.41292981553124, 62.689805605260986, 79.91111672049199, 34.92700016726628, 129.71457800404548, 56.21431506089008, 6.1359773822448656, 21.950960571265053, 60.63534130878698, 122.5607003139252, 88.96426730677337, 12.393266552645768, 45.606701967767535, 42.137197560468984, 30.71638096484365, 123.57667713759068, 6.635572857992881, 69.21326288663465, 24.158588938921255, 40.13778372019126, 86.68741374703798, 37.23048874388722, 51.31963243440258, 20.757932752470843, 11.97030257334823, 97.77194499587412, 96.3101013537875, 78.88113177319516, 72.22010977757503, 27.929561561162895, 5.52843119434834, 60.698880538690304, 34.48530973340256, 40.873186392321344, 32.4925739594451, 19.377903235201188, 13.91041149004839, 90.51204142810758, 161.04856457878216, 79.53661145893973, 67.7775027286043, 18.28261123658907, 216.02045096074812, 38.58473623116995, 7.140605810821415, 104.11152561160824, 8.280478541719761, 14.846652226395499, 100.08493917779883, 18.127356039370838, 9.223522501113033, 13.994307194749426, 46.92197519365494, 55.54493099668893, 80.12304066216021, 37.978834698760345, 9.362014147219256, 16.237930380861858, 43.44258527437419, 6.255428529447006, 34.803812967173606, 12.696206039735012, 13.935106302277198, 114.7250497845553, 77.6946027362595, 33.09545692253999, 25.20138981510976, 233.04969641597467, 84.92558690248633, 57.57095966367377, 38.62652091564057, 10.57155109381929, 323.65866154833896, 7.851233354725893, 8.873648320165481, 62.36529704098162, 13.423170435719346, 52.613154986404766, 101.9838273827881, 91.915927726593, 41.959834373290256, 6.344802294012371, 66.37878213983484, 48.443887081649436, 14.541677055589957, 44.378719270761394, 28.201684874022522, 79.76295328127213, 77.10723181319715, 15.373957264374484, 58.949910535919344, 37.27464019633001, 144.64993677862003, 213.06828644486413, 45.708552901260084, 58.719113526722445, 25.26498225688097, 81.02332985077604, 43.74288660760908, 18.244215610516452, 34.65361897968225, 17.687554490870525, 45.71081266564413, 40.8442796786714, 168.76465919227252, 87.65744061512407, 15.805305150840686, 59.714939469639575, 81.45776348206435, 179.75437694890977, 35.129334081400856, 14.908649845056814, 81.35609990324801, 18.792807907851387, 13.569702991420868, 50.67502360132994, 42.74448304724874, 6.690445305052081, 68.58481887803632, 73.4214584488527, 50.54756981625506, 20.670888851304476, 31.46466745056133, 19.595719744705164, 58.019149057068574, 198.2267167924343, 82.57441962804067, 276.3386038709249, 45.0173338051758, 25.240199134833375, 6.3711451076096814, 22.9691103928426, 33.63166205209936, 50.00830859396545, 44.60106259848672, 31.182510902976254, 5.581154100881813, 23.063988453369145, 31.5884021612252, 87.26494799104867, 7.73194608226364, 89.78868658052488, 63.664708984633144, 85.56618419836346, 27.73778672038287, 17.698345763753437, 75.24589525065365, 12.587876151264645, 81.23437225840082, 172.22752498762895, 7.032354674385901, 66.56740263328791, 11.826365265907448, 16.198964631402617, 69.41517737369799, 14.31740224872058, 158.40718532241016, 35.35627170681214, 57.7952587216448, 102.6683073566771, 7.094922325715054, 105.2425652496394, 24.85702156553741, 42.38210959549443, 49.40005750156367, 126.80840131911768, 9.983078084821972, 51.20800849847599, 242.4135481869928, 119.36615065147062, 24.10298273780211, 18.762938912325332, 8.625459709444826, 59.16042199582494, 50.357244746242955, 16.06636556043924, 54.18288346726902, 110.6994815708796, 5.864309455402783, 43.52029024219014, 46.07473291569695, 9.101128405753729, 147.1821399374534, 5.0585484793485085, 58.07665002071674, 5.027883551857652, 209.827720749324, 30.407207376994233, 46.9569954345197, 22.729994287490257, 22.3877229356598, 21.629129141602974, 196.47058761187944, 41.374050235348065, 49.22632173584229, 18.388688764663367, 58.62682224823084, 13.771532496791245, 110.76628871339386, 60.52143515142498, 16.474228982001666, 91.57980743709751, 8.032570894503369, 60.067028893947295, 157.50109502666876, 199.47099051825242, 60.163553141643256, 72.84841251066945, 118.46026995268224, 63.61036543807924, 19.7665816547163, 87.12343228436103, 84.60908187975187, 47.953253067805306, 10.777610550837148, 123.44499856674938, 44.59441296950509, 76.59201606135348, 175.1043940110305, 34.777919526146675, 26.295529800937466, 5.1345083428536, 8.162479344680818, 6.11861110890897, 64.9501488743652, 5.135943192049889, 142.20081484783637, 11.159600916085449, 34.09251874779707, 7.3116001639931945, 342.66284040979446, 137.43432676932395, 74.93273825041821, 48.43833144334779, 236.10568197900895, 11.723936217604713, 19.225013586075065, 75.91631042077977, 8.600211190425792, 87.1735949419505, 41.02575275622348, 34.012867788811775, 31.513325468700405, 10.711748462432881, 76.5104919997969, 13.330366611492154, 128.94946463019113, 26.75727070194337, 42.47416206213815, 13.709624131268566, 5.47993965436095, 116.69610044721185, 6.196638536031023, 12.68316501149716, 26.90178654870732, 262.29508881781703, 26.54172036923827, 142.17745006818893, 65.21652629878727, 36.306061960408876, 53.23818159117862, 148.53355800926187, 92.32807546930798, 16.084908303358247, 16.1923447299096, 70.77284931206096, 179.9871418580817, 7.832812554748081, 88.78396585481512, 14.402046803322941, 61.50579938439034, 32.736157461012795, 8.120375141851795, 63.88651415246736, 63.49399799143969, 11.126195866886395, 5.700491456304462, 127.07462728450723, 27.2441444876442, 22.75492575998828, 49.07675369827237, 75.33004032603289, 91.45621884601013, 92.46813686098923, 168.32110315847476, 256.94584268507145, 451.5003173922081, 36.39897304650127, 5.035750709196995, 15.666184369768649, 14.943707653371897, 63.856094154873105, 38.81041991814438, 67.3297020485893, 78.54524976278691, 28.889389857795216, 26.32325389387261, 102.61984100358299, 20.852627602332536, 22.67223964497047, 29.5819822499494, 17.068554194339892, 7.639163764814423, 78.2598097125833, 70.30828414063643, 11.63380533996179, 32.16325116296521, 11.948664650581666, 59.942169258547295, 15.211329816112066, 16.014496862789954, 14.610100382472655, 17.2730821109397, 70.26023381767985, 16.199419298113632, 79.08123860920321, 11.38565935699121, 21.73163856371576, 12.054183234838423, 22.813498967292333, 38.69490242208644, 113.23553521499669, 5.178227874532873, 29.404723964778405, 283.4790775782011, 6.007158521528364, 6.177085420909107, 59.19558704662877, 11.606515578687361, 141.52042488208446, 15.52377420700764, 38.403558777527266, 43.71642599573669, 22.402960511443833, 54.17381382080448, 5.204081462465927, 16.86478101343768, 104.86279062868803, 57.60525133849556, 71.69791865581112, 28.42210129228167, 45.59721586075379, 55.85031103309909, 23.701337109242196, 51.22166301607944, 7.183985949499552, 24.4282015620234, 50.08718241402747, 44.42636637225467, 60.92281392760346, 26.31169943596132, 78.6843785129295, 7.848330163063212, 115.03322341492387, 33.82613508892777, 56.12704755954883, 57.795469817071336, 5.131016631244637, 73.58940202735072, 5.145770568340665, 233.5682029411101, 8.196624199986323, 62.04294135773035, 8.035235904553424, 65.45524561703363, 172.18493414298678, 15.234396392662635, 50.851760143603144, 126.9025059312872, 63.24193078025508, 26.85824906134645, 200.17291804127512, 50.956437523071905, 103.27429543257405, 20.742629353406798, 25.53141824947157, 59.93749294561071, 206.23835501988998, 24.44394760090732, 156.02128228740912, 42.749726505549205, 162.71558538193312, 42.6959450668763, 127.27459680534514, 12.651183695477773, 114.26773491644344, 17.123689891631646, 148.23016174387345, 94.26017156523747, 9.8418698182643, 132.37598294175808, 62.12987825688965, 51.4232439916266, 48.86099650047332, 56.67246823241488, 152.21681844598208, 142.82661957049075, 24.280416164415037, 113.93094123404425, 11.485583291725026, 256.8011491365202, 108.43658583120923, 185.66547396530115, 30.837367809356216, 62.47095851422696, 66.96494171885672, 198.69524613802582, 53.548910458826356, 44.08151908500967, 16.89110741451427, 8.26925323498785, 64.8164685412342, 27.318894839347784, 22.131769689266996, 63.30590841860332, 22.31030543437927, 12.748270091947925, 64.23974031973952, 61.4297165253807, 92.22697293961686, 16.353924505025148, 15.414333018462232, 6.907334521155886, 26.587975605773742, 107.6029398776862, 88.56473903752081, 42.586808311851414, 7.225749103428992, 52.28744853297186, 116.11876923044493, 21.480682227787646, 6.942009054886145, 76.3347745372997, 53.61981329531434, 73.93446497910013, 5.115847805156183, 63.38744297468456, 123.40101867352676, 35.57098698347436, 14.190607642843506, 145.54722427334136, 46.343198240211265, 35.721869164837486, 200.58321850331097, 9.875307035554135, 5.5751395211631225, 35.64654272871009, 8.920709617596101, 47.48951287527286, 29.81508459123013, 41.49058608597145, 34.93377599331694, 28.792337508359537, 43.99141950757409, 46.24180847285203, 42.63060264206538, 40.04849329669568, 83.22453099247424, 11.734267366815933, 7.56747355037706, 17.38994171446161, 7.7945571442723836, 11.326909074401494, 25.210202072737815, 149.40363914764794, 86.98716683027898, 56.056244794403355, 6.172816793736131, 43.88673830355082, 92.79335460183302, 17.608165081518656, 143.51427687216568, 114.66770749402413, 14.183518312490417, 30.98322111747725, 5.512942417998567, 11.288014728774796, 6.344998616708136, 19.88787951217336, 109.96352156285148, 135.76262193245148, 51.089136181498624, 189.94050841453753, 57.27707609018785, 60.53159563280124, 89.78016259188007, 32.924574940742076, 43.295730334720076, 228.1069513047326, 5.799161893935052, 20.876766674032197, 81.27513843894752, 15.477684301124718, 137.523946410334, 8.040609592467765, 98.15237571498923, 201.37362913630878, 5.747058901990088, 21.250050922175443, 165.73057493252927, 22.97116048728629, 165.76213629628577, 94.39505775440512, 64.72289174279898, 5.946920873703748, 82.05079380181388, 14.850148478876271, 45.605709615759395, 5.3364036869086595, 11.515887843562743, 72.70975162118984, 80.51689242001551, 53.63477275286046, 307.6721197570087, 50.4871495731066, 20.716175965345567, 19.795809278103963, 23.871945857034742, 6.79663792170151, 39.2918019524043, 25.474819776531376, 213.01750630823972, 45.05669731105343, 7.8198761264751155, 29.53409851204097, 28.463125902249736, 108.39470242567262, ...])
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)