Working ray tracing with dz/dry/drx
@ -13,12 +13,10 @@
|
|||||||
#+BIND: org-latex-image-default-option "scale=1"
|
#+BIND: org-latex-image-default-option "scale=1"
|
||||||
#+BIND: org-latex-image-default-width ""
|
#+BIND: org-latex-image-default-width ""
|
||||||
|
|
||||||
#+LATEX_CLASS: scrreprt
|
#+LaTeX_CLASS: scrreprt
|
||||||
#+LATEX_CLASS_OPTIONS: [a4paper, 10pt, DIV=12, parskip=full]
|
#+LaTeX_CLASS_OPTIONS: [a4paper, 10pt, DIV=12, parskip=full]
|
||||||
#+LATEX_HEADER_EXTRA: \input{preamble.tex}
|
#+LaTeX_HEADER_EXTRA: \input{preamble.tex}
|
||||||
|
#+LATEX_HEADER_EXTRA: \bibliography{ref}
|
||||||
#+bibliography: dcm-metrology.bib
|
|
||||||
#+cite_export: csl ~/.local/data/csl-styles/elsevier-harvard.csl
|
|
||||||
|
|
||||||
#+PROPERTY: header-args:matlab :session *MATLAB*
|
#+PROPERTY: header-args:matlab :session *MATLAB*
|
||||||
#+PROPERTY: header-args:matlab+ :comments org
|
#+PROPERTY: header-args:matlab+ :comments org
|
||||||
@ -248,6 +246,8 @@ d_y = 2 D_{\text{vlm}} \sin \theta \cdot d_{R_x^\prime}
|
|||||||
|
|
||||||
|
|
||||||
* Ray Tracing
|
* Ray Tracing
|
||||||
|
** Introduction :ignore:
|
||||||
|
|
||||||
** Matlab Init :noexport:ignore:
|
** Matlab Init :noexport:ignore:
|
||||||
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
|
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
|
||||||
<<matlab-dir>>
|
<<matlab-dir>>
|
||||||
@ -278,16 +278,30 @@ d_y = 2 D_{\text{vlm}} \sin \theta \cdot d_{R_x^\prime}
|
|||||||
| reflected beam | =x2,y2,z2= | =s2= |
|
| reflected beam | =x2,y2,z2= | =s2= |
|
||||||
| secondary mirror | =xs,ys,zz= | =ns= |
|
| secondary mirror | =xs,ys,zz= | =ns= |
|
||||||
| output beam | =x3,y3,z3= | =s3= |
|
| output beam | =x3,y3,z3= | =s3= |
|
||||||
|
| Dectector | =xd,yd,zd= | =nd= |
|
||||||
|
|
||||||
#+begin_src matlab
|
#+begin_src matlab
|
||||||
theta = 5*pi/180; % [rad]
|
theta = 85*pi/180; % [rad]
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
thetas = pi/180*[5:1:85];
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
yz = zeros(2, length(thetas));
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
theta = thetas(i);
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+begin_src matlab
|
#+begin_src matlab
|
||||||
%% Secondary crystal defaults
|
%% Secondary crystal defaults
|
||||||
drx = 5*pi/180; % [rad]
|
drx = 0; % [rad]
|
||||||
dry = 0*pi/180; % [rad]
|
dry = 0; % [rad]
|
||||||
dz = 0; % [m]
|
dz = 1e-9; % [m]
|
||||||
|
|
||||||
% Rotation matrix for drx
|
% Rotation matrix for drx
|
||||||
udrx = [cos(theta), 0, -sin(theta)];
|
udrx = [cos(theta), 0, -sin(theta)];
|
||||||
@ -321,6 +335,29 @@ ns = [Rdry*Rdrx*[cos(pi/2-theta), 0, sin(pi/2-theta)]']'; % Normal
|
|||||||
|
|
||||||
%% Output Beam
|
%% Output Beam
|
||||||
[p3, s3] = get_plane_reflection(p2, s2, ps, ns);
|
[p3, s3] = get_plane_reflection(p2, s2, ps, ns);
|
||||||
|
|
||||||
|
%% Detector
|
||||||
|
pd = [1, 0, 0]; % [m]
|
||||||
|
nd = [-1, 0, 0];
|
||||||
|
|
||||||
|
%% Get beam position on the decector
|
||||||
|
p4 = get_plane_reflection(p3, s3, pd, nd);
|
||||||
|
yz(:,i) = p4(2:3);
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
plot(180/pi*thetas, 1e9*(yz(2,:) + 10e-3));
|
||||||
|
xlabel('Bragg Angle [deg]'); ylabel('Z position [nm/m/nrad]');
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
plot(180/pi*thetas, 1e9*yz(1,:));
|
||||||
|
xlabel('Bragg Angle [deg]'); ylabel('Y position [nm/m/nrad]');
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+begin_src matlab
|
#+begin_src matlab
|
||||||
@ -414,11 +451,223 @@ zlim([-0.02, 0.01])
|
|||||||
grid off;
|
grid off;
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** Effect of =dry=
|
||||||
|
#+begin_src matlab :exports none
|
||||||
|
%% Effect of dry
|
||||||
|
thetas = 1:1:85;
|
||||||
|
Dy = zeros(length(thetas), 1);
|
||||||
|
Dz = zeros(length(thetas), 1);
|
||||||
|
Ry = zeros(length(thetas), 1);
|
||||||
|
Rz = zeros(length(thetas), 1);
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
results = getBeamPath(thetas(i)*pi/180, 'dry', 1e-9);
|
||||||
|
Dy(i) = results.p4(2);
|
||||||
|
Dz(i) = results.p4(3);
|
||||||
|
Ry(i) = atan2(results.s3(3), results.s3(1));
|
||||||
|
Rz(i) = atan2(results.s3(2), results.s3(1));
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :exports none :results none
|
||||||
|
%% Motion of the output beam with dry error
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
plot(thetas, 1e9*(Dz+10e-3), '--', 'DisplayName', 'Dz');
|
||||||
|
plot(thetas, 1e9*Dy, '--', 'DisplayName', 'Dy');
|
||||||
|
plot(thetas, 1e9*Rz, 'DisplayName', 'Rz');
|
||||||
|
plot(thetas, 1e9*Ry, 'DisplayName', 'Ry');
|
||||||
|
hold off;
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Offset [nm/m], Tilt [nrad]')
|
||||||
|
legend('location', 'northeast', 'FontSize', 8, 'NumColumns', 2);
|
||||||
|
xlim([0, 85]);
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :tangle no :exports results :results file replace
|
||||||
|
exportFig('figs/motion_beam_dry_error.pdf', 'width', 'wide', 'height', 'normal');
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+name: fig:motion_beam_dry_error
|
||||||
|
#+caption: Motion of the output beam with dry error
|
||||||
|
#+RESULTS:
|
||||||
|
[[file:figs/motion_beam_dry_error.png]]
|
||||||
|
|
||||||
|
** Effect of =drx=
|
||||||
|
#+begin_src matlab :exports none
|
||||||
|
%% Effect of drx
|
||||||
|
thetas = 1:1:85;
|
||||||
|
Dy = zeros(length(thetas), 1);
|
||||||
|
Dz = zeros(length(thetas), 1);
|
||||||
|
Ry = zeros(length(thetas), 1);
|
||||||
|
Rz = zeros(length(thetas), 1);
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
results = getBeamPath(thetas(i)*pi/180, 'drx', 1e-9);
|
||||||
|
Dy(i) = results.p4(2);
|
||||||
|
Dz(i) = results.p4(3);
|
||||||
|
Ry(i) = atan2(results.s3(3), results.s3(1));
|
||||||
|
Rz(i) = atan2(results.s3(2), results.s3(1));
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :exports none :results none
|
||||||
|
%% Motion of the output beam with drx error
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
plot(thetas, 1e9*(Dz+10e-3), '--', 'DisplayName', 'Dz');
|
||||||
|
plot(thetas, 1e9*Dy, '--', 'DisplayName', 'Dy');
|
||||||
|
plot(thetas, 1e9*Rz, 'DisplayName', 'Rz');
|
||||||
|
plot(thetas, 1e9*Ry, 'DisplayName', 'Ry');
|
||||||
|
hold off;
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Offset [nm/m], Tilt [nrad]')
|
||||||
|
legend('location', 'southwest', 'FontSize', 8, 'NumColumns', 2);
|
||||||
|
xlim([0, 85]);
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :tangle no :exports results :results file replace
|
||||||
|
exportFig('figs/motion_beam_drx_error.pdf', 'width', 'wide', 'height', 'normal');
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+name: fig:motion_beam_drx_error
|
||||||
|
#+caption: Motion of the output beam with drx error
|
||||||
|
#+RESULTS:
|
||||||
|
[[file:figs/motion_beam_drx_error.png]]
|
||||||
|
|
||||||
|
** Effect of =dz=
|
||||||
|
#+begin_src matlab :exports none
|
||||||
|
%% Effect of dz
|
||||||
|
thetas = 1:1:85;
|
||||||
|
Dy = zeros(length(thetas), 1);
|
||||||
|
Dz = zeros(length(thetas), 1);
|
||||||
|
Ry = zeros(length(thetas), 1);
|
||||||
|
Rz = zeros(length(thetas), 1);
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
results = getBeamPath(thetas(i)*pi/180, 'dz', 1e-9);
|
||||||
|
Dy(i) = results.p4(2);
|
||||||
|
Dz(i) = results.p4(3);
|
||||||
|
Ry(i) = atan2(results.s3(3), results.s3(1));
|
||||||
|
Rz(i) = atan2(results.s3(2), results.s3(1));
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :exports none :results none
|
||||||
|
%% Motion of the output beam with dZ error
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
plot(thetas, 1e9*(Dz+10e-3), '--', 'DisplayName', 'Dz');
|
||||||
|
plot(thetas, 1e9*Dy, '--', 'DisplayName', 'Dy');
|
||||||
|
plot(thetas, 1e9*Rz, 'DisplayName', 'Rz');
|
||||||
|
plot(thetas, 1e9*Ry, 'DisplayName', 'Ry');
|
||||||
|
hold off;
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Offset [nm/m], Tilt [nrad]')
|
||||||
|
legend('location', 'northeast', 'FontSize', 8, 'NumColumns', 2);
|
||||||
|
xlim([0, 85]);
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab :tangle no :exports results :results file replace
|
||||||
|
exportFig('figs/motion_beam_dz_error.pdf', 'width', 'wide', 'height', 'normal');
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+name: fig:motion_beam_dz_error
|
||||||
|
#+caption: Motion of the output beam with dZ error
|
||||||
|
#+RESULTS:
|
||||||
|
[[file:figs/motion_beam_dz_error.png]]
|
||||||
|
|
||||||
|
** Test :noexport:
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
plot(thetas, 1e9*yz(:,1));
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Y Displacement [nm/m/nrad]')
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
plot(thetas, 1e9*yz(:,1));
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Y Displacement [nm/m/nrad]')
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
%% Effect of dry
|
||||||
|
thetas = 1:1:85;
|
||||||
|
yz = zeros(length(thetas), 2);
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
results = getBeamPath(thetas(i)*pi/180, 'dry', 1e-9);
|
||||||
|
yz(i,:) = results.p4(2:3);
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
plot(thetas, 1e9*(yz(:,2) + 10e-3));
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Z Displacement [nm/m/nrad]')
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
%% Effect of dz
|
||||||
|
thetas = 1:1:85;
|
||||||
|
yz = zeros(length(thetas), 2);
|
||||||
|
for i = 1:length(thetas)
|
||||||
|
results = getBeamPath(thetas(i)*pi/180, 'dz', 1e-9);
|
||||||
|
yz(i,:) = results.p4(2:3);
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
plot(thetas, 1e9*(yz(:,2) + 10e-3));
|
||||||
|
xlabel('Bragg [deg]'); ylabel('Z Displacement [nm/m/nm]')
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
for theta = 5:5:85
|
||||||
|
set(gca,'ColorOrderIndex',1)
|
||||||
|
plotBeamPath(getBeamPath(theta*pi/180, 'dz', 1e-3))
|
||||||
|
end
|
||||||
|
hold off;
|
||||||
|
view(0,0)
|
||||||
|
axis equal
|
||||||
|
xlim([-0.1, 0.15])
|
||||||
|
zlim([-0.02, 0.01])
|
||||||
|
grid off;
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
for theta = 5:5:85
|
||||||
|
set(gca,'ColorOrderIndex',1)
|
||||||
|
plotBeamPath(getBeamPath(theta*pi/180, 'dry', 1*pi/180))
|
||||||
|
end
|
||||||
|
hold off;
|
||||||
|
view(0,0)
|
||||||
|
axis equal
|
||||||
|
xlim([-0.1, 0.15])
|
||||||
|
zlim([-0.02, 0.01])
|
||||||
|
grid off;
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
figure;
|
||||||
|
hold on;
|
||||||
|
for theta = 5:5:85
|
||||||
|
set(gca,'ColorOrderIndex',1)
|
||||||
|
plotBeamPath(getBeamPath(theta*pi/180, 'drx', 1*pi/180))
|
||||||
|
end
|
||||||
|
hold off;
|
||||||
|
view(0,90)
|
||||||
|
axis equal
|
||||||
|
xlim([-0.1, 0.15])
|
||||||
|
zlim([-0.02, 0.01])
|
||||||
|
grid off;
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Deformations of the Metrology Frame
|
* Deformations of the Metrology Frame
|
||||||
<<sec:frame_deformations>>
|
<<sec:frame_deformations>>
|
||||||
** Introduction :ignore:
|
** Introduction :ignore:
|
||||||
|
|
||||||
The transformation matrix in Table [[tab:transformation_matrix]] is valid only if the metrology frames are solid bodies.
|
The transformation matrices are valid only if the metrology frames are solid bodies.
|
||||||
|
|
||||||
The metrology frame itself is experiencing some deformations due to the gravity.
|
The metrology frame itself is experiencing some deformations due to the gravity.
|
||||||
When the bragg axis is scanned, the effect of gravity on the metrology frame is changing and this introduce some measurement errors.
|
When the bragg axis is scanned, the effect of gravity on the metrology frame is changing and this introduce some measurement errors.
|
||||||
@ -1175,9 +1424,119 @@ s_reflect = s_reflect./norm(s_reflect);
|
|||||||
end
|
end
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* Bibliography
|
** Get Beam Path
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:UNNUMBERED: t
|
:header-args:matlab+: :tangle matlab/src/getBeamPath.m
|
||||||
|
:header-args:matlab+: :comments none :mkdirp yes :eval no
|
||||||
:END:
|
:END:
|
||||||
|
<<sec:getBeamPath>>
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
function [results] = getBeamPath(theta, args)
|
||||||
|
% getBeamPath -
|
||||||
|
%
|
||||||
|
% Syntax: [in_data] = getBeamPath(drx, dry, dz, theta, )
|
||||||
|
%
|
||||||
|
% Inputs:
|
||||||
|
% - drx, dry, dz, theta, -
|
||||||
|
%
|
||||||
|
% Outputs:
|
||||||
|
% - in_data -
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
arguments
|
||||||
|
theta
|
||||||
|
args.drx (1,1) double {mustBeNumeric} = 0 % [rad]
|
||||||
|
args.dry (1,1) double {mustBeNumeric} = 0 % [rad]
|
||||||
|
args.dz (1,1) double {mustBeNumeric} = 0 % [m]
|
||||||
|
end
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
% Rotation matrix for drx
|
||||||
|
udrx = [cos(theta), 0, -sin(theta)];
|
||||||
|
Rdrx = cos(args.drx)*eye(3)+sin(args.drx)*[0, -udrx(3), udrx(2); udrx(3), 0, -udrx(1); -udrx(2), udrx(1), 0] + (1-cos(args.drx))*(udrx'*udrx);
|
||||||
|
|
||||||
|
% Rotation matrix for dry
|
||||||
|
Rdry = [ cos(args.dry), 0, sin(args.dry); ...
|
||||||
|
0, 1, 0; ...
|
||||||
|
-sin(args.dry), 0, cos(args.dry)];
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
%% Input Beam
|
||||||
|
p1 = [-0.1, 0, 0]; % [m]
|
||||||
|
s1 = [ 1, 0, 0];
|
||||||
|
|
||||||
|
%% Primary Mirror
|
||||||
|
pp = [0, 0, 0]; % [m]
|
||||||
|
np = [cos(pi/2-theta), 0, sin(pi/2-theta)];
|
||||||
|
|
||||||
|
%% Reflected beam
|
||||||
|
[p2, s2] = get_plane_reflection(p1, s1, pp, np);
|
||||||
|
|
||||||
|
%% Secondary Mirror
|
||||||
|
ps = pp ...
|
||||||
|
+ 0.07*[cos(theta), 0, -sin(theta)] ... % x offset (does not matter a lot)
|
||||||
|
- np*10e-3./(2*cos(theta)) ... % Theoretical offset
|
||||||
|
+ np*args.dz; % Add error in distance
|
||||||
|
|
||||||
|
ns = [Rdry*Rdrx*[cos(pi/2-theta), 0, sin(pi/2-theta)]']'; % Normal
|
||||||
|
|
||||||
|
%% Output Beam
|
||||||
|
[p3, s3] = get_plane_reflection(p2, s2, ps, ns);
|
||||||
|
|
||||||
|
%% Detector
|
||||||
|
pd = [1, 0, 0]; % [m]
|
||||||
|
nd = [-1, 0, 0];
|
||||||
|
|
||||||
|
%% Get beam position on the decector
|
||||||
|
p4 = get_plane_reflection(p3, s3, pd, nd);
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
results = struct();
|
||||||
|
% Beam position and orientations
|
||||||
|
results.p1 = p1;
|
||||||
|
results.s1 = s1;
|
||||||
|
results.p2 = p2;
|
||||||
|
results.s2 = s2;
|
||||||
|
results.p3 = p3;
|
||||||
|
results.s3 = s3;
|
||||||
|
results.p4 = p4;
|
||||||
|
% Mirrors/detector positions and orientations
|
||||||
|
results.pp = pp;
|
||||||
|
results.np = np;
|
||||||
|
results.ps = ps;
|
||||||
|
results.ns = ns;
|
||||||
|
results.pd = pd;
|
||||||
|
results.nd = nd;
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
** Plot Beam Path
|
||||||
|
:PROPERTIES:
|
||||||
|
:header-args:matlab+: :tangle matlab/src/plotBeamPath.m
|
||||||
|
:header-args:matlab+: :comments none :mkdirp yes :eval no
|
||||||
|
:END:
|
||||||
|
<<sec:plotBeamPath>>
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
function [] = plotBeamPath(results)
|
||||||
|
% plotBeamPath -
|
||||||
|
%
|
||||||
|
% Syntax: [in_data] = plotBeamPath(drx, dry, dz, theta, )
|
||||||
|
%
|
||||||
|
% Inputs:
|
||||||
|
% - drx, dry, dz, theta, -
|
||||||
|
%
|
||||||
|
% Outputs:
|
||||||
|
% - in_data -
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+begin_src matlab
|
||||||
|
plot3([results.p1(1), results.p2(1)],[results.p1(2), results.p2(2)], [results.p1(3), results.p2(3)])
|
||||||
|
plot3([results.p2(1), results.p3(1)],[results.p2(2), results.p3(2)], [results.p2(3), results.p3(3)])
|
||||||
|
plot3([results.p3(1), results.p4(1)],[results.p3(2), results.p4(2)], [results.p3(3), results.p4(3)])
|
||||||
|
#+end_src
|
||||||
|
|
||||||
#+print_bibliography:
|
|
||||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 86 KiB |
@ -8,10 +8,9 @@
|
|||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg5"
|
id="svg5"
|
||||||
sodipodi:docname="metrology_schematic.svg"
|
sodipodi:docname="metrology_schematic.svg"
|
||||||
inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)"
|
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
@ -28,17 +27,25 @@
|
|||||||
inkscape:object-paths="true"
|
inkscape:object-paths="true"
|
||||||
inkscape:snap-smooth-nodes="true"
|
inkscape:snap-smooth-nodes="true"
|
||||||
inkscape:snap-midpoints="true"
|
inkscape:snap-midpoints="true"
|
||||||
inkscape:zoom="2.1997092"
|
inkscape:zoom="3.1108586"
|
||||||
inkscape:cx="283.67386"
|
inkscape:cx="234.82263"
|
||||||
inkscape:cy="160.47576"
|
inkscape:cy="169.56733"
|
||||||
inkscape:window-width="2536"
|
inkscape:window-width="2560"
|
||||||
inkscape:window-height="1367"
|
inkscape:window-height="1413"
|
||||||
inkscape:window-x="12"
|
inkscape:window-x="0"
|
||||||
inkscape:window-y="61"
|
inkscape:window-y="27"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
inkscape:current-layer="layer1" />
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
<defs
|
<defs
|
||||||
id="defs2">
|
id="defs2">
|
||||||
|
<rect
|
||||||
|
x="-2.1674091"
|
||||||
|
y="145.7398"
|
||||||
|
width="29.65201"
|
||||||
|
height="29.539302"
|
||||||
|
id="rect14685" />
|
||||||
<marker
|
<marker
|
||||||
style="overflow:visible"
|
style="overflow:visible"
|
||||||
id="Arrow2Mend"
|
id="Arrow2Mend"
|
||||||
@ -923,12 +930,59 @@
|
|||||||
id="path9972" />
|
id="path9972" />
|
||||||
</symbol>
|
</symbol>
|
||||||
</g>
|
</g>
|
||||||
|
<defs
|
||||||
|
id="id-db09a6c4-8ff5-4968-b16b-21a811a4c27c">
|
||||||
|
<g
|
||||||
|
id="id-3c7a9057-4efa-46ef-92bd-b09a06f84e31">
|
||||||
|
<g
|
||||||
|
id="id-42df1666-446c-4858-86f2-5a0fbbbc5aad" />
|
||||||
|
<g
|
||||||
|
id="id-e6d60182-ffe4-4d8d-99ca-879f3385f22a">
|
||||||
|
<path
|
||||||
|
d="m 1.328125,-0.828125 c 0.53125,-0.578125 0.828125,-0.828125 1.1875,-1.140625 0,0 0.609375,-0.53125 0.96875,-0.890625 C 4.4375,-3.78125 4.65625,-4.265625 4.65625,-4.3125 c 0,-0.09375 -0.09375,-0.09375 -0.109375,-0.09375 -0.078125,0 -0.09375,0.015625 -0.15625,0.109375 -0.296875,0.484375 -0.5,0.640625 -0.734375,0.640625 -0.25,0 -0.359375,-0.15625 -0.515625,-0.328125 -0.1875,-0.21875 -0.359375,-0.421875 -0.6875,-0.421875 -0.75,0 -1.203125,0.921875 -1.203125,1.140625 0,0.046875 0.03125,0.109375 0.109375,0.109375 0.09375,0 0.109375,-0.046875 0.140625,-0.109375 0.1875,-0.46875 0.765625,-0.46875 0.84375,-0.46875 0.203125,0 0.390625,0.0625 0.625,0.140625 0.40625,0.15625 0.515625,0.15625 0.765625,0.15625 -0.359375,0.421875 -1.1875,1.140625 -1.375,1.296875 l -0.90625,0.84375 C 0.78125,-0.625 0.421875,-0.0625 0.421875,0.015625 c 0,0.09375 0.109375,0.09375 0.125,0.09375 0.078125,0 0.09375,-0.015625 0.15625,-0.125 0.234375,-0.359375 0.53125,-0.625 0.859375,-0.625 0.21875,0 0.328125,0.09375 0.578125,0.375 0.15625,0.21875 0.34375,0.375 0.625,0.375 1,0 1.578125,-1.265625 1.578125,-1.53125 0,-0.046875 -0.046875,-0.109375 -0.125,-0.109375 -0.09375,0 -0.109375,0.0625 -0.140625,0.140625 C 3.84375,-0.75 3.203125,-0.5625 2.875,-0.5625 c -0.1875,0 -0.375,-0.0625 -0.578125,-0.125 -0.34375,-0.125 -0.5,-0.171875 -0.703125,-0.171875 -0.015625,0 -0.171875,0 -0.265625,0.03125 z m 0,0"
|
||||||
|
id="id-28470154-9daa-400d-a6d1-988ebe90b488" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="id-715a9a8c-792d-42c1-940f-02f9105ac1b6" />
|
||||||
|
<g
|
||||||
|
id="id-64ab31d3-6f8c-4119-8b75-e6e57d802c90">
|
||||||
|
<path
|
||||||
|
d="m 5.734375,-2.109375 c 0,-0.609375 -0.3125,-0.96875 -1.046875,-0.96875 -0.5625,0 -0.9375,0.296875 -1.125,0.65625 -0.140625,-0.5 -0.515625,-0.65625 -1.015625,-0.65625 -0.578125,0 -0.9375,0.3125 -1.140625,0.6875 v -0.6875 L 0.375,-3 v 0.25 c 0.46875,0 0.53125,0.046875 0.53125,0.390625 v 1.8125 C 0.90625,-0.25 0.828125,-0.25 0.375,-0.25 V 0 C 0.390625,0 0.875,-0.03125 1.171875,-0.03125 1.421875,-0.03125 1.90625,0 1.96875,0 v -0.25 c -0.453125,0 -0.515625,0 -0.515625,-0.296875 V -1.8125 c 0,-0.71875 0.578125,-1.0625 1.03125,-1.0625 0.484375,0 0.546875,0.375 0.546875,0.734375 v 1.59375 C 3.03125,-0.25 2.96875,-0.25 2.515625,-0.25 V 0 C 2.53125,0 3.015625,-0.03125 3.3125,-0.03125 3.5625,-0.03125 4.046875,0 4.109375,0 v -0.25 c -0.453125,0 -0.515625,0 -0.515625,-0.296875 V -1.8125 c 0,-0.71875 0.578125,-1.0625 1.03125,-1.0625 0.484375,0 0.546875,0.375 0.546875,0.734375 v 1.59375 C 5.171875,-0.25 5.109375,-0.25 4.65625,-0.25 V 0 c 0.015625,0 0.5,-0.03125 0.796875,-0.03125 C 5.703125,-0.03125 6.1875,0 6.25,0 v -0.25 c -0.453125,0 -0.515625,0 -0.515625,-0.296875 z m 0,0"
|
||||||
|
id="id-4c6e60e0-4ba3-4f0e-9bf8-0edcb8510271" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="id-40191057-4d47-4049-9b39-95b955fa3e46">
|
||||||
|
<path
|
||||||
|
d="m 1.4375,-2.75 h 0.875 V -3 H 1.40625 v -0.78125 c 0,-0.640625 0.375,-0.921875 0.671875,-0.921875 0.0625,0 0.140625,0 0.203125,0.03125 C 2.1875,-4.625 2.125,-4.515625 2.125,-4.390625 c 0,0.1875 0.140625,0.3125 0.328125,0.3125 0.1875,0 0.328125,-0.125 0.328125,-0.3125 0,-0.3125 -0.3125,-0.515625 -0.6875,-0.515625 -0.546875,0 -1.1875,0.390625 -1.1875,1.125 V -3 H 0.3125 v 0.25 h 0.59375 v 2.203125 C 0.90625,-0.25 0.84375,-0.25 0.390625,-0.25 V 0 C 0.421875,0 0.90625,-0.03125 1.1875,-0.03125 1.484375,-0.03125 1.796875,-0.015625 2.09375,0 V -0.25 H 1.953125 C 1.4375,-0.25 1.4375,-0.328125 1.4375,-0.5625 Z m 0,0"
|
||||||
|
id="id-56c76804-4178-42f5-b642-dabc2b5e04d7" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="id-73d81c78-3fa0-4738-9ffd-be2c1bb8e8c0" />
|
||||||
|
<g
|
||||||
|
id="id-7f4e1d1d-bc5a-455b-a849-7f1ff2358787">
|
||||||
|
<path
|
||||||
|
d="m 1.46875,-0.109375 c 0,0.375 -0.0625,0.828125 -0.546875,1.265625 C 0.90625,1.1875 0.875,1.21875 0.875,1.25 c 0,0.046875 0.0625,0.09375 0.09375,0.09375 0.109375,0 0.703125,-0.5625 0.703125,-1.390625 0,-0.421875 -0.171875,-0.75 -0.5,-0.75 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 C 0.78125,-0.1875 0.9375,0 1.1875,0 1.359375,0 1.46875,-0.109375 1.46875,-0.109375 Z m 0,0"
|
||||||
|
id="id-1b829996-4efd-4733-a7bf-09b426dd3218" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="id-7da8dd00-fb5a-4304-94cc-ee9199e29256">
|
||||||
|
<path
|
||||||
|
d="M 2.953125,-1.125 C 2.90625,-0.984375 2.84375,-0.71875 2.84375,-0.71875 2.703125,-0.5 2.421875,-0.125 2,-0.125 c -0.484375,0 -0.484375,-0.453125 -0.484375,-0.578125 0,-0.40625 0.1875,-0.90625 0.390625,-1.421875 C 1.953125,-2.265625 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 0.15625,-0.5625 0.46875,-0.84375 0.734375,-0.84375 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.375,0.96875 -0.375,1.171875 -0.375,1.359375 0,0.109375 0,0.4375 0.265625,0.65625 0.203125,0.171875 0.46875,0.21875 0.71875,0.21875 0.4375,0 0.671875,-0.234375 0.90625,-0.453125 C 3.03125,0.0625 3.484375,0.0625 3.578125,0.0625 3.8125,0.0625 4,-0.0625 4.125,-0.296875 4.28125,-0.578125 4.375,-0.96875 4.375,-1 c 0,-0.09375 -0.09375,-0.09375 -0.109375,-0.09375 -0.109375,0 -0.109375,0.03125 -0.15625,0.21875 -0.09375,0.328125 -0.21875,0.75 -0.515625,0.75 -0.171875,0 -0.234375,-0.15625 -0.234375,-0.34375 0,-0.109375 0.0625,-0.375 0.109375,-0.546875 0.046875,-0.1875 0.125,-0.46875 0.15625,-0.625 l 0.15625,-0.625 C 3.828125,-2.4375 3.90625,-2.75 3.90625,-2.78125 3.90625,-2.921875 3.796875,-3 3.671875,-3 c -0.25,0 -0.3125,0.203125 -0.359375,0.421875 z m 0,0"
|
||||||
|
id="id-c2faaa3f-d530-4362-9bb5-cd3086d0ced4" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
</defs>
|
</defs>
|
||||||
<g
|
<g
|
||||||
inkscape:label="Layer 1"
|
inkscape:label="Layer 1"
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-16.35824,-15.011289)">
|
transform="translate(-16.3582, -15.0113)">
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.396875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart-3);marker-end:url(#Arrow2Mend-0)"
|
||||||
|
d="M 66.134192,23.256119 V 91.503677"
|
||||||
|
id="path2049-2"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
<rect
|
<rect
|
||||||
style="fill:#b3b3b3;stroke:#000000;stroke-width:0.352777;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
style="fill:#b3b3b3;stroke:#000000;stroke-width:0.352777;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
||||||
id="rect846"
|
id="rect846"
|
||||||
@ -962,11 +1016,6 @@
|
|||||||
d="M 28.505059,23.256118 V 91.503676"
|
d="M 28.505059,23.256118 V 91.503676"
|
||||||
id="path2049"
|
id="path2049"
|
||||||
sodipodi:nodetypes="cc" />
|
sodipodi:nodetypes="cc" />
|
||||||
<path
|
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.396875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart-3);marker-end:url(#Arrow2Mend-0)"
|
|
||||||
d="M 66.134192,23.256119 V 91.503677"
|
|
||||||
id="path2049-2"
|
|
||||||
sodipodi:nodetypes="cc" />
|
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.396875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5875, 0.396875;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend)"
|
style="fill:none;stroke:#000000;stroke-width:0.396875;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.5875, 0.396875;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#Arrow2Mstart);marker-end:url(#Arrow2Mend)"
|
||||||
d="M 103.76332,23.256119 V 91.503682"
|
d="M 103.76332,23.256119 V 91.503682"
|
||||||
@ -1012,7 +1061,9 @@
|
|||||||
id="tspan4539"
|
id="tspan4539"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="47.543507"
|
x="47.543507"
|
||||||
y="37.600887">First</tspan><tspan
|
y="37.600887">1<tspan
|
||||||
|
style="font-size:65%;baseline-shift:super"
|
||||||
|
id="tspan14968">st</tspan> "hall"</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="47.543507"
|
x="47.543507"
|
||||||
@ -1028,7 +1079,9 @@
|
|||||||
id="tspan4539-1"
|
id="tspan4539-1"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="47.543507"
|
x="47.543507"
|
||||||
y="68.586418">Second</tspan><tspan
|
y="68.586418">2<tspan
|
||||||
|
style="font-size:65%;baseline-shift:super"
|
||||||
|
id="tspan14972">nd</tspan> "hall"</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="47.543507"
|
x="47.543507"
|
||||||
@ -1118,166 +1171,6 @@
|
|||||||
style="stroke-width:0.264583"
|
style="stroke-width:0.264583"
|
||||||
x="68.130142"
|
x="68.130142"
|
||||||
y="26.488962" /></text>
|
y="26.488962" /></text>
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.59049,0,0,0.59049,3.0256189,-20.258895)"
|
|
||||||
id="g18099"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
id="g3695"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g3526">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol3274"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use8722"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol3040"
|
|
||||||
x="97.628586"
|
|
||||||
y="81.962997"
|
|
||||||
id="use613"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g8454">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol3226"
|
|
||||||
x="102.123"
|
|
||||||
y="83.457001"
|
|
||||||
id="use5203"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.59049,0,0,0.59049,-21.90373,-19.516169)"
|
|
||||||
id="g18449"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
id="g9582"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g9473">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol2765"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use1182"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g2188">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol1505"
|
|
||||||
x="97.665001"
|
|
||||||
y="83.457001"
|
|
||||||
id="use3362"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.59049,0,0,0.59049,-8.5472441,-19.516169)"
|
|
||||||
id="g18829"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
id="g6571"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g151">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol6187"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use9542"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol624"
|
|
||||||
x="97.110535"
|
|
||||||
y="81.962997"
|
|
||||||
id="use369"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g8118">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol4344"
|
|
||||||
x="101.605"
|
|
||||||
y="83.457001"
|
|
||||||
id="use5520"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.59049,0,0,0.59049,-8.6118289,40.251769)"
|
|
||||||
id="g19248"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
id="g9366"
|
|
||||||
style="stroke-width:1.69351">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g4469">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol7026"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use8064"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol2630"
|
|
||||||
x="97.110535"
|
|
||||||
y="81.962997"
|
|
||||||
id="use2175"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g7233">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol6352"
|
|
||||||
x="101.605"
|
|
||||||
y="83.457001"
|
|
||||||
id="use5271"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<rect
|
<rect
|
||||||
style="fill:#00ffff;stroke:#000000;stroke-width:0.352777;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
style="fill:#00ffff;stroke:#000000;stroke-width:0.352777;stroke-linecap:round;stroke-linejoin:round;stop-color:#000000"
|
||||||
id="rect1890-3"
|
id="rect1890-3"
|
||||||
@ -1332,7 +1225,9 @@
|
|||||||
id="tspan4539-9"
|
id="tspan4539-9"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="85.232582"
|
x="85.232582"
|
||||||
y="37.600887">First</tspan><tspan
|
y="37.600887">1<tspan
|
||||||
|
style="font-size:65%;baseline-shift:super"
|
||||||
|
id="tspan14970">st</tspan> "ring"</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="85.232582"
|
x="85.232582"
|
||||||
@ -1348,227 +1243,362 @@
|
|||||||
id="tspan4539-1-3"
|
id="tspan4539-1-3"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="85.232582"
|
x="85.232582"
|
||||||
y="68.586418">Second</tspan><tspan
|
y="68.586418">2<tspan
|
||||||
|
style="font-size:65%;baseline-shift:super"
|
||||||
|
id="tspan14974">nd</tspan> "ring"</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
x="85.232582"
|
x="85.232582"
|
||||||
y="73.878082"
|
y="73.878082"
|
||||||
id="tspan4543-2-7">Crystal</tspan></text>
|
id="tspan4543-2-7">Crystal</tspan></text>
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 114.38348,96.855485 1.63075,1.794537"
|
||||||
|
id="path632" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 114.38095,98.601048 1.54051,-1.830621"
|
||||||
|
id="path634" />
|
||||||
<g
|
<g
|
||||||
inkscape:label=""
|
id="g14846"
|
||||||
transform="matrix(0.59049,0,0,0.59049,2.9610341,39.509043)"
|
transform="translate(13.509476,-12.759502)">
|
||||||
id="g19778"
|
<circle
|
||||||
style="stroke-width:1.69351">
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
<g
|
id="circle14840"
|
||||||
id="g4045"
|
cx="20.928881"
|
||||||
style="stroke-width:1.69351">
|
cy="40.450741"
|
||||||
<g
|
r="2.6401281" />
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
<text
|
||||||
id="g2276">
|
xml:space="preserve"
|
||||||
<use
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
xlink:href="#symbol5048"
|
x="20.911947"
|
||||||
x="91.925003"
|
y="41.860439"
|
||||||
y="81.962997"
|
id="text14844"><tspan
|
||||||
id="use8936"
|
sodipodi:role="line"
|
||||||
width="100%"
|
id="tspan14842"
|
||||||
height="100%"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
style="stroke-width:1.69351" />
|
x="20.911947"
|
||||||
<use
|
y="41.860439">5</tspan></text>
|
||||||
xlink:href="#symbol2840"
|
|
||||||
x="97.628586"
|
|
||||||
y="81.962997"
|
|
||||||
id="use3036"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
|
||||||
id="g6444">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol7999"
|
|
||||||
x="102.123"
|
|
||||||
y="83.457001"
|
|
||||||
id="use7504"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.69351" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:label=""
|
id="g14854"
|
||||||
transform="matrix(0.59049,0,0,0.59049,-21.968315,40.251769)"
|
transform="translate(30.20909,-12.759502)">
|
||||||
id="g20266"
|
<circle
|
||||||
style="stroke-width:1.69351">
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
<g
|
id="circle14848"
|
||||||
id="g7811"
|
cx="20.928881"
|
||||||
style="stroke-width:1.69351">
|
cy="40.450741"
|
||||||
<g
|
r="2.6401281" />
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
<text
|
||||||
id="g4769">
|
xml:space="preserve"
|
||||||
<use
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
xlink:href="#symbol5160"
|
x="20.911947"
|
||||||
x="91.925003"
|
y="41.860439"
|
||||||
y="81.962997"
|
id="text14852"><tspan
|
||||||
id="use7460"
|
sodipodi:role="line"
|
||||||
width="100%"
|
id="tspan14850"
|
||||||
height="100%"
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
style="stroke-width:1.69351" />
|
x="20.911947"
|
||||||
</g>
|
y="41.860439">6</tspan></text>
|
||||||
<g
|
</g>
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.69351"
|
<g
|
||||||
id="g8563">
|
id="g14862"
|
||||||
<use
|
transform="translate(39.685205,-12.759502)">
|
||||||
xlink:href="#symbol2731"
|
<circle
|
||||||
x="97.665001"
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
y="83.457001"
|
id="circle14856"
|
||||||
id="use4700"
|
cx="20.928881"
|
||||||
width="100%"
|
cy="40.450741"
|
||||||
height="100%"
|
r="2.6401281" />
|
||||||
style="stroke-width:1.69351" />
|
<text
|
||||||
</g>
|
xml:space="preserve"
|
||||||
</g>
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14860"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14858"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">4</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14878"
|
||||||
|
transform="translate(59.432831,-12.759502)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14872"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14876"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14874"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">2</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14886"
|
||||||
|
transform="translate(67.959061,-12.759502)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14880"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14884"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14882"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">3</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14894"
|
||||||
|
transform="translate(77.244018,-12.759502)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14888"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14892"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14890"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14902"
|
||||||
|
transform="translate(86.391264,13.76959)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14896"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14900"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14898"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">14</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14910"
|
||||||
|
transform="translate(48.814915,13.769591)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14904"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14908"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14906"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">13</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14918"
|
||||||
|
transform="translate(10.855731,13.769591)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14912"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14916"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14914"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">15</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14926"
|
||||||
|
transform="translate(14.169881,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14920"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14924"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14922"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">11</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14934"
|
||||||
|
transform="translate(30.544116,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14928"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14932"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14930"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">12</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14942"
|
||||||
|
transform="translate(39.506059,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14936"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14940"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14938"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">10</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14950"
|
||||||
|
transform="translate(51.782282,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14944"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14948"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14946"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">8</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14958"
|
||||||
|
transform="translate(68.500299,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14952"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14956"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14954"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">9</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14966"
|
||||||
|
transform="translate(77.114561,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="circle14960"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14964"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14962"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">1</tspan></text>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g14830"
|
||||||
|
transform="translate(77.114561,43.574419)">
|
||||||
|
<circle
|
||||||
|
style="font-variation-settings:normal;fill:#ffffff;fill-opacity:0.78343;stroke:#000000;stroke-width:0.264583;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000"
|
||||||
|
id="path14617-5"
|
||||||
|
cx="20.928881"
|
||||||
|
cy="40.450741"
|
||||||
|
r="2.6401281" />
|
||||||
|
<text
|
||||||
|
xml:space="preserve"
|
||||||
|
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439"
|
||||||
|
id="text14500-2"><tspan
|
||||||
|
sodipodi:role="line"
|
||||||
|
id="tspan14498-5"
|
||||||
|
style="text-align:center;text-anchor:middle;stroke-width:0.264583"
|
||||||
|
x="20.911947"
|
||||||
|
y="41.860439">7</tspan></text>
|
||||||
</g>
|
</g>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583"
|
transform="matrix(0.26458333,0,0,0.26458333,16.3582,15.0113)"
|
||||||
x="34.388805"
|
id="text14683"
|
||||||
y="55.838264"
|
style="line-height:1.25;font-family:'Latin Modern Roman';font-size:16px;-inkscape-font-specification:'Latin Modern Roman, ';white-space:pre;shape-inside:url(#rect14685)" />
|
||||||
id="text2846"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan2844"
|
|
||||||
style="stroke-width:0.264583"
|
|
||||||
x="34.388805"
|
|
||||||
y="55.838264">"311" Crystals</tspan></text>
|
|
||||||
<text
|
|
||||||
xml:space="preserve"
|
|
||||||
style="font-size:4.23333px;line-height:1.25;font-family:'Latin Modern Roman';-inkscape-font-specification:'Latin Modern Roman, ';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583"
|
|
||||||
x="72.077881"
|
|
||||||
y="55.838264"
|
|
||||||
id="text2846-9"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan2844-4"
|
|
||||||
style="stroke-width:0.264583"
|
|
||||||
x="72.077881"
|
|
||||||
y="55.838264">"111" Crystals</tspan></text>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.6561,0,0,0.6561,-44.220295,-25.576169)"
|
|
||||||
id="g1798"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
id="g6842"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g7739">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol1878"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use9961"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol1191"
|
|
||||||
x="97.110535"
|
|
||||||
y="81.962997"
|
|
||||||
id="use5596"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g846">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol2336"
|
|
||||||
x="102.851"
|
|
||||||
y="83.457001"
|
|
||||||
id="use7773"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.6561,0,0,0.6561,44.592716,-25.393824)"
|
|
||||||
id="g2555"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
id="g2976"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g2409">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol5923"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use1907"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol5856"
|
|
||||||
x="97.110535"
|
|
||||||
y="81.962997"
|
|
||||||
id="use8488"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g7931">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol7833"
|
|
||||||
x="101.605"
|
|
||||||
y="83.457001"
|
|
||||||
id="use2639"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
inkscape:label=""
|
|
||||||
transform="matrix(0.6561,0,0,0.6561,6.5157937,-25.928177)"
|
|
||||||
id="g3231"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
id="g5662"
|
|
||||||
style="stroke-width:1.52416">
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g9097">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol1297"
|
|
||||||
x="91.925003"
|
|
||||||
y="81.962997"
|
|
||||||
id="use5852"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
<g
|
|
||||||
style="fill:#000000;fill-opacity:1;stroke-width:1.52416"
|
|
||||||
id="g9846">
|
|
||||||
<use
|
|
||||||
xlink:href="#symbol6748"
|
|
||||||
x="97.627998"
|
|
||||||
y="83.457001"
|
|
||||||
id="use1618"
|
|
||||||
width="100%"
|
|
||||||
height="100%"
|
|
||||||
style="stroke-width:1.52416" />
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 102 KiB |
BIN
figs/motion_beam_drx_error.pdf
Normal file
BIN
figs/motion_beam_drx_error.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
figs/motion_beam_dry_error.pdf
Normal file
BIN
figs/motion_beam_dry_error.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
figs/motion_beam_dz_error.pdf
Normal file
BIN
figs/motion_beam_dz_error.png
Normal file
After Width: | Height: | Size: 20 KiB |
185
matlab/mat/correctInterf-vlm-220201.dat
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
#th E newU42 srcur dxtal startRoll startPitch fjsz cenPitch newPitch newRoll newfjsz newx2z Idiode vlmInt0 vlmX0 vlmY0 itf0drxf itf0dryf itf0dzf itf0rx1 itf0ry1 itf0z1 itf0rx2 itf0ry2 itf0z2 itf0MFrx itf0MFry itf0MFz itf0fjpur itf0fjpuh itf0fjpd bestfjsrx bestfjprx2 vlmX2 vlmY2 itf2drxf itf2dryf itf2dzf itf2rx1 itf2ry1 itf2z1 itf2rx2 itf2ry2 itf2z2 itf2MFrx itf2MFry itf2MFz itf2fjpur itf2fjpuh itf2fjpd bestfjsry bestfjpry4 vlmX4 vlmY4 itf4drxf itf4dryf itf4dzf itf4rx1 itf4ry1 itf4z1 itf4rx2 itf4ry2 itf4z2 itf4MFrx itf4MFry itf4MFz itf4fjpur itf4fjpuh itf4fjpd bestfjprx5 vlmX5 vlmY5 itf5drxf itf5dryf itf5dzf itf5rx1 itf5ry1 itf5z1 itf5rx2 itf5ry2 itf5z2 itf5MFrx itf5MFry itf5MFz itf5fjpur itf5fjpuh itf5fjpd vlmExpT scanNr time
|
||||||
|
10.00 11.394 21.663 31.7 5.3310 0.1180 0.5190 25.0964 0.5162 0.5162 0.118 25.096 5.331 3.389e-06 1682.2 749.885 925.871 -1294.1606 -2921.5602 5330788.7539 118694.3156 518175.3956 -30427307.1298 117393.2757 515231.4281 25096519.9543 -2.3974 -12.9051 1.2776 0.0000 0.0000 0.0000 0.1218 -0.7144 753.053 885.806 -388.0216 -424.3441 5330789.4191 118712.9695 518148.5369 -30427306.2298 118327.0101 517718.7918 25096518.5324 -2.4998 -7.4442 1.7434 32.1486 -72.6320 -20.2417 0.5186 -0.6273 760.799 893.574 2043.2503 -864.4726 5330794.0208 118624.8116 518111.4062 -30427308.2919 120661.6832 517232.1358 25096515.4600 -3.5057 -13.3666 1.3497 -26.4032 -131.1839 38.3101 -4.2710 752.314 895.450 -298.2145 -920.9185 5330796.3090 118533.8804 518050.9014 -30427308.4370 118235.9637 517118.9600 25096513.4477 -2.3221 -9.2605 1.6486 133.6535 -492.7937 -62.4664 0.4000 77 155428
|
||||||
|
11.00 10.369 20.520 31.5 5.3483 0.1180 0.5190 25.0791 0.5162 0.5162 0.118 25.079 5.348 6.338e-06 2710.2 738.405 896.592 -1413.8509 -1397.6277 5348093.3623 118589.0868 517268.4765 -30427309.1212 117165.6192 515863.5744 25079216.3535 -14.4183 -1.8553 0.6013 0.0000 0.0000 0.0000 0.1252 -0.4743 752.976 858.492 2709.6950 862.3955 5348092.9785 118813.4239 517394.0018 -30427315.4205 121519.3643 518240.9531 25079223.5391 -13.9696 -7.0710 0.9871 21.3446 -48.2231 -13.4392 0.5167 -0.5215 761.681 893.500 5219.4714 -1378.9913 5348141.9018 118867.7386 517449.3974 -30427319.8429 124053.8368 516074.1088 25079179.3443 -14.7315 -5.6576 1.4270 -27.3292 -96.8969 35.2346 -4.4478 752.157 894.482 2584.7626 -1528.8675 5348145.6764 118991.2458 517553.0098 -30427323.1662 121551.4155 516015.7792 25079178.8195 -14.8651 -8.8374 1.3469 151.4857 -500.8862 -77.3525 0.0500 15 155726
|
||||||
|
12.00 9.516 19.538 31.4 5.3673 0.1180 0.5190 25.0601 0.5147 0.5147 0.118 25.060 5.367 9.898e-06 3300.8 727.793 896.814 -1054.8685 -1773.2003 5367168.5897 118812.8308 516511.2142 -30427323.5982 117737.0283 514726.3328 25060157.1640 -16.4683 -6.3313 1.4928 0.0000 0.0000 0.0000 0.1275 -0.2920 752.690 859.770 5514.7286 569.1996 5367162.8492 118724.6943 516482.3396 -30427328.8140 124227.5456 517050.0722 25060167.1186 -16.3087 -6.4990 1.4895 13.1384 -29.6831 -8.2723 0.5154 -0.5089 762.403 893.534 7980.6546 -1523.6999 5367185.4168 118695.5956 516475.0080 -30427333.0710 126663.8507 514938.5806 25060149.1729 -14.9835 -10.2467 1.3881 -34.3567 -77.1782 39.2228 -4.2631 752.510 894.230 5479.4064 -1580.7620 5367187.3305 118707.7215 516483.1431 -30427334.5715 124166.3360 514898.1125 25060148.4339 -14.1955 -5.8752 1.0169 144.3538 -480.9316 -73.2987 0.0500 29 155957
|
||||||
|
13.00 8.795 18.695 35.1 5.3881 0.1180 0.5190 25.0393 0.5134 0.5134 0.118 25.039 5.388 1.039e-05 3302.6 720.030 895.714 -421.1475 -1943.0148 5388026.7871 118773.8420 515645.8774 -30427336.0295 118338.8117 513693.6891 25039310.5267 -17.6429 -4.7050 1.0262 0.0000 0.0000 0.0000 0.1292 -0.7141 752.449 859.990 7314.5021 250.3242 5388000.1013 118800.5514 515700.4054 -30427341.2407 126093.0176 515943.2434 25039342.3961 -16.6139 -6.9632 1.3842 32.1377 -72.6074 -20.2349 0.5141 -0.4881 764.609 893.557 10040.7428 -1892.0060 5388075.3923 118828.3316 515742.1974 -30427345.1817 128841.5701 513849.2677 25039271.1267 -17.6479 -9.2632 1.2471 -13.4165 -118.1616 25.3193 -5.1631 752.065 894.495 7165.1799 -1970.4490 5388076.4478 118824.4276 515767.8436 -30427347.3127 125975.3600 513787.3943 25039271.2070 -17.7333 -11.5665 0.9091 186.7954 -570.4923 -100.7400 0.0500 43 160204
|
||||||
|
14.00 8.178 17.927 35.0 5.4107 0.1180 0.5190 25.0167 0.5113 0.5113 0.118 25.017 5.411 1.389e-05 3240.8 715.082 917.506 973.8144 -3609.7580 5410606.3519 118674.7743 514887.5307 -30427357.0763 119630.5451 511266.8037 25016752.1027 -24.4676 -11.9283 1.9468 -0.0000 -0.0000 -0.0000 0.1291 -0.6285 752.754 880.924 9281.6678 -1309.5676 5410555.5723 118672.9524 514880.6116 -30427359.5975 127932.4459 513553.9479 25016806.0295 -28.1319 -16.0849 1.9176 28.2829 -63.8983 -17.8077 0.5130 -0.6623 763.464 893.574 11589.9550 -2112.8896 5410596.2833 118664.1802 514906.0445 -30427362.0230 130237.9733 512773.6069 25016767.2959 -25.6743 -14.9773 2.0333 -33.5395 -125.7207 44.0146 -4.2989 752.372 894.329 9252.7253 -2170.5773 5410597.7537 118668.8138 514919.8720 -30427362.8477 127900.3221 512727.3440 25016767.9768 -25.2115 -12.8424 2.0710 131.6364 -498.8959 -59.9850 0.0250 57 160410
|
||||||
|
15.00 7.645 17.260 34.7 5.4352 0.1180 0.5190 24.9922 0.5102 0.5102 0.118 24.992 5.435 1.180e-05 3122.4 701.763 921.141 192.3170 -4027.8213 5435081.8671 118601.6906 514036.6756 -30427362.0918 118762.6795 509996.4475 24992282.2226 -31.5753 -16.8131 1.9924 -0.0000 -0.0000 -0.0000 0.1303 -0.6747 752.623 878.625 10689.8694 -1359.1584 5435019.8072 118611.9988 514030.1049 -30427363.9390 129272.9216 512659.1547 24992345.4908 -29.7060 -12.9684 2.1579 30.3631 -68.5982 -19.1175 0.5119 -0.9079 766.097 893.499 13406.3071 -2302.6744 5435079.4123 118605.5946 514050.3040 -30427366.4039 131989.6491 511732.0763 24992288.4189 -28.6861 -13.9729 2.1836 -54.3785 -153.3399 65.6241 -5.0760 752.273 894.540 10550.4608 -2379.9144 5435080.0696 118603.5850 514068.6294 -30427367.0718 129122.7989 511671.1008 24992289.2287 -27.3037 -11.5645 2.1956 143.6897 -600.8272 -59.0855 0.0250 71 160853
|
||||||
|
16.00 7.178 36.371 34.5 5.4616 0.1180 0.5190 24.9658 0.5093 0.5093 0.118 24.966 5.462 9.172e-06 3088.4 699.463 909.311 1708.8137 -3497.7179 5461435.1180 118541.9316 513160.0747 -30427366.3205 120214.6731 509647.4226 24965933.2262 -38.6219 -13.3578 2.1565 -0.0000 -0.0000 -0.0000 0.1317 -0.6704 752.500 876.767 11974.3286 -1478.7401 5461401.8801 118509.8890 513187.2782 -30427366.9587 130445.1200 511694.0933 24965967.7133 -38.2986 -12.9731 2.4989 30.1688 -68.1592 -18.9952 0.5112 -1.1187 764.058 893.527 14129.0012 -2523.0008 5461430.3457 118522.9108 513185.9982 -30427368.2523 132599.3813 510648.3863 24965940.7647 -37.9773 -16.2122 2.4293 -74.2499 -172.5779 85.4235 -4.2604 752.351 894.612 11832.8069 -2582.9235 5461432.3123 118525.7268 513196.5369 -30427369.0450 130317.2736 510601.1909 24965939.3750 -36.6060 -16.3200 2.6103 87.3074 -537.5777 -16.2978 0.0500 85 161117
|
||||||
|
17.00 6.767 33.380 34.3 5.4899 0.1180 0.5190 24.9375 0.5096 0.5096 0.118 24.938 5.490 1.151e-05 3334.8 694.469 907.532 2318.9595 -3507.9248 5489789.1239 118480.4916 512297.8062 -30427368.7267 120758.5195 508763.9392 24937582.2516 -42.5060 -19.3165 2.0212 -0.0000 -0.0000 -0.0000 0.1309 -0.7204 752.580 868.695 12967.8504 -1064.9549 5489712.8821 118488.3850 512288.1174 -30427370.5742 131417.1520 511205.5008 24937660.1687 -40.8797 -16.0970 2.6594 32.4217 -73.2490 -20.4137 0.5102 -0.5898 765.634 893.543 15245.0046 -2624.4219 5489807.5078 118503.8815 512290.7236 -30427372.3693 133706.1931 509650.0247 24937566.8294 -40.0484 -20.8741 2.3738 -22.6314 -128.3021 34.6394 -4.4630 752.096 894.362 12856.8232 -2682.1094 5489808.0139 118498.1300 512304.6009 -30427372.6668 131310.6219 509598.1353 24937567.3292 -39.0947 -18.4381 2.3032 145.7909 -508.8116 -71.4042 0.0500 99 161356
|
||||||
|
17.00 6.767 33.381 34.3 5.4899 0.1180 0.5170 24.9375 0.5098 0.5098 0.118 24.938 5.490 1.168e-05 3364.0 689.638 906.754 1852.6102 -3448.9559 5489895.3259 118556.4298 512470.7485 -30427422.9874 120350.4085 508966.5467 24937535.9948 -62.3757 -52.0125 8.1807 39.0145 -88.1439 -24.5647 0.1318 -1.9098 752.693 861.637 13086.0825 -543.7584 5489873.5941 118632.7092 512387.5982 -30427425.6389 131656.1152 511774.7735 24937560.2801 -60.4260 -59.9087 8.0903 85.9446 -194.1712 -54.1133 0.5107 -0.9329 764.818 893.502 15274.2093 -2576.9701 5489881.6566 118578.7786 512428.4516 -30427425.3097 133780.4800 509780.7602 24937552.8737 -64.1677 -62.9039 9.0540 -1.1268 -281.2426 32.9581 -5.2843 751.818 895.007 12977.2814 -2671.2593 5489882.9645 118565.2063 512427.5876 -30427425.4938 131473.7963 509690.7872 24937551.6538 -62.1990 -68.9556 8.7070 150.7356 -624.3392 -62.6590 0.0500 5 171556
|
||||||
|
17.00 6.767 33.381 33.7 5.4899 0.1180 0.5170 24.9375 0.5098 0.5098 0.118 24.938 5.490 1.148e-05 3346.6 692.840 907.183 2241.8137 -3438.3265 5489899.9991 118562.0788 512434.4142 -30427424.2633 120750.1184 508933.8555 24937532.3553 -60.7613 -61.8483 8.6255 -0.0000 -0.0000 -0.0000 0.1313 -0.7162 752.751 860.357 13187.4870 -465.5821 5489886.2851 118617.1188 512376.9138 -30427424.8247 131737.9925 511856.5271 24937547.4012 -64.4287 -61.6461 8.9842 32.2310 -72.8182 -20.2936 0.5108 -1.0225 765.493 893.420 15460.2281 -2557.2333 5489885.2105 118574.2986 512407.8187 -30427425.5246 133968.2901 509786.5312 24937548.7098 -64.4989 -67.8723 9.0522 -63.2110 -168.2602 75.1484 -4.4100 752.134 894.354 13107.4818 -2649.1681 5489885.5524 118547.2522 512448.1494 -30427424.7689 131589.3205 509726.7662 24937549.3012 -66.1865 -62.2120 9.3388 103.0191 -543.8170 -29.5150 0.0500 -1 172445
|
||||||
|
18.02 6.397 31.316 33.5 5.5207 0.1180 0.5170 24.9067 0.5085 0.5085 0.118 24.907 5.521 1.303e-05 3122.2 685.856 909.476 2669.6917 -3689.3708 5520553.1758 118405.9487 511511.8116 -30427422.4115 121016.7595 507757.0034 24906877.7828 -67.6101 -61.8752 8.9905 -0.0000 -0.0000 -0.0000 0.1326 -0.9343 752.676 876.902 14217.5336 -1656.6951 5520477.4224 118390.0980 511520.4480 -30427422.5231 132544.6528 509805.3472 24906953.1898 -68.1833 -63.6510 8.4028 42.0440 -94.9883 -26.4721 0.5099 -1.1189 765.039 893.544 16275.7110 -2710.7095 5520530.9072 118380.4852 511536.8818 -30427422.7152 134588.8683 508762.2843 24906901.1448 -66.2438 -62.3131 8.7824 -62.3948 -199.4271 77.9666 -4.3390 752.216 894.395 14115.7803 -2784.2583 5520532.0102 118360.4618 511557.8062 -30427422.3780 132413.3760 508710.4992 24906898.9926 -67.5459 -63.8390 8.9128 90.8270 -545.5948 -18.5063 0.0250 15 172719
|
||||||
|
19.04 6.066 29.758 33.3 5.5537 0.1180 0.5170 24.8737 0.5074 0.5075 0.118 24.874 5.554 1.320e-05 3188.0 675.083 916.581 2139.9032 -4222.2674 5553292.6038 118356.9332 510621.2267 -30427418.2201 120421.6405 506332.6670 24874134.3053 -70.0988 -65.5562 8.6829 -0.0000 -0.0000 -0.0000 0.1328 -0.6779 752.793 883.153 14787.9314 -2106.8303 5553233.9685 118386.4586 510597.5147 -30427420.4625 133092.0619 508436.1824 24874194.9789 -73.2521 -64.3678 8.7921 30.5088 -68.9274 -19.2093 0.5094 -0.8231 768.124 893.376 17299.2297 -2798.1393 5553320.9449 118329.4346 510643.6800 -30427419.6266 135561.2373 507787.8423 24874107.6164 -71.2252 -62.4499 8.6950 -46.3131 -145.7494 57.6127 -4.6922 752.109 894.469 14718.9556 -2858.2384 5553321.5937 118341.2660 510650.6062 -30427420.7145 132979.3323 507734.6034 24874107.5773 -73.0835 -61.6967 8.6868 134.3375 -553.8859 -56.1303 0.0250 29 173008
|
||||||
|
20.05 5.770 28.494 33.1 5.5888 0.1180 0.5170 24.8386 0.5072 0.5072 0.118 24.839 5.589 1.287e-05 3257.8 667.941 906.061 2379.4074 -3652.2583 5588404.4306 118237.8676 509713.6462 -30427415.5094 120549.1371 505997.9397 24839018.5725 -71.6710 -60.1910 8.0257 -0.0000 -0.0000 -0.0000 0.1334 -0.7521 752.600 870.783 15565.9864 -1389.3999 5588356.2781 118298.7743 509667.1289 -30427416.4969 133796.0832 508216.7045 24839068.5560 -71.5565 -62.7106 8.6389 33.8477 -76.4708 -21.3115 0.5081 -0.6454 767.847 893.421 17924.1889 -2861.8894 5588437.8065 118258.0319 509715.8934 -30427416.7346 136096.7467 506799.4062 24838987.0211 -70.7544 -62.1622 8.1580 -26.3900 -136.7085 38.9262 -4.5147 751.961 894.291 15536.0852 -2927.5485 5588437.9351 118236.7028 509737.7707 -30427416.9389 133696.9984 506743.2288 24838987.0960 -72.5373 -60.9475 8.2416 142.9329 -519.2528 -67.6845 0.0250 43 173242
|
||||||
|
21.07 5.503 27.477 33.0 5.6262 0.1180 0.5170 24.8012 0.5079 0.5079 0.118 24.801 5.626 1.109e-05 3204.6 653.788 901.918 1630.0857 -3391.2413 5625400.9308 118171.4826 508778.6987 -30427413.0208 119726.2507 505334.5413 24802020.2237 -76.7317 -55.5379 8.1954 -0.0000 -0.0000 -0.0000 0.1353 -0.7708 752.821 866.417 16351.7091 -1200.3811 5625345.5067 118113.2127 508809.1022 -30427411.7785 134394.5728 507546.6080 24802074.6766 -75.7298 -59.6244 8.2067 34.6861 -78.3648 -21.8394 0.5086 -0.6341 768.403 893.501 18605.6815 -2900.6683 5625392.0568 118132.3103 508822.3467 -30427413.0050 136655.0997 505868.3342 24802027.7594 -75.0672 -62.9989 7.8065 -24.5033 -137.5542 37.3500 -4.5196 752.075 894.294 16212.3318 -2954.3124 5625392.7593 118128.9652 508827.1751 -30427412.9061 134268.5952 505819.5625 24802027.7912 -73.1829 -57.1331 8.0850 144.2045 -518.7088 -68.8734 0.0250 57 173509
|
||||||
|
22.09 5.262 26.581 32.9 5.6658 0.1180 0.5170 24.7616 0.5064 0.5064 0.118 24.762 5.666 1.002e-05 3146.0 634.008 924.726 78.0122 -4996.8948 5664672.4363 118155.5807 507932.8391 -30427407.0523 118156.0363 502887.4793 24762741.9683 -81.5736 -52.4288 7.6538 -0.0000 -0.0000 -0.0000 0.1373 -1.0405 752.753 886.666 16911.1568 -2637.9321 5664643.7807 118146.8810 507952.3129 -30427407.1380 134975.3429 505252.2098 24762771.0784 -82.4641 -56.6925 7.9788 46.8261 -105.7922 -29.4831 0.5085 -0.6647 769.601 893.515 19156.4765 -3050.9355 5664664.5813 118153.7674 507952.4800 -30427406.8217 137222.0928 504836.8955 24762750.1935 -82.7944 -55.2637 7.7280 -15.2201 -167.8385 32.5631 -4.7569 751.880 894.269 16767.1766 -3105.9065 5664663.8473 118149.3770 507967.1574 -30427407.2409 134835.8059 504804.0379 24762751.3478 -81.2584 -58.1363 7.6463 152.0228 -545.6836 -72.7380 0.0250 71 173723
|
||||||
|
23.11 5.042 25.795 32.7 5.7079 0.1180 0.5170 24.7195 0.5077 0.5077 0.118 24.720 5.708 9.949e-06 3253.4 621.059 896.775 -625.4550 -3202.6527 5706445.1121 118065.6778 507041.1982 -30427400.4154 117359.2448 503789.1771 24720962.6042 -82.9159 -49.2416 7.7493 -0.0000 -0.0000 -0.0000 0.1388 -0.2214 752.438 868.974 17197.1152 -1462.5567 5706465.5033 118068.3103 507030.4605 -30427401.0498 135173.1541 505529.2585 24720943.2060 -83.7873 -50.6988 7.2541 9.9643 -22.5120 -6.2738 0.5088 -0.5405 769.998 893.508 19458.0261 -3011.2531 5706484.0165 118072.3210 507036.1849 -30427401.0503 137457.2501 503974.1353 24720923.9633 -81.4873 -48.2668 7.4959 -40.4876 -72.9639 44.1781 -3.9573 752.016 894.201 17098.7167 -3050.8740 5706483.9282 118070.5930 507044.1529 -30427401.7158 135082.1419 503955.6485 24720924.4314 -83.1779 -51.1023 7.5180 127.6367 -452.8002 -61.6779 0.0250 85 173937
|
||||||
|
24.12 4.841 25.074 32.6 5.7523 0.1180 0.5170 24.6751 0.5053 0.5052 0.118 24.675 5.752 1.067e-05 3324.4 599.650 916.229 -2335.6064 -4514.9092 5750785.6076 118055.5274 506218.0694 -30427394.7408 115631.4283 501657.0135 24676615.6854 -88.8641 -51.3186 6.9901 -0.0000 -0.0000 -0.0000 0.1405 -0.3564 752.572 883.613 17517.0098 -2480.2754 5750789.3935 118071.5146 506214.1156 -30427394.0206 135492.9408 503672.5710 24676611.6067 -90.8619 -52.0502 6.9338 16.0386 -36.2354 -10.0984 0.5073 -0.7682 771.543 893.400 19904.0413 -3104.2433 5750840.9868 118067.5892 506218.2791 -30427394.5853 137887.0272 503071.9072 24676560.2124 -90.5798 -50.5708 6.9553 -55.6625 -107.9366 61.6028 -4.2495 752.016 894.305 17438.4116 -3161.4805 5750841.4233 118058.3690 506229.8774 -30427394.6922 135402.9696 503014.3931 24676560.4426 -88.0309 -48.8448 6.8737 119.5368 -503.7574 -48.7079 0.0250 99 174147
|
||||||
|
25.14 4.657 24.455 32.4 5.7994 0.1180 0.5170 24.6280 0.5037 0.5037 0.118 24.628 5.799 1.065e-05 3381.6 589.032 913.990 -2645.5591 -4552.0297 5798125.8882 118060.8394 505406.0160 -30427386.6368 115328.5248 500809.1909 24629267.4447 -88.9284 -43.1832 6.4352 -0.0000 -0.0000 -0.0000 0.1408 -0.8274 752.913 874.553 17801.6150 -2085.6549 5798094.3385 118075.8452 505404.1138 -30427387.4115 135785.5531 503271.1429 24629299.5772 -88.2989 -43.4681 6.4398 37.2359 -84.1255 -23.4448 0.5052 -1.0359 768.632 893.534 19739.3494 -3268.7664 5798075.9789 118072.6196 505409.0631 -30427387.9074 137715.8656 502097.1323 24629318.4110 -91.0226 -50.5317 6.6447 -59.4522 -180.8136 73.2433 -4.0871 752.148 894.393 17671.5871 -3324.6716 5798077.1011 118065.1060 505420.9742 -30427387.4743 135644.1259 502043.3833 24629317.9199 -93.6619 -47.6369 6.8798 87.2427 -512.2355 -19.1202 0.0250 113 174402
|
||||||
|
26.16 4.488 23.894 32.3 5.8490 0.1180 0.5170 24.5784 0.5033 0.5033 0.118 24.578 5.849 1.039e-05 3394.2 580.010 902.183 -2751.9799 -3902.0826 5847821.5978 118058.5439 504580.4622 -30427379.0441 115216.4352 500634.5422 24579564.1114 -96.0512 -48.4352 6.4002 -0.0000 -0.0000 -0.0000 0.1416 -1.1389 752.395 867.055 17972.5740 -1738.3650 5847791.9159 118077.5007 504619.1360 -30427381.7210 135957.1968 502841.7394 24579596.2652 -97.5792 -46.7833 6.4277 51.2549 -115.7981 -32.2716 0.5041 -0.6342 766.331 893.543 19545.2391 -3383.1777 5847769.5245 118088.1076 504630.6702 -30427382.7559 137541.6149 501195.6814 24579619.7240 -98.1956 -48.1192 6.3306 -7.9369 -174.9899 26.9202 -3.7974 752.276 894.053 17847.6284 -3421.6718 5847769.4298 118089.8143 504637.7742 -30427383.1308 135837.4485 501164.7694 24579620.4426 -98.3391 -49.8250 6.1860 111.7011 -445.2831 -48.4074 0.0250 127 174616
|
||||||
|
27.18 4.332 23.383 32.0 5.9014 0.1180 0.5170 24.5260 0.5030 0.5030 0.118 24.526 5.901 9.868e-06 3380.8 571.008 908.886 -2873.5860 -4379.0859 5899846.9366 118030.6186 503774.7342 -30427372.8009 115049.2501 499346.4635 24527532.4004 -104.0133 -44.1465 5.6586 -0.0000 -0.0000 -0.0000 0.1423 -0.4087 752.850 871.000 18246.8192 -2038.1416 5899918.4161 118053.0058 503776.8818 -30427373.4585 136184.7851 501690.6647 24527461.2154 -101.7956 -43.5820 5.9746 18.3917 -41.5517 -11.5800 0.5046 -0.9169 771.599 893.584 20365.5352 -3440.7108 5899896.4277 118048.0948 503781.2800 -30427373.1490 138308.3221 500298.3520 24527483.3494 -103.0807 -41.8957 6.3751 -67.1903 -127.1337 74.0020 -3.8993 752.083 894.337 18166.2646 -3492.0606 5899896.6362 118033.2895 503788.1494 -30427373.8321 136097.8560 500258.0430 24527482.8379 -101.8338 -44.3217 5.7882 89.8961 -482.0326 -24.9042 0.0250 141 175037
|
||||||
|
28.19 4.188 22.891 31.9 5.9567 0.1180 0.5170 24.4707 0.5036 0.5036 0.118 24.471 5.957 9.529e-06 3340.6 559.727 885.230 -3147.1016 -2981.5868 5955157.2776 117992.8116 502941.7316 -30427364.4440 114732.5312 499922.3739 24472212.2171 -107.6656 -39.1181 5.5901 -0.0000 -0.0000 -0.0000 0.1423 -0.4004 752.467 854.808 18541.1045 -1136.9244 5955194.9417 117987.0858 502982.9547 -30427365.2865 136415.4752 501803.9136 24472176.3263 -105.4981 -36.9779 5.7055 18.0207 -40.7135 -11.3464 0.5041 -0.8980 773.303 893.525 20732.0517 -3555.3691 5955208.8059 117999.4506 502983.9254 -30427365.2435 138611.4987 499395.7362 24472161.6288 -108.1294 -38.3252 5.5023 -65.7992 -124.5335 72.4736 -4.1329 752.180 894.508 18364.8910 -3613.1788 5955209.9946 117982.7039 502994.6169 -30427365.0270 136247.4240 499346.8037 24472161.7151 -109.1433 -35.7841 5.6446 102.1702 -504.0199 -33.2849 0.0250 155 175314
|
||||||
|
29.21 4.054 22.449 31.6 6.0149 0.1180 0.5170 24.4125 0.5009 0.5009 0.118 24.413 6.015 9.010e-06 3385.0 550.076 920.837 -3443.4534 -5289.2333 6013388.8185 117990.5802 502133.3760 -30427354.1865 114433.3355 496807.7554 24413971.1428 -116.6938 -35.2074 5.5156 -0.0000 -0.0000 -0.0000 0.1422 -0.7777 752.792 875.435 18604.7431 -2490.7317 6013410.9097 117997.5775 502136.1209 -30427353.9446 136480.3328 499607.0441 24413947.8778 -115.4219 -36.2146 5.0094 34.9990 -79.0718 -22.0364 0.5031 -0.9432 771.906 893.602 20626.6851 -3628.7473 6013337.0056 117995.5252 502152.5120 -30427353.2871 138509.4571 498499.7143 24414021.8758 -116.6105 -35.3799 5.4348 -53.0334 -167.1041 65.9959 -4.0736 752.055 894.342 18530.7768 -3676.0442 6013338.2308 118000.4319 502162.3502 -30427354.1470 136402.1163 498448.8800 24414021.2817 -116.4248 -36.5218 5.2948 95.2886 -502.2019 -27.3920 0.0250 169 175820
|
||||||
|
30.23 3.930 22.051 35.1 6.0762 0.1180 0.5170 24.3512 0.5000 0.5000 0.118 24.351 6.076 9.205e-06 3454.0 550.366 916.224 -2576.2885 -5093.8805 6074647.7772 118027.4058 501363.2391 -30427343.6340 115345.3056 496240.2382 24352700.6323 -117.9678 -30.7200 4.8481 -0.0000 -0.0000 -0.0000 0.1413 -0.0862 752.818 877.867 18781.0738 -2739.3656 6074707.7035 118054.9642 501360.4409 -30427343.8110 136718.4939 498583.3111 24352640.7073 -117.6014 -30.3912 4.8814 3.8796 -8.7650 -2.4427 0.5020 -0.8030 774.890 893.481 21048.0813 -3717.3174 6074690.1458 118038.4223 501363.4027 -30427342.3899 138958.9803 497632.4741 24352657.4508 -116.4308 -30.5994 4.8023 -71.0702 -83.7149 72.5071 -3.8543 751.934 894.409 18669.2332 -3765.1409 6074691.6060 118040.9311 501373.2729 -30427343.1798 136586.7733 497578.9152 24352656.8339 -118.3754 -30.1265 5.0487 98.5002 -466.8185 -34.2595 0.0250 183 180055
|
||||||
|
31.25 3.814 21.677 34.9 6.1407 0.1180 0.5170 24.2867 0.4991 0.4991 0.118 24.287 6.141 8.510e-06 3444.8 557.962 898.489 -1025.3505 -4100.4621 6139388.2699 118038.7210 500534.1974 -30427328.2574 116887.2448 496409.3463 24287943.6563 -123.0477 -25.9739 4.0515 -0.0000 -0.0000 -0.0000 0.1419 -0.1522 752.988 864.246 18932.0079 -2015.0699 6139420.2422 118017.4602 500556.3022 -30427326.7232 136826.1973 498512.5710 24287910.8513 -123.8930 -25.8931 4.1986 6.8509 -15.4779 -4.3135 0.5003 -0.8208 777.305 893.569 21310.0226 -3844.7897 6139426.8418 118037.7567 500562.9476 -30427327.1471 139213.4784 496701.1003 24287904.3791 -123.0216 -23.9077 4.2772 -69.7629 -92.0917 72.3003 -4.1728 751.708 894.572 18760.6711 -3889.1056 6139427.5519 118042.0703 500562.8374 -30427327.8598 136685.1712 496648.3515 24287903.8148 -119.4757 -28.1459 3.8870 111.1712 -500.8688 -41.6212 0.0250 197 180341
|
||||||
|
32.26 3.706 21.324 34.8 6.2086 0.1180 0.5170 24.2188 0.4982 0.4982 0.118 24.219 6.209 7.896e-06 3396.2 575.214 907.337 1233.3660 -4805.5482 6207543.8040 118157.6372 499786.1725 -30427314.3083 119263.3941 494966.3035 24219772.5219 -124.2664 -21.9190 3.1231 -0.0000 -0.0000 -0.0000 0.1387 -0.9383 752.462 867.639 18918.2896 -2389.8553 6207511.4786 118143.6170 499810.7236 -30427313.7662 136928.6315 497396.1623 24219805.5645 -123.9100 -17.6977 3.1087 42.2236 -95.3940 -26.5852 0.4994 -0.7837 770.922 893.594 20683.0993 -4002.0218 6207473.3536 118134.2303 499821.6107 -30427313.0786 138697.3056 495804.5207 24219842.7575 -124.3226 -17.4019 2.8762 -30.9227 -168.5403 46.5611 -3.8254 752.178 894.298 18848.7689 -4041.4946 6207473.8111 118133.3471 499828.2560 -30427313.9957 136867.1872 495772.0946 24219844.6698 -122.7696 -16.9021 2.9443 99.0039 -462.0783 -35.2446 0.0250 211 180605
|
||||||
|
33.28 3.606 20.997 34.6 6.2800 0.1180 0.5170 24.1474 0.4982 0.4982 0.118 24.147 6.280 7.373e-06 3383.2 587.087 905.325 2976.2514 -4793.3039 6278992.5016 118200.2356 498985.3831 -30427296.5052 121055.2917 494172.5847 24148307.2452 -128.6907 -10.6099 2.6679 -0.0000 -0.0000 -0.0000 0.1373 -0.3000 752.538 866.902 19008.8359 -2382.8106 6279003.5306 118205.9828 498955.0862 -30427296.7600 137082.9099 496556.5664 24148295.7617 -128.8835 -13.4609 2.3573 13.5017 -30.5039 -8.5011 0.4995 -0.8022 775.298 893.496 21133.9239 -4056.2741 6278972.2880 118215.5999 498971.1502 -30427296.4907 139225.1264 494899.0926 24148326.8729 -129.2931 -13.1921 2.3927 -61.3783 -105.3839 66.3789 -3.8659 751.926 894.360 18896.9033 -4111.1915 6278974.0544 118211.1498 498985.4578 -30427297.4099 136980.3605 494867.3358 24148325.3569 -129.4205 -13.3073 2.6317 99.0947 -467.9340 -34.6596 0.0250 225 180821
|
||||||
|
34.30 3.511 20.668 34.4 6.3550 0.1180 0.5170 24.0724 0.4982 0.4982 0.118 24.072 6.355 7.202e-06 3373.4 594.201 909.482 4189.8169 -5054.7400 6354058.3154 118104.1972 498064.2667 -30427277.0820 122169.5573 493003.3943 24073219.8815 -128.2199 -7.8410 1.3953 -0.0000 -0.0000 -0.0000 0.1356 -0.9049 752.967 869.223 19165.0592 -2557.9789 6354022.8272 118106.6079 498061.4685 -30427277.1074 137131.0891 495492.2281 24073256.3916 -129.5089 -5.5451 1.5607 40.7217 -92.0010 -25.6396 0.4994 -0.8004 777.762 893.558 21414.7930 -4090.3646 6354052.8031 118104.6794 498093.8276 -30427278.8370 139388.3093 493991.5451 24073227.2766 -131.6543 -12.6612 1.3912 -33.9857 -166.7084 49.0678 -4.6334 751.558 894.534 19035.6204 -4161.5825 6354053.7776 118112.5002 498108.5298 -30427279.4528 137015.9957 493942.7552 24073226.8343 -132.2064 -6.9753 1.5545 133.8063 -545.7938 -56.5790 0.0250 239 181040
|
||||||
|
35.32 3.423 20.363 34.3 6.4340 0.1180 0.5170 23.9934 0.4998 0.4998 0.118 23.993 6.434 6.826e-06 3307.8 583.338 920.837 3633.8047 -5822.4863 6432668.2712 118102.1364 497287.2178 -30427264.5477 121601.6171 491460.3451 23994597.0467 -136.3576 -6.5731 0.5197 -0.0000 -0.0000 -0.0000 0.1356 -1.0428 752.612 875.540 19211.5812 -2976.0245 6432604.9399 118076.8522 497261.4969 -30427265.7926 137148.4544 494271.6750 23994661.1439 -137.1307 -7.6935 0.7988 46.9300 -106.0271 -29.5485 0.5014 -0.7457 780.020 893.581 21679.8016 -4121.0391 6432671.9518 118076.2250 497291.6694 -30427267.7361 139624.3200 493174.7662 23994596.3565 -134.3398 0.3591 0.9223 -22.6681 -175.6252 40.0496 -5.0055 752.080 894.540 19130.5824 -4188.4982 6432672.2934 118083.1924 497304.8818 -30427268.1890 137080.2944 493123.3266 23994596.7930 -133.4884 0.7303 0.9911 155.6588 -578.5117 -72.2303 0.0250 253 181253
|
||||||
|
36.33 3.339 20.085 34.1 6.5170 0.1180 0.5170 23.9104 0.4985 0.4985 0.118 23.910 6.517 6.293e-06 3262.0 573.456 922.753 3175.9608 -5992.3434 6515605.5155 118079.4079 496493.7956 -30427253.9292 121109.7131 490512.2565 23911649.2941 -136.0294 2.6483 0.2517 -0.0000 -0.0000 -0.0000 0.1368 -0.1689 752.479 888.494 19293.4958 -3889.7453 6515607.0958 118056.9524 496514.8551 -30427254.7084 137214.5835 492631.7481 23911647.6013 -137.3315 3.3947 -0.3087 7.6018 -17.1744 -4.7863 0.5011 -0.8405 780.509 893.591 21703.6734 -4212.2668 6515667.3984 118074.6335 496528.6294 -30427255.1658 139635.9680 492318.8265 23911587.9808 -139.6254 8.1981 0.3663 -70.8481 -95.6242 73.6636 -4.1200 751.978 894.518 19209.5937 -4269.5980 6515668.3216 118070.7892 496536.9387 -30427256.0294 137147.1701 492276.8407 23911588.1885 -136.8696 8.2095 0.4375 106.9610 -497.3412 -38.2903 0.0250 267 181559
|
||||||
|
37.35 3.261 19.821 33.9 6.6043 0.1180 0.5170 23.8231 0.4997 0.4998 0.118 23.823 6.604 5.769e-06 3245.0 577.881 914.940 3982.6896 -5551.4138 6602691.7764 118095.3482 495728.0462 -30427241.1298 121935.8464 490189.4295 23824547.9697 -136.2091 10.1356 -0.8454 -0.0000 -0.0000 -0.0000 0.1359 -1.0736 752.413 872.495 19282.2508 -2931.4094 6602626.8780 118088.9482 495732.7147 -30427240.6820 137233.8048 492822.4389 23824613.0018 -140.7588 14.7503 -0.6451 48.3158 -109.1578 -30.4210 0.5015 -0.9555 781.610 893.520 21709.0230 -4247.0225 6602673.6822 118095.5103 495768.0178 -30427240.7936 139670.8864 491528.2638 23824565.5347 -138.5010 10.2690 -1.0594 -40.8732 -198.3468 58.7679 -5.0747 751.808 894.679 19135.8141 -4321.7113 6602674.3335 118098.6420 495782.0765 -30427241.4831 137105.0539 491450.0466 23824566.4117 -140.7137 12.4995 -0.8294 139.1856 -605.1462 -54.6024 0.0250 281 181812
|
||||||
|
75.00 2.048 15.249 33.1 20.2844 0.1180 0.5170 10.1430 0.5126 0.5126 0.118 10.143 20.284 6.936e-07 1844.4 804.410 995.811 11163.6757 -10888.2525 20282729.3957 120871.6767 468521.8134 -30426200.7271 131797.7771 457954.6647 10143433.8689 -241.8959 311.5661 -37.2931 4.5533 -10.2871 -2.8669 0.1180 -0.2751 752.592 944.159 8443.9976 -7683.3309 20282778.4251 120907.8239 468567.2960 -30426196.3052 129109.2224 461191.9328 10143380.4918 -238.2446 310.6479 -38.3519 12.3801 -27.9699 -7.7949 0.5190 -0.7033 801.621 893.807 11121.4758 -4544.8770 20282713.1895 120883.5380 468683.5129 -30426197.9373 131761.4293 464461.8025 10143445.7847 -243.1669 315.6655 -38.4552 -53.2628 -93.6129 57.8480 -4.5269 750.874 894.813 8400.9527 -4603.3988 20282709.4516 120892.1780 468714.8871 -30426197.9216 129048.8448 464435.0871 10143450.0141 -242.3085 319.9697 -38.4594 138.0786 -525.9028 -62.6262 0.0500 5 182842
|
||||||
|
74.00 2.058 15.289 33.0 19.0468 0.1180 0.5170 11.3806 0.5180 0.5179 0.118 11.381 19.047 8.204e-07 1994.8 690.479 980.999 5588.3800 -10141.6925 19043169.3463 120902.9642 469725.7565 -30426251.4711 126257.5061 459901.0711 11383044.0378 -236.1183 314.0015 -38.1212 -0.0000 -0.0000 -0.0000 0.1241 -0.1602 752.846 936.134 9057.3635 -7378.2221 19043210.3989 120984.6239 469739.6694 -30426249.6383 129811.6437 462681.7687 11383000.7683 -230.3950 317.7243 -38.9644 7.2095 -16.2881 -4.5393 0.5235 -0.4537 798.144 893.654 11538.1148 -4735.0246 19043159.0983 120992.8159 469810.3147 -30426250.7098 132310.2251 465399.1776 11383052.2723 -230.4422 324.3358 -39.1635 -35.1424 -58.6400 37.8126 -4.1465 751.681 894.267 8985.0721 -4779.4190 19043156.4053 121022.4522 469842.5778 -30426250.2647 129776.5461 465385.8985 11383055.3542 -228.7757 328.9910 -39.1322 144.2506 -463.9352 -75.1386 0.0500 15 183151
|
||||||
|
73.00 2.069 15.329 32.9 17.9566 0.1180 0.5170 12.4708 0.5136 0.5136 0.118 12.471 17.957 9.306e-07 2095.8 594.120 982.440 832.1492 -10432.4322 17952653.0805 121033.2127 470863.4880 -30426295.1660 121643.1616 460748.1202 12473603.7795 -220.7433 320.6050 -38.3773 -0.0000 -0.0000 -0.0000 0.1296 -0.2261 752.610 931.912 9671.5037 -7332.8347 17952749.2946 121106.8724 470835.5378 -30426293.3743 130572.6976 463822.3200 12473504.7293 -221.5474 321.0004 -39.2319 10.1732 -22.9840 -6.4054 0.5193 -0.6954 801.777 893.567 12337.8241 -4956.3600 17952645.5360 121145.2298 470898.8018 -30426293.2732 133258.8032 466272.3442 12473608.3590 -223.2752 332.3251 -39.4646 -54.7340 -87.8912 58.5019 -4.4743 750.977 894.418 9618.3493 -5000.3661 17952642.9947 121163.4228 470917.0027 -30426293.5664 130560.9728 466248.0279 12473610.5014 -225.1093 332.8606 -39.5880 136.4452 -519.8146 -61.8702 0.0500 29 183355
|
||||||
|
72.00 2.080 15.377 32.8 16.9894 0.1180 0.5170 13.4380 0.5126 0.5126 0.118 13.438 16.989 1.012e-06 2216.6 530.022 979.593 -2167.5599 -10457.0719 16985577.5649 121054.9215 471969.2694 -30426347.6943 118682.8843 461828.4146 13440731.2813 -215.7939 328.8003 -38.9376 -0.0000 -0.0000 -0.0000 0.1331 -0.6890 752.472 926.980 10281.6838 -7243.2758 16985685.1105 121181.7396 471929.8631 -30426345.8921 131246.4085 465024.4978 13440620.6733 -213.0733 330.7857 -39.4441 31.0062 -70.0511 -19.5224 0.5183 -0.3765 787.826 893.511 12222.3666 -5162.8918 16985564.6420 121189.7268 471994.3360 -30426346.4135 133201.1989 467167.6183 13440742.0619 -210.6137 334.3987 -39.8333 -4.1318 -105.1892 15.6156 -3.8067 751.734 893.919 10226.9535 -5191.2140 16985562.9177 121213.3983 472012.9351 -30426346.0321 131234.6325 467143.1465 13440744.0313 -208.3177 334.2154 -39.7937 136.1722 -422.1724 -72.7240 0.0500 43 183559
|
||||||
|
71.00 2.093 15.425 32.6 16.1257 0.1180 0.5170 14.3017 0.5090 0.5090 0.118 14.302 16.126 1.126e-06 2264.2 593.857 983.397 1939.2411 -10838.6154 16122223.9181 121206.1108 472861.1698 -30426381.2483 122945.0581 462354.7671 14304117.6435 -203.6545 332.0906 -39.4225 -0.0000 -0.0000 -0.0000 0.1291 -0.8290 752.744 930.431 10904.9361 -7600.9824 16122280.8222 121284.0500 472883.9396 -30426382.7019 131984.8320 465610.4672 14304061.3491 -200.4631 333.1234 -39.9408 37.3083 -84.2892 -23.4904 0.5145 -0.6185 800.198 893.549 13527.5164 -5321.0667 16122212.0719 121296.7732 472926.7378 -30426382.1155 134625.8859 467942.4005 14304130.4284 -197.6621 339.7120 -40.0565 -20.4240 -142.0215 34.2419 -5.0444 750.967 894.579 10818.2835 -5382.6182 16122210.9450 121312.9354 472954.4356 -30426382.6440 131929.3995 467915.9209 14304131.2341 -200.1870 337.7866 -40.4516 169.2765 -570.6039 -85.1992 0.0500 57 183803
|
||||||
|
70.00 2.106 15.475 32.5 15.3500 0.1180 0.5170 15.0774 0.5057 0.5056 0.118 15.077 15.350 1.226e-06 2333.4 657.765 976.413 5934.5765 -10642.1352 15347447.3224 121398.9514 473776.5654 -30426410.8110 127135.1595 463474.4891 15078923.2822 -192.3313 333.9385 -39.7964 -0.0000 -0.0000 -0.0000 0.1261 -0.7827 752.948 925.895 11338.0407 -7524.7599 15347527.7915 121481.7204 473739.2249 -30426408.4265 132614.8907 466554.3557 15078840.5240 -192.4889 339.2984 -40.4921 35.2237 -79.5794 -22.1779 0.5111 -0.4524 796.386 893.564 13774.5290 -5505.8174 15347425.7960 121508.5748 473783.2142 -30426408.3751 135075.1573 468613.4734 15078941.7894 -192.9587 337.6862 -40.7833 -7.0042 -121.8072 20.0500 -4.6581 751.469 894.354 11294.2077 -5557.3872 15347423.7142 121500.2335 473799.6054 -30426409.1031 132602.0309 468588.0434 15078944.3741 -191.6366 345.7940 -40.8528 167.3957 -515.8219 -89.7574 0.0500 71 184023
|
||||||
|
69.00 2.119 15.533 32.3 14.6497 0.1180 0.5170 15.7777 0.5035 0.5035 0.118 15.778 14.650 1.278e-06 2357.6 631.768 962.870 4925.5428 -9866.5089 14646533.0153 121389.2020 474561.6534 -30426448.6213 126129.6384 465031.6805 15779875.5117 -187.9070 336.8232 -40.4957 -0.0000 -0.0000 -0.0000 0.1276 -0.7004 752.912 910.118 11838.3537 -6597.3252 14646653.8055 121438.2388 474540.8569 -30426447.3751 133078.5237 468285.3856 15779752.8303 -186.8730 341.4023 -40.9471 31.5215 -71.2152 -19.8469 0.5080 -0.4234 794.872 893.562 14216.1424 -5574.3348 14646528.6174 121454.9471 474571.8471 -30426446.5598 135480.1323 469341.7659 15779876.7908 -188.1419 343.6611 -41.1641 -8.0020 -110.7387 19.6766 -4.5117 751.210 894.281 11782.9646 -5622.5613 14646528.3727 121461.5092 474590.1405 -30426446.9772 133057.9029 469322.6793 15779877.6462 -185.2888 346.9959 -40.9905 163.5138 -498.2373 -88.3148 0.0500 85 184247
|
||||||
|
68.00 2.134 15.588 32.2 14.0147 0.1180 0.5170 16.4127 0.5047 0.5047 0.118 16.413 14.015 1.395e-06 2500.2 444.875 973.721 -5351.2299 -10601.0494 14010912.4668 121285.5562 475507.1538 -30426500.1639 115768.2432 465245.9525 16415547.6361 -173.6463 336.3624 -39.8877 -0.0000 -0.0000 -0.0000 0.1378 -0.5590 752.697 920.813 12279.2225 -7383.9575 14010973.0981 121356.8010 475471.8329 -30426500.0011 133485.1712 468450.5038 16415484.5645 -177.3839 340.9765 -40.6228 25.1556 -56.8330 -15.8387 0.5098 -0.5200 787.308 893.553 14235.1536 -5691.5954 14010911.3831 121384.3466 475503.1467 -30426499.8030 135449.3013 470151.1118 16415547.4305 -175.2456 343.6652 -41.3002 -23.3764 -105.3650 32.6933 -3.7331 751.213 894.092 12245.3179 -5720.9252 14010910.5993 121376.3039 475512.2169 -30426500.3792 133449.5317 470142.9435 16415547.6485 -174.6743 346.5627 -41.5664 119.4656 -428.0822 -57.2443 0.0500 99 184509
|
||||||
|
67.00 2.149 15.650 32.0 13.4363 0.1180 0.5170 16.9911 0.5015 0.5015 0.118 16.991 13.436 1.477e-06 2547.0 575.331 957.250 2482.1642 -9737.7827 13433456.3615 121368.8927 476277.1414 -30426524.9378 123688.7168 466867.7253 16993028.3228 -169.9720 335.3795 -40.6082 -0.0000 -0.0000 -0.0000 0.1315 -0.0615 752.552 914.805 12728.4292 -7136.8430 13433529.9480 121422.4436 476241.5929 -30426524.9923 133985.4037 469444.8736 16992953.6881 -173.9093 340.4362 -40.8457 2.7670 -6.2513 -1.7422 0.5060 -0.6034 794.849 893.521 15108.3462 -5828.4181 13433481.7600 121448.5386 476274.0658 -30426525.8801 136386.0480 470786.9536 16993002.7249 -174.8008 339.8676 -40.9692 -53.5531 -62.5714 54.5779 -3.9362 751.246 894.338 12680.5913 -5867.6678 13433480.9881 121442.2836 476288.4054 -30426525.7541 133958.0715 470757.0053 16993004.0533 -174.7868 339.0996 -40.9049 120.8159 -456.5161 -55.2100 0.0500 113 184719
|
||||||
|
66.00 2.166 15.715 31.9 12.9076 0.1180 0.5170 17.5198 0.5011 0.5011 0.118 17.520 12.908 1.520e-06 2587.4 451.314 962.141 -4416.7149 -10016.5439 12903907.0612 121333.5775 476897.7565 -30426559.2601 116748.7573 467214.5742 17522612.2926 -168.5574 339.3145 -40.2492 -0.0000 -0.0000 -0.0000 0.1384 -0.7607 752.489 918.874 13092.1834 -7377.6327 12903977.7533 121354.7274 476852.1636 -30426559.1831 134285.5125 469822.0567 17522540.3611 -164.4875 338.4488 -40.9222 34.2311 -77.3368 -21.5529 0.5058 -0.5144 786.656 893.536 15030.2346 -5812.2747 12903927.0629 121390.3242 476881.1769 -30426558.6697 136257.8987 471397.6325 17522590.3136 -164.8329 335.9414 -41.2985 -13.7792 -125.3470 26.4573 -3.9273 751.420 894.228 13035.8142 -5847.6652 12903927.2341 121386.9151 476893.8596 -30426558.4608 134264.4565 471377.1141 17522589.3651 -162.1614 339.4419 -41.6044 128.7280 -447.3076 -63.2694 0.0500 127 184922
|
||||||
|
65.00 2.183 15.786 31.8 12.4226 0.1180 0.5170 18.0048 0.4988 0.4988 0.118 18.005 12.423 1.557e-06 2607.4 552.984 963.765 1803.1859 -10140.7199 12419931.6134 121348.5535 477605.1449 -30426582.2020 122999.3600 467806.2341 18006610.1350 -157.8767 332.0084 -40.7148 -0.0000 -0.0000 -0.0000 0.1318 -0.6658 752.758 915.092 13562.7667 -7148.6613 12419976.4106 121361.4474 477582.6169 -30426582.0732 134771.1104 470771.8496 18006564.3556 -158.6427 333.1240 -41.1162 29.9628 -67.6936 -18.8654 0.5036 -0.9915 789.559 893.555 15660.0316 -5834.2253 12419957.8085 121373.6586 477626.9831 -30426582.9692 136882.2059 472122.7872 18006584.3420 -157.3045 331.5422 -41.2168 -62.5804 -160.2368 73.6777 -4.0999 751.594 894.485 13486.0304 -5881.6789 12419958.3518 121379.4954 477629.8560 -30426582.8267 134710.6560 472079.1465 18006583.5609 -158.5423 334.6715 -41.0613 91.9637 -509.3919 -23.6278 0.0500 141 185126
|
||||||
|
64.00 2.201 15.863 31.7 11.9762 0.1180 0.5170 18.4512 0.4983 0.4983 0.118 18.451 11.976 1.595e-06 2585.4 441.331 949.110 -4542.6027 -9258.6699 11972402.9688 121304.4746 478356.7609 -30426625.0367 116610.2059 469421.1662 18454182.1603 -154.9955 320.9411 -40.3331 -0.0000 -0.0000 -0.0000 0.1394 -0.5616 752.782 909.409 13874.0795 -6866.4162 11972477.6408 121329.9807 478336.8711 -30426625.5155 135053.9349 471801.0976 18454107.0911 -155.6641 329.6344 -40.4876 25.2737 -57.0998 -15.9130 0.5024 -0.7355 796.295 893.616 16402.6935 -5891.7961 11972417.5765 121321.2212 478352.4942 -30426624.6105 137577.9968 472792.5856 18454166.8365 -153.5107 331.8872 -40.7008 -43.3731 -125.7465 52.7337 -4.6601 751.240 894.658 13797.5368 -5944.1025 11972418.3180 121327.4420 478363.4347 -30426625.1553 134979.6736 472744.2711 18454166.3617 -151.4737 331.2296 -40.9304 141.0693 -542.4498 -63.3967 0.0500 155 185330
|
||||||
|
63.00 2.221 15.940 31.5 11.5641 0.1180 0.5170 18.8633 0.4946 0.4946 0.118 18.863 11.564 1.651e-06 2679.8 590.709 952.552 4619.9531 -9650.1904 11561515.7473 121233.1700 479000.2311 -30426649.3292 125689.1989 469676.3287 18865092.4671 -147.2452 323.0531 -40.4039 -0.0000 -0.0000 -0.0000 0.1305 -0.7056 752.709 908.784 14289.0108 -6965.7323 11561515.7817 121205.5519 478993.0098 -30426647.9563 135349.6576 472350.5303 18865091.8097 -146.7392 324.5736 -40.6527 31.7556 -71.7441 -19.9943 0.4986 -0.9828 798.887 893.577 16995.4721 -6024.0211 11561520.5935 121209.9210 479003.5378 -30426648.4330 138064.4437 473321.0299 18865086.1542 -146.5063 323.2593 -40.9133 -59.9804 -163.4800 71.7417 -5.0216 751.005 894.762 14238.6396 -6096.8903 11561521.3460 121212.2847 479012.5618 -30426648.3986 135298.1760 473242.7744 18865086.7517 -150.4979 328.8724 -40.6910 134.2474 -602.2908 -50.5498 0.0500 169 185535
|
||||||
|
62.00 2.241 16.025 31.4 11.1828 0.1180 0.5170 19.2446 0.4959 0.4959 0.118 19.245 11.183 1.667e-06 2737.4 442.949 958.926 -3975.4175 -9984.1939 11179947.2315 121085.1978 479885.2765 -30426693.5546 116975.0869 470214.3840 19246706.2555 -143.4574 318.3219 -40.2557 -0.0000 -0.0000 -0.0000 0.1386 -0.6079 752.686 904.565 14633.4911 -6674.8609 11180053.0483 121156.3018 479835.0222 -30426693.1285 135644.1941 473487.4080 19246600.0013 -145.6289 323.9229 -40.1114 27.3549 -61.8018 -17.2235 0.5003 -0.9941 788.136 893.564 16719.4800 -5997.4596 11180010.4546 121143.5018 479855.8898 -30426694.6105 137720.1493 474170.0466 19246643.3709 -144.8910 321.7031 -40.3436 -65.4347 -154.5914 75.5662 -3.9690 751.652 894.385 14579.2253 -6031.6808 11180010.6495 121145.0676 479863.5094 -30426694.6673 135579.5840 474147.8587 19246643.3516 -145.1831 318.6560 -40.7461 85.8245 -496.3252 -19.6711 0.0500 183 185740
|
||||||
|
61.00 2.262 16.113 31.3 10.8290 0.1180 0.5170 19.5984 0.4952 0.4952 0.118 19.598 10.829 1.810e-06 2959.8 423.361 944.147 -4988.8284 -9005.1971 10825810.3833 121012.4980 480515.6587 -30426728.8774 115876.3520 471825.8309 19600878.7712 -142.7044 314.0271 -39.6524 -0.0000 -0.0000 -0.0000 0.1413 -1.0351 752.368 899.287 14982.8912 -6266.9389 10825774.1814 121019.0900 480482.6062 -30426728.9620 135862.1013 474527.7573 19600914.7564 -141.8762 317.0055 -39.8508 46.5821 -105.2411 -29.3295 0.4985 -0.5304 785.692 893.577 16946.0207 -5926.2838 10825736.5535 121006.1919 480492.0569 -30426729.1828 137814.9461 474883.6576 19600952.0843 -139.0411 316.3493 -40.1818 -2.9270 -154.7502 20.1797 -4.2238 751.734 894.234 14925.8420 -5962.6583 10825736.2384 120993.2170 480500.7609 -30426729.1381 135787.6608 474854.2816 19600951.7009 -141.1172 317.5357 -40.8707 140.5701 -478.9474 -70.1704 0.0500 197 185944
|
||||||
|
60.00 2.285 16.206 35.2 10.5000 0.1180 0.5170 19.9274 0.4963 0.4963 0.118 19.927 10.500 1.980e-06 2997.6 495.643 928.794 -444.3959 -7996.8053 10497320.8550 120858.2836 481004.2276 -30426751.5162 120276.5483 473319.9675 19929391.4644 -135.8145 311.1181 -39.2527 -0.0000 -0.0000 -0.0000 0.1372 -0.6886 752.811 883.946 15369.2344 -5274.3965 10497353.5924 120811.7172 480998.3716 -30426751.2538 136050.8843 476050.9591 19929358.2685 -132.8509 310.0470 -39.4778 30.9895 -70.0134 -19.5119 0.4989 -0.6971 792.367 893.648 17738.2847 -5878.0261 10497287.4341 120813.7311 481004.0996 -30426750.3266 138414.4725 475438.4901 19929423.3400 -134.0326 307.5335 -39.7715 -34.0728 -135.0757 45.5504 -4.5579 751.752 894.571 15282.9966 -5934.3090 10497288.1118 120800.9012 481014.7805 -30426750.3729 135957.4784 475389.5703 19929423.1076 -133.2264 310.6486 -39.8056 140.0521 -528.4690 -64.0838 0.0500 211 190148
|
||||||
|
59.00 2.308 16.301 35.0 10.1934 0.1180 0.5170 20.2340 0.4951 0.4950 0.118 20.234 10.193 2.052e-06 3019.0 414.371 953.260 -5309.6331 -9465.8669 10190303.5790 120650.5738 481596.0462 -30426774.8576 115216.6997 472434.2825 20236431.8086 -130.9455 303.6261 -39.0229 -0.0000 -0.0000 -0.0000 0.1409 -0.9048 752.879 895.021 15703.4945 -5919.6906 10190330.5990 120653.0954 481573.3654 -30426773.1857 136218.6325 475941.1808 20236404.8553 -128.8182 305.9988 -39.2084 40.7163 -91.9886 -25.6362 0.4983 -0.7800 791.993 893.524 18064.9169 -5835.2993 10190320.6025 120643.0858 481578.0302 -30426773.9041 138580.4117 476043.4601 20236413.5743 -129.4808 298.9359 -39.6277 -32.0916 -164.7964 47.1717 -4.7504 751.899 894.523 15626.5265 -5900.0039 10190322.6718 120624.2356 481590.4676 -30426774.2810 136133.8923 475997.6745 20236412.3237 -127.5733 303.0157 -39.4893 140.9731 -555.7944 -61.7950 0.0500 225 190403
|
||||||
|
58.00 2.333 16.405 34.8 9.9072 0.1180 0.5170 20.5202 0.4952 0.4952 0.118 20.520 9.907 2.101e-06 3033.6 407.785 940.032 -5493.0021 -8576.2633 9903820.7138 120334.8063 482244.0889 -30426808.5310 114720.4779 473955.0926 20522948.8931 -123.6008 298.1208 -38.9092 -0.0000 -0.0000 -0.0000 0.1423 -0.6488 752.766 894.125 16019.9521 -5797.1191 9903858.3179 120403.5252 482198.6987 -30426809.4938 136303.4368 476715.1913 20522911.2895 -121.6813 298.3491 -38.6644 29.1988 -65.9676 -18.3844 0.4982 -0.5864 789.058 893.598 18262.3407 -5774.9267 9903838.0083 120408.3679 482209.8525 -30426808.0770 138534.8267 476733.5593 20522931.0138 -124.9039 298.7069 -39.2055 -25.5317 -120.6980 36.3460 -4.3241 751.151 894.413 15935.3508 -5814.9204 9903838.6817 120401.9722 482212.7076 -30426808.5740 136207.0016 476702.3566 20522930.2724 -125.0194 295.0885 -39.1692 139.8637 -494.3690 -67.7918 0.0500 239 190627
|
||||||
|
57.00 2.359 16.510 34.7 9.6394 0.1180 0.5170 20.7880 0.4965 0.4965 0.118 20.788 9.639 2.182e-06 3071.0 511.759 942.609 988.8197 -8784.5250 9636365.4261 120283.6916 482901.0916 -30426827.6341 121145.0880 474403.7490 20790423.8865 -121.6392 290.6489 -38.4523 -0.0000 -0.0000 -0.0000 0.1366 -0.4686 752.708 895.084 16281.9244 -5847.9408 9636381.9510 120320.8372 482831.2889 -30426826.8705 136482.5984 477276.8443 20790406.5832 -122.4242 294.5684 -38.5568 21.0877 -47.6425 -13.2774 0.4999 -0.8005 791.072 893.568 18637.2722 -5750.2886 9636315.4085 120316.9503 482828.9422 -30426827.5724 138823.9915 477377.5858 20790473.5103 -125.5675 291.8063 -38.6778 -53.6300 -122.3602 61.4403 -4.3436 751.866 894.554 16197.1177 -5809.2357 9636316.6408 120303.1818 482839.6089 -30426827.7698 136379.9125 477333.2375 20790473.0977 -120.3953 294.5590 -38.3206 120.7563 -516.3442 -48.3585 0.0500 253 190850
|
||||||
|
56.00 2.387 16.621 34.5 9.3885 0.1180 0.5170 21.0389 0.4929 0.4929 0.118 21.039 9.389 2.256e-06 3078.6 515.688 936.248 1307.8023 -8408.7598 9386421.1538 120260.9247 483531.9111 -30426849.6800 121454.8053 475414.1134 21040390.8249 -118.9878 288.0040 -37.6432 -0.0000 -0.0000 -0.0000 0.1364 -1.0671 752.421 891.139 16493.6948 -5651.9588 9386399.5501 120252.1055 483533.4436 -30426848.9663 136632.1963 478155.1767 21040411.8523 -116.3696 283.4715 -38.0874 48.0207 -108.4913 -30.2353 0.4956 -0.7316 787.998 893.546 18699.1246 -5809.7833 9386374.6732 120263.4207 483525.4578 -30426848.9362 138835.4304 478009.4286 21040435.8947 -118.6645 291.9963 -38.0873 -20.2629 -176.7749 38.0484 -4.6497 751.767 894.495 16432.2424 -5856.5692 9386374.7109 120243.0559 483525.4542 -30426849.1610 136557.0859 477958.9874 21040436.4120 -116.7541 284.0509 -38.0350 140.9638 -541.0279 -63.4647 0.0500 267 191112
|
||||||
|
55.00 2.415 16.736 34.4 9.1531 0.1180 0.5170 21.2743 0.4904 0.4904 0.118 21.274 9.153 2.290e-06 3113.6 422.695 968.904 -4642.8446 -10354.9033 9150404.7765 120050.3135 484263.2747 -30426885.5616 115295.0869 474185.5493 21276443.2804 -113.7503 273.6007 -37.4654 -0.0000 -0.0000 -0.0000 0.1414 -0.9515 752.642 907.708 16754.6898 -6610.6827 9150479.7739 120069.3727 484221.8454 -30426885.0707 136710.0800 477888.6258 21276367.8477 -112.2214 280.2600 -37.2044 42.8200 -96.7414 -26.9607 0.4946 -0.5120 784.156 893.506 18771.5982 -5721.5558 9150433.1455 120052.3914 484217.0311 -30426885.8426 138708.4971 478764.0379 21276415.4196 -116.4589 279.0104 -37.5597 -4.9736 -144.5350 20.8328 -4.2115 751.628 894.319 16695.0563 -5760.6169 9150433.8683 120073.0804 484216.6329 -30426886.3334 136645.6064 478735.8085 21276414.9258 -117.2159 280.3005 -37.6267 141.7345 -475.9866 -71.5390 0.0500 281 191320
|
||||||
|
54.00 2.446 16.852 34.2 8.9318 0.1180 0.5170 21.4956 0.4932 0.4932 0.118 21.496 8.932 2.462e-06 3157.8 405.110 937.257 -5758.6343 -8358.6360 8928697.5221 119870.9940 484975.8151 -30426918.6298 113988.6592 476890.9792 21498184.5607 -115.6809 270.8810 -37.0569 -0.0000 -0.0000 -0.0000 0.1432 -0.4836 752.684 892.572 17058.9488 -5621.4351 8928803.1981 119862.7978 484928.5440 -30426917.7639 136826.7392 479582.8375 21498077.7466 -114.8858 270.8217 -37.0639 21.7629 -49.1680 -13.7026 0.4961 -0.6026 788.142 893.564 19345.4996 -5680.6690 8928794.2002 119850.8682 484901.1200 -30426918.1002 139081.1861 479493.6434 21498086.4611 -118.3553 273.5104 -37.3351 -34.4808 -105.4118 42.5412 -4.1655 751.656 894.347 17056.4363 -5729.3370 8928794.7943 119817.6906 484919.7049 -30426918.2763 136756.4459 479457.0994 21498086.4632 -117.5160 269.6071 -37.5543 131.2135 -479.7582 -61.7849 0.0500 295 191524
|
||||||
|
53.00 2.477 16.977 34.1 8.7236 0.1180 0.5170 21.7038 0.4929 0.4929 0.118 21.704 8.724 2.532e-06 3170.6 465.953 942.480 -1765.2116 -8662.8901 8720553.9597 119757.5604 485658.4249 -30426943.7844 117873.5275 477257.9333 21706353.1587 -112.5205 265.7408 -36.5973 -0.0000 -0.0000 -0.0000 0.1396 -0.7327 752.808 894.632 17316.4513 -5712.9154 8720561.6684 119770.1172 485586.7520 -30426942.3603 136977.2459 480139.2352 21706344.0230 -112.5426 268.4268 -36.8387 32.9735 -74.4956 -20.7611 0.4960 -0.9800 788.243 893.515 19636.9338 -5637.4037 8720573.7335 119737.9252 485575.5342 -30426941.7365 139264.6315 480199.3074 21706331.8287 -105.9248 266.4845 -36.1312 -58.4990 -165.9681 70.7114 -4.4999 751.661 894.408 17230.8709 -5682.3246 8720574.1008 119744.1674 485575.0685 -30426940.7746 136865.2843 480162.6299 21706330.2659 -108.0149 263.4947 -36.6354 111.0310 -548.9804 -36.0297 0.0500 309 191731
|
||||||
|
52.00 2.511 17.106 33.9 8.5274 0.1180 0.5170 21.9000 0.4905 0.4906 0.118 21.900 8.527 2.668e-06 3193.0 552.487 933.802 3994.0338 -8113.1136 8525586.0216 119624.1759 486156.9671 -30426954.9906 123517.8496 478305.3938 21901334.2264 -105.3756 256.3005 -35.4243 -0.0000 -0.0000 -0.0000 0.1341 -0.9453 752.544 889.737 17478.8342 -5387.5620 8525550.3543 119657.3791 486126.5707 -30426955.2445 137026.0309 480998.6802 21901369.9712 -104.3255 259.1333 -35.2643 42.5428 -96.1152 -26.7862 0.4932 -0.7802 787.361 893.618 19767.4133 -5635.0557 8525577.2347 119644.1780 486128.1209 -30426955.5499 139293.9349 480749.1662 21901342.9642 -104.7381 257.6013 -35.4301 -30.2822 -168.9401 46.0387 -4.6812 751.364 894.530 17412.5505 -5683.0176 8525576.8918 119604.6303 486130.4107 -30426955.5762 136913.8901 480700.6341 21901343.2184 -105.3686 252.4443 -35.6860 137.8402 -548.7721 -59.8161 0.0500 323 191935
|
||||||
|
51.00 2.546 17.240 33.8 8.3423 0.1180 0.5170 22.0851 0.4925 0.4925 0.118 22.085 8.342 2.764e-06 3227.8 499.209 913.092 308.1301 -6783.4128 8340585.6407 119610.8084 486845.7636 -30426977.8208 119806.7115 480314.0192 22086357.2892 -106.1256 253.2460 -34.8365 -0.0000 -0.0000 -0.0000 0.1376 -0.9993 753.000 861.516 17671.8269 -3615.7463 8340643.0511 119610.5652 486807.6551 -30426976.9657 137178.1291 483451.4528 22086298.5497 -104.5333 254.3144 -35.0252 44.9704 -101.5999 -28.3147 0.4936 -0.6566 788.817 893.454 20047.8310 -5613.6838 8340649.3450 119585.1487 486815.6125 -30426977.8037 139530.9909 481452.0434 22086292.5916 -103.7794 252.2651 -35.5443 -16.3151 -162.8854 32.9708 -4.8952 751.654 894.497 17584.6249 -5674.1300 8340651.3141 119573.4282 486823.8791 -30426978.4184 137043.0165 481409.8565 22086291.4282 -104.5062 253.9062 -35.5511 159.0109 -558.9922 -77.4196 0.0500 337 192139
|
||||||
|
50.00 2.583 17.381 33.6 8.1676 0.1180 0.5170 22.2598 0.4940 0.4940 0.118 22.260 8.168 2.910e-06 3270.0 456.585 923.829 -2626.2352 -7356.0606 8165294.4727 119367.0452 487592.4587 -30427014.8941 116640.8576 480478.0823 22261685.5182 -100.8841 243.9485 -34.8707 -0.0000 -0.0000 -0.0000 0.1419 -0.7500 752.725 874.628 17901.4667 -4320.9838 8165347.5123 119404.3786 487530.8196 -30427013.7319 137199.8549 483451.3266 22261631.0212 -99.7687 242.5290 -34.7787 33.7539 -76.2588 -21.2525 0.4961 -0.5956 783.215 893.575 19963.9251 -5532.2781 8165291.9654 119391.2842 487546.5885 -30427013.6005 139239.8464 482264.1888 22261687.6175 -100.4925 248.8879 -34.5257 -21.8409 -131.8536 34.3423 -4.1075 751.988 894.240 17841.1824 -5574.4701 8165291.7665 119393.5199 487557.1129 -30427013.5173 137139.1061 482225.5840 22261687.1850 -99.4967 244.0913 -34.9254 129.2516 -473.2107 -60.7900 0.0500 351 192344
|
||||||
|
49.00 2.622 17.530 33.5 8.0023 0.1180 0.5170 22.4251 0.4953 0.4953 0.118 22.425 8.002 3.008e-06 3325.0 389.536 923.409 -7500.3872 -7227.7524 7999404.4202 119267.4996 488274.5031 -30427043.0506 111672.5888 481284.2245 22427604.4814 -98.8873 236.1203 -33.9763 -0.0000 -0.0000 -0.0000 0.1460 0.1950 752.459 877.952 18077.3019 -4485.6800 7999527.1705 119279.2415 488240.8960 -30427040.8297 137256.4779 483998.2176 22427479.9629 -98.3140 237.7553 -33.8784 -8.7745 19.8238 5.5247 0.4976 -0.7153 789.809 893.598 20612.8697 -5461.9937 7999513.9316 119271.8559 488242.3111 -30427039.9965 139778.4235 483012.3598 22427493.0351 -98.9525 236.9563 -33.6472 -75.5357 -46.9374 72.2859 -3.9732 751.607 894.374 18003.8294 -5499.2622 7999514.2310 119252.0671 488240.1814 -30427040.8650 137150.2720 482972.6725 22427492.8787 -99.4595 234.9925 -33.5386 112.0396 -470.7184 -45.8171 0.0500 365 192547
|
||||||
|
48.00 2.662 17.683 33.4 7.8460 0.1180 0.5170 22.5814 0.4937 0.4938 0.118 22.581 7.846 3.110e-06 3365.0 412.520 925.655 -6008.5320 -7311.3737 7843412.9215 119160.4618 488923.9965 -30427059.1348 113046.8352 481842.3099 22583613.3555 -96.1958 227.3785 -32.9355 -0.0000 -0.0000 -0.0000 0.1449 -0.7678 752.661 888.753 18323.7097 -5085.8131 7843443.1988 119141.2447 488897.9307 -30427058.2049 137373.8965 484038.4919 22583582.3469 -99.0830 225.1015 -33.1316 34.5546 -78.0679 -21.7566 0.4964 -0.9375 789.167 893.460 20861.7939 -5396.1863 7843450.6258 119143.1434 488896.9920 -30427058.5650 139904.8235 483731.2389 22583574.4321 -99.2738 231.6854 -33.3553 -52.9472 -165.5698 65.7452 -4.8992 751.710 894.593 18219.1751 -5449.4508 7843450.8812 119139.8794 488894.6134 -30427058.9475 137252.3221 483677.7934 22583574.7665 -100.0398 230.7496 -33.2534 132.9740 -585.6140 -51.3163 0.0500 379 192750
|
||||||
|
47.00 2.705 17.846 33.2 7.6980 0.1180 0.5170 22.7294 0.4948 0.4948 0.118 22.729 7.698 3.241e-06 3396.4 464.687 941.674 -2447.8205 -8309.7061 7695501.8019 119026.3690 489617.0774 -30427076.3038 116482.2741 481544.3771 22731541.7706 -95.6948 225.6808 -32.1381 -0.0000 -0.0000 -0.0000 0.1414 -0.8637 752.644 895.693 18434.4096 -5453.8860 7695474.6593 119078.4010 489547.7760 -30427074.8107 137412.6037 484315.5479 22731567.7223 -93.8978 222.7213 -32.7392 38.8691 -87.8153 -24.4731 0.4978 -0.8063 783.052 893.574 20600.7252 -5321.3209 7695492.7243 119041.8271 489531.2427 -30427074.0355 139553.6213 484426.8000 22731548.7766 -95.2802 220.8707 -32.3223 -36.3855 -163.0699 50.7815 -4.4147 751.823 894.471 18353.6975 -5387.5091 7695493.8841 119035.4356 489547.3422 -30427073.7075 137312.3669 484378.3611 22731547.7461 -94.0062 221.1092 -32.4225 123.4163 -524.1036 -49.8345 0.0500 393 192954
|
||||||
|
46.00 2.751 18.014 33.1 7.5577 0.1180 0.5170 22.8697 0.4947 0.4948 0.118 22.870 7.558 3.423e-06 3451.2 498.981 933.962 -159.6988 -7790.2428 7555532.0544 118902.9172 490291.9822 -30427093.7815 118652.7616 482714.7195 22871530.4436 -93.5645 213.2332 -31.3000 -0.0000 -0.0000 -0.0000 0.1390 -1.0548 752.881 884.614 18595.6418 -4730.4131 7555574.8164 118937.9338 490234.9440 -30427094.6351 137436.9195 485717.5429 22871488.1490 -94.1899 214.8696 -31.6116 47.4676 -107.2416 -29.8870 0.4973 -0.7786 780.211 893.552 20579.8557 -5299.9822 7555553.7650 118928.8116 490233.4187 -30427094.7653 139405.6320 485152.3570 22871509.4268 -95.2521 217.1412 -31.5160 -25.2097 -179.9188 42.7903 -4.2922 751.913 894.308 18524.9347 -5341.8078 7555555.0291 118930.7700 490235.3280 -30427095.2698 137359.5435 485109.4789 22871508.3805 -94.0544 211.9929 -31.6772 120.4823 -509.0747 -48.9417 0.0500 407 193158
|
||||||
|
45.00 2.798 18.188 33.0 7.4246 0.1180 0.5170 23.0028 0.4956 0.4956 0.118 23.003 7.425 3.544e-06 3441.4 527.673 916.798 1825.7241 -6656.7106 7422681.9432 118900.9076 490963.6587 -30427109.6718 120635.2341 484516.8187 23004397.2451 -93.5565 204.8579 -30.4732 -0.0000 -0.0000 -0.0000 0.1380 -0.8634 752.694 869.712 18753.4327 -3737.1852 7422693.4414 118908.4980 490909.0525 -30427109.3322 137578.9483 487373.1753 23004385.3864 -93.2593 202.4536 -30.4590 38.8554 -87.7844 -24.4645 0.4975 -0.9060 790.203 893.514 21471.7160 -5233.6197 7422683.8810 118896.1802 490910.7271 -30427109.3507 140269.3760 485874.8110 23004395.5988 -93.8205 199.7312 -30.3591 -45.7069 -172.3466 60.0977 -5.2741 751.526 894.644 18643.1102 -5311.1876 7422683.3276 118884.1183 490926.4676 -30427110.2338 137431.6288 485814.2450 23004396.3071 -94.0183 200.5403 -30.4873 152.7854 -620.7921 -64.8789 0.0500 421 193402
|
||||||
|
44.00 2.848 18.374 32.8 7.2984 0.1180 0.5170 23.1290 0.4932 0.4932 0.118 23.129 7.298 3.724e-06 3055.0 502.555 936.142 -279.4546 -7751.1300 7296462.7800 118809.5370 491578.7911 -30427124.9937 118411.1787 484012.0087 23130633.6602 -93.5163 194.1713 -29.5036 -0.0000 -0.0000 -0.0000 0.1399 -0.8742 753.096 880.071 18909.4298 -4300.9807 7296501.9310 118796.9076 491535.4809 -30427124.2041 137634.9995 487434.9554 23130592.3805 -90.1451 194.8598 -29.4489 39.3409 -88.8814 -24.7702 0.4957 -0.6496 783.919 893.666 21197.5971 -5135.4014 7296432.3573 118795.0602 491525.8489 -30427125.0795 139902.0245 486590.9399 23130663.1134 -90.6511 194.6658 -29.4601 -21.2896 -149.5119 35.8603 -4.6817 751.545 894.513 18803.4675 -5198.1691 7296433.4272 118782.3754 491530.9227 -30427125.3897 137498.4021 486533.1387 23130662.0215 -91.2464 198.5886 -29.4740 150.0557 -536.6253 -72.0238 0.0250 435 193606
|
||||||
|
43.00 2.901 18.562 32.7 7.1785 0.1180 0.5170 23.2489 0.4938 0.4938 0.118 23.249 7.178 3.940e-06 3102.0 490.265 933.236 -1405.1614 -7496.6941 7176240.8736 118641.6223 492326.7485 -30427149.5817 117138.8757 485016.6112 23250879.6980 -88.0238 186.9352 -28.7102 -0.0000 -0.0000 -0.0000 0.1417 -0.8676 752.786 882.460 19041.6850 -4362.1418 7176227.6751 118646.7551 492275.6054 -30427148.4754 137595.5755 488102.4974 23250892.3926 -90.1060 183.6483 -28.8767 39.0443 -88.2111 -24.5834 0.4964 -0.8771 780.992 893.483 21147.9293 -5039.2166 7176195.3817 118639.6639 492267.9574 -30427149.0720 139693.3632 487401.2091 23250926.0371 -89.2486 181.8186 -28.5174 -42.8201 -170.0754 57.2809 -4.3325 751.968 894.325 18965.2344 -5098.2599 7176196.9647 118629.4666 492271.9787 -30427149.5881 137515.6181 487362.7122 23250924.2433 -91.4171 190.4775 -28.4663 113.1080 -522.3574 -40.8961 0.0250 449 193809
|
||||||
|
42.00 2.957 18.764 32.6 7.0646 0.1180 0.5170 23.3628 0.4950 0.4950 0.118 23.363 7.065 4.124e-06 3138.6 491.713 915.879 -1622.5692 -6314.3103 7062435.7132 118555.9348 493061.1236 -30427176.1991 116838.4043 486921.5346 23364715.3962 -98.6072 170.0810 -25.7743 -0.0000 -0.0000 -0.0000 0.1414 -0.9132 752.577 869.732 19144.0871 -3469.3287 7062419.9685 118552.0863 493019.5556 -30427176.6652 137601.1947 489718.5175 23364730.5583 -100.6441 168.1435 -26.5022 41.0978 -92.8505 -25.8764 0.4967 -0.8294 783.584 893.613 21542.5655 -4962.8439 7062417.0984 118533.3258 493013.2196 -30427176.0953 139973.6619 488224.6715 23364732.6567 -100.9533 167.0299 -26.0218 -36.3208 -170.2692 51.5422 -4.8208 751.684 894.560 19058.3959 -5030.5163 7062417.7043 118523.3674 493024.5085 -30427176.7672 137480.3499 488163.1675 23364732.8539 -104.6387 167.9724 -26.3661 139.5285 -567.5585 -59.1777 0.0250 463 194012
|
||||||
|
41.00 3.016 18.971 32.5 6.9563 0.1180 0.5170 23.4711 0.4966 0.4966 0.118 23.471 6.956 4.309e-06 3145.8 482.952 916.896 -2548.1398 -6233.2631 6953911.6501 118418.0916 493777.2942 -30427197.1936 115762.8245 487712.4411 23473259.5779 -100.0388 163.2613 -25.7400 -0.0000 -0.0000 -0.0000 0.1431 -0.4063 753.029 883.735 19311.7597 -4230.0378 6953979.1165 118397.2746 493746.1618 -30427196.7419 137602.8928 489680.1303 23473191.8637 -99.9775 162.2811 -25.5102 18.2835 -41.3072 -11.5118 0.4991 -0.8945 785.693 893.625 21896.4859 -4842.5640 6953987.0064 118385.8143 493741.5502 -30427197.7175 140178.6581 489058.6281 23473185.0545 -100.4373 162.2845 -25.5543 -65.2113 -124.8020 71.9830 -4.6397 751.695 894.600 19214.9769 -4901.7077 6953988.8735 118373.6756 493742.1902 -30427198.1772 137499.2725 489001.2000 23473183.3983 -98.6232 161.0045 -25.3765 125.3016 -555.2201 -47.9696 0.0250 477 194215
|
||||||
|
40.00 3.078 19.190 32.3 6.8534 0.1180 0.5170 23.5740 0.4974 0.4974 0.118 23.574 6.853 4.571e-06 3151.2 472.794 924.618 -3811.4973 -6725.6799 6850948.0317 118350.9599 494520.6365 -30427212.2430 114435.8187 487950.4169 23576239.2922 -99.0369 151.8174 -24.8265 -0.0000 -0.0000 -0.0000 0.1438 -0.7975 752.656 875.017 19336.0353 -3677.9989 6850951.9914 118345.3706 494486.6205 -30427212.8803 137593.9371 490960.1851 23576236.3473 -96.1576 152.2163 -24.8152 35.8909 -81.0868 -22.5980 0.4992 -0.6842 782.502 893.604 21683.0944 -4829.2061 6850981.7347 118353.1018 494473.8845 -30427212.1936 139934.5664 489798.2286 23576206.4536 -98.0701 151.7878 -24.2005 -27.9743 -144.9520 41.2672 -4.6893 751.483 894.464 19214.1873 -4881.4471 6850983.5591 118337.2810 494476.1565 -30427213.0163 137456.1195 489749.1625 23576205.6825 -97.0290 152.4022 -24.1452 147.1632 -540.6330 -69.0045 0.0250 491 194430
|
||||||
|
39.00 3.144 19.419 32.2 6.7555 0.1180 0.5170 23.6719 0.4998 0.4998 0.118 23.672 6.755 4.874e-06 3194.4 501.679 921.247 -1870.4132 -6447.7032 6753105.2382 118298.1428 495259.0542 -30427227.0851 116332.0917 488951.3403 23674098.9749 -98.4064 139.3873 -22.7929 -0.0000 -0.0000 -0.0000 0.1418 -0.6170 752.797 871.551 19342.9744 -3375.6911 6753133.2974 118292.8052 495222.6347 -30427227.1561 137538.5600 491980.8590 23674070.5388 -99.8892 138.8248 -22.6179 27.7662 -62.7310 -17.4824 0.5016 -0.7176 785.195 893.610 21988.1797 -4744.6866 6753127.0780 118288.5258 495207.3849 -30427226.6707 140185.3568 490601.3408 23674076.3119 -96.7138 138.9662 -22.5604 -39.2117 -129.7089 49.4955 -4.9801 751.725 894.591 19226.4801 -4805.4759 6753128.2832 118274.8938 495206.3005 -30427226.6336 137405.3205 490544.1486 23674075.8089 -97.9988 139.3199 -22.4706 157.1359 -573.3092 -74.1308 0.0250 505 194651
|
||||||
|
38.00 3.214 19.659 32.0 6.6623 0.1180 0.5170 23.7651 0.4998 0.4998 0.118 23.765 6.662 5.226e-06 3221.0 533.750 918.020 485.0095 -6162.8542 6660259.9923 118248.4788 495970.4107 -30427239.4970 118633.2160 489938.1874 23766957.8892 -97.2860 129.2551 -21.6306 -0.0000 -0.0000 -0.0000 0.1396 -0.2299 752.576 873.819 19387.8714 -3453.2321 6660347.8152 118244.3658 495932.4978 -30427238.0642 137532.8597 492616.4613 23766868.9473 -99.2668 132.0583 -21.3943 10.3440 -23.3698 -6.5129 0.5019 -0.8834 781.296 893.580 21789.5799 -4684.0690 6660335.9979 118236.5279 495924.8249 -30427238.7682 139928.0427 491375.2507 23766880.6937 -100.0046 133.5141 -21.6914 -72.1132 -105.8270 75.9443 -4.1986 751.464 894.433 19289.2982 -4739.7364 6660336.8326 118228.5706 495931.0862 -30427239.2428 137414.8096 491314.8311 23766880.2319 -98.2086 131.9754 -21.8771 106.4889 -509.3356 -36.5089 0.0250 519 194913
|
||||||
|
37.00 3.288 19.911 31.9 6.5737 0.1180 0.5170 23.8537 0.4981 0.4981 0.118 23.854 6.574 5.601e-06 3229.2 559.797 937.382 2375.2773 -7298.8190 6572148.0207 118165.2362 496673.3405 -30427253.8479 120437.0005 489496.8507 23855085.1111 -96.5752 126.6607 -20.9940 -0.0000 -0.0000 -0.0000 0.1376 -1.1627 752.573 885.102 19464.5615 -4081.1830 6572149.0874 118131.9562 496653.3938 -30427253.8069 137499.4560 492698.0393 23855083.7533 -99.7245 125.4973 -20.9270 52.3258 -118.2175 -32.9459 0.5008 -0.6829 782.792 893.635 22034.5789 -4608.1582 6572160.3804 118125.9487 496643.6907 -30427254.6396 140055.5093 492158.0750 23855072.9699 -98.8280 129.4437 -21.1451 -11.4104 -181.9536 30.7903 -5.3363 751.731 894.623 19356.5271 -4669.2336 6572161.1582 118115.9050 496646.0231 -30427254.7427 137376.7083 492100.8425 23855072.8406 -97.1093 127.5230 -20.7869 176.4078 -606.2835 -87.4656 0.0250 533 195134
|
||||||
|
36.00 3.366 20.177 31.7 6.4894 0.1180 0.5170 23.9380 0.4981 0.4981 0.118 23.938 6.489 6.004e-06 3239.0 574.696 910.711 3365.0933 -5568.0259 6488097.9887 118124.3914 497412.9885 -30427267.2636 121391.7397 491957.8135 23939149.6223 -97.5330 117.5040 -19.8191 -0.0000 -0.0000 -0.0000 0.1373 -1.0285 752.273 860.632 19451.0366 -2468.5252 6488079.0868 118095.2927 497385.2160 -30427266.5836 137449.1605 495034.0960 23939167.6064 -100.0036 117.1187 -19.9005 46.2864 -104.5730 -29.1433 0.4989 -0.4816 777.460 893.482 21607.4467 -4526.0265 6488043.3767 118091.4015 497378.8978 -30427266.8449 139597.4869 492971.4729 23939203.7235 -101.6902 119.1889 -19.8304 1.3394 -149.5201 15.8038 -4.5387 751.983 894.335 19368.3915 -4567.3029 6488044.0624 118094.8276 497388.3769 -30427266.9866 137351.8208 492927.0642 23939203.6241 -99.9605 116.6228 -19.7812 159.3039 -506.4028 -83.6554 0.0250 547 195355
|
||||||
|
35.00 3.449 20.459 31.6 6.4091 0.1180 0.5170 24.0183 0.4987 0.4987 0.118 24.018 6.409 6.416e-06 3261.4 581.751 918.140 3595.2069 -5968.0816 6407912.8975 118065.4090 498173.3902 -30427279.6320 121550.8139 492321.8418 24019348.0170 -96.7811 111.4557 -19.0105 -0.0000 -0.0000 -0.0000 0.1370 -1.3360 752.431 868.624 19457.6216 -2905.8173 6407890.6988 118047.0836 498155.0756 -30427279.0845 137422.3829 495362.1033 24019369.1523 -96.0693 108.8269 -19.0563 60.1242 -135.8361 -37.8560 0.5002 -0.5896 776.204 893.571 21590.4371 -4444.2007 6407845.4128 118055.0068 498134.4569 -30427279.4039 139539.2555 493813.1369 24019414.7679 -97.8101 106.8753 -19.0398 5.0898 -190.8705 17.1784 -4.7967 751.791 894.266 19380.6000 -4492.3272 6407845.6696 118049.3108 498140.9814 -30427278.7417 137331.6864 493745.7065 24019414.9741 -96.2891 107.3219 -19.0793 160.8277 -542.7227 -80.8788 0.0250 561 195617
|
||||||
|
34.00 3.538 20.766 31.4 6.3326 0.1180 0.5170 24.0948 0.4978 0.4977 0.118 24.095 6.333 6.684e-06 3319.2 570.924 919.256 2185.3249 -5958.7288 6331591.8085 118031.9156 498974.9582 -30427294.5443 120126.2208 493109.9561 24095684.4034 -95.6647 100.0488 -18.3162 -0.0000 -0.0000 -0.0000 0.1380 -1.0086 752.383 873.420 19476.7611 -3128.9281 6331665.1528 118053.5604 498921.9414 -30427294.6101 137433.1989 495895.1739 24095610.9083 -95.2882 104.2149 -17.8555 45.3908 -102.5495 -28.5794 0.4996 -0.6014 779.158 893.575 21895.6967 -4375.0580 6331678.6621 118046.8063 498910.9476 -30427294.5612 139844.3648 494624.7301 24095598.7220 -95.6808 99.9572 -17.9146 -10.7418 -158.6820 27.5532 -4.9226 751.993 894.394 19399.7509 -4429.2441 6331678.2503 118042.1684 498913.7600 -30427295.3676 137349.3589 494591.2123 24095599.3924 -95.8966 100.5460 -17.5093 165.3954 -556.6216 -83.3480 0.0250 575 195840
|
||||||
|
33.00 3.633 21.089 35.2 6.2599 0.1180 0.5170 24.1675 0.4982 0.4982 0.118 24.167 6.260 7.669e-06 3410.4 566.963 907.950 1284.1454 -5177.9709 6258811.5266 117989.6884 499799.0898 -30427312.2748 119178.4747 494718.5925 24168483.8026 -97.2218 95.6376 -17.1070 -0.0000 -0.0000 -0.0000 0.1396 -0.7897 752.691 860.670 19458.3972 -2253.2278 6258847.8940 117994.9663 499751.1538 -30427311.5513 137361.6811 497591.5104 24168446.5699 -94.5222 94.4539 -16.3955 35.5374 -80.2883 -22.3754 0.4995 -0.7651 776.674 893.466 21700.8472 -4290.5377 6258791.9622 117985.2042 499731.9929 -30427311.0100 139597.3077 495533.3161 24168503.1539 -96.5702 92.5555 -16.5722 -35.8794 -151.7051 49.0414 -4.5834 751.873 894.484 19292.1683 -4337.0412 6258793.2012 117998.6954 499729.3262 -30427311.9104 137191.3088 495484.9248 24168502.2072 -95.1035 91.2795 -16.5773 134.8485 -537.4238 -58.4539 0.0250 589 200104
|
||||||
|
32.00 3.734 21.406 35.0 6.1907 0.1180 0.5170 24.2367 0.4988 0.4988 0.118 24.237 6.191 8.188e-06 3447.4 555.898 896.515 -445.6390 -4336.9013 6189403.0098 117955.9818 500573.8454 -30427328.0232 117418.5429 496319.3623 24237909.2600 -93.2262 85.9123 -15.7031 -0.0000 -0.0000 -0.0000 0.1409 -0.7847 752.577 848.165 19261.6130 -1349.1507 6189439.1913 118000.4148 500504.5725 -30427328.2082 137173.7259 499239.1831 24237872.7516 -94.4389 89.2086 -15.6943 35.3113 -79.7773 -22.2330 0.4990 -0.5635 778.345 893.510 21703.8248 -4199.3337 6189457.4197 118013.4538 500522.7271 -30427328.4850 139616.8960 496413.2741 24237855.3313 -96.9316 84.0616 -15.7100 -17.2859 -132.3745 30.3642 -4.8522 751.689 894.349 19111.9537 -4249.1102 6189457.5281 118004.3914 500522.6596 -30427328.6593 137022.3829 496354.3831 24237855.3601 -95.9538 82.3936 -15.2493 165.7625 -545.9284 -84.8886 0.0250 603 200327
|
||||||
|
31.00 3.842 21.764 34.9 6.1248 0.1180 0.5170 24.3026 0.4994 0.4994 0.118 24.303 6.125 8.694e-06 3446.4 549.365 908.848 -1887.6138 -5065.7438 6123436.1801 117983.1519 501390.8978 -30427343.2208 116003.6949 496407.8889 24303893.0321 -93.0555 75.7235 -14.2164 -0.0000 -0.0000 -0.0000 0.1414 -1.3035 752.963 855.866 19155.1864 -1787.2698 6123436.4797 117957.2319 501335.9965 -30427341.6250 137021.1925 499625.5968 24303891.5693 -93.2021 71.6928 -14.1790 58.6604 -132.5291 -36.9344 0.5004 -0.7845 777.625 893.533 21574.6911 -4121.0123 6123427.4283 117959.2543 501311.1111 -30427341.9474 139441.1221 497266.2350 24303900.0326 -95.1316 78.4748 -14.2164 -14.5640 -205.7535 36.2900 -5.2730 751.680 894.536 19016.3387 -4174.9639 6123427.7141 117961.1615 501316.0711 -30427342.4387 136872.0597 497207.7115 24303900.9705 -96.6566 72.3483 -14.6278 164.0724 -609.3394 -76.1847 0.0250 617 200551
|
||||||
|
30.00 3.957 22.141 34.7 6.0622 0.1180 0.5170 24.3652 0.5004 0.5004 0.118 24.365 6.062 9.311e-06 3043.8 543.837 907.619 -3121.1813 -4821.6617 6060511.7444 117893.7268 502130.3325 -30427357.1123 114675.7973 497394.6062 24366831.3779 -93.1107 69.8213 -13.6404 -0.0000 -0.0000 -0.0000 0.1438 -0.4579 753.115 869.415 19054.9317 -2493.3083 6060653.5260 117880.1887 502082.1085 -30427355.2088 136842.1888 499653.8647 24366688.3554 -92.3196 65.6350 -13.3722 20.6082 -46.5593 -12.9755 0.5023 -0.9586 779.706 893.298 21790.3090 -3994.4320 6060667.7268 117877.9956 502071.1787 -30427355.3724 139586.2059 498137.3353 24366674.2107 -89.8440 66.0285 -13.0228 -68.8692 -136.0367 76.5019 -4.9804 751.567 894.586 18913.1519 -4065.2591 6060669.3339 117867.8666 502082.7982 -30427356.0058 136700.8811 498080.1742 24366673.8536 -90.1220 68.3769 -12.8633 134.6536 -595.8476 -51.6421 0.0125 631 200813
|
||||||
|
29.00 4.081 22.540 34.5 6.0026 0.1180 0.5170 24.4248 0.5015 0.5015 0.118 24.425 6.003 9.983e-06 3451.2 548.230 918.461 -3644.4772 -5399.3063 6000870.5409 117911.3610 502900.6685 -30427365.8059 114163.8315 497561.5785 24426483.3409 -87.2799 63.6409 -12.3589 -0.0000 -0.0000 -0.0000 0.1437 -0.2970 752.665 875.245 18806.8885 -2755.2989 6001011.7326 117897.9423 502868.5796 -30427365.9223 136618.3680 500170.6135 24426341.5648 -90.6360 65.3272 -12.4551 13.3647 -30.1942 -8.4148 0.5040 -0.9383 775.628 893.557 21217.5462 -3881.5695 6000951.9555 117898.3604 502850.6205 -30427365.7814 139022.3019 499030.2688 24426400.8040 -93.9400 61.2305 -12.6955 -74.2105 -117.7694 79.1604 -4.2615 752.136 894.464 18707.0729 -3940.9909 6000952.7065 117901.4538 502854.6205 -30427365.4654 136518.7413 498985.2183 24426399.9863 -93.5976 64.1287 -12.8083 104.2020 -520.8496 -33.1734 0.0250 645 201034
|
||||||
|
28.00 4.214 22.985 34.4 5.9460 0.1180 0.5170 24.4814 0.5033 0.5033 0.118 24.481 5.946 1.045e-05 3425.2 562.140 912.953 -3009.1077 -5006.7404 5944291.9027 117970.0106 503739.7867 -30427376.3866 114871.4197 498789.4057 24483072.2095 -89.7526 57.9254 -12.0353 -0.0000 -0.0000 -0.0000 0.1422 -0.8049 752.833 863.865 18581.5734 -1982.6658 5944331.5060 117957.4538 503693.0951 -30427375.6377 136444.5824 501773.1131 24483032.0979 -86.9597 62.8372 -11.8507 36.2230 -81.8371 -22.8071 0.5045 -0.5363 776.331 893.609 21157.7592 -3829.3655 5944339.1364 117960.4106 503682.7271 -30427374.8884 139031.1168 499912.0645 24483024.3517 -87.4737 61.1867 -11.6939 -13.8377 -131.8979 27.2537 -5.0261 751.610 894.408 18462.0936 -3880.0241 5944339.3009 117964.1354 503684.3129 -30427375.4587 136341.9563 499857.7614 24483024.6892 -86.1816 57.2692 -11.5180 176.1234 -561.0693 -92.3515 0.0250 659 201259
|
||||||
|
27.00 4.358 23.473 34.2 5.8922 0.1180 0.5170 24.5352 0.5043 0.5044 0.118 24.535 5.892 1.070e-05 3455.4 563.386 910.532 -3818.3008 -4778.3837 5890355.3182 118021.4836 504562.2294 -30427384.9859 114124.3520 499849.2768 24537018.1276 -83.0645 54.8136 -11.0551 -0.0000 -0.0000 -0.0000 0.1436 -0.6264 752.770 868.322 18318.7326 -2190.3862 5890470.8324 118029.5775 504519.4880 -30427384.1431 136265.2117 502381.9451 24536903.3636 -86.7910 51.9404 -10.5135 28.1872 -63.6822 -17.7475 0.5061 -0.5292 775.551 893.455 20887.9186 -3737.5518 5890434.2173 118029.5647 504510.8942 -30427384.6569 138839.4197 500811.3394 24536939.2010 -85.6586 44.4072 -11.2095 -21.2077 -113.0770 31.6474 -4.9015 752.015 894.352 18173.8839 -3789.3311 5890434.4560 118031.3311 504511.3814 -30427385.1870 136122.6667 500770.2277 24536939.8518 -88.3812 46.7732 -10.9556 171.1827 -547.7367 -89.4873 0.0250 673 201521
|
||||||
|
26.00 4.513 23.980 34.0 5.8412 0.1180 0.5170 24.5862 0.5047 0.5047 0.118 24.586 5.841 1.113e-05 3438.2 577.196 915.244 -3239.1632 -4996.0924 5839433.2566 118035.5039 505374.4249 -30427393.4402 114711.4027 500431.4830 24587950.1000 -79.5839 45.6131 -10.2086 -0.0000 -0.0000 -0.0000 0.1427 -0.5909 752.730 863.002 18059.7223 -1754.8012 5839502.1987 118051.4143 505326.4427 -30427393.8489 136028.2240 503610.9207 24587881.9551 -83.7030 40.9950 -9.7341 26.5916 -60.0774 -16.7429 0.5058 -0.7881 773.826 893.610 20509.2688 -3649.1713 5839507.2505 118052.8223 505309.8667 -30427394.0556 138474.5131 501705.5493 24587877.5157 -85.2781 38.3131 -9.7169 -46.9725 -133.6415 56.8212 -4.6522 751.841 894.498 17945.1298 -3712.3007 5839508.7332 118045.2660 505323.8258 -30427394.3735 135889.2672 501651.1182 24587876.4580 -84.9900 40.5012 -9.5230 135.7968 -546.5647 -58.2557 0.0250 687 201744
|
||||||
|
25.00 4.682 24.534 33.9 5.7927 0.1180 0.5170 24.6347 0.5048 0.5048 0.118 24.635 5.793 1.132e-05 3439.6 585.074 912.322 -3303.5439 -4697.1312 5791031.8357 118032.5727 506161.6498 -30427400.2536 114646.5323 501501.8299 24636359.8209 -80.3238 37.3598 -8.9552 -0.0000 -0.0000 -0.0000 0.1419 -0.2699 752.826 873.409 17791.6571 -2288.7575 5791088.2285 118042.5780 506106.4676 -30427399.9290 135748.1984 503862.6254 24636302.9940 -80.5737 38.5637 -8.7776 12.1454 -27.4397 -7.6471 0.5066 -0.6597 773.937 893.417 20406.9597 -3537.6503 5791102.0630 118038.3583 506099.0542 -30427400.0868 138365.8581 502604.3927 24636289.1555 -81.1851 40.6616 -8.7850 -49.4275 -89.0126 53.9259 -4.5627 752.353 894.272 17681.4450 -3586.1096 5791102.5412 118042.3178 506102.0765 -30427400.3440 135649.6853 502550.4974 24636288.6912 -76.9928 39.1309 -9.0010 143.7566 -525.4657 -67.7086 0.0250 701 202009
|
||||||
|
24.00 4.864 25.160 33.7 5.7468 0.1180 0.5170 24.6806 0.5067 0.5067 0.118 24.681 5.747 1.102e-05 3371.8 604.513 897.109 -1875.7137 -3660.0616 5745324.5400 118042.5780 506964.6969 -30427407.7523 116084.2155 503347.0597 24682075.4186 -74.4880 38.1770 -8.5527 -0.0000 -0.0000 -0.0000 0.1404 -0.3357 752.604 857.658 17529.8500 -1208.1651 5745333.4918 118052.4084 506917.3689 -30427408.3360 135494.7797 505741.0089 24682067.0685 -76.3201 35.5833 -8.4482 15.1070 -34.1307 -9.5118 0.5075 -0.5621 775.076 893.506 20329.8344 -3432.6363 5745378.3676 118061.6244 506900.6934 -30427408.8235 138325.7429 503499.8240 24682022.2064 -71.1630 34.8544 -8.0889 -37.3613 -86.5990 42.9565 -4.9484 752.105 894.345 17402.7712 -3491.0166 5745379.0398 118053.7055 506914.0231 -30427409.5964 135392.8320 503456.7282 24682022.2033 -74.5683 34.3148 -7.9098 170.2213 -555.5817 -87.7436 0.0250 715 202232
|
||||||
|
23.00 5.064 25.869 33.5 5.7034 0.1180 0.5170 24.7240 0.5084 0.5084 0.118 24.724 5.703 1.049e-05 3268.2 613.001 911.138 -1906.0942 -4434.4120 5701757.5347 118110.3498 507789.6818 -30427416.1699 116120.4395 503388.0069 24725651.7285 -78.0619 28.9011 -7.3900 -0.0000 -0.0000 -0.0000 0.1400 -0.2910 752.617 875.063 17125.3080 -2178.9262 5701808.3757 118132.4084 507730.5885 -30427415.9330 135173.5893 505581.1296 24725599.7516 -76.9687 27.0154 -7.2842 13.0972 -29.5901 -8.2464 0.5106 -0.9635 771.478 893.567 19583.5599 -3326.9900 5701812.5675 118138.4714 507722.7805 -30427416.0203 137640.4907 504433.3189 24725596.1627 -73.5985 28.9199 -7.2484 -76.8368 -119.5241 81.6876 -4.3365 752.143 894.435 17008.5505 -3377.4371 5701813.8643 118141.5434 507721.9378 -30427416.7257 135088.8491 504377.7833 24725595.3828 -72.0464 29.6084 -7.0949 105.2190 -530.8353 -32.9401 0.0250 729 202458
|
||||||
|
22.00 5.282 26.654 33.4 5.6623 0.1180 0.5170 24.7651 0.5081 0.5081 0.118 24.765 5.662 1.066e-05 3154.0 633.947 900.842 -5.0574 -3839.3999 5660978.9015 118103.8431 508570.8836 -30427421.2976 118021.9392 504750.9765 24766435.6859 -70.1259 26.5775 -6.6215 -0.0000 -0.0000 -0.0000 0.1386 0.1885 752.687 867.085 16914.0809 -1749.5048 5660981.2319 118099.2991 508539.8045 -30427420.2264 134941.6363 506809.0683 24766432.2760 -68.8590 19.5907 -6.7220 -8.4835 19.1665 5.3415 0.5096 -1.0321 771.096 893.597 19415.4126 -3407.9436 5661002.8402 118110.0383 508540.5120 -30427421.1838 137456.0384 505153.4322 24766411.3082 -70.7855 22.1406 -6.1755 -104.8160 -77.1659 101.6740 -3.9750 752.188 894.455 16777.6564 -3451.9793 5661003.3745 118117.6543 508542.5636 -30427420.8754 134826.4576 505109.4277 24766411.3839 -70.1099 18.0527 -6.3923 82.5507 -500.4760 -16.2977 0.0250 743 202719
|
||||||
|
21.00 5.521 27.544 33.2 5.6235 0.1180 0.5170 24.8039 0.5080 0.5080 0.118 24.804 5.624 1.156e-05 3241.0 651.499 904.707 1228.6080 -3896.3146 5622556.7360 118148.1012 509464.5014 -30427423.1430 119307.3536 505577.0098 24804861.7071 -65.7579 17.0125 -5.6153 -0.0000 -0.0000 -0.0000 0.1359 -0.5399 752.474 870.118 16224.3961 -1677.2121 5622564.1421 118226.5908 509353.8098 -30427424.5857 134382.8608 507698.5184 24804855.6612 -68.6090 17.8169 -5.5469 24.2980 -54.8955 -15.2987 0.5095 -0.8479 769.320 893.572 18670.0922 -3149.1603 5622617.6991 118208.3124 509356.1458 -30427424.1985 136807.2405 506222.4608 24804801.3387 -70.7775 15.5466 -5.3888 -54.8390 -134.0325 63.8382 -4.4430 752.123 894.337 16200.1002 -3213.7626 5622618.5479 118198.1151 509370.4782 -30427424.2682 134338.3893 506166.0603 24804800.3551 -68.2255 15.8821 -5.1930 120.8102 -530.8695 -46.7557 0.0250 757 202944
|
||||||
|
20.00 5.785 28.556 33.1 5.5869 0.1180 0.5170 24.8405 0.5082 0.5081 0.118 24.840 5.587 1.301e-05 3265.0 665.753 896.569 2092.4510 -3270.9379 5586361.3386 118339.8196 510240.4978 -30427428.5496 120354.6539 506971.9538 24841062.3524 -66.3361 15.9515 -4.6636 -0.0000 -0.0000 -0.0000 0.1348 -0.5949 752.613 856.589 15801.6386 -835.6408 5586331.7081 118259.6490 510264.3840 -30427426.7424 133992.7125 509435.1547 24841091.1188 -66.4094 13.0237 -4.8761 26.7730 -60.4871 -16.8571 0.5088 -0.5708 770.773 893.426 18460.9658 -3132.7183 5586365.1683 118294.5332 510254.9085 -30427427.2162 136690.9611 507134.0366 24841057.7384 -66.9997 14.3751 -4.6212 -26.5080 -113.7681 36.4239 -5.0111 751.972 894.309 15620.5792 -3169.7594 5586364.3881 118310.2858 510245.1485 -30427428.4325 133862.6133 507091.1273 24841058.9711 -68.9072 9.7199 -4.6028 172.2315 -562.7722 -88.7084 0.0250 771 203207
|
||||||
|
19.00 6.077 29.806 32.9 5.5525 0.1180 0.5170 24.8749 0.5074 0.5074 0.118 24.875 5.553 1.320e-05 3218.0 671.548 914.796 1763.0641 -4290.6467 5551902.5957 118399.8260 511080.3342 -30427433.8558 120091.8485 506803.0432 24875526.9398 -65.0983 9.7172 -4.2039 -0.0000 -0.0000 -0.0000 0.1347 -0.6019 752.602 877.510 15121.7730 -2029.5533 5551898.7838 118311.2415 511110.2187 -30427432.0078 133370.8032 509085.1534 24875529.1186 -64.2600 10.7311 -3.8978 27.0889 -61.2008 -17.0559 0.5093 -0.6029 768.517 893.550 17596.4263 -2989.5559 5551934.1802 118354.3775 511070.8765 -30427432.7317 135880.9216 508081.5913 24875494.2513 -65.8502 7.3425 -3.7354 -29.1822 -117.4718 39.2151 -4.7266 752.296 894.303 14962.5765 -3039.2142 5551933.6992 118342.6826 511073.6640 -30427432.9010 133243.5925 508044.6688 24875495.6445 -63.3655 10.3148 -3.8854 156.4375 -536.8349 -77.6565 0.0250 785 203431
|
||||||
|
18.00 6.403 31.350 32.8 5.5202 0.1180 0.5170 24.9072 0.5094 0.5094 0.118 24.907 5.520 1.290e-05 3105.2 682.656 908.714 2178.6430 -3789.1566 5519885.8250 118480.2570 511888.1778 -30427435.7913 120594.0651 508109.5959 24907546.3721 -61.1810 5.8031 -3.3645 -0.0000 -0.0000 -0.0000 0.1327 -0.9510 752.765 862.355 14358.1459 -968.0686 5519880.2721 118398.6698 511923.5449 -30427434.3418 132707.0976 510965.7239 24907551.6428 -62.0644 7.2650 -2.8861 42.7969 -96.6894 -26.9462 0.5103 -0.8630 766.473 893.489 16583.1587 -2872.0409 5519895.6814 118439.2970 511890.6276 -30427434.4249 134963.2939 509021.9726 24907535.1952 -65.8231 -0.7680 -2.9502 -37.7517 -177.2380 53.6024 -4.7621 752.150 894.502 14159.0446 -2925.6579 5519897.2039 118444.5834 511880.5689 -30427434.1185 132537.8048 508958.7205 24907534.8436 -67.0158 1.7799 -2.6954 133.7588 -564.7247 -54.3857 0.0250 799 203657
|
||||||
|
17.00 6.767 33.386 32.6 5.4899 0.1180 0.5170 24.9375 0.5101 0.5101 0.118 24.938 5.490 1.104e-05 3286.2 692.023 906.597 2366.4201 -3577.3492 5489709.4253 118440.6580 512800.9636 -30427437.7661 120745.8731 509219.7125 24937726.0370 -60.9149 0.1125 -2.4401 -0.0000 -0.0000 -0.0000 0.1320 -0.9304 752.483 861.648 13361.3487 -696.0657 5489689.3672 118536.8415 512685.1485 -30427437.9263 131849.2800 511990.4846 24937746.1012 -60.1891 -1.8991 -2.2415 41.8699 -94.5949 -26.3625 0.5106 -0.5575 766.289 893.550 15682.9006 -2714.0755 5489738.5430 118525.2319 512704.3947 -30427437.8298 134150.9291 509988.4439 24937696.9731 -60.4843 -0.0768 -1.8673 -10.1635 -146.6282 25.6708 -4.7998 751.996 894.362 13224.5629 -2767.4609 5489738.1213 118522.0020 512709.0596 -30427437.6595 131680.3371 509937.2311 24937696.8442 -57.6050 -2.2656 -2.3014 163.9668 -540.0336 -83.9667 0.0500 813 203920
|
||||||
|
16.00 7.178 36.369 32.5 5.4616 0.1180 0.5170 24.9658 0.5101 0.5101 0.118 24.966 5.462 8.806e-06 3092.2 696.133 910.392 1423.0462 -3714.3573 5461393.1775 118573.1167 513681.7387 -30427438.3205 119937.6171 509971.3851 24966043.9361 -53.3695 1.5872 -1.7183 -0.0000 -0.0000 -0.0000 0.1324 -0.6456 752.313 871.025 12310.4221 -1158.9633 5461380.2363 118650.2580 513544.8249 -30427439.9644 130893.3077 512392.2235 24966056.5492 -53.0482 -0.0189 -1.8196 29.0536 -65.6395 -18.2930 0.5118 -0.9902 765.310 893.554 14687.8913 -2548.6115 5461380.7405 118664.0138 513533.5538 -30427438.6035 133288.6912 510984.8690 24966056.5649 -56.8922 -3.3974 -1.5014 -63.3736 -158.0667 74.1342 -4.5774 752.344 894.370 12207.3520 -2614.7572 5461381.4851 118646.5930 513549.8347 -30427438.6938 130797.5637 510922.9335 24966055.8062 -57.1523 -4.1546 -1.4036 113.5664 -557.8201 -37.2725 0.0500 827 204148
|
||||||
|
15.00 7.645 17.258 32.3 5.4352 0.1180 0.5170 24.9922 0.5115 0.5115 0.118 24.992 5.435 1.137e-05 3102.4 700.771 906.875 233.0220 -3170.5120 5435092.1483 118748.8607 514433.7494 -30427441.1859 118923.2384 511270.8357 24992348.1972 -57.4193 -5.2433 -0.6559 -0.0000 -0.0000 -0.0000 0.1306 -0.9443 752.461 856.410 11078.2206 -103.1162 5435068.1544 118651.0388 514475.1431 -30427438.9506 129678.7883 514361.8875 24992369.5454 -53.4920 -2.0763 -1.0665 42.4952 -96.0077 -26.7562 0.5121 -0.8337 765.948 893.488 13601.6519 -2359.8965 5435116.4259 118726.6442 514420.0000 -30427440.1057 132278.9504 512056.8837 24992322.4474 -51.8636 -11.1340 -1.0703 -35.3231 -173.8260 51.0621 -5.2243 752.375 894.506 10847.8521 -2426.7478 5435117.5635 118744.1162 514426.4462 -30427440.4716 129534.6731 511990.3675 24992322.0598 -55.0631 -10.3175 -0.7092 157.2860 -608.9799 -70.2103 0.0250 841 204416
|
||||||
|
14.00 8.178 17.930 32.1 5.4107 0.1180 0.5170 25.0167 0.5123 0.5123 0.118 25.017 5.411 1.394e-05 3249.2 710.125 919.653 279.8042 -3871.7971 5410603.7586 118841.9210 515377.8276 -30427442.1058 119073.5787 511495.8432 25016838.0394 -52.3595 -9.5515 -0.1792 -0.0000 -0.0000 -0.0000 0.1303 -0.8785 752.811 876.492 9646.3847 -1230.9145 5410581.4068 118827.2735 515391.5094 -30427442.0756 128423.5136 514153.6901 25016860.3999 -49.9250 -7.8464 -0.4558 39.5359 -89.3219 -24.8930 0.5139 -0.6850 764.009 893.530 12022.8724 -2261.8234 5410601.3042 118857.3663 515360.2845 -30427442.8055 130817.4336 513083.2827 25016841.9370 -55.3713 -10.5688 -0.0203 -24.3980 -153.2558 39.0409 -4.8785 752.297 894.278 9472.1256 -2294.2256 5410602.1942 118849.6778 515349.5716 -30427443.6648 128268.6507 513048.3424 25016841.1364 -52.8966 -13.8846 0.2602 155.6104 -559.9415 -74.2977 0.0250 855 204648
|
||||||
|
13.00 8.795 18.691 32.0 5.3881 0.1180 0.5170 25.0393 0.5145 0.5145 0.118 25.039 5.388 1.137e-05 3467.6 719.362 888.357 196.6956 -1786.7235 5388054.1366 118957.4922 516323.0187 -30427446.1264 119110.2208 514520.5874 25039392.5036 -49.7704 -14.2134 0.5421 -0.0000 -0.0000 -0.0000 0.1293 -0.6394 752.628 847.757 7967.6796 714.9148 5388055.8657 118968.3978 516304.7076 -30427446.6688 126891.1787 517026.3922 25039390.8854 -51.3787 -11.4237 0.4433 28.7724 -65.0044 -18.1160 0.5145 -0.4196 764.810 893.471 10662.1220 -2109.3997 5388123.3468 119003.4655 516267.0934 -30427446.2411 129614.6688 514154.5915 25039323.1419 -51.2622 -13.0701 0.8763 -10.3947 -104.1716 21.0512 -5.1461 752.369 894.183 7781.9508 -2157.5718 5388123.6707 119002.5524 516278.1796 -30427446.7394 126731.2683 514111.7006 25039323.8018 -49.9451 -15.7480 0.9795 192.4177 -562.3775 -106.6455 0.0500 869 204914
|
||||||
|
12.00 9.516 19.539 31.9 5.3673 0.1180 0.5170 25.0601 0.5152 0.5152 0.118 25.060 5.367 9.397e-06 3266.4 725.468 892.577 -864.6713 -1829.2476 5367260.2219 119057.8143 517185.7885 -30427448.9557 118145.4763 515347.3797 25060190.0876 -48.2655 -13.2022 0.8163 -0.0000 -0.0000 -0.0000 0.1282 -0.2961 752.619 851.861 6064.8388 697.6333 5367260.5912 119076.3828 517161.3867 -30427448.7193 125091.1829 517852.6414 25060188.4871 -46.1342 -13.1759 0.7153 13.3236 -30.1015 -8.3890 0.5154 -0.4270 763.499 893.444 8598.3617 -1872.4217 5367277.8809 119066.9535 517135.1609 -30427449.3935 127633.6896 515250.4709 25060172.3516 -45.8330 -16.7660 1.4172 -26.5351 -69.9603 31.4698 -4.6199 752.326 894.097 5866.1822 -1911.2740 5367278.8964 119071.3482 517136.1351 -30427450.0940 124891.2725 515200.8727 25060171.9937 -45.2879 -17.0867 1.5804 168.0481 -509.5743 -91.0456 0.0500 883 205141
|
||||||
|
11.00 10.369 20.520 31.7 5.3483 0.1180 0.5170 25.0791 0.5168 0.5168 0.118 25.079 5.348 6.733e-06 2784.0 737.757 893.594 -568.5636 -1660.9363 5348172.1088 119161.5540 518066.6489 -30427450.5939 118554.6923 516387.0267 25079280.6282 -45.5871 -18.5600 1.7805 -0.0000 -0.0000 -0.0000 0.1254 -0.5178 752.471 852.563 3608.5988 892.2012 5348174.9791 119168.6623 518033.8098 -30427450.4435 122738.3851 518906.2734 25079276.8073 -46.7978 -18.5189 1.9521 23.3036 -52.6489 -14.6726 0.5170 -0.4448 761.938 893.512 6000.9346 -1658.8501 5348215.4606 119220.5578 518043.7120 -30427450.8376 125161.2843 516350.8997 25079237.5665 -45.7447 -20.1236 2.0731 -18.2115 -94.1639 26.8424 -4.5755 752.388 894.175 3433.5345 -1688.7346 5348216.1014 119211.6404 518032.5867 -30427450.9965 122596.3136 516317.2009 25079237.1386 -46.6241 -26.5984 1.7225 164.3919 -506.7122 -88.1300 0.0500 897 205408
|
||||||
|
10.00 11.394 21.663 31.6 5.3310 0.1180 0.5170 25.0964 0.5175 0.5175 0.118 25.096 5.331 3.366e-06 1649.2 746.381 920.920 -1265.4915 -3182.7859 5330885.2327 119365.4410 519027.2747 -30427453.3993 118059.4560 515823.3257 25096570.6421 -47.9995 -20.4214 2.6072 -0.0000 -0.0000 -0.0000 0.1227 -0.9246 752.964 876.543 604.4612 -407.1517 5330890.6505 119390.1492 518976.0249 -30427452.2775 119949.0731 518550.6034 25096563.9206 -47.7606 -23.2044 2.6029 41.6097 -94.0070 -26.1987 0.5194 -0.7029 760.964 893.439 3047.1467 -1451.8369 5330904.4393 119405.6159 518961.4614 -30427451.4478 122401.6341 517480.2894 25096550.7356 -48.6500 -26.2131 3.2715 -23.9957 -159.6124 39.4067 -5.0003 752.167 894.262 436.7115 -1501.2412 5330904.7992 119398.1151 518964.7645 -30427452.5300 119787.9851 517441.3536 25096550.8335 -48.5808 -31.2987 3.1194 159.4189 -573.9936 -76.0766 0.4000 911 205635
|
||||||
|
10.00 11.394 21.663 31.8 5.3310 0.1227 0.5194 25.0964 0.5168 0.5168 0.123 25.096 5.331 3.768e-06 1722.0 762.632 929.152 3413.4907 -3671.4085 5330897.3522 119411.5295 518947.5342 -30427451.6947 122779.3152 515249.3847 25096557.6227 -48.9924 -33.0658 3.5943 -0.0000 -0.0000 -0.0000 0.1226 -0.7066 752.353 887.931 605.9006 -1093.7926 5330904.7671 119401.5498 518919.2498 -30427450.1997 119959.8592 517793.7467 25096547.9197 -49.1249 -33.9463 3.2909 31.8006 -71.8459 -20.0226 0.5193 -0.6555 760.840 893.460 3085.2042 -1424.5972 5330915.6388 119397.8207 518899.5129 -30427449.9017 122432.3797 517439.2361 25096537.4339 -50.2694 -33.8836 3.7625 -29.3857 -133.0323 41.1637 -4.8034 752.024 894.254 457.2798 -1485.0133 5330916.1871 119400.7050 518906.9156 -30427450.4412 119813.7941 517397.2247 25096538.0858 -50.3657 -30.8520 4.2173 154.9778 -549.5573 -74.9170 0.4000 925 210005
|
||||||
|
11.00 10.369 20.517 35.0 5.3483 0.1227 0.5194 25.0791 0.5162 0.5162 0.123 25.079 5.348 7.340e-06 2806.2 754.587 897.761 3822.7950 -1874.0858 5348224.9007 119232.6623 517899.9431 -30427447.7374 123001.3312 515993.0592 25079226.1033 -45.2407 -28.9792 3.9542 -0.0000 -0.0000 -0.0000 0.1253 -0.6585 752.993 859.801 3471.2066 492.5373 5348202.2964 119214.6655 517893.3262 -30427446.8167 122641.9584 518354.0411 25079247.9364 -45.4335 -35.0707 3.7720 29.6327 -66.9479 -18.6576 0.5167 -0.4360 761.496 893.479 5855.6355 -1596.3744 5348246.6053 119215.5060 517873.4471 -30427446.8500 125020.3051 516251.5570 25079204.2345 -45.7146 -34.9965 4.0570 -11.0588 -107.6394 22.0339 -4.5958 752.464 894.179 3355.3087 -1643.3395 5348246.7973 119224.0522 517882.4640 -30427447.2634 122526.6944 516204.1623 25079204.5651 -47.0779 -34.0615 4.2407 166.1293 -507.9534 -89.5290 0.0500 15 210324
|
||||||
|
12.00 9.516 19.541 34.9 5.3673 0.1227 0.5194 25.0601 0.5147 0.5147 0.123 25.060 5.367 9.133e-06 3233.2 742.550 894.272 3306.2682 -1890.9837 5367314.6429 119177.4132 516992.2702 -30427446.0210 122432.1408 515062.2304 25060134.6036 -51.9851 -36.5898 4.1056 -0.0000 -0.0000 -0.0000 0.1279 -0.0666 752.356 856.222 5866.7720 461.2495 5367303.5221 119169.9594 516997.7138 -30427445.7083 124989.3035 517426.6939 25060146.2893 -50.4531 -33.8836 4.3505 2.9952 -6.7669 -1.8859 0.5151 -0.4740 762.783 893.590 8303.5962 -1842.0459 5367322.5671 119159.2586 516971.4667 -30427445.6846 127407.7440 515102.4078 25060128.2851 -53.7640 -34.8106 4.7277 -41.2427 -51.0048 42.3520 -4.2357 752.058 894.181 5663.5692 -1890.5436 5367321.8960 119176.2612 516976.5760 -30427446.2116 124790.6091 515067.1401 25060128.4518 -50.8175 -32.0909 4.5667 146.3772 -474.8868 -75.7790 0.0500 29 210551
|
||||||
|
13.00 8.795 18.691 34.7 5.3881 0.1227 0.5194 25.0393 0.5132 0.5132 0.123 25.039 5.388 1.167e-05 3439.0 742.576 900.849 4723.0595 -2343.4835 5388156.9726 119073.3407 516011.6694 -30427441.9846 123740.7659 513634.4416 25039290.3309 -53.7028 -36.8492 4.8900 -0.0000 -0.0000 -0.0000 0.1288 -0.4922 752.945 863.580 7720.9448 -115.4221 5388124.4930 119060.1268 516004.7360 -30427441.1049 126725.0944 515858.5751 25039321.1889 -53.2932 -40.0835 4.8329 22.1500 -50.0426 -13.9463 0.5140 -0.4935 763.925 893.546 10220.7267 -2003.5767 5388181.9688 119087.7791 516011.9609 -30427440.8204 129252.8939 513952.6624 25039264.0324 -56.8420 -38.8312 4.9971 -23.9126 -96.1051 32.1163 -4.6644 752.296 894.205 7574.0821 -2057.3695 5388181.9231 119082.1514 516021.7920 -30427441.5303 126599.5392 513929.3134 25039264.5572 -54.3674 -39.7683 5.1829 163.8477 -520.3043 -86.1032 0.0500 43 210815
|
||||||
|
14.00 8.178 17.927 34.5 5.4107 0.1227 0.5194 25.0167 0.5116 0.5116 0.123 25.017 5.411 1.379e-05 3212.2 730.340 919.131 4389.4353 -3742.9637 5410684.7263 119017.7204 515051.8827 -30427438.9248 123355.6437 511268.8919 25016759.6412 -55.9987 -37.3410 5.1715 -0.0000 -0.0000 -0.0000 0.1301 -0.9034 752.503 882.759 9303.0297 -1490.4925 5410641.3743 118952.0863 515065.1165 -30427438.0532 128202.1803 513539.1584 25016801.6780 -57.3149 -37.9742 5.1826 40.6564 -91.8535 -25.5985 0.5134 -0.6447 763.205 893.543 11553.4847 -2180.8115 5410669.3036 118965.6628 515084.1671 -30427438.2199 130464.4907 512866.8165 25016773.5311 -55.2568 -38.6708 4.9089 -19.5149 -152.0248 34.5729 -4.6238 752.512 894.273 9173.6204 -2216.4049 5410669.2994 118962.6634 515082.7662 -30427438.5540 128088.8789 512829.4258 25016773.4994 -55.6022 -39.8929 4.7537 147.9099 -530.2809 -70.8428 0.0250 57 211045
|
||||||
|
15.00 7.645 17.259 34.4 5.4352 0.1227 0.5194 24.9922 0.5101 0.5101 0.123 24.992 5.435 1.175e-05 3116.8 725.645 917.508 4986.7540 -3747.9279 5435179.5332 118879.8687 514091.6871 -30427435.6856 123815.6032 510308.7365 24992261.3364 -58.6180 -36.8627 4.9354 -0.0000 -0.0000 -0.0000 0.1305 -1.1600 752.662 875.952 10567.2696 -1194.9952 5435131.9287 118854.0810 514129.5502 -30427434.3810 129354.6325 512893.4697 24992307.1509 -60.8427 -39.4456 4.8594 52.2040 -117.9424 -32.8692 0.5117 -0.8031 764.977 893.544 13044.2202 -2282.1922 5435182.2503 118852.5578 514125.2267 -30427435.0838 131843.6864 511798.2103 24992257.2149 -59.3097 -39.2313 4.7317 -22.7516 -192.8981 42.0864 -5.2884 752.188 894.541 10378.3458 -2325.9347 5435182.5617 118865.9764 514109.3405 -30427435.6757 129174.1440 511748.0325 24992258.0010 -59.2665 -40.0303 5.1463 163.0343 -612.6367 -74.8899 0.0250 71 211307
|
||||||
|
16.00 7.178 36.369 34.2 5.4616 0.1227 0.5194 24.9658 0.5095 0.5095 0.123 24.966 5.462 9.156e-06 3075.2 718.308 914.371 5347.0080 -3821.0211 5461426.8381 118645.2788 513264.1245 -30427430.9413 123916.0107 509403.9538 24966008.8847 -65.1364 -38.1689 4.8306 -0.0000 -0.0000 -0.0000 0.1316 0.0315 752.740 876.029 11933.7307 -1381.9384 5461449.7079 118678.7636 513219.9111 -30427431.8792 130550.0629 511789.5867 24965987.1389 -62.4871 -40.0674 4.7267 -1.4163 3.1997 0.8917 0.5115 -1.0238 764.698 893.563 14176.9458 -2475.2758 5461426.6567 118704.3338 513236.8462 -30427433.4308 132812.7531 510716.5975 24966012.0396 -63.2089 -40.3571 5.2524 -96.9713 -92.3553 96.4467 -3.7169 752.122 894.237 11811.5278 -2508.4840 5461427.7801 118702.8490 513229.4471 -30427433.7850 130451.6736 510672.1906 24966011.9677 -62.4389 -44.5069 5.5453 71.7131 -473.4569 -9.7619 0.0500 85 211530
|
||||||
|
17.00 6.767 33.380 34.0 5.4899 0.1227 0.5194 24.9375 0.5094 0.5094 0.123 24.938 5.490 1.138e-05 3239.2 717.843 904.708 6663.6204 -3330.2351 5489803.5044 118577.4772 512368.7574 -30427430.7534 125181.5637 508993.2658 24937631.8791 -66.4947 -43.8616 5.5401 -0.0000 -0.0000 -0.0000 0.1317 -1.0608 752.592 869.272 12934.9799 -1083.4507 5489758.1731 118627.0346 512329.9734 -30427431.2174 131493.4443 511212.3835 24937678.7523 -65.1224 -36.3796 5.3987 47.7392 -107.8552 -30.0580 0.5102 -0.6348 764.518 893.516 15050.5349 -2619.3758 5489810.5454 118583.8431 512358.5600 -30427430.3319 133565.3547 509700.3397 24937626.0148 -68.0478 -43.4877 5.5228 -11.5123 -167.1066 29.1934 -4.4785 752.222 894.226 12881.5364 -2680.4886 5489811.2479 118576.7775 512377.7814 -30427431.8672 131395.9680 509660.8937 24937625.7805 -65.9466 -40.3530 5.5364 142.2901 -514.5860 -67.6451 0.0500 99 211803
|
||||||
|
18.00 6.403 31.348 33.9 5.5202 0.1227 0.5194 24.9072 0.5086 0.5086 0.123 24.907 5.520 1.312e-05 3133.6 711.322 911.349 6739.2457 -3784.5847 5519958.2228 118585.4218 511411.0045 -30427429.7270 125255.2235 507578.3611 24907476.2342 -69.5487 -40.5410 5.0860 -0.0000 -0.0000 -0.0000 0.1321 -0.8517 752.805 873.795 13928.7159 -1504.2747 5519920.7992 118494.3711 511478.4356 -30427428.6997 132350.7541 509937.2000 24907512.8437 -68.6692 -40.1940 4.8847 38.3273 -86.5913 -24.1320 0.5098 -0.8643 765.207 893.500 16013.1359 -2721.6051 5519964.7860 118525.3471 511469.8596 -30427429.3501 134474.1248 508714.5623 24907469.6785 -68.5287 -38.4856 5.0220 -42.3430 -167.2615 56.5382 -4.3618 752.443 894.345 13772.8069 -2763.9438 5519966.4212 118548.6132 511464.1671 -30427429.8497 132245.9563 508654.9033 24907468.6838 -68.1843 -38.6250 5.2095 115.6208 -524.1424 -42.9204 0.0250 113 212032
|
||||||
|
19.00 6.077 29.802 33.7 5.5525 0.1227 0.5194 24.8749 0.5069 0.5069 0.123 24.875 5.553 1.334e-05 3204.2 702.015 913.816 6359.9123 -4037.6094 5551959.4865 118512.4746 510562.1476 -30427427.2558 124795.5541 506489.6242 24875472.5918 -76.1926 -41.5643 5.2389 -0.0000 -0.0000 -0.0000 0.1341 -0.4408 752.550 885.017 14694.5644 -2289.5946 5551933.5820 118449.9722 510614.2045 -30427427.1731 133057.4635 508293.5794 24875498.6448 -78.5328 -42.2616 4.9818 19.8390 -44.8213 -12.4912 0.5089 -0.6623 766.443 893.446 16886.4243 -2842.3684 5551998.1371 118457.0975 510638.4107 -30427427.7866 135261.6448 507754.0923 24875435.0448 -76.8783 -34.5741 5.5574 -41.9795 -106.6398 49.3272 -3.9687 752.162 894.309 14656.3904 -2874.4895 5551997.7547 118456.5556 510639.0400 -30427428.1122 133032.5504 507716.4037 24875435.5679 -77.5590 -42.7736 4.7995 116.7814 -465.3217 -50.6333 0.0250 127 212256
|
||||||
|
20.00 5.785 28.554 33.5 5.5869 0.1227 0.5194 24.8405 0.5074 0.5074 0.123 24.840 5.587 1.302e-05 3219.6 695.768 898.846 6587.7598 -3215.9242 5586408.9317 118413.8250 509700.5547 -30427425.2386 124917.7557 506454.8594 24841020.6759 -78.0931 -37.6637 4.8783 -0.0000 -0.0000 -0.0000 0.1342 -0.3315 752.738 867.026 15539.9583 -1298.3861 5586373.8497 118313.2767 509771.5094 -30427424.2989 133774.6389 508430.4974 24841055.7949 -78.0278 -40.6083 4.9941 14.9180 -33.7037 -9.3928 0.5083 -0.6083 768.335 893.488 17840.0820 -2918.3794 5586429.7200 118346.8340 509746.9760 -30427424.6875 136106.1504 506797.5154 24840999.9261 -76.5611 -38.3212 5.1561 -41.8580 -90.4797 47.3832 -4.2020 752.252 894.145 15366.9110 -2939.8881 5586430.1103 118374.7978 509738.7769 -30427425.4037 133659.0549 506755.6649 24841000.3642 -77.1765 -45.1988 4.9977 132.3248 -484.0036 -62.2874 0.0250 141 212521
|
||||||
|
21.00 5.521 27.538 33.4 5.6235 0.1227 0.5194 24.8039 0.5071 0.5071 0.123 24.804 5.624 1.148e-05 3220.6 686.199 909.755 6299.4014 -3980.4289 5622644.7715 118245.0740 508865.1236 -30427418.4019 124470.5536 504851.6137 24804779.7349 -81.0386 -38.1514 4.6723 -0.0000 -0.0000 -0.0000 0.1355 -0.6403 752.741 883.137 16158.9286 -2294.4416 5622620.9869 118277.9615 508842.6560 -30427419.3184 134364.6720 506511.3787 24804802.9837 -82.2222 -44.8829 4.9615 28.8157 -65.1022 -18.1432 0.5091 -1.0159 767.044 893.527 18231.8585 -2966.8151 5622690.5829 118267.7514 508867.8471 -30427420.2647 136420.5525 505862.7918 24804734.4536 -81.9612 -39.5614 5.1780 -66.0036 -159.9216 76.6761 -3.9699 752.118 894.327 16143.7504 -3023.4390 5622691.4819 118245.3130 508886.2187 -30427420.5630 134320.3285 505815.8670 24804733.9077 -80.7876 -35.9741 5.0481 83.8339 -498.4433 -17.6660 0.0250 155 212746
|
||||||
|
22.00 5.282 26.655 33.2 5.6623 0.1227 0.5194 24.7651 0.5074 0.5073 0.123 24.765 5.662 1.028e-05 3261.8 664.391 902.827 4302.7925 -3784.9390 5661065.5351 118289.8783 508030.0267 -30427416.9625 122507.8784 504209.8674 24766355.9564 -85.6195 -37.5774 4.3837 -0.0000 -0.0000 -0.0000 0.1387 -0.3516 752.453 876.564 16867.0911 -2180.3768 5661055.8713 118268.7156 508056.7005 -30427418.7031 135037.0603 505840.1595 24766366.8449 -88.2829 -34.3714 4.5850 15.8218 -35.7455 -9.9619 0.5091 -1.0322 770.184 893.537 19260.3746 -3224.9027 5661102.1498 118256.3594 508050.7947 -30427418.4439 137428.3008 504795.0871 24766320.8694 -87.3231 -35.6898 4.7809 -80.5241 -132.0914 86.3840 -4.2696 752.385 894.499 16777.3415 -3276.3845 5661104.1617 118260.0842 508056.1209 -30427419.2041 134946.5643 504755.6466 24766319.7183 -87.5871 -36.4712 4.4394 95.7941 -530.4400 -24.6312 0.0250 169 213011
|
||||||
|
23.00 5.064 25.874 33.1 5.7034 0.1227 0.5194 24.7240 0.5074 0.5074 0.123 24.724 5.703 9.997e-06 3236.2 649.398 913.847 3116.4418 -4410.4160 5701851.2869 118179.6276 507203.4880 -30427409.7255 121192.9344 502766.8558 24725564.4536 -90.4774 -30.2181 4.5904 -0.0000 -0.0000 -0.0000 0.1397 -0.4407 752.592 884.877 17187.3407 -2589.6808 5701887.7257 118191.0794 507180.8676 -30427408.0169 135296.0640 504564.3598 24725524.6165 -89.1693 -29.5121 4.4891 19.8336 -44.8092 -12.4878 0.5099 -0.9684 769.034 893.603 19296.5868 -3127.5585 5701890.7444 118189.5178 507190.9725 -30427407.4571 137397.4656 504035.5552 24725521.1369 -88.1483 -34.1531 4.3224 -70.5590 -135.2018 77.9048 -4.0258 752.386 894.432 17033.5250 -3182.5344 5701892.1847 118189.8591 507206.6774 -30427407.6446 135134.5963 503988.5006 24725519.2387 -87.3040 -36.3917 4.4677 90.7760 -499.6993 -23.6765 0.0250 183 213236
|
||||||
|
24.00 4.864 25.154 32.9 5.7468 0.1227 0.5194 24.6806 0.5052 0.5052 0.123 24.681 5.747 1.070e-05 3345.6 637.685 904.227 2483.0106 -3886.3438 5745453.6980 118132.1780 506345.4756 -30427398.8599 120557.0432 502442.9829 24681949.8810 -92.4110 -27.3219 4.2283 -0.0000 -0.0000 -0.0000 0.1404 -0.6148 752.531 873.618 17540.0426 -1980.4872 5745447.1982 118143.8346 506340.0320 -30427400.2426 135594.6155 504327.9657 24681957.4851 -93.1960 -26.8605 4.4696 27.6671 -62.5072 -17.4200 0.5066 -0.5434 771.769 893.604 19947.4266 -3217.7946 5745482.2394 118159.0580 506351.8578 -30427400.5482 138004.0789 503107.5058 24681922.4045 -92.7493 -28.2173 4.2941 -23.0537 -113.2281 33.3008 -4.5524 751.955 894.278 17462.9943 -3262.0372 5745481.2253 118143.4975 506355.4987 -30427400.6802 135509.0048 503060.0727 24681923.8439 -95.1095 -32.1981 4.0536 154.1495 -513.5761 -78.2716 0.0250 197 213458
|
||||||
|
25.00 4.682 24.536 32.8 5.7927 0.1227 0.5194 24.6347 0.5036 0.5036 0.123 24.635 5.793 1.068e-05 3370.8 623.409 907.931 1588.7198 -4217.7603 5791206.0479 118133.0826 505533.9414 -30427391.5300 119619.5285 501289.0007 24636189.8687 -99.1624 -31.6301 3.9222 -0.0000 -0.0000 -0.0000 0.1417 -0.2063 752.642 882.877 17846.6184 -2661.0454 5791218.2004 118136.3764 505537.5147 -30427393.5132 135873.2885 502856.8617 24636178.8650 -97.5992 -28.9300 3.7416 9.2849 -20.9770 -5.8461 0.5054 -0.8204 770.515 893.632 20026.4835 -3324.6195 5791262.9432 118129.4687 505544.7040 -30427393.1893 138058.6752 502200.3314 24636133.6975 -98.4215 -31.7238 3.6915 -67.2888 -97.5507 70.7277 -3.7926 752.331 894.290 17762.3937 -3372.0371 5791263.2089 118131.7471 505557.1022 -30427393.6640 135797.6747 502157.4075 24636134.3889 -97.4456 -29.9803 3.6409 94.1004 -462.1708 -30.8878 0.0250 211 213719
|
||||||
|
26.00 4.513 23.981 32.6 5.8412 0.1227 0.5194 24.5862 0.5031 0.5031 0.123 24.586 5.841 1.040e-05 3349.0 611.985 910.972 987.5926 -4518.3105 5839688.7435 118146.4884 504738.4249 -30427385.7939 119042.1589 500181.7915 24587700.4389 -101.6009 -27.6359 3.3656 -0.0000 -0.0000 -0.0000 0.1425 -0.7981 752.631 873.975 18089.5057 -2244.4777 5839718.1632 118133.1167 504764.9422 -30427386.8249 136119.1979 502492.7529 24587672.2310 -103.5174 -29.0297 3.3262 35.9182 -81.1484 -22.6151 0.5045 -0.9503 770.838 893.536 20186.6297 -3467.0375 5839730.2963 118135.6767 504772.3342 -30427386.2891 138214.6389 501290.7799 24587659.1500 -101.5165 -25.1917 3.3587 -52.7825 -169.8491 66.0855 -4.3203 752.186 894.367 17955.0461 -3516.1940 5839731.2309 118130.6164 504786.4782 -30427386.5397 135996.4459 501239.8359 24587657.9531 -103.5645 -32.0310 3.3177 105.7234 -527.9550 -33.7145 0.0250 225 213941
|
||||||
|
27.00 4.358 23.470 32.5 5.8922 0.1227 0.5194 24.5352 0.5031 0.5031 0.123 24.535 5.892 9.970e-06 3354.0 603.615 909.153 827.3696 -4476.7151 5890538.6685 118097.9722 503904.7005 -30427374.2155 118812.2283 499397.7275 24536838.9293 -108.6344 -25.5751 3.2719 -0.0000 -0.0000 -0.0000 0.1433 -0.4575 752.674 866.891 18289.7478 -1879.4538 5890721.9043 118100.5322 503899.5698 -30427372.4987 136288.5461 501990.2048 24536653.7406 -106.9056 -23.3600 3.1165 20.5899 -46.5178 -12.9640 0.5053 -0.6147 770.834 893.394 20358.7892 -3514.5764 5890544.8999 118109.1338 503907.7547 -30427369.3215 138362.9781 500363.4784 24536828.3907 -106.2812 -20.4760 3.5605 -36.7871 -103.8948 44.4130 -3.8846 751.861 894.097 18198.8386 -3552.1067 5890543.7749 118104.7092 503914.2080 -30427369.0466 136194.4149 500333.7934 24536828.6806 -109.2096 -22.9693 3.4644 117.4377 -452.3286 -52.6915 0.0250 239 214201
|
||||||
|
28.00 4.214 22.983 32.3 5.9460 0.1227 0.5194 24.4814 0.5017 0.5017 0.123 24.481 5.946 9.752e-06 3358.8 600.253 911.460 1293.5067 -4709.6120 5944491.3914 118056.7348 503065.8205 -30427357.4971 119232.5120 498334.8448 24482869.8712 -113.6921 -20.3176 3.1160 -0.0000 -0.0000 -0.0000 0.1422 -0.9282 752.663 875.651 18582.7790 -2515.7516 5944506.9231 118042.2068 503087.3174 -30427357.0101 136503.7184 500566.4645 24482853.9997 -112.1190 -15.4718 3.2517 41.7727 -94.3753 -26.3013 0.5032 -0.5695 772.358 893.506 20699.7746 -3620.1972 5944519.4049 118043.9391 503098.7556 -30427357.8671 138644.0917 499460.5554 24482840.4311 -111.4353 -19.4661 2.9053 -11.3825 -147.5305 26.8539 -4.4106 751.771 894.186 18470.8493 -3662.4905 5944518.5948 118045.2276 503110.8267 -30427358.1335 136401.0197 499425.2219 24482843.0831 -111.9212 -17.4188 2.8577 145.3307 -501.5864 -71.8174 0.0250 253 214426
|
||||||
|
29.00 4.081 22.541 32.2 6.0026 0.1227 0.5194 24.4248 0.5004 0.5004 0.123 24.425 6.003 9.209e-06 3359.6 591.142 918.548 1059.1294 -5217.9616 6001018.6161 118034.8639 502257.4222 -30427349.5158 118971.3067 497027.2425 24426333.4723 -117.7590 -15.9906 2.5142 -0.0000 -0.0000 -0.0000 0.1430 0.0656 752.520 881.706 18744.9634 -2959.9281 6001154.9968 118019.0132 502273.0382 -30427351.2594 136660.3435 499301.2046 24426198.7437 -117.0643 -19.6992 2.4929 -2.9543 6.6745 1.8601 0.5031 -1.1230 771.183 893.563 20688.0986 -3695.7093 6001079.5453 118022.7082 502295.6054 -30427353.4110 138590.9248 498578.1344 24426276.4634 -118.3915 -13.2062 2.4727 -107.7697 -98.1409 106.6755 -3.1669 752.126 894.180 18657.2024 -3731.7678 6001081.3828 118015.8943 502304.4338 -30427354.4051 136555.7376 498564.4786 24426275.5708 -115.9971 -14.7699 2.5174 37.7036 -426.8027 15.0812 0.0250 267 214651
|
||||||
|
30.00 3.957 22.139 32.0 6.0622 0.1227 0.5194 24.3652 0.4998 0.4998 0.123 24.365 6.062 8.549e-06 3377.2 595.276 906.699 2107.9463 -4602.1374 6060609.9678 118056.8671 501524.6116 -30427346.6167 120042.0992 496900.9138 24366739.4227 -122.0206 -12.3271 2.1970 -0.0000 -0.0000 -0.0000 0.1425 -0.0555 752.486 878.753 18832.7398 -2901.5558 6060697.4810 118045.2234 501540.9529 -30427347.3684 136751.7995 498624.0187 24366652.4723 -122.5065 -17.3871 1.9974 2.4997 -5.6474 -1.5739 0.5017 -0.9714 773.250 893.627 20938.9813 -3816.9423 6060711.3929 118060.9759 501549.6462 -30427348.8631 138863.9616 497719.0734 24366640.1764 -119.6755 -15.8767 1.7503 -88.1652 -96.3123 89.0910 -3.6015 752.005 894.251 18717.1250 -3863.6909 6060713.9442 118051.3503 501560.4125 -30427350.8383 136649.0411 497694.2030 24366638.5313 -122.5156 -14.2572 1.9607 71.4116 -456.8377 -11.3833 0.0250 281 214913
|
||||||
|
31.00 3.842 21.766 31.9 6.1248 0.1227 0.5194 24.3026 0.4990 0.4991 0.123 24.303 6.125 7.881e-06 3326.8 595.612 909.084 2742.2436 -4826.4570 6123526.4999 118036.6943 500713.1378 -30427337.9162 120659.7333 495873.3463 24303812.8330 -124.8567 -9.3595 1.1985 -0.0000 -0.0000 -0.0000 0.1403 -1.0445 752.687 864.341 18939.3448 -2072.5209 6123526.7393 118075.1498 500734.4996 -30427339.4706 136896.9685 498644.0233 24303813.9421 -124.9641 -9.1021 1.2108 47.0055 -106.1977 -29.5961 0.5001 -0.9205 773.446 893.553 21000.5969 -3884.6472 6123517.5804 118077.7311 500746.5600 -30427341.3046 138949.5552 496857.5456 24303824.6449 -125.8606 -6.7961 1.4117 -38.9093 -192.1124 56.3187 -4.4229 751.857 894.406 18844.4767 -3936.5572 6123518.4416 118081.9167 500757.8596 -30427342.3208 136791.4368 496813.4478 24303825.2047 -125.8115 -8.5470 1.3563 113.1267 -535.6010 -39.4076 0.0250 295 215133
|
||||||
|
32.00 3.734 21.409 31.7 6.1907 0.1227 0.5194 24.2367 0.4983 0.4983 0.123 24.237 6.191 7.358e-06 3343.8 609.836 897.828 4761.8936 -4258.6965 6189520.6707 118077.5391 499993.7351 -30427328.4505 122714.3851 495737.0263 24237808.1992 -129.5992 0.3638 0.7148 -0.0000 -0.0000 -0.0000 0.1398 -0.7246 752.742 857.664 19091.0075 -1778.3672 6189545.6183 118132.2463 500000.1067 -30427328.8050 137096.9600 498220.8626 24237783.1786 -129.3392 -1.9685 0.3900 32.6095 -73.6734 -20.5319 0.4987 -0.5998 774.746 893.506 21228.4677 -4004.7948 6189555.2496 118105.9167 500008.9138 -30427329.4092 139200.0683 495998.9765 24237774.9425 -129.0521 -4.3230 0.3256 -23.3703 -129.6532 35.4479 -4.2170 752.177 894.348 19025.7882 -4056.6947 6189554.3958 118083.2735 500021.0418 -30427330.9906 136986.0139 495967.4683 24237776.3249 -129.7057 0.5955 0.6885 133.7967 -484.7342 -63.5091 0.0250 309 215355
|
||||||
|
33.00 3.633 21.091 31.6 6.2599 0.1227 0.5194 24.1675 0.4978 0.4978 0.123 24.167 6.260 6.759e-06 3298.0 618.096 909.416 5988.8751 -5097.5570 6258904.7396 118180.0586 499218.7982 -30427314.1562 124030.7883 494117.7897 24168408.6776 -134.2323 1.9705 -0.1823 -0.0000 -0.0000 -0.0000 0.1384 -0.6750 752.656 868.904 19152.2825 -2570.6475 6258921.8861 118177.2767 499207.2676 -30427314.3609 137189.7216 496638.5504 24168391.5725 -133.7485 3.5254 -0.3552 30.3744 -68.6235 -19.1246 0.4993 -0.7804 775.447 893.663 21260.4396 -4100.7218 6258879.7240 118188.9162 499227.8116 -30427314.7878 139316.1088 495120.3351 24168434.9676 -132.3500 2.1504 -0.4975 -42.4709 -141.4688 53.7206 -4.2527 751.653 894.509 19004.1142 -4155.7300 6258880.9798 118184.8884 499237.7102 -30427315.0873 137061.2309 495083.0085 24168433.8556 -132.7977 2.5620 -0.4905 118.5364 -505.2260 -47.6544 0.0250 323 215617
|
||||||
|
34.00 3.538 20.762 31.4 6.3326 0.1227 0.5194 24.0948 0.4974 0.4974 0.123 24.095 6.333 6.650e-06 3276.4 633.135 914.948 7780.9738 -5537.4588 6331677.1732 118188.7967 498415.9396 -30427297.0652 125833.8005 492888.9623 24095618.7894 -135.4732 7.7622 -1.1239 -0.0000 -0.0000 -0.0000 0.1368 -0.7250 752.733 876.965 19153.1782 -3163.4704 6331691.1716 118190.7466 498399.4667 -30427297.1084 137203.5627 495246.5778 24095605.4325 -137.4379 7.2933 -0.6714 32.6249 -73.7081 -20.5416 0.4992 -0.6832 777.010 893.491 21341.2353 -4193.7981 6331733.5444 118190.3242 498422.2614 -30427297.4633 139385.6256 494225.4834 24095562.2904 -135.7362 5.5734 -1.2443 -31.1408 -137.4738 43.2241 -4.3231 751.919 894.290 19054.2735 -4245.9122 6331733.2503 118186.4799 498431.8329 -30427297.9523 137109.7515 494202.2770 24095563.9989 -135.5836 9.3171 -1.0496 130.7844 -503.3049 -58.7288 0.0250 337 215839
|
||||||
|
35.00 3.449 20.455 35.4 6.4091 0.1227 0.5194 24.0183 0.4990 0.4990 0.123 24.018 6.409 7.135e-06 3370.4 638.734 916.108 8653.5953 -5612.5364 6407893.4899 118140.8223 497559.2854 -30427281.3192 126652.4416 491959.5799 24019386.2176 -137.3686 14.1992 -1.8977 -0.0000 -0.0000 -0.0000 0.1355 -0.6738 752.804 872.807 19262.6205 -2919.7282 6407852.9872 118135.1263 497563.1502 -30427281.1380 137263.9829 494653.1186 24019427.1827 -140.1284 14.0241 -1.4041 30.3238 -68.5093 -19.0928 0.5003 -0.6439 775.742 893.420 21279.0401 -4231.2033 6407848.6286 118170.5823 497602.2436 -30427282.2386 139306.7392 493380.5006 24019431.1323 -140.9124 13.1981 -1.7686 -29.7779 -128.6110 41.0089 -4.0564 751.760 894.261 19141.9777 -4276.8945 6407848.5127 118170.1258 497608.7431 -30427281.9075 137174.0203 493355.0889 24019431.8467 -141.8069 13.2136 -1.9105 122.4477 -472.5280 -54.8368 0.0250 351 220101
|
||||||
|
36.00 3.366 20.174 35.2 6.4894 0.1227 0.5194 23.9380 0.4984 0.4984 0.123 23.938 6.489 6.616e-06 3322.4 631.454 909.478 8338.4403 -5256.7403 6488067.4641 118111.9967 496784.9529 -30427267.5787 126311.4368 491546.8000 23939197.0334 -143.1562 22.6088 -2.7000 -0.0000 -0.0000 -0.0000 0.1361 -0.7247 752.646 868.837 19347.8322 -2732.7882 6488023.1331 118085.8548 496784.9849 -30427267.8467 137284.9493 494080.3424 23939241.7689 -141.6252 26.3720 -2.7401 32.6115 -73.6779 -20.5332 0.4995 -0.6533 775.901 893.593 21358.6497 -4267.1975 6488028.5064 118087.8132 496797.0702 -30427268.2933 139305.8048 492560.6642 23939237.3371 -141.8120 28.8829 -2.3203 -28.3659 -134.6553 40.4443 -4.0604 752.093 894.237 19253.5375 -4304.3475 6488028.2716 118065.8954 496809.8454 -30427268.8771 137184.9088 492535.5013 23939238.2344 -141.8109 20.9967 -2.7878 121.7507 -473.8077 -54.0736 0.0250 365 220321
|
||||||
|
37.00 3.288 19.910 35.0 6.5737 0.1227 0.5194 23.8537 0.4986 0.4986 0.123 23.854 6.574 6.104e-06 3264.6 624.456 937.073 7918.1676 -7025.1538 6572109.3120 118105.3279 496025.2125 -30427255.8410 125875.0336 489033.0373 23855143.0854 -145.8437 28.4685 -3.3039 -0.0000 -0.0000 -0.0000 0.1363 -0.7378 752.542 896.618 19298.7805 -4508.3396 6572044.4747 118086.3370 496052.8214 -30427257.2709 137236.8683 491559.7573 23855208.5907 -145.8959 27.0053 -3.4528 33.2005 -75.0086 -20.9040 0.5015 -0.7954 782.175 893.574 21829.1674 -4333.6619 6572106.8397 118093.0826 496056.4729 -30427257.6096 139779.1744 491766.8869 23855147.0305 -144.2334 32.8805 -3.2044 -41.0371 -149.2462 53.3336 -4.8401 751.626 894.576 19224.5813 -4392.7840 6572106.6417 118078.2644 496073.6214 -30427257.5623 137155.6779 491707.7015 23855148.0714 -145.3769 28.9873 -3.2919 143.5798 -566.3436 -62.9067 0.0250 379 220544
|
||||||
|
38.00 3.214 19.660 34.9 6.6623 0.1227 0.5194 23.7651 0.5000 0.5000 0.123 23.765 6.662 5.609e-06 3228.0 606.773 914.299 6694.7598 -5655.5762 6660243.1405 118112.5727 495279.3351 -30427240.7893 124668.4288 489656.2601 23766993.6148 -151.4777 34.7756 -4.0368 -0.0000 -0.0000 -0.0000 0.1384 -0.3837 752.751 880.504 19289.9617 -3567.3816 6660268.6296 118115.5380 495294.2400 -30427240.9624 137249.4720 491756.2994 23766968.3075 -148.4228 32.3732 -4.3335 17.2687 -39.0144 -10.8729 0.5022 -0.8558 779.218 893.580 21520.1930 -4389.6801 6660293.1018 118129.1146 495310.6951 -30427240.0643 139499.1360 490938.9682 23766942.8051 -149.2440 36.3156 -4.2635 -62.6065 -118.8895 69.0023 -4.1087 751.910 894.391 19182.4353 -4438.9451 6660294.3934 118126.5631 495316.3698 -30427242.1847 137128.8491 490919.3861 23766943.5402 -150.2529 34.3222 -4.3308 105.0258 -497.6142 -36.5440 0.0250 393 220809
|
||||||
|
39.00 3.144 19.422 34.7 6.7555 0.1227 0.5194 23.6719 0.4997 0.4997 0.123 23.672 6.755 5.126e-06 3181.6 566.018 918.008 3463.4767 -5922.6874 6753155.8645 118130.8682 494538.8054 -30427226.7930 121448.9344 488652.5317 23674066.1694 -154.6702 35.8797 -5.1668 -0.0000 -0.0000 -0.0000 0.1411 -1.0147 752.692 874.558 19231.1385 -3236.3876 6753129.8866 118157.1508 494540.1280 -30427228.3081 137235.5157 491342.8704 23674092.5324 -150.4617 39.4671 -5.5675 45.6642 -103.1672 -28.7515 0.5014 -0.7615 784.774 893.544 21844.7250 -4421.7392 6753167.9847 118154.6932 494550.7165 -30427228.4285 139849.4123 490172.5883 23674055.3587 -152.3501 41.1601 -5.3780 -25.4102 -174.2416 42.3229 -5.2841 751.675 894.761 19123.9784 -4493.7508 6753169.5965 118147.0175 494566.2187 -30427229.2447 137118.9803 490117.2229 23674054.3307 -152.5128 41.4120 -5.2041 166.7199 -608.3134 -78.6479 0.0250 407 221032
|
||||||
|
40.00 3.078 19.194 34.5 6.8534 0.1227 0.5194 23.5740 0.4973 0.4973 0.123 23.574 6.853 4.766e-06 3184.8 552.127 921.237 2594.1359 -6228.1460 6850990.0474 118175.2458 493837.9236 -30427214.7906 120609.7365 487659.3797 23576219.2649 -156.8627 48.3220 -5.8074 -0.0000 -0.0000 -0.0000 0.1419 -0.7867 753.002 875.682 19232.4960 -3411.4303 6850976.5513 118188.6687 493846.7129 -30427216.2803 137265.8603 490479.0770 23576233.7168 -157.9520 49.9813 -6.0353 35.4033 -79.9852 -22.2910 0.4992 -0.6854 780.726 893.538 21438.1023 -4525.1380 6851001.2536 118199.3183 493862.4249 -30427216.8017 139492.6421 489387.8697 23576209.4586 -155.8899 50.5890 -5.9226 -28.5671 -143.9556 41.6794 -4.4351 751.897 894.318 19120.9914 -4574.5613 6851001.6394 118215.9242 493870.9120 -30427216.8082 137178.8885 489342.9399 23576209.5461 -156.1239 50.8200 -5.9498 135.6198 -514.8964 -61.6975 0.0250 421 221255
|
||||||
|
41.00 3.016 18.973 34.4 6.9563 0.1227 0.5194 23.4711 0.4965 0.4965 0.123 23.471 6.956 4.470e-06 3158.2 567.007 918.574 4104.9607 -6107.0993 6953966.5887 118242.4714 493153.8240 -30427204.3122 122186.5685 487107.9301 23473231.0712 -156.9722 58.3613 -6.9318 -0.0000 -0.0000 -0.0000 0.1410 -0.4596 752.547 887.734 19159.2433 -4232.2583 6954011.2809 118226.9023 493166.7022 -30427203.4999 137223.8507 488996.6322 23473185.3782 -157.2362 60.9536 -7.0495 20.6848 -46.7323 -13.0238 0.4991 -0.9552 784.911 893.592 21657.0984 -4593.8775 6954015.3214 118224.2868 493175.7938 -30427202.9416 139730.6752 488647.6091 23473180.4520 -156.6881 59.0484 -7.1497 -68.4754 -135.8925 76.1365 -4.5765 751.476 894.736 19045.4077 -4655.3722 6954016.1566 118230.9898 493192.3769 -30427203.3595 137117.8240 488590.3584 23473179.9934 -157.1459 59.0794 -7.2386 116.7913 -554.4582 -40.5130 0.0250 435 221515
|
||||||
|
42.00 2.957 18.766 34.2 7.0646 0.1227 0.5194 23.3628 0.4951 0.4952 0.123 23.363 7.065 4.229e-06 3113.2 570.765 911.130 4486.1387 -5745.8082 7062499.3457 118380.3572 492408.4765 -30427183.4403 122714.3211 486732.2903 23364676.6230 -156.2795 67.9747 -8.4045 -0.0000 -0.0000 -0.0000 0.1392 -0.8231 752.329 868.684 18978.0718 -3139.9645 7062452.6735 118380.9162 492432.3307 -30427184.2163 137194.3979 489374.1902 23364722.7247 -154.1662 67.7032 -8.4836 37.0425 -83.6887 -23.3231 0.4965 -0.9787 784.323 893.586 21404.7454 -4700.7283 7062484.1559 118374.1023 492456.7538 -30427184.7433 139632.0512 487828.7877 23364691.8794 -155.0758 68.1398 -8.6742 -54.3067 -175.0379 68.0262 -4.7812 751.821 894.601 18871.4798 -4763.8121 7062484.6700 118381.5690 492471.3209 -30427185.8423 137096.9003 487782.6272 23364692.7109 -156.1188 72.3207 -8.5227 123.8170 -577.4657 -44.1258 0.0250 449 221738
|
||||||
|
43.00 2.901 18.565 34.0 7.1785 0.1227 0.5194 23.2489 0.4937 0.4937 0.123 23.249 7.178 4.015e-06 3092.4 577.825 934.104 5212.3453 -7225.0257 7176286.2563 118430.5631 491654.5636 -30427162.0046 123478.3659 484507.2059 23250865.7441 -157.0605 79.5560 -9.9249 -0.0000 -0.0000 -0.0000 0.1391 -0.9075 752.751 890.032 18866.9289 -4486.6382 7176260.7989 118450.1855 491643.7760 -30427160.8882 137157.5765 487233.8309 23250890.3782 -157.7352 78.8419 -9.9276 40.8413 -92.2710 -25.7149 0.4963 -0.8220 781.247 893.563 21048.5369 -4721.3127 7176261.2195 118439.5316 491672.1174 -30427160.8473 139331.6608 487038.1774 23250889.8898 -158.0102 78.7490 -10.0894 -35.8840 -168.9962 51.0103 -4.4806 751.881 894.463 18780.9604 -4773.8178 7176262.4842 118452.9503 491682.3538 -30427161.9357 137070.6645 486989.1259 23250888.6493 -156.8567 77.0580 -10.1789 124.9129 -532.2779 -50.2321 0.0250 463 221959
|
||||||
|
44.00 2.848 18.374 33.9 7.2984 0.1227 0.5194 23.1290 0.4929 0.4929 0.123 23.129 7.298 3.794e-06 3081.2 590.169 933.412 6249.6429 -7327.6568 7296553.3165 118575.8900 490957.5538 -30427135.2366 124674.1760 483725.4624 23130570.6457 -156.7734 89.8189 -11.5560 -0.0000 -0.0000 -0.0000 0.1373 -0.5844 752.718 888.107 18761.8641 -4539.3635 7296545.2352 118554.7786 490993.6107 -30427135.8851 137159.8635 486547.2224 23130579.5018 -157.0635 89.7058 -11.2783 26.2995 -59.4174 -16.5590 0.4955 -0.7858 781.945 893.468 20949.8568 -4879.1535 7296526.0540 118573.8548 491010.4782 -30427136.1273 139365.9264 486211.9538 23130599.3930 -157.9500 87.9805 -11.4206 -47.0442 -132.7612 56.7848 -4.1603 751.516 894.557 18701.6691 -4933.9040 7296526.8780 118568.8074 491018.7058 -30427137.0005 137112.3584 486183.7243 23130598.6220 -157.9078 92.2819 -11.6183 113.8803 -496.3314 -44.5381 0.0250 477 222220
|
||||||
|
45.00 2.798 18.186 33.7 7.4246 0.1227 0.5194 23.0028 0.4957 0.4957 0.123 23.003 7.425 3.585e-06 3405.0 616.009 918.660 8352.3794 -6512.6462 7422691.7917 118600.6879 490361.0880 -30427124.5795 126797.3504 483955.7216 23004419.4699 -157.1900 99.4311 -12.7858 -0.0000 -0.0000 -0.0000 0.1356 -0.4681 752.885 877.603 18643.2301 -3982.1377 7422678.6639 118605.3556 490386.4854 -30427124.6666 137088.9045 486511.8670 23004432.5879 -155.9602 102.4088 -13.1498 21.0671 -47.5960 -13.2645 0.4977 -0.9837 787.151 893.522 21139.0354 -4971.6187 7422696.1613 118617.1700 490410.1547 -30427125.0893 139602.0864 485533.6709 23004416.2067 -156.1650 102.9012 -13.3251 -70.7501 -139.4131 78.5527 -4.5834 751.448 894.504 18531.9129 -5042.9628 7422697.2752 118613.5562 490425.0774 -30427126.3910 136992.6827 485485.0583 23004415.9362 -154.9011 104.0175 -13.1168 114.4448 -557.8163 -38.0515 0.0500 491 222440
|
||||||
|
46.00 2.751 18.011 33.5 7.5577 0.1227 0.5194 22.8697 0.4949 0.4949 0.123 22.870 7.558 3.425e-06 3402.6 595.852 932.621 6878.6259 -7459.2385 7555559.3002 118664.5471 489744.2276 -30427113.0695 125390.8608 482397.1589 22871539.5298 -153.9544 113.7684 -14.3631 -0.0000 -0.0000 -0.0000 0.1368 -0.7342 752.934 890.304 18464.0212 -4831.4368 7555555.4733 118677.2234 489755.1218 -30427113.2866 136981.9264 485043.1163 22871542.8299 -151.9074 114.7183 -14.3592 33.0416 -74.6496 -20.8040 0.4976 -0.8212 784.018 893.578 20710.2892 -5042.4814 7555572.2983 118657.3535 489774.3751 -30427112.4084 139213.8453 484845.2997 22871526.2900 -152.6643 112.8374 -14.3680 -43.6033 -151.2946 55.8410 -4.3899 751.363 894.453 18396.3881 -5095.9592 7555573.5627 118666.3050 489784.6614 -30427113.3987 136909.0133 484804.2629 22871525.7066 -154.1813 112.4076 -14.3423 120.9100 -522.9728 -47.7415 0.0500 505 222704
|
||||||
|
47.00 2.705 17.844 33.4 7.6980 0.1227 0.5194 22.7294 0.4961 0.4961 0.123 22.729 7.698 3.228e-06 3390.4 569.115 936.418 5006.4897 -7739.2744 7695460.0177 118701.8975 489122.1120 -30427095.9954 123554.9184 481510.8869 22731620.4701 -159.1708 121.0988 -15.3529 -0.0000 -0.0000 -0.0000 0.1380 -0.5963 752.910 896.305 18346.9663 -5254.4314 7695422.6599 118741.6756 489107.6622 -30427094.3441 136937.2075 483975.8469 22731656.2924 -157.6177 125.3470 -15.4578 26.8343 -60.6257 -16.8957 0.4991 -0.9495 785.184 893.626 20617.9212 -5097.9546 7695452.4999 118749.5818 489123.9289 -30427094.3468 139212.8768 484159.7719 22731626.5638 -157.5464 125.4454 -15.6993 -61.7912 -149.2512 71.7298 -4.3287 751.583 894.585 18250.8797 -5155.7542 7695452.6468 118752.8884 489134.8729 -30427094.6515 136852.7531 484112.9696 22731626.6453 -156.5365 127.4139 -15.8221 106.1776 -528.7361 -34.0283 0.0500 519 222926
|
||||||
|
48.00 2.662 17.684 33.2 7.8460 0.1227 0.5194 22.5814 0.4944 0.4944 0.123 22.581 7.846 3.047e-06 3345.4 528.274 929.988 2101.1351 -7374.8232 7843412.2585 118757.6884 488456.7680 -30427079.9590 120697.0197 481208.8800 22583650.0278 -159.5934 135.9697 -16.9962 -0.0000 -0.0000 -0.0000 0.1416 -0.6037 752.458 899.048 18171.3787 -5490.7868 7843421.8270 118777.8314 488468.9102 -30427078.4940 136790.7499 483119.1026 22583640.4863 -156.1590 138.6429 -17.2185 27.1685 -61.3807 -17.1061 0.4975 -1.0000 788.924 893.540 20724.2971 -5152.0725 7843453.2407 118770.6079 488479.2711 -30427078.5076 139339.8315 483468.4933 22583609.0189 -155.7414 134.8837 -17.2982 -66.1725 -154.7217 76.2349 -4.7174 751.728 894.532 18094.5044 -5211.7880 7843453.2324 118789.1807 488494.8196 -30427079.7109 136722.0651 483418.5623 22583608.5228 -156.6017 136.4648 -17.4005 118.9509 -572.9633 -40.3243 0.0500 533 223149
|
||||||
|
49.00 2.622 17.527 33.1 8.0023 0.1227 0.5194 22.4251 0.4955 0.4955 0.123 22.425 8.002 2.937e-06 3270.6 508.299 925.001 734.8508 -7141.3392 7999473.4300 118896.2143 487850.2934 -30427061.7239 119474.3339 480843.5625 22427569.9903 -157.8827 145.2787 -18.5657 -0.0000 -0.0000 -0.0000 0.1429 -0.1238 752.779 888.595 17965.8473 -4932.2242 7999509.0262 118921.3066 487838.9405 -30427059.6947 136727.8805 483044.1824 22427532.3628 -158.2251 146.4307 -18.5340 5.5727 -12.5903 -3.5088 0.4983 -0.8448 786.750 893.593 20319.4853 -5229.4768 7999527.8415 118908.8991 487852.7502 -30427060.3635 139065.8859 482773.2850 22427514.0486 -156.0466 143.5816 -18.4603 -73.2828 -91.4458 75.3467 -3.9726 751.816 894.344 17887.5203 -5282.3133 7999528.4516 118918.9599 487868.1778 -30427060.7893 136644.9963 482728.3259 22427513.9729 -157.6197 147.4978 -18.4181 99.9189 -482.7532 -33.7061 0.0500 547 223412
|
||||||
|
50.00 2.583 17.380 32.9 8.1676 0.1227 0.5194 22.2598 0.4927 0.4927 0.123 22.260 8.168 2.789e-06 3223.8 575.204 918.040 5535.7218 -6767.4103 8165561.1741 118972.2719 487113.9840 -30427031.3018 124352.0000 480502.2706 22261450.2866 -157.8867 151.7245 -19.3689 -0.0000 -0.0000 -0.0000 0.1380 -0.7414 752.586 876.026 17852.6841 -4197.0379 8165559.8587 119021.5434 487118.4178 -30427029.5154 136715.3195 483073.2165 22261450.1889 -158.3666 153.6728 -19.5535 33.3643 -75.3786 -21.0071 0.4945 -0.7396 782.241 893.557 19852.7907 -5291.6886 8165550.6938 119018.7530 487138.7982 -30427030.6914 138715.3365 482001.1963 22261459.5653 -157.3968 154.2541 -20.0718 -35.6728 -144.4157 48.0300 -4.0086 751.597 894.388 17781.8075 -5342.9142 8165551.1134 119025.1615 487152.1458 -30427031.3530 136645.0645 481956.5536 22261460.2565 -156.0887 158.0982 -19.9623 111.3583 -476.5972 -44.5452 0.0500 561 223635
|
||||||
|
51.00 2.546 17.238 32.8 8.3423 0.1227 0.5194 22.0851 0.4919 0.4919 0.123 22.085 8.342 2.655e-06 3197.2 618.902 919.787 8407.8959 -7055.9756 8340719.2353 119268.6431 486469.6605 -30426995.9953 127522.8203 479583.1867 22086253.9390 -147.9288 173.8018 -22.7354 -0.0000 -0.0000 -0.0000 0.1342 -0.7500 752.889 875.475 17625.5764 -4309.2549 8340725.1830 119244.7284 486466.8907 -30426995.2216 136718.6731 482328.3881 22086248.3809 -147.2361 175.5096 -22.7279 33.7538 -76.2587 -21.2524 0.4937 -0.6919 786.588 893.530 19837.9784 -5447.4106 8340740.2307 119285.6372 486484.5902 -30426995.6627 138973.8069 481218.7195 22086232.7158 -144.6641 179.4405 -22.8372 -30.8238 -140.8363 43.3252 -4.4820 751.700 894.452 17488.7860 -5495.3093 8340740.3548 119276.3743 486496.0462 -30426996.3311 136614.8608 481178.5074 22086233.1021 -146.2362 177.9200 -23.2751 137.1239 -520.2736 -62.4196 0.0500 575 223858
|
||||||
|
52.00 2.511 17.105 32.6 8.5274 0.1227 0.5194 21.9000 0.4919 0.4919 0.123 21.900 8.527 2.500e-06 3167.2 680.456 922.814 12505.5505 -7252.6829 8525562.6675 119234.6975 485793.3867 -30426977.5346 131599.6331 478726.8558 21901391.3307 -148.1969 187.2310 -23.6605 -0.0000 -0.0000 -0.0000 0.1301 -0.6322 752.689 881.340 17383.6801 -4659.4196 8525538.9256 119273.5754 485778.0658 -30426977.1861 136502.4981 481302.1243 21901414.5999 -149.1436 184.2526 -23.7577 28.4510 -64.2782 -17.9136 0.4940 -0.7852 789.865 893.568 19814.7168 -5426.0622 8525557.6620 119272.6495 485781.7920 -30426976.9290 138928.3755 480543.7262 21901395.3582 -148.0523 188.4699 -23.8957 -44.8393 -137.5686 55.3767 -4.5651 751.569 894.556 17325.0144 -5477.6849 8525556.4489 119249.2084 485799.1858 -30426977.3793 136433.8816 480501.9067 21901397.2708 -146.6749 186.2366 -24.2729 132.1514 -537.4365 -56.0618 0.0500 589 224121
|
||||||
|
53.00 2.477 16.979 32.5 8.7236 0.1227 0.5194 21.7038 0.4953 0.4953 0.123 21.704 8.724 2.330e-06 3127.6 598.654 917.893 6950.7889 -6939.3352 8720550.0320 119306.7402 485269.1698 -30426964.7667 126101.0944 478529.9570 21706389.6625 -148.4388 197.5235 -25.2241 -0.0000 -0.0000 -0.0000 0.1352 -0.7892 752.961 871.622 17236.4475 -4077.3997 8720534.3568 119355.5380 485246.7911 -30426963.7029 136438.5280 481365.3289 21706404.3165 -150.1796 194.5869 -25.0904 35.5159 -80.2397 -22.3619 0.4969 -0.8891 787.270 893.579 19408.8288 -5441.1443 8720545.1181 119361.5754 485250.9191 -30426963.3070 138626.2827 480002.3191 21706393.1189 -150.6033 198.0962 -25.2274 -47.4673 -163.2229 60.6213 -4.4323 751.593 894.391 17108.7010 -5491.6920 8720546.1504 119348.1994 485267.9111 -30426963.1829 136312.0213 479968.2235 21706392.5898 -148.6467 199.8942 -25.2301 116.4810 -533.6244 -42.6053 0.0500 603 224345
|
||||||
|
54.00 2.446 16.852 32.3 8.9318 0.1227 0.5194 21.4956 0.4932 0.4932 0.123 21.496 8.932 2.262e-06 3105.4 540.131 934.327 3027.0881 -7970.8107 8928850.1639 119379.8111 484570.5067 -30426941.3707 122249.4848 476805.1168 21498064.9141 -153.1201 206.9491 -26.2317 -0.0000 -0.0000 -0.0000 0.1396 -0.7333 752.665 895.858 17033.2241 -5607.7219 8928901.3617 119356.5620 484572.4978 -30426940.3761 136245.0347 479171.0213 21498012.4480 -151.6845 203.7248 -26.7058 33.0018 -74.5597 -20.7789 0.4963 -0.5833 785.306 893.586 19096.9406 -5466.5474 8928888.1849 119365.0442 484584.9920 -30426940.4990 138307.3365 479328.0114 21498025.7540 -152.4405 209.9813 -26.9159 -21.4464 -129.0079 33.6693 -4.1116 751.586 894.264 16965.0846 -5504.3218 8928887.3694 119363.9988 484587.2889 -30426940.9416 136174.3189 479299.5918 21498026.5108 -152.4033 211.1636 -26.7770 130.5815 -472.4783 -62.0520 0.0500 617 224608
|
||||||
|
55.00 2.415 16.739 32.2 9.1531 0.1227 0.5194 21.2743 0.4899 0.4899 0.123 21.274 9.153 2.058e-06 3077.6 563.637 948.433 4548.2394 -8889.9001 9150727.2982 119497.2212 483906.8942 -30426910.6705 123896.3371 475237.9543 21276155.8774 -151.5901 218.5694 -27.5552 -0.0000 -0.0000 -0.0000 0.1369 -0.8392 752.512 900.423 16836.8794 -5933.2606 9150739.9494 119486.9556 483912.8640 -30426910.0841 136172.4331 478201.1762 21276142.9773 -151.5149 218.5519 -27.5391 37.7668 -85.3250 -23.7791 0.4932 -0.6134 790.441 893.501 19227.5755 -5517.8415 9150726.5000 119490.1044 483933.1840 -30426911.4083 138557.6832 478627.9611 21276156.2314 -153.7616 219.9949 -28.0706 -19.4853 -142.5770 33.4730 -4.7033 751.727 894.392 16773.1546 -5566.4469 9150725.3824 119480.0820 483943.6231 -30426910.6047 136103.5392 478591.7499 21276157.6550 -151.7799 214.1851 -28.2868 154.4050 -535.4402 -76.0135 0.0500 631 224830
|
||||||
|
56.00 2.387 16.624 32.0 9.3885 0.1227 0.5194 21.0389 0.4924 0.4924 0.123 21.039 9.389 1.966e-06 3029.0 657.363 935.530 10380.6557 -8164.8506 9386500.0005 119718.0767 483166.9725 -30426869.3516 129945.0325 475231.7554 21040340.4697 -161.4657 227.3940 -29.0227 -0.0000 -0.0000 -0.0000 0.1314 -0.7245 752.770 896.621 16512.6475 -5756.7950 9386475.6104 119738.9834 483167.1360 -30426867.8772 136087.0059 477639.3605 21040363.0253 -158.0634 227.8259 -29.3428 32.6058 -73.6649 -20.5296 0.4953 -0.8614 790.241 893.589 18867.6875 -5572.7506 9386502.7365 119749.9871 483181.3440 -30426868.3785 138466.5387 477846.5010 21040336.2136 -156.4441 231.4907 -29.2085 -47.7993 -154.0700 59.8755 -4.5134 751.618 894.501 16461.2707 -5626.9604 9386502.7321 119747.4527 483202.6098 -30426868.8663 136057.1392 477801.2091 21040337.2956 -153.4223 228.7239 -29.4479 122.7101 -539.2950 -47.4823 0.0500 645 225052
|
||||||
|
57.00 2.359 16.511 31.9 9.6394 0.1227 0.5194 20.7880 0.4984 0.4984 0.123 20.788 9.639 1.901e-06 2969.6 645.151 940.583 9436.4225 -8456.9039 9636187.2528 119710.1962 482545.8276 -30426851.6385 128998.4171 474327.3330 20790633.3852 -156.3959 238.2269 -30.3900 -0.0000 -0.0000 -0.0000 0.1322 -0.5517 752.680 897.196 16291.0690 -5760.1180 9636208.7008 119767.4804 482523.8187 -30426850.1717 135899.8016 477001.0062 20790610.6112 -156.8286 242.3343 -31.0710 24.8289 -56.0948 -15.6330 0.5017 -0.9023 791.579 893.584 18664.6574 -5546.1230 9636179.5883 119781.4708 482549.4187 -30426850.5454 138286.7029 477239.9438 20790640.0637 -154.8579 241.8210 -30.8311 -59.3924 -140.3161 68.5882 -4.4409 751.413 894.558 16198.2568 -5602.6478 9636180.3736 119784.4404 482558.5209 -30426850.9239 135833.6341 477196.5701 20790639.3235 -154.0247 246.1197 -30.8078 115.6292 -535.7352 -41.6105 0.0500 659 225316
|
||||||
|
58.00 2.333 16.406 31.7 9.9072 0.1227 0.5194 20.5202 0.4955 0.4955 0.123 20.520 9.907 1.816e-06 2921.4 558.051 947.896 3819.9862 -8902.9094 9903714.8791 119771.0218 481953.5254 -30426834.1733 123423.6757 473309.6617 20523087.0745 -159.7711 253.3235 -32.3842 -0.0000 -0.0000 -0.0000 0.1380 -0.7947 752.988 906.933 16030.4008 -6389.7830 9903747.4803 119811.7258 481932.5511 -30426833.1138 135683.4731 475794.9938 20523053.8557 -162.6012 252.6195 -32.1317 35.7622 -80.7960 -22.5169 0.4994 -0.6367 786.198 893.592 18090.9207 -5569.7928 9903720.4100 119829.6458 481958.6880 -30426833.3780 137761.1733 476637.2210 20523081.2968 -159.3404 251.0727 -32.0588 -23.6642 -140.2224 36.9095 -4.1275 751.211 894.288 15980.6901 -5604.1160 9903720.1626 119824.4575 481960.1778 -30426833.9394 135651.0080 476616.8215 20523081.9166 -157.0284 251.9747 -32.3324 126.3215 -479.0791 -57.5260 0.0500 673 225540
|
||||||
|
59.00 2.308 16.305 31.6 10.1934 0.1227 0.5194 20.2340 0.4931 0.4931 0.123 20.234 10.193 1.733e-06 2866.2 574.060 959.702 4618.0065 -9771.3229 10190498.5532 120061.3812 481417.6854 -30426803.0760 124524.8043 471913.9918 20236270.1208 -160.0984 265.4599 -33.9786 -0.0000 -0.0000 -0.0000 0.1357 -1.0059 752.544 911.896 15698.3559 -6820.2745 10190483.5258 120076.7114 481414.4462 -30426803.0076 135612.8427 474864.1431 20236285.7362 -161.0933 262.6365 -34.0619 45.2674 -102.2708 -28.5017 0.4970 -0.6774 793.133 893.558 18158.6647 -5692.2058 10190491.2501 120084.7711 481435.4631 -30426803.3822 138092.4800 476004.9541 20236278.0786 -158.0504 264.6979 -34.0486 -17.9644 -165.5026 34.7301 -4.9328 751.263 894.396 15643.9941 -5741.8848 10190490.0776 120097.9295 481448.3307 -30426804.1170 135578.7051 475976.8855 20236279.8342 -160.7108 264.5780 -34.3165 158.7538 -564.7549 -76.5369 0.0500 687 225802
|
||||||
|
60.00 2.285 16.207 35.4 10.5000 0.1227 0.5194 19.9274 0.4968 0.4968 0.123 19.927 10.500 1.861e-06 2924.2 661.589 924.272 9802.2695 -7615.8442 10497374.9866 120155.3119 480807.8685 -30426776.6018 129800.4437 473459.9977 19929366.8080 -160.6315 274.0992 -34.8983 -0.0000 -0.0000 -0.0000 0.1313 -0.4100 752.391 887.649 15419.2476 -5360.5323 10497372.1276 120195.1370 480797.2729 -30426774.6902 135459.1488 475712.1614 19929367.6510 -158.0042 277.2453 -35.1782 18.4520 -41.6879 -11.6179 0.4993 -0.9076 789.403 893.621 17586.1061 -5740.9144 10497366.5947 120224.9311 480813.2516 -30426774.4334 137638.0587 475357.2466 19929372.6324 -162.1574 282.5243 -35.3846 -66.2579 -126.3979 73.0920 -3.9491 751.307 894.395 15354.2936 -5782.9604 10497366.5810 120221.8420 480830.2791 -30426775.4704 135416.5163 475325.7001 19929373.0869 -161.2619 275.8757 -35.5977 93.0072 -486.2191 -27.1860 0.0500 701 230025
|
||||||
|
61.00 2.262 16.116 35.2 10.8290 0.1227 0.5194 19.5984 0.4972 0.4972 0.123 19.598 10.829 1.788e-06 2847.0 573.483 945.301 4174.6449 -8948.2188 10825683.4371 120271.0538 480367.8009 -30426761.0391 124290.8459 471705.9936 19601040.9548 -163.5790 287.4233 -36.8105 -0.0000 -0.0000 -0.0000 0.1361 -0.9019 752.613 899.704 15057.4644 -6136.1578 10825667.1050 120351.7492 480340.3485 -30426759.6348 135244.3733 474482.8677 19601055.2542 -163.7557 290.1969 -36.8558 40.5884 -91.6997 -25.5556 0.5004 -0.5601 789.469 893.458 17233.7857 -5760.1384 10825649.5485 120351.7194 480363.0258 -30426759.1292 137436.6293 474885.1881 19601073.3030 -159.2179 286.7018 -37.0336 -11.6858 -143.9739 26.7186 -4.4114 751.582 894.263 15004.0498 -5805.1202 10825649.2132 120355.1242 480376.5085 -30426759.3584 135196.0533 474863.1081 19601073.6665 -157.0465 290.0352 -36.8109 146.2500 -500.7920 -72.7225 0.0500 715 230248
|
||||||
|
62.00 2.241 16.026 35.0 11.1828 0.1227 0.5194 19.2446 0.4938 0.4938 0.123 19.245 11.183 1.731e-06 2720.8 629.121 954.689 7186.3538 -9644.7365 11180352.8959 120563.7428 479802.3005 -30426723.9137 127596.9835 470457.6352 19246332.8922 -161.9436 300.2819 -38.2868 -0.0000 -0.0000 -0.0000 0.1321 -0.5494 752.687 910.805 14675.5316 -6931.2244 11180340.5036 120627.4612 479781.1627 -30426722.3623 135147.2043 473156.7675 19246342.9393 -160.0522 301.8072 -38.6148 24.7259 -55.8622 -15.5682 0.4978 -0.8847 791.875 893.608 16965.2699 -5874.9649 11180357.3340 120620.2292 479814.4925 -30426723.0826 137433.8560 474256.7465 19246326.4641 -158.9911 300.6841 -38.7070 -57.8457 -138.4338 67.0034 -4.2546 751.910 894.522 14622.7749 -5927.3119 11180357.6253 120632.7348 479822.2756 -30426722.9610 135094.5792 474191.8889 19246327.3741 -157.1930 301.2642 -38.9528 108.8949 -515.1441 -37.9814 0.0500 729 230511
|
||||||
|
63.00 2.221 15.940 34.9 11.5641 0.1227 0.5194 18.8633 0.4953 0.4953 0.123 18.863 11.564 1.693e-06 2636.8 763.098 956.087 14901.7657 -9805.2811 11561394.4802 120670.6954 479021.3049 -30426681.3125 135416.7381 469532.0544 18865247.0458 -161.4858 313.4504 -39.9479 -0.0000 -0.0000 -0.0000 0.1247 -0.4724 752.707 914.656 14352.3007 -7213.7415 11561427.7644 120721.1274 478992.7609 -30426678.2146 134920.8619 472084.7291 18865210.1462 -161.2569 315.2734 -40.0743 21.2575 -48.0261 -13.3843 0.4997 -0.9056 795.287 893.538 16834.3102 -5918.4378 11561408.9135 120752.5727 479012.4018 -30426677.7847 137417.3056 473414.1115 18865228.6862 -161.9305 318.9261 -40.4799 -63.2713 -132.5549 71.1445 -4.4584 751.344 894.428 14294.3530 -5964.1304 11561407.5314 120750.6271 479023.9076 -30426678.9223 134874.9227 473367.2690 18865230.2155 -159.0965 312.3146 -40.6456 116.1094 -537.8226 -41.7990 0.0500 743 230734
|
||||||
|
64.00 2.201 15.863 34.7 11.9762 0.1227 0.5194 18.4512 0.4984 0.4984 0.123 18.451 11.976 1.608e-06 2539.6 602.983 946.613 5120.3123 -9044.2843 11972471.1893 120804.9716 478413.4187 -30426658.3813 125770.1547 469707.3010 18454145.6605 -160.6917 326.4020 -41.4721 -0.0000 -0.0000 -0.0000 0.1347 -0.4415 752.761 907.026 14027.3502 -6630.0559 11972531.2277 120837.3428 478399.5805 -30426657.1265 134711.5008 472091.1584 18454083.6835 -163.3481 324.5595 -41.9209 19.8694 -44.8900 -12.5103 0.5024 -0.5130 791.671 893.612 16239.0429 -5798.4623 11972454.1524 120839.2671 478435.6942 -30426656.5088 136917.1541 472964.7291 18454160.3945 -160.8001 325.5249 -42.0178 -28.0137 -92.7730 35.3727 -4.1187 751.309 894.302 13923.4410 -5843.1312 11972453.9101 120850.1770 478446.9902 -30426656.6454 134615.8208 472930.4855 18454161.4049 -159.4770 330.2353 -41.7900 137.4693 -466.6419 -68.8203 0.0500 757 230956
|
||||||
|
65.00 2.183 15.785 34.5 12.4226 0.1227 0.5194 18.0048 0.4987 0.4987 0.123 18.005 12.423 1.569e-06 2562.8 742.956 954.661 12968.4684 -9611.9295 12420035.1863 120985.1615 477752.4302 -30426610.2608 133787.8741 468472.1303 18006531.8647 -162.8331 337.1702 -43.0933 -0.0000 -0.0000 -0.0000 0.1261 -0.6759 752.915 920.970 13608.3283 -7506.8801 12419944.9412 121011.1626 477738.5351 -30426607.9906 134455.9659 470585.8400 18006619.5208 -158.3757 339.9539 -43.6102 30.4167 -68.7192 -19.1513 0.5033 -1.1960 792.962 893.570 15923.1889 -5804.6196 12419997.8414 121013.2618 477748.1636 -30426607.8567 136779.3408 472284.1330 18006566.9206 -158.6467 343.1660 -43.4749 -81.2141 -180.3500 92.4795 -4.3906 751.511 894.590 13552.3990 -5863.5598 12419997.9924 121026.7572 477762.9369 -30426608.4300 134427.9723 472250.8384 18006566.4417 -159.9227 342.5462 -43.9863 85.9555 -558.0293 -12.7754 0.0500 771 231219
|
||||||
|
66.00 2.166 15.715 34.4 12.9076 0.1227 0.5194 17.5198 0.5022 0.5022 0.123 17.520 12.908 1.491e-06 2548.4 614.387 956.123 5143.5569 -9612.1935 12903728.7814 120938.4244 477079.3742 -30426592.0056 125915.2171 467823.7975 17522818.2019 -163.1322 357.9560 -44.9804 -0.0000 -0.0000 -0.0000 0.1337 -0.7397 752.220 914.314 13181.3822 -7031.2422 12903776.4453 121046.0255 477053.6214 -30426590.3722 134067.9723 470374.0256 17522768.3967 -163.5860 356.3581 -45.2082 33.2892 -75.2089 -20.9599 0.5067 -0.5258 785.423 893.531 15059.8689 -5766.7155 12903730.5634 121050.3690 477086.8907 -30426589.6368 135953.1477 471678.4992 17522813.5438 -161.3282 360.7215 -45.3012 -15.7883 -124.2864 28.1176 -3.7718 751.496 894.153 13154.2031 -5780.2243 12903729.9469 121041.4858 477086.1476 -30426590.5902 134036.4459 471660.1568 17522814.3165 -162.8110 361.6263 -45.7007 120.6610 -432.5606 -57.7949 0.0500 785 231441
|
||||||
|
67.00 2.149 15.650 34.2 13.4364 0.1227 0.5194 16.9910 0.5017 0.5017 0.123 16.991 13.436 1.416e-06 2452.6 755.414 956.664 12928.0639 -9748.0021 13433468.3736 121152.9524 476567.4525 -30426555.4829 133913.6213 467190.3986 16993040.6043 -163.1363 369.5010 -47.1538 -0.0000 -0.0000 -0.0000 0.1255 -0.4875 752.487 920.793 12793.2570 -7494.4806 13433431.9497 121246.7935 476528.0071 -30426552.9937 133882.0480 469400.4777 16993074.3635 -162.2488 370.6065 -47.0438 21.9390 -49.5659 -13.8135 0.5063 -0.7330 787.317 893.577 14756.8018 -5817.8312 13433475.7415 121265.6010 476569.0702 -30426554.2880 135867.9595 471112.8965 16993030.9334 -161.1656 367.2138 -47.1268 -46.4758 -117.9807 54.6014 -3.6840 751.504 894.320 12731.2324 -5853.5412 13433474.1110 121285.6628 476573.1627 -30426554.1259 133855.7184 471093.5520 16993032.6381 -160.8734 367.7184 -47.0321 97.3751 -442.9772 -35.9714 0.0500 799 231703
|
||||||
|
68.00 2.134 15.588 34.0 14.0147 0.1227 0.5194 16.4127 0.5054 0.5054 0.123 16.413 14.015 1.304e-06 2372.0 600.568 972.075 3694.6419 -10565.0160 14010814.6306 121158.1492 475952.4302 -30426537.8622 124690.8245 465777.2439 16415673.9364 -164.1823 385.2066 -48.6427 -0.0000 -0.0000 -0.0000 0.1335 -0.6798 752.689 926.711 12439.9948 -7756.5303 14010804.3876 121223.8858 475886.5849 -30426535.1557 133499.3920 468521.1159 16415681.0375 -163.4344 386.7507 -49.6960 30.5911 -69.1133 -19.2611 0.5105 -0.7906 792.948 893.505 14706.4460 -5724.8621 14010791.8180 121244.9887 475939.7014 -30426534.3469 135786.0011 470604.5225 16415693.8526 -158.7732 387.5537 -48.8556 -43.2047 -142.9091 54.5347 -4.3132 751.493 894.340 12398.8947 -5762.7411 14010791.9393 121244.4042 475950.0836 -30426534.2156 133481.0069 470568.5051 16415694.2413 -156.9431 384.7835 -48.6487 120.3078 -512.3261 -48.4176 0.0500 813 231926
|
||||||
|
69.00 2.119 15.531 33.9 14.6498 0.1227 0.5194 15.7776 0.5048 0.5048 0.123 15.778 14.650 1.181e-06 2237.2 808.740 964.231 15088.8464 -10036.2208 14646322.5736 121204.5706 475082.6667 -30426480.4221 136127.6032 465445.8885 15780107.2545 -166.3548 395.4553 -50.8665 -0.0000 -0.0000 -0.0000 0.1224 -0.7378 752.554 920.606 12075.0448 -7282.7200 14646379.6188 121265.3108 475023.3351 -30426476.5843 133175.4112 468133.9031 15780046.0767 -163.4414 393.6047 -51.1183 33.2028 -75.0137 -20.9054 0.5098 -0.5574 797.025 893.482 14547.7598 -5617.2291 14646293.7418 121280.2954 475058.1547 -30426475.3999 135664.5461 469839.1685 15780131.2282 -160.0402 399.3007 -50.9102 -18.8256 -127.0420 31.1229 -4.7020 750.667 894.314 12017.2827 -5666.2909 14646291.6943 121274.1300 475067.7476 -30426475.9488 133128.6741 469805.0418 15780133.2430 -160.5963 401.5050 -51.0336 159.5716 -530.0875 -81.2012 0.0500 827 232149
|
||||||
|
70.00 2.106 15.475 33.7 15.3500 0.1227 0.5194 15.0774 0.5041 0.5042 0.123 15.077 15.350 1.104e-06 2218.6 814.103 966.131 14928.9575 -10125.7377 15347643.6962 121411.1284 474380.3307 -30426433.7703 136171.1787 464659.8149 15078737.1686 -166.8096 411.8238 -52.4743 -0.0000 -0.0000 -0.0000 0.1218 -0.7081 752.576 933.514 11584.3002 -8083.8959 15347636.1319 121484.8820 474338.2720 -30426429.8578 132910.9675 466661.2192 15078741.0009 -166.1751 412.8330 -52.8675 31.8645 -71.9901 -20.0628 0.5095 -0.6990 794.394 893.637 13931.1200 -5588.8686 15347616.6947 121479.6042 474369.7742 -30426429.7015 135251.7760 469180.8754 15078760.4879 -164.5568 412.6410 -53.3713 -33.3779 -137.2325 45.1796 -4.4729 751.235 894.369 11535.1352 -5634.0407 15347614.5146 121481.1274 474371.3422 -30426429.9609 132859.2896 469151.8267 15078762.2085 -164.3179 416.2344 -53.3441 136.0474 -520.0083 -61.4956 0.0500 841 232410
|
||||||
|
71.00 2.093 15.426 33.5 16.1257 0.1227 0.5194 14.3017 0.5069 0.5069 0.123 14.302 16.126 9.984e-07 2124.6 763.140 985.848 11542.0716 -11255.4739 16122338.1941 121485.0783 473761.6000 -30426410.9631 132853.9392 462936.0608 14304018.0470 -166.2103 425.3905 -54.6076 -0.0000 -0.0000 -0.0000 0.1249 -0.3497 752.686 944.087 11027.7844 -8645.1288 16122375.5005 121565.2618 473699.7014 -30426406.9344 132423.2149 465481.8400 14303976.7776 -165.5818 427.6689 -54.8709 15.7366 -35.5531 -9.9082 0.5129 -0.6600 802.097 893.596 13790.3924 -5501.3923 16122342.9908 121559.7279 473725.0205 -30426405.6555 135175.4752 468657.5639 14304007.8480 -164.9222 427.2532 -55.0164 -45.8644 -97.1541 51.6928 -4.7531 751.115 894.413 10982.5630 -5548.8559 16122341.5994 121582.6570 473735.5911 -30426404.7762 132392.8149 468607.3915 14304008.8828 -163.6703 428.7475 -55.1700 152.2972 -544.8525 -73.0756 0.0500 855 232633
|
||||||
|
72.00 2.080 15.374 33.4 16.9894 0.1227 0.5194 13.4380 0.5134 0.5134 0.123 13.438 16.989 9.396e-07 2130.0 663.777 975.615 5569.6790 -10403.1927 16985377.7743 121416.4746 472889.3440 -30426374.5596 126822.2080 462933.0217 13440940.1287 -164.7686 442.7742 -56.4389 -0.0000 -0.0000 -0.0000 0.1306 -0.8602 752.319 934.464 10572.0051 -7864.7629 16985394.2510 121493.1764 472838.6987 -30426370.7488 131904.7552 465409.0208 13440919.6127 -164.2285 445.4366 -56.5287 38.7122 -87.4608 -24.3743 0.5193 -0.4830 785.280 893.547 12385.0562 -5334.1744 16985317.0067 121494.4479 472880.5227 -30426370.1514 133711.4880 467991.8139 13440996.1588 -164.3289 449.2376 -57.0998 -6.3714 -132.5443 20.7092 -3.7498 751.320 893.850 10554.3933 -5349.7251 16985315.2420 121502.2090 472883.5022 -30426369.9810 131885.6917 467988.6725 13440997.3553 -164.6893 451.5934 -57.0728 123.6674 -426.3356 -61.1671 0.0500 869 232855
|
||||||
|
73.00 2.069 15.330 33.2 17.9566 0.1227 0.5194 12.4708 0.5146 0.5146 0.123 12.471 17.957 8.097e-07 1990.6 705.928 985.722 7272.4322 -10968.0321 17952435.2252 121502.4138 472042.8658 -30426322.5639 128617.9413 461531.5314 12473828.9366 -166.4572 458.5681 -58.5838 -0.0000 -0.0000 -0.0000 0.1280 -0.3045 752.323 935.385 9921.5735 -7844.3627 17952531.6296 121602.9023 471982.5138 -30426318.8834 131357.7003 464599.3751 12473728.0248 -166.1199 462.9059 -58.8907 13.7038 -30.9604 -8.6283 0.5206 -0.8119 803.738 893.529 12697.3989 -5255.8859 17952427.2684 121614.6527 472017.7422 -30426317.8537 134153.8219 467225.1287 12473831.7222 -162.8592 465.8823 -59.0733 -62.0774 -106.7416 67.1528 -4.7421 751.275 894.476 9884.9879 -5305.0526 17952426.7477 121615.0410 472032.0569 -30426318.5183 131341.0005 467193.7650 12473832.4335 -164.4233 467.8899 -59.4402 137.6230 -557.9166 -58.5844 0.0500 883 233118
|
||||||
|
74.00 2.058 15.289 33.1 19.0468 0.1227 0.5194 11.3806 0.5188 0.5188 0.123 11.381 19.047 7.291e-07 1927.2 800.315 976.703 11909.6089 -10303.2449 19043067.7798 121415.9583 471116.0676 -30426278.0321 133150.7456 461300.5755 11383149.6999 -166.2032 474.4866 -60.4745 -0.0000 -0.0000 -0.0000 0.1231 -0.6207 752.767 932.569 9409.9445 -7564.7995 19043098.4171 121520.2442 471086.4214 -30426275.3454 130768.7680 463993.3646 11383115.9502 -165.0427 479.9495 -60.8738 27.9344 -63.1111 -17.5883 0.5241 -0.4460 797.167 893.530 11860.7696 -5135.1808 19043057.0415 121550.5119 471099.3742 -30426274.0358 133255.2235 466446.2030 11383155.4886 -162.7648 483.8016 -61.0608 -13.6953 -104.7409 24.0414 -4.5500 751.233 894.255 9350.6499 -5167.7436 19043054.7849 121576.3380 471106.4854 -30426273.6183 130766.4085 466414.7205 11383157.3962 -163.0047 482.2117 -61.6692 163.1314 -504.2385 -87.2939 0.0500 897 233342
|
||||||
|
75.00 2.048 15.249 32.9 20.2844 0.1227 0.5194 10.1430 0.5132 0.5132 0.123 10.143 20.284 6.654e-07 1857.2 877.560 991.625 15544.6887 -11144.0061 20282474.6331 121561.2596 470109.0027 -30426217.7104 136948.3349 459454.1591 10143680.8158 -160.7750 488.7545 -62.3307 -0.0000 -0.0000 -0.0000 0.1189 -0.3547 752.757 944.017 8780.7803 -8170.5069 20282514.9332 121651.4356 470055.9502 -30426213.1710 130261.7557 462371.8167 10143636.2420 -159.5924 493.7223 -62.4521 15.9626 -36.0637 -10.0505 0.5194 -0.6822 800.691 893.624 11342.3543 -5021.1483 20282476.2421 121673.3108 470083.7334 -30426213.5895 132856.9941 465556.3323 10143674.1988 -158.6387 492.7104 -63.1732 -47.7112 -99.7374 53.6233 -4.5076 751.336 894.369 8701.8746 -5064.6757 20282474.0054 121691.4314 470087.9751 -30426213.5611 130233.4891 465524.3945 10143676.2149 -157.8566 495.0387 -63.5702 139.1761 -521.9643 -64.0465 0.0500 911 233605
|
||||||
|
74.50 2.053 15.268 32.8 19.6504 0.1190 0.5194 10.7820 0.5177 0.5177 0.119 10.782 19.645 7.473e-07 1939.0 709.374 982.973 6613.0100 -10667.1008 19641592.8064 121635.5295 470601.7814 -30426240.8311 128102.5792 460417.3061 10784585.4560 -143.3680 487.5271 -62.5836 -0.0000 -0.0000 -0.0000 0.1238 -0.7895 752.404 933.757 9063.5964 -7628.0305 19641638.4081 121717.5391 470565.4116 -30426238.2530 130647.9488 463430.8722 10784537.0473 -140.6595 490.7560 -62.7390 35.5306 -80.2729 -22.3711 0.5231 -0.5348 791.508 893.572 11142.9609 -5135.4928 19641580.6321 121733.6884 470597.2089 -30426237.6347 132740.5141 465957.6343 10784593.3495 -140.7408 492.8519 -63.4112 -14.3822 -130.1857 27.5416 -4.1636 751.403 894.154 9005.4336 -5164.0080 19641579.4608 121730.8383 470611.1431 -30426237.7061 130600.1109 465941.5648 10784594.2940 -140.7849 491.4829 -63.6553 137.4568 -473.2293 -68.0607 0.0500 925 233830
|
||||||
|
73.50 2.064 15.311 32.6 18.4849 0.1190 0.5194 11.9425 0.5118 0.5118 0.119 11.942 18.485 8.097e-07 1993.8 841.919 989.603 14547.8204 -11321.1439 18482073.6574 121722.9578 471513.4151 -30426274.0595 136138.1803 460680.4210 11944136.8036 -138.0854 488.7188 -63.3964 -0.0000 -0.0000 -0.0000 0.1169 -0.2822 752.920 939.621 9705.7164 -8205.1843 18482120.1530 121818.7530 471455.5058 -30426270.7699 131390.0245 463745.3298 11944087.2384 -134.0296 491.7598 -63.2423 12.7004 -28.6935 -7.9965 0.5178 -0.6866 800.052 893.578 12279.2103 -5341.8460 18482050.7030 121838.0938 471477.5609 -30426269.9550 133979.3323 466629.8245 11944155.8412 -130.6323 494.9571 -64.0864 -51.3834 -92.7773 56.0872 -4.4166 751.492 894.470 9694.2561 -5386.3769 18482049.6127 121823.0836 471484.2916 -30426270.7861 131387.7845 466588.8133 11944156.5518 -133.2867 494.5684 -64.7737 134.6727 -513.1262 -61.0592 0.0500 15 234050
|
||||||
|
72.50 2.075 15.354 32.5 17.4589 0.1190 0.5194 12.9685 0.5103 0.5103 0.119 12.968 17.459 9.419e-07 2094.8 759.363 967.490 10575.0617 -10138.4493 17456314.7855 121928.0948 472396.7431 -30426309.2942 132379.5029 462741.3655 12969930.6683 -124.7031 489.9537 -63.7060 -0.0000 -0.0000 -0.0000 0.1215 -0.5757 752.947 910.309 10307.2871 -6571.6996 17456438.4319 121984.7860 472335.5769 -30426306.2624 132165.0688 466266.4014 12969804.1806 -125.4189 492.1452 -64.0719 25.9066 -58.5297 -16.3116 0.5152 -0.7361 796.526 893.551 12691.3092 -5531.1282 17456305.0269 121970.5652 472351.0400 -30426305.8097 134539.9893 467308.7218 12969936.7136 -123.5757 489.8573 -64.1825 -42.7960 -127.2323 52.3910 -4.4406 751.160 894.505 10236.6841 -5587.8082 17456304.8607 121976.3636 472359.4098 -30426306.4876 132109.1243 467269.7531 12969937.4611 -122.9202 497.0826 -64.2121 131.1357 -520.1890 -57.1215 0.0500 29 234312
|
||||||
|
70.50 2.099 15.453 32.2 15.7277 0.1190 0.5194 14.6997 0.5114 0.5114 0.119 14.700 15.728 1.118e-06 2314.4 585.517 950.410 1986.2136 -9307.9508 15723633.4983 121975.7663 474208.4409 -30426397.4506 123859.2939 465383.7152 14702700.8270 -110.0529 483.6830 -64.0457 -0.0000 -0.0000 -0.0000 0.1315 -0.3586 752.732 900.688 11449.1472 -6260.0897 15723773.6111 122018.1386 474158.8907 -30426396.3406 133352.5120 468384.0425 14702558.6294 -112.0236 488.4029 -64.4878 16.1386 -36.4614 -10.1614 0.5152 -0.3879 794.743 893.466 13744.7304 -5816.4364 15723666.3618 122027.3332 474165.9698 -30426395.1020 135657.2373 468824.6075 14702664.0399 -112.4643 486.0194 -64.6513 -20.0708 -72.6709 26.0481 -4.1389 751.403 893.940 11368.3699 -5838.9513 15723667.5895 122030.7594 474173.4934 -30426395.8417 133293.8539 468818.4215 14702663.2383 -111.0508 485.8920 -64.6775 150.0504 -457.0190 -81.0653 0.0500 57 234802
|
||||||
|
69.50 2.112 15.502 32.0 14.9911 0.1190 0.5194 15.4363 0.5070 0.5071 0.119 15.436 14.991 1.255e-06 2420.6 480.186 974.368 -3526.5794 -10887.5180 14986881.1562 121909.0783 475007.2000 -30426440.8743 118270.0544 464594.5568 15439495.3079 -110.3340 481.0341 -64.3966 -0.0000 -0.0000 -0.0000 0.1375 -0.6154 752.360 922.339 11948.7090 -7704.0894 14986940.1065 121966.2644 474943.0400 -30426438.8346 133794.0139 467727.2946 15439434.2314 -108.5540 482.1019 -64.7643 27.6951 -62.5704 -17.4376 0.5122 -0.4589 796.018 893.560 14347.3587 -5924.4981 14986841.9456 121949.8634 474969.6854 -30426438.5305 136187.6779 469531.9922 15439531.6628 -106.0503 481.5596 -64.6732 -15.1403 -105.4058 25.3977 -4.4759 751.195 894.277 11898.8923 -5960.2648 14986842.4997 121947.7642 474980.3022 -30426438.6428 133752.6485 469505.2969 15439531.6408 -105.4790 481.9692 -64.6436 158.5881 -497.9034 -83.9868 0.0500 71 235023
|
||||||
|
68.50 2.127 15.559 31.9 14.3246 0.1190 0.5194 16.1028 0.5014 0.5014 0.119 16.103 14.325 1.322e-06 2396.2 606.358 963.907 4029.2612 -10424.7994 14322202.0465 121927.2927 475678.9405 -30426463.0252 125854.1611 465731.4894 16104197.1242 -102.4201 480.3348 -64.5816 -0.0000 -0.0000 -0.0000 0.1301 -0.6559 752.765 915.558 12376.6725 -7438.2994 14322267.1532 121972.1524 475617.3191 -30426461.0109 134241.4933 468670.1737 16104129.3298 -102.9401 478.9477 -64.5379 29.5187 -66.6905 -18.5859 0.5060 -0.6746 799.158 893.629 14990.7858 -6063.9058 14322228.5778 121952.6879 475609.6356 -30426460.7988 136836.2283 470028.8315 16104167.5594 -102.5225 478.0416 -64.6218 -33.4501 -129.6593 44.3830 -4.8501 751.295 894.493 12328.2902 -6107.1531 14322229.6597 121939.9391 475616.4338 -30426460.8858 134165.0005 469986.4306 16104167.1563 -100.6903 479.4813 -64.4613 155.2970 -556.0881 -74.4578 0.0500 85 235247
|
||||||
|
67.50 2.142 15.620 31.7 13.7189 0.1190 0.5194 16.7085 0.5034 0.5034 0.119 16.708 13.719 1.425e-06 2517.0 535.521 957.490 363.9626 -10057.0872 13715317.2028 121775.6511 476511.4276 -30426509.5102 122051.6267 466924.4439 16711128.4771 -94.6407 469.5417 -63.9636 -0.0000 -0.0000 -0.0000 0.1335 -0.8288 752.888 910.890 12855.3609 -7202.7519 13715356.8166 121824.8756 476469.3796 -30426509.0688 134592.1707 469739.5314 16711088.6220 -96.6435 470.1433 -64.1277 37.2984 -84.2668 -23.4842 0.5076 -0.8024 790.252 893.610 14963.5110 -6139.9925 13715323.3332 121812.5876 476496.3911 -30426510.3262 136681.7323 470833.9314 16711122.9518 -93.5936 468.3729 -64.1820 -37.5920 -159.1572 51.4063 -4.2503 751.588 894.406 12795.4799 -6176.4626 13715324.0801 121804.2719 476493.6142 -30426510.9386 134504.2859 470794.6994 16711122.6307 -95.3605 469.8388 -64.6414 116.3838 -507.0286 -45.5415 0.0500 99 235508
|
||||||
|
66.50 2.157 15.680 31.6 13.1662 0.1190 0.5194 17.2612 0.5010 0.5009 0.119 17.261 13.166 1.492e-06 2594.6 518.871 952.767 -347.9478 -9847.8055 13162615.9657 121758.4436 477170.5245 -30426541.8506 121327.6715 467792.9385 17263862.9234 -89.8811 461.3066 -63.1816 -0.0000 -0.0000 -0.0000 0.1357 -0.1959 752.460 911.590 13241.4391 -7329.2416 13162681.3159 121773.2191 477117.1022 -30426540.6819 134926.9973 470251.8277 17263795.8803 -91.7082 463.3142 -63.6565 8.8159 -19.9175 -5.5508 0.5052 -0.5569 798.905 893.580 15875.1901 -6209.7861 13162632.9905 121756.9247 477119.6516 -30426542.1646 137540.1643 471373.9086 17263845.1610 -87.0300 462.7847 -63.6058 -43.1674 -71.9008 46.4326 -4.4519 751.059 894.423 13207.2456 -6262.9088 13162634.6383 121752.0180 477133.1236 -30426542.7575 134873.8475 471328.6533 17263843.7947 -92.2955 467.2532 -63.9759 148.3605 -504.6120 -74.1591 0.0500 113 235732
|
||||||
|
65.50 2.174 15.749 31.4 12.6600 0.1190 0.5194 17.7674 0.5041 0.5041 0.119 17.767 12.660 1.686e-06 2721.0 519.406 945.843 33.2511 -9345.9151 12656296.4955 121673.0762 477735.2249 -30426569.6172 121619.1744 468845.5447 17770209.9009 -85.1245 455.5015 -62.9329 -0.0000 -0.0000 -0.0000 0.1354 -0.6372 752.784 891.115 13717.7519 -5984.7801 12656401.2734 121685.4879 477693.3867 -30426569.3230 135309.6448 472161.1214 17770104.6685 -86.7167 455.7400 -63.0944 28.6773 -64.7895 -18.0561 0.5075 -0.7929 792.205 893.564 15989.8935 -6140.7568 12656293.2945 121648.3039 477694.4391 -30426568.9812 137553.0027 472015.7445 17770211.4493 -88.6222 458.2157 -63.6220 -45.3347 -138.8015 55.9559 -4.3320 751.637 894.495 13660.0300 -6182.5952 12656295.3297 121635.7770 477697.0951 -30426569.3475 135214.0373 471976.4960 17770210.7649 -87.0701 459.3064 -63.5243 120.9389 -514.4566 -48.7349 0.0500 127 235954
|
||||||
|
64.50 2.192 15.826 35.2 12.1948 0.1190 0.5194 18.2326 0.4993 0.4993 0.119 18.233 12.195 1.718e-06 2710.0 464.830 953.477 -2910.7723 -9869.0841 12191480.2102 121618.4714 478526.7556 -30426606.5812 118621.1157 469101.9415 18235064.0952 -82.1640 450.0783 -62.6864 -0.0000 -0.0000 -0.0000 0.1380 -0.6115 752.665 898.612 14030.0051 -6483.1660 12191527.5856 121660.8095 478453.1022 -30426606.1687 135603.8656 472425.8674 18235015.6881 -84.5814 448.6791 -62.8412 27.5209 -62.1768 -17.3280 0.5029 -0.5723 797.509 893.602 16599.0407 -6187.6091 12191451.3166 121644.1482 478458.7129 -30426606.3132 138162.0565 472722.2039 18235091.7011 -78.8711 448.0384 -62.9160 -25.8953 -115.5930 36.0882 -4.8015 751.419 894.534 13956.0577 -6237.2039 12191452.6875 121639.3695 478471.6658 -30426606.6730 135502.9333 472682.8311 18235091.4010 -80.0005 449.6539 -62.6326 162.6639 -541.5972 -82.6342 0.0500 141 000218
|
||||||
|
63.50 2.211 15.900 35.0 11.7661 0.1190 0.5194 18.6613 0.4971 0.4971 0.119 18.661 11.766 1.773e-06 2748.2 486.827 941.261 -1329.3514 -9201.0617 11762376.4504 121478.1578 479159.5271 -30426639.6976 120067.5243 470408.4448 18664200.9285 -79.6160 441.9800 -62.3567 -0.0000 -0.0000 -0.0000 0.1380 -0.6064 752.923 901.952 14430.4279 -6794.6282 11762462.4927 121490.5994 479110.7734 -30426639.1337 135844.2667 472759.3349 18664115.1587 -76.1193 439.4604 -61.9610 27.2897 -61.6544 -17.1824 0.5006 -0.5752 794.505 893.572 16822.9248 -6281.9039 11762425.0518 121496.0479 479109.9556 -30426639.6429 138233.1648 473266.3337 18664152.4120 -76.6896 439.6807 -62.0422 -26.4004 -115.3445 36.5077 -4.5159 751.817 894.304 14350.2710 -6323.1349 11762425.5942 121493.9530 479117.5325 -30426638.9885 135769.6640 473213.5173 18664151.6657 -76.7538 439.2152 -61.9335 149.5366 -512.8320 -74.2675 0.0500 155 000442
|
||||||
|
62.50 2.231 15.982 34.9 11.3698 0.1190 0.5194 19.0576 0.4941 0.4941 0.119 19.058 11.370 1.791e-06 2811.8 547.001 932.038 2401.0280 -8670.3003 11367552.0129 121406.8234 479780.3662 -30426665.2074 123737.7451 471539.1310 19059050.8141 -75.1315 432.1576 -61.8079 -0.0000 -0.0000 -0.0000 0.1351 -0.6992 752.777 892.498 14737.7673 -6224.3260 11367555.7632 121444.3316 479715.0187 -30426664.1224 136098.4661 473917.7696 19059046.9199 -76.5882 429.6495 -61.8336 31.4640 -71.0853 -19.8107 0.4969 -0.7496 796.143 893.548 17248.9805 -6301.2458 11367563.7470 121420.8564 479726.8089 -30426665.8378 138597.3632 473850.7250 19059040.0682 -75.4949 431.1175 -61.6041 -38.4978 -141.0471 50.1511 -4.7962 751.185 894.578 14654.9776 -6356.7054 11367565.5466 121414.2474 479739.1076 -30426666.3090 135986.1419 473807.5689 19059038.8207 -74.8042 428.7724 -61.6471 145.8769 -557.5975 -65.9367 0.0500 169 000705
|
||||||
|
61.50 2.251 16.069 34.7 11.0026 0.1190 0.5194 19.4248 0.4943 0.4943 0.119 19.425 11.003 1.615e-06 2792.0 405.069 1009.079 -5965.6896 -13319.5904 10998914.5319 121177.8484 480549.9129 -30426720.5310 115148.3349 467646.8137 19427744.8500 -72.1187 420.9725 -60.6257 -0.0000 -0.0000 -0.0000 0.1426 -0.5277 752.796 959.098 15072.0728 -10316.9275 10999020.2264 121159.1860 480504.5618 -30426719.5893 136152.8832 470614.8009 19427638.6488 -71.6278 420.0232 -60.7340 23.7457 -53.6477 -14.9510 0.5022 -0.9981 785.235 893.608 17002.9622 -6214.9389 10998967.2630 121170.0490 480514.1974 -30426720.2569 138100.2155 474720.1138 19427691.9617 -72.5373 422.0389 -60.5761 -69.4136 -146.8069 78.2083 -3.6512 751.570 894.337 15045.3905 -6253.2720 10998967.9533 121145.4260 480529.5822 -30426720.3774 136130.3211 474691.0761 19427690.4666 -69.9994 416.8421 -60.7281 71.1514 -464.3796 -10.2956 0.0500 183 000929
|
||||||
|
60.50 2.273 16.160 34.5 10.6616 0.1190 0.5194 19.7658 0.4958 0.4958 0.119 19.766 10.662 1.907e-06 2939.4 492.553 930.518 -422.0605 -8437.8388 10658322.0664 121059.1754 481099.3565 -30426741.1701 120574.0971 473075.8734 19768358.9169 -66.6785 410.7742 -60.1599 -0.0000 -0.0000 -0.0000 0.1383 -0.5978 752.765 892.911 15460.1474 -6144.2131 10658422.9737 121074.7956 481046.7556 -30426740.3329 136463.6885 475310.2981 19768257.2771 -68.4163 414.3023 -60.1143 26.9020 -60.7786 -16.9383 0.4990 -0.7211 789.506 893.611 17647.5855 -6193.4180 10658402.0928 121044.6559 481048.8391 -30426739.8771 138637.4613 475275.6777 19768277.0583 -65.8763 412.8687 -60.1859 -40.3996 -128.0802 50.3633 -4.1780 751.734 894.416 15386.4129 -6231.8738 10658403.2232 121033.8698 481051.0827 -30426740.2170 136359.9829 475237.8921 19768277.1236 -64.6656 411.9902 -59.8178 120.7185 -492.0880 -51.0814 0.0500 197 001152
|
||||||
|
59.50 2.296 16.255 34.4 10.3440 0.1190 0.5194 20.0834 0.4958 0.4958 0.119 20.083 10.344 1.992e-06 3029.0 475.504 949.237 -1347.8205 -9526.4799 10341249.1285 120909.1082 481568.1351 -30426758.4067 119498.1333 472433.8747 20085449.8358 -61.7231 400.6360 -59.1619 -0.0000 -0.0000 -0.0000 0.1386 -0.8638 752.758 898.163 15765.3284 -6408.8874 10341269.0864 120885.0484 481531.2356 -30426756.4799 136591.1168 475529.5968 20085428.3425 -63.5804 401.6862 -59.0339 38.8734 -87.8250 -24.4758 0.4994 -0.9272 792.893 893.595 18172.9571 -6141.9500 10341255.5818 120852.4212 481537.7351 -30426755.9389 138955.6523 475808.2181 20085441.7345 -62.7592 400.1085 -58.8480 -47.6656 -174.3640 62.0631 -4.7530 751.431 894.644 15698.7769 -6199.4315 10341256.4937 120843.7130 481537.4187 -30426756.5546 136481.1691 475748.1934 20085440.8269 -62.7110 401.7098 -59.1084 127.3549 -569.7806 -48.1349 0.0500 211 001414
|
||||||
|
58.50 2.320 16.352 34.2 10.0479 0.1190 0.5194 20.3795 0.4952 0.4952 0.119 20.380 10.048 2.053e-06 3032.0 436.648 947.068 -3551.2186 -9371.8110 10044572.3884 120550.7978 482227.8614 -30426794.9040 116944.8448 473254.5211 20382164.6452 -59.2203 391.1330 -58.4143 -0.0000 -0.0000 -0.0000 0.1411 -1.3412 752.886 896.463 16140.7271 -6266.8348 10044577.1418 120552.8074 482179.4631 -30426794.5799 136630.2976 476300.4677 20382159.4288 -54.2178 391.8585 -57.9820 60.3564 -136.3608 -38.0022 0.4986 -0.6067 786.757 893.571 18236.7033 -6097.2781 10044537.5876 120537.1530 482181.3974 -30426795.0636 138712.7637 476483.2443 20382198.6653 -58.0096 392.3981 -58.4152 3.7305 -192.9867 18.6237 -4.7362 751.654 894.285 16074.0408 -6140.8892 10044538.8340 120531.5978 482184.9316 -30426795.2019 136552.9856 476435.7435 20382197.7875 -58.9724 393.6707 -58.3789 156.5120 -538.1596 -77.5720 0.0500 225 001637
|
||||||
|
57.50 2.346 16.455 34.0 9.7711 0.1190 0.5194 20.6563 0.4967 0.4967 0.119 20.656 9.771 2.065e-06 3040.6 449.674 912.454 -2621.6000 -7151.8828 9767622.8728 120392.2399 482801.7565 -30426815.7266 117725.1584 476041.3079 20659134.4129 -56.4324 383.7474 -57.5175 -0.0000 -0.0000 -0.0000 0.1415 -0.8207 752.874 868.604 16471.0442 -4496.1777 9767718.8267 120397.5178 482757.5574 -30426814.7410 136814.9120 478651.6064 20659038.1733 -56.0590 386.5896 -57.3401 36.9354 -83.4466 -23.2556 0.4983 -0.5439 796.228 893.569 19090.2405 -6032.0995 9767713.1913 120392.1546 482730.8196 -30426814.1538 139429.3077 477080.7173 20659043.4682 -54.5702 383.4732 -57.3864 -13.8276 -134.2095 27.5074 -5.1334 751.450 894.538 16342.3641 -6078.6225 9767714.6644 120387.8324 482732.2845 -30426814.2937 136687.5776 477040.8306 20659042.5091 -54.5481 384.1752 -57.0952 180.2525 -572.6868 -94.6912 0.0500 239 001859
|
||||||
|
56.50 2.373 16.566 33.9 9.5120 0.1190 0.5194 20.9154 0.4948 0.4948 0.119 20.915 9.512 2.146e-06 3072.2 544.340 919.304 3399.8180 -7633.6971 9509360.0614 120286.2858 483479.9609 -30426837.4649 123642.8629 476209.7906 20917421.7746 -50.3637 374.5893 -56.1959 -0.0000 -0.0000 -0.0000 0.1347 -1.0531 752.661 868.797 16696.2651 -4530.5640 9509421.9924 120312.4831 483415.0151 -30426837.4442 136942.9632 479233.2750 20917360.2447 -52.1316 376.2722 -56.4945 47.3902 -107.0668 -29.8383 0.4964 -0.5450 794.049 893.576 19187.4448 -6069.8157 9509444.7573 120306.0660 483409.0738 -30426837.1559 139433.7877 477717.1351 20917336.3286 -49.4080 375.7979 -56.0642 -3.4773 -157.9344 21.0293 -5.1746 751.512 894.530 16568.7324 -6130.0479 9509445.6828 120294.4308 483418.3040 -30426838.4090 136810.8459 477654.7314 20917335.8100 -52.7079 375.9892 -56.4812 182.0018 -576.9799 -95.7539 0.0500 253 002123
|
||||||
|
55.50 2.401 16.681 33.7 9.2690 0.1190 0.5194 21.1584 0.4951 0.4951 0.119 21.158 9.269 2.163e-06 3095.6 522.896 899.765 2069.6294 -6355.8878 9266609.4650 120199.1604 484119.7867 -30426866.9454 122228.2240 478126.9600 21160201.9056 -50.4993 362.9790 -55.4458 -0.0000 -0.0000 -0.0000 0.1366 -1.1269 752.673 847.172 16953.1805 -3145.6609 9266617.8008 120189.8463 484087.0898 -30426866.6384 137095.2576 481300.3653 21160193.5254 -50.8145 362.4697 -55.3384 50.7123 -114.5723 -31.9300 0.4954 -0.6759 786.280 893.549 19012.7464 -6020.0812 9266549.5577 120185.6010 484079.0009 -30426866.8019 139141.2267 478421.6361 21160262.1362 -53.1878 363.8184 -55.4047 -12.3755 -177.6601 31.1579 -4.6012 751.544 894.438 16811.4957 -6065.8410 9266550.6924 120186.3775 484081.3511 -30426867.5822 136935.1893 478377.0427 21160261.3779 -52.9779 363.1030 -55.4906 143.9779 -530.9031 -67.2869 0.0500 267 002348
|
||||||
|
54.50 2.430 16.793 33.6 9.0408 0.1190 0.5194 21.3866 0.4926 0.4926 0.119 21.387 9.041 2.327e-06 3140.2 424.067 919.122 -4183.4215 -7485.2830 9037737.0851 119898.2666 484823.7654 -30426907.8505 115663.5947 477698.0905 21389116.7351 -46.9544 355.0006 -54.2420 -0.0000 -0.0000 -0.0000 0.1438 -0.4661 752.990 879.440 17262.0406 -5074.9936 9037857.9498 119907.2436 484784.3520 -30426907.7401 137114.6368 480074.7104 21388996.0501 -48.0708 353.9597 -54.0237 20.9774 -47.3934 -13.2080 0.4952 -0.7273 792.784 893.505 19766.5309 -5959.0547 9037793.9805 119891.8538 484786.9014 -30426908.6620 139602.5984 479174.1883 21389060.4150 -49.7533 349.6232 -54.1211 -46.9075 -115.2783 54.6769 -4.6280 751.773 894.507 17157.1798 -5997.9709 9037796.5560 119869.1892 484782.3111 -30426910.3769 136981.4485 479125.7367 21389059.7649 -49.4953 348.6794 -54.2836 140.3861 -538.4230 -63.2487 0.0500 281 002611
|
||||||
|
53.50 2.461 16.915 33.4 8.8262 0.1190 0.5194 21.6012 0.4925 0.4926 0.119 21.601 8.826 2.443e-06 3144.4 448.126 941.890 -2602.4545 -8892.0637 8823089.0862 119739.1284 485521.8134 -30426934.7323 117099.3877 476972.7273 21603792.3920 -46.7275 344.7929 -53.3465 -0.0000 -0.0000 -0.0000 0.1421 -0.6431 752.924 907.201 17482.8599 -6752.8170 8823102.7453 119777.0207 485453.4791 -30426933.9358 137222.0544 479041.5054 21603778.3167 -49.5807 344.7761 -53.3790 28.9426 -65.3887 -18.2231 0.4962 -0.8383 789.357 893.516 19876.9340 -5902.9339 8823116.5003 119728.9226 485442.0587 -30426934.2530 139547.0293 479880.8032 21603765.3666 -46.3882 343.0521 -53.1087 -49.3042 -143.6355 60.0237 -4.4518 751.569 894.440 17479.0417 -5951.8303 8823116.1385 119701.5263 485443.6622 -30426935.2712 137137.4208 479835.6631 21603765.3044 -47.3419 345.0759 -53.2015 122.0959 -530.8728 -47.8949 0.0500 295 002835
|
||||||
|
52.50 2.494 17.038 33.3 8.6241 0.1190 0.5194 21.8033 0.4920 0.4920 0.119 21.803 8.624 2.544e-06 3177.6 541.205 923.334 3513.7640 -7685.3098 8621566.8533 119659.1668 486077.1769 -30426956.4697 123129.8347 478729.6608 21805336.7467 -44.0792 334.1581 -52.3211 -0.0000 -0.0000 -0.0000 0.1359 -0.4920 752.697 878.978 17736.2657 -4969.9293 8621559.7349 119632.9524 486052.2880 -30426955.5733 137325.7344 481419.5735 21805343.4139 -44.2579 331.7046 -52.1556 22.1391 -50.0180 -13.9395 0.4941 -0.9085 793.416 893.512 20354.9707 -5868.7920 8621577.2634 119641.7503 486037.3796 -30426955.2687 139947.7077 480498.2642 21805326.1665 -44.9677 332.0677 -52.1095 -62.6564 -134.8136 70.8561 -4.7715 751.657 894.515 17614.4952 -5935.7416 8621576.8066 119639.4420 486052.5867 -30426956.5028 137214.4299 480444.3214 21805327.0997 -44.5420 331.5059 -52.0903 129.9338 -569.9248 -50.4044 0.0500 309 003057
|
132
matlab/mat/itf_polynom.csv
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
theta,itf2rx2,itf4ry2,itf2rx1,itf4ry1
|
||||||
|
10,129268.1233,516205.9655,132663.358,505443.6737
|
||||||
|
10.5,130661.9623,515907.0507,132643.1895,504958.7422
|
||||||
|
11,130618.63,514979.9943,132615.5884,504495.3075
|
||||||
|
11.5,132056.2919,514783.9257,132599.8401,504075.3608
|
||||||
|
12,132441.2177,513942.8999,132581.7281,503629.2346
|
||||||
|
12.5,132874.8007,513612.0491,132546.8908,503250.447
|
||||||
|
13,132946.7281,512848.2055,132497.9351,502825.1386
|
||||||
|
13.5,133527.3489,512561.5513,132563.5223,502377.9742
|
||||||
|
14,134121.4481,511861.4114,132491.6076,501969.3946
|
||||||
|
14.5,134087.3831,511565.8942,132410.6433,501543.3146
|
||||||
|
15,135032.326,510932.296,132333.5745,501113.4159
|
||||||
|
15.5,136498.4551,510185.6519,132245.2588,500654.2586
|
||||||
|
16,135547.9015,510008.0153,132122.2721,500163.5599
|
||||||
|
16.5,135175.1527,509391.6898,132037.1905,499678.1839
|
||||||
|
17,134874.1905,508707.5609,131910.1633,499183.0764
|
||||||
|
17.5,134421.6465,508298.5351,131819.1127,498650.7599
|
||||||
|
18,134677.0919,507861.3803,131675.8636,498194.8239
|
||||||
|
18.5,135180.3495,507412.488,131609.2865,497699.1617
|
||||||
|
19,134806.1927,506790.9456,131522.6348,497248.9608
|
||||||
|
19.5,136084.2513,506247.8709,131498.75,496764.9999
|
||||||
|
20,136228.5543,505784.8181,131420.1452,496311.6559
|
||||||
|
20.5,136335.5324,505397.5541,131403.3175,495870.0915
|
||||||
|
21,136543.8012,505064.1086,131350.1249,495433.3626
|
||||||
|
21.5,137080.7612,504602.3723,131311.7079,494942.9519
|
||||||
|
22,137342.9607,504173.5778,131210.2636,494580.7084
|
||||||
|
22.5,137687.7927,503787.411,131169.2183,494079.0764
|
||||||
|
23,137657.2689,503269.4169,131145.2055,493634.2479
|
||||||
|
23.5,138087.2764,502767.2363,131125.4039,493161.9564
|
||||||
|
24,138126.4401,502133.9582,131048.9281,492790.3937
|
||||||
|
24.5,138405.9623,501694.8286,130995.6801,492424.4666
|
||||||
|
25,138516.9937,501340.744,131080.9153,491989.2559
|
||||||
|
25.5,138236.7377,500982.4336,131072.9409,491600.4773
|
||||||
|
26,137739.7607,500416.6645,131079.7079,491217.2275
|
||||||
|
26.5,137813.1473,499839.6789,131079.742,490867.983
|
||||||
|
27,137928.9233,499495.5051,131089.9948,490476.2035
|
||||||
|
27.5,137617.3201,499144.2293,131052.926,490185.1137
|
||||||
|
28,137719.1185,498328.0482,131042.6689,489816.8506
|
||||||
|
28.5,138223.5111,498121.9975,131097.2908,489376.5413
|
||||||
|
29,137660.9255,497746.3705,130988.7169,489074.7493
|
||||||
|
29.5,138302.0817,497112.0281,131056.0961,488614.3155
|
||||||
|
30,137586.9543,496833.5513,130970.4001,488267.6097
|
||||||
|
30.5,138142.7473,496295.3077,131007.1276,487856.3599
|
||||||
|
31,137780.2044,495980.7294,131013.886,487486.5217
|
||||||
|
31.5,137640.0913,494929.5733,131024.1687,487158.4044
|
||||||
|
32,138463.8652,494887.4923,131127.1703,486749.3555
|
||||||
|
32.5,138064.0231,494626.5936,131190.9185,486392.8826
|
||||||
|
33,137922.8945,494099.2793,131239.4689,486068.1857
|
||||||
|
33.5,138162.5148,493655.5454,131322.5153,485719.7093
|
||||||
|
34,138523.4193,493132.8939,131340.5847,485387.3359
|
||||||
|
34.5,138837.3991,492688.9131,131373.6428,485055.7804
|
||||||
|
35,138961.2945,492410.8441,131344.8855,484704.5946
|
||||||
|
35.5,139011.8759,491945.6683,131347.0828,484305.7999
|
||||||
|
36,139162.4465,491522.1017,131298.9804,483878.8382
|
||||||
|
36.5,139243.6924,491078.2672,131227.6332,483486.3404
|
||||||
|
37,138928.3644,490537.1637,131191.9169,483037.0035
|
||||||
|
37.5,138605.8983,490392.136,131098.9164,482592.9999
|
||||||
|
38,138633.5591,489872.8437,130992.2839,482162.7848
|
||||||
|
38.5,138628.038,489428.2741,130996.0172,481761.5475
|
||||||
|
39,138938.7623,489088.5291,130951.4689,481363.055
|
||||||
|
39.5,138671.2551,488798.0697,130904.9708,480940.3564
|
||||||
|
40,139014.0433,488245.1938,130921.1073,480545.2488
|
||||||
|
40.5,138589.6081,488001.3045,130927.55,480193.2417
|
||||||
|
41,138770.4167,487463.5161,130940.9815,479793.6328
|
||||||
|
41.5,139248.7313,486925.8119,130900.798,479407.8159
|
||||||
|
42,138863.1868,486539.1239,130946.6177,479014.4044
|
||||||
|
42.5,138777.2689,486179.6761,130911.7975,478666.6995
|
||||||
|
43,138864.518,485817.6098,131014.3041,478237.2382
|
||||||
|
43.5,138862.1372,485239.4558,131082.6689,477886.4222
|
||||||
|
44,138924.1532,484895.8142,131304.766,477500.815
|
||||||
|
44.5,138982.7431,484501.4407,131369.1116,477245.6542
|
||||||
|
45,139019.7991,484282.8533,131473.3463,476871.2862
|
||||||
|
45.5,139695.3959,483714.8843,131553.3207,476620.1928
|
||||||
|
46,138922.5831,483400.9954,131643.4711,476322.2693
|
||||||
|
46.5,139164.7889,483096.3499,131769.2567,475998.831
|
||||||
|
47,138783.6007,482763.1147,131833.5681,475732.0008
|
||||||
|
47.5,139531.3809,482296.1872,131892.0001,475422.3688
|
||||||
|
48,138831.5025,482186.6558,131989.5105,475054.1164
|
||||||
|
48.5,138858.0455,481657.341,131997.9415,474782.191
|
||||||
|
49,138705.6231,481208.7669,132081.1244,474411.1795
|
||||||
|
49.5,138744.6417,480929.1746,132175.2556,474101.6364
|
||||||
|
50,138967.9036,480440.9003,132330.2465,473738.0133
|
||||||
|
50.5,139060.9553,479937.5751,132437.2204,473472.5555
|
||||||
|
51,138740.358,479585.9609,132570.7244,473230.4862
|
||||||
|
51.5,138886.2225,479258.1986,132644.7639,472961.199
|
||||||
|
52,138900.5244,478998.9163,132671.0721,472704.0613
|
||||||
|
52.5,138561.6188,478687.0699,132776.3521,472456.8364
|
||||||
|
53,138446.0988,478522.9173,132825.8284,472198.7457
|
||||||
|
53.5,138620.6908,478142.483,132894.1079,471956.2639
|
||||||
|
54,138791.7457,477608.1909,132917.8049,471664.0684
|
||||||
|
54.5,138331.0268,477302.4464,132934.398,471338.1697
|
||||||
|
55,138858.7495,476807.2894,132949.6727,470785.1422
|
||||||
|
55.5,139017.8449,476604.3637,132853.5788,470294.8204
|
||||||
|
56,138932.166,476163.0197,132861.9244,469928.8435
|
||||||
|
56.5,138643.4876,475697.4526,132836.2348,469574.0168
|
||||||
|
57,138181.0449,475494.5525,132843.6076,469235.8479
|
||||||
|
57.5,138521.5591,474977.9152,132868.6273,468881.4195
|
||||||
|
58,138158.9052,474609.2971,132873.4785,468581.5333
|
||||||
|
58.5,138333.2412,474364.7349,132925.8647,468308.1075
|
||||||
|
59,138274.9969,473945.981,133060.9985,467957.903
|
||||||
|
59.5,137748.0167,473827.5902,133097.3847,467526.4435
|
||||||
|
60,137578.9031,473409.5915,133113.1244,467231.2079
|
||||||
|
60.5,137479.7372,473037.0823,133164.99,466986.5893
|
||||||
|
61,138029.2369,472697.7415,133296.7617,466789.8959
|
||||||
|
61.5,137216.646,472512.8985,133378.7884,466527.6275
|
||||||
|
62,137313.8236,471935.3113,133613.7409,466200.8328
|
||||||
|
62.5,137784.4796,471642.3157,133733.7793,466001.7039
|
||||||
|
63,137323.4705,471293.9783,133889.2695,465665.359
|
||||||
|
63.5,137168.582,470930.4016,133881.9009,465452.0933
|
||||||
|
64,136934.3463,470545.4745,133914.7585,465174.0773
|
||||||
|
64.5,137238.2609,470096.0482,134111.7249,464797.7893
|
||||||
|
65,136723.3895,470109.4736,134181.8689,464473.8355
|
||||||
|
65.5,136658.0113,469491.9285,134223.9127,464119.2684
|
||||||
|
66,136609.9004,469054.5269,134191.2343,463802.2302
|
||||||
|
66.5,136355.3681,468726.5653,134324.5548,463624.3279
|
||||||
|
67,136154.3484,468450.8331,134370.1228,463383.4213
|
||||||
|
67.5,135887.1441,468124.0181,134488.7105,463088.655
|
||||||
|
68,136190.0049,467697.3611,134541.118,462828.8648
|
||||||
|
68.5,135852.3879,467342.4738,134624.2583,462394.4079
|
||||||
|
69,136011.2828,466776.4981,134614.2828,462130.0524
|
||||||
|
69.5,136023.2977,466567.6587,134632.0321,461902.0382
|
||||||
|
70,135692.87,466021.6729,134464.4503,461179.5848
|
||||||
|
70.5,135009.2903,465635.4219,134430.0951,460812.9004
|
||||||
|
71,134767.2935,465199.2071,134530.8225,460352.9395
|
||||||
|
71.5,134398.6492,464892.5227,134622.9057,459865.3697
|
||||||
|
72,134501.8556,464351.4357,134553.5852,459516.527
|
||||||
|
72.5,133453.3607,463913.1527,134253.822,458867.2577
|
||||||
|
73,133572.6268,463630.5781,134221.182,458640.5448
|
||||||
|
73.5,132994.6855,463103.5106,134255.6524,457926.5004
|
||||||
|
74,133058.5105,462389.6747,134241.9905,457545.487
|
||||||
|
74.5,132387.7607,461906.9099,134116.99,457110.4364
|
||||||
|
75,132187.4321,461429.2871,134257.0647,456640.0257
|
|
72
matlab/src/getBeamPath.m
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
function [results] = getBeamPath(theta, args)
|
||||||
|
% getBeamPath -
|
||||||
|
%
|
||||||
|
% Syntax: [in_data] = getBeamPath(drx, dry, dz, theta, )
|
||||||
|
%
|
||||||
|
% Inputs:
|
||||||
|
% - drx, dry, dz, theta, -
|
||||||
|
%
|
||||||
|
% Outputs:
|
||||||
|
% - in_data -
|
||||||
|
|
||||||
|
arguments
|
||||||
|
theta
|
||||||
|
args.drx (1,1) double {mustBeNumeric} = 0 % [rad]
|
||||||
|
args.dry (1,1) double {mustBeNumeric} = 0 % [rad]
|
||||||
|
args.dz (1,1) double {mustBeNumeric} = 0 % [m]
|
||||||
|
end
|
||||||
|
|
||||||
|
% Rotation matrix for drx
|
||||||
|
udrx = [cos(theta), 0, -sin(theta)];
|
||||||
|
Rdrx = cos(args.drx)*eye(3)+sin(args.drx)*[0, -udrx(3), udrx(2); udrx(3), 0, -udrx(1); -udrx(2), udrx(1), 0] + (1-cos(args.drx))*(udrx'*udrx);
|
||||||
|
|
||||||
|
% Rotation matrix for dry
|
||||||
|
Rdry = [ cos(args.dry), 0, sin(args.dry); ...
|
||||||
|
0, 1, 0; ...
|
||||||
|
-sin(args.dry), 0, cos(args.dry)];
|
||||||
|
|
||||||
|
%% Input Beam
|
||||||
|
p1 = [-0.1, 0, 0]; % [m]
|
||||||
|
s1 = [ 1, 0, 0];
|
||||||
|
|
||||||
|
%% Primary Mirror
|
||||||
|
pp = [0, 0, 0]; % [m]
|
||||||
|
np = [cos(pi/2-theta), 0, sin(pi/2-theta)];
|
||||||
|
|
||||||
|
%% Reflected beam
|
||||||
|
[p2, s2] = get_plane_reflection(p1, s1, pp, np);
|
||||||
|
|
||||||
|
%% Secondary Mirror
|
||||||
|
ps = pp ...
|
||||||
|
+ 0.07*[cos(theta), 0, -sin(theta)] ... % x offset (does not matter a lot)
|
||||||
|
- np*10e-3./(2*cos(theta)) ... % Theoretical offset
|
||||||
|
+ np*args.dz; % Add error in distance
|
||||||
|
|
||||||
|
ns = [Rdry*Rdrx*[cos(pi/2-theta), 0, sin(pi/2-theta)]']'; % Normal
|
||||||
|
|
||||||
|
%% Output Beam
|
||||||
|
[p3, s3] = get_plane_reflection(p2, s2, ps, ns);
|
||||||
|
|
||||||
|
%% Detector
|
||||||
|
pd = [1, 0, 0]; % [m]
|
||||||
|
nd = [-1, 0, 0];
|
||||||
|
|
||||||
|
%% Get beam position on the decector
|
||||||
|
p4 = get_plane_reflection(p3, s3, pd, nd);
|
||||||
|
|
||||||
|
results = struct();
|
||||||
|
% Beam position and orientations
|
||||||
|
results.p1 = p1;
|
||||||
|
results.s1 = s1;
|
||||||
|
results.p2 = p2;
|
||||||
|
results.s2 = s2;
|
||||||
|
results.p3 = p3;
|
||||||
|
results.s3 = s3;
|
||||||
|
results.p4 = p4;
|
||||||
|
% Mirrors/detector positions and orientations
|
||||||
|
results.pp = pp;
|
||||||
|
results.np = np;
|
||||||
|
results.ps = ps;
|
||||||
|
results.ns = ns;
|
||||||
|
results.pd = pd;
|
||||||
|
results.nd = nd;
|
16
matlab/src/get_plane_reflection.m
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
function [p_reflect, s_reflect] = get_plane_reflection(p_in, s_in, p_plane, n_plane)
|
||||||
|
% get_plane_reflection -
|
||||||
|
%
|
||||||
|
% Syntax: [p_reflect, s_reflect] = get_plane_reflection(p_in, s_in, p_plane, n_plane)
|
||||||
|
%
|
||||||
|
% Inputs:
|
||||||
|
% - p_in, s_in, p_plane, n_plane -
|
||||||
|
%
|
||||||
|
% Outputs:
|
||||||
|
% - p_reflect, s_reflect -
|
||||||
|
|
||||||
|
p_reflect = p_in + s_in*dot(p_plane - p_in, n_plane)/dot(s_in, n_plane);
|
||||||
|
s_reflect = s_in-2*n_plane*dot(s_in, n_plane);
|
||||||
|
s_reflect = s_reflect./norm(s_reflect);
|
||||||
|
|
||||||
|
end
|
14
matlab/src/plotBeamPath.m
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
function [] = plotBeamPath(results)
|
||||||
|
% plotBeamPath -
|
||||||
|
%
|
||||||
|
% Syntax: [in_data] = plotBeamPath(drx, dry, dz, theta, )
|
||||||
|
%
|
||||||
|
% Inputs:
|
||||||
|
% - drx, dry, dz, theta, -
|
||||||
|
%
|
||||||
|
% Outputs:
|
||||||
|
% - in_data -
|
||||||
|
|
||||||
|
plot3([results.p1(1), results.p2(1)],[results.p1(2), results.p2(2)], [results.p1(3), results.p2(3)])
|
||||||
|
plot3([results.p2(1), results.p3(1)],[results.p2(2), results.p3(2)], [results.p2(3), results.p3(3)])
|
||||||
|
plot3([results.p3(1), results.p4(1)],[results.p3(2), results.p4(2)], [results.p3(3), results.p4(3)])
|