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 = 45877
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);
([3236802.0967163504, 3241883.8316323957, 3273951.5625, 3276548.7859495888, 5755537.5, 6794735.9375, 7052631.514374057, 7055072.387546542, 7083776.5625, 7084305.192971319, 7115889.0625, 7116050.0, 7130468.566928597, 7134150.0, 7136291.667981666, 7141450.357379364, 7143280.397919283, 7143622.599012081, 7143664.3203903865, 7145639.0625, 7145769.27386684, 7145837.937457623, 7145970.131316388, 7146162.856395818, 7146357.652942452, 7146622.8346311925, 7146714.347070524, 7146788.850755584, 7146809.486783442, 7146827.324830159, 7146932.065589429, 7146946.367285214, 7147023.493780282, 7147033.533038292, 7147040.0861341925, 7147110.879751193, 7147191.3947402695, 7147220.543514088, 7147292.1875, 7147328.125, 7147354.748749902, 7147373.819472321, 7147450.837269409, 7147608.9288009545, 7147617.296397688, 7147630.488766495, 7147723.4375, 7147771.005332631, 7147784.929204493, 7147785.9375, 7147835.481876867, 7147858.292790557, 7147929.6875, 7147996.875, 7148050.629335558, 7148222.281566919, 7148358.50681034, 7148641.045758667, 7150676.5625, 7151395.3125, 7157446.331444817, 7161322.626034641, 7162592.84643466, 7163739.899253395, 7173446.339848995, 7176351.727220727, 7176491.3077626405, 7177271.21800974, 7178005.141554408, 7186685.94235238, 7193060.722953422, 7207578.125, 7218156.16757441, 7234351.5625, 7238427.986577396, 7258326.699562648, 7272452.217035983, 7297613.177236262, 7297792.1875, 7312692.048902555, 7313216.7852336215, 7315293.75, 7317855.837663862, 7318952.836165135, 7320609.375, 7338057.442476902, 7357404.239914837, 7357651.5625, 7357716.6770699695, 7358070.3125, 7358072.991222347, 7358143.75, 7358387.5, 7358404.669155078, 7358434.375, 7358532.131372642, 7358568.598253822, 7358606.98750276, 7358656.25, 7358759.23683556, 7358792.1875, 7358834.471229871, 7358892.584892142, 7358896.0124568455, 7359057.06258493, 7359228.125, 7359268.467083516, 7359460.19630606, 7359828.125, 7359861.68179083, 7359913.851833835, 7360210.9375, 7360381.232368015, 7360534.375, 7360555.667682685, 7360923.880886338, 7361429.401789914, 7362360.9375, 7362645.739286674, 7362669.498387489, 7362899.383504399, 7363069.666175242, 7363070.005166366, 7363368.4245805135, 7363407.795374389, 7363658.981900106, 7365086.837108046, 7366758.648543388, 7366798.3034164915, 7367666.666454098, 7385150.924860502, 7405423.889765655, 7405700.0, 7407054.959161527, 7414654.4642774025, 7434479.6875, 7434502.288919492, 7438307.118981566, 7439389.0625, 7441018.541018061, 7441117.3315657, 7441940.735753599, 7443057.8125, 7447977.556691316, 7449807.8125, 7459389.417537977, 7459814.3590826765, 7462691.855180998, 7463928.166628483, 7464974.3173564, 7466029.6875, 7467046.383764724, 7467103.125, 7467294.813248288, 7467332.933658905, 7467421.379638757, 7467579.6875, 7467633.84556212, 7467727.449359678, 7467903.962267555, 7468043.75, 7468124.852534497, 7468296.544127202, 7468549.20178794, 7468847.50289831, 7469410.9375, 7469417.1875, 7469455.265412294, 7470076.5625, 7470247.621105169, 7470564.289107928, 7470704.6875, 7470770.977224721, 7470808.274513697, 7470949.945053172, 7471641.935104903, 7472231.599081657, 7474583.82244301, 7474873.870753137, 7474910.178927101, 7475288.447637121, 7475380.957695103, 7475652.590968591, 7476001.994911146, 7478706.25, 7479131.227334923, 7480532.583281776, 7480673.3905020375, 7480753.353869696, 7481417.1875, 7482002.058545582, 7483105.9966131635, 7483131.237273335, 7484321.875, 7485799.386115722, 7488359.982506132, 7490182.8125, 7499526.662270171, 7502620.104279898, 7519840.216710793, 7520628.125, 7521763.292096431, 7522215.625, 7522394.820228805, 7523047.470999912, 7523607.915937984, 7524521.875, 7524772.812817517, 7525583.539335408, 7526001.997341735, 7526038.931225378, 7526049.536231766, 7526365.456793259, 7526431.640148895, 7526741.702284244, 7526748.4375, 7526755.357146643, 7526760.6138090845, 7527774.733974174, 7528203.584161628, 7529239.0625, 7532775.0, 7533885.417744429, 7536365.625, 7538011.277719106, 7539216.814337902, 7539234.149034771, 7541918.5930811195, 7544600.0, 7550525.0, 7562042.396739688, 7562574.6743723955, 7562632.869957934, 7562840.625, 7563375.435956073, 7564379.414702786, 7564448.301307036, 7564763.213883215, 7564850.254872795, 7565097.1972091915, 7565109.36396865, 7565167.190728588, 7565271.429438997, 7565426.230093692, 7565494.515873937, 7565668.029158129, 7565770.3125, 7565776.413173592, 7565825.935319172, 7565959.142797027, 7566076.5625, 7566155.333144931, 7566335.607741224, 7566371.875, 7567277.79188257, 7569563.560753265, 7569747.8891029265, 7570334.375, 7570529.6875, 7570799.0189526, 7571385.598490555, 7571994.315655298, 7572683.050862762, 7572998.166136989, 7573070.384707137, 7573076.5625, 7573279.430456085, 7573389.618170981, 7574668.75, 7575209.275615468, 7576737.404334474, 7580614.0625, 7584802.86880875, 7584861.278938899, 7585166.809042775, 7585807.116990262, 7585829.781900871, 7586854.6875, 7586884.865091007, 7587282.090849516, 7587297.70433649, 7587385.786949192, 7587517.1875, 7587860.9375, 7588612.353317481, 7588894.582731786, 7588924.5003434, 7589048.3156639505, 7589166.088080792, 7589206.070025628, 7589237.3259857865, 7589541.467222175, 7589774.093231651, 7589846.967204766, 7590015.930815176, 7590022.24273664, 7590441.743046779, 7592548.347830021, 7605164.0625, 7605399.120460216, 7605595.3125, 7605617.931497812, 7605754.117972874, 7606070.3125, 7606972.953704442, 7608168.75, 7608870.27670397, 7609566.340436447, 7609654.6875, 7609715.937187069, 7609859.375, 7609878.125, 7610224.812290755, 7610415.625, 7610900.312240875, 7611551.5625, 7612323.2713637985, 7613517.1875, 7613542.220705694, 7613671.843398954, 7613817.914772122, 7614307.485960165, 7615563.469274512, 7626973.358771595, 7627972.770393299, 7628224.482323026, 7628737.5, 7629638.281603252, 7630484.95476638, 7632093.75, 7632779.780872416, 7632779.838622181, 7632880.975845215, 7633645.745064028, 7633774.944466944, 7634121.875, 7634781.759580784, 7637389.719625578, 7637498.786546175, 7637647.040765342, 7637961.596654193, 7639042.142934621, 7639750.557388647, 7639875.884343686, 7641144.747355596, 7641149.863044496, 7641975.365896006, 7653419.204132568, 7653773.4375, 7654942.958047945, 7655389.0625, 7655452.494187736, 7655852.354341657, 7662423.595286714, 7662487.8701264225, 7664572.9425436305, 7665079.681377543, 7666978.125, 7667493.3823102405, 7671950.948993169, 7672589.0625, 7681062.9716083305, 7682264.0625, 7684925.517442801, 7684944.086332928, 7685577.451185953, 7686393.517862437, 7686857.730498463, 7687383.584683842, 7691880.298394128, 7692239.0625, 7692588.305457081, 7692752.662296685, 7693082.8125, 7693301.5625, 7693568.755009365, 7693584.375, 7694442.583986894, 7696348.6008700235, 7696412.977425946, 7700953.809000381, 7703578.0967579065, 7704033.202593451, 7704043.749326442, 7704089.0625, 7704225.15571535, 7704272.584104151, 7704422.992164151, 7704649.328211547, 7704804.700692946, 7704832.8125, 7704845.14684675, 7704850.946221508, 7704988.726057777, 7705006.614729657, 7705184.375, 7705218.75, 7705220.3125, 7705340.625, 7705487.5, 7705519.694127468, 7705537.135847831, 7705870.502883175, 7705983.837886059, 7705985.9375, 7705990.3585185595, 7706091.558886894, 7706132.364867607, 7706141.121218363, 7706155.392014815, 7706339.054602486, 7706401.961101664, 7706523.4375, 7706735.9375, 7706813.456615636, 7706985.9375, 7707091.862812119, 7707103.364715095, 7707103.61332408, 7707258.584483615, 7707261.139509208, 7707274.605156237, 7707306.25, 7707342.1875, 7707356.2912317235, 7707358.460656112, 7707396.875, 7707404.6875, 7707460.5147694675, 7707484.375, 7707490.2861295715, 7707490.318246546, 7707593.162327168, 7707658.909407044, 7707667.1875, 7707683.667758845, 7707710.297087063, 7707739.0625, 7707743.75, 7707764.830940175, 7707779.9145245375, 7707781.25, 7707812.612969141, 7707831.9005130585, 7707840.625, 7707842.1875, 7707855.0514492225, 7707868.75, 7707879.155649684, 7707879.74593772, 7707881.25, 7707906.25, 7707907.146820603, 7707913.159020958, 7707921.312509574, 7707993.126357228, 7708031.6308400985, 7708032.701132996, 7708050.0, 7708056.25, 7708068.566844923, 7708080.403406705, 7708084.375, 7708150.482867115, 7708151.493661681, 7708153.356061254, 7708157.466833226, 7708170.14068535, 7708184.375, 7708242.454008824, 7708244.254886593, 7708245.809846954, 7708264.0625, 7708277.459744421, 7708337.442469121, 7708382.8125, 7708403.125, 7708426.302199593, 7708430.409269677, 7708443.340768987, 7708456.25, 7708462.5, 7708470.3125, 7708546.483101748, 7708603.071401469, 7708620.3125, 7708631.431108649, 7708682.8125, 7708723.4375, 7708727.744996591, 7708791.595665544, 7708798.1277652355, 7708868.75, 7708870.3125, 7708886.481359459, 7708898.4375, 7708915.188978689, 7708915.693622971, 7708939.2169416, 7708962.025762473, 7708966.934340458, 7708973.4375, 7708983.313218805, 7709006.951303299, 7709025.0, 7709090.625, 7709114.0625, 7709155.149699796, 7709167.1875, 7709188.044542653, 7709306.25, 7709306.651685175, 7709315.814363246, 7709331.830387504, 7709395.4307815125, 7709401.096710638, 7709465.731821506, 7709506.055158226, 7709510.515888531, 7709545.939535267, 7709637.5, 7709712.118908658, 7709729.539981857, 7709732.8125, 7709779.436600465, 7709784.375, 7709790.461307832, 7710003.125, 7710048.196217869, 7710095.194010345, 7710117.458969874, 7710502.835182002, 7710572.557605332, 7710580.633944615, 7710584.669445668, 7710601.399695758, 7710620.27648271, 7710731.5774135655, 7710739.0625, 7710807.978994264, 7710818.75, 7710871.347770155, 7711235.231850402, 7711434.375, 7713013.272817631, 7725722.311695696, 7726115.625, 7726360.396263764, 7726402.885797983, 7726608.303483325, 7727203.125, 7727819.232707839, 7728114.123198235, 7729851.536906859, 7730103.590728245, 7731189.0625, 7731782.679011592, 7734717.1875, 7735303.984293589, 7735352.692302293, 7735375.0, 7736292.864483745, 7737114.742562725, 7737539.0625, 7737630.473794912, 7766269.669282246, 7786047.958737391, 7786067.381726997, 7790507.8125, 7793371.875, 7793743.75, 7793801.5625, 7795080.154720678, 7795402.605549414, 7796125.046742174, 7796166.961692316, 7796274.0725067705, 7796462.460187304, 7796470.165424829, 7796557.8125, 7796607.891456219, 7796627.15858204, 7796685.9375, 7796759.482629547, 7796781.25, 7796983.205012244, 7797040.584942796, 7798090.278910177, 7805810.9375, 7805830.010189041, 7807324.915550088, 7807373.4375, 7809694.786855753, 7831632.8125, 7836741.891492335, 7837515.625, 7842299.355024901, 7846897.654952081, 7866799.150439715, 7880282.167327016, 7886858.906897278, 7888129.645455758, 7888771.875, 7890296.193673685, 7894628.312593167, 7895135.080260896, 7895921.01080126, 7895998.900918103, 7896313.552292757, 7896337.5, 7896340.428488018, 7896345.966271804, 7896396.375377603, 7896754.6875, 7896779.908448648, 7896935.257766193, 7896959.526669649, 7897015.342052102, 7897021.832686535, 7897027.248409311, 7897049.037154612, 7897098.508085099, 7897154.6875, 7897256.382675214, 7897284.316815178, 7897390.473531753, 7897455.102472409, 7897482.8125, 7897622.201808696, 7897650.790015527, 7897803.34247608, 7897843.88373531, 7898078.909285003, 7898348.782396451, 7898432.876308946, 7898861.243825201, 7898917.032964948, 7899049.669627664, 7899219.675166027, 7899275.0, 7899459.115524613, 7899614.325261955, 7899687.5, 7899809.69625216, 7900060.973111055, 7900065.8190127695, 7900162.174136466, 7900683.411405991, 7900808.859916969, 7900855.25637122, 7901066.687436765, 7901526.5625, 7902095.786667441, 7904341.156378562, 7906952.313412487, 7907353.97394362, 7907446.49951192, 7907961.816128218, 7907970.3125, 7909716.5223817, 7910512.077391821, 7911590.109642682, 7914996.600291845, 7915968.75, 7930720.3125, 7940141.780255722, 7948589.0625, 7949326.5625, 7955264.0625, 7963398.861814311, 7988371.051631486, 8005476.5625, 8027561.96970422, 8071169.05089825, 8095860.35606272, 8095862.8447187, 8105926.483522363, 8106967.1875, 8109246.028774774, 8124359.224728285, 8127071.980957037, 8130078.12885167, 8134240.333929978, 8141530.951778841, 8144218.1182689415, 8148423.4375, 8157930.9878538335, 8159317.88986609, 8173134.144883476, 8186328.876673441, 8188176.5625, 8230896.640946653, 8249564.0625, 8251675.644079974, 8261332.308859325, 8268989.0625, 8270303.125, 8280411.009734439, 8288089.0625, 8292038.82419362, 8308756.919189736, 8313118.622760248, 8325984.814733652, 8326471.875, 8328227.355151379, 8329816.206030909, 8330003.125, 8330193.122025842, 8330205.011555044, 8331322.876610479, 8331602.981509654, 8332252.057700632, 8332773.336911644, 8332876.083816895, 8335272.639388342, 8335317.1875, 8335569.003585863, 8336319.784876241, 8336368.602604129, 8336466.665238455, 8341616.408666749, 8342200.359289861, 8342523.943506143, 8345571.875, 8345781.25, 8347594.240755402, 8347652.177915943, 8348102.664551664, 8352383.344339804, 8353436.9042063635, 8354009.375, 8354145.637479683, 8354311.098896779, 8355595.943432472, 8356963.410675387, 8361821.875, 8364950.0, 8366280.543243946, 8372569.720460425, 8372577.529027456, 8373325.0, 8374640.625, 8378902.182637345, 8379314.095226448, 8379617.1875, 8379714.026854941, 8379839.98874754, 8380065.625, 8381203.1080175415, 8381846.875, 8382431.179656582, 8382557.551135347, 8382668.477416713, 8383026.804830868, 8384945.776386452, 8385827.763860869, 8386570.807769947, 8386641.938478263, 8386734.375, 8387233.465838251, 8387361.631037447, 8387494.76900239, 8387554.6875, 8387954.6875, 8389226.873564854, 8389445.057787219, 8389451.055727836, 8389529.014992509, 8389624.89821042, 8390437.059591778, 8390471.295481106, 8391432.56605177, 8391570.715328867, 8391756.133877726, 8391780.94432199, 8392568.346386056, 8393400.89505978, 8399658.349561581, 8399786.183532314, 8399946.579950169, 8400551.82187113, 8400643.734565727, 8402123.4375, 8403501.5625, 8403615.980791077, 8407094.784139492, 8408113.421127595, 8411081.25, 8417417.1875, 8417749.227174925, 8423934.375, 8466106.966302501, 8466790.289422084, 8467497.407167979, 8473560.75061309, 8479584.375, 8479849.953129234, 8479877.415656798, 8480130.204706805, 8480995.715088982, 8481158.337836463, 8481223.65108975, 8481852.35570717, 8483219.88717414, 8490546.875, 8494013.38518959, 8494395.255940452, 8496365.625, 8496626.5625, 8496853.427922936, 8497116.59004877, 8497353.125, 8497415.625, 8498358.1989076, 8501684.375, 8502831.844803764, 8503910.702471094, 8505543.12284694, 8505965.77250552, 8505981.25, 8506013.71934742, 8506328.841824114, 8506645.07018275, 8506721.517103484, 8506771.696080288, 8506813.265548939, 8506828.125, 8506916.7736471, 8506939.581463171, 8506941.510916363, 8507003.125, 8507017.634506546, 8507087.5, 8507111.914373657, 8507120.3125, 8507123.4375, 8507275.0, 8507290.62520845, 8507372.066160498, 8507399.39710807, 8507451.056018973, 8507471.809411226, 8507478.431775099, 8507529.668322096, 8507538.38505022, 8507571.236757027, 8507571.972932374, 8507574.621393353, 8507628.125, 8507862.391814334, 8507973.4375, 8508046.875, 8508091.527317153, 8508100.335569818, 8508265.338910287, 8508395.263127606, 8508513.995055737, 8508545.11995892, 8508567.1875, 8508630.281842524, 8508654.6875, 8508834.261388913, 8508981.25, 8509146.875, 8509163.576963099, 8509270.600747414, 8509289.713411126, 8509443.75, 8509526.5625, 8509638.735453345, 8509923.4375, 8513894.665534262, 8515975.0, 8516000.0, 8519298.310762847, 8520999.920258846, 8521003.341320598, 8521784.431281177, 8522038.379690664, 8522489.345179573, 8523024.694571001, 8523377.654053032, 8523509.321084833, 8523687.352875479, 8523829.619498085, 8523976.56178328, 8524140.436612936, 8524196.875, 8524505.440357713, 8524616.640957715, 8525447.91917469, 8525565.625, 8525809.885868879, 8525927.573993323, 8526024.873375962, 8526043.75, 8526156.946755914, 8526236.483483057, 8526374.110613791, 8526432.8125, 8526532.8125, 8526555.73404626, 8526739.81836378, 8526814.0625, 8526937.867774019, 8526949.910565805, 8527011.165091746, 8527073.4375, 8527212.85376677, 8527289.0625, 8527332.356285464, 8527334.375, 8527409.020662464, 8527410.089846417, 8527689.632681968, 8527693.75, 8527798.4375, 8527820.133834235, 8527830.774977041, 8527921.573601881, 8527924.984974306, 8527965.20475162, 8528001.070213526, 8528019.776245067, 8528194.6941853, 8528218.75, 8528271.049072873, 8528304.6875, 8528499.614070453, 8528509.916718766, 8528550.298828166, 8528607.8125, 8528629.172668364, 8528728.125, 8528742.16924833, 8528745.158995366, 8528830.335171096, 8528905.715874614, 8528936.049582612, 8529113.306713892, 8529125.806863215, 8529165.257035404, 8529176.487335151, 8529176.5625, 8529184.830731126, 8529241.55309961, 8529271.387230273, 8529278.741574502, 8529280.708499461, 8529290.594921308, 8529299.463887952, 8529425.0, 8529438.328589858, 8529464.0625, 8529472.019555395, 8529496.875, 8529522.940309418, 8529531.25, 8529532.78620146, 8529580.094373854, 8529606.988661977, 8529618.037195941, 8529654.39706864, 8529656.77498509, 8529683.374455204, 8529793.00671917, 8529798.4375, 8529820.45453885, 8529901.83339064, 8529941.955602486, 8529942.144806439, 8529945.19676678, 8529968.482040426, 8529999.847512301, 8530023.4375, 8530028.125, 8530034.375, 8530043.45156699, 8530047.266490454, 8530086.96555379, 8530087.402008647, 8530120.224106425, 8530133.486823661, 8530164.559081573, 8530179.6875, 8530197.833773643, 8530208.905766115, 8530211.869425178, 8530232.455191268, 8530269.8423391, 8530362.267533805, 8530579.833656803, 8530586.843025887, 8530607.555916997, 8530671.875, 8530675.740650814, 8530710.370406693, 8530729.619562065, 8530754.15629177, 8530757.535092825, ...], [39.08381774502104, 6.405158501124473, 72.4082361659371, 9.644505451873316, 60.480194252666905, 44.86861120717174, 42.14162636299997, 80.067433716274, 66.96788243505027, 9.7988011077061, 41.40343925285105, 84.68479704219286, 26.003894223240632, 40.7593581749278, 5.895404594447098, 19.96325568761545, 6.361330559110357, 6.363221206560621, 11.556241754524416, 68.16005512256395, 21.118427383831555, 11.888033534273706, 64.09661926333806, 74.87745504723839, 25.727344777319384, 6.9715078731455575, 6.532645002436037, 24.947581982732697, 9.427745436584864, 7.337381823034336, 29.29444909147967, 53.171439362818234, 5.292828887401177, 68.1015033912086, 8.91385049711701, 119.52385342849496, 70.23284653532053, 5.721619806749244, 92.57596282839854, 52.60801077477687, 49.9243320719208, 7.747490908850575, 25.372921246076643, 14.734753686204463, 9.425211596161368, 5.875745379406102, 48.3290046139452, 57.251212735919424, 6.879433837531414, 49.70769928231215, 6.041966234828216, 65.87617731318784, 80.42220505141776, 58.20387887324188, 9.926992266496876, 25.734024260982494, 12.419365053920567, 90.12452895787261, 77.72654171703999, 43.40936341561465, 78.87599599856023, 7.899508781558828, 12.341789001933636, 53.753438223224805, 113.25253814956535, 32.92485354943122, 28.481449045236253, 5.766916946610261, 13.818649312119144, 25.325790279984865, 24.90731785616008, 74.9579854568633, 79.04121726137483, 77.4624438716632, 5.393208502344325, 22.418074544670578, 18.20370286873299, 51.995068298506084, 80.59103334338842, 26.057388414921455, 9.012949530522933, 88.09231889555403, 6.216471346744569, 18.203424798100897, 40.73125792271312, 22.89568719557351, 13.471927448272732, 71.51508788340526, 21.389682282365797, 129.20080517799335, 22.04628874998328, 70.22339498188262, 81.8044633474226, 36.73980183431134, 109.36104299408963, 12.855923037607297, 70.88141706015193, 24.284908737836794, 32.02291444230309, 45.965757446811295, 66.82759943112927, 22.342381084921385, 9.691654958343756, 7.877666784550316, 72.67869662157017, 110.20859485452202, 23.971440574559573, 19.382982476875835, 78.62965447356456, 137.32412353684202, 24.963117350762058, 80.928347747665, 44.968877574840576, 51.56570066557431, 89.80690664595473, 16.95184812868049, 10.70867801258409, 94.47647229702955, 7.7652545565135025, 28.09866391762688, 79.04048571003695, 10.248279316334544, 41.95486051823167, 13.831040169589858, 14.363126331385278, 30.952456162984724, 6.186928556651256, 10.154865787276147, 26.12980338975973, 13.268773482789143, 67.42982575533118, 34.22003721364757, 40.00279837260234, 20.598110176651062, 16.370090648606933, 72.77226350606004, 8.712100738977094, 6.632522962541967, 55.10444337154505, 101.52032923970712, 19.569272074066923, 15.381150324660332, 37.140061745210204, 20.911506542456575, 65.53510643216728, 33.233522185617645, 196.12826936817464, 23.34650690808252, 15.102587668544027, 35.0568401257912, 43.798855394400185, 6.038462590611383, 37.03805854652982, 21.500568059664012, 15.424335098563299, 5.153983290631521, 106.60814737060348, 5.230565149747596, 12.869441477579114, 10.156270647812681, 29.563208668716587, 72.21581368363005, 61.557530042757655, 24.40803504171429, 9.925470318286983, 66.94998841238245, 38.961813972126464, 38.984865787621814, 49.81565120912259, 30.782339004968765, 9.530656346327952, 136.5431828324124, 9.964730220738986, 11.935791799561825, 6.082403808464931, 24.37849037745591, 22.41964391001823, 20.98436250475961, 6.853198552545262, 19.250811380691612, 20.41901497775141, 23.8495361373244, 13.233798432806367, 11.878293074649571, 73.65643978726989, 77.78856174109636, 9.144825807241434, 11.05503207844701, 9.532725242026547, 41.57076559403728, 9.789286385305497, 57.222699783645616, 59.91583941013824, 60.77689522046249, 83.13613713515628, 9.903965329779894, 83.03804252596947, 64.47486876592642, 69.96499317106552, 32.804747528976826, 30.99434070451186, 8.755136567237404, 79.69015473599634, 89.34800037803407, 17.832432293879247, 20.890183593976133, 33.7355050785284, 24.146474518553983, 7.889127164793175, 43.40828737017385, 66.87222047809239, 80.71142098842334, 50.467468521458784, 5.478765101885626, 64.50150475331935, 44.3863764337568, 12.365121888825458, 5.448042786199512, 64.039969826499, 17.03751061950017, 52.432873789868594, 58.62535185974103, 13.272263873288372, 49.01454717554935, 5.728758065977736, 67.96320371912839, 24.74413783867164, 5.336573246495661, 63.966169998853196, 52.78671875248775, 47.209524599051896, 159.71471897122382, 8.317197570753482, 75.18456935853906, 9.729400243395295, 7.507464152511818, 30.977165295865703, 17.913100648226106, 8.426119505778868, 23.764185256649967, 14.899629126757947, 11.132757046080634, 22.053909440736273, 9.065307970328888, 18.96936352808479, 62.778997757584264, 44.55478471549386, 25.887184772984867, 53.952791503477556, 6.064280487842035, 72.15193408442391, 12.31302907706528, 8.119568022562092, 74.03883465648687, 28.44717398990322, 27.73396368989001, 10.366592382092294, 57.18956871943115, 42.00507026207073, 12.176972326624432, 76.98799142909587, 129.87004733535366, 15.935161470300853, 12.849622926844154, 15.224061889557749, 70.8507638663403, 14.044634205021838, 8.604040974545564, 80.63469345826103, 121.34463386515951, 5.5284555354913785, 32.91298346170283, 45.91492033817094, 11.706914311300409, 38.500471526227116, 93.11223245975401, 15.313957793222908, 51.611721325529054, 26.384420259386687, 12.362285757146777, 7.35797321376621, 14.39713558202455, 129.84661866091972, 59.74714992544555, 14.410422399312067, 10.151068773475123, 56.2516300066753, 26.32873823011038, 6.859617987632987, 52.18043237814437, 5.801215929309899, 12.760697039383672, 5.490633198529608, 9.410603701725604, 37.08456159292294, 16.556611149040588, 13.480794347525316, 14.610400373592755, 49.27609908446534, 18.39145380133552, 40.80648552745515, 18.387647627150482, 10.340664798954442, 66.83505865905626, 21.656285696985375, 60.9295899339139, 26.496815537278223, 29.281788287387652, 79.91200426888406, 5.726918723949598, 33.51017811966185, 40.43841246772341, 25.299526824714917, 39.77020449085751, 16.282063425596668, 44.02573332096054, 61.12047569889745, 118.97147702261276, 15.069602674121425, 30.0507034369304, 61.1409011787008, 13.827618619732194, 20.610943273322082, 83.57258652949368, 34.38644399995815, 38.88604361366059, 60.09534191944701, 7.912709950566873, 7.827312074454807, 49.6329816879954, 14.259866533722516, 15.304144523050486, 13.990286162153662, 64.05660293300971, 27.472022108532354, 38.60809305929999, 6.8696911820365845, 129.34762213150614, 13.534971015513818, 58.72112214456197, 17.242009550908147, 45.64055642250851, 17.598229297466936, 63.62155460206897, 20.86696632195041, 100.57156045980321, 7.741163303249878, 54.9031006717728, 59.28031055311935, 5.428771657847793, 84.67271014414104, 5.03107144414309, 12.641243936352305, 15.579074308208153, 5.138492066827652, 17.6857207668234, 9.326231651130398, 31.84817988320011, 22.922964829371516, 51.755852464913715, 63.62314613416997, 11.954616600666542, 47.31245328721246, 56.03010415187097, 6.310647835367148, 19.91835853511866, 125.15062645678158, 11.001907358309204, 6.928122785206199, 27.107650813120536, 34.255454056648816, 19.262353954214678, 13.429366878684375, 62.00371783149938, 28.555380512471856, 11.135545801163, 41.21821159415608, 5.636361891356915, 7.663414254953817, 26.862191943005136, 9.98550033057928, 11.083847683238105, 13.300697339005119, 5.939346870294817, 60.963511024704474, 15.5702084217124, 23.480468968438583, 5.9015391121685825, 12.878957004443615, 11.148391032069718, 79.12429549341714, 9.195154648978322, 38.86824637575378, 66.1197602683918, 25.764084427681397, 74.27422142852384, 57.52347767915606, 54.402137783750774, 37.72874411404857, 50.84700206111795, 26.634511806251865, 10.602529590980566, 56.17634829128448, 27.70599431015934, 122.82449134084183, 24.188549997697372, 8.850996144748507, 10.493380250078419, 17.24338513811197, 37.36808930224346, 82.35697895004469, 30.08551766799441, 54.584959482238, 41.052313715691824, 13.045116047282372, 68.44023653222342, 13.833275829267347, 33.6230566456766, 17.19896967770437, 19.013833767617022, 92.51482880601488, 13.623576056224817, 41.50266357767343, 32.17099028779121, 15.101029346356649, 32.2027448451003, 56.18313064814457, 80.82774088531615, 71.19890725605543, 85.14888532300623, 13.790123196844434, 9.084829678045017, 100.81653616313797, 7.00421347485355, 39.13739078965798, 95.93017358134819, 29.381985819287188, 60.51102757887514, 58.59876967618057, 59.25589742130619, 9.531037305297394, 93.8114971622944, 25.38503439267828, 16.045085969962116, 40.78244823203606, 61.88869763454301, 62.44067912897797, 39.171516242200944, 13.239653818529664, 26.23134432593379, 47.337561153998195, 88.67792461720421, 7.963358620498225, 5.651573679206485, 20.891580628152578, 7.982196640196731, 6.841997120773346, 31.714630478631662, 67.15969887659378, 105.59303277139131, 14.286523646791597, 34.938925464397926, 74.53116040865382, 6.139795032606546, 17.660313498599514, 26.376717194123398, 32.98754630147499, 120.83442569860136, 41.05309012397446, 5.546156386736838, 13.231734997756094, 34.08871320364048, 36.59950306412689, 19.98910032672416, 14.726670841828414, 88.43909824068882, 68.58022567304396, 14.034243741002028, 18.889162225766547, 16.500341535451653, 31.148776992910523, 46.9260752219479, 78.6578286141011, 13.632193931948452, 14.741077949268087, 41.764095819381566, 11.423104393423264, 49.93648979327986, 29.742496408503364, 22.779911461010187, 12.315069062868321, 13.879201741502428, 86.0353048023887, 83.09228915371571, 7.812545235231887, 31.217175699293847, 8.068718520167746, 15.209682097668141, 15.564763434773768, 29.45401745992323, 14.057057195070604, 64.7476427201355, 25.855108635568207, 15.537713306897249, 68.15993417351575, 79.62773440720937, 96.42909185814517, 34.35062631597441, 49.27294469560186, 57.784439710609774, 40.51719124029141, 36.62322146708568, 9.4968230819847, 5.4211350966627485, 19.721474557355677, 134.66035653798676, 23.845516462378573, 15.711612088902843, 13.545986294123843, 9.924556811934863, 94.9660133095754, 22.767378239747746, 14.407549220823949, 35.724223884286616, 9.12789682455762, 39.5506140535739, 9.19672413391665, 69.16272308946398, 86.67104534502175, 65.4564171622709, 16.08809492395904, 5.449463219656757, 30.806160702655077, 101.65927656617662, 16.196620693390255, 14.355277824498922, 9.30113307940918, 6.830681244472634, 116.7058149054983, 47.077195283069244, 54.38109433419664, 63.01187703382511, 113.90035757317068, 39.487169902342444, 117.86787741433389, 16.915864780200295, 29.80600657554178, 26.70563896671408, 24.559711970649772, 11.992916355818735, 75.77763194517112, 7.787681926612626, 38.73796563897178, 27.27633593311853, 11.943068746199819, 78.00644711506757, 68.07715709691173, 78.10677512492147, 48.817044645549416, 8.070288237812878, 70.42331963750581, 130.02890493604446, 53.454836483917724, 53.0692063649571, 10.098342453344943, 20.17424999192107, 21.707603256132916, 8.3920297112335, 29.738146032883154, 53.18942327339896, 45.389716964616355, 75.2375455601145, 6.860511552722259, 21.30124006436011, 6.092973516827922, 24.747081664633964, 9.933005791905854, 7.111025289907913, 25.922676787237773, 29.969077855627248, 22.835735006297867, 5.0798985824123735, 77.5975400718416, 26.524653991393585, 32.336957169252486, 8.505656066752291, 9.297760673286572, 7.482682174787085, 28.765500504204194, 146.57846128158792, 14.01003569540903, 31.051912771325284, 21.241043482507198, 63.82088338867615, 13.921754947285667, 58.494858982382766, 7.3855085789695005, 80.51011416948089, 10.01697278446607, 7.385446230640249, 65.04975728632621, 84.79662606030276, 44.268987638422416, 15.213784067908147, 5.542254828465481, 18.542354009493316, 12.428211304442739, 17.06082365635852, 6.6657501818018225, 33.15587355680127, 39.20568113558006, 9.952996027932015, 21.496867856409178, 37.7025352163099, 15.856306143267169, 19.8698004710543, 9.463027833593882, 7.504008700062266, 27.71433340240126, 12.400806450055013, 53.09850610741039, 50.15194566412485, 128.97402656520825, 15.47252624223436, 23.410499582055095, 10.898927734218752, 16.800435666781297, 29.22828929535167, 21.68322566872763, 20.588846039913776, 29.530186508073506, 97.01348137308887, 76.62052750499589, 29.204836264079265, 42.885700322238634, 9.60458412570289, 10.894454695988868, 72.71809873755299, 83.24403669107107, 88.06766586950846, 71.06054071285585, 11.564857881621233, 58.740799177603705, 29.897553278246978, 35.992463793429, 34.915492384194515, 45.47127310073725, 6.152676147227355, 64.43770038562505, 88.00570032977599, 77.46854775293264, 35.637308867147006, 17.120081349332295, 7.268510549154987, 8.728051776920665, 7.36405213420285, 10.587481503394171, 29.86690782803145, 63.31698576900261, 12.895485016623956, 45.353841187518725, 13.28418182737459, 113.97749897733576, 59.492741850517724, 64.78611121228366, 38.509413482228986, 47.2073724199073, 37.469433175478905, 56.71851161052701, 11.862717354317882, 6.920620478166305, 65.06349541491328, 38.2225861541593, 13.764742544416006, 13.108408186363903, 48.40447897885877, 66.82047501423727, 70.68896167525178, 57.86229109244887, 48.612221642979634, 8.343415400731846, 5.939741022407667, 85.098758785979, 9.091358485738908, 12.979186133397556, 204.556853096487, 14.028364363178406, 5.0818951498271066, 9.1441220305005, 71.89899709871165, 44.28487085419845, 56.525167589644674, 66.99926197489684, 12.309655992123295, 13.316086129737311, 43.65886840868137, 41.69604198713014, 8.325149096261333, 62.65800230738883, 78.78607963177373, 5.750713073107014, 14.477739530126453, 16.105068967628466, 45.56946244801686, 10.105503287386538, 83.5596565434806, 63.27704010272978, 37.59087092458819, 15.510911811169539, 5.438196733717908, 10.910592403325717, 5.557606759000548, 9.24777404358286, 36.166721618790014, 24.395848975432166, 70.17988239319253, 46.55650106792156, 68.95489421776111, 29.153269181903504, 10.398973356813888, 6.617379812486579, 64.82387874392195, 39.379402759247064, 73.37375323080273, 79.42184577075946, 17.212616369901596, 5.649022504483561, 6.674936145600882, 17.447676589142905, 58.525882155737825, 44.65065399307767, 5.411044741005755, 72.57277285055633, 8.651005880348333, 31.671206222081295, 101.02062607706993, 53.65427739103145, 19.651934760002845, 12.257503467218374, 5.376169041828215, 64.05989951030689, 96.76080304403915, 37.86570331105861, 7.615117323614646, 58.238961331228374, 5.164532264123498, 27.195347564844948, 67.76216593263038, 10.733562190682218, 61.621842471195045, 16.445370940195154, 55.82339180559588, 7.507537057858935, 68.60385551312243, 25.911333960700453, 20.854947119786367, 208.91129311749464, 5.1596023215106195, 65.74080759081396, 18.195901547109962, 15.622725566288352, 16.801136316114047, 51.373656072640586, 78.3829794101726, 16.276378847212307, 16.964055627721407, 21.42580924860397, 7.376858318478779, 34.30130282523469, 22.108896608732824, 119.79876858558232, 6.062840319603888, 17.004819237887332, 26.422794504195235, 67.62786464948971, 5.383265203306378, 12.889724263655268, 12.085567789805083, 15.970234525024166, 5.6882340766233686, 6.81641681305101, 28.2230140659533, 41.34791883214471, 78.78671298880809, 11.733432453590583, 61.07728039275839, 20.189952530850725, 40.51081967618068, 77.63529334657296, 10.102147969371368, 30.899939144897782, 12.468354585409116, 7.035946680988316, 5.741484861290039, 33.937048713663394, 46.509143748604956, 7.586372841958187, 6.629698938725894, 9.81069389142452, 11.821240924644975, 84.36225883742235, 15.82330463219519, 19.170435417744912, 13.535321950300444, 75.7536562462843, 12.865322330253028, 91.5483618569699, 43.53609290370589, 32.14897797826095, 8.453538752282007, 31.00943562118342, 107.46738929491222, 38.39001257752607, 8.502062921328756, 54.41890380290366, 12.204886700510766, 112.27389712604618, 102.97739490047604, 43.69288179526359, 30.86610157510948, 8.113082541220821, 18.62188068006608, 22.493231245623985, 84.44248343187623, 14.300754725570965, 39.60449053037562, 82.04647930672483, 6.4241157885504165, 9.812478256520901, 12.867114375481512, 58.16941622902848, 16.97140415213657, 87.75472619868596, 76.53523150745451, 40.45386127073893, 72.23856732919417, 70.58061594290268, 33.616236787705226, 18.430999283451573, 86.47475715327857, 5.508994169471153, 23.4652666220297, 5.966574137706166, 14.868912616643547, 18.337947305856385, 87.96641248600629, 15.328399256201546, 6.220520550214019, 61.33785667017965, 6.076920653971584, 132.18596975891867, 86.44888994501704, 5.373821673526728, 51.28557607326359, 23.930067536054295, 27.584317250170177, 27.257955277959972, 77.67179055128467, 52.25040831074023, 62.50277893564235, 46.4483173835484, 91.36350943207627, 71.4920811677741, 83.22566622708584, 80.10120503038374, 20.080666804660858, 5.220328519824724, 43.853184761613434, 50.835980913110575, 20.3472684268162, 31.467426023937065, 24.611254505593806, 30.29809036675272, 52.03948665810438, 5.698739314559186, 6.2571759438498775, 11.48354615063467, 16.710756688137273, 12.85178771222189, 16.14079451453082, 8.131406024860203, 41.42688421950698, 27.501407435225012, 61.01360018859373, 27.248030246060022, 62.838768474485576, 14.268999880962687, 56.333635450018605, 6.367245118485305, 8.908405923649719, 109.28862644709656, 85.18915247490386, 19.185612114696877, 20.998936898591868, 5.698746429572972, 29.818349922497966, 18.94514678868084, 14.34883725372196, 8.677782822179516, 33.09145683824082, 75.73257830688472, 8.03136050656907, 18.89708261098113, 116.80568315105684, 35.58286192859442, 14.611243901459256, 5.721397285717752, 66.07576225273728, 7.736404775193338, 51.863091193854736, 21.94129390503126, 47.408931531539224, 9.048745231050033, 14.177822723308513, 89.85548800996713, 68.25516353750507, 145.02913849512302, 10.859470853127807, 62.67081202113516, 13.904999682258945, 28.230917165573768, 22.32734971163646, 21.570393425601235, 81.43574996756281, 15.34839905204837, 44.60856259145663, 22.821091870883215, 33.33037077995954, 8.09251739364437, 54.87053516361321, 11.629292006640764, 52.16081160277034, 8.930980999718173, 44.49111161843291, 8.27694906323522, 37.16893202067166, 60.50441533385835, 44.61292321876687, 15.386647333498738, 5.316673920872678, 19.272977972291798, 6.692203408676453, 33.35724741694545, 31.44679912165606, 114.04837718882102, 84.00154546349518, 13.359667145428736, 19.158508740124642, 37.533985324833154, 19.419669554030644, 21.140271583809536, 44.08699563553827, 17.900667804231958, 83.39892626576362, 57.19914054027702, 63.594951896641184, 21.521171535453586, 46.75878010499224, 14.842210262270529, 16.757943314670463, 38.33255733730092, 136.38172801508202, 11.33360989435562, 9.818605011006696, 24.052502934552912, 40.183416060626925, 66.31608378302722, 15.512019180842032, 8.435219229500017, 103.21340766425956, 27.707295505089622, 8.226309415859895, 9.114659743906639, 8.207552470993736, 64.52726433986439, 34.58672340940529, 87.00609461552992, 23.770778441525085, 11.800228340382413, 75.0692586247635, 26.726653473084006, 70.70464006246162, 12.37535210118028, 97.59534441650695, 80.90912164755692, 13.050666229908236, 8.963835971045084, 104.00822595362266, 21.812619440348367, 10.464573013132503, 23.9740579347179, 22.43238264224911, 12.668608474324037, 66.93988814499073, 38.43825307321193, 94.50982306728754, 34.27297303943652, 27.24916851912094, 13.24137903537873, 24.04368832666627, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3236802.0967163504, 3241883.8316323957, 3273951.5625, 3276548.7859495888, 5755537.5, 6794735.9375, 7052631.514374057, 7055072.387546542, 7083776.5625, 7084305.192971319, 7115889.0625, 7116050.0, 7130468.566928597, 7134150.0, 7136291.667981666, 7141450.357379364, 7143280.397919283, 7143622.599012081, 7143664.3203903865, 7145639.0625, 7145769.27386684, 7145837.937457623, 7145970.131316388, 7146162.856395818, 7146357.652942452, 7146622.8346311925, 7146714.347070524, 7146788.850755584, 7146809.486783442, 7146827.324830159, 7146932.065589429, 7146946.367285214, 7147023.493780282, 7147033.533038292, 7147040.0861341925, 7147110.879751193, 7147191.3947402695, 7147220.543514088, 7147292.1875, 7147328.125, 7147354.748749902, 7147373.819472321, 7147450.837269409, 7147608.9288009545, 7147617.296397688, 7147630.488766495, 7147723.4375, 7147771.005332631, 7147784.929204493, 7147785.9375, 7147835.481876867, 7147858.292790557, 7147929.6875, 7147996.875, 7148050.629335558, 7148222.281566919, 7148358.50681034, 7148641.045758667, 7150676.5625, 7151395.3125, 7157446.331444817, 7161322.626034641, 7162592.84643466, 7163739.899253395, 7173446.339848995, 7176351.727220727, 7176491.3077626405, 7177271.21800974, 7178005.141554408, 7186685.94235238, 7193060.722953422, 7207578.125, 7218156.16757441, 7234351.5625, 7238427.986577396, 7258326.699562648, 7272452.217035983, 7297613.177236262, 7297792.1875, 7312692.048902555, 7313216.7852336215, 7315293.75, 7317855.837663862, 7318952.836165135, 7320609.375, 7338057.442476902, 7357404.239914837, 7357651.5625, 7357716.6770699695, 7358070.3125, 7358072.991222347, 7358143.75, 7358387.5, 7358404.669155078, 7358434.375, 7358532.131372642, 7358568.598253822, 7358606.98750276, 7358656.25, 7358759.23683556, 7358792.1875, 7358834.471229871, 7358892.584892142, 7358896.0124568455, 7359057.06258493, 7359228.125, 7359268.467083516, 7359460.19630606, 7359828.125, 7359861.68179083, 7359913.851833835, 7360210.9375, 7360381.232368015, 7360534.375, 7360555.667682685, 7360923.880886338, 7361429.401789914, 7362360.9375, 7362645.739286674, 7362669.498387489, 7362899.383504399, 7363069.666175242, 7363070.005166366, 7363368.4245805135, 7363407.795374389, 7363658.981900106, 7365086.837108046, 7366758.648543388, 7366798.3034164915, 7367666.666454098, 7385150.924860502, 7405423.889765655, 7405700.0, 7407054.959161527, 7414654.4642774025, 7434479.6875, 7434502.288919492, 7438307.118981566, 7439389.0625, 7441018.541018061, 7441117.3315657, 7441940.735753599, 7443057.8125, 7447977.556691316, 7449807.8125, 7459389.417537977, 7459814.3590826765, 7462691.855180998, 7463928.166628483, 7464974.3173564, 7466029.6875, 7467046.383764724, 7467103.125, 7467294.813248288, 7467332.933658905, 7467421.379638757, 7467579.6875, 7467633.84556212, 7467727.449359678, 7467903.962267555, 7468043.75, 7468124.852534497, 7468296.544127202, 7468549.20178794, 7468847.50289831, 7469410.9375, 7469417.1875, 7469455.265412294, 7470076.5625, 7470247.621105169, 7470564.289107928, 7470704.6875, 7470770.977224721, 7470808.274513697, 7470949.945053172, 7471641.935104903, 7472231.599081657, 7474583.82244301, 7474873.870753137, 7474910.178927101, 7475288.447637121, 7475380.957695103, 7475652.590968591, 7476001.994911146, 7478706.25, 7479131.227334923, 7480532.583281776, 7480673.3905020375, 7480753.353869696, 7481417.1875, 7482002.058545582, 7483105.9966131635, 7483131.237273335, 7484321.875, 7485799.386115722, 7488359.982506132, 7490182.8125, 7499526.662270171, 7502620.104279898, 7519840.216710793, 7520628.125, 7521763.292096431, 7522215.625, 7522394.820228805, 7523047.470999912, 7523607.915937984, 7524521.875, 7524772.812817517, 7525583.539335408, 7526001.997341735, 7526038.931225378, 7526049.536231766, 7526365.456793259, 7526431.640148895, 7526741.702284244, 7526748.4375, 7526755.357146643, 7526760.6138090845, 7527774.733974174, 7528203.584161628, 7529239.0625, 7532775.0, 7533885.417744429, 7536365.625, 7538011.277719106, 7539216.814337902, 7539234.149034771, 7541918.5930811195, 7544600.0, 7550525.0, 7562042.396739688, 7562574.6743723955, 7562632.869957934, 7562840.625, 7563375.435956073, 7564379.414702786, 7564448.301307036, 7564763.213883215, 7564850.254872795, 7565097.1972091915, 7565109.36396865, 7565167.190728588, 7565271.429438997, 7565426.230093692, 7565494.515873937, 7565668.029158129, 7565770.3125, 7565776.413173592, 7565825.935319172, 7565959.142797027, 7566076.5625, 7566155.333144931, 7566335.607741224, 7566371.875, 7567277.79188257, 7569563.560753265, 7569747.8891029265, 7570334.375, 7570529.6875, 7570799.0189526, 7571385.598490555, 7571994.315655298, 7572683.050862762, 7572998.166136989, 7573070.384707137, 7573076.5625, 7573279.430456085, 7573389.618170981, 7574668.75, 7575209.275615468, 7576737.404334474, 7580614.0625, 7584802.86880875, 7584861.278938899, 7585166.809042775, 7585807.116990262, 7585829.781900871, 7586854.6875, 7586884.865091007, 7587282.090849516, 7587297.70433649, 7587385.786949192, 7587517.1875, 7587860.9375, 7588612.353317481, 7588894.582731786, 7588924.5003434, 7589048.3156639505, 7589166.088080792, 7589206.070025628, 7589237.3259857865, 7589541.467222175, 7589774.093231651, 7589846.967204766, 7590015.930815176, 7590022.24273664, 7590441.743046779, 7592548.347830021, 7605164.0625, 7605399.120460216, 7605595.3125, 7605617.931497812, 7605754.117972874, 7606070.3125, 7606972.953704442, 7608168.75, 7608870.27670397, 7609566.340436447, 7609654.6875, 7609715.937187069, 7609859.375, 7609878.125, 7610224.812290755, 7610415.625, 7610900.312240875, 7611551.5625, 7612323.2713637985, 7613517.1875, 7613542.220705694, 7613671.843398954, 7613817.914772122, 7614307.485960165, 7615563.469274512, 7626973.358771595, 7627972.770393299, 7628224.482323026, 7628737.5, 7629638.281603252, 7630484.95476638, 7632093.75, 7632779.780872416, 7632779.838622181, 7632880.975845215, 7633645.745064028, 7633774.944466944, 7634121.875, 7634781.759580784, 7637389.719625578, 7637498.786546175, 7637647.040765342, 7637961.596654193, 7639042.142934621, 7639750.557388647, 7639875.884343686, 7641144.747355596, 7641149.863044496, 7641975.365896006, 7653419.204132568, 7653773.4375, 7654942.958047945, 7655389.0625, 7655452.494187736, 7655852.354341657, 7662423.595286714, 7662487.8701264225, 7664572.9425436305, 7665079.681377543, 7666978.125, 7667493.3823102405, 7671950.948993169, 7672589.0625, 7681062.9716083305, 7682264.0625, 7684925.517442801, 7684944.086332928, 7685577.451185953, 7686393.517862437, 7686857.730498463, 7687383.584683842, 7691880.298394128, 7692239.0625, 7692588.305457081, 7692752.662296685, 7693082.8125, 7693301.5625, 7693568.755009365, 7693584.375, 7694442.583986894, 7696348.6008700235, 7696412.977425946, 7700953.809000381, 7703578.0967579065, 7704033.202593451, 7704043.749326442, 7704089.0625, 7704225.15571535, 7704272.584104151, 7704422.992164151, 7704649.328211547, 7704804.700692946, 7704832.8125, 7704845.14684675, 7704850.946221508, 7704988.726057777, 7705006.614729657, 7705184.375, 7705218.75, 7705220.3125, 7705340.625, 7705487.5, 7705519.694127468, 7705537.135847831, 7705870.502883175, 7705983.837886059, 7705985.9375, 7705990.3585185595, 7706091.558886894, 7706132.364867607, 7706141.121218363, 7706155.392014815, 7706339.054602486, 7706401.961101664, 7706523.4375, 7706735.9375, 7706813.456615636, 7706985.9375, 7707091.862812119, 7707103.364715095, 7707103.61332408, 7707258.584483615, 7707261.139509208, 7707274.605156237, 7707306.25, 7707342.1875, 7707356.2912317235, 7707358.460656112, 7707396.875, 7707404.6875, 7707460.5147694675, 7707484.375, 7707490.2861295715, 7707490.318246546, 7707593.162327168, 7707658.909407044, 7707667.1875, 7707683.667758845, 7707710.297087063, 7707739.0625, 7707743.75, 7707764.830940175, 7707779.9145245375, 7707781.25, 7707812.612969141, 7707831.9005130585, 7707840.625, 7707842.1875, 7707855.0514492225, 7707868.75, 7707879.155649684, 7707879.74593772, 7707881.25, 7707906.25, 7707907.146820603, 7707913.159020958, 7707921.312509574, 7707993.126357228, 7708031.6308400985, 7708032.701132996, 7708050.0, 7708056.25, 7708068.566844923, 7708080.403406705, 7708084.375, 7708150.482867115, 7708151.493661681, 7708153.356061254, 7708157.466833226, 7708170.14068535, 7708184.375, 7708242.454008824, 7708244.254886593, 7708245.809846954, 7708264.0625, 7708277.459744421, 7708337.442469121, 7708382.8125, 7708403.125, 7708426.302199593, 7708430.409269677, 7708443.340768987, 7708456.25, 7708462.5, 7708470.3125, 7708546.483101748, 7708603.071401469, 7708620.3125, 7708631.431108649, 7708682.8125, 7708723.4375, 7708727.744996591, 7708791.595665544, 7708798.1277652355, 7708868.75, 7708870.3125, 7708886.481359459, 7708898.4375, 7708915.188978689, 7708915.693622971, 7708939.2169416, 7708962.025762473, 7708966.934340458, 7708973.4375, 7708983.313218805, 7709006.951303299, 7709025.0, 7709090.625, 7709114.0625, 7709155.149699796, 7709167.1875, 7709188.044542653, 7709306.25, 7709306.651685175, 7709315.814363246, 7709331.830387504, 7709395.4307815125, 7709401.096710638, 7709465.731821506, 7709506.055158226, 7709510.515888531, 7709545.939535267, 7709637.5, 7709712.118908658, 7709729.539981857, 7709732.8125, 7709779.436600465, 7709784.375, 7709790.461307832, 7710003.125, 7710048.196217869, 7710095.194010345, 7710117.458969874, 7710502.835182002, 7710572.557605332, 7710580.633944615, 7710584.669445668, 7710601.399695758, 7710620.27648271, 7710731.5774135655, 7710739.0625, 7710807.978994264, 7710818.75, 7710871.347770155, 7711235.231850402, 7711434.375, 7713013.272817631, 7725722.311695696, 7726115.625, 7726360.396263764, 7726402.885797983, 7726608.303483325, 7727203.125, 7727819.232707839, 7728114.123198235, 7729851.536906859, 7730103.590728245, 7731189.0625, 7731782.679011592, 7734717.1875, 7735303.984293589, 7735352.692302293, 7735375.0, 7736292.864483745, 7737114.742562725, 7737539.0625, 7737630.473794912, 7766269.669282246, 7786047.958737391, 7786067.381726997, 7790507.8125, 7793371.875, 7793743.75, 7793801.5625, 7795080.154720678, 7795402.605549414, 7796125.046742174, 7796166.961692316, 7796274.0725067705, 7796462.460187304, 7796470.165424829, 7796557.8125, 7796607.891456219, 7796627.15858204, 7796685.9375, 7796759.482629547, 7796781.25, 7796983.205012244, 7797040.584942796, 7798090.278910177, 7805810.9375, 7805830.010189041, 7807324.915550088, 7807373.4375, 7809694.786855753, 7831632.8125, 7836741.891492335, 7837515.625, 7842299.355024901, 7846897.654952081, 7866799.150439715, 7880282.167327016, 7886858.906897278, 7888129.645455758, 7888771.875, 7890296.193673685, 7894628.312593167, 7895135.080260896, 7895921.01080126, 7895998.900918103, 7896313.552292757, 7896337.5, 7896340.428488018, 7896345.966271804, 7896396.375377603, 7896754.6875, 7896779.908448648, 7896935.257766193, 7896959.526669649, 7897015.342052102, 7897021.832686535, 7897027.248409311, 7897049.037154612, 7897098.508085099, 7897154.6875, 7897256.382675214, 7897284.316815178, 7897390.473531753, 7897455.102472409, 7897482.8125, 7897622.201808696, 7897650.790015527, 7897803.34247608, 7897843.88373531, 7898078.909285003, 7898348.782396451, 7898432.876308946, 7898861.243825201, 7898917.032964948, 7899049.669627664, 7899219.675166027, 7899275.0, 7899459.115524613, 7899614.325261955, 7899687.5, 7899809.69625216, 7900060.973111055, 7900065.8190127695, 7900162.174136466, 7900683.411405991, 7900808.859916969, 7900855.25637122, 7901066.687436765, 7901526.5625, 7902095.786667441, 7904341.156378562, 7906952.313412487, 7907353.97394362, 7907446.49951192, 7907961.816128218, 7907970.3125, 7909716.5223817, 7910512.077391821, 7911590.109642682, 7914996.600291845, 7915968.75, 7930720.3125, 7940141.780255722, 7948589.0625, 7949326.5625, 7955264.0625, 7963398.861814311, 7988371.051631486, 8005476.5625, 8027561.96970422, 8071169.05089825, 8095860.35606272, 8095862.8447187, 8105926.483522363, 8106967.1875, 8109246.028774774, 8124359.224728285, 8127071.980957037, 8130078.12885167, 8134240.333929978, 8141530.951778841, 8144218.1182689415, 8148423.4375, 8157930.9878538335, 8159317.88986609, 8173134.144883476, 8186328.876673441, 8188176.5625, 8230896.640946653, 8249564.0625, 8251675.644079974, 8261332.308859325, 8268989.0625, 8270303.125, 8280411.009734439, 8288089.0625, 8292038.82419362, 8308756.919189736, 8313118.622760248, 8325984.814733652, 8326471.875, 8328227.355151379, 8329816.206030909, 8330003.125, 8330193.122025842, 8330205.011555044, 8331322.876610479, 8331602.981509654, 8332252.057700632, 8332773.336911644, 8332876.083816895, 8335272.639388342, 8335317.1875, 8335569.003585863, 8336319.784876241, 8336368.602604129, 8336466.665238455, 8341616.408666749, 8342200.359289861, 8342523.943506143, 8345571.875, 8345781.25, 8347594.240755402, 8347652.177915943, 8348102.664551664, 8352383.344339804, 8353436.9042063635, 8354009.375, 8354145.637479683, 8354311.098896779, 8355595.943432472, 8356963.410675387, 8361821.875, 8364950.0, 8366280.543243946, 8372569.720460425, 8372577.529027456, 8373325.0, 8374640.625, 8378902.182637345, 8379314.095226448, 8379617.1875, 8379714.026854941, 8379839.98874754, 8380065.625, 8381203.1080175415, 8381846.875, 8382431.179656582, 8382557.551135347, 8382668.477416713, 8383026.804830868, 8384945.776386452, 8385827.763860869, 8386570.807769947, 8386641.938478263, 8386734.375, 8387233.465838251, 8387361.631037447, 8387494.76900239, 8387554.6875, 8387954.6875, 8389226.873564854, 8389445.057787219, 8389451.055727836, 8389529.014992509, 8389624.89821042, 8390437.059591778, 8390471.295481106, 8391432.56605177, 8391570.715328867, 8391756.133877726, 8391780.94432199, 8392568.346386056, 8393400.89505978, 8399658.349561581, 8399786.183532314, 8399946.579950169, 8400551.82187113, 8400643.734565727, 8402123.4375, 8403501.5625, 8403615.980791077, 8407094.784139492, 8408113.421127595, 8411081.25, 8417417.1875, 8417749.227174925, 8423934.375, 8466106.966302501, 8466790.289422084, 8467497.407167979, 8473560.75061309, 8479584.375, 8479849.953129234, 8479877.415656798, 8480130.204706805, 8480995.715088982, 8481158.337836463, 8481223.65108975, 8481852.35570717, 8483219.88717414, 8490546.875, 8494013.38518959, 8494395.255940452, 8496365.625, 8496626.5625, 8496853.427922936, 8497116.59004877, 8497353.125, 8497415.625, 8498358.1989076, 8501684.375, 8502831.844803764, 8503910.702471094, 8505543.12284694, 8505965.77250552, 8505981.25, 8506013.71934742, 8506328.841824114, 8506645.07018275, 8506721.517103484, 8506771.696080288, 8506813.265548939, 8506828.125, 8506916.7736471, 8506939.581463171, 8506941.510916363, 8507003.125, 8507017.634506546, 8507087.5, 8507111.914373657, 8507120.3125, 8507123.4375, 8507275.0, 8507290.62520845, 8507372.066160498, 8507399.39710807, 8507451.056018973, 8507471.809411226, 8507478.431775099, 8507529.668322096, 8507538.38505022, 8507571.236757027, 8507571.972932374, 8507574.621393353, 8507628.125, 8507862.391814334, 8507973.4375, 8508046.875, 8508091.527317153, 8508100.335569818, 8508265.338910287, 8508395.263127606, 8508513.995055737, 8508545.11995892, 8508567.1875, 8508630.281842524, 8508654.6875, 8508834.261388913, 8508981.25, 8509146.875, 8509163.576963099, 8509270.600747414, 8509289.713411126, 8509443.75, 8509526.5625, 8509638.735453345, 8509923.4375, 8513894.665534262, 8515975.0, 8516000.0, 8519298.310762847, 8520999.920258846, 8521003.341320598, 8521784.431281177, 8522038.379690664, 8522489.345179573, 8523024.694571001, 8523377.654053032, 8523509.321084833, 8523687.352875479, 8523829.619498085, 8523976.56178328, 8524140.436612936, 8524196.875, 8524505.440357713, 8524616.640957715, 8525447.91917469, 8525565.625, 8525809.885868879, 8525927.573993323, 8526024.873375962, 8526043.75, 8526156.946755914, 8526236.483483057, 8526374.110613791, 8526432.8125, 8526532.8125, 8526555.73404626, 8526739.81836378, 8526814.0625, 8526937.867774019, 8526949.910565805, 8527011.165091746, 8527073.4375, 8527212.85376677, 8527289.0625, 8527332.356285464, 8527334.375, 8527409.020662464, 8527410.089846417, 8527689.632681968, 8527693.75, 8527798.4375, 8527820.133834235, 8527830.774977041, 8527921.573601881, 8527924.984974306, 8527965.20475162, 8528001.070213526, 8528019.776245067, 8528194.6941853, 8528218.75, 8528271.049072873, 8528304.6875, 8528499.614070453, 8528509.916718766, 8528550.298828166, 8528607.8125, 8528629.172668364, 8528728.125, 8528742.16924833, 8528745.158995366, 8528830.335171096, 8528905.715874614, 8528936.049582612, 8529113.306713892, 8529125.806863215, 8529165.257035404, 8529176.487335151, 8529176.5625, 8529184.830731126, 8529241.55309961, 8529271.387230273, 8529278.741574502, 8529280.708499461, 8529290.594921308, 8529299.463887952, 8529425.0, 8529438.328589858, 8529464.0625, 8529472.019555395, 8529496.875, 8529522.940309418, 8529531.25, 8529532.78620146, 8529580.094373854, 8529606.988661977, 8529618.037195941, 8529654.39706864, 8529656.77498509, 8529683.374455204, 8529793.00671917, 8529798.4375, 8529820.45453885, 8529901.83339064, 8529941.955602486, 8529942.144806439, 8529945.19676678, 8529968.482040426, 8529999.847512301, 8530023.4375, 8530028.125, 8530034.375, 8530043.45156699, 8530047.266490454, 8530086.96555379, 8530087.402008647, 8530120.224106425, 8530133.486823661, 8530164.559081573, 8530179.6875, 8530197.833773643, 8530208.905766115, 8530211.869425178, 8530232.455191268, 8530269.8423391, 8530362.267533805, 8530579.833656803, 8530586.843025887, 8530607.555916997, 8530671.875, 8530675.740650814, 8530710.370406693, 8530729.619562065, 8530754.15629177, 8530757.535092825, ...], [39.08381774502104, 6.405158501124473, 72.4082361659371, 9.644505451873316, 60.480194252666905, 44.86861120717174, 42.14162636299997, 80.067433716274, 66.96788243505027, 9.7988011077061, 41.40343925285105, 84.68479704219286, 26.003894223240632, 40.7593581749278, 5.895404594447098, 19.96325568761545, 6.361330559110357, 6.363221206560621, 11.556241754524416, 68.16005512256395, 21.118427383831555, 11.888033534273706, 64.09661926333806, 74.87745504723839, 25.727344777319384, 6.9715078731455575, 6.532645002436037, 24.947581982732697, 9.427745436584864, 7.337381823034336, 29.29444909147967, 53.171439362818234, 5.292828887401177, 68.1015033912086, 8.91385049711701, 119.52385342849496, 70.23284653532053, 5.721619806749244, 92.57596282839854, 52.60801077477687, 49.9243320719208, 7.747490908850575, 25.372921246076643, 14.734753686204463, 9.425211596161368, 5.875745379406102, 48.3290046139452, 57.251212735919424, 6.879433837531414, 49.70769928231215, 6.041966234828216, 65.87617731318784, 80.42220505141776, 58.20387887324188, 9.926992266496876, 25.734024260982494, 12.419365053920567, 90.12452895787261, 77.72654171703999, 43.40936341561465, 78.87599599856023, 7.899508781558828, 12.341789001933636, 53.753438223224805, 113.25253814956535, 32.92485354943122, 28.481449045236253, 5.766916946610261, 13.818649312119144, 25.325790279984865, 24.90731785616008, 74.9579854568633, 79.04121726137483, 77.4624438716632, 5.393208502344325, 22.418074544670578, 18.20370286873299, 51.995068298506084, 80.59103334338842, 26.057388414921455, 9.012949530522933, 88.09231889555403, 6.216471346744569, 18.203424798100897, 40.73125792271312, 22.89568719557351, 13.471927448272732, 71.51508788340526, 21.389682282365797, 129.20080517799335, 22.04628874998328, 70.22339498188262, 81.8044633474226, 36.73980183431134, 109.36104299408963, 12.855923037607297, 70.88141706015193, 24.284908737836794, 32.02291444230309, 45.965757446811295, 66.82759943112927, 22.342381084921385, 9.691654958343756, 7.877666784550316, 72.67869662157017, 110.20859485452202, 23.971440574559573, 19.382982476875835, 78.62965447356456, 137.32412353684202, 24.963117350762058, 80.928347747665, 44.968877574840576, 51.56570066557431, 89.80690664595473, 16.95184812868049, 10.70867801258409, 94.47647229702955, 7.7652545565135025, 28.09866391762688, 79.04048571003695, 10.248279316334544, 41.95486051823167, 13.831040169589858, 14.363126331385278, 30.952456162984724, 6.186928556651256, 10.154865787276147, 26.12980338975973, 13.268773482789143, 67.42982575533118, 34.22003721364757, 40.00279837260234, 20.598110176651062, 16.370090648606933, 72.77226350606004, 8.712100738977094, 6.632522962541967, 55.10444337154505, 101.52032923970712, 19.569272074066923, 15.381150324660332, 37.140061745210204, 20.911506542456575, 65.53510643216728, 33.233522185617645, 196.12826936817464, 23.34650690808252, 15.102587668544027, 35.0568401257912, 43.798855394400185, 6.038462590611383, 37.03805854652982, 21.500568059664012, 15.424335098563299, 5.153983290631521, 106.60814737060348, 5.230565149747596, 12.869441477579114, 10.156270647812681, 29.563208668716587, 72.21581368363005, 61.557530042757655, 24.40803504171429, 9.925470318286983, 66.94998841238245, 38.961813972126464, 38.984865787621814, 49.81565120912259, 30.782339004968765, 9.530656346327952, 136.5431828324124, 9.964730220738986, 11.935791799561825, 6.082403808464931, 24.37849037745591, 22.41964391001823, 20.98436250475961, 6.853198552545262, 19.250811380691612, 20.41901497775141, 23.8495361373244, 13.233798432806367, 11.878293074649571, 73.65643978726989, 77.78856174109636, 9.144825807241434, 11.05503207844701, 9.532725242026547, 41.57076559403728, 9.789286385305497, 57.222699783645616, 59.91583941013824, 60.77689522046249, 83.13613713515628, 9.903965329779894, 83.03804252596947, 64.47486876592642, 69.96499317106552, 32.804747528976826, 30.99434070451186, 8.755136567237404, 79.69015473599634, 89.34800037803407, 17.832432293879247, 20.890183593976133, 33.7355050785284, 24.146474518553983, 7.889127164793175, 43.40828737017385, 66.87222047809239, 80.71142098842334, 50.467468521458784, 5.478765101885626, 64.50150475331935, 44.3863764337568, 12.365121888825458, 5.448042786199512, 64.039969826499, 17.03751061950017, 52.432873789868594, 58.62535185974103, 13.272263873288372, 49.01454717554935, 5.728758065977736, 67.96320371912839, 24.74413783867164, 5.336573246495661, 63.966169998853196, 52.78671875248775, 47.209524599051896, 159.71471897122382, 8.317197570753482, 75.18456935853906, 9.729400243395295, 7.507464152511818, 30.977165295865703, 17.913100648226106, 8.426119505778868, 23.764185256649967, 14.899629126757947, 11.132757046080634, 22.053909440736273, 9.065307970328888, 18.96936352808479, 62.778997757584264, 44.55478471549386, 25.887184772984867, 53.952791503477556, 6.064280487842035, 72.15193408442391, 12.31302907706528, 8.119568022562092, 74.03883465648687, 28.44717398990322, 27.73396368989001, 10.366592382092294, 57.18956871943115, 42.00507026207073, 12.176972326624432, 76.98799142909587, 129.87004733535366, 15.935161470300853, 12.849622926844154, 15.224061889557749, 70.8507638663403, 14.044634205021838, 8.604040974545564, 80.63469345826103, 121.34463386515951, 5.5284555354913785, 32.91298346170283, 45.91492033817094, 11.706914311300409, 38.500471526227116, 93.11223245975401, 15.313957793222908, 51.611721325529054, 26.384420259386687, 12.362285757146777, 7.35797321376621, 14.39713558202455, 129.84661866091972, 59.74714992544555, 14.410422399312067, 10.151068773475123, 56.2516300066753, 26.32873823011038, 6.859617987632987, 52.18043237814437, 5.801215929309899, 12.760697039383672, 5.490633198529608, 9.410603701725604, 37.08456159292294, 16.556611149040588, 13.480794347525316, 14.610400373592755, 49.27609908446534, 18.39145380133552, 40.80648552745515, 18.387647627150482, 10.340664798954442, 66.83505865905626, 21.656285696985375, 60.9295899339139, 26.496815537278223, 29.281788287387652, 79.91200426888406, 5.726918723949598, 33.51017811966185, 40.43841246772341, 25.299526824714917, 39.77020449085751, 16.282063425596668, 44.02573332096054, 61.12047569889745, 118.97147702261276, 15.069602674121425, 30.0507034369304, 61.1409011787008, 13.827618619732194, 20.610943273322082, 83.57258652949368, 34.38644399995815, 38.88604361366059, 60.09534191944701, 7.912709950566873, 7.827312074454807, 49.6329816879954, 14.259866533722516, 15.304144523050486, 13.990286162153662, 64.05660293300971, 27.472022108532354, 38.60809305929999, 6.8696911820365845, 129.34762213150614, 13.534971015513818, 58.72112214456197, 17.242009550908147, 45.64055642250851, 17.598229297466936, 63.62155460206897, 20.86696632195041, 100.57156045980321, 7.741163303249878, 54.9031006717728, 59.28031055311935, 5.428771657847793, 84.67271014414104, 5.03107144414309, 12.641243936352305, 15.579074308208153, 5.138492066827652, 17.6857207668234, 9.326231651130398, 31.84817988320011, 22.922964829371516, 51.755852464913715, 63.62314613416997, 11.954616600666542, 47.31245328721246, 56.03010415187097, 6.310647835367148, 19.91835853511866, 125.15062645678158, 11.001907358309204, 6.928122785206199, 27.107650813120536, 34.255454056648816, 19.262353954214678, 13.429366878684375, 62.00371783149938, 28.555380512471856, 11.135545801163, 41.21821159415608, 5.636361891356915, 7.663414254953817, 26.862191943005136, 9.98550033057928, 11.083847683238105, 13.300697339005119, 5.939346870294817, 60.963511024704474, 15.5702084217124, 23.480468968438583, 5.9015391121685825, 12.878957004443615, 11.148391032069718, 79.12429549341714, 9.195154648978322, 38.86824637575378, 66.1197602683918, 25.764084427681397, 74.27422142852384, 57.52347767915606, 54.402137783750774, 37.72874411404857, 50.84700206111795, 26.634511806251865, 10.602529590980566, 56.17634829128448, 27.70599431015934, 122.82449134084183, 24.188549997697372, 8.850996144748507, 10.493380250078419, 17.24338513811197, 37.36808930224346, 82.35697895004469, 30.08551766799441, 54.584959482238, 41.052313715691824, 13.045116047282372, 68.44023653222342, 13.833275829267347, 33.6230566456766, 17.19896967770437, 19.013833767617022, 92.51482880601488, 13.623576056224817, 41.50266357767343, 32.17099028779121, 15.101029346356649, 32.2027448451003, 56.18313064814457, 80.82774088531615, 71.19890725605543, 85.14888532300623, 13.790123196844434, 9.084829678045017, 100.81653616313797, 7.00421347485355, 39.13739078965798, 95.93017358134819, 29.381985819287188, 60.51102757887514, 58.59876967618057, 59.25589742130619, 9.531037305297394, 93.8114971622944, 25.38503439267828, 16.045085969962116, 40.78244823203606, 61.88869763454301, 62.44067912897797, 39.171516242200944, 13.239653818529664, 26.23134432593379, 47.337561153998195, 88.67792461720421, 7.963358620498225, 5.651573679206485, 20.891580628152578, 7.982196640196731, 6.841997120773346, 31.714630478631662, 67.15969887659378, 105.59303277139131, 14.286523646791597, 34.938925464397926, 74.53116040865382, 6.139795032606546, 17.660313498599514, 26.376717194123398, 32.98754630147499, 120.83442569860136, 41.05309012397446, 5.546156386736838, 13.231734997756094, 34.08871320364048, 36.59950306412689, 19.98910032672416, 14.726670841828414, 88.43909824068882, 68.58022567304396, 14.034243741002028, 18.889162225766547, 16.500341535451653, 31.148776992910523, 46.9260752219479, 78.6578286141011, 13.632193931948452, 14.741077949268087, 41.764095819381566, 11.423104393423264, 49.93648979327986, 29.742496408503364, 22.779911461010187, 12.315069062868321, 13.879201741502428, 86.0353048023887, 83.09228915371571, 7.812545235231887, 31.217175699293847, 8.068718520167746, 15.209682097668141, 15.564763434773768, 29.45401745992323, 14.057057195070604, 64.7476427201355, 25.855108635568207, 15.537713306897249, 68.15993417351575, 79.62773440720937, 96.42909185814517, 34.35062631597441, 49.27294469560186, 57.784439710609774, 40.51719124029141, 36.62322146708568, 9.4968230819847, 5.4211350966627485, 19.721474557355677, 134.66035653798676, 23.845516462378573, 15.711612088902843, 13.545986294123843, 9.924556811934863, 94.9660133095754, 22.767378239747746, 14.407549220823949, 35.724223884286616, 9.12789682455762, 39.5506140535739, 9.19672413391665, 69.16272308946398, 86.67104534502175, 65.4564171622709, 16.08809492395904, 5.449463219656757, 30.806160702655077, 101.65927656617662, 16.196620693390255, 14.355277824498922, 9.30113307940918, 6.830681244472634, 116.7058149054983, 47.077195283069244, 54.38109433419664, 63.01187703382511, 113.90035757317068, 39.487169902342444, 117.86787741433389, 16.915864780200295, 29.80600657554178, 26.70563896671408, 24.559711970649772, 11.992916355818735, 75.77763194517112, 7.787681926612626, 38.73796563897178, 27.27633593311853, 11.943068746199819, 78.00644711506757, 68.07715709691173, 78.10677512492147, 48.817044645549416, 8.070288237812878, 70.42331963750581, 130.02890493604446, 53.454836483917724, 53.0692063649571, 10.098342453344943, 20.17424999192107, 21.707603256132916, 8.3920297112335, 29.738146032883154, 53.18942327339896, 45.389716964616355, 75.2375455601145, 6.860511552722259, 21.30124006436011, 6.092973516827922, 24.747081664633964, 9.933005791905854, 7.111025289907913, 25.922676787237773, 29.969077855627248, 22.835735006297867, 5.0798985824123735, 77.5975400718416, 26.524653991393585, 32.336957169252486, 8.505656066752291, 9.297760673286572, 7.482682174787085, 28.765500504204194, 146.57846128158792, 14.01003569540903, 31.051912771325284, 21.241043482507198, 63.82088338867615, 13.921754947285667, 58.494858982382766, 7.3855085789695005, 80.51011416948089, 10.01697278446607, 7.385446230640249, 65.04975728632621, 84.79662606030276, 44.268987638422416, 15.213784067908147, 5.542254828465481, 18.542354009493316, 12.428211304442739, 17.06082365635852, 6.6657501818018225, 33.15587355680127, 39.20568113558006, 9.952996027932015, 21.496867856409178, 37.7025352163099, 15.856306143267169, 19.8698004710543, 9.463027833593882, 7.504008700062266, 27.71433340240126, 12.400806450055013, 53.09850610741039, 50.15194566412485, 128.97402656520825, 15.47252624223436, 23.410499582055095, 10.898927734218752, 16.800435666781297, 29.22828929535167, 21.68322566872763, 20.588846039913776, 29.530186508073506, 97.01348137308887, 76.62052750499589, 29.204836264079265, 42.885700322238634, 9.60458412570289, 10.894454695988868, 72.71809873755299, 83.24403669107107, 88.06766586950846, 71.06054071285585, 11.564857881621233, 58.740799177603705, 29.897553278246978, 35.992463793429, 34.915492384194515, 45.47127310073725, 6.152676147227355, 64.43770038562505, 88.00570032977599, 77.46854775293264, 35.637308867147006, 17.120081349332295, 7.268510549154987, 8.728051776920665, 7.36405213420285, 10.587481503394171, 29.86690782803145, 63.31698576900261, 12.895485016623956, 45.353841187518725, 13.28418182737459, 113.97749897733576, 59.492741850517724, 64.78611121228366, 38.509413482228986, 47.2073724199073, 37.469433175478905, 56.71851161052701, 11.862717354317882, 6.920620478166305, 65.06349541491328, 38.2225861541593, 13.764742544416006, 13.108408186363903, 48.40447897885877, 66.82047501423727, 70.68896167525178, 57.86229109244887, 48.612221642979634, 8.343415400731846, 5.939741022407667, 85.098758785979, 9.091358485738908, 12.979186133397556, 204.556853096487, 14.028364363178406, 5.0818951498271066, 9.1441220305005, 71.89899709871165, 44.28487085419845, 56.525167589644674, 66.99926197489684, 12.309655992123295, 13.316086129737311, 43.65886840868137, 41.69604198713014, 8.325149096261333, 62.65800230738883, 78.78607963177373, 5.750713073107014, 14.477739530126453, 16.105068967628466, 45.56946244801686, 10.105503287386538, 83.5596565434806, 63.27704010272978, 37.59087092458819, 15.510911811169539, 5.438196733717908, 10.910592403325717, 5.557606759000548, 9.24777404358286, 36.166721618790014, 24.395848975432166, 70.17988239319253, 46.55650106792156, 68.95489421776111, 29.153269181903504, 10.398973356813888, 6.617379812486579, 64.82387874392195, 39.379402759247064, 73.37375323080273, 79.42184577075946, 17.212616369901596, 5.649022504483561, 6.674936145600882, 17.447676589142905, 58.525882155737825, 44.65065399307767, 5.411044741005755, 72.57277285055633, 8.651005880348333, 31.671206222081295, 101.02062607706993, 53.65427739103145, 19.651934760002845, 12.257503467218374, 5.376169041828215, 64.05989951030689, 96.76080304403915, 37.86570331105861, 7.615117323614646, 58.238961331228374, 5.164532264123498, 27.195347564844948, 67.76216593263038, 10.733562190682218, 61.621842471195045, 16.445370940195154, 55.82339180559588, 7.507537057858935, 68.60385551312243, 25.911333960700453, 20.854947119786367, 208.91129311749464, 5.1596023215106195, 65.74080759081396, 18.195901547109962, 15.622725566288352, 16.801136316114047, 51.373656072640586, 78.3829794101726, 16.276378847212307, 16.964055627721407, 21.42580924860397, 7.376858318478779, 34.30130282523469, 22.108896608732824, 119.79876858558232, 6.062840319603888, 17.004819237887332, 26.422794504195235, 67.62786464948971, 5.383265203306378, 12.889724263655268, 12.085567789805083, 15.970234525024166, 5.6882340766233686, 6.81641681305101, 28.2230140659533, 41.34791883214471, 78.78671298880809, 11.733432453590583, 61.07728039275839, 20.189952530850725, 40.51081967618068, 77.63529334657296, 10.102147969371368, 30.899939144897782, 12.468354585409116, 7.035946680988316, 5.741484861290039, 33.937048713663394, 46.509143748604956, 7.586372841958187, 6.629698938725894, 9.81069389142452, 11.821240924644975, 84.36225883742235, 15.82330463219519, 19.170435417744912, 13.535321950300444, 75.7536562462843, 12.865322330253028, 91.5483618569699, 43.53609290370589, 32.14897797826095, 8.453538752282007, 31.00943562118342, 107.46738929491222, 38.39001257752607, 8.502062921328756, 54.41890380290366, 12.204886700510766, 112.27389712604618, 102.97739490047604, 43.69288179526359, 30.86610157510948, 8.113082541220821, 18.62188068006608, 22.493231245623985, 84.44248343187623, 14.300754725570965, 39.60449053037562, 82.04647930672483, 6.4241157885504165, 9.812478256520901, 12.867114375481512, 58.16941622902848, 16.97140415213657, 87.75472619868596, 76.53523150745451, 40.45386127073893, 72.23856732919417, 70.58061594290268, 33.616236787705226, 18.430999283451573, 86.47475715327857, 5.508994169471153, 23.4652666220297, 5.966574137706166, 14.868912616643547, 18.337947305856385, 87.96641248600629, 15.328399256201546, 6.220520550214019, 61.33785667017965, 6.076920653971584, 132.18596975891867, 86.44888994501704, 5.373821673526728, 51.28557607326359, 23.930067536054295, 27.584317250170177, 27.257955277959972, 77.67179055128467, 52.25040831074023, 62.50277893564235, 46.4483173835484, 91.36350943207627, 71.4920811677741, 83.22566622708584, 80.10120503038374, 20.080666804660858, 5.220328519824724, 43.853184761613434, 50.835980913110575, 20.3472684268162, 31.467426023937065, 24.611254505593806, 30.29809036675272, 52.03948665810438, 5.698739314559186, 6.2571759438498775, 11.48354615063467, 16.710756688137273, 12.85178771222189, 16.14079451453082, 8.131406024860203, 41.42688421950698, 27.501407435225012, 61.01360018859373, 27.248030246060022, 62.838768474485576, 14.268999880962687, 56.333635450018605, 6.367245118485305, 8.908405923649719, 109.28862644709656, 85.18915247490386, 19.185612114696877, 20.998936898591868, 5.698746429572972, 29.818349922497966, 18.94514678868084, 14.34883725372196, 8.677782822179516, 33.09145683824082, 75.73257830688472, 8.03136050656907, 18.89708261098113, 116.80568315105684, 35.58286192859442, 14.611243901459256, 5.721397285717752, 66.07576225273728, 7.736404775193338, 51.863091193854736, 21.94129390503126, 47.408931531539224, 9.048745231050033, 14.177822723308513, 89.85548800996713, 68.25516353750507, 145.02913849512302, 10.859470853127807, 62.67081202113516, 13.904999682258945, 28.230917165573768, 22.32734971163646, 21.570393425601235, 81.43574996756281, 15.34839905204837, 44.60856259145663, 22.821091870883215, 33.33037077995954, 8.09251739364437, 54.87053516361321, 11.629292006640764, 52.16081160277034, 8.930980999718173, 44.49111161843291, 8.27694906323522, 37.16893202067166, 60.50441533385835, 44.61292321876687, 15.386647333498738, 5.316673920872678, 19.272977972291798, 6.692203408676453, 33.35724741694545, 31.44679912165606, 114.04837718882102, 84.00154546349518, 13.359667145428736, 19.158508740124642, 37.533985324833154, 19.419669554030644, 21.140271583809536, 44.08699563553827, 17.900667804231958, 83.39892626576362, 57.19914054027702, 63.594951896641184, 21.521171535453586, 46.75878010499224, 14.842210262270529, 16.757943314670463, 38.33255733730092, 136.38172801508202, 11.33360989435562, 9.818605011006696, 24.052502934552912, 40.183416060626925, 66.31608378302722, 15.512019180842032, 8.435219229500017, 103.21340766425956, 27.707295505089622, 8.226309415859895, 9.114659743906639, 8.207552470993736, 64.52726433986439, 34.58672340940529, 87.00609461552992, 23.770778441525085, 11.800228340382413, 75.0692586247635, 26.726653473084006, 70.70464006246162, 12.37535210118028, 97.59534441650695, 80.90912164755692, 13.050666229908236, 8.963835971045084, 104.00822595362266, 21.812619440348367, 10.464573013132503, 23.9740579347179, 22.43238264224911, 12.668608474324037, 66.93988814499073, 38.43825307321193, 94.50982306728754, 34.27297303943652, 27.24916851912094, 13.24137903537873, 24.04368832666627, ...])
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);
([3236802.0967163504, 3241883.8316323957, 3273951.5625, 3276548.7859495888, 5755537.5, 6794735.9375, 7052631.514374057, 7055072.387546542, 7083776.5625, 7084305.192971319, 7115889.0625, 7116050.0, 7130468.566928597, 7134150.0, 7136291.667981666, 7141450.357379364, 7143280.397919283, 7143622.599012081, 7143664.3203903865, 7145639.0625, 7145769.27386684, 7145837.937457623, 7145970.131316388, 7146162.856395818, 7146357.652942452, 7146622.8346311925, 7146714.347070524, 7146788.850755584, 7146809.486783442, 7146827.324830159, 7146932.065589429, 7146946.367285214, 7147023.493780282, 7147033.533038292, 7147040.0861341925, 7147110.879751193, 7147191.3947402695, 7147220.543514088, 7147292.1875, 7147328.125, 7147354.748749902, 7147373.819472321, 7147450.837269409, 7147608.9288009545, 7147617.296397688, 7147630.488766495, 7147723.4375, 7147771.005332631, 7147784.929204493, 7147785.9375, 7147835.481876867, 7147858.292790557, 7147929.6875, 7147996.875, 7148050.629335558, 7148222.281566919, 7148358.50681034, 7148641.045758667, 7150676.5625, 7151395.3125, 7157446.331444817, 7161322.626034641, 7162592.84643466, 7163739.899253395, 7173446.339848995, 7176351.727220727, 7176491.3077626405, 7177271.21800974, 7178005.141554408, 7186685.94235238, 7193060.722953422, 7207578.125, 7218156.16757441, 7234351.5625, 7238427.986577396, 7258326.699562648, 7272452.217035983, 7297613.177236262, 7297792.1875, 7312692.048902555, 7313216.7852336215, 7315293.75, 7317855.837663862, 7318952.836165135, 7320609.375, 7338057.442476902, 7357404.239914837, 7357651.5625, 7357716.6770699695, 7358070.3125, 7358072.991222347, 7358143.75, 7358387.5, 7358404.669155078, 7358434.375, 7358532.131372642, 7358568.598253822, 7358606.98750276, 7358656.25, 7358759.23683556, 7358792.1875, 7358834.471229871, 7358892.584892142, 7358896.0124568455, 7359057.06258493, 7359228.125, 7359268.467083516, 7359460.19630606, 7359828.125, 7359861.68179083, 7359913.851833835, 7360210.9375, 7360381.232368015, 7360534.375, 7360555.667682685, 7360923.880886338, 7361429.401789914, 7362360.9375, 7362645.739286674, 7362669.498387489, 7362899.383504399, 7363069.666175242, 7363070.005166366, 7363368.4245805135, 7363407.795374389, 7363658.981900106, 7365086.837108046, 7366758.648543388, 7366798.3034164915, 7367666.666454098, 7385150.924860502, 7405423.889765655, 7405700.0, 7407054.959161527, 7414654.4642774025, 7434479.6875, 7434502.288919492, 7438307.118981566, 7439389.0625, 7441018.541018061, 7441117.3315657, 7441940.735753599, 7443057.8125, 7447977.556691316, 7449807.8125, 7459389.417537977, 7459814.3590826765, 7462691.855180998, 7463928.166628483, 7464974.3173564, 7466029.6875, 7467046.383764724, 7467103.125, 7467294.813248288, 7467332.933658905, 7467421.379638757, 7467579.6875, 7467633.84556212, 7467727.449359678, 7467903.962267555, 7468043.75, 7468124.852534497, 7468296.544127202, 7468549.20178794, 7468847.50289831, 7469410.9375, 7469417.1875, 7469455.265412294, 7470076.5625, 7470247.621105169, 7470564.289107928, 7470704.6875, 7470770.977224721, 7470808.274513697, 7470949.945053172, 7471641.935104903, 7472231.599081657, 7474583.82244301, 7474873.870753137, 7474910.178927101, 7475288.447637121, 7475380.957695103, 7475652.590968591, 7476001.994911146, 7478706.25, 7479131.227334923, 7480532.583281776, 7480673.3905020375, 7480753.353869696, 7481417.1875, 7482002.058545582, 7483105.9966131635, 7483131.237273335, 7484321.875, 7485799.386115722, 7488359.982506132, 7490182.8125, 7499526.662270171, 7502620.104279898, 7519840.216710793, 7520628.125, 7521763.292096431, 7522215.625, 7522394.820228805, 7523047.470999912, 7523607.915937984, 7524521.875, 7524772.812817517, 7525583.539335408, 7526001.997341735, 7526038.931225378, 7526049.536231766, 7526365.456793259, 7526431.640148895, 7526741.702284244, 7526748.4375, 7526755.357146643, 7526760.6138090845, 7527774.733974174, 7528203.584161628, 7529239.0625, 7532775.0, 7533885.417744429, 7536365.625, 7538011.277719106, 7539216.814337902, 7539234.149034771, 7541918.5930811195, 7544600.0, 7550525.0, 7562042.396739688, 7562574.6743723955, 7562632.869957934, 7562840.625, 7563375.435956073, 7564379.414702786, 7564448.301307036, 7564763.213883215, 7564850.254872795, 7565097.1972091915, 7565109.36396865, 7565167.190728588, 7565271.429438997, 7565426.230093692, 7565494.515873937, 7565668.029158129, 7565770.3125, 7565776.413173592, 7565825.935319172, 7565959.142797027, 7566076.5625, 7566155.333144931, 7566335.607741224, 7566371.875, 7567277.79188257, 7569563.560753265, 7569747.8891029265, 7570334.375, 7570529.6875, 7570799.0189526, 7571385.598490555, 7571994.315655298, 7572683.050862762, 7572998.166136989, 7573070.384707137, 7573076.5625, 7573279.430456085, 7573389.618170981, 7574668.75, 7575209.275615468, 7576737.404334474, 7580614.0625, 7584802.86880875, 7584861.278938899, 7585166.809042775, 7585807.116990262, 7585829.781900871, 7586854.6875, 7586884.865091007, 7587282.090849516, 7587297.70433649, 7587385.786949192, 7587517.1875, 7587860.9375, 7588612.353317481, 7588894.582731786, 7588924.5003434, 7589048.3156639505, 7589166.088080792, 7589206.070025628, 7589237.3259857865, 7589541.467222175, 7589774.093231651, 7589846.967204766, 7590015.930815176, 7590022.24273664, 7590441.743046779, 7592548.347830021, 7605164.0625, 7605399.120460216, 7605595.3125, 7605617.931497812, 7605754.117972874, 7606070.3125, 7606972.953704442, 7608168.75, 7608870.27670397, 7609566.340436447, 7609654.6875, 7609715.937187069, 7609859.375, 7609878.125, 7610224.812290755, 7610415.625, 7610900.312240875, 7611551.5625, 7612323.2713637985, 7613517.1875, 7613542.220705694, 7613671.843398954, 7613817.914772122, 7614307.485960165, 7615563.469274512, 7626973.358771595, 7627972.770393299, 7628224.482323026, 7628737.5, 7629638.281603252, 7630484.95476638, 7632093.75, 7632779.780872416, 7632779.838622181, 7632880.975845215, 7633645.745064028, 7633774.944466944, 7634121.875, 7634781.759580784, 7637389.719625578, 7637498.786546175, 7637647.040765342, 7637961.596654193, 7639042.142934621, 7639750.557388647, 7639875.884343686, 7641144.747355596, 7641149.863044496, 7641975.365896006, 7653419.204132568, 7653773.4375, 7654942.958047945, 7655389.0625, 7655452.494187736, 7655852.354341657, 7662423.595286714, 7662487.8701264225, 7664572.9425436305, 7665079.681377543, 7666978.125, 7667493.3823102405, 7671950.948993169, 7672589.0625, 7681062.9716083305, 7682264.0625, 7684925.517442801, 7684944.086332928, 7685577.451185953, 7686393.517862437, 7686857.730498463, 7687383.584683842, 7691880.298394128, 7692239.0625, 7692588.305457081, 7692752.662296685, 7693082.8125, 7693301.5625, 7693568.755009365, 7693584.375, 7694442.583986894, 7696348.6008700235, 7696412.977425946, 7700953.809000381, 7703578.0967579065, 7704033.202593451, 7704043.749326442, 7704089.0625, 7704225.15571535, 7704272.584104151, 7704422.992164151, 7704649.328211547, 7704804.700692946, 7704832.8125, 7704845.14684675, 7704850.946221508, 7704988.726057777, 7705006.614729657, 7705184.375, 7705218.75, 7705220.3125, 7705340.625, 7705487.5, 7705519.694127468, 7705537.135847831, 7705870.502883175, 7705983.837886059, 7705985.9375, 7705990.3585185595, 7706091.558886894, 7706132.364867607, 7706141.121218363, 7706155.392014815, 7706339.054602486, 7706401.961101664, 7706523.4375, 7706735.9375, 7706813.456615636, 7706985.9375, 7707091.862812119, 7707103.364715095, 7707103.61332408, 7707258.584483615, 7707261.139509208, 7707274.605156237, 7707306.25, 7707342.1875, 7707356.2912317235, 7707358.460656112, 7707396.875, 7707404.6875, 7707460.5147694675, 7707484.375, 7707490.2861295715, 7707490.318246546, 7707593.162327168, 7707658.909407044, 7707667.1875, 7707683.667758845, 7707710.297087063, 7707739.0625, 7707743.75, 7707764.830940175, 7707779.9145245375, 7707781.25, 7707812.612969141, 7707831.9005130585, 7707840.625, 7707842.1875, 7707855.0514492225, 7707868.75, 7707879.155649684, 7707879.74593772, 7707881.25, 7707906.25, 7707907.146820603, 7707913.159020958, 7707921.312509574, 7707993.126357228, 7708031.6308400985, 7708032.701132996, 7708050.0, 7708056.25, 7708068.566844923, 7708080.403406705, 7708084.375, 7708150.482867115, 7708151.493661681, 7708153.356061254, 7708157.466833226, 7708170.14068535, 7708184.375, 7708242.454008824, 7708244.254886593, 7708245.809846954, 7708264.0625, 7708277.459744421, 7708337.442469121, 7708382.8125, 7708403.125, 7708426.302199593, 7708430.409269677, 7708443.340768987, 7708456.25, 7708462.5, 7708470.3125, 7708546.483101748, 7708603.071401469, 7708620.3125, 7708631.431108649, 7708682.8125, 7708723.4375, 7708727.744996591, 7708791.595665544, 7708798.1277652355, 7708868.75, 7708870.3125, 7708886.481359459, 7708898.4375, 7708915.188978689, 7708915.693622971, 7708939.2169416, 7708962.025762473, 7708966.934340458, 7708973.4375, 7708983.313218805, 7709006.951303299, 7709025.0, 7709090.625, 7709114.0625, 7709155.149699796, 7709167.1875, 7709188.044542653, 7709306.25, 7709306.651685175, 7709315.814363246, 7709331.830387504, 7709395.4307815125, 7709401.096710638, 7709465.731821506, 7709506.055158226, 7709510.515888531, 7709545.939535267, 7709637.5, 7709712.118908658, 7709729.539981857, 7709732.8125, 7709779.436600465, 7709784.375, 7709790.461307832, 7710003.125, 7710048.196217869, 7710095.194010345, 7710117.458969874, 7710502.835182002, 7710572.557605332, 7710580.633944615, 7710584.669445668, 7710601.399695758, 7710620.27648271, 7710731.5774135655, 7710739.0625, 7710807.978994264, 7710818.75, 7710871.347770155, 7711235.231850402, 7711434.375, 7713013.272817631, 7725722.311695696, 7726115.625, 7726360.396263764, 7726402.885797983, 7726608.303483325, 7727203.125, 7727819.232707839, 7728114.123198235, 7729851.536906859, 7730103.590728245, 7731189.0625, 7731782.679011592, 7734717.1875, 7735303.984293589, 7735352.692302293, 7735375.0, 7736292.864483745, 7737114.742562725, 7737539.0625, 7737630.473794912, 7766269.669282246, 7786047.958737391, 7786067.381726997, 7790507.8125, 7793371.875, 7793743.75, 7793801.5625, 7795080.154720678, 7795402.605549414, 7796125.046742174, 7796166.961692316, 7796274.0725067705, 7796462.460187304, 7796470.165424829, 7796557.8125, 7796607.891456219, 7796627.15858204, 7796685.9375, 7796759.482629547, 7796781.25, 7796983.205012244, 7797040.584942796, 7798090.278910177, 7805810.9375, 7805830.010189041, 7807324.915550088, 7807373.4375, 7809694.786855753, 7831632.8125, 7836741.891492335, 7837515.625, 7842299.355024901, 7846897.654952081, 7866799.150439715, 7880282.167327016, 7886858.906897278, 7888129.645455758, 7888771.875, 7890296.193673685, 7894628.312593167, 7895135.080260896, 7895921.01080126, 7895998.900918103, 7896313.552292757, 7896337.5, 7896340.428488018, 7896345.966271804, 7896396.375377603, 7896754.6875, 7896779.908448648, 7896935.257766193, 7896959.526669649, 7897015.342052102, 7897021.832686535, 7897027.248409311, 7897049.037154612, 7897098.508085099, 7897154.6875, 7897256.382675214, 7897284.316815178, 7897390.473531753, 7897455.102472409, 7897482.8125, 7897622.201808696, 7897650.790015527, 7897803.34247608, 7897843.88373531, 7898078.909285003, 7898348.782396451, 7898432.876308946, 7898861.243825201, 7898917.032964948, 7899049.669627664, 7899219.675166027, 7899275.0, 7899459.115524613, 7899614.325261955, 7899687.5, 7899809.69625216, 7900060.973111055, 7900065.8190127695, 7900162.174136466, 7900683.411405991, 7900808.859916969, 7900855.25637122, 7901066.687436765, 7901526.5625, 7902095.786667441, 7904341.156378562, 7906952.313412487, 7907353.97394362, 7907446.49951192, 7907961.816128218, 7907970.3125, 7909716.5223817, 7910512.077391821, 7911590.109642682, 7914996.600291845, 7915968.75, 7930720.3125, 7940141.780255722, 7948589.0625, 7949326.5625, 7955264.0625, 7963398.861814311, 7988371.051631486, 8005476.5625, 8027561.96970422, 8071169.05089825, 8095860.35606272, 8095862.8447187, 8105926.483522363, 8106967.1875, 8109246.028774774, 8124359.224728285, 8127071.980957037, 8130078.12885167, 8134240.333929978, 8141530.951778841, 8144218.1182689415, 8148423.4375, 8157930.9878538335, 8159317.88986609, 8173134.144883476, 8186328.876673441, 8188176.5625, 8230896.640946653, 8249564.0625, 8251675.644079974, 8261332.308859325, 8268989.0625, 8270303.125, 8280411.009734439, 8288089.0625, 8292038.82419362, 8308756.919189736, 8313118.622760248, 8325984.814733652, 8326471.875, 8328227.355151379, 8329816.206030909, 8330003.125, 8330193.122025842, 8330205.011555044, 8331322.876610479, 8331602.981509654, 8332252.057700632, 8332773.336911644, 8332876.083816895, 8335272.639388342, 8335317.1875, 8335569.003585863, 8336319.784876241, 8336368.602604129, 8336466.665238455, 8341616.408666749, 8342200.359289861, 8342523.943506143, 8345571.875, 8345781.25, 8347594.240755402, 8347652.177915943, 8348102.664551664, 8352383.344339804, 8353436.9042063635, 8354009.375, 8354145.637479683, 8354311.098896779, 8355595.943432472, 8356963.410675387, 8361821.875, 8364950.0, 8366280.543243946, 8372569.720460425, 8372577.529027456, 8373325.0, 8374640.625, 8378902.182637345, 8379314.095226448, 8379617.1875, 8379714.026854941, 8379839.98874754, 8380065.625, 8381203.1080175415, 8381846.875, 8382431.179656582, 8382557.551135347, 8382668.477416713, 8383026.804830868, 8384945.776386452, 8385827.763860869, 8386570.807769947, 8386641.938478263, 8386734.375, 8387233.465838251, 8387361.631037447, 8387494.76900239, 8387554.6875, 8387954.6875, 8389226.873564854, 8389445.057787219, 8389451.055727836, 8389529.014992509, 8389624.89821042, 8390437.059591778, 8390471.295481106, 8391432.56605177, 8391570.715328867, 8391756.133877726, 8391780.94432199, 8392568.346386056, 8393400.89505978, 8399658.349561581, 8399786.183532314, 8399946.579950169, 8400551.82187113, 8400643.734565727, 8402123.4375, 8403501.5625, 8403615.980791077, 8407094.784139492, 8408113.421127595, 8411081.25, 8417417.1875, 8417749.227174925, 8423934.375, 8466106.966302501, 8466790.289422084, 8467497.407167979, 8473560.75061309, 8479584.375, 8479849.953129234, 8479877.415656798, 8480130.204706805, 8480995.715088982, 8481158.337836463, 8481223.65108975, 8481852.35570717, 8483219.88717414, 8490546.875, 8494013.38518959, 8494395.255940452, 8496365.625, 8496626.5625, 8496853.427922936, 8497116.59004877, 8497353.125, 8497415.625, 8498358.1989076, 8501684.375, 8502831.844803764, 8503910.702471094, 8505543.12284694, 8505965.77250552, 8505981.25, 8506013.71934742, 8506328.841824114, 8506645.07018275, 8506721.517103484, 8506771.696080288, 8506813.265548939, 8506828.125, 8506916.7736471, 8506939.581463171, 8506941.510916363, 8507003.125, 8507017.634506546, 8507087.5, 8507111.914373657, 8507120.3125, 8507123.4375, 8507275.0, 8507290.62520845, 8507372.066160498, 8507399.39710807, 8507451.056018973, 8507471.809411226, 8507478.431775099, 8507529.668322096, 8507538.38505022, 8507571.236757027, 8507571.972932374, 8507574.621393353, 8507628.125, 8507862.391814334, 8507973.4375, 8508046.875, 8508091.527317153, 8508100.335569818, 8508265.338910287, 8508395.263127606, 8508513.995055737, 8508545.11995892, 8508567.1875, 8508630.281842524, 8508654.6875, 8508834.261388913, 8508981.25, 8509146.875, 8509163.576963099, 8509270.600747414, 8509289.713411126, 8509443.75, 8509526.5625, 8509638.735453345, 8509923.4375, 8513894.665534262, 8515975.0, 8516000.0, 8519298.310762847, 8520999.920258846, 8521003.341320598, 8521784.431281177, 8522038.379690664, 8522489.345179573, 8523024.694571001, 8523377.654053032, 8523509.321084833, 8523687.352875479, 8523829.619498085, 8523976.56178328, 8524140.436612936, 8524196.875, 8524505.440357713, 8524616.640957715, 8525447.91917469, 8525565.625, 8525809.885868879, 8525927.573993323, 8526024.873375962, 8526043.75, 8526156.946755914, 8526236.483483057, 8526374.110613791, 8526432.8125, 8526532.8125, 8526555.73404626, 8526739.81836378, 8526814.0625, 8526937.867774019, 8526949.910565805, 8527011.165091746, 8527073.4375, 8527212.85376677, 8527289.0625, 8527332.356285464, 8527334.375, 8527409.020662464, 8527410.089846417, 8527689.632681968, 8527693.75, 8527798.4375, 8527820.133834235, 8527830.774977041, 8527921.573601881, 8527924.984974306, 8527965.20475162, 8528001.070213526, 8528019.776245067, 8528194.6941853, 8528218.75, 8528271.049072873, 8528304.6875, 8528499.614070453, 8528509.916718766, 8528550.298828166, 8528607.8125, 8528629.172668364, 8528728.125, 8528742.16924833, 8528745.158995366, 8528830.335171096, 8528905.715874614, 8528936.049582612, 8529113.306713892, 8529125.806863215, 8529165.257035404, 8529176.487335151, 8529176.5625, 8529184.830731126, 8529241.55309961, 8529271.387230273, 8529278.741574502, 8529280.708499461, 8529290.594921308, 8529299.463887952, 8529425.0, 8529438.328589858, 8529464.0625, 8529472.019555395, 8529496.875, 8529522.940309418, 8529531.25, 8529532.78620146, 8529580.094373854, 8529606.988661977, 8529618.037195941, 8529654.39706864, 8529656.77498509, 8529683.374455204, 8529793.00671917, 8529798.4375, 8529820.45453885, 8529901.83339064, 8529941.955602486, 8529942.144806439, 8529945.19676678, 8529968.482040426, 8529999.847512301, 8530023.4375, 8530028.125, 8530034.375, 8530043.45156699, 8530047.266490454, 8530086.96555379, 8530087.402008647, 8530120.224106425, 8530133.486823661, 8530164.559081573, 8530179.6875, 8530197.833773643, 8530208.905766115, 8530211.869425178, 8530232.455191268, 8530269.8423391, 8530362.267533805, 8530579.833656803, 8530586.843025887, 8530607.555916997, 8530671.875, 8530675.740650814, 8530710.370406693, 8530729.619562065, 8530754.15629177, 8530757.535092825, ...], [39.08381774502104, 6.405158501124473, 72.4082361659371, 9.644505451873316, 60.480194252666905, 44.86861120717174, 42.14162636299997, 80.067433716274, 66.96788243505027, 9.7988011077061, 41.40343925285105, 84.68479704219286, 26.003894223240632, 40.7593581749278, 5.895404594447098, 19.96325568761545, 6.361330559110357, 6.363221206560621, 11.556241754524416, 68.16005512256395, 21.118427383831555, 11.888033534273706, 64.09661926333806, 74.87745504723839, 25.727344777319384, 6.9715078731455575, 6.532645002436037, 24.947581982732697, 9.427745436584864, 7.337381823034336, 29.29444909147967, 53.171439362818234, 5.292828887401177, 68.1015033912086, 8.91385049711701, 119.52385342849496, 70.23284653532053, 5.721619806749244, 92.57596282839854, 52.60801077477687, 49.9243320719208, 7.747490908850575, 25.372921246076643, 14.734753686204463, 9.425211596161368, 5.875745379406102, 48.3290046139452, 57.251212735919424, 6.879433837531414, 49.70769928231215, 6.041966234828216, 65.87617731318784, 80.42220505141776, 58.20387887324188, 9.926992266496876, 25.734024260982494, 12.419365053920567, 90.12452895787261, 77.72654171703999, 43.40936341561465, 78.87599599856023, 7.899508781558828, 12.341789001933636, 53.753438223224805, 113.25253814956535, 32.92485354943122, 28.481449045236253, 5.766916946610261, 13.818649312119144, 25.325790279984865, 24.90731785616008, 74.9579854568633, 79.04121726137483, 77.4624438716632, 5.393208502344325, 22.418074544670578, 18.20370286873299, 51.995068298506084, 80.59103334338842, 26.057388414921455, 9.012949530522933, 88.09231889555403, 6.216471346744569, 18.203424798100897, 40.73125792271312, 22.89568719557351, 13.471927448272732, 71.51508788340526, 21.389682282365797, 129.20080517799335, 22.04628874998328, 70.22339498188262, 81.8044633474226, 36.73980183431134, 109.36104299408963, 12.855923037607297, 70.88141706015193, 24.284908737836794, 32.02291444230309, 45.965757446811295, 66.82759943112927, 22.342381084921385, 9.691654958343756, 7.877666784550316, 72.67869662157017, 110.20859485452202, 23.971440574559573, 19.382982476875835, 78.62965447356456, 137.32412353684202, 24.963117350762058, 80.928347747665, 44.968877574840576, 51.56570066557431, 89.80690664595473, 16.95184812868049, 10.70867801258409, 94.47647229702955, 7.7652545565135025, 28.09866391762688, 79.04048571003695, 10.248279316334544, 41.95486051823167, 13.831040169589858, 14.363126331385278, 30.952456162984724, 6.186928556651256, 10.154865787276147, 26.12980338975973, 13.268773482789143, 67.42982575533118, 34.22003721364757, 40.00279837260234, 20.598110176651062, 16.370090648606933, 72.77226350606004, 8.712100738977094, 6.632522962541967, 55.10444337154505, 101.52032923970712, 19.569272074066923, 15.381150324660332, 37.140061745210204, 20.911506542456575, 65.53510643216728, 33.233522185617645, 196.12826936817464, 23.34650690808252, 15.102587668544027, 35.0568401257912, 43.798855394400185, 6.038462590611383, 37.03805854652982, 21.500568059664012, 15.424335098563299, 5.153983290631521, 106.60814737060348, 5.230565149747596, 12.869441477579114, 10.156270647812681, 29.563208668716587, 72.21581368363005, 61.557530042757655, 24.40803504171429, 9.925470318286983, 66.94998841238245, 38.961813972126464, 38.984865787621814, 49.81565120912259, 30.782339004968765, 9.530656346327952, 136.5431828324124, 9.964730220738986, 11.935791799561825, 6.082403808464931, 24.37849037745591, 22.41964391001823, 20.98436250475961, 6.853198552545262, 19.250811380691612, 20.41901497775141, 23.8495361373244, 13.233798432806367, 11.878293074649571, 73.65643978726989, 77.78856174109636, 9.144825807241434, 11.05503207844701, 9.532725242026547, 41.57076559403728, 9.789286385305497, 57.222699783645616, 59.91583941013824, 60.77689522046249, 83.13613713515628, 9.903965329779894, 83.03804252596947, 64.47486876592642, 69.96499317106552, 32.804747528976826, 30.99434070451186, 8.755136567237404, 79.69015473599634, 89.34800037803407, 17.832432293879247, 20.890183593976133, 33.7355050785284, 24.146474518553983, 7.889127164793175, 43.40828737017385, 66.87222047809239, 80.71142098842334, 50.467468521458784, 5.478765101885626, 64.50150475331935, 44.3863764337568, 12.365121888825458, 5.448042786199512, 64.039969826499, 17.03751061950017, 52.432873789868594, 58.62535185974103, 13.272263873288372, 49.01454717554935, 5.728758065977736, 67.96320371912839, 24.74413783867164, 5.336573246495661, 63.966169998853196, 52.78671875248775, 47.209524599051896, 159.71471897122382, 8.317197570753482, 75.18456935853906, 9.729400243395295, 7.507464152511818, 30.977165295865703, 17.913100648226106, 8.426119505778868, 23.764185256649967, 14.899629126757947, 11.132757046080634, 22.053909440736273, 9.065307970328888, 18.96936352808479, 62.778997757584264, 44.55478471549386, 25.887184772984867, 53.952791503477556, 6.064280487842035, 72.15193408442391, 12.31302907706528, 8.119568022562092, 74.03883465648687, 28.44717398990322, 27.73396368989001, 10.366592382092294, 57.18956871943115, 42.00507026207073, 12.176972326624432, 76.98799142909587, 129.87004733535366, 15.935161470300853, 12.849622926844154, 15.224061889557749, 70.8507638663403, 14.044634205021838, 8.604040974545564, 80.63469345826103, 121.34463386515951, 5.5284555354913785, 32.91298346170283, 45.91492033817094, 11.706914311300409, 38.500471526227116, 93.11223245975401, 15.313957793222908, 51.611721325529054, 26.384420259386687, 12.362285757146777, 7.35797321376621, 14.39713558202455, 129.84661866091972, 59.74714992544555, 14.410422399312067, 10.151068773475123, 56.2516300066753, 26.32873823011038, 6.859617987632987, 52.18043237814437, 5.801215929309899, 12.760697039383672, 5.490633198529608, 9.410603701725604, 37.08456159292294, 16.556611149040588, 13.480794347525316, 14.610400373592755, 49.27609908446534, 18.39145380133552, 40.80648552745515, 18.387647627150482, 10.340664798954442, 66.83505865905626, 21.656285696985375, 60.9295899339139, 26.496815537278223, 29.281788287387652, 79.91200426888406, 5.726918723949598, 33.51017811966185, 40.43841246772341, 25.299526824714917, 39.77020449085751, 16.282063425596668, 44.02573332096054, 61.12047569889745, 118.97147702261276, 15.069602674121425, 30.0507034369304, 61.1409011787008, 13.827618619732194, 20.610943273322082, 83.57258652949368, 34.38644399995815, 38.88604361366059, 60.09534191944701, 7.912709950566873, 7.827312074454807, 49.6329816879954, 14.259866533722516, 15.304144523050486, 13.990286162153662, 64.05660293300971, 27.472022108532354, 38.60809305929999, 6.8696911820365845, 129.34762213150614, 13.534971015513818, 58.72112214456197, 17.242009550908147, 45.64055642250851, 17.598229297466936, 63.62155460206897, 20.86696632195041, 100.57156045980321, 7.741163303249878, 54.9031006717728, 59.28031055311935, 5.428771657847793, 84.67271014414104, 5.03107144414309, 12.641243936352305, 15.579074308208153, 5.138492066827652, 17.6857207668234, 9.326231651130398, 31.84817988320011, 22.922964829371516, 51.755852464913715, 63.62314613416997, 11.954616600666542, 47.31245328721246, 56.03010415187097, 6.310647835367148, 19.91835853511866, 125.15062645678158, 11.001907358309204, 6.928122785206199, 27.107650813120536, 34.255454056648816, 19.262353954214678, 13.429366878684375, 62.00371783149938, 28.555380512471856, 11.135545801163, 41.21821159415608, 5.636361891356915, 7.663414254953817, 26.862191943005136, 9.98550033057928, 11.083847683238105, 13.300697339005119, 5.939346870294817, 60.963511024704474, 15.5702084217124, 23.480468968438583, 5.9015391121685825, 12.878957004443615, 11.148391032069718, 79.12429549341714, 9.195154648978322, 38.86824637575378, 66.1197602683918, 25.764084427681397, 74.27422142852384, 57.52347767915606, 54.402137783750774, 37.72874411404857, 50.84700206111795, 26.634511806251865, 10.602529590980566, 56.17634829128448, 27.70599431015934, 122.82449134084183, 24.188549997697372, 8.850996144748507, 10.493380250078419, 17.24338513811197, 37.36808930224346, 82.35697895004469, 30.08551766799441, 54.584959482238, 41.052313715691824, 13.045116047282372, 68.44023653222342, 13.833275829267347, 33.6230566456766, 17.19896967770437, 19.013833767617022, 92.51482880601488, 13.623576056224817, 41.50266357767343, 32.17099028779121, 15.101029346356649, 32.2027448451003, 56.18313064814457, 80.82774088531615, 71.19890725605543, 85.14888532300623, 13.790123196844434, 9.084829678045017, 100.81653616313797, 7.00421347485355, 39.13739078965798, 95.93017358134819, 29.381985819287188, 60.51102757887514, 58.59876967618057, 59.25589742130619, 9.531037305297394, 93.8114971622944, 25.38503439267828, 16.045085969962116, 40.78244823203606, 61.88869763454301, 62.44067912897797, 39.171516242200944, 13.239653818529664, 26.23134432593379, 47.337561153998195, 88.67792461720421, 7.963358620498225, 5.651573679206485, 20.891580628152578, 7.982196640196731, 6.841997120773346, 31.714630478631662, 67.15969887659378, 105.59303277139131, 14.286523646791597, 34.938925464397926, 74.53116040865382, 6.139795032606546, 17.660313498599514, 26.376717194123398, 32.98754630147499, 120.83442569860136, 41.05309012397446, 5.546156386736838, 13.231734997756094, 34.08871320364048, 36.59950306412689, 19.98910032672416, 14.726670841828414, 88.43909824068882, 68.58022567304396, 14.034243741002028, 18.889162225766547, 16.500341535451653, 31.148776992910523, 46.9260752219479, 78.6578286141011, 13.632193931948452, 14.741077949268087, 41.764095819381566, 11.423104393423264, 49.93648979327986, 29.742496408503364, 22.779911461010187, 12.315069062868321, 13.879201741502428, 86.0353048023887, 83.09228915371571, 7.812545235231887, 31.217175699293847, 8.068718520167746, 15.209682097668141, 15.564763434773768, 29.45401745992323, 14.057057195070604, 64.7476427201355, 25.855108635568207, 15.537713306897249, 68.15993417351575, 79.62773440720937, 96.42909185814517, 34.35062631597441, 49.27294469560186, 57.784439710609774, 40.51719124029141, 36.62322146708568, 9.4968230819847, 5.4211350966627485, 19.721474557355677, 134.66035653798676, 23.845516462378573, 15.711612088902843, 13.545986294123843, 9.924556811934863, 94.9660133095754, 22.767378239747746, 14.407549220823949, 35.724223884286616, 9.12789682455762, 39.5506140535739, 9.19672413391665, 69.16272308946398, 86.67104534502175, 65.4564171622709, 16.08809492395904, 5.449463219656757, 30.806160702655077, 101.65927656617662, 16.196620693390255, 14.355277824498922, 9.30113307940918, 6.830681244472634, 116.7058149054983, 47.077195283069244, 54.38109433419664, 63.01187703382511, 113.90035757317068, 39.487169902342444, 117.86787741433389, 16.915864780200295, 29.80600657554178, 26.70563896671408, 24.559711970649772, 11.992916355818735, 75.77763194517112, 7.787681926612626, 38.73796563897178, 27.27633593311853, 11.943068746199819, 78.00644711506757, 68.07715709691173, 78.10677512492147, 48.817044645549416, 8.070288237812878, 70.42331963750581, 130.02890493604446, 53.454836483917724, 53.0692063649571, 10.098342453344943, 20.17424999192107, 21.707603256132916, 8.3920297112335, 29.738146032883154, 53.18942327339896, 45.389716964616355, 75.2375455601145, 6.860511552722259, 21.30124006436011, 6.092973516827922, 24.747081664633964, 9.933005791905854, 7.111025289907913, 25.922676787237773, 29.969077855627248, 22.835735006297867, 5.0798985824123735, 77.5975400718416, 26.524653991393585, 32.336957169252486, 8.505656066752291, 9.297760673286572, 7.482682174787085, 28.765500504204194, 146.57846128158792, 14.01003569540903, 31.051912771325284, 21.241043482507198, 63.82088338867615, 13.921754947285667, 58.494858982382766, 7.3855085789695005, 80.51011416948089, 10.01697278446607, 7.385446230640249, 65.04975728632621, 84.79662606030276, 44.268987638422416, 15.213784067908147, 5.542254828465481, 18.542354009493316, 12.428211304442739, 17.06082365635852, 6.6657501818018225, 33.15587355680127, 39.20568113558006, 9.952996027932015, 21.496867856409178, 37.7025352163099, 15.856306143267169, 19.8698004710543, 9.463027833593882, 7.504008700062266, 27.71433340240126, 12.400806450055013, 53.09850610741039, 50.15194566412485, 128.97402656520825, 15.47252624223436, 23.410499582055095, 10.898927734218752, 16.800435666781297, 29.22828929535167, 21.68322566872763, 20.588846039913776, 29.530186508073506, 97.01348137308887, 76.62052750499589, 29.204836264079265, 42.885700322238634, 9.60458412570289, 10.894454695988868, 72.71809873755299, 83.24403669107107, 88.06766586950846, 71.06054071285585, 11.564857881621233, 58.740799177603705, 29.897553278246978, 35.992463793429, 34.915492384194515, 45.47127310073725, 6.152676147227355, 64.43770038562505, 88.00570032977599, 77.46854775293264, 35.637308867147006, 17.120081349332295, 7.268510549154987, 8.728051776920665, 7.36405213420285, 10.587481503394171, 29.86690782803145, 63.31698576900261, 12.895485016623956, 45.353841187518725, 13.28418182737459, 113.97749897733576, 59.492741850517724, 64.78611121228366, 38.509413482228986, 47.2073724199073, 37.469433175478905, 56.71851161052701, 11.862717354317882, 6.920620478166305, 65.06349541491328, 38.2225861541593, 13.764742544416006, 13.108408186363903, 48.40447897885877, 66.82047501423727, 70.68896167525178, 57.86229109244887, 48.612221642979634, 8.343415400731846, 5.939741022407667, 85.098758785979, 9.091358485738908, 12.979186133397556, 204.556853096487, 14.028364363178406, 5.0818951498271066, 9.1441220305005, 71.89899709871165, 44.28487085419845, 56.525167589644674, 66.99926197489684, 12.309655992123295, 13.316086129737311, 43.65886840868137, 41.69604198713014, 8.325149096261333, 62.65800230738883, 78.78607963177373, 5.750713073107014, 14.477739530126453, 16.105068967628466, 45.56946244801686, 10.105503287386538, 83.5596565434806, 63.27704010272978, 37.59087092458819, 15.510911811169539, 5.438196733717908, 10.910592403325717, 5.557606759000548, 9.24777404358286, 36.166721618790014, 24.395848975432166, 70.17988239319253, 46.55650106792156, 68.95489421776111, 29.153269181903504, 10.398973356813888, 6.617379812486579, 64.82387874392195, 39.379402759247064, 73.37375323080273, 79.42184577075946, 17.212616369901596, 5.649022504483561, 6.674936145600882, 17.447676589142905, 58.525882155737825, 44.65065399307767, 5.411044741005755, 72.57277285055633, 8.651005880348333, 31.671206222081295, 101.02062607706993, 53.65427739103145, 19.651934760002845, 12.257503467218374, 5.376169041828215, 64.05989951030689, 96.76080304403915, 37.86570331105861, 7.615117323614646, 58.238961331228374, 5.164532264123498, 27.195347564844948, 67.76216593263038, 10.733562190682218, 61.621842471195045, 16.445370940195154, 55.82339180559588, 7.507537057858935, 68.60385551312243, 25.911333960700453, 20.854947119786367, 208.91129311749464, 5.1596023215106195, 65.74080759081396, 18.195901547109962, 15.622725566288352, 16.801136316114047, 51.373656072640586, 78.3829794101726, 16.276378847212307, 16.964055627721407, 21.42580924860397, 7.376858318478779, 34.30130282523469, 22.108896608732824, 119.79876858558232, 6.062840319603888, 17.004819237887332, 26.422794504195235, 67.62786464948971, 5.383265203306378, 12.889724263655268, 12.085567789805083, 15.970234525024166, 5.6882340766233686, 6.81641681305101, 28.2230140659533, 41.34791883214471, 78.78671298880809, 11.733432453590583, 61.07728039275839, 20.189952530850725, 40.51081967618068, 77.63529334657296, 10.102147969371368, 30.899939144897782, 12.468354585409116, 7.035946680988316, 5.741484861290039, 33.937048713663394, 46.509143748604956, 7.586372841958187, 6.629698938725894, 9.81069389142452, 11.821240924644975, 84.36225883742235, 15.82330463219519, 19.170435417744912, 13.535321950300444, 75.7536562462843, 12.865322330253028, 91.5483618569699, 43.53609290370589, 32.14897797826095, 8.453538752282007, 31.00943562118342, 107.46738929491222, 38.39001257752607, 8.502062921328756, 54.41890380290366, 12.204886700510766, 112.27389712604618, 102.97739490047604, 43.69288179526359, 30.86610157510948, 8.113082541220821, 18.62188068006608, 22.493231245623985, 84.44248343187623, 14.300754725570965, 39.60449053037562, 82.04647930672483, 6.4241157885504165, 9.812478256520901, 12.867114375481512, 58.16941622902848, 16.97140415213657, 87.75472619868596, 76.53523150745451, 40.45386127073893, 72.23856732919417, 70.58061594290268, 33.616236787705226, 18.430999283451573, 86.47475715327857, 5.508994169471153, 23.4652666220297, 5.966574137706166, 14.868912616643547, 18.337947305856385, 87.96641248600629, 15.328399256201546, 6.220520550214019, 61.33785667017965, 6.076920653971584, 132.18596975891867, 86.44888994501704, 5.373821673526728, 51.28557607326359, 23.930067536054295, 27.584317250170177, 27.257955277959972, 77.67179055128467, 52.25040831074023, 62.50277893564235, 46.4483173835484, 91.36350943207627, 71.4920811677741, 83.22566622708584, 80.10120503038374, 20.080666804660858, 5.220328519824724, 43.853184761613434, 50.835980913110575, 20.3472684268162, 31.467426023937065, 24.611254505593806, 30.29809036675272, 52.03948665810438, 5.698739314559186, 6.2571759438498775, 11.48354615063467, 16.710756688137273, 12.85178771222189, 16.14079451453082, 8.131406024860203, 41.42688421950698, 27.501407435225012, 61.01360018859373, 27.248030246060022, 62.838768474485576, 14.268999880962687, 56.333635450018605, 6.367245118485305, 8.908405923649719, 109.28862644709656, 85.18915247490386, 19.185612114696877, 20.998936898591868, 5.698746429572972, 29.818349922497966, 18.94514678868084, 14.34883725372196, 8.677782822179516, 33.09145683824082, 75.73257830688472, 8.03136050656907, 18.89708261098113, 116.80568315105684, 35.58286192859442, 14.611243901459256, 5.721397285717752, 66.07576225273728, 7.736404775193338, 51.863091193854736, 21.94129390503126, 47.408931531539224, 9.048745231050033, 14.177822723308513, 89.85548800996713, 68.25516353750507, 145.02913849512302, 10.859470853127807, 62.67081202113516, 13.904999682258945, 28.230917165573768, 22.32734971163646, 21.570393425601235, 81.43574996756281, 15.34839905204837, 44.60856259145663, 22.821091870883215, 33.33037077995954, 8.09251739364437, 54.87053516361321, 11.629292006640764, 52.16081160277034, 8.930980999718173, 44.49111161843291, 8.27694906323522, 37.16893202067166, 60.50441533385835, 44.61292321876687, 15.386647333498738, 5.316673920872678, 19.272977972291798, 6.692203408676453, 33.35724741694545, 31.44679912165606, 114.04837718882102, 84.00154546349518, 13.359667145428736, 19.158508740124642, 37.533985324833154, 19.419669554030644, 21.140271583809536, 44.08699563553827, 17.900667804231958, 83.39892626576362, 57.19914054027702, 63.594951896641184, 21.521171535453586, 46.75878010499224, 14.842210262270529, 16.757943314670463, 38.33255733730092, 136.38172801508202, 11.33360989435562, 9.818605011006696, 24.052502934552912, 40.183416060626925, 66.31608378302722, 15.512019180842032, 8.435219229500017, 103.21340766425956, 27.707295505089622, 8.226309415859895, 9.114659743906639, 8.207552470993736, 64.52726433986439, 34.58672340940529, 87.00609461552992, 23.770778441525085, 11.800228340382413, 75.0692586247635, 26.726653473084006, 70.70464006246162, 12.37535210118028, 97.59534441650695, 80.90912164755692, 13.050666229908236, 8.963835971045084, 104.00822595362266, 21.812619440348367, 10.464573013132503, 23.9740579347179, 22.43238264224911, 12.668608474324037, 66.93988814499073, 38.43825307321193, 94.50982306728754, 34.27297303943652, 27.24916851912094, 13.24137903537873, 24.04368832666627, ...])
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)