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 = 46386
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);
([2623728.735965496, 2712462.690745625, 2840969.9741191473, 2880439.780587047, 2911431.8090921743, 2942441.0005303468, 2960525.4782446087, 2961753.125, 3013821.7096996005, 3058022.521890132, 3060494.9321641857, 3067043.4109266675, 3105390.802558496, 3120089.0625, 3157079.2094717124, 3188239.0625, 3196910.872980704, 3206234.5830233037, 3208942.5149009577, 3209812.598147078, 3237531.25, 3274907.8125, 3314410.305195354, 3319708.903618919, 3320345.735735964, 3324896.875, 3375567.0812363117, 3380016.117823235, 3382532.1454222784, 3415932.634029783, 3439776.6600475004, 3444914.16979018, 3444934.4164349507, 3447196.0327126817, 3452949.958419446, 3471618.75, 3473515.094516177, 3506380.649739338, 3519009.375, 3526104.8123389333, 3544324.119053525, 3563489.8465870554, 3574815.8577999603, 3577551.5625, 3579231.25, 3591466.297565682, 3601913.64706987, 3602040.721549158, 3607015.625, 3607636.3716949555, 3613079.633589542, 3613085.9375, 3666948.432923257, 3667625.439118724, 3667711.0975699807, 3672995.3125, 3674001.446396945, 3675263.7513789656, 3677571.875, 3678221.875, 3678223.4375, 3678667.7726587825, 3741922.314112292, 3751354.8094587107, 3753576.746199517, 3763347.700001798, 3773093.75, 3786627.9717658986, 3790445.419522819, 3807413.312012489, 3808144.108733828, 3811107.8125, 3816798.4679370024, 3817082.758606261, 3840107.8125, 3840239.028827474, 3845808.98122407, 3871852.656909068, 3871917.1162564154, 3872446.875, 3873806.25, 3873809.375, 3873934.748990727, 3876289.6134942505, 3877664.068376857, 3879073.8080323627, 3883593.75, 3884609.418577042, 3893783.5497324727, 3895020.3125, 3895459.1932199043, 3895799.3051855676, 3900259.853135638, 3905068.75, 3920714.0625, 3920791.9946165816, 3926292.1875, 3926477.2436155006, 3927414.0625, 3934059.1486073947, 3955047.6655319426, 3964648.781132388, 3973968.915347731, 3979522.983208059, 4010356.1984718605, 4028596.4110502754, 4103856.154517485, 4104304.52691957, 4105164.0625, 4108017.1875, 4125755.1529733306, 4126913.7091797865, 4127254.35221487, 4127489.1215381995, 4128034.375, 4128210.5896113636, 4128215.7390923835, 4129503.1403388386, 4130214.0625, 4130549.3317962796, 4131489.0625, 4132104.1497260835, 4137358.778362357, 4152714.47349067, 4153406.25, 4153823.4375, 4202942.1875, 4209650.753257119, 4212586.375037707, 4214346.751110853, 4221773.056565681, 4225134.340602355, 4226586.758292377, 4230098.251672495, 4231220.3125, 4237328.695949571, 4237552.251035361, 4308421.055311061, 4309601.605086006, 4321590.190659306, 4338161.098343017, 4348596.875, 4360809.183757764, 4361162.370416608, 4374283.801699593, 4378485.9375, 4378807.169202138, 4396673.108641326, 4398670.441287721, 4406030.073241915, 4416861.902508789, 4418770.142974485, 4422254.4526691735, 4444208.793821578, 4444208.827991653, 4459226.904130495, 4467135.192219936, 4469958.663872015, 4482015.625, 4592811.02717694, 4624602.493430595, 4625577.3220768655, 4642927.977923781, 4687274.782045971, 4691542.726862629, 4723478.415368039, 4725680.019127025, 4789431.25, 4838338.60193809, 4840783.761468063, 4842177.961229825, 4844681.122699825, 4844829.289778553, 4844866.515890754, 4845206.489378264, 4845246.44103926, 4845448.4375, 4845637.599048362, 4846105.487843843, 4846343.75, 4847576.343595236, 4847615.625, 4847918.927724912, 4872635.784221982, 4905165.625, 4917460.186958178, 4941530.703218659, 4952600.0, 4988382.389932694, 4989132.8125, 5007985.998239529, 5014156.25, 5014833.387095513, 5015715.262455332, 5016931.678130255, 5016985.831406548, 5017033.122215544, 5017768.75, 5018077.277826704, 5019274.168997651, 5019320.940820403, 5019486.267355954, 5020013.85832007, 5020355.7320931805, 5020419.126330906, 5020492.1875, 5020795.118753318, 5020996.929116508, 5021161.3930803165, 5021806.25, 5021876.5625, 5021918.71212642, 5025160.051938542, 5026180.161153592, 5034402.3330544885, 5034474.820832639, 5034709.065851312, 5034801.038897418, 5035404.906213269, 5035525.362962046, 5035561.496234128, 5036040.625, 5036470.581374787, 5037101.185425553, 5037643.444612906, 5038128.053066209, 5038142.694595375, 5038401.5625, 5040221.117032667, 5042571.988410373, 5043769.554103782, 5062546.875, 5063950.376731669, 5066580.05909201, 5066615.312204994, 5067777.257710398, 5067837.5, 5069348.4375, 5069482.8125, 5070468.75, 5071456.2082881415, 5080240.625, 5082490.396612887, 5095640.4718255345, 5102857.753771655, 5103563.799877051, 5108961.894523083, 5110753.124911054, 5111945.556174193, 5113043.186455512, 5114000.511106891, 5114647.661586759, 5115128.263398965, 5115672.488276495, 5116848.244605478, 5117039.045965486, 5117154.808049541, 5117263.923022507, 5119994.381181611, 5129520.3125, 5132231.596694239, 5132387.205346904, 5134242.584924029, 5137542.1875, 5138042.1875, 5138664.0625, 5138675.324296941, 5139225.0, 5139802.2682496235, 5140526.144492253, 5142302.667617222, 5145503.708387298, 5146045.1004544245, 5156918.085184935, 5157400.375423121, 5157564.969959838, 5158226.5625, 5159576.738881844, 5159683.482783455, 5161724.115626354, 5163132.6492553055, 5163393.573747623, 5163398.414314562, 5164834.375, 5165333.68940407, 5165481.196986724, 5166051.898075433, 5168534.8607814815, 5171539.0625, 5172183.6914828215, 5172450.617347723, 5173329.76766527, 5173667.617152538, 5174231.08593243, 5175579.033438823, 5177122.889678255, 5177362.82863724, 5177449.492286216, 5178897.7562938295, 5179717.814655025, 5179826.01875176, 5179914.629671518, 5180954.962308531, 5181001.5625, 5181045.378371801, 5181065.118673179, 5181151.4141432075, 5181252.816651878, 5181407.1439305125, 5181498.399240936, 5181563.956769306, 5181573.4375, 5181659.633153459, 5181720.3125, 5181734.465312092, 5181802.460788411, 5181839.632046504, 5181840.037375132, 5181852.963760736, 5181896.340224357, 5182126.369326418, 5182141.518864967, 5182181.25, 5182257.395339481, 5182453.218319887, 5182473.485196468, 5182525.0, 5182588.094619197, 5182689.0625, 5182841.340927349, 5182854.279469487, 5182867.168377982, 5182940.579645546, 5182964.215181637, 5182978.63608601, 5182984.375, 5183007.605902337, 5183078.125, 5183123.5099016735, 5183586.747436771, 5183842.937003506, 5183851.694704545, 5183896.662950899, 5184062.880965233, 5184159.375, 5184210.426037123, 5184214.849141901, 5184299.328347043, 5184300.64098068, 5184604.6875, 5184769.998975685, 5184844.052257424, 5185135.9375, 5185306.082421556, 5185394.734505285, 5185814.295143571, 5186015.039093344, 5186260.585565279, 5186325.810549502, 5186706.25, 5187074.935458819, 5187084.375, 5187240.954832193, 5187873.9940573275, 5187893.582822072, 5187921.406477879, 5188083.223490004, 5188098.170815034, 5188356.25, 5188595.3125, 5189093.75, 5189195.3125, 5189372.25391634, 5189376.565433268, 5189681.074576975, 5190007.8466775445, 5190368.092210381, 5190525.433523131, 5190857.207977148, 5191469.559955691, 5192661.551124347, 5209707.803886629, 5221161.43687988, 5221493.423627499, 5223496.37249539, 5223522.688874941, 5226692.279032803, 5228310.760106191, 5228847.515973838, 5230242.1875, 5232119.65271152, 5233018.0775322765, 5235985.6521006515, 5267257.113530273, 5267339.537461275, 5268246.210305663, 5271168.044567019, 5305474.741999895, 5323092.1875, 5335843.75, 5338971.71995234, 5341150.237376172, 5343042.0276382305, 5345652.395640959, 5354384.061300995, 5355024.584428255, 5355474.64389425, 5355650.0, 5356052.752735317, 5356469.07322417, 5356721.476161359, 5356922.056070142, 5356972.966635981, 5360746.875, 5361798.772039067, 5361902.756242362, 5362945.092466063, 5363946.157234153, 5367024.5291260965, 5367815.625, 5381962.4841961, 5382235.582779526, 5389104.315781499, 5395960.9375, 5398285.394396691, 5435587.344641121, 5456207.523652553, 5457000.0, 5462831.087183506, 5465139.37416721, 5465937.5, 5465990.163935974, 5465991.580746611, 5466154.604202685, 5468917.54791932, 5469354.512430838, 5471656.565018811, 5472425.0, 5473135.9375, 5475379.578961747, 5477060.330971906, 5478060.872463003, 5478650.957863764, 5484548.642460424, 5495433.186774927, 5498177.851476064, 5499989.321450526, 5500498.4375, 5500823.4375, 5501105.850923762, 5501119.8223039135, 5501731.457083713, 5502944.370128788, 5503887.5, 5504821.800161907, 5504927.876641622, 5505032.942718482, 5505033.152797508, 5506055.227807257, 5506571.185082371, 5506710.9375, 5506734.058640547, 5506821.533005087, 5506958.434850768, 5507087.5, 5507342.1875, 5507370.833769102, 5507902.949940281, 5509338.887696599, 5510789.0625, 5513215.993971619, 5527975.636249269, 5534607.781754686, 5537198.4375, 5561976.5625, 5566432.8125, 5568296.264436346, 5588671.875, 5591367.1875, 5591396.814604321, 5601072.33997584, 5601443.871387071, 5602041.2023105305, 5604648.030325436, 5605952.151056586, 5607948.4375, 5608073.6532302145, 5609248.4375, 5610236.860848416, 5610613.673007937, 5610616.991500891, 5610920.241028159, 5611301.5625, 5611543.566492896, 5611986.000574246, 5612092.184396818, 5612216.627843178, 5612678.632554338, 5614861.254449779, 5616391.124384195, 5616525.924967254, 5616726.5625, 5617117.1875, 5617145.155744319, 5618550.7583725015, 5618771.459637558, 5619423.617459967, 5619430.934193969, 5619953.046476008, 5620361.357359063, 5620456.25, 5620550.0, 5621042.833517579, 5621524.511640036, 5621556.25, 5621868.628917944, 5621875.692409578, 5621878.039256265, 5622749.674044186, 5623135.57304081, 5623610.306176727, 5626742.104085126, 5631227.32468982, 5640521.873854505, 5642261.803271325, 5644698.73780102, 5645256.687466284, 5645996.875, 5647527.648734067, 5647606.799807959, 5647793.75, 5648489.0625, 5648647.75310929, 5651651.5625, 5652671.875, 5653255.360411731, 5655488.552898466, 5657865.388983552, 5662045.730863033, 5667631.25, 5667645.689391314, 5668827.023737913, 5677881.0676025655, 5677904.505404094, 5693536.591564126, 5694560.752716191, 5694972.817857545, 5695495.161326278, 5696212.5, 5696395.77731166, 5696970.054532746, 5697375.376640263, 5698073.0250921985, 5698610.9375, 5698882.8125, 5698913.711083438, 5699243.75, 5699355.323607675, 5699987.5, 5700572.469585699, 5700956.25, 5701251.3947019875, 5701430.691453905, 5706847.542373857, 5710381.25, 5712178.125, 5712930.939902857, 5712984.529525487, 5713834.112952902, 5713892.1875, 5714015.625, 5714032.375434426, 5714052.756257489, 5714092.1875, 5714102.570954418, 5714103.962239898, 5714242.1875, 5714476.5625, 5714572.011114726, 5714635.151059499, 5714846.875, 5714929.260285574, 5715300.0, 5715438.702786171, 5715697.244356935, 5715817.078538441, 5716204.6875, 5716580.403369413, 5717143.676593053, 5717537.5, 5719703.125, 5720060.9375, 5720960.36350086, 5721096.875, 5721105.115255609, 5721598.519106588, 5722738.77908333, 5722863.848135802, 5723373.5954702785, 5723821.202578723, 5724016.095296137, 5725015.505929369, 5725020.759852373, 5725774.758395862, 5725826.857129231, 5728307.929997095, 5730732.8125, 5733827.193250379, 5734463.151901901, 5735416.117393011, 5736460.9375, 5739283.650947834, 5739765.731113983, 5740412.5, 5741676.252322535, 5744418.75, 5744878.849754072, 5745737.947128968, 5745955.859336916, 5746679.853509832, 5754556.25, 5754651.388522965, 5756224.339792855, 5758465.366471554, 5760113.049906624, 5769002.861673225, 5770051.210775243, 5770657.344657091, 5771275.371218193, 5771368.077153004, 5772126.414975435, 5772342.1875, 5772363.441203591, 5773443.056060654, 5774975.630086226, 5775040.610236898, 5775448.40444988, 5779483.211608079, 5781059.3399052005, 5785962.684192755, 5792812.15143996, 5795637.5, 5796183.248278799, 5803338.30778078, 5803648.73113197, 5811876.39360922, 5819907.8125, 5820027.762194013, 5820056.25, 5821214.320771651, 5822144.368952064, 5822403.088765507, 5823230.950759448, 5823237.129778651, 5824564.6086344635, 5826839.635451823, 5827228.058475515, 5834506.25, 5834606.044986996, 5835796.875, 5836620.3125, 5836671.753691607, 5836932.886964631, 5839343.5426416695, 5839726.5625, 5840233.546184408, 5840292.967466125, 5841554.491311006, 5841712.260381183, 5842044.967818317, 5843472.961791264, 5844002.962773907, 5845532.728828185, 5851594.123720246, 5852276.5625, 5858346.875, 5858479.542955565, 5858826.019980341, 5860584.314971549, 5862120.862332752, 5862138.013801226, 5862582.808074469, 5862873.8483641725, 5863567.643023008, 5864009.375, 5864367.049503537, 5864659.092412219, 5865061.894836135, 5871604.0275146505, 5875862.389203898, 5885924.6650959235, 5887526.5625, 5887612.5, 5888115.334929618, 5890420.761748051, 5890968.625357658, 5891299.7410148615, 5891835.486929481, 5892360.12542095, 5892604.6875, 5894258.4912889665, 5894311.045757345, 5894312.932922009, 5894368.837712732, 5894468.664472325, 5894488.4918568, 5894665.624758441, 5894735.9375, 5894958.9951563515, 5895216.188856358, 5895335.330890556, 5895788.589585347, 5895951.989286674, 5895963.374295633, 5896201.5625, 5896319.859388781, 5896425.864071342, 5896493.374236483, 5896618.549406729, 5896619.5827220725, 5896633.971906344, 5896640.06851479, 5896674.028747146, 5896681.25, 5896727.837412136, 5896899.799256056, 5897208.681221183, 5897236.730573534, 5897244.1830373695, 5897308.769951016, 5897331.689737828, 5897337.5, 5897354.152282735, 5897361.492394872, 5897417.1875, 5897417.1875, 5897475.0, 5897498.4375, 5897550.0, 5897709.2057320485, 5897773.709487061, 5897985.909502355, 5898098.4375, 5898117.607196967, 5898306.671850414, 5898434.375, 5898445.3125, 5898460.9375, 5898500.057359473, 5898536.015026783, 5898566.509490539, 5898582.3979733465, 5898585.0667770775, 5898688.775352692, 5898703.898696538, 5898704.6963332025, 5898747.52844311, 5898786.912264291, 5898806.013579025, 5898875.194526659, 5898887.762604732, 5899014.0625, 5899110.9375, 5899175.84685442, 5899232.846860639, 5899243.75, 5899404.973591166, 5899550.0, 5899579.4521971885, 5899642.246609178, 5899666.528065207, 5899673.525320264, 5899777.9768476095, 5899806.278170739, 5899851.923814198, 5899859.247544839, 5899968.494192735, 5900032.8125, 5900040.625, 5900079.597214898, 5900134.185198101, 5900179.369653129, 5900206.25, 5900221.944625916, 5900268.466625213, 5900287.927370061, 5900290.555559551, 5900339.030696375, 5900357.8125, 5900424.516258417, 5900433.863702335, 5900448.253490908, 5900640.016642808, 5900675.391200351, 5900702.678472677, 5900754.6875, 5900773.4375, 5900796.843368762, 5900816.319635612, 5900834.123798096, 5900873.4375, 5900877.08375408, 5900943.235528357, 5900977.162745178, 5900984.204729111, 5901051.5625, 5901115.347592795, 5901193.75, 5901204.365443533, 5901226.668370511, 5901284.069638194, 5901318.84223393, 5901332.49581753, 5901516.457147232, 5901648.707259176, 5901834.415241206, 5901910.736992627, 5901921.052559055, 5901964.710576196, 5901967.618928088, 5902159.305452091, 5902249.039971088, 5902299.8267767485, 5902356.25, 5902446.444102388, 5902978.247679189, 5903088.979446699, 5903141.034999742, 5903254.6875, 5903323.4375, 5903446.875, 5903939.0625, 5903950.0, 5903981.255505449, 5904017.532715571, 5904067.1875, 5904453.010601852, 5904842.876065382, 5904891.916472624, 5905047.490755406, 5905235.9375, 5905274.026339081, 5905374.567842748, 5905431.25, 5905600.0, 5905682.8125, 5905784.182302894, 5906014.0625, 5906037.5, 5906078.607399095, 5906095.3125, 5906252.306971235, 5906589.894747981, 5906863.4817493465, 5906943.4347626325, 5907048.4375, 5907051.5625, 5907076.5625, 5907120.465300855, 5907381.274082348, 5907412.5, 5907535.9375, 5907648.4375, 5907690.3775733635, 5907877.548241987, 5908012.5, 5908095.975210317, 5908214.308876582, 5908529.977093583, 5908590.849904066, 5908651.5625, 5908821.16657001, 5908835.9375, 5908900.0, 5908924.424556455, 5909554.6875, 5909565.578972005, 5909647.8294372205, 5909651.017407882, 5909673.045190706, 5909759.226543573, 5910079.6875, 5910281.25, 5910311.425185805, 5910332.8125, 5910378.769687879, 5910384.864392005, 5910448.4375, 5910478.4910788955, 5910492.1875, 5910572.814334854, 5910594.081096646, 5910604.399004938, 5910610.880260856, 5910743.930400288, 5910759.520600672, 5910891.705307422, 5910964.807094691, 5910980.35208113, 5911082.580839355, 5911120.3125, 5911125.763578975, 5911131.25, 5911141.50663558, 5911146.039819484, 5911170.250987032, 5911225.875318608, 5911236.702887412, 5911253.063446787, 5911306.25, 5911309.375, 5911310.527304993, 5911319.864529494, 5911539.0625, 5911573.4375, 5911612.365230662, 5911625.383569051, 5911744.015719785, 5911763.489265187, 5911879.342484235, 5911891.928875944, 5911898.141097816, 5911909.357289042, 5911995.3125, 5912014.7921602735, 5912042.143995921, 5912068.414578301, 5912122.264661536, 5912128.125, 5912168.564373017, 5912223.4375, 5912329.3376762485, 5912386.649085331, 5912395.153677732, 5912417.797375418, 5912420.001884467, 5912422.946088876, 5912423.446353496, 5912448.508584089, 5912603.125, 5912616.218848876, 5912669.601374444, 5912761.895246224, 5912842.014900848, 5912919.182680551, 5912929.621322618, 5912965.002057844, 5912965.669807299, 5912975.856299048, 5912981.346751556, 5913001.022367801, 5913192.238130802, 5913330.879706066, 5913529.6875, 5913726.183334131, 5913993.718615472, 5914003.125, 5914051.4369634045, 5914181.25, 5914203.125, 5914226.5625, 5914293.75, 5914365.834447208, 5914529.848457759, 5914798.4375, 5915146.937974194, 5915268.3042387385, 5915602.235408947, 5915627.706802162, 5915792.1875, 5915868.75, 5915879.6875, 5915892.1875, 5915933.781613852, 5915965.25458452, 5915967.1875, 5915968.75, 5915979.65399975, 5915980.896696723, 5916085.310565588, 5916265.691220002, 5916454.293202512, 5916589.0625, 5916600.0, 5916689.0625, 5917084.861353878, 5917179.270721937, 5917289.794761543, 5917472.311413866, 5917517.139783633, 5917544.844267215, 5917632.903346479, 5917721.809361432, 5917942.64113044, 5918024.182500499, 5918044.475768808, 5918059.375, 5918095.304344424, 5918213.026221865, 5918223.255775192, ...], [27.722445512310742, 18.68941771797773, 23.27255486718225, 5.655045282446632, 6.5784570238663544, 16.596181920337372, 8.556780285202006, 39.164897558089876, 25.638659482631233, 106.48615673265562, 13.666178101606508, 23.2641435118921, 11.417067192737486, 33.935031141884295, 13.386626900008958, 90.9254111734991, 51.58360010870231, 92.05503036615033, 16.355830875305358, 15.329278476952602, 31.43550435494305, 28.600057049422436, 20.267567024225144, 39.80844552410231, 5.734233932391026, 68.4789449780021, 43.14187495278669, 11.99657345054925, 10.223799974346376, 7.07531444515545, 15.326823538581525, 11.299654231886839, 27.16119588801286, 60.08956646418017, 92.96623090011173, 32.45207725441435, 13.243326249521528, 13.059594479501321, 47.36985715624381, 75.64726467325771, 6.161963368983668, 12.056692334158235, 5.9599388352330065, 80.77523788992619, 43.96434547936122, 18.12439388228094, 39.217129708805636, 15.32273831294896, 48.50228888209694, 93.81180026817363, 27.501493078753253, 72.61051048552102, 7.1202490901798186, 8.533293938781174, 5.717021585912105, 64.09894508702094, 32.189964668032566, 23.60971772793414, 32.83663189659959, 41.99913763698627, 74.46607174711303, 41.89250061829245, 16.92883791765362, 129.00540954971456, 35.35750479156686, 19.411392059604054, 32.54871474356082, 25.825854158643633, 11.29921492834724, 19.312012633917234, 32.05867118006001, 63.11544280254944, 79.40613716300417, 177.54787687093093, 63.88479172501172, 35.818603440907154, 46.879158451007356, 29.28692793885084, 14.676741693085276, 59.83436059329934, 59.25788651673595, 29.598590513298575, 26.011101019059215, 17.560225320020923, 6.267941151348715, 5.730752575848625, 51.066802789092144, 21.628207444178887, 22.130090013594018, 57.91295593372756, 153.6880341900703, 6.383423046121513, 11.967476663335685, 141.59591674472875, 68.55248046142084, 25.222750365840284, 41.144428023106045, 18.55915828437213, 37.166741447679826, 24.738826879570787, 12.638183740987227, 80.80122961031732, 15.611556218493478, 21.96151113286313, 14.748679392377479, 10.472488302749962, 10.981670761842375, 14.362848483800567, 31.57876263613716, 34.635404312622555, 43.87198628678975, 13.74655890492158, 29.26054518213862, 24.14238948408908, 98.207876491258, 25.267137675658205, 6.505126185918241, 9.34440679270811, 39.049244857983716, 19.964659446180846, 32.540131681309006, 21.12438344196588, 13.068947603629487, 6.84842852578953, 45.1761870407666, 87.95083398661782, 39.230175286624196, 13.059219734671125, 8.532350385204847, 32.94462379126141, 22.769186132246226, 14.812002758081878, 6.623944893086998, 37.533836531053936, 123.9746699321466, 8.613492271628965, 6.162752280328534, 18.803897838355258, 15.106350322647712, 36.09860992490313, 79.8712736692247, 31.389384550861287, 25.24704191518972, 26.202478899297656, 66.6496800911964, 72.93947360407353, 20.173569028545078, 10.64984809462761, 17.049509057620988, 41.81077238134298, 26.81674010027493, 76.81118997696215, 9.140431966572262, 20.719801899154543, 13.912582128176535, 42.98359481161165, 12.700989816767418, 12.782761152061935, 114.44115748874994, 15.294699333611401, 36.143469607369376, 18.923810429087663, 25.922660217842925, 28.868790151441143, 75.10767685742104, 11.614074649256905, 16.376557163579353, 61.54804898188114, 21.89574925430308, 14.410908604136822, 55.04569544439034, 7.557835273158335, 55.212754080168736, 40.52677646771717, 40.734354338276134, 12.408051065888696, 51.80617400750657, 26.69771962656889, 159.87928647495508, 52.65710712513757, 14.168002894188845, 37.88320737211126, 28.961806648681957, 67.64106427358121, 64.62017181838648, 19.31159986046846, 13.199723341868905, 94.96268004554246, 58.23859175731029, 41.54775597146598, 7.625354864437247, 63.88084327615404, 16.119110541366474, 13.71895768145524, 8.526744763045574, 8.231259012847554, 24.765608389954053, 187.5975059979243, 18.611532003565046, 18.724089761970863, 76.13328013970153, 86.38624223840557, 6.455553585154065, 10.404402534818349, 36.87772199401961, 72.04765495932422, 8.186711079895177, 9.377584798370263, 50.32421280299449, 40.9498790226797, 191.2361780669908, 27.79685783785638, 7.867910936976, 84.50141810695465, 28.03521172553129, 25.427517316915235, 23.634579064303864, 10.397303399787388, 15.846261389271522, 113.3694118209961, 35.38654922277119, 47.755384727733926, 9.569593216273118, 9.031696076731592, 8.131426478157756, 7.577426022463829, 5.984817475581673, 55.874278086004566, 15.77796314622483, 15.392144631972883, 7.92248955934198, 50.92621676816675, 16.602304163608572, 7.222682335317802, 30.665558912127295, 19.726043350919383, 34.64522762325705, 67.17347375580326, 49.09337597735988, 47.920466069769745, 65.18757572076416, 39.60957639932684, 14.137038402976458, 25.82678751554862, 14.722291560779546, 24.240218991384204, 20.501711684123638, 36.734840916545366, 27.313749855229936, 8.896393032914965, 6.87002314263515, 28.0340839512414, 28.22153176810198, 17.939926315239898, 10.839016889029978, 7.11711200912808, 15.421796764935447, 67.96335799814258, 115.57471006390116, 44.20314195830131, 62.77867915794644, 23.819282068145213, 6.1304264502725205, 59.87041739475575, 55.6236535256411, 46.89602195677546, 16.340652961772147, 91.57178340616667, 49.98884568095916, 112.16775093497236, 64.47957151910472, 72.65073680867789, 12.813695354788619, 139.0985000888531, 23.698630856786554, 20.074383465631715, 89.05995665172178, 11.415068509648544, 26.924703926674592, 75.83122479521018, 6.461802096893999, 33.93800349670017, 34.398717179770216, 140.62910284895244, 21.350073199363987, 8.258740575507966, 27.91587550244225, 11.982595783274348, 39.105690410426305, 19.838924785087492, 106.34746542823794, 18.432748033268112, 9.723194186637322, 25.65763569037848, 20.08260531641246, 38.098781175392475, 16.361886700907423, 5.324820073672152, 76.23496226047946, 84.94771535982487, 43.53992949523434, 28.667520700324218, 28.359706417592292, 58.7333430979929, 24.14741392922538, 61.90505029946024, 116.92854713650881, 9.083611445521205, 19.96163246165515, 44.14608276280544, 26.595931869996736, 42.858003154750094, 69.96581617420591, 76.12619467074093, 56.030979887274356, 6.957150935850545, 25.39643898317121, 5.322181226125483, 19.481318213484666, 75.10303071455047, 14.253022127988448, 21.20624601198397, 69.04477526578968, 73.64038983970043, 21.416774158434105, 11.20308694492235, 32.26886450654002, 12.204499458289439, 40.22504922612191, 5.568865782306627, 7.018170419546054, 23.31004597015969, 59.037266333299314, 32.63554485763834, 53.42180377734502, 77.01460635269052, 25.02194750673126, 30.691463181848025, 18.936121494215634, 33.86259324836693, 10.057242070829329, 11.340836031111426, 14.190512126071727, 39.00826119669525, 103.38466589797693, 55.724212782219475, 5.1476778054032994, 10.21843046216397, 61.96688180347564, 43.07934353499122, 23.57951092702246, 30.80555562797883, 41.70242149399591, 57.70742220132558, 76.45761692111239, 69.49774903115875, 13.096768592583222, 13.750718582179, 19.300901559005702, 47.09246663807125, 40.42252150421529, 71.25104869882942, 7.727053703358158, 12.12544723386528, 25.60982461885311, 28.807625388271987, 7.758971950550915, 83.36781361673948, 34.06153836253898, 40.676423491719845, 98.77210462949992, 55.4345175788584, 16.613453495959487, 48.76190128843548, 25.484115989525304, 114.2427342342057, 10.234730730806469, 5.978069939670676, 20.510165282362294, 17.033266001877635, 9.910400022423483, 45.99224864089192, 35.51091809939866, 23.419615098517095, 60.77817342292035, 6.93764828950775, 40.795055143954166, 31.927874923021797, 8.657350196295502, 119.46031530513879, 39.9535428438338, 14.076855752625598, 33.07783770572787, 19.71408236620309, 5.258635819856634, 5.1501650633743905, 19.662459598745812, 101.7606393940114, 52.64491782725839, 32.975148436542085, 25.797509090138373, 83.00337772568378, 93.56532443387454, 19.576092976813573, 23.577318945299446, 48.100956935753715, 33.701683547418995, 49.75329142354498, 7.473925435532784, 16.335416270121407, 5.592354009523499, 12.81767959831354, 37.44980725669712, 79.67209781389182, 9.631255693542386, 33.420543275959936, 5.037855344602007, 51.109654085636606, 13.40652972546929, 145.89930754901707, 5.5323140197100935, 5.194477937689592, 13.691668046764871, 51.50607286130976, 77.92945300208302, 42.74351143550268, 23.89425312289863, 50.628745598756055, 212.59200259478496, 11.652507747004927, 61.8395947729132, 21.890504077648135, 55.10508002944252, 26.979116073702624, 16.519690920377982, 112.5166818615955, 5.837662543598979, 79.97167552098496, 64.56123042747383, 9.241283749901887, 39.4229508792758, 27.3008983805462, 10.298073747792879, 15.78484585232937, 6.5474075134423995, 17.716375067139218, 23.472044450871476, 84.05015602030966, 41.79158490484866, 13.611220762848179, 13.352977083970858, 7.679893808642979, 41.99985965413541, 70.35584029849228, 5.932914563767519, 8.159467413635001, 11.33753534141102, 11.70481355352222, 17.49719295375193, 19.786969922951968, 70.57203469343716, 57.61581477929698, 117.75502342753157, 79.17441936745783, 73.73443258669309, 31.27448619151639, 117.70617130791959, 17.825199836643893, 33.006670751280936, 55.25597714700767, 7.221942719787822, 8.654362806476364, 27.930576967619366, 90.61510970477991, 44.980283843982086, 34.13364667223156, 10.290942710989224, 62.14675178172709, 47.39567146571272, 14.716200053032413, 22.466651290938966, 11.322895780749674, 10.74717112567479, 20.538013621675606, 109.80190451315148, 98.99322552196314, 43.086014414794604, 67.24662194862447, 20.20889138875265, 50.45851230855365, 14.243614410631622, 72.09525056343905, 59.62700946654728, 129.3916659359103, 159.52059780441235, 28.463858154788454, 34.96995522055689, 6.333527084912874, 11.66210273665341, 17.261283291713397, 10.258711509105062, 115.36649557691875, 143.02405552310626, 7.547508992418963, 18.915130337400118, 133.77766822284391, 8.38409243918291, 124.74104964066609, 7.100961948091215, 16.826216402318504, 64.31207272882934, 91.19563157484637, 7.854889995061785, 141.44921164214625, 41.0773209998165, 184.13436609166808, 85.65047987050045, 31.67899435433767, 150.43323116905964, 22.960864068423636, 44.47192458192239, 26.97707365987518, 25.614255137906376, 60.41292349878034, 7.9495689228163755, 51.6524502594393, 16.91999866669772, 36.03192648353349, 47.705597313577485, 17.553198745306904, 176.2175002090674, 59.85284994294211, 29.501400050789123, 104.71887675421394, 85.92851891887689, 73.44011605239395, 27.568805844947494, 49.14928338287018, 6.132713334634844, 55.63126956568095, 12.031928289096534, 19.065596721361835, 25.37893496909476, 8.192573532480365, 18.200628424476115, 21.65484627771011, 13.0098971174106, 25.85814791280738, 69.15032441747437, 7.78047274943712, 14.041685851966047, 16.60183812175982, 22.28352263993665, 55.77343088456863, 69.72989936331231, 59.66520004926509, 134.75814598314378, 32.5737427905879, 67.75065597548452, 12.204429180206379, 44.8248166099207, 118.75482694691433, 147.58491502372513, 23.560056966875607, 68.94894988045644, 50.70342414326475, 89.45922251440379, 156.93383084660957, 67.88622519821182, 37.376832863705886, 55.11212221405351, 10.506985570473294, 292.2698667144811, 32.88772225990917, 6.983047589876509, 8.785211768876616, 40.60034188513831, 48.109556053746864, 21.79043688507707, 217.4445558246047, 48.481039392094054, 10.51972369869884, 83.1016912271821, 92.11774490994432, 5.730675130200703, 63.99011972414375, 50.180470654091444, 18.615280958579444, 36.0687559297035, 99.70321255465416, 97.968015206806, 83.22401409132908, 114.12263380245408, 32.26151552396949, 28.0628305392982, 39.84727983830331, 96.16960745375106, 176.21861328609663, 15.579860681758085, 95.69058473920865, 59.61724541031572, 26.374160406736884, 9.740656684499799, 10.769957248639903, 6.305154398225958, 104.44010798287204, 127.38955274642915, 5.219794981090466, 12.326543821561271, 28.985057798992962, 51.01713822054472, 6.943295526006815, 11.29772202335759, 173.20185719435983, 34.933170842613535, 120.04066586523723, 10.029922310177998, 120.48946736987446, 25.755624622715384, 20.785314860389214, 110.00883057065982, 99.26810348387863, 7.965799891265134, 31.560090704340716, 172.48888753141424, 135.3891539093005, 6.052271038819843, 37.30840898435438, 37.75823810698317, 12.876339902641213, 31.381053183929243, 110.05995855267122, 24.796529574694752, 12.824524231231065, 75.47498157808829, 70.83358044064313, 165.50922071825673, 117.46720079923375, 27.848804315798215, 110.51913349675728, 72.07337988808504, 79.95322547200878, 6.853740853020847, 28.900916063394757, 16.192742975017023, 25.58358683436697, 149.2011456419339, 22.98031837484765, 40.32529310475009, 16.026646788004964, 17.975614061416547, 49.370531149546224, 13.911699056683643, 17.3031718330069, 99.15031506074423, 17.691645540314763, 78.11491060820647, 66.04327115239394, 70.21777330789521, 118.6717910729807, 34.93950664006407, 98.66184256314388, 69.8375518142859, 36.85703129609975, 67.65676191626788, 62.3532644778029, 57.5814863327881, 25.173994645202217, 15.274357467082014, 13.772554591415368, 6.208910386988632, 7.545598502935836, 9.261642025926632, 8.494615020664977, 63.68920818105918, 55.38059674928243, 14.417781366678692, 17.02502252987498, 27.390763287122617, 7.273897292876645, 17.343422269761852, 6.762623366886507, 70.22150102407286, 26.648186397014484, 50.25005436341801, 14.440385552068031, 96.4600824096803, 35.74538275495775, 7.965898907507883, 69.74784243938753, 23.314899560370375, 36.85180495854689, 54.12036219626964, 82.82281671391699, 14.806370299389846, 30.655047103923273, 58.3280060943527, 39.46590392314221, 56.06441491826716, 41.50926405062394, 38.94532784007823, 15.370840198781078, 277.81410782989485, 29.462720979839297, 6.746550915558842, 8.891396104796756, 28.52044575129467, 28.83172833072751, 10.581718816130545, 113.81282765518294, 13.043252797164808, 5.677307284329812, 7.7652545565135025, 19.80084295225669, 57.74532019183313, 105.60759219066561, 15.556882814637069, 30.045396002085603, 14.228355998007144, 19.471086237986103, 22.517513072814204, 5.58398240003917, 6.583948374305817, 63.361269302137586, 19.089398422153607, 25.10718293959447, 32.743876504023895, 74.45627070599863, 11.879500412918908, 30.43994369298133, 8.533663537153528, 32.964611499909424, 63.64398841361849, 9.849239782983856, 82.18404980009481, 89.02951595208091, 114.72988645888837, 78.80792899946458, 29.146885504260247, 25.577817944458292, 11.581230390920538, 27.98252842647902, 128.7373719903669, 8.521732332180864, 11.857990365700992, 46.09178246448959, 67.92593270559937, 109.10239460735527, 28.445759783945988, 5.819738940907141, 108.17597115404033, 89.90196730627225, 5.752245947340318, 10.706700820439856, 7.340854981401633, 26.038972668048515, 6.594646752386425, 14.367190607601106, 10.777236028012256, 203.74894427720199, 6.11584026842543, 50.630801695334746, 38.9971519248871, 81.04213333268518, 29.72312295243347, 36.46150938881677, 5.9647134076975945, 56.70647416100719, 20.101352671087284, 5.069972753580615, 12.90961876478019, 117.8507993808347, 25.905679244914136, 77.90375940069458, 16.524194134179865, 7.5577807656684275, 7.513264698714163, 88.28259349845978, 80.97437591538409, 131.16853963563312, 56.11298308310402, 7.04033294868485, 132.70735910769432, 16.506256256130165, 7.048901500724862, 126.09804647827049, 5.933380960296654, 114.5143879605966, 61.02954248791138, 21.65683442957855, 101.45588619195662, 69.6104252926933, 20.476244196372434, 80.17506841908431, 35.607316698894124, 34.543841330376345, 133.64132565949532, 39.755674666394896, 143.1279015691034, 24.39474650298926, 58.93521016838889, 17.38629453365666, 121.36896658282922, 47.46837809705774, 25.562493096522925, 55.37529697485925, 24.043687925920644, 77.33334478783354, 14.200080717472172, 6.503816420818638, 38.682343516246874, 11.275001157182725, 23.539959789080825, 30.49396207629884, 93.57396513752279, 219.24346957422705, 30.640844636400868, 8.720969165651482, 43.94301082540342, 117.04917644611426, 27.220559714999034, 140.36061809457846, 174.0420033404957, 56.183271642297676, 43.2878645483534, 15.43067296545223, 26.983356613726702, 16.926618992899076, 130.049230605619, 36.7371695181566, 67.11776438300527, 182.80996409468634, 62.92312030741761, 9.336062685113513, 7.733057965601936, 75.87872253754111, 6.469306610573364, 91.60223983636513, 31.00587536571536, 17.955490615102043, 124.0858422325752, 13.417658542247214, 137.6064460455368, 99.85375056440532, 70.08779329932997, 83.47228586903758, 114.49465035144343, 58.18653911712303, 97.5837257736479, 11.975899968210284, 80.0543163688771, 160.30975521960266, 25.164692501373345, 20.723694043190353, 17.399996830995576, 41.98086869181522, 28.540664174882615, 91.65136672993243, 9.464035603739289, 11.165558862824625, 56.031203520757806, 40.520329856092914, 37.294324500564514, 293.3936561224875, 10.331843283563625, 119.06183275777467, 9.962568451886956, 11.535959211439199, 33.08614556460257, 25.378924498555996, 126.64554265265421, 7.944399264894856, 124.87227534840873, 69.80088005245197, 27.76596025472867, 213.61359389621052, 27.64573590457063, 5.888145075447551, 10.370667985126847, 59.36503141742386, 14.40432501517118, 35.057992328583005, 39.32040435933717, 17.19539191952771, 48.322200320145825, 62.2892731934909, 17.204960240744494, 91.14130888228067, 63.990739238422215, 64.37088205244763, 13.000925244349556, 33.77209323008662, 101.21721801917776, 23.61726954914362, 24.46411407280957, 5.716087507505188, 45.13693763665903, 12.532258235244031, 163.2937824005397, 24.66478078520773, 45.107002535619706, 10.07289660558011, 43.6843885651003, 10.20764951480329, 18.694837946410292, 145.44120810984305, 306.1300411177572, 5.657838599371941, 96.37640087270388, 34.646407970941105, 151.29862535362193, 8.080950955674519, 45.73881887781687, 33.52192375780186, 101.02244649578466, 26.118769856136446, 45.891338783627305, 30.462625911337412, 46.70152600523129, 53.84237586093641, 5.690493831732898, 12.149503439258323, 123.65251026531867, 92.60091500511473, 26.58585143405555, 27.69230200621735, 55.33608689622895, 16.66858725126268, 109.54106972993665, 6.72700491340349, 72.23776228538111, 142.36801175013622, 12.457796699615388, 25.738752858276875, 5.310305094068615, 31.628683201190988, 8.042751182733994, 6.765275388378757, 7.629151524661928, 118.08492054203701, 23.64334999975157, 76.46544392320713, 85.12276561169884, 25.527002470652352, 5.554454967743686, 7.579476543692946, 6.645202863666383, 9.369579842983805, 19.656348754122174, 26.64082626949559, 80.49988004107634, 15.93834687347336, 203.33115902916603, 31.244998544788633, 13.669630637950288, 45.70538733941752, 105.21009886038121, 71.88628081561131, 41.43840073266225, 51.701167506758246, 49.600957417679645, 77.90584398707915, 41.95381580319034, 15.592674214104875, 91.95514895560132, 115.67441421342514, 94.28973438317279, 32.47836676982605, 6.682793053950342, 50.24020723290218, 46.63984414434811, 99.7801582648706, 45.294378625164605, 10.311655353175128, 10.59420628648688, 94.06559464942649, 65.61264655035288, 138.2026977647047, 165.85739765882758, 20.313892311773504, 9.38803070106125, 5.785370513709841, 47.14454339935016, 96.59681674902276, 36.312145119479794, 8.56168101334612, 23.325207647140658, 51.72210739070284, 87.34548410797217, 11.053933249941759, 49.1244279578997, 17.233789556526908, 24.015868610393497, 7.775983848305719, 18.819445131200847, 8.711678562352034, 100.36546807621438, 44.69899752186581, 123.95104660826998, 46.73203277119145, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2623728.735965496, 2712462.690745625, 2840969.9741191473, 2880439.780587047, 2911431.8090921743, 2942441.0005303468, 2960525.4782446087, 2961753.125, 3013821.7096996005, 3058022.521890132, 3060494.9321641857, 3067043.4109266675, 3105390.802558496, 3120089.0625, 3157079.2094717124, 3188239.0625, 3196910.872980704, 3206234.5830233037, 3208942.5149009577, 3209812.598147078, 3237531.25, 3274907.8125, 3314410.305195354, 3319708.903618919, 3320345.735735964, 3324896.875, 3375567.0812363117, 3380016.117823235, 3382532.1454222784, 3415932.634029783, 3439776.6600475004, 3444914.16979018, 3444934.4164349507, 3447196.0327126817, 3452949.958419446, 3471618.75, 3473515.094516177, 3506380.649739338, 3519009.375, 3526104.8123389333, 3544324.119053525, 3563489.8465870554, 3574815.8577999603, 3577551.5625, 3579231.25, 3591466.297565682, 3601913.64706987, 3602040.721549158, 3607015.625, 3607636.3716949555, 3613079.633589542, 3613085.9375, 3666948.432923257, 3667625.439118724, 3667711.0975699807, 3672995.3125, 3674001.446396945, 3675263.7513789656, 3677571.875, 3678221.875, 3678223.4375, 3678667.7726587825, 3741922.314112292, 3751354.8094587107, 3753576.746199517, 3763347.700001798, 3773093.75, 3786627.9717658986, 3790445.419522819, 3807413.312012489, 3808144.108733828, 3811107.8125, 3816798.4679370024, 3817082.758606261, 3840107.8125, 3840239.028827474, 3845808.98122407, 3871852.656909068, 3871917.1162564154, 3872446.875, 3873806.25, 3873809.375, 3873934.748990727, 3876289.6134942505, 3877664.068376857, 3879073.8080323627, 3883593.75, 3884609.418577042, 3893783.5497324727, 3895020.3125, 3895459.1932199043, 3895799.3051855676, 3900259.853135638, 3905068.75, 3920714.0625, 3920791.9946165816, 3926292.1875, 3926477.2436155006, 3927414.0625, 3934059.1486073947, 3955047.6655319426, 3964648.781132388, 3973968.915347731, 3979522.983208059, 4010356.1984718605, 4028596.4110502754, 4103856.154517485, 4104304.52691957, 4105164.0625, 4108017.1875, 4125755.1529733306, 4126913.7091797865, 4127254.35221487, 4127489.1215381995, 4128034.375, 4128210.5896113636, 4128215.7390923835, 4129503.1403388386, 4130214.0625, 4130549.3317962796, 4131489.0625, 4132104.1497260835, 4137358.778362357, 4152714.47349067, 4153406.25, 4153823.4375, 4202942.1875, 4209650.753257119, 4212586.375037707, 4214346.751110853, 4221773.056565681, 4225134.340602355, 4226586.758292377, 4230098.251672495, 4231220.3125, 4237328.695949571, 4237552.251035361, 4308421.055311061, 4309601.605086006, 4321590.190659306, 4338161.098343017, 4348596.875, 4360809.183757764, 4361162.370416608, 4374283.801699593, 4378485.9375, 4378807.169202138, 4396673.108641326, 4398670.441287721, 4406030.073241915, 4416861.902508789, 4418770.142974485, 4422254.4526691735, 4444208.793821578, 4444208.827991653, 4459226.904130495, 4467135.192219936, 4469958.663872015, 4482015.625, 4592811.02717694, 4624602.493430595, 4625577.3220768655, 4642927.977923781, 4687274.782045971, 4691542.726862629, 4723478.415368039, 4725680.019127025, 4789431.25, 4838338.60193809, 4840783.761468063, 4842177.961229825, 4844681.122699825, 4844829.289778553, 4844866.515890754, 4845206.489378264, 4845246.44103926, 4845448.4375, 4845637.599048362, 4846105.487843843, 4846343.75, 4847576.343595236, 4847615.625, 4847918.927724912, 4872635.784221982, 4905165.625, 4917460.186958178, 4941530.703218659, 4952600.0, 4988382.389932694, 4989132.8125, 5007985.998239529, 5014156.25, 5014833.387095513, 5015715.262455332, 5016931.678130255, 5016985.831406548, 5017033.122215544, 5017768.75, 5018077.277826704, 5019274.168997651, 5019320.940820403, 5019486.267355954, 5020013.85832007, 5020355.7320931805, 5020419.126330906, 5020492.1875, 5020795.118753318, 5020996.929116508, 5021161.3930803165, 5021806.25, 5021876.5625, 5021918.71212642, 5025160.051938542, 5026180.161153592, 5034402.3330544885, 5034474.820832639, 5034709.065851312, 5034801.038897418, 5035404.906213269, 5035525.362962046, 5035561.496234128, 5036040.625, 5036470.581374787, 5037101.185425553, 5037643.444612906, 5038128.053066209, 5038142.694595375, 5038401.5625, 5040221.117032667, 5042571.988410373, 5043769.554103782, 5062546.875, 5063950.376731669, 5066580.05909201, 5066615.312204994, 5067777.257710398, 5067837.5, 5069348.4375, 5069482.8125, 5070468.75, 5071456.2082881415, 5080240.625, 5082490.396612887, 5095640.4718255345, 5102857.753771655, 5103563.799877051, 5108961.894523083, 5110753.124911054, 5111945.556174193, 5113043.186455512, 5114000.511106891, 5114647.661586759, 5115128.263398965, 5115672.488276495, 5116848.244605478, 5117039.045965486, 5117154.808049541, 5117263.923022507, 5119994.381181611, 5129520.3125, 5132231.596694239, 5132387.205346904, 5134242.584924029, 5137542.1875, 5138042.1875, 5138664.0625, 5138675.324296941, 5139225.0, 5139802.2682496235, 5140526.144492253, 5142302.667617222, 5145503.708387298, 5146045.1004544245, 5156918.085184935, 5157400.375423121, 5157564.969959838, 5158226.5625, 5159576.738881844, 5159683.482783455, 5161724.115626354, 5163132.6492553055, 5163393.573747623, 5163398.414314562, 5164834.375, 5165333.68940407, 5165481.196986724, 5166051.898075433, 5168534.8607814815, 5171539.0625, 5172183.6914828215, 5172450.617347723, 5173329.76766527, 5173667.617152538, 5174231.08593243, 5175579.033438823, 5177122.889678255, 5177362.82863724, 5177449.492286216, 5178897.7562938295, 5179717.814655025, 5179826.01875176, 5179914.629671518, 5180954.962308531, 5181001.5625, 5181045.378371801, 5181065.118673179, 5181151.4141432075, 5181252.816651878, 5181407.1439305125, 5181498.399240936, 5181563.956769306, 5181573.4375, 5181659.633153459, 5181720.3125, 5181734.465312092, 5181802.460788411, 5181839.632046504, 5181840.037375132, 5181852.963760736, 5181896.340224357, 5182126.369326418, 5182141.518864967, 5182181.25, 5182257.395339481, 5182453.218319887, 5182473.485196468, 5182525.0, 5182588.094619197, 5182689.0625, 5182841.340927349, 5182854.279469487, 5182867.168377982, 5182940.579645546, 5182964.215181637, 5182978.63608601, 5182984.375, 5183007.605902337, 5183078.125, 5183123.5099016735, 5183586.747436771, 5183842.937003506, 5183851.694704545, 5183896.662950899, 5184062.880965233, 5184159.375, 5184210.426037123, 5184214.849141901, 5184299.328347043, 5184300.64098068, 5184604.6875, 5184769.998975685, 5184844.052257424, 5185135.9375, 5185306.082421556, 5185394.734505285, 5185814.295143571, 5186015.039093344, 5186260.585565279, 5186325.810549502, 5186706.25, 5187074.935458819, 5187084.375, 5187240.954832193, 5187873.9940573275, 5187893.582822072, 5187921.406477879, 5188083.223490004, 5188098.170815034, 5188356.25, 5188595.3125, 5189093.75, 5189195.3125, 5189372.25391634, 5189376.565433268, 5189681.074576975, 5190007.8466775445, 5190368.092210381, 5190525.433523131, 5190857.207977148, 5191469.559955691, 5192661.551124347, 5209707.803886629, 5221161.43687988, 5221493.423627499, 5223496.37249539, 5223522.688874941, 5226692.279032803, 5228310.760106191, 5228847.515973838, 5230242.1875, 5232119.65271152, 5233018.0775322765, 5235985.6521006515, 5267257.113530273, 5267339.537461275, 5268246.210305663, 5271168.044567019, 5305474.741999895, 5323092.1875, 5335843.75, 5338971.71995234, 5341150.237376172, 5343042.0276382305, 5345652.395640959, 5354384.061300995, 5355024.584428255, 5355474.64389425, 5355650.0, 5356052.752735317, 5356469.07322417, 5356721.476161359, 5356922.056070142, 5356972.966635981, 5360746.875, 5361798.772039067, 5361902.756242362, 5362945.092466063, 5363946.157234153, 5367024.5291260965, 5367815.625, 5381962.4841961, 5382235.582779526, 5389104.315781499, 5395960.9375, 5398285.394396691, 5435587.344641121, 5456207.523652553, 5457000.0, 5462831.087183506, 5465139.37416721, 5465937.5, 5465990.163935974, 5465991.580746611, 5466154.604202685, 5468917.54791932, 5469354.512430838, 5471656.565018811, 5472425.0, 5473135.9375, 5475379.578961747, 5477060.330971906, 5478060.872463003, 5478650.957863764, 5484548.642460424, 5495433.186774927, 5498177.851476064, 5499989.321450526, 5500498.4375, 5500823.4375, 5501105.850923762, 5501119.8223039135, 5501731.457083713, 5502944.370128788, 5503887.5, 5504821.800161907, 5504927.876641622, 5505032.942718482, 5505033.152797508, 5506055.227807257, 5506571.185082371, 5506710.9375, 5506734.058640547, 5506821.533005087, 5506958.434850768, 5507087.5, 5507342.1875, 5507370.833769102, 5507902.949940281, 5509338.887696599, 5510789.0625, 5513215.993971619, 5527975.636249269, 5534607.781754686, 5537198.4375, 5561976.5625, 5566432.8125, 5568296.264436346, 5588671.875, 5591367.1875, 5591396.814604321, 5601072.33997584, 5601443.871387071, 5602041.2023105305, 5604648.030325436, 5605952.151056586, 5607948.4375, 5608073.6532302145, 5609248.4375, 5610236.860848416, 5610613.673007937, 5610616.991500891, 5610920.241028159, 5611301.5625, 5611543.566492896, 5611986.000574246, 5612092.184396818, 5612216.627843178, 5612678.632554338, 5614861.254449779, 5616391.124384195, 5616525.924967254, 5616726.5625, 5617117.1875, 5617145.155744319, 5618550.7583725015, 5618771.459637558, 5619423.617459967, 5619430.934193969, 5619953.046476008, 5620361.357359063, 5620456.25, 5620550.0, 5621042.833517579, 5621524.511640036, 5621556.25, 5621868.628917944, 5621875.692409578, 5621878.039256265, 5622749.674044186, 5623135.57304081, 5623610.306176727, 5626742.104085126, 5631227.32468982, 5640521.873854505, 5642261.803271325, 5644698.73780102, 5645256.687466284, 5645996.875, 5647527.648734067, 5647606.799807959, 5647793.75, 5648489.0625, 5648647.75310929, 5651651.5625, 5652671.875, 5653255.360411731, 5655488.552898466, 5657865.388983552, 5662045.730863033, 5667631.25, 5667645.689391314, 5668827.023737913, 5677881.0676025655, 5677904.505404094, 5693536.591564126, 5694560.752716191, 5694972.817857545, 5695495.161326278, 5696212.5, 5696395.77731166, 5696970.054532746, 5697375.376640263, 5698073.0250921985, 5698610.9375, 5698882.8125, 5698913.711083438, 5699243.75, 5699355.323607675, 5699987.5, 5700572.469585699, 5700956.25, 5701251.3947019875, 5701430.691453905, 5706847.542373857, 5710381.25, 5712178.125, 5712930.939902857, 5712984.529525487, 5713834.112952902, 5713892.1875, 5714015.625, 5714032.375434426, 5714052.756257489, 5714092.1875, 5714102.570954418, 5714103.962239898, 5714242.1875, 5714476.5625, 5714572.011114726, 5714635.151059499, 5714846.875, 5714929.260285574, 5715300.0, 5715438.702786171, 5715697.244356935, 5715817.078538441, 5716204.6875, 5716580.403369413, 5717143.676593053, 5717537.5, 5719703.125, 5720060.9375, 5720960.36350086, 5721096.875, 5721105.115255609, 5721598.519106588, 5722738.77908333, 5722863.848135802, 5723373.5954702785, 5723821.202578723, 5724016.095296137, 5725015.505929369, 5725020.759852373, 5725774.758395862, 5725826.857129231, 5728307.929997095, 5730732.8125, 5733827.193250379, 5734463.151901901, 5735416.117393011, 5736460.9375, 5739283.650947834, 5739765.731113983, 5740412.5, 5741676.252322535, 5744418.75, 5744878.849754072, 5745737.947128968, 5745955.859336916, 5746679.853509832, 5754556.25, 5754651.388522965, 5756224.339792855, 5758465.366471554, 5760113.049906624, 5769002.861673225, 5770051.210775243, 5770657.344657091, 5771275.371218193, 5771368.077153004, 5772126.414975435, 5772342.1875, 5772363.441203591, 5773443.056060654, 5774975.630086226, 5775040.610236898, 5775448.40444988, 5779483.211608079, 5781059.3399052005, 5785962.684192755, 5792812.15143996, 5795637.5, 5796183.248278799, 5803338.30778078, 5803648.73113197, 5811876.39360922, 5819907.8125, 5820027.762194013, 5820056.25, 5821214.320771651, 5822144.368952064, 5822403.088765507, 5823230.950759448, 5823237.129778651, 5824564.6086344635, 5826839.635451823, 5827228.058475515, 5834506.25, 5834606.044986996, 5835796.875, 5836620.3125, 5836671.753691607, 5836932.886964631, 5839343.5426416695, 5839726.5625, 5840233.546184408, 5840292.967466125, 5841554.491311006, 5841712.260381183, 5842044.967818317, 5843472.961791264, 5844002.962773907, 5845532.728828185, 5851594.123720246, 5852276.5625, 5858346.875, 5858479.542955565, 5858826.019980341, 5860584.314971549, 5862120.862332752, 5862138.013801226, 5862582.808074469, 5862873.8483641725, 5863567.643023008, 5864009.375, 5864367.049503537, 5864659.092412219, 5865061.894836135, 5871604.0275146505, 5875862.389203898, 5885924.6650959235, 5887526.5625, 5887612.5, 5888115.334929618, 5890420.761748051, 5890968.625357658, 5891299.7410148615, 5891835.486929481, 5892360.12542095, 5892604.6875, 5894258.4912889665, 5894311.045757345, 5894312.932922009, 5894368.837712732, 5894468.664472325, 5894488.4918568, 5894665.624758441, 5894735.9375, 5894958.9951563515, 5895216.188856358, 5895335.330890556, 5895788.589585347, 5895951.989286674, 5895963.374295633, 5896201.5625, 5896319.859388781, 5896425.864071342, 5896493.374236483, 5896618.549406729, 5896619.5827220725, 5896633.971906344, 5896640.06851479, 5896674.028747146, 5896681.25, 5896727.837412136, 5896899.799256056, 5897208.681221183, 5897236.730573534, 5897244.1830373695, 5897308.769951016, 5897331.689737828, 5897337.5, 5897354.152282735, 5897361.492394872, 5897417.1875, 5897417.1875, 5897475.0, 5897498.4375, 5897550.0, 5897709.2057320485, 5897773.709487061, 5897985.909502355, 5898098.4375, 5898117.607196967, 5898306.671850414, 5898434.375, 5898445.3125, 5898460.9375, 5898500.057359473, 5898536.015026783, 5898566.509490539, 5898582.3979733465, 5898585.0667770775, 5898688.775352692, 5898703.898696538, 5898704.6963332025, 5898747.52844311, 5898786.912264291, 5898806.013579025, 5898875.194526659, 5898887.762604732, 5899014.0625, 5899110.9375, 5899175.84685442, 5899232.846860639, 5899243.75, 5899404.973591166, 5899550.0, 5899579.4521971885, 5899642.246609178, 5899666.528065207, 5899673.525320264, 5899777.9768476095, 5899806.278170739, 5899851.923814198, 5899859.247544839, 5899968.494192735, 5900032.8125, 5900040.625, 5900079.597214898, 5900134.185198101, 5900179.369653129, 5900206.25, 5900221.944625916, 5900268.466625213, 5900287.927370061, 5900290.555559551, 5900339.030696375, 5900357.8125, 5900424.516258417, 5900433.863702335, 5900448.253490908, 5900640.016642808, 5900675.391200351, 5900702.678472677, 5900754.6875, 5900773.4375, 5900796.843368762, 5900816.319635612, 5900834.123798096, 5900873.4375, 5900877.08375408, 5900943.235528357, 5900977.162745178, 5900984.204729111, 5901051.5625, 5901115.347592795, 5901193.75, 5901204.365443533, 5901226.668370511, 5901284.069638194, 5901318.84223393, 5901332.49581753, 5901516.457147232, 5901648.707259176, 5901834.415241206, 5901910.736992627, 5901921.052559055, 5901964.710576196, 5901967.618928088, 5902159.305452091, 5902249.039971088, 5902299.8267767485, 5902356.25, 5902446.444102388, 5902978.247679189, 5903088.979446699, 5903141.034999742, 5903254.6875, 5903323.4375, 5903446.875, 5903939.0625, 5903950.0, 5903981.255505449, 5904017.532715571, 5904067.1875, 5904453.010601852, 5904842.876065382, 5904891.916472624, 5905047.490755406, 5905235.9375, 5905274.026339081, 5905374.567842748, 5905431.25, 5905600.0, 5905682.8125, 5905784.182302894, 5906014.0625, 5906037.5, 5906078.607399095, 5906095.3125, 5906252.306971235, 5906589.894747981, 5906863.4817493465, 5906943.4347626325, 5907048.4375, 5907051.5625, 5907076.5625, 5907120.465300855, 5907381.274082348, 5907412.5, 5907535.9375, 5907648.4375, 5907690.3775733635, 5907877.548241987, 5908012.5, 5908095.975210317, 5908214.308876582, 5908529.977093583, 5908590.849904066, 5908651.5625, 5908821.16657001, 5908835.9375, 5908900.0, 5908924.424556455, 5909554.6875, 5909565.578972005, 5909647.8294372205, 5909651.017407882, 5909673.045190706, 5909759.226543573, 5910079.6875, 5910281.25, 5910311.425185805, 5910332.8125, 5910378.769687879, 5910384.864392005, 5910448.4375, 5910478.4910788955, 5910492.1875, 5910572.814334854, 5910594.081096646, 5910604.399004938, 5910610.880260856, 5910743.930400288, 5910759.520600672, 5910891.705307422, 5910964.807094691, 5910980.35208113, 5911082.580839355, 5911120.3125, 5911125.763578975, 5911131.25, 5911141.50663558, 5911146.039819484, 5911170.250987032, 5911225.875318608, 5911236.702887412, 5911253.063446787, 5911306.25, 5911309.375, 5911310.527304993, 5911319.864529494, 5911539.0625, 5911573.4375, 5911612.365230662, 5911625.383569051, 5911744.015719785, 5911763.489265187, 5911879.342484235, 5911891.928875944, 5911898.141097816, 5911909.357289042, 5911995.3125, 5912014.7921602735, 5912042.143995921, 5912068.414578301, 5912122.264661536, 5912128.125, 5912168.564373017, 5912223.4375, 5912329.3376762485, 5912386.649085331, 5912395.153677732, 5912417.797375418, 5912420.001884467, 5912422.946088876, 5912423.446353496, 5912448.508584089, 5912603.125, 5912616.218848876, 5912669.601374444, 5912761.895246224, 5912842.014900848, 5912919.182680551, 5912929.621322618, 5912965.002057844, 5912965.669807299, 5912975.856299048, 5912981.346751556, 5913001.022367801, 5913192.238130802, 5913330.879706066, 5913529.6875, 5913726.183334131, 5913993.718615472, 5914003.125, 5914051.4369634045, 5914181.25, 5914203.125, 5914226.5625, 5914293.75, 5914365.834447208, 5914529.848457759, 5914798.4375, 5915146.937974194, 5915268.3042387385, 5915602.235408947, 5915627.706802162, 5915792.1875, 5915868.75, 5915879.6875, 5915892.1875, 5915933.781613852, 5915965.25458452, 5915967.1875, 5915968.75, 5915979.65399975, 5915980.896696723, 5916085.310565588, 5916265.691220002, 5916454.293202512, 5916589.0625, 5916600.0, 5916689.0625, 5917084.861353878, 5917179.270721937, 5917289.794761543, 5917472.311413866, 5917517.139783633, 5917544.844267215, 5917632.903346479, 5917721.809361432, 5917942.64113044, 5918024.182500499, 5918044.475768808, 5918059.375, 5918095.304344424, 5918213.026221865, 5918223.255775192, ...], [27.722445512310742, 18.68941771797773, 23.27255486718225, 5.655045282446632, 6.5784570238663544, 16.596181920337372, 8.556780285202006, 39.164897558089876, 25.638659482631233, 106.48615673265562, 13.666178101606508, 23.2641435118921, 11.417067192737486, 33.935031141884295, 13.386626900008958, 90.9254111734991, 51.58360010870231, 92.05503036615033, 16.355830875305358, 15.329278476952602, 31.43550435494305, 28.600057049422436, 20.267567024225144, 39.80844552410231, 5.734233932391026, 68.4789449780021, 43.14187495278669, 11.99657345054925, 10.223799974346376, 7.07531444515545, 15.326823538581525, 11.299654231886839, 27.16119588801286, 60.08956646418017, 92.96623090011173, 32.45207725441435, 13.243326249521528, 13.059594479501321, 47.36985715624381, 75.64726467325771, 6.161963368983668, 12.056692334158235, 5.9599388352330065, 80.77523788992619, 43.96434547936122, 18.12439388228094, 39.217129708805636, 15.32273831294896, 48.50228888209694, 93.81180026817363, 27.501493078753253, 72.61051048552102, 7.1202490901798186, 8.533293938781174, 5.717021585912105, 64.09894508702094, 32.189964668032566, 23.60971772793414, 32.83663189659959, 41.99913763698627, 74.46607174711303, 41.89250061829245, 16.92883791765362, 129.00540954971456, 35.35750479156686, 19.411392059604054, 32.54871474356082, 25.825854158643633, 11.29921492834724, 19.312012633917234, 32.05867118006001, 63.11544280254944, 79.40613716300417, 177.54787687093093, 63.88479172501172, 35.818603440907154, 46.879158451007356, 29.28692793885084, 14.676741693085276, 59.83436059329934, 59.25788651673595, 29.598590513298575, 26.011101019059215, 17.560225320020923, 6.267941151348715, 5.730752575848625, 51.066802789092144, 21.628207444178887, 22.130090013594018, 57.91295593372756, 153.6880341900703, 6.383423046121513, 11.967476663335685, 141.59591674472875, 68.55248046142084, 25.222750365840284, 41.144428023106045, 18.55915828437213, 37.166741447679826, 24.738826879570787, 12.638183740987227, 80.80122961031732, 15.611556218493478, 21.96151113286313, 14.748679392377479, 10.472488302749962, 10.981670761842375, 14.362848483800567, 31.57876263613716, 34.635404312622555, 43.87198628678975, 13.74655890492158, 29.26054518213862, 24.14238948408908, 98.207876491258, 25.267137675658205, 6.505126185918241, 9.34440679270811, 39.049244857983716, 19.964659446180846, 32.540131681309006, 21.12438344196588, 13.068947603629487, 6.84842852578953, 45.1761870407666, 87.95083398661782, 39.230175286624196, 13.059219734671125, 8.532350385204847, 32.94462379126141, 22.769186132246226, 14.812002758081878, 6.623944893086998, 37.533836531053936, 123.9746699321466, 8.613492271628965, 6.162752280328534, 18.803897838355258, 15.106350322647712, 36.09860992490313, 79.8712736692247, 31.389384550861287, 25.24704191518972, 26.202478899297656, 66.6496800911964, 72.93947360407353, 20.173569028545078, 10.64984809462761, 17.049509057620988, 41.81077238134298, 26.81674010027493, 76.81118997696215, 9.140431966572262, 20.719801899154543, 13.912582128176535, 42.98359481161165, 12.700989816767418, 12.782761152061935, 114.44115748874994, 15.294699333611401, 36.143469607369376, 18.923810429087663, 25.922660217842925, 28.868790151441143, 75.10767685742104, 11.614074649256905, 16.376557163579353, 61.54804898188114, 21.89574925430308, 14.410908604136822, 55.04569544439034, 7.557835273158335, 55.212754080168736, 40.52677646771717, 40.734354338276134, 12.408051065888696, 51.80617400750657, 26.69771962656889, 159.87928647495508, 52.65710712513757, 14.168002894188845, 37.88320737211126, 28.961806648681957, 67.64106427358121, 64.62017181838648, 19.31159986046846, 13.199723341868905, 94.96268004554246, 58.23859175731029, 41.54775597146598, 7.625354864437247, 63.88084327615404, 16.119110541366474, 13.71895768145524, 8.526744763045574, 8.231259012847554, 24.765608389954053, 187.5975059979243, 18.611532003565046, 18.724089761970863, 76.13328013970153, 86.38624223840557, 6.455553585154065, 10.404402534818349, 36.87772199401961, 72.04765495932422, 8.186711079895177, 9.377584798370263, 50.32421280299449, 40.9498790226797, 191.2361780669908, 27.79685783785638, 7.867910936976, 84.50141810695465, 28.03521172553129, 25.427517316915235, 23.634579064303864, 10.397303399787388, 15.846261389271522, 113.3694118209961, 35.38654922277119, 47.755384727733926, 9.569593216273118, 9.031696076731592, 8.131426478157756, 7.577426022463829, 5.984817475581673, 55.874278086004566, 15.77796314622483, 15.392144631972883, 7.92248955934198, 50.92621676816675, 16.602304163608572, 7.222682335317802, 30.665558912127295, 19.726043350919383, 34.64522762325705, 67.17347375580326, 49.09337597735988, 47.920466069769745, 65.18757572076416, 39.60957639932684, 14.137038402976458, 25.82678751554862, 14.722291560779546, 24.240218991384204, 20.501711684123638, 36.734840916545366, 27.313749855229936, 8.896393032914965, 6.87002314263515, 28.0340839512414, 28.22153176810198, 17.939926315239898, 10.839016889029978, 7.11711200912808, 15.421796764935447, 67.96335799814258, 115.57471006390116, 44.20314195830131, 62.77867915794644, 23.819282068145213, 6.1304264502725205, 59.87041739475575, 55.6236535256411, 46.89602195677546, 16.340652961772147, 91.57178340616667, 49.98884568095916, 112.16775093497236, 64.47957151910472, 72.65073680867789, 12.813695354788619, 139.0985000888531, 23.698630856786554, 20.074383465631715, 89.05995665172178, 11.415068509648544, 26.924703926674592, 75.83122479521018, 6.461802096893999, 33.93800349670017, 34.398717179770216, 140.62910284895244, 21.350073199363987, 8.258740575507966, 27.91587550244225, 11.982595783274348, 39.105690410426305, 19.838924785087492, 106.34746542823794, 18.432748033268112, 9.723194186637322, 25.65763569037848, 20.08260531641246, 38.098781175392475, 16.361886700907423, 5.324820073672152, 76.23496226047946, 84.94771535982487, 43.53992949523434, 28.667520700324218, 28.359706417592292, 58.7333430979929, 24.14741392922538, 61.90505029946024, 116.92854713650881, 9.083611445521205, 19.96163246165515, 44.14608276280544, 26.595931869996736, 42.858003154750094, 69.96581617420591, 76.12619467074093, 56.030979887274356, 6.957150935850545, 25.39643898317121, 5.322181226125483, 19.481318213484666, 75.10303071455047, 14.253022127988448, 21.20624601198397, 69.04477526578968, 73.64038983970043, 21.416774158434105, 11.20308694492235, 32.26886450654002, 12.204499458289439, 40.22504922612191, 5.568865782306627, 7.018170419546054, 23.31004597015969, 59.037266333299314, 32.63554485763834, 53.42180377734502, 77.01460635269052, 25.02194750673126, 30.691463181848025, 18.936121494215634, 33.86259324836693, 10.057242070829329, 11.340836031111426, 14.190512126071727, 39.00826119669525, 103.38466589797693, 55.724212782219475, 5.1476778054032994, 10.21843046216397, 61.96688180347564, 43.07934353499122, 23.57951092702246, 30.80555562797883, 41.70242149399591, 57.70742220132558, 76.45761692111239, 69.49774903115875, 13.096768592583222, 13.750718582179, 19.300901559005702, 47.09246663807125, 40.42252150421529, 71.25104869882942, 7.727053703358158, 12.12544723386528, 25.60982461885311, 28.807625388271987, 7.758971950550915, 83.36781361673948, 34.06153836253898, 40.676423491719845, 98.77210462949992, 55.4345175788584, 16.613453495959487, 48.76190128843548, 25.484115989525304, 114.2427342342057, 10.234730730806469, 5.978069939670676, 20.510165282362294, 17.033266001877635, 9.910400022423483, 45.99224864089192, 35.51091809939866, 23.419615098517095, 60.77817342292035, 6.93764828950775, 40.795055143954166, 31.927874923021797, 8.657350196295502, 119.46031530513879, 39.9535428438338, 14.076855752625598, 33.07783770572787, 19.71408236620309, 5.258635819856634, 5.1501650633743905, 19.662459598745812, 101.7606393940114, 52.64491782725839, 32.975148436542085, 25.797509090138373, 83.00337772568378, 93.56532443387454, 19.576092976813573, 23.577318945299446, 48.100956935753715, 33.701683547418995, 49.75329142354498, 7.473925435532784, 16.335416270121407, 5.592354009523499, 12.81767959831354, 37.44980725669712, 79.67209781389182, 9.631255693542386, 33.420543275959936, 5.037855344602007, 51.109654085636606, 13.40652972546929, 145.89930754901707, 5.5323140197100935, 5.194477937689592, 13.691668046764871, 51.50607286130976, 77.92945300208302, 42.74351143550268, 23.89425312289863, 50.628745598756055, 212.59200259478496, 11.652507747004927, 61.8395947729132, 21.890504077648135, 55.10508002944252, 26.979116073702624, 16.519690920377982, 112.5166818615955, 5.837662543598979, 79.97167552098496, 64.56123042747383, 9.241283749901887, 39.4229508792758, 27.3008983805462, 10.298073747792879, 15.78484585232937, 6.5474075134423995, 17.716375067139218, 23.472044450871476, 84.05015602030966, 41.79158490484866, 13.611220762848179, 13.352977083970858, 7.679893808642979, 41.99985965413541, 70.35584029849228, 5.932914563767519, 8.159467413635001, 11.33753534141102, 11.70481355352222, 17.49719295375193, 19.786969922951968, 70.57203469343716, 57.61581477929698, 117.75502342753157, 79.17441936745783, 73.73443258669309, 31.27448619151639, 117.70617130791959, 17.825199836643893, 33.006670751280936, 55.25597714700767, 7.221942719787822, 8.654362806476364, 27.930576967619366, 90.61510970477991, 44.980283843982086, 34.13364667223156, 10.290942710989224, 62.14675178172709, 47.39567146571272, 14.716200053032413, 22.466651290938966, 11.322895780749674, 10.74717112567479, 20.538013621675606, 109.80190451315148, 98.99322552196314, 43.086014414794604, 67.24662194862447, 20.20889138875265, 50.45851230855365, 14.243614410631622, 72.09525056343905, 59.62700946654728, 129.3916659359103, 159.52059780441235, 28.463858154788454, 34.96995522055689, 6.333527084912874, 11.66210273665341, 17.261283291713397, 10.258711509105062, 115.36649557691875, 143.02405552310626, 7.547508992418963, 18.915130337400118, 133.77766822284391, 8.38409243918291, 124.74104964066609, 7.100961948091215, 16.826216402318504, 64.31207272882934, 91.19563157484637, 7.854889995061785, 141.44921164214625, 41.0773209998165, 184.13436609166808, 85.65047987050045, 31.67899435433767, 150.43323116905964, 22.960864068423636, 44.47192458192239, 26.97707365987518, 25.614255137906376, 60.41292349878034, 7.9495689228163755, 51.6524502594393, 16.91999866669772, 36.03192648353349, 47.705597313577485, 17.553198745306904, 176.2175002090674, 59.85284994294211, 29.501400050789123, 104.71887675421394, 85.92851891887689, 73.44011605239395, 27.568805844947494, 49.14928338287018, 6.132713334634844, 55.63126956568095, 12.031928289096534, 19.065596721361835, 25.37893496909476, 8.192573532480365, 18.200628424476115, 21.65484627771011, 13.0098971174106, 25.85814791280738, 69.15032441747437, 7.78047274943712, 14.041685851966047, 16.60183812175982, 22.28352263993665, 55.77343088456863, 69.72989936331231, 59.66520004926509, 134.75814598314378, 32.5737427905879, 67.75065597548452, 12.204429180206379, 44.8248166099207, 118.75482694691433, 147.58491502372513, 23.560056966875607, 68.94894988045644, 50.70342414326475, 89.45922251440379, 156.93383084660957, 67.88622519821182, 37.376832863705886, 55.11212221405351, 10.506985570473294, 292.2698667144811, 32.88772225990917, 6.983047589876509, 8.785211768876616, 40.60034188513831, 48.109556053746864, 21.79043688507707, 217.4445558246047, 48.481039392094054, 10.51972369869884, 83.1016912271821, 92.11774490994432, 5.730675130200703, 63.99011972414375, 50.180470654091444, 18.615280958579444, 36.0687559297035, 99.70321255465416, 97.968015206806, 83.22401409132908, 114.12263380245408, 32.26151552396949, 28.0628305392982, 39.84727983830331, 96.16960745375106, 176.21861328609663, 15.579860681758085, 95.69058473920865, 59.61724541031572, 26.374160406736884, 9.740656684499799, 10.769957248639903, 6.305154398225958, 104.44010798287204, 127.38955274642915, 5.219794981090466, 12.326543821561271, 28.985057798992962, 51.01713822054472, 6.943295526006815, 11.29772202335759, 173.20185719435983, 34.933170842613535, 120.04066586523723, 10.029922310177998, 120.48946736987446, 25.755624622715384, 20.785314860389214, 110.00883057065982, 99.26810348387863, 7.965799891265134, 31.560090704340716, 172.48888753141424, 135.3891539093005, 6.052271038819843, 37.30840898435438, 37.75823810698317, 12.876339902641213, 31.381053183929243, 110.05995855267122, 24.796529574694752, 12.824524231231065, 75.47498157808829, 70.83358044064313, 165.50922071825673, 117.46720079923375, 27.848804315798215, 110.51913349675728, 72.07337988808504, 79.95322547200878, 6.853740853020847, 28.900916063394757, 16.192742975017023, 25.58358683436697, 149.2011456419339, 22.98031837484765, 40.32529310475009, 16.026646788004964, 17.975614061416547, 49.370531149546224, 13.911699056683643, 17.3031718330069, 99.15031506074423, 17.691645540314763, 78.11491060820647, 66.04327115239394, 70.21777330789521, 118.6717910729807, 34.93950664006407, 98.66184256314388, 69.8375518142859, 36.85703129609975, 67.65676191626788, 62.3532644778029, 57.5814863327881, 25.173994645202217, 15.274357467082014, 13.772554591415368, 6.208910386988632, 7.545598502935836, 9.261642025926632, 8.494615020664977, 63.68920818105918, 55.38059674928243, 14.417781366678692, 17.02502252987498, 27.390763287122617, 7.273897292876645, 17.343422269761852, 6.762623366886507, 70.22150102407286, 26.648186397014484, 50.25005436341801, 14.440385552068031, 96.4600824096803, 35.74538275495775, 7.965898907507883, 69.74784243938753, 23.314899560370375, 36.85180495854689, 54.12036219626964, 82.82281671391699, 14.806370299389846, 30.655047103923273, 58.3280060943527, 39.46590392314221, 56.06441491826716, 41.50926405062394, 38.94532784007823, 15.370840198781078, 277.81410782989485, 29.462720979839297, 6.746550915558842, 8.891396104796756, 28.52044575129467, 28.83172833072751, 10.581718816130545, 113.81282765518294, 13.043252797164808, 5.677307284329812, 7.7652545565135025, 19.80084295225669, 57.74532019183313, 105.60759219066561, 15.556882814637069, 30.045396002085603, 14.228355998007144, 19.471086237986103, 22.517513072814204, 5.58398240003917, 6.583948374305817, 63.361269302137586, 19.089398422153607, 25.10718293959447, 32.743876504023895, 74.45627070599863, 11.879500412918908, 30.43994369298133, 8.533663537153528, 32.964611499909424, 63.64398841361849, 9.849239782983856, 82.18404980009481, 89.02951595208091, 114.72988645888837, 78.80792899946458, 29.146885504260247, 25.577817944458292, 11.581230390920538, 27.98252842647902, 128.7373719903669, 8.521732332180864, 11.857990365700992, 46.09178246448959, 67.92593270559937, 109.10239460735527, 28.445759783945988, 5.819738940907141, 108.17597115404033, 89.90196730627225, 5.752245947340318, 10.706700820439856, 7.340854981401633, 26.038972668048515, 6.594646752386425, 14.367190607601106, 10.777236028012256, 203.74894427720199, 6.11584026842543, 50.630801695334746, 38.9971519248871, 81.04213333268518, 29.72312295243347, 36.46150938881677, 5.9647134076975945, 56.70647416100719, 20.101352671087284, 5.069972753580615, 12.90961876478019, 117.8507993808347, 25.905679244914136, 77.90375940069458, 16.524194134179865, 7.5577807656684275, 7.513264698714163, 88.28259349845978, 80.97437591538409, 131.16853963563312, 56.11298308310402, 7.04033294868485, 132.70735910769432, 16.506256256130165, 7.048901500724862, 126.09804647827049, 5.933380960296654, 114.5143879605966, 61.02954248791138, 21.65683442957855, 101.45588619195662, 69.6104252926933, 20.476244196372434, 80.17506841908431, 35.607316698894124, 34.543841330376345, 133.64132565949532, 39.755674666394896, 143.1279015691034, 24.39474650298926, 58.93521016838889, 17.38629453365666, 121.36896658282922, 47.46837809705774, 25.562493096522925, 55.37529697485925, 24.043687925920644, 77.33334478783354, 14.200080717472172, 6.503816420818638, 38.682343516246874, 11.275001157182725, 23.539959789080825, 30.49396207629884, 93.57396513752279, 219.24346957422705, 30.640844636400868, 8.720969165651482, 43.94301082540342, 117.04917644611426, 27.220559714999034, 140.36061809457846, 174.0420033404957, 56.183271642297676, 43.2878645483534, 15.43067296545223, 26.983356613726702, 16.926618992899076, 130.049230605619, 36.7371695181566, 67.11776438300527, 182.80996409468634, 62.92312030741761, 9.336062685113513, 7.733057965601936, 75.87872253754111, 6.469306610573364, 91.60223983636513, 31.00587536571536, 17.955490615102043, 124.0858422325752, 13.417658542247214, 137.6064460455368, 99.85375056440532, 70.08779329932997, 83.47228586903758, 114.49465035144343, 58.18653911712303, 97.5837257736479, 11.975899968210284, 80.0543163688771, 160.30975521960266, 25.164692501373345, 20.723694043190353, 17.399996830995576, 41.98086869181522, 28.540664174882615, 91.65136672993243, 9.464035603739289, 11.165558862824625, 56.031203520757806, 40.520329856092914, 37.294324500564514, 293.3936561224875, 10.331843283563625, 119.06183275777467, 9.962568451886956, 11.535959211439199, 33.08614556460257, 25.378924498555996, 126.64554265265421, 7.944399264894856, 124.87227534840873, 69.80088005245197, 27.76596025472867, 213.61359389621052, 27.64573590457063, 5.888145075447551, 10.370667985126847, 59.36503141742386, 14.40432501517118, 35.057992328583005, 39.32040435933717, 17.19539191952771, 48.322200320145825, 62.2892731934909, 17.204960240744494, 91.14130888228067, 63.990739238422215, 64.37088205244763, 13.000925244349556, 33.77209323008662, 101.21721801917776, 23.61726954914362, 24.46411407280957, 5.716087507505188, 45.13693763665903, 12.532258235244031, 163.2937824005397, 24.66478078520773, 45.107002535619706, 10.07289660558011, 43.6843885651003, 10.20764951480329, 18.694837946410292, 145.44120810984305, 306.1300411177572, 5.657838599371941, 96.37640087270388, 34.646407970941105, 151.29862535362193, 8.080950955674519, 45.73881887781687, 33.52192375780186, 101.02244649578466, 26.118769856136446, 45.891338783627305, 30.462625911337412, 46.70152600523129, 53.84237586093641, 5.690493831732898, 12.149503439258323, 123.65251026531867, 92.60091500511473, 26.58585143405555, 27.69230200621735, 55.33608689622895, 16.66858725126268, 109.54106972993665, 6.72700491340349, 72.23776228538111, 142.36801175013622, 12.457796699615388, 25.738752858276875, 5.310305094068615, 31.628683201190988, 8.042751182733994, 6.765275388378757, 7.629151524661928, 118.08492054203701, 23.64334999975157, 76.46544392320713, 85.12276561169884, 25.527002470652352, 5.554454967743686, 7.579476543692946, 6.645202863666383, 9.369579842983805, 19.656348754122174, 26.64082626949559, 80.49988004107634, 15.93834687347336, 203.33115902916603, 31.244998544788633, 13.669630637950288, 45.70538733941752, 105.21009886038121, 71.88628081561131, 41.43840073266225, 51.701167506758246, 49.600957417679645, 77.90584398707915, 41.95381580319034, 15.592674214104875, 91.95514895560132, 115.67441421342514, 94.28973438317279, 32.47836676982605, 6.682793053950342, 50.24020723290218, 46.63984414434811, 99.7801582648706, 45.294378625164605, 10.311655353175128, 10.59420628648688, 94.06559464942649, 65.61264655035288, 138.2026977647047, 165.85739765882758, 20.313892311773504, 9.38803070106125, 5.785370513709841, 47.14454339935016, 96.59681674902276, 36.312145119479794, 8.56168101334612, 23.325207647140658, 51.72210739070284, 87.34548410797217, 11.053933249941759, 49.1244279578997, 17.233789556526908, 24.015868610393497, 7.775983848305719, 18.819445131200847, 8.711678562352034, 100.36546807621438, 44.69899752186581, 123.95104660826998, 46.73203277119145, ...])
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);
([2623728.735965496, 2712462.690745625, 2840969.9741191473, 2880439.780587047, 2911431.8090921743, 2942441.0005303468, 2960525.4782446087, 2961753.125, 3013821.7096996005, 3058022.521890132, 3060494.9321641857, 3067043.4109266675, 3105390.802558496, 3120089.0625, 3157079.2094717124, 3188239.0625, 3196910.872980704, 3206234.5830233037, 3208942.5149009577, 3209812.598147078, 3237531.25, 3274907.8125, 3314410.305195354, 3319708.903618919, 3320345.735735964, 3324896.875, 3375567.0812363117, 3380016.117823235, 3382532.1454222784, 3415932.634029783, 3439776.6600475004, 3444914.16979018, 3444934.4164349507, 3447196.0327126817, 3452949.958419446, 3471618.75, 3473515.094516177, 3506380.649739338, 3519009.375, 3526104.8123389333, 3544324.119053525, 3563489.8465870554, 3574815.8577999603, 3577551.5625, 3579231.25, 3591466.297565682, 3601913.64706987, 3602040.721549158, 3607015.625, 3607636.3716949555, 3613079.633589542, 3613085.9375, 3666948.432923257, 3667625.439118724, 3667711.0975699807, 3672995.3125, 3674001.446396945, 3675263.7513789656, 3677571.875, 3678221.875, 3678223.4375, 3678667.7726587825, 3741922.314112292, 3751354.8094587107, 3753576.746199517, 3763347.700001798, 3773093.75, 3786627.9717658986, 3790445.419522819, 3807413.312012489, 3808144.108733828, 3811107.8125, 3816798.4679370024, 3817082.758606261, 3840107.8125, 3840239.028827474, 3845808.98122407, 3871852.656909068, 3871917.1162564154, 3872446.875, 3873806.25, 3873809.375, 3873934.748990727, 3876289.6134942505, 3877664.068376857, 3879073.8080323627, 3883593.75, 3884609.418577042, 3893783.5497324727, 3895020.3125, 3895459.1932199043, 3895799.3051855676, 3900259.853135638, 3905068.75, 3920714.0625, 3920791.9946165816, 3926292.1875, 3926477.2436155006, 3927414.0625, 3934059.1486073947, 3955047.6655319426, 3964648.781132388, 3973968.915347731, 3979522.983208059, 4010356.1984718605, 4028596.4110502754, 4103856.154517485, 4104304.52691957, 4105164.0625, 4108017.1875, 4125755.1529733306, 4126913.7091797865, 4127254.35221487, 4127489.1215381995, 4128034.375, 4128210.5896113636, 4128215.7390923835, 4129503.1403388386, 4130214.0625, 4130549.3317962796, 4131489.0625, 4132104.1497260835, 4137358.778362357, 4152714.47349067, 4153406.25, 4153823.4375, 4202942.1875, 4209650.753257119, 4212586.375037707, 4214346.751110853, 4221773.056565681, 4225134.340602355, 4226586.758292377, 4230098.251672495, 4231220.3125, 4237328.695949571, 4237552.251035361, 4308421.055311061, 4309601.605086006, 4321590.190659306, 4338161.098343017, 4348596.875, 4360809.183757764, 4361162.370416608, 4374283.801699593, 4378485.9375, 4378807.169202138, 4396673.108641326, 4398670.441287721, 4406030.073241915, 4416861.902508789, 4418770.142974485, 4422254.4526691735, 4444208.793821578, 4444208.827991653, 4459226.904130495, 4467135.192219936, 4469958.663872015, 4482015.625, 4592811.02717694, 4624602.493430595, 4625577.3220768655, 4642927.977923781, 4687274.782045971, 4691542.726862629, 4723478.415368039, 4725680.019127025, 4789431.25, 4838338.60193809, 4840783.761468063, 4842177.961229825, 4844681.122699825, 4844829.289778553, 4844866.515890754, 4845206.489378264, 4845246.44103926, 4845448.4375, 4845637.599048362, 4846105.487843843, 4846343.75, 4847576.343595236, 4847615.625, 4847918.927724912, 4872635.784221982, 4905165.625, 4917460.186958178, 4941530.703218659, 4952600.0, 4988382.389932694, 4989132.8125, 5007985.998239529, 5014156.25, 5014833.387095513, 5015715.262455332, 5016931.678130255, 5016985.831406548, 5017033.122215544, 5017768.75, 5018077.277826704, 5019274.168997651, 5019320.940820403, 5019486.267355954, 5020013.85832007, 5020355.7320931805, 5020419.126330906, 5020492.1875, 5020795.118753318, 5020996.929116508, 5021161.3930803165, 5021806.25, 5021876.5625, 5021918.71212642, 5025160.051938542, 5026180.161153592, 5034402.3330544885, 5034474.820832639, 5034709.065851312, 5034801.038897418, 5035404.906213269, 5035525.362962046, 5035561.496234128, 5036040.625, 5036470.581374787, 5037101.185425553, 5037643.444612906, 5038128.053066209, 5038142.694595375, 5038401.5625, 5040221.117032667, 5042571.988410373, 5043769.554103782, 5062546.875, 5063950.376731669, 5066580.05909201, 5066615.312204994, 5067777.257710398, 5067837.5, 5069348.4375, 5069482.8125, 5070468.75, 5071456.2082881415, 5080240.625, 5082490.396612887, 5095640.4718255345, 5102857.753771655, 5103563.799877051, 5108961.894523083, 5110753.124911054, 5111945.556174193, 5113043.186455512, 5114000.511106891, 5114647.661586759, 5115128.263398965, 5115672.488276495, 5116848.244605478, 5117039.045965486, 5117154.808049541, 5117263.923022507, 5119994.381181611, 5129520.3125, 5132231.596694239, 5132387.205346904, 5134242.584924029, 5137542.1875, 5138042.1875, 5138664.0625, 5138675.324296941, 5139225.0, 5139802.2682496235, 5140526.144492253, 5142302.667617222, 5145503.708387298, 5146045.1004544245, 5156918.085184935, 5157400.375423121, 5157564.969959838, 5158226.5625, 5159576.738881844, 5159683.482783455, 5161724.115626354, 5163132.6492553055, 5163393.573747623, 5163398.414314562, 5164834.375, 5165333.68940407, 5165481.196986724, 5166051.898075433, 5168534.8607814815, 5171539.0625, 5172183.6914828215, 5172450.617347723, 5173329.76766527, 5173667.617152538, 5174231.08593243, 5175579.033438823, 5177122.889678255, 5177362.82863724, 5177449.492286216, 5178897.7562938295, 5179717.814655025, 5179826.01875176, 5179914.629671518, 5180954.962308531, 5181001.5625, 5181045.378371801, 5181065.118673179, 5181151.4141432075, 5181252.816651878, 5181407.1439305125, 5181498.399240936, 5181563.956769306, 5181573.4375, 5181659.633153459, 5181720.3125, 5181734.465312092, 5181802.460788411, 5181839.632046504, 5181840.037375132, 5181852.963760736, 5181896.340224357, 5182126.369326418, 5182141.518864967, 5182181.25, 5182257.395339481, 5182453.218319887, 5182473.485196468, 5182525.0, 5182588.094619197, 5182689.0625, 5182841.340927349, 5182854.279469487, 5182867.168377982, 5182940.579645546, 5182964.215181637, 5182978.63608601, 5182984.375, 5183007.605902337, 5183078.125, 5183123.5099016735, 5183586.747436771, 5183842.937003506, 5183851.694704545, 5183896.662950899, 5184062.880965233, 5184159.375, 5184210.426037123, 5184214.849141901, 5184299.328347043, 5184300.64098068, 5184604.6875, 5184769.998975685, 5184844.052257424, 5185135.9375, 5185306.082421556, 5185394.734505285, 5185814.295143571, 5186015.039093344, 5186260.585565279, 5186325.810549502, 5186706.25, 5187074.935458819, 5187084.375, 5187240.954832193, 5187873.9940573275, 5187893.582822072, 5187921.406477879, 5188083.223490004, 5188098.170815034, 5188356.25, 5188595.3125, 5189093.75, 5189195.3125, 5189372.25391634, 5189376.565433268, 5189681.074576975, 5190007.8466775445, 5190368.092210381, 5190525.433523131, 5190857.207977148, 5191469.559955691, 5192661.551124347, 5209707.803886629, 5221161.43687988, 5221493.423627499, 5223496.37249539, 5223522.688874941, 5226692.279032803, 5228310.760106191, 5228847.515973838, 5230242.1875, 5232119.65271152, 5233018.0775322765, 5235985.6521006515, 5267257.113530273, 5267339.537461275, 5268246.210305663, 5271168.044567019, 5305474.741999895, 5323092.1875, 5335843.75, 5338971.71995234, 5341150.237376172, 5343042.0276382305, 5345652.395640959, 5354384.061300995, 5355024.584428255, 5355474.64389425, 5355650.0, 5356052.752735317, 5356469.07322417, 5356721.476161359, 5356922.056070142, 5356972.966635981, 5360746.875, 5361798.772039067, 5361902.756242362, 5362945.092466063, 5363946.157234153, 5367024.5291260965, 5367815.625, 5381962.4841961, 5382235.582779526, 5389104.315781499, 5395960.9375, 5398285.394396691, 5435587.344641121, 5456207.523652553, 5457000.0, 5462831.087183506, 5465139.37416721, 5465937.5, 5465990.163935974, 5465991.580746611, 5466154.604202685, 5468917.54791932, 5469354.512430838, 5471656.565018811, 5472425.0, 5473135.9375, 5475379.578961747, 5477060.330971906, 5478060.872463003, 5478650.957863764, 5484548.642460424, 5495433.186774927, 5498177.851476064, 5499989.321450526, 5500498.4375, 5500823.4375, 5501105.850923762, 5501119.8223039135, 5501731.457083713, 5502944.370128788, 5503887.5, 5504821.800161907, 5504927.876641622, 5505032.942718482, 5505033.152797508, 5506055.227807257, 5506571.185082371, 5506710.9375, 5506734.058640547, 5506821.533005087, 5506958.434850768, 5507087.5, 5507342.1875, 5507370.833769102, 5507902.949940281, 5509338.887696599, 5510789.0625, 5513215.993971619, 5527975.636249269, 5534607.781754686, 5537198.4375, 5561976.5625, 5566432.8125, 5568296.264436346, 5588671.875, 5591367.1875, 5591396.814604321, 5601072.33997584, 5601443.871387071, 5602041.2023105305, 5604648.030325436, 5605952.151056586, 5607948.4375, 5608073.6532302145, 5609248.4375, 5610236.860848416, 5610613.673007937, 5610616.991500891, 5610920.241028159, 5611301.5625, 5611543.566492896, 5611986.000574246, 5612092.184396818, 5612216.627843178, 5612678.632554338, 5614861.254449779, 5616391.124384195, 5616525.924967254, 5616726.5625, 5617117.1875, 5617145.155744319, 5618550.7583725015, 5618771.459637558, 5619423.617459967, 5619430.934193969, 5619953.046476008, 5620361.357359063, 5620456.25, 5620550.0, 5621042.833517579, 5621524.511640036, 5621556.25, 5621868.628917944, 5621875.692409578, 5621878.039256265, 5622749.674044186, 5623135.57304081, 5623610.306176727, 5626742.104085126, 5631227.32468982, 5640521.873854505, 5642261.803271325, 5644698.73780102, 5645256.687466284, 5645996.875, 5647527.648734067, 5647606.799807959, 5647793.75, 5648489.0625, 5648647.75310929, 5651651.5625, 5652671.875, 5653255.360411731, 5655488.552898466, 5657865.388983552, 5662045.730863033, 5667631.25, 5667645.689391314, 5668827.023737913, 5677881.0676025655, 5677904.505404094, 5693536.591564126, 5694560.752716191, 5694972.817857545, 5695495.161326278, 5696212.5, 5696395.77731166, 5696970.054532746, 5697375.376640263, 5698073.0250921985, 5698610.9375, 5698882.8125, 5698913.711083438, 5699243.75, 5699355.323607675, 5699987.5, 5700572.469585699, 5700956.25, 5701251.3947019875, 5701430.691453905, 5706847.542373857, 5710381.25, 5712178.125, 5712930.939902857, 5712984.529525487, 5713834.112952902, 5713892.1875, 5714015.625, 5714032.375434426, 5714052.756257489, 5714092.1875, 5714102.570954418, 5714103.962239898, 5714242.1875, 5714476.5625, 5714572.011114726, 5714635.151059499, 5714846.875, 5714929.260285574, 5715300.0, 5715438.702786171, 5715697.244356935, 5715817.078538441, 5716204.6875, 5716580.403369413, 5717143.676593053, 5717537.5, 5719703.125, 5720060.9375, 5720960.36350086, 5721096.875, 5721105.115255609, 5721598.519106588, 5722738.77908333, 5722863.848135802, 5723373.5954702785, 5723821.202578723, 5724016.095296137, 5725015.505929369, 5725020.759852373, 5725774.758395862, 5725826.857129231, 5728307.929997095, 5730732.8125, 5733827.193250379, 5734463.151901901, 5735416.117393011, 5736460.9375, 5739283.650947834, 5739765.731113983, 5740412.5, 5741676.252322535, 5744418.75, 5744878.849754072, 5745737.947128968, 5745955.859336916, 5746679.853509832, 5754556.25, 5754651.388522965, 5756224.339792855, 5758465.366471554, 5760113.049906624, 5769002.861673225, 5770051.210775243, 5770657.344657091, 5771275.371218193, 5771368.077153004, 5772126.414975435, 5772342.1875, 5772363.441203591, 5773443.056060654, 5774975.630086226, 5775040.610236898, 5775448.40444988, 5779483.211608079, 5781059.3399052005, 5785962.684192755, 5792812.15143996, 5795637.5, 5796183.248278799, 5803338.30778078, 5803648.73113197, 5811876.39360922, 5819907.8125, 5820027.762194013, 5820056.25, 5821214.320771651, 5822144.368952064, 5822403.088765507, 5823230.950759448, 5823237.129778651, 5824564.6086344635, 5826839.635451823, 5827228.058475515, 5834506.25, 5834606.044986996, 5835796.875, 5836620.3125, 5836671.753691607, 5836932.886964631, 5839343.5426416695, 5839726.5625, 5840233.546184408, 5840292.967466125, 5841554.491311006, 5841712.260381183, 5842044.967818317, 5843472.961791264, 5844002.962773907, 5845532.728828185, 5851594.123720246, 5852276.5625, 5858346.875, 5858479.542955565, 5858826.019980341, 5860584.314971549, 5862120.862332752, 5862138.013801226, 5862582.808074469, 5862873.8483641725, 5863567.643023008, 5864009.375, 5864367.049503537, 5864659.092412219, 5865061.894836135, 5871604.0275146505, 5875862.389203898, 5885924.6650959235, 5887526.5625, 5887612.5, 5888115.334929618, 5890420.761748051, 5890968.625357658, 5891299.7410148615, 5891835.486929481, 5892360.12542095, 5892604.6875, 5894258.4912889665, 5894311.045757345, 5894312.932922009, 5894368.837712732, 5894468.664472325, 5894488.4918568, 5894665.624758441, 5894735.9375, 5894958.9951563515, 5895216.188856358, 5895335.330890556, 5895788.589585347, 5895951.989286674, 5895963.374295633, 5896201.5625, 5896319.859388781, 5896425.864071342, 5896493.374236483, 5896618.549406729, 5896619.5827220725, 5896633.971906344, 5896640.06851479, 5896674.028747146, 5896681.25, 5896727.837412136, 5896899.799256056, 5897208.681221183, 5897236.730573534, 5897244.1830373695, 5897308.769951016, 5897331.689737828, 5897337.5, 5897354.152282735, 5897361.492394872, 5897417.1875, 5897417.1875, 5897475.0, 5897498.4375, 5897550.0, 5897709.2057320485, 5897773.709487061, 5897985.909502355, 5898098.4375, 5898117.607196967, 5898306.671850414, 5898434.375, 5898445.3125, 5898460.9375, 5898500.057359473, 5898536.015026783, 5898566.509490539, 5898582.3979733465, 5898585.0667770775, 5898688.775352692, 5898703.898696538, 5898704.6963332025, 5898747.52844311, 5898786.912264291, 5898806.013579025, 5898875.194526659, 5898887.762604732, 5899014.0625, 5899110.9375, 5899175.84685442, 5899232.846860639, 5899243.75, 5899404.973591166, 5899550.0, 5899579.4521971885, 5899642.246609178, 5899666.528065207, 5899673.525320264, 5899777.9768476095, 5899806.278170739, 5899851.923814198, 5899859.247544839, 5899968.494192735, 5900032.8125, 5900040.625, 5900079.597214898, 5900134.185198101, 5900179.369653129, 5900206.25, 5900221.944625916, 5900268.466625213, 5900287.927370061, 5900290.555559551, 5900339.030696375, 5900357.8125, 5900424.516258417, 5900433.863702335, 5900448.253490908, 5900640.016642808, 5900675.391200351, 5900702.678472677, 5900754.6875, 5900773.4375, 5900796.843368762, 5900816.319635612, 5900834.123798096, 5900873.4375, 5900877.08375408, 5900943.235528357, 5900977.162745178, 5900984.204729111, 5901051.5625, 5901115.347592795, 5901193.75, 5901204.365443533, 5901226.668370511, 5901284.069638194, 5901318.84223393, 5901332.49581753, 5901516.457147232, 5901648.707259176, 5901834.415241206, 5901910.736992627, 5901921.052559055, 5901964.710576196, 5901967.618928088, 5902159.305452091, 5902249.039971088, 5902299.8267767485, 5902356.25, 5902446.444102388, 5902978.247679189, 5903088.979446699, 5903141.034999742, 5903254.6875, 5903323.4375, 5903446.875, 5903939.0625, 5903950.0, 5903981.255505449, 5904017.532715571, 5904067.1875, 5904453.010601852, 5904842.876065382, 5904891.916472624, 5905047.490755406, 5905235.9375, 5905274.026339081, 5905374.567842748, 5905431.25, 5905600.0, 5905682.8125, 5905784.182302894, 5906014.0625, 5906037.5, 5906078.607399095, 5906095.3125, 5906252.306971235, 5906589.894747981, 5906863.4817493465, 5906943.4347626325, 5907048.4375, 5907051.5625, 5907076.5625, 5907120.465300855, 5907381.274082348, 5907412.5, 5907535.9375, 5907648.4375, 5907690.3775733635, 5907877.548241987, 5908012.5, 5908095.975210317, 5908214.308876582, 5908529.977093583, 5908590.849904066, 5908651.5625, 5908821.16657001, 5908835.9375, 5908900.0, 5908924.424556455, 5909554.6875, 5909565.578972005, 5909647.8294372205, 5909651.017407882, 5909673.045190706, 5909759.226543573, 5910079.6875, 5910281.25, 5910311.425185805, 5910332.8125, 5910378.769687879, 5910384.864392005, 5910448.4375, 5910478.4910788955, 5910492.1875, 5910572.814334854, 5910594.081096646, 5910604.399004938, 5910610.880260856, 5910743.930400288, 5910759.520600672, 5910891.705307422, 5910964.807094691, 5910980.35208113, 5911082.580839355, 5911120.3125, 5911125.763578975, 5911131.25, 5911141.50663558, 5911146.039819484, 5911170.250987032, 5911225.875318608, 5911236.702887412, 5911253.063446787, 5911306.25, 5911309.375, 5911310.527304993, 5911319.864529494, 5911539.0625, 5911573.4375, 5911612.365230662, 5911625.383569051, 5911744.015719785, 5911763.489265187, 5911879.342484235, 5911891.928875944, 5911898.141097816, 5911909.357289042, 5911995.3125, 5912014.7921602735, 5912042.143995921, 5912068.414578301, 5912122.264661536, 5912128.125, 5912168.564373017, 5912223.4375, 5912329.3376762485, 5912386.649085331, 5912395.153677732, 5912417.797375418, 5912420.001884467, 5912422.946088876, 5912423.446353496, 5912448.508584089, 5912603.125, 5912616.218848876, 5912669.601374444, 5912761.895246224, 5912842.014900848, 5912919.182680551, 5912929.621322618, 5912965.002057844, 5912965.669807299, 5912975.856299048, 5912981.346751556, 5913001.022367801, 5913192.238130802, 5913330.879706066, 5913529.6875, 5913726.183334131, 5913993.718615472, 5914003.125, 5914051.4369634045, 5914181.25, 5914203.125, 5914226.5625, 5914293.75, 5914365.834447208, 5914529.848457759, 5914798.4375, 5915146.937974194, 5915268.3042387385, 5915602.235408947, 5915627.706802162, 5915792.1875, 5915868.75, 5915879.6875, 5915892.1875, 5915933.781613852, 5915965.25458452, 5915967.1875, 5915968.75, 5915979.65399975, 5915980.896696723, 5916085.310565588, 5916265.691220002, 5916454.293202512, 5916589.0625, 5916600.0, 5916689.0625, 5917084.861353878, 5917179.270721937, 5917289.794761543, 5917472.311413866, 5917517.139783633, 5917544.844267215, 5917632.903346479, 5917721.809361432, 5917942.64113044, 5918024.182500499, 5918044.475768808, 5918059.375, 5918095.304344424, 5918213.026221865, 5918223.255775192, ...], [27.722445512310742, 18.68941771797773, 23.27255486718225, 5.655045282446632, 6.5784570238663544, 16.596181920337372, 8.556780285202006, 39.164897558089876, 25.638659482631233, 106.48615673265562, 13.666178101606508, 23.2641435118921, 11.417067192737486, 33.935031141884295, 13.386626900008958, 90.9254111734991, 51.58360010870231, 92.05503036615033, 16.355830875305358, 15.329278476952602, 31.43550435494305, 28.600057049422436, 20.267567024225144, 39.80844552410231, 5.734233932391026, 68.4789449780021, 43.14187495278669, 11.99657345054925, 10.223799974346376, 7.07531444515545, 15.326823538581525, 11.299654231886839, 27.16119588801286, 60.08956646418017, 92.96623090011173, 32.45207725441435, 13.243326249521528, 13.059594479501321, 47.36985715624381, 75.64726467325771, 6.161963368983668, 12.056692334158235, 5.9599388352330065, 80.77523788992619, 43.96434547936122, 18.12439388228094, 39.217129708805636, 15.32273831294896, 48.50228888209694, 93.81180026817363, 27.501493078753253, 72.61051048552102, 7.1202490901798186, 8.533293938781174, 5.717021585912105, 64.09894508702094, 32.189964668032566, 23.60971772793414, 32.83663189659959, 41.99913763698627, 74.46607174711303, 41.89250061829245, 16.92883791765362, 129.00540954971456, 35.35750479156686, 19.411392059604054, 32.54871474356082, 25.825854158643633, 11.29921492834724, 19.312012633917234, 32.05867118006001, 63.11544280254944, 79.40613716300417, 177.54787687093093, 63.88479172501172, 35.818603440907154, 46.879158451007356, 29.28692793885084, 14.676741693085276, 59.83436059329934, 59.25788651673595, 29.598590513298575, 26.011101019059215, 17.560225320020923, 6.267941151348715, 5.730752575848625, 51.066802789092144, 21.628207444178887, 22.130090013594018, 57.91295593372756, 153.6880341900703, 6.383423046121513, 11.967476663335685, 141.59591674472875, 68.55248046142084, 25.222750365840284, 41.144428023106045, 18.55915828437213, 37.166741447679826, 24.738826879570787, 12.638183740987227, 80.80122961031732, 15.611556218493478, 21.96151113286313, 14.748679392377479, 10.472488302749962, 10.981670761842375, 14.362848483800567, 31.57876263613716, 34.635404312622555, 43.87198628678975, 13.74655890492158, 29.26054518213862, 24.14238948408908, 98.207876491258, 25.267137675658205, 6.505126185918241, 9.34440679270811, 39.049244857983716, 19.964659446180846, 32.540131681309006, 21.12438344196588, 13.068947603629487, 6.84842852578953, 45.1761870407666, 87.95083398661782, 39.230175286624196, 13.059219734671125, 8.532350385204847, 32.94462379126141, 22.769186132246226, 14.812002758081878, 6.623944893086998, 37.533836531053936, 123.9746699321466, 8.613492271628965, 6.162752280328534, 18.803897838355258, 15.106350322647712, 36.09860992490313, 79.8712736692247, 31.389384550861287, 25.24704191518972, 26.202478899297656, 66.6496800911964, 72.93947360407353, 20.173569028545078, 10.64984809462761, 17.049509057620988, 41.81077238134298, 26.81674010027493, 76.81118997696215, 9.140431966572262, 20.719801899154543, 13.912582128176535, 42.98359481161165, 12.700989816767418, 12.782761152061935, 114.44115748874994, 15.294699333611401, 36.143469607369376, 18.923810429087663, 25.922660217842925, 28.868790151441143, 75.10767685742104, 11.614074649256905, 16.376557163579353, 61.54804898188114, 21.89574925430308, 14.410908604136822, 55.04569544439034, 7.557835273158335, 55.212754080168736, 40.52677646771717, 40.734354338276134, 12.408051065888696, 51.80617400750657, 26.69771962656889, 159.87928647495508, 52.65710712513757, 14.168002894188845, 37.88320737211126, 28.961806648681957, 67.64106427358121, 64.62017181838648, 19.31159986046846, 13.199723341868905, 94.96268004554246, 58.23859175731029, 41.54775597146598, 7.625354864437247, 63.88084327615404, 16.119110541366474, 13.71895768145524, 8.526744763045574, 8.231259012847554, 24.765608389954053, 187.5975059979243, 18.611532003565046, 18.724089761970863, 76.13328013970153, 86.38624223840557, 6.455553585154065, 10.404402534818349, 36.87772199401961, 72.04765495932422, 8.186711079895177, 9.377584798370263, 50.32421280299449, 40.9498790226797, 191.2361780669908, 27.79685783785638, 7.867910936976, 84.50141810695465, 28.03521172553129, 25.427517316915235, 23.634579064303864, 10.397303399787388, 15.846261389271522, 113.3694118209961, 35.38654922277119, 47.755384727733926, 9.569593216273118, 9.031696076731592, 8.131426478157756, 7.577426022463829, 5.984817475581673, 55.874278086004566, 15.77796314622483, 15.392144631972883, 7.92248955934198, 50.92621676816675, 16.602304163608572, 7.222682335317802, 30.665558912127295, 19.726043350919383, 34.64522762325705, 67.17347375580326, 49.09337597735988, 47.920466069769745, 65.18757572076416, 39.60957639932684, 14.137038402976458, 25.82678751554862, 14.722291560779546, 24.240218991384204, 20.501711684123638, 36.734840916545366, 27.313749855229936, 8.896393032914965, 6.87002314263515, 28.0340839512414, 28.22153176810198, 17.939926315239898, 10.839016889029978, 7.11711200912808, 15.421796764935447, 67.96335799814258, 115.57471006390116, 44.20314195830131, 62.77867915794644, 23.819282068145213, 6.1304264502725205, 59.87041739475575, 55.6236535256411, 46.89602195677546, 16.340652961772147, 91.57178340616667, 49.98884568095916, 112.16775093497236, 64.47957151910472, 72.65073680867789, 12.813695354788619, 139.0985000888531, 23.698630856786554, 20.074383465631715, 89.05995665172178, 11.415068509648544, 26.924703926674592, 75.83122479521018, 6.461802096893999, 33.93800349670017, 34.398717179770216, 140.62910284895244, 21.350073199363987, 8.258740575507966, 27.91587550244225, 11.982595783274348, 39.105690410426305, 19.838924785087492, 106.34746542823794, 18.432748033268112, 9.723194186637322, 25.65763569037848, 20.08260531641246, 38.098781175392475, 16.361886700907423, 5.324820073672152, 76.23496226047946, 84.94771535982487, 43.53992949523434, 28.667520700324218, 28.359706417592292, 58.7333430979929, 24.14741392922538, 61.90505029946024, 116.92854713650881, 9.083611445521205, 19.96163246165515, 44.14608276280544, 26.595931869996736, 42.858003154750094, 69.96581617420591, 76.12619467074093, 56.030979887274356, 6.957150935850545, 25.39643898317121, 5.322181226125483, 19.481318213484666, 75.10303071455047, 14.253022127988448, 21.20624601198397, 69.04477526578968, 73.64038983970043, 21.416774158434105, 11.20308694492235, 32.26886450654002, 12.204499458289439, 40.22504922612191, 5.568865782306627, 7.018170419546054, 23.31004597015969, 59.037266333299314, 32.63554485763834, 53.42180377734502, 77.01460635269052, 25.02194750673126, 30.691463181848025, 18.936121494215634, 33.86259324836693, 10.057242070829329, 11.340836031111426, 14.190512126071727, 39.00826119669525, 103.38466589797693, 55.724212782219475, 5.1476778054032994, 10.21843046216397, 61.96688180347564, 43.07934353499122, 23.57951092702246, 30.80555562797883, 41.70242149399591, 57.70742220132558, 76.45761692111239, 69.49774903115875, 13.096768592583222, 13.750718582179, 19.300901559005702, 47.09246663807125, 40.42252150421529, 71.25104869882942, 7.727053703358158, 12.12544723386528, 25.60982461885311, 28.807625388271987, 7.758971950550915, 83.36781361673948, 34.06153836253898, 40.676423491719845, 98.77210462949992, 55.4345175788584, 16.613453495959487, 48.76190128843548, 25.484115989525304, 114.2427342342057, 10.234730730806469, 5.978069939670676, 20.510165282362294, 17.033266001877635, 9.910400022423483, 45.99224864089192, 35.51091809939866, 23.419615098517095, 60.77817342292035, 6.93764828950775, 40.795055143954166, 31.927874923021797, 8.657350196295502, 119.46031530513879, 39.9535428438338, 14.076855752625598, 33.07783770572787, 19.71408236620309, 5.258635819856634, 5.1501650633743905, 19.662459598745812, 101.7606393940114, 52.64491782725839, 32.975148436542085, 25.797509090138373, 83.00337772568378, 93.56532443387454, 19.576092976813573, 23.577318945299446, 48.100956935753715, 33.701683547418995, 49.75329142354498, 7.473925435532784, 16.335416270121407, 5.592354009523499, 12.81767959831354, 37.44980725669712, 79.67209781389182, 9.631255693542386, 33.420543275959936, 5.037855344602007, 51.109654085636606, 13.40652972546929, 145.89930754901707, 5.5323140197100935, 5.194477937689592, 13.691668046764871, 51.50607286130976, 77.92945300208302, 42.74351143550268, 23.89425312289863, 50.628745598756055, 212.59200259478496, 11.652507747004927, 61.8395947729132, 21.890504077648135, 55.10508002944252, 26.979116073702624, 16.519690920377982, 112.5166818615955, 5.837662543598979, 79.97167552098496, 64.56123042747383, 9.241283749901887, 39.4229508792758, 27.3008983805462, 10.298073747792879, 15.78484585232937, 6.5474075134423995, 17.716375067139218, 23.472044450871476, 84.05015602030966, 41.79158490484866, 13.611220762848179, 13.352977083970858, 7.679893808642979, 41.99985965413541, 70.35584029849228, 5.932914563767519, 8.159467413635001, 11.33753534141102, 11.70481355352222, 17.49719295375193, 19.786969922951968, 70.57203469343716, 57.61581477929698, 117.75502342753157, 79.17441936745783, 73.73443258669309, 31.27448619151639, 117.70617130791959, 17.825199836643893, 33.006670751280936, 55.25597714700767, 7.221942719787822, 8.654362806476364, 27.930576967619366, 90.61510970477991, 44.980283843982086, 34.13364667223156, 10.290942710989224, 62.14675178172709, 47.39567146571272, 14.716200053032413, 22.466651290938966, 11.322895780749674, 10.74717112567479, 20.538013621675606, 109.80190451315148, 98.99322552196314, 43.086014414794604, 67.24662194862447, 20.20889138875265, 50.45851230855365, 14.243614410631622, 72.09525056343905, 59.62700946654728, 129.3916659359103, 159.52059780441235, 28.463858154788454, 34.96995522055689, 6.333527084912874, 11.66210273665341, 17.261283291713397, 10.258711509105062, 115.36649557691875, 143.02405552310626, 7.547508992418963, 18.915130337400118, 133.77766822284391, 8.38409243918291, 124.74104964066609, 7.100961948091215, 16.826216402318504, 64.31207272882934, 91.19563157484637, 7.854889995061785, 141.44921164214625, 41.0773209998165, 184.13436609166808, 85.65047987050045, 31.67899435433767, 150.43323116905964, 22.960864068423636, 44.47192458192239, 26.97707365987518, 25.614255137906376, 60.41292349878034, 7.9495689228163755, 51.6524502594393, 16.91999866669772, 36.03192648353349, 47.705597313577485, 17.553198745306904, 176.2175002090674, 59.85284994294211, 29.501400050789123, 104.71887675421394, 85.92851891887689, 73.44011605239395, 27.568805844947494, 49.14928338287018, 6.132713334634844, 55.63126956568095, 12.031928289096534, 19.065596721361835, 25.37893496909476, 8.192573532480365, 18.200628424476115, 21.65484627771011, 13.0098971174106, 25.85814791280738, 69.15032441747437, 7.78047274943712, 14.041685851966047, 16.60183812175982, 22.28352263993665, 55.77343088456863, 69.72989936331231, 59.66520004926509, 134.75814598314378, 32.5737427905879, 67.75065597548452, 12.204429180206379, 44.8248166099207, 118.75482694691433, 147.58491502372513, 23.560056966875607, 68.94894988045644, 50.70342414326475, 89.45922251440379, 156.93383084660957, 67.88622519821182, 37.376832863705886, 55.11212221405351, 10.506985570473294, 292.2698667144811, 32.88772225990917, 6.983047589876509, 8.785211768876616, 40.60034188513831, 48.109556053746864, 21.79043688507707, 217.4445558246047, 48.481039392094054, 10.51972369869884, 83.1016912271821, 92.11774490994432, 5.730675130200703, 63.99011972414375, 50.180470654091444, 18.615280958579444, 36.0687559297035, 99.70321255465416, 97.968015206806, 83.22401409132908, 114.12263380245408, 32.26151552396949, 28.0628305392982, 39.84727983830331, 96.16960745375106, 176.21861328609663, 15.579860681758085, 95.69058473920865, 59.61724541031572, 26.374160406736884, 9.740656684499799, 10.769957248639903, 6.305154398225958, 104.44010798287204, 127.38955274642915, 5.219794981090466, 12.326543821561271, 28.985057798992962, 51.01713822054472, 6.943295526006815, 11.29772202335759, 173.20185719435983, 34.933170842613535, 120.04066586523723, 10.029922310177998, 120.48946736987446, 25.755624622715384, 20.785314860389214, 110.00883057065982, 99.26810348387863, 7.965799891265134, 31.560090704340716, 172.48888753141424, 135.3891539093005, 6.052271038819843, 37.30840898435438, 37.75823810698317, 12.876339902641213, 31.381053183929243, 110.05995855267122, 24.796529574694752, 12.824524231231065, 75.47498157808829, 70.83358044064313, 165.50922071825673, 117.46720079923375, 27.848804315798215, 110.51913349675728, 72.07337988808504, 79.95322547200878, 6.853740853020847, 28.900916063394757, 16.192742975017023, 25.58358683436697, 149.2011456419339, 22.98031837484765, 40.32529310475009, 16.026646788004964, 17.975614061416547, 49.370531149546224, 13.911699056683643, 17.3031718330069, 99.15031506074423, 17.691645540314763, 78.11491060820647, 66.04327115239394, 70.21777330789521, 118.6717910729807, 34.93950664006407, 98.66184256314388, 69.8375518142859, 36.85703129609975, 67.65676191626788, 62.3532644778029, 57.5814863327881, 25.173994645202217, 15.274357467082014, 13.772554591415368, 6.208910386988632, 7.545598502935836, 9.261642025926632, 8.494615020664977, 63.68920818105918, 55.38059674928243, 14.417781366678692, 17.02502252987498, 27.390763287122617, 7.273897292876645, 17.343422269761852, 6.762623366886507, 70.22150102407286, 26.648186397014484, 50.25005436341801, 14.440385552068031, 96.4600824096803, 35.74538275495775, 7.965898907507883, 69.74784243938753, 23.314899560370375, 36.85180495854689, 54.12036219626964, 82.82281671391699, 14.806370299389846, 30.655047103923273, 58.3280060943527, 39.46590392314221, 56.06441491826716, 41.50926405062394, 38.94532784007823, 15.370840198781078, 277.81410782989485, 29.462720979839297, 6.746550915558842, 8.891396104796756, 28.52044575129467, 28.83172833072751, 10.581718816130545, 113.81282765518294, 13.043252797164808, 5.677307284329812, 7.7652545565135025, 19.80084295225669, 57.74532019183313, 105.60759219066561, 15.556882814637069, 30.045396002085603, 14.228355998007144, 19.471086237986103, 22.517513072814204, 5.58398240003917, 6.583948374305817, 63.361269302137586, 19.089398422153607, 25.10718293959447, 32.743876504023895, 74.45627070599863, 11.879500412918908, 30.43994369298133, 8.533663537153528, 32.964611499909424, 63.64398841361849, 9.849239782983856, 82.18404980009481, 89.02951595208091, 114.72988645888837, 78.80792899946458, 29.146885504260247, 25.577817944458292, 11.581230390920538, 27.98252842647902, 128.7373719903669, 8.521732332180864, 11.857990365700992, 46.09178246448959, 67.92593270559937, 109.10239460735527, 28.445759783945988, 5.819738940907141, 108.17597115404033, 89.90196730627225, 5.752245947340318, 10.706700820439856, 7.340854981401633, 26.038972668048515, 6.594646752386425, 14.367190607601106, 10.777236028012256, 203.74894427720199, 6.11584026842543, 50.630801695334746, 38.9971519248871, 81.04213333268518, 29.72312295243347, 36.46150938881677, 5.9647134076975945, 56.70647416100719, 20.101352671087284, 5.069972753580615, 12.90961876478019, 117.8507993808347, 25.905679244914136, 77.90375940069458, 16.524194134179865, 7.5577807656684275, 7.513264698714163, 88.28259349845978, 80.97437591538409, 131.16853963563312, 56.11298308310402, 7.04033294868485, 132.70735910769432, 16.506256256130165, 7.048901500724862, 126.09804647827049, 5.933380960296654, 114.5143879605966, 61.02954248791138, 21.65683442957855, 101.45588619195662, 69.6104252926933, 20.476244196372434, 80.17506841908431, 35.607316698894124, 34.543841330376345, 133.64132565949532, 39.755674666394896, 143.1279015691034, 24.39474650298926, 58.93521016838889, 17.38629453365666, 121.36896658282922, 47.46837809705774, 25.562493096522925, 55.37529697485925, 24.043687925920644, 77.33334478783354, 14.200080717472172, 6.503816420818638, 38.682343516246874, 11.275001157182725, 23.539959789080825, 30.49396207629884, 93.57396513752279, 219.24346957422705, 30.640844636400868, 8.720969165651482, 43.94301082540342, 117.04917644611426, 27.220559714999034, 140.36061809457846, 174.0420033404957, 56.183271642297676, 43.2878645483534, 15.43067296545223, 26.983356613726702, 16.926618992899076, 130.049230605619, 36.7371695181566, 67.11776438300527, 182.80996409468634, 62.92312030741761, 9.336062685113513, 7.733057965601936, 75.87872253754111, 6.469306610573364, 91.60223983636513, 31.00587536571536, 17.955490615102043, 124.0858422325752, 13.417658542247214, 137.6064460455368, 99.85375056440532, 70.08779329932997, 83.47228586903758, 114.49465035144343, 58.18653911712303, 97.5837257736479, 11.975899968210284, 80.0543163688771, 160.30975521960266, 25.164692501373345, 20.723694043190353, 17.399996830995576, 41.98086869181522, 28.540664174882615, 91.65136672993243, 9.464035603739289, 11.165558862824625, 56.031203520757806, 40.520329856092914, 37.294324500564514, 293.3936561224875, 10.331843283563625, 119.06183275777467, 9.962568451886956, 11.535959211439199, 33.08614556460257, 25.378924498555996, 126.64554265265421, 7.944399264894856, 124.87227534840873, 69.80088005245197, 27.76596025472867, 213.61359389621052, 27.64573590457063, 5.888145075447551, 10.370667985126847, 59.36503141742386, 14.40432501517118, 35.057992328583005, 39.32040435933717, 17.19539191952771, 48.322200320145825, 62.2892731934909, 17.204960240744494, 91.14130888228067, 63.990739238422215, 64.37088205244763, 13.000925244349556, 33.77209323008662, 101.21721801917776, 23.61726954914362, 24.46411407280957, 5.716087507505188, 45.13693763665903, 12.532258235244031, 163.2937824005397, 24.66478078520773, 45.107002535619706, 10.07289660558011, 43.6843885651003, 10.20764951480329, 18.694837946410292, 145.44120810984305, 306.1300411177572, 5.657838599371941, 96.37640087270388, 34.646407970941105, 151.29862535362193, 8.080950955674519, 45.73881887781687, 33.52192375780186, 101.02244649578466, 26.118769856136446, 45.891338783627305, 30.462625911337412, 46.70152600523129, 53.84237586093641, 5.690493831732898, 12.149503439258323, 123.65251026531867, 92.60091500511473, 26.58585143405555, 27.69230200621735, 55.33608689622895, 16.66858725126268, 109.54106972993665, 6.72700491340349, 72.23776228538111, 142.36801175013622, 12.457796699615388, 25.738752858276875, 5.310305094068615, 31.628683201190988, 8.042751182733994, 6.765275388378757, 7.629151524661928, 118.08492054203701, 23.64334999975157, 76.46544392320713, 85.12276561169884, 25.527002470652352, 5.554454967743686, 7.579476543692946, 6.645202863666383, 9.369579842983805, 19.656348754122174, 26.64082626949559, 80.49988004107634, 15.93834687347336, 203.33115902916603, 31.244998544788633, 13.669630637950288, 45.70538733941752, 105.21009886038121, 71.88628081561131, 41.43840073266225, 51.701167506758246, 49.600957417679645, 77.90584398707915, 41.95381580319034, 15.592674214104875, 91.95514895560132, 115.67441421342514, 94.28973438317279, 32.47836676982605, 6.682793053950342, 50.24020723290218, 46.63984414434811, 99.7801582648706, 45.294378625164605, 10.311655353175128, 10.59420628648688, 94.06559464942649, 65.61264655035288, 138.2026977647047, 165.85739765882758, 20.313892311773504, 9.38803070106125, 5.785370513709841, 47.14454339935016, 96.59681674902276, 36.312145119479794, 8.56168101334612, 23.325207647140658, 51.72210739070284, 87.34548410797217, 11.053933249941759, 49.1244279578997, 17.233789556526908, 24.015868610393497, 7.775983848305719, 18.819445131200847, 8.711678562352034, 100.36546807621438, 44.69899752186581, 123.95104660826998, 46.73203277119145, ...])
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)